/* Main container for the course pricing slider */
.course-pricing-slider {
    width: 100%;
    position: relative;
    padding: 15px;
    margin-bottom: 10px !important;
    border-radius: 4px;
}

/* Styles for the slider bar */
.course-pricing-slider .pricing-slider {
    width: 80%;
    margin: 10px 10%;
    z-index: 1;
    appearance: none;
    height: 6px;
    background: #d42d68;
    outline: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.course-pricing-slider .pricing-slider:hover {
    background: #d8557a;
}

/* Styles for the slider thumb (movable part) for Webkit browsers (like Chrome & Safari) */
.course-pricing-slider .pricing-slider::-webkit-slider-thumb {
    width: 36px;
    height: 26px;
    margin-top: -12px;
    appearance: none;
    background: #ffffff url('/wp-content/uploads/2023/08/course-pricing-slider-arrows.png') no-repeat center center;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Arrows inside the slider thumb for Webkit browsers */
.course-pricing-slider .pricing-slider::-webkit-slider-thumb::before,
.course-pricing-slider .pricing-slider::-webkit-slider-thumb::after {
    position: absolute;
    top: 50%;
    font-size: 10px;
    color: #d42d68;
    transform: translateY(-50%);
    pointer-events: none; /* ensure it doesn't interfere with slider functionality */
}

.course-pricing-slider .pricing-slider::-webkit-slider-thumb::before {
    content: '‹'; /* using Unicode character for left pointing arrow */
    left: 5px;
}

.course-pricing-slider .pricing-slider::-webkit-slider-thumb::after {
    content: '›'; /* using Unicode character for right pointing arrow */
    right: 5px;
}

/* Styles for the slider thumb for Firefox */
.course-pricing-slider .pricing-slider::-moz-range-thumb {
    width: 30px;
    height: 20px;
    background: #ffffff;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Tier labels below the slider */
.course-pricing-slider .slider-tiers {
    display: flex;
    position: relative;
    z-index: 0;
    width: 100%;
}

.course-pricing-slider .tier-label {
    flex: 1;
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    color: #303030;
}