.selector-wrap{
    width: 100%;
    max-width: 620px;
}
.selector-container {
    position: relative;
    width: 100%;
    height: 55px;
    margin: 0px auto;
}

.track-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 21px;
    background: #EBF2FF;
    transform: translateY(-50%);
    border-radius: 20px;
}

.track-point {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    font-weight: 700;
    color: #333;
    height: 100%;
    width: 3px;
    background: #fff;
    text-indent: -99999px;
}

.selector {
    position: absolute;
    height: 40px;
    width: 40px;
    background: #007bff;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: grab;
    transition: left 0.2s ease;
}

.selector-label {
    pointer-events: none;
}

.selector-text{
    display: flex;
    justify-content: space-between;
}