.select {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.select--block {
    display: block !important;
    margin: 0 auto 16px;
    max-width: 72px;
}

.select--city {
    border: 1px solid #121212;
    height: 30px;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-right: 72px;
    width: 160px;
}

.select--city-burger {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
}

.select--show {
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select__header {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select__header--lang {
    justify-content: flex-end;
    text-transform: uppercase;
}

.select__dropdown-item,
.select__header-item {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #121212;
}

.select__header-item {
    display: block;
    position: relative;
    padding-right: 16px;
    text-align: center;
}

.select__header-item--lang {
    font-size: 28px;
}

.select__header-item::after {
    content: "";
    position: absolute;
    top: 30%;
    transform: translateY(-50%) rotate(45deg);
    right: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #121212;
    border-left-color: transparent;
    border-top-color: transparent;
}

.select__dropdown-item {
    display: flex;
    justify-content: center;
    padding: 5px 16px;
    padding-left: 0;
    position: relative;
    font-size: 14px;
}

.select__dropdown-item--city {
    padding: 5px 0;
}

.select__dropdown-item--lang {
    padding: 8px;
    font-size: 28px;
    text-transform: uppercase;
}

.select__dropdown {
    width: 100%;
    background-color: #fff;
    overflow-y: auto;
    justify-content: center;
    flex-direction: column;
    display: none;
    border: 1px solid #121212;
    position: absolute;
    top: 100%;
    z-index: 20;
}

.select__dropdown--lang {
    width: auto;
}

.select__dropdown--show {
    display: flex;
    justify-content: start;
}

.select__dropdown--show[data-dropdown=city] {
    height: 300px;
}

.select__dropdown-item {
    transition: all 0.4s ease;
}

.select__dropdown-item--active,
.select__dropdown-item:hover {
    background-color: #121212;
    color: #fce500;
}

@media screen and (max-width: 991px) {
    .select__header--lang {
        justify-content: center;
    }

    .select__dropdown--burger {
        height: 250px;
        justify-content: start;
    }
}

.select__dropdown::-webkit-scrollbar {
    background-color: #121212;
    width: 5px;
}

.select__dropdown::-webkit-scrollbar-track {
    background-color: #fce500;
}

.select__dropdown::-webkit-scrollbar-thumb {
    background-color: #121212;
}
