.range-slider {
    margin: 10px 0 0 0;
}

.range-slider {
    width: 100%;
}

.range-slider__range {
    --SliderColor: hsl(184.35, 100%, 50%);
    -webkit-appearance: none;
    width: calc(100% - (73px));
    height: 10px;
    border-radius: 5px;
    background: var(--SliderColor);
    outline: none;
    padding: 0;
    margin: 0;
}

    .range-slider__range::-webkit-slider-thumb {
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--SliderColor);
        cursor: pointer;
        transition: background 0.15s ease-in-out;
        box-shadow: 0 0 0 3px #fff, 0 0 0 6px #567FBF;
    }

        .range-slider__range::-webkit-slider-thumb:hover {
            background: #567FBF;
        }

    .range-slider__range:active::-webkit-slider-thumb {
        background: var(--SliderColor);
    }

    .range-slider__range::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border: 0;
        border-radius: 50%;
        background: var(--SliderColor);
        cursor: pointer;
        transition: background 0.15s ease-in-out;
        box-shadow: 0 0 0 3px #fff, 0 0 0 6px #567FBF;
    }

        .range-slider__range::-moz-range-thumb:hover {
            background: #567FBF;
        }

    .range-slider__range:active::-moz-range-thumb {
        background: var(--SliderColor);
    }

    .range-slider__range:focus::-webkit-slider-thumb {
        box-shadow: 0 0 0 3px #fff, 0 0 0 6px #567FBF;
    }

    .range-slider__range::-moz-range-track {
        background: var(--SliderColor);
        border-radius: 5px;
        height: 10px;
    }

.range-slider__value {
    --after-arrow-color: #1e4075;
    display: inline-block;
    position: relative;
    width: 60px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: #1e4075;
    padding: 5px 10px;
    margin-left: 8px;
    transition: background-color 0.3s ease;
}

    .range-slider__value:after {
        position: absolute;
        top: 8px;
        left: -7px;
        width: 0;
        height: 0;
        border-top: 7px solid transparent;
        border-right: 7px solid var(--after-arrow-color, #1e4075);
        border-bottom: 7px solid transparent;
        content: "";
        transition: background-color 0.3s ease;
    }

::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}

@keyframes slideaway {
    from {
        transform: translateY(0);
        opacity: 1;
        display: block;
    }

    to {
        transform: translateY(40px);
        opacity: 0;
    }
}

@keyframes slidein {
    from {
        transform: translateY(40px);
        opacity: 0;
        display: block;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hide-vise-od-100 {
    display: none;
    animation: slideaway 500ms forwards;
}

.show-vise-od-100 {
    display: block;
    animation: slidein 500ms forwards;
}
