.select{
    width: 50%;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 17px 14px 25px 30px;
    background: #FAFAFA;
    cursor: pointer;

}

.select__info{
    display: flex;
    flex-direction: column;
}

.select__title{
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    color:#636363;
}

.select__value{
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    margin-top: 4px;
}

.select__open-icon{
    transform: rotate(90deg);
    height: 10px;
    width: 10px;
}

.select__list{
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #F3F3F3;
}

.select__item{
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    border: 1px solid #dbdbdb;
    width: 100%;
    padding: 10px 20px;
}

@media (max-width:1277px) {
    .select {
     width: 100%;
    }
}
