 /* The side navigation menu */
 .bsopenmenubt{
     position:fixed;
     right:32px;
     top: 2vh;
     color: white;
     background:var(--primary);
     border-radius:8px;
     padding:4px;
     -webkit-border-radius:8px;
     -moz-border-radius:8px;
     -ms-border-radius:8px;
     -o-border-radius:8px;
     z-index:2;
}
 .bsopenmenubt svg{
     fill : white;
 }
 .sidenav-wrapper{
    background-color:rgba(0,0,0,0.4);
    z-index:99998;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    position: fixed;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
 }
 .sidenav-wrapper * {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
 }
 .sidenav-wrapper.active{
    width:100%;
 }

 .sidenav .logo{
     width: 80%!important;
 }
 .sidenav {
    z-index:99999;
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary);
    overflow-x: hidden;
    padding-top: 60px;
    transition: all 0.5s;
    width:0px;
    word-break: break-all;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
  .sidenav.active{
      width:320px;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 16px 8px 8px 16px;
    text-decoration: none;
    font-size: 18px;
    color: var(--white);
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: var(--secondary);
  }
  .bsopenmenubt{
    cursor:pointer;
    color: var(--primary);
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .bsnavclosebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: var(--white);
    cursor: pointer;
  }
  .sidenav .bsnavclosebtn:hover{
    color: var(--secondary);
  }
  
  /* 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-width: 772px) {
    .sidenav {
        padding-top: 15px;
        display:flex;
        flex-direction:column;
        justify-content:center;
        text-align:center;
    }
    .sidenav a {font-size: 18px;}
    .sidenav.active{width:100%;}
  } 