.selectBox {
    position: relative;
    display: flex;
    /*width: 400px;*/
    flex-direction: column;
}

.combobox {
    position: absolute;
    border: 1px solid #ccc;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    display: flex;
    flex-direction: column;
    top: 54px;
    width: 100%;
    z-index: 99;
    background: #fff;
}

.combobox.comboboxActive {
    opacity: 1;
    /*display: flex;*/
}

.selectBox .optionsContainer {
    background: whitesmoke;
    color: #333;
    max-height: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.4s;
    overflow: hidden;
    order: 1;
}

.selectBox .selected {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 5px;
    /*margin-bottom: 8px;*/
    color: #333;
    position: relative;
    order: 0;
    font-size: 1.1em;
    font-weight: 400;
}

.selectBox .selected:active,
.selectBox .selected:focus,
.selectBox .selected:focus-visible {
    border-color: #101010;
}

.selectBox .selected::after {
    content: "";
    background-image: url(../../../admin/_img/select.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 32px;
    right: 10px;
    top: 0;
    transition: all 0.4s;
}

.selectBox .optionsContainer.optionsActive {
    max-height: 225px;
    opacity: 1;
    overflow-y: scroll;
}

.selectBox .optionsContainer.optionsActive + .selectBox .selected::after {
    transform: rotateX(180deg);
    top: -6px;
}

.selected.borderActive {
    border-color: #101010 !important;
}

.selectBox .optionsContainer::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}

.selectBox .optionsContainer::-webkit-scrollbar-thumb {
    background: #ccc;
}

.selectBox .option,
.selectBox .selected {
    /*padding: 12px 24px;*/
    padding: 10px;
    cursor: pointer;
}

.selectBox .option:hover {
    background: #1967D3;
    color: #fff;
}

.selectBox label {
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.selectBox label span {
    width: unset !important;
    margin-bottom: 0 !important;
}

.selectBox label span:first-of-type {
    width: 50% !important;
}
.selectBox label span:nth-child(2) {
    width: 30% !important;
}
.selectBox label span:nth-child(3) {
    width: 20% !important;
}

.selectBox .option .radio {
    display: none;
}

/* Searchbox */

.searchBox input {
    width: 100%;
    /*padding: 12px 16px;*/
    padding: 10px;
    font-size: 1em;
    z-index: 100;
    border: 8px solid whitesmoke;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
}

.searchBox input:focus {
    outline: none;
}

.selectBox .optionsContainer.optionsActive ~ .searchBox input {
    opacity: 1;
    pointer-events: auto;
}