﻿.dropbtn
{
    background-color: #fff;
    color: #ccc;
    padding: 0px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

.dropdown
{
    position: static;
    display: inline-block;
    font-size: 12px;
}

.dropdown-content
{
    display: none;
    position: absolute;
    background-color: #fff;
    font-size: 12px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a
{
    color: #ccc;
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 300;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover
{
    color: #ba9a3a;
    text-decoration: underline;
    font-size: 12px;
}

.dropdown:hover .dropdown-content
{
    display: block;
    font-size: 12px;
}

.dropdown:hover .dropbtn
{
    color: #ba9a3a;
    font-size: 12px;
}
