/* Dropdown Button */
.dropbtn {
    background-color: #ffffff;
    color: #111C4E;
    padding: 12px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
  
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    border: 1px solid #111C4E;
}
  
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    background-color: #ffffff;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #111C4E;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #75787B;
}

/* 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;
}