
 
 /* The Overlay (background) */
.jv-menu-overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 90000; /* Sit on top */
    left: 0;
    top: 0;
    background-color: #fff;
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.jv-menu-overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.jv-menu-overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 150%;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
    color:#000;
    padding:1.5rem;
}

/* When you mouse over the navigation links, change their color */
.jv-menu-overlay a:hover, .overlay a:focus {

}

/* Position the close button (top right corner) */
.jv-menu-overlay .jv-menu-closebtn {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 60px;
}


.jv-menu-overlay ul:first-child{margin-left:0; margin-top:30px; padding:1rem;}
.jv-menu-overlay ul{list-style:none; margin-bottom:0; margin-left:0;}
.jv-menu-overlay ul ul{margin-top:0px; margin-left:20px;}
.jv-menu-overlay ul li a{border-bottom:1px solid #000; text-align:center;}
.jv-menu-open-nav{display:none; font-size: 30px; padding:2px 5px; position:relative; color:#fff; position:absolute; top:0.4rem; right:2rem;}
.jv-menu-overlay a{color:#000;}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .jv-menu-overlay a {font-size: 20px}
    .jv-menu-overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
} 


