.sidenav {
    height: 75%;
    position: fixed;
    z-index: 1;
    top: 67px;
    left: 0;
    background-color: #FFFFFF;
    padding-top: 20px;
    text-align: center;
    width: 15.625%;
    transition: transform 0.3s ease;
    @media screen and (max-width: 1500px) {
        width: 300px;
    }
}

/* The navigation menu links */
.sidenav a {
    text-decoration: none;
    font-size: 1rem;
    color: #818181;
    display: block;
    text-align: left;
    padding: 6px 8px 6px 15%;
}

.sidenav a:hover {
    color: #006D6F;
}


.sidebar-header {
    color: #006D6F;
    font-size: 1.5rem;
}

.toggle-panel-button {
    position: absolute;
    right: 0;
    left: 93%;
    top: 50%;
    cursor: pointer;
    @media screen and (min-width: 1500px) {
        display: none;
    }
}

.hidden {
    @media screen and (max-width: 1499px) {
        transform: translateX(-90%);
    }
}

.flipped {
    @media screen and (max-width: 1499px) {
        transform: scaleX(-1);
    }
}

.flippable {
    transition: transform 0.5s ease-in-out;
    transform-origin: center;

    width:35px;
    height:35px;
    border-width: 1px;
    border-color: black;
    border-radius: 20px;
    background-color: white;
}