/**********************************************************************************************************************/
/*** select list replica **********************************************************************************************/
/**********************************************************************************************************************/
.customSelect{
    position: relative;
    display: block;
    width: 100%;
    max-width: 250px;
    min-height: 35px;
    height: auto;
}
.customSelect .dropdownSelected{
    width: 100%;
    height: 35px;
    background-color: #fff;
    border: 1px solid var(--dark-grey-15);
    border-radius: 2px;
    font-size: 14px;
}
.customSelect .dropdownSelected > div > div:first-of-type{
    padding-left: 15px;
}
.customSelect.open .dropdownSelected{
    border-color: var(--gsi-blue);
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.customSelect .dropdownSelected > span{
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-block;
    width: 14px;
    height: 8px;
    background: url("../images/dropdown-arrow.svg") no-repeat;
    background-size: 100%;
}
.customSelect.open .dropdownSelected > span{
    transform: rotate(180deg);
}
.customSelect .dropdownSelected div{
    height: 35px;
}
.customSelect .dropdownSelected div > div{
    display: flex;
    align-items: center;
}
.customSelect ul{
    position: absolute;
    top: 70px;
    width: 100%;
    max-height: 210px;
    overflow-y: scroll;
    border: 1px solid var(--gsi-blue);
    border-top: none;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    background-color: #fff;
    margin: 0;
    padding: 0;
    list-style-type: none;
    z-index: 10;
}
.customSelect[data-search="disabled"] ul{
    top: 35px;
}
.customSelect ul li{
    display: flex;
    align-items: center;
    height: 35px;
    padding-left: 15px;
    background-color: #fff;
    font-size: 14px;
}
.customSelect ul li.selectMark{
    background-color: var(--dark-grey-5);
}
.customSelect input{
    position: absolute;
    width: 100%;
    top: 35px;
    height: 35px!important;
    border: none!important;
    margin: 0!important;
    padding-left: 15px!important;
    cursor: auto!important;
}
.customSelect.open input{
    border-left: 1px solid var(--gsi-blue)!important;
    border-right: 1px solid var(--gsi-blue)!important;
    border-radius: 0;
}


/*** If select is multiple ********************************************************************************************/
/*.customSelect{
    max-width: 500px;
}
.customSelect select[multiple] + .dropdownSelected + ul + input{
    max-width: unset!important;
}
.selectedMiniBox{
    display: inline-block!important;
    height: unset!important;
    background-color: var(--dark-grey-15);
    color: #fff;
    padding: 5px;
    border-radius: 2px;
    margin-right: 5px;
}

.customSelect select[multiple] + .dropdownSelected{
    min-height: 35px;
    height: auto;
    padding: 5px;
}

.customSelect select[multiple] + .dropdownSelected > div{
    height: auto;
}

.customSelect select[multiple] + .dropdownSelected > div .selectedText{
    display: none;
}*/

