    /* The side navigation menu */
    
    .sidenav {
        height: 100%;
        /* 100% Full-height */
        width: 380px;
        /* 0 width - change this with JavaScript */
        position: fixed;
        /* Stay in place */
        z-index: 1;
        /* Stay on top */
        top: 0;
        /* Stay at the top */
        right: 0;
        background-color: #fff;
        /* Black*/
        overflow-x: hidden;
        overflow-y: auto;
        /* Disable horizontal scroll */
        padding: 20px 30px 30px 30px;
        /* Place content 60px from the top */
        transition: 1.3s;
        z-index: 1072;
        /* 0.5 second transition effect to slide in the sidenav */
        color: #35256c;
        transform: translate(380px, 0px);
    }
    
    .sidenav.open {
        background-color: #fff;
        transition: transform 1.4s;
        transform: translate(0px, 0px);
    }
    
    .sidenav.close {
        transition: transform 0s;
        transform: translate(380px, 0px);
    }
    
    .sidenav a {
        /* padding: 8px 8px 8px 32px; */
        text-decoration: none;
        font-size: 14px;
        color: #35256c;
        display: block;
        transition: 0.3;
        font-weight: normal;
    }
    
    .fas.fa-times {
        width: 8.8px;
        height: 10px;
    }
    /* When you mouse over the navigation links, change their color */
    
    .sidenav a:hover {
        color: #000;
    }
    
    .sidenav .navbar-nav .nav-item a.make-arr:hover {
        background: #35256c;
        color: #fff;
    }
    
    .sidenav h4 {
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #35256C80;
        font-family: "GoodSans", Sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.17em;
    }
    
    .sidenav .brand {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-family: 'GoodSans';
        font-size: 14px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .sidenav .brand a {
        font-size: 14px;
    }
    
    .sidenav .brand a img {
        vertical-align: middle;
        border-style: none;
        height: auto;
        max-width: 100%;
        border: none;
        -webkit-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        max-width: 141px;
    }
    /* The navigation menu links */
    
    .sidenav .ul-links li a {
        font-weight: 500;
        font-size: 18px;
        font-family: 'GoodSans-Medium';
    }
    
    .main-links li {
        flex-basis: 3rem;
    }
    
    .sidenav .connect {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .sidenav footer {
        font-family: GoodSans;
        font-size: 12px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.67;
        letter-spacing: normal;
        text-align: left;
        color: #676767;
        margin-top: 208.6px
    }
    
    .line2 {
        border-top: 1px solid #000;
    }
    
    .sidenav .btn i {
        display: inline-block;
        font-size: 25px;
        width: 25px;
        height: 25px;
    }
    /* .sidenav::-webkit-scrollbar {
    width: 3px;
} */
    /* Handle */
    /* .sidenav::-webkit-scrollbar-thumb {
    background: #35256c;
     border-radius: 10px;
    width: 6px; 


}
*/
    /* Handle on hover */
    /* .sidenav::-webkit-scrollbar-thumb:hover {
    background: #35256c
} */
    
    #overlay {
        position: fixed;
        display: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1050;
        cursor: pointer;
    }
    /* Position and style the close button (top right corner) */
    
    .sidenav .closebtn {
        position: absolute;
        top: 16px;
        right: 20px;
        font-size: 20px;
        margin-left: 50px;
        color: #000;
    }