.currency-selector {
    position: absolute;
    right: 557px;
    top: 15px;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    background: #1A1D0F;
    border: 1px solid #d9a60f;
    width: 81px;
    display: inline-block;
    border-radius: 4px;
    padding: 0;
    box-sizing: border-box;
    max-height: 38px;
    transition: .2s ease;
    overflow: hidden;
    z-index: 2;
}
.currency-selector.active {
    max-height: 200px;
}
.currency-selector.active:after {
    transform: rotate(180deg);
    margin-top: -4px;
}
.currency-selector:after {
    display: block;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 4px;
    border-style: solid;
    border-color: #d9a60f transparent transparent transparent;
    right: 10px;
    top: 16px;
    transition: .2s ease;
}
.currency-selector__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0 10px 21px;
    border-bottom: 1px solid rgba(216, 216, 216, 0.2);
    flex-shrink: 0;
    cursor: pointer;
    order: 2;
}
.currency-selector__item:nth-last-child(1) {
    border-bottom: 0;
}
.currency-selector__item:hover {
    background-color: #444444;
}
.currency-selector__item.active {
    order: 1;
}