.counter-block {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #F70424;
    border-radius: 100px;
    width: 100%;
    height: 60px;
    overflow: hidden;
}
.counter-block__btn {
    width: 80px;
    height: 100%;
    flex: 0 0 auto;
    padding: 0;
    border: none;
    position: relative;
    color: #fff;
    cursor: pointer;
    -webkit-text-size-adjust: none;
    background: #F70424;
}
.counter-block__btn_icon_plus:before,
.counter-block__btn_icon_minus:before {
    font-size: 28px;
    line-height: 1;
    font-style: normal;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.counter-block__btn_icon_plus:before {
    content: "+";
}
.counter-block__btn_icon_minus:before {
    content: "–";
}
.counter-block__btn_no_pointers {
    pointer-events: none;
}
.counter-block__control-wrapper {
    flex: 1 1 auto;
    margin: 0 4px;
    position: relative;
}
.counter-block__control {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    border-radius: 0;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.22;
    color: #000;
    padding: 8px;
    outline: none;
}

.counter-block_sm {
    height: 36px;
    border-color: #C8102E;
    margin-bottom: 16px;
}
.counter-block_sm .counter-block__btn {
    background: #C8102E;
    width: 48px;
}
.counter-block_sm .counter-block__control {
    font-size: 18px;
}