﻿/* The sidebarCtn menu */
.sidebarCtn {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1050; /* Stay on top */
    top: 0;
    right: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
     /*!* 0.5 second transition effect to slide in the sidebarCtn *!*/
    background-color: #000;
    opacity: 0.5;
}
.sidebar{
    width:var(--sidebar-width);
    top: 0;
    right: -400px;
    height: 100vh;
    background:rgba(255,255,255,1);
}
.bottomMenuCtn,.sidebar{
    position: fixed; /* Stay in place */
    z-index: 1051; /* Stay on top */
    transition: 0.3s;
}
.bottomMenuCtn{
    bottom: 0;
    width: 99%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-left: 2px;
}
.bottomMenu{
    background:rgba(255,255,255,1);
    height: 100%;
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    display: none;
}
/*width: 100%;*/
/*color: blue;*/
/*position: absolute;*/
/*height: 100%;*/
/*top: 0;*/
/*background: white;*/
/*right: 0;*/
/*opacity: 0.5;*/
/*background: black;*/
/* The sidebarCtn links */
.sidebarCtn a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidebarCtn a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */

/* The button used to open the sidebarCtn */
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
}

.openbtn:hover {
    background-color: #444;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s; /* If you want a transition effect */
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebarCtn {padding-top: 15px;}
    .sidebarCtn a {font-size: 18px;}
}