.dropdown {
    position: relative;
    
}

.dropdown_active .dropdown__current {
    color: var(--accent-color);
}

.dropdown .mdi {
    transition: transform .4s ease-in-out;
    line-height: 1;
}

.dropdown_active .mdi-chevron-down {
    transform: rotate(180deg);
}

.dropdown__current {
    min-width: 60px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all .4s ease-in-out;
    word-spacing: -3px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 0 12px 20px;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1005px) {
    .dropdown__current {
        padding: 0;
        justify-content: flex-start;
        color: var(--main-text-color);
    }
}

.dropdown__wrapper {
    display: flex;
    align-items: center;
}

.dropdown__wrapper i {
    margin-left: 3px;
}

.dropdown__current:hover {
    color: var(--accent-color);
}

.dropdown__img {
    display: inline-block;
    min-width: 16px;
    height: 11px;
    margin-right: 5px;
}

.dropdown__container {
    position: absolute;
    top: 100%;
    display: none;
    background-color: var(--main-background-color);
    z-index: 5;
    color: #000;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    border-top: none;
    right: 0;
    width: 100%;
    min-width: 150px;
}

.dropdown__items {
    list-style: none;
    margin: 15px 17px;
    padding: 0;
}

.dropdown__item {
    display: flex;
    align-items: center;
    margin: 6px 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease-in-out;
}

.dropdown__btn:hover {
    color: var(--accent-color);
}

.dropdown__btn_active {
    color: var(--accent-color);
}