.dropdown{
    position: relative;
    line-height: 32px;
    font-weight: 700;
    background-color: #ECECED;
    padding: 0 10px;
}
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{
    display: none;
    position: absolute;
    top: 32px;
    right: 0;
    height: 151px;
    width: 140px;
    margin: 0;
    list-style: none;
    background-color: #ECECED;
    border-bottom: 1px solid #1A1F26;
    z-index: 1000;
}
.dropdown-menu.show{
    display: block;
}
.dropdown-item{
    display: block;
    padding: 0.175em 16px;
    font-weight: 400;
    color: #000;
}
.dropdown-menu li.active .dropdown-item{
    font-weight: 600;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #FFFFFF;
    background-color: #EAAA2E;
}