
.slider-container {
    position: relative;
    height: 12px;
    position: relative;
    flex-grow: 1;
    margin-bottom: 32px;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    height: 6px;
    width: 100%;
    transform: translateY(-50%);
    border-radius: 3px;
    background: linear-gradient(to right, red 0%, yellow 50%, green 100%);
    z-index: 1;
}

.slider-container input[type="range"] {
    -webkit-appearance: none;
    position: absolute;
    height: 100%;
    width: 100%;
    background: none;
    pointer-events: none;
    z-index: 3;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 16px;
    height: 16px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
}

.slider-container input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 16px;
    height: 16px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
}

.label {
    position: absolute;
    top: 15px;
    background: #222;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    transform: translateX(-50%);
    z-index: 4;
}

.inactive_slider_wrapper {
    opacity: 0.5;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.inactive_slider_container {
    max-width: 55%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
}

.inactive_slider {
    height: 6px;
    background: var(--color-light);
    border-radius: 4px;
    width: 100%;
    margin-right: 10px;
}

.inactive_slider_icon {
    font-size: 17px;
    margin-left: 5px;
    color: var(--color-medium);
}