* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    background: white;
}

.slider {
    margin: 20px;
    width: 300px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.slider-value {
    background: #2c7da0;
    color: white;
    padding: 0px 8px;
    border-radius: 12px;
    font-size: 12px;
    min-width: 35px;
    text-align: center;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: #ccc;
    cursor: pointer;
}

.slider-fill {
    position: absolute;
    height: 100%;
    background: #2c7da0;
    width: 0%;
    pointer-events: none;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #2c7da0;
    border-radius: 50%;
    cursor: grab;
    z-index: 2;
}

.slider-thumb:active {
    cursor: grabbing;
}



#thumb2 {
    background: #e07a5f;
}

#value2 {
    background: #e07a5f;
}

#fill2 {
    background: #e07a5f;
}