.select {
    min-width: 0;
    position: relative;
    min-width: 200px;
}
.select__body {
    position: relative;
}
.select__title {
    color: inherit;
    text-align: left;
    background-color: #fff;
    cursor: pointer;
    width: 100%;
    border-radius: 40px;
    z-index: 2;
    position: relative;
}
.select__value {
    display: flex;
    min-width: 0;
    align-items: center;
    height: 40px;
    gap: 5px;
    line-height: 150%;
    padding: 0 16px;
}
.select__value > * {
    flex: 1 1 auto;
}
.select__value:after {
    content: "";
    align-self: center;
    transition: all 0.3s ease 0s;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid transparent;
    border-top: 8px solid #212529;
    margin-top: 6px;
}
.--select-open .select__value:after {
    transform: rotate(-180deg);
    margin-top: -8px;
}
.select__value.--select-pseudo-label::before {
    content: attr(data-pseudo-label);
    opacity: 0.5;
}
.select__content {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}
.select__text {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select__input {
    padding: 0 10px;
    width: 100%;
    background-color: transparent;
    height: 100%;
}
.--select-active .select__input::placeholder {
    color: #000;
}
.--select-focus .select__input::placeholder {
    opacity: 0.5;
}
.select__options {
    color: #000;
    position: absolute;
    top: calc(100% - 21px);
    border-radius: 0 0 20px 20px;
    min-width: 100%;
    left: 0;
    background-color: #fff;
    padding: 25px 0px 5px 0px;
    overflow: hidden;
}
.select__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
}
.select__option {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 5px 16px;
    color: inherit;
    line-height: 150%;
}
.select__option.--select-selected {
    background-color: #eee;
}
@media (any-hover: hover) {
    .select__option:hover {
        background: #d9d9d9;
    }
}
.select__row {
    display: inline-flex;
    align-items: center;
}
.select--show-top .select__options {
    top: auto;
    bottom: calc(100% - 1px);
    border: 1px solid #d9d9d9;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    padding: 5px 0px 10px 0px;
}
.--select-tag {
    cursor: pointer;
}
 