.quantity-slider-container {
    margin: 20px 0;
}

#quantity-slider {
    margin: 10px 0;
    width: 100%;
}

#quantity-slider-input {
    text-align: center;
    margin-top: 10px;
    width: 60px;
}

.ui-slider-handle {
    cursor: pointer;
}

.quantity-slider-wrapper {
    margin: 20px 0;
}

.ticket-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
}

.ticket-input-wrapper button.qty-btn {
    font-size: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #eee;
    cursor: pointer;
}

#quantity-slider-input {
    text-align: center;
    width: 30%;
    font-size: 18px;
    margin: 0 10px;
    background: #fff;
    border: 0px solid #ccc;
}

.number-of-tickets {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Add this to your quantity-slider.css */
.rwd-discount-bulbs {
    position: relative;
    height: 50px; /* Give enough space for bulbs and arrows */
    /*margin-bottom: 30px;*/
    min-width: 60px; /* instead of fixed width */
    width: auto;
    padding: 6px 8px; /* adjust padding */
}

.rwd-discount-value {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
}

.rwd-discount-bulb {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    background: #00c853;
    color: #fff;
    font-weight: bold;
    padding: 1px 1px;
    border-radius: 20%;
    text-align: center;
    width: 55px;
    height: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.rwd-discount-bulb:first-child {
    background: #ff9800;
}

.rwd-discount-bulb.active:first-child {
    transform: translateX(-50%) scale(1.0) !important;
}

.rwd-discount-bulb:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #00c853;
}

.rwd-discount-bulb:first-child:after {
    border-top-color: #ff9800;
}

/* Add to quantity-slider.css */
.rwd-discount-bulb.active {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Make sure slider is positioned relatively */
.quantity-slider-container {
    position: relative;
}

/* Range Slider */
.ui-slider-horizontal .ui-slider-handle {
    top: -0.5em;
    margin-left: -.6em;
    border-radius: 100%;
}



/* Adjust the slider margin to accommodate bulbs */
#quantity-slider {
    margin: 0px 0 20px;
    height: 5px;
}

#rwd-price-summary {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    color: #333;
}
#rwd-price-summary del {
    color: #999;
    margin-right: 5px;
}

#rwd-price-summary {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    color: #444;
}
#rwd-price-summary del {
    color: #999;
    margin-right: 5px;
}


