.r-slider {
    background-color: #dee4ec;
    border-radius: 5px;
    height: 5px;
    position: relative;
    cursor: pointer;
    margin: 80px 0 10px;
    width: 100%;
    user-select: none;
    box-shadow: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.r-slider * {
    user-select: none;
    box-shadow: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.r-slider_hidden {
    visibility: hidden;
}
.r-slider__cloud {
    user-select: none;
    position: absolute;
    top: 8px;
    padding: 3px 5px;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-weight: bold;
    width: max-content;
}
.r-slider__cloud_moving {
    top: -34px;
    background-color: #00a79d;
    color: #fff;
    z-index: 1;
}
.r-slider__cloud_moving::before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid rgba(0, 0, 0, 0);
    border-top-color: #6883a0;
}
.r-slider__cloud_right {
    right: 0;
}
.r-slider__circle {
    position: absolute;
    top: -5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #49cb95c9;
    border: 4px solid #00a79d7a;
    cursor: pointer;
    touch-action: none;
}
.r-slider__filled-line {
    background-color: #ffc107;
    border-radius: 5px;
    height: 5px;
    width: 0;
}
