.qty-counter {
    overflow: hidden;
    display: inline-block;
    border-radius: 3px;
    white-space: nowrap;
    position: relative;
    -webkit-transition: .25s;
    transition: .25s;
}
span {
    font-size: .8125em;
    color: #999;
    -webkit-font-smoothing: subpixel-antialiased;
}
/*.qty-counter__btn-activate {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    color: #fff;
    background-color: #ef534e;
    border-radius: 1px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 .9rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}*/
.qty-counter__btn-decrement:disabled, .qty-counter__btn-increment:disabled {
    background-color: #fff;
    color: #999;
    border: 1px solid #e0e0e0;
}
.qty-counter__btn-decrement, .qty-counter__btn-increment {
    background-color: #ef534e;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    margin: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 4px;
    min-height: auto;
}