.menubutton {
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-top: 15px;
    float:right;
    margin-right: 9px;
}

.bar1, .bar2, .bar3 {
    width: 45px;
    height: 7px;
    background-color: #45ba74;
    margin-bottom: 6px;
    transition: 0.4s;
    border-radius: 5px;
}



.change {
    opacity: 0;
}

.menuDelimiter {
   width: 96%;
    margin: 0 auto;
    height: 1px;
    background: #dbdbdb;
}

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    /*width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 100%;
    width: 100%;
    
    /*border-radius: 5px;*/
    
    background-color: #FFF;/*rgba(0,0,0,0.4); /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.2s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 35px 15px 0px;
    text-decoration: none;
    font-size: 25px;
    color: #4C4C4C;/*#FFF;*/
    display: block;
    left: 5%;
    transition: 0.2s;
    white-space: nowrap;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color: #7F7F7F;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
	padding: 0px 0px 0px 0px;
    position: absolute;
    top: 0;
    left: 5%;
    font-size: 50px;
}

/* 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) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}