#referti-modal section{
    position: relative;
}

#referti-modal section.region{
    position: relative;
    z-index: 10;
}


.select-options-referti {
    /*display: flex;*/
    flex-direction: column;
    width: 100%;
    position: relative;
    /*display: none;*/
    z-index: 3;
}

.select-options-referti .reset-input{
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.select-options-referti .reset-input.active{
    display: block;
}

.options-input {
    width: 100%;
    height: auto;
    position: relative;
}

.options-input input {
    width: 100%;
    border-radius: 15px;
    background-color: #CFE2F3;
    border: none;
    outline: none;
    padding: 1rem;
    transition: all .3s;
    color: #2580C8;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
}

.options-input input::placeholder {
    font-size: 16px;
    font-weight: bold;
}

.options-list {
    height: max-content;
    max-height: 178px;
    overflow-y: auto;
    background: #EDF7FD;
    position: absolute;
    top: 0;
    width: 100%;
    display: none;
    margin-top: 40px;
    padding-top: 12px;
    z-index: -1;
    border-radius: 0 0 15px 15px;

}

.options-list.active{
    display: block;
}

.option-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2d333d;
    cursor: pointer;
}

.item-active {
    background: #e0f0fe;
}

.option-item:hover {
    background: #e0f0fe;
    cursor: pointer;
}

.options-list::-webkit-scrollbar {
    width: 10px;
}

.options-list::-webkit-scrollbar-track {
    border-radius: 5px;
}

.options-list::-webkit-scrollbar-thumb {
    height: 30%;
    background: rgba(149,149,149,0.54);
    border-radius: 5px;
}

.options-list::-webkit-scrollbar-thumb:hover {
    background: rgba(149,149,149,0.70);
}

#referti-modal .input-container input{
    width: 100%;
    border-radius: 15px;
    background-color: #CFE2F3;
    border: none;
    outline: none;
    padding: 1rem;
    transition: all .3s;
    color: #2580C8;
    font-size: 16px;
    font-weight: bold;
}

#referti-modal .input-container input.active{
    background: #2580C8;
    color: white;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

#referti-modal .input-container input.active::placeholder{
    color: white;
}