﻿body {
    font-family: "Lato", sans-serif;
    transition: background-color .5s;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    /*background-color: #007bff;*/
    overflow-x: hidden;
    padding-top: 0px;
    transition: 0.5s;
    /* padding-top: 60px;*/
    /*background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(0,152,155,1) 0.1%, rgba(0,94,120,1) 94.2% );*/
    z-index: 999999;
}

    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        color: #f1f1f1;
        display: block;
        transition: 0.3s;
    }

        .sidenav a:hover {
            color: #808080;
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 18px;
        color: dimgray;
        font-size: 36px;
        margin-left: 50px;
    }
/*dropdownbtn*/
.dropdown-btn {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

/* Add an active class to the active dropdown button */
.active {
    /*background-color:darkgrey;*/
    /* background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(0,160,187,1) 0%, rgba(0,188,219,0.90) 90% );
    color: white; */
    background-color: #5492e9;
}
/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #3f516d;
    /*background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(0,152,155,1) 0.1%, rgba(0,94,120,1) 94.2% );*/
    padding-left: 8px;
    font-size: 12px;
}

    .dropdown-container a {
        color: lightcyan;
        font-size: 12px;
    }
/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 14px;
        }
}