
.product-template-default .cart .quantity {
    display: none;
}

.my-prod-qty-container {
    color: #f98602;
    padding-left: 45px;
}

.my-prod-qty-input-range-container {
    display: flex;
    padding: 5px 0 10px 0;
    column-gap: 10px;
    align-items: center;
}

.my-prod-qty-btn {
    width: 35px;
    height: 35px;
    padding: 2px;
    color: #ffffff;
    flex-shrink: 0;
    cursor: pointer;
    font-size: 1.25rem;
    align-items: center;
    border-radius: 35px;
    display: inline-flex;
    justify-content: center;
    border: 1px solid #f98602;
    background: linear-gradient(to bottom, #545454, #000000);
}

.my-prod-qty-btn:hover {
    background: linear-gradient(to bottom, #000000, #545454);
}

#my-prod-qty-input-range {
    width: 100%;
    height: 20px;
    outline: none;
    border-radius: 4px;
    border: 1px solid #333232;
    box-shadow: 0 0 12px #f98602;
    background: linear-gradient(to right, #f98602 var(--range-fill, 0.5%), #1a1a1a var(--range-fill, 0.5%));
    -webkit-appearance: none;
    appearance: none;
}

#my-prod-qty-input-range::-webkit-slider-runnable-track {
    height: 10px;
    background: transparent;
}
#my-prod-qty-input-range::-moz-range-track {
    height: 20px;
    background: transparent;
}

#my-prod-qty-input-range::-webkit-slider-thumb {
    top: -8px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    border: 1px solid #333232;
    background: linear-gradient(135deg, #f59629, #f59629);
    box-shadow: 0 0 5px #f59629, 0 0 10px #f59629, 0 0 15px rgba(249, 134, 2, 0.8);
    -webkit-appearance: none;
}

#my-prod-qty-input-range::-moz-range-thumb {
    top: -8px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    background: linear-gradient(135deg, #f59629, #f59629);
    box-shadow: 0 0 5px #f59629, 0 0 10px #f59629, 0 0 15px rgba(249, 134, 2, 0.8);
    border: 1px solid #333232;
    -webkit-appearance: none;
}

.my-prod-qty-breakdown-container {
    position: relative;
    min-height: 50px;
    margin-left: 52px;
    margin-right: 52px;
}
.my-prod-qty-breakdown-item {
    bottom: 5px;
    width: 60px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 4px;
    line-height: 1.25;
    text-align: center;
    position: absolute;
    border-radius: 5px;
    border: 1px solid;
    border-color: #c15603 !important;
    transform: translateX(-30px);
    background-color: var(--enfold-main-color-primary, #ef7b00);
}
.my-prod-qty-breakdown-item::before {
    content: "";
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    bottom: -7px;
    display: block;
    margin: 0 auto;
    position: absolute;
    border-top: 8px solid transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top-color: var(--enfold-main-color-primary, #ef7b00);
    transform-origin: center top;
}
.my-prod-qty-breakdown-item.active {
    background-color: #17c11e;
    border-color: #028508 !important;
}
.my-prod-qty-breakdown-item.active::before {
    border-top-color: #17c11e;
}




