.itemCounter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    margin: 5px 0px 15px;
}
.itemCounter input[type=number] {
    -moz-appearance: textfield;
}
.itemCounter input::-webkit-outer-spin-button,
.itemCounter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.itemCounter .itemCounterLabel {
    display: block;
    font-size: 0.875rem;
    line-height: 1rem;
}
.itemCounter .value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}
.itemCounter .value .val {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 30px;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: center;
}
@media (max-width: 991.98px) {
    .itemCounter .value .val {
        width: 35px;
        padding: 5px;
    }
}
.itemCounter .value .val :not(input) {
    width: initial;
}
.itemCounter .value .action {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background: #fff;
    border: 1px solid #bbb;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 1rem;
}
.itemCounter .value .action:first-of-type {
    left: 1px;
}
.itemCounter .value .action:last-of-type {
    right: 1px;
}
.itemCounter .value .action:hover {
    background: #f8f8f8;
}
.itemCounter .value #sum.disabled,
.itemCounter .value #minus.disabled {
    pointer-events: none;
    opacity: 0.5;
}
