.custom-select {
    position: relative;
    font-family: Arial;
    width: 100%;
    max-width: 320px;
}

.custom-select {
    /*display: none;*/
    height: 32px;
}
.custom-select__multiple{
    position: relative;
}
.custom-select select{
    width: 100%;
    height: 32px;
    outline: none;
    background-color: #ffffff;
    border: 1px solid #8A96A8;
    box-sizing: border-box;
    border-radius: 4px;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #626F84 !important;
    padding: 0 12px;
    margin: 2px 0;

}
/*.custom-select.custom-select__multiple select{*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 150px;*/
/*}*/
/*.custom-select.custom-select__multiple select{*/
/*    display: none;*/
/*}*/
/*.custom-select.custom-select__multiple button:active + select{*/
/*    display: block;*/
/*}*/
.custom-select select option{
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.select-selected {
    background-color: transparent;
    border: 1px solid #8A96A8;
    box-sizing: border-box;
    border-radius: 4px;
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #626F84 !important;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 11px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3e%3cpath d='M0.266479 1.13339C0.266479 0.983393 0.324812 0.841726 0.441479 0.733393C0.666479 0.533393 1.00815 0.55006 1.20815 0.766726L5.99173 6.07434L10.6167 0.733371C10.8167 0.508371 11.1584 0.500037 11.3834 0.700037C11.6001 0.900037 11.6167 1.2417 11.4167 1.4667L6.42506 7.216C6.19173 7.47434 5.79173 7.47434 5.55839 7.216L0.408145 1.50006C0.308145 1.39173 0.266479 1.26673 0.266479 1.13339Z' fill='%7B7E86' /%3e%3c/svg%3e");
}

.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
}

.select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    cursor: pointer;
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #8A96A8;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: white;
}
.select-items div{
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #626F84;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}