.wox-input-slider {
    width: 100%;
}

.wox-input-slider-bar-wrapper {
    height: 24px;
    width: 100%;
    position: relative;
}

.wox-input-slider-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 4px;
    align-items: stretch;
}

.wox-input-slider-bar-empty {
    flex-basis: 0;
    flex-shrink: 0;
    border: 1px solid var(--gray-monochromatic-900);
}

.wox-input-slider-bar-fill {
    flex-basis: 100%;
    flex-shrink: 10;
    background-color: var(--gray-monochromatic-900);
}

.wox-input-point {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    position: absolute;
    top: -10px;
    background-color: var(--gray-monochromatic-00);
    box-shadow: 0px 2px 4px rgba(14, 14, 16, 0.12), 0px 1px 6px rgba(14, 14, 16, 0.16);
    cursor: pointer;
}

.wox-input-point-min {
    left: 0;
}

.wox-input-point-max {
    right: 0;
}


.wox-input-fields {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--space-5);
}

.wox-input-fields > div {
    flex-shrink: 10;
}

