/* Dropdown Button */
.dropbtn {
    color: white;
    padding: 6px 8px 6px 8px;
    font-size: 10px;
    border: none;
    cursor: pointer;
}

.dropbtn i{ font-size: 9px !important; padding-left: 2px; margin-top: -20px !important;}


/* Dropdown button on hover & focus
.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}*/

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    float: right !important; margin-left:-15px;
    outline: none;
    margin-top: -2px !important;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #eca273;
    min-width: 55px;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 6px 8px 6px 8px;
    text-decoration: none;
    display: block;
    font-size: 10px;
    min-width: 55px;
    border-top: 1px solid #eca273;
    color:#ffffff;
    font-family: Arial !important;
    letter-spacing: .1em;
    text-align: left !important;

}

/* Change color of dropdown links on hover
.dropdown-content a:hover {background-color: #ddd}
*/
/* 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;}