/* Dropdown Button */

.dropbtn {
    background-color: white;
    border: none;
    border-radius: 3px;
    box-shadow: 5px 5px 5px 5px #e5e5e5;
    color: rgb(51, 51, 51);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    min-width: 200px;
    padding: 16px;
}


/* The container <div> - needed to position the dropdown content */

.dropdown {
    display: inline-block;
    position: relative;
}


/* Dropdown Content (Hidden by Default) */

.dropdown-content {
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    display: none;
    height: 500px;
    min-width: 310px;
    overflow: hidden;
    overflow-y: scroll;
    position: absolute;
    z-index: 1;
}


/* Links inside the dropdown */

.dropdown-content a {
    color: rgb(14, 92, 117);
    display: block;
    line-height: 25px;
    text-decoration: none;
}


/* Change color of dropdown links on hover */

.dropdown-content a:hover {
    background-color: #0f83b2;
    opacity: 0.5;
    color: white;
}


/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */

.show {
    display: block;
}