 /* Dropdown Button */
.dropbtn {
    //background-color: #4CAF50;
    color: white;
    //padding: 16px;
    font-size: 16px;
    font-size: 0.875rem;
    line-height: 50px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    //background-color: #3e8e41;
    color: #cecece;   
}

/* 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;
    background-color: #4B3421; //#f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right:0;
    
    margin-right:-10px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    /* padding: 12px 16px; */
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align:left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #352517; /*#f1f1f1 */
	color: #ffffff !important;
}

/* 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;} 