@media screen and (max-width: 560px)
{
    .SliderContainer
    {
        height: 9vw;
        margin-top: 1.5vw;
    }
    .slider-track
    {
        height: 0.8vw;
        border-radius: 1vw;
    }
    
    input[type="range"]::-webkit-slider-runnable-track
    {
        height: 0.8vw;
    }
    
    input[type="range"]::-moz-range-track
    {
        height: 0.8vw;
    }
    input[type="range"]::-ms-track
    {
        height: 0.8vw;
    }
    input[type="range"]::-webkit-slider-thumb
    {
        width: 4vw;
        height: 4vw;
        border-radius: 100%;
        margin-top: -1.8vw;
        border: 0.4vw solid #50A9E1;
    }
    
    input[type="range"]::-moz-range-thumb
    {
        width: 4vw;
        height: 4vw;
        border-radius: 100%;
        margin-top: -4.5vw;
        border: 0.8vw solid #50A9E1;
    }
    
    input[type="range"]::-ms-thumb
    {
        width: 4vw;
        height: 4vw;
        border-radius: 100%;
        margin-top: -4.5vw;
        border: 0.8vw solid #50A9E1;
    }
    
    input[type="range"]:active::-webkit-slider-thumb
    {
        border: 1vw solid #50A9E1;
    }
    
}

@media screen and (max-width: 1200px) and (min-width: 561px)
{
    .SliderContainer
    {
        height: calc(40px + 0.5vw);
    }
    .slider-track
    {
        height: 0.5vw;
        border-radius: 5px;
        border-radius: 20px;
    }
    
    input[type="range"]::-webkit-slider-runnable-track
    {
        height: 0.5vw;
    }
    input[type="range"]::-moz-range-track
    {
        height: 0.5vw;
    }
    input[type="range"]::-ms-track
    {
        height: 0.5vw;
    }
    input[type="range"]::-webkit-slider-thumb
    {
        width: calc(17px + 0.5vw);
        height: calc(17px + 0.5vw);
        border-radius: 100%;
        margin-top: calc(-4px - 0.5vw);
        border: 2px solid #50A9E1;
    }
    
    input[type="range"]::-moz-range-thumb
    {
        width: calc(17px + 0.5vw);
        height: calc(17px + 0.5vw);
        border-radius: 100%;
        margin-top: calc(-4px - 0.5vw);
        border: 2px solid #50A9E1;
    }
    
    input[type="range"]::-ms-thumb
    {
        border-radius: 100%;
        width: calc(17px + 0.5vw);
        height: calc(17px + 0.5vw);
        margin-top: calc(-4px - 0.5vw);
        border: 2px solid #50A9E1;
    }
    
    input[type="range"]:active::-webkit-slider-thumb
    {
        border: 3px solid blue;
    }
    
}

@media screen and (min-width: 1201px)
{
    .SliderContainer
    {
        height: 50px;
    }
    .slider-track
    {
        height: 4px;
        border-radius: 5px;
        border-radius: 20px;
    }
    
    input[type="range"]::-webkit-slider-runnable-track
    {
        height: 5px;
    }
    
    input[type="range"]::-moz-range-track
    {
        height: 5px;
    }
    input[type="range"]::-ms-track
    {
        height: 5px;
    }
    input[type="range"]::-webkit-slider-thumb
    {
        width: 20px;
        height: 20px;
        border-radius: 100%;
        margin-top: -9px;
        border: 2px solid #50A9E1;
    }
    
    input[type="range"]::-moz-range-thumb
    {
        width: 20px;
        height: 20px;
        border-radius: 100%;
        margin-top: -9px;
        border: 2px solid #50A9E1;
    }
    
    input[type="range"]::-ms-thumb
    {
        
        width: 20px;
        height: 20px;
        border-radius: 100%;
        margin-top: -9px;
        border: 3px solid #50A9E1;
    }
    
    input[type="range"]:active::-webkit-slider-thumb
    {
        border: 3px solid blue;
    }
    
}

.SliderContainer
{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

input[type="range"]
{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin:auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}


.slider-track
{
    width: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: #EAECF0;
}


input[type="range"] {
    -webkit-appearance: none; /* Removes default styling */
    -moz-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb
{
    -webkit-appearance: none;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    pointer-events: auto;
}


input[type="range"]::-moz-range-thumb
{
    -webkit-appearance: none;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    pointer-events: auto;
}


input[type="range"]::-ms-thumb
{
    -webkit-appearance: none;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    pointer-events: auto;
}

input[type="range"]:active::-webkit-slider-thumb
{
    background-color: #ffffff;
}
