﻿

.menu_hamburger_menu_content_area {
    width: 100%;
    -webkit-transition: max-height 0.2s ease-in-out;
    transition: max-height 0.2s ease-in-out;
    max-height: 450px; /* height of menu */
    position: absolute;
    background: #fff;
    right: 0;
    z-index: 50;
    display: none;
    color: #434447;
    top: 58px;
    text-align: left;
    border-radius: 4px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}


.desktpoMenuLinks {
    display: block;
}

/* container to hold mobile menu button and hiden section */
.mobile_menu_btn_container {
    margin-top: 20px;
    display: none;
    position: relative;
    float: left;
    left: 50%;
    cursor: pointer;
}


.mobile_menu_btn {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 15px;
    color: white;
    cursor: pointer;
    position: relative;
    left: -50%;
    display: block;
}


/* hide and show on desktop / mobile  (BOOT STRAP XS SIZE) */
@media only screen and (max-width: 768px) {
    .desktpoMenuLinks {
        display: none;
    }

    .mobile_menu_btn_container {
        display: block;
    }
}

@media (min-width:30rem) {
    .menu_hamburger_menu_content_area {
        max-width: 375px;
    }
}


.menu_hamburger_menu_content_ul {
    list-style-type: none;
    list-style: none;
    margin: 0;
}

.menu_hamburger_menu_content_ul li {
    color: black;
    font-size: 14px;
    text-decoration: none;
    padding: 3px 0;
    display: block;
}

.menu_mobile_li_wrapper {
    border-bottom: 1px solid #eee;
}

.menu_mobile_li_a {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: black !important;
    text-decoration: none;
    padding: 10px 0px;
    display: inline-block;
    z-index: 60;
    cursor: pointer;
}

    .menu_mobile_li_a:hover, .menu_mobile_li_a:visited {
        color: red;
    }