.ui-slider-outer {
    position: relative;
    margin-top: 0.75rem;
    height: 5px;
    background-color: var(--background-secondary-color);
    border-radius: var(--el-border-radius);
}

.ui-slider {
    position: absolute;
    left: 0.75rem;
    height: 100%;
    width: calc(100% - 1.5rem);
    background-color: var(--background-secondary-color);
}

.ui-slider-range {
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, var(--el-gradient-end) 0%, var(--el-gradient-start) 100%);
    z-index: 1;
    border-radius: var(--el-border-radius);
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
}

.ui-slider-handle {
    position: absolute;
    z-index: 2;
    top: -0.5rem;
    margin-left: -0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--el-gradient-end);
    cursor: ew-resize;
    outline: none;
}

.ui-slider-handle:hover {
    background-color: var(--el-gradient-end);
}

.ui-slider-handle:last-child {
    background-color: var(--el-gradient-end);
}

.slider-range-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.slider-range-item {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-primary-color);
}