.v-select {
    max-width: 100%
}

.v-select__wrapper {
    position: relative
}

.v-select__wrapper .chevron {
    flex-shrink: 0;
    margin-left: 6px
}

.v-select__label {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 8px
}

.v-select__button,.v-select__label {
    color: var(--color_secondary__100);
    font-weight: 600
}

.v-select__button {
    background: var(--bg_secondary__100);
    border: 1px solid transparent;
    height: 48px;
    justify-content: space-between;
    padding: 0 12px;
    text-align: left;
    width: 100%
}

.v-select__button:active,.v-select__button:focus,.v-select__button:hover {
    border-color: var(--bg_light__100)
}

.v-select__button.selected span {
    color: var(--color_main__100);
    font-weight: 700
}

.v-select__dropdown {
    background: var(--bg_secondary__200);
    border-radius: var(--b-radius);
    bottom: -10px;
    color: var(--color_secondary__100);
    display: grid;
    gap: 4px;
    left: 0;
    max-height: 250px;
    overflow: auto;
    padding: 4px;
    position: absolute;
    width: 100%;
    z-index: 10
}

.v-select__dropdown.bottom {
    box-shadow: 0 4px 10px #2a24441a;
    transform: translateY(100%)
}

.v-select__dropdown.top {
    bottom: calc(100% + 10px);
    box-shadow: 0 -4px 10px #2a24441a
}

.v-select__dropdown-item {
    align-items: center;
    color: var(--color_secondary__100);
    display: flex;
    font-size: 14px;
    font-weight: 600;
    height: 50px;
    justify-content: flex-start;
    padding: 0 12px;
    transition: .2s;
    width: 100%
}

.v-select__dropdown-item.active,.v-select__dropdown-item:hover {
    background: var(--bg_primary__100);
    color: var(--color_main__100)
}

.v-select__dropdown-item .check {
    margin-left: auto
}

html.theme__dark .v-select__button {
    background: var(--bg_secondary__200)
}
