.bx-simple-it-select {
    position: relative;
}
.bx-simple-it-select__value {
    box-sizing: border-box;
    background: white;
    padding: 8px!important;
    border-radius: unset!important;
    border: 1px solid #d0d0d0!important;
    width: 100%!important;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.bx-simple-it-select__value span {
    color: #7e7e7e;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
    user-select: none;
}
.bx-simple-it-select__dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1;
    max-height: 150px;
    overflow-y: scroll;
    overscroll-behavior: contain;
    box-shadow: 0 1px 12px 1px rgb(0 0 0 / 12%);
}
.bx-simple-it-select__option {
    padding: 2px 12px;
    border-bottom: 1px solid #d0d0d0;
    cursor: pointer;
    transition: all .2s linear;
    user-select: none;
}

.bx-simple-it-select__option:hover, .bx-simple-it-select__option.selected {
    background-color: var(--main-color-light);
    color: white!important;
}

.bx-simple-it-select__dropdown::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}
.bx-simple-it-select__dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.bx-simple-it-select__dropdown::-webkit-scrollbar-thumb {
    background: #cecece;
    width: 10px;
    border-radius: 2px;
    border: none;
}

.bx-simple-it-select__chevron {
    position: absolute;
    right: 13px;
    transform: rotateZ(90deg);
}
