.select-field{
    display: flex;
    border: 1px solid #788093;
    border-radius: 3px;
    padding: 11px;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    background: white;
}
.btn-expand-select{
    width: 10px;
}
.select-options{
    width: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 100%;
    border: 1px solid #788093;
    display: flex;
    flex-direction: column;    
    background: white;
}
.select-option{
    padding: 10px;
}
.select-option:hover {
    background-color: #F3F5F9;;
}
.selected-option{
    background: #DEE2EB;
}