.prices__item {
    display: flex;
    flex-direction: column;
    padding: 5px 8px;
}
.prices__item:nth-child(odd){
    background: rgba(255, 95, 61, .04);
}
.prices__title {
    font-size: 18px;
    line-height: 35px;
    letter-spacing: .8px;
}
.prices__price {
    color:  var(--contrast-color);
    font-weight: 500;
    font-size: 22px;
    margin-left: 5px;
    align-self: flex-end;
    width: 155px;
    flex-shrink: 0;
    text-align: right;
}
/*.prices__price:after {*/
/*    content: "₽";*/
/*    margin-left:3px;*/
/*}*/

@media ( min-width: 1150px ) {
    .prices__item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 5px 20px;
    }
    .prices__title {
        flex-grow: 1;
    }
    .prices__price {
        align-self: center;
    }
}


