.select{
    position: relative;
}

.select label{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    left: 15px;
    pointer-events: none;
    z-index: 20;
}

.select-search .selectric-items .selected.highlighted{
    cursor: default;
}

.select__search{
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: 100%;
    background-color: white;
    border-radius: 10px;
    font-size: 18px;
    color: #181E4B;
    border: none;
    outline: none;
    z-index: 21;
    opacity: 0;
    padding: 5px 0 5px 15px;
    /*pointer-events: none;*/
}

.selectric-disabled + .select__search{
    pointer-events: none;
}

.selectric-open + .select__search{
    z-index: 22;
    pointer-events: auto;
    opacity: 1;
}

.select.changed label{
    display: none;
}

.select + .error{
    color: #DF6951;
    font-size: 12px;
}

.select + .error:not(:empty){
    margin-top: 5px;
}

.selectric-open{
    z-index: 22;
}
@media screen and (min-width: 768px) {
    .select label{
        left: 20px;
    }

    .select__search{
        padding: 5px 0 5px 20px;
    }
}