.dropdown__lang {
    position: relative;
}

.dropdown-btn__lang {
    padding: 10px 6px;
    width: 180px;
    display: flex;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.dropdown-menu__lang {
    position: absolute;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: none;
    backdrop-filter: blur(100px);
}

.dropdown-item__lang {
    font-size: 14px;
    height: 32px;
    position: relative;
    padding: 4px 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;

    span {
        display: block;
        margin-left: 12px;
        text-transform: uppercase;
        font-weight: 400;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.dropdown-item__lang:hover,
.dropdown-item__lang[aria-selected="true"] {
    background-color: #D90514;
    color: #fff;
}

@media (min-width: 1024px) {
    .lang-custom-w {
        width: calc(100vw - 260px)
    }
}

.lang-custom-h {
    max-height: calc(90vh - 200px);
}