.select-modal {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0 26px 0 28px;
    border: 1px solid #B5A58C;
    box-sizing: border-box;
    border-radius: 30px;
    background: #ffffff;
    padding-bottom: 15px;
    height: 60px;
    z-index: -1;
    overflow: hidden;
    transition: 1.5s height;
    opacity: 0;
}
.select-modal.select-modal_active {
    height: auto;
    z-index: 2;
    transition: 1.5s height;
    opacity: 1;
}
.select-modal__top {
    height: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.select-modal__search {
    height: calc(100% - 3px);
    flex-grow: 1;
    border: none;
    outline: none;
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: #575144;
}
.select-modal__search::placeholder {
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: #575144;
}
.select-modal__item {
    height: 38px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.select-modal__item:hover .calc-stap__select-name {
    color: #CC9966;
}
.select-modal__content {
    margin-top: -6px;
    max-height: 390px;
    overflow: hidden;
    overflow-y: visible;
}