.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    overflow: hidden;
    min-width: 120px;
    max-width: 120px;
    width: 100%
}
.qty-selector button {
    background: none;
    border: none;
    width: 36px;
    height: 42px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}
.qty-selector button:hover { background: #f5f5f5; }
.qty-selector input {
    width: 48px !important;
    padding: 0 !important;
    border: none !important;
    border-left: 1px solid #d0d0d0 !important;
    border-right: 1px solid #d0d0d0 !important;
    text-align: center !important;
    font-size: 15px !important;
    height: 42px !important;
    color: #1a1a1a !important;
    background: #fff !important;
    pointer-events: auto;
    -moz-user-select: text;
         user-select: text;
    -webkit-user-select: text;
    outline: none;
    -moz-appearance: textfield;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-add-to-cart {
    display: block;
    width: 100%;
    /*max-width: 250px;*/
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    /*@media (max-width: 576px) {*/
    /*    width: 220px;*/
    /*}*/
}
.btn-add-to-cart:hover { background: #333; }
