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

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