.dropdown{
    position: relative;
}
button.dropdown-toggle{
    text-transform: uppercase;
}
button.dropdown-toggle::after{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    cursor: pointer;
}
.dropdown-menu.show{
    display: block;
}
.dropdown-menu{
    position: absolute;
    z-index: 1000;
    display: none;
    width: 100px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    background-color: #FFF;
    border: 1px solid #F2F2F2;
    border-radius: 5px;
    top: 35px;
    left: -55px;
}
.dropdown-item{
    display: block;
    padding: 4px 16px;
    font-weight: 400;
    color: #000;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #000000;
    background-color: #e9c86a;
}