﻿#menuBurger {
    display: none;
    background-color: #123368;
    border: 0;
    padding: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #ffffff;
    xcursor: pointer;
    font-weight: bold;
    width: 40px;
    height: 40px;
    font-size: 150%;
}

.openMenu {
    xxdisplay: block;
}

#burgerOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 1000;
}

@media (max-width: 1024px) 
{
section #leftCol {
    display: none;
}
.openMenu {
    display: block !important;
    z-index: 1003 !important;
}
.openOverlay {
    display: block !important;
}

section #rightCol {
  padding: 30px 30px 50px 30px;
}

#menuBurger {
    display: block;
    position:relative;
    left: -5px;   
    top: 0;
    margin-top: -25px;
}
}
