* {
    margin: 0;
    padding: 0;
}

.rose .main {

    height: 100vh;
    background-color: black;
    font-family: sans-serif;
    background: linear-gradient(180deg, red 0%, blueviolet 100%) no-repeat;
}

.rose .container {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.rose .range-slider {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.rose .rs-range {

    margin-top: 5vmin;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.rose .rs-range:focus {

    outline: none;
}

.rose .rs-range::-webkit-slider-runnable-track {

    width: 100%;
    height: 0.25vh;
    cursor: pointer;
    box-shadow: none;
    background: black;
}

.rose .rs-range::-moz-range-track {

    width: 100%;
    height: 0.25vh;
    cursor: pointer;
    box-shadow: none;
    background: white;
}

.rose .rs-range::-webkit-slider-thumb {

    box-shadow: none;
    border: 0px solid white;

    height: 3vmin;
    width: 3vmin;
    border-radius: 50%;
    background: rgba(0, 0, 0, 1);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -1.5vmin;
}

.rose .rs-range::-moz-range-thumb {

    box-shadow: none;
    border: 0px solid white;

    height: 6vmin;
    width: 3vmin;
    border-radius: 30%;
    background: rgba(0, 0, 0, 1);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -3vmin;
}

.rose .rs-label {
    position: relative;
    transform-origin: center center;
    display: block;
    width: 37px;
    height: 37px;
    background: transparent;
    border-radius: 50%;
    line-height: 5vh;
    margin-bottom: -12px;
    text-align: center;
    padding-top: 9.5px;
    box-sizing: border-box;
    border: 1px solid black;
    margin-left: -20.22px;
    left: attr(value);
    color: black;
    font-style: normal;
    line-height: normal;
    font-size: 2vmin;
}

.rose .rs-label::after {

    content: "";
    display: block;
    font-size: 4vmin;
    font-weight: bold;
    letter-spacing: 0.07em;
    margin-top: -0.8vmin;
}

.rose .box-minmax {

    margin-top: 2vmin;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 2vmin;

    color: black;
}

@media screen and (max-width: 768px) {
    #rs-bullet{
        width: 30px;
        height: 30px;
        padding-top: 6px;
    }

}
