.cfooter{
    --buttons-size: 35px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.cfooter__row{
    display: flex;
    align-items: center;
    gap: 8px;
}
.cfooter__rowrow{
    display: flex;
    align-items: center;
    gap: 8px;
}
.cfooter__fire, .cfooter__ready{
    display: flex;
    align-items: center;
    gap: 8px;
}
.cfooter__ready-icon, .cfooter__fire-icon{
    font-size: 21px;
}
.cfooter__ready-icon {
    color: var(--footer-fire-icon-color);
}
.cfooter__fire-icon{
    color: var(--footer-fire-icon-color);
    font-size: 21px;
}
.cfooter__fire-text, .cfooter__ready-text{
    font-size: 20px;
    white-space: nowrap;
}
.cfooter__actions{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}
.cfooter__money{
    display: flex;
    gap: 5px;
    align-items: center;
    min-width: 140px;
    border-radius: 22px;
    height: 45px;
    padding-left: 7px;
    padding-right: 15px;
}
.cfooter__count{
    display: flex;
    align-items: center;
    gap: 3px;
}
.cfooter__down, .cfooter__up{
    width: var(--buttons-size);
    height: var(--buttons-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 1;
}
.cfooter__down, .cfooter__up{
    background: var(--button-bg-color);
    color: var(--button-text-color);
}
.cfooter__remove{
    background: var(--footer-items-remove-bg-color);
    height: var(--buttons-size);
    border-radius: var(--buttons-size);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-left: 21px;
    padding-right: 21px;
}
.cfooter__remove span{
    opacity: 0.4;
}
.cfooter__input input{
    border: none;
    box-shadow: none !important;
    background: none !important;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    width: 40px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.cfooter__price{
    font-size: 20px;
    margin-left: auto;
}
.cfooter__items{
    display: flex;
    gap: 5px;
    align-self: start;
}
.cfooter__item{
    width: var(--buttons-size);
    height: var(--buttons-size);
    border-radius: 50%;
    background: var(--footer-items-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}
.cfooter__item_active{
    background: var(--step-border-color-active);
    color: var(--part-bg-color);
}
.cfooter__item_add{
    border: 1px dashed var(--footer-items-add-border-color) !important;
}
.cfooter__button{
    margin-left: auto;
    display: flex;
    gap: 4px;
}
@media(min-width: 768px){
    .cfooter__money{
        display: flex;
        min-width: 270px;
        border-radius: 25px;
        height: 50px;
        padding-left: 8px;
        padding-right: 16px;
    }
    .cfooter{
        --buttons-size: 40px;
    }
    .cfooter__fire-text, .cfooter__ready-text, .cfooter__price, .cfooter__input input{
        font-size: 23px;
    }
    .cfooter__row_pcvertical{
        flex-direction: column;
    }
}
@media(max-width: 480px){
    .cfooter__row_first{
        flex-direction: column;
    }
    .cfooter__row_first .cfooter__rowrow{
        align-self: end;
    }
}
@media(max-width: 768px){
    .cfooter__row_mvertical{
        flex-direction: column;
    }
}