    /* ---SLIDER STYLE-- */
input[type=range] {
    -webkit-appearance: none;
    margin: 2px 0;
    width: 100%;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #999, 0px 0px 0px #0d0d0d;
    background: black;
    border-radius: 25px;
    border: 0px solid #fff;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: black solid thin;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -12px;
    background-image: linear-gradient(to top, #ffb300 0%, #ffd800 100%);
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: black;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #fff;
    border-radius: 25px;
    border: 0px solid #fff;
}

input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #fff, 0px 0px 0px #0d0d0d;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    background-image: linear-gradient(to top, #ffb300 0%, #ffd800 100%);
}

input[type=range]::-ms-track {
    width: auto;
    height: 5px;

    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;

    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 15px 0;

    /*remove default tick marks*/
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #f5dd57;
    border-radius: 10px;
}

input[type=range]::-ms-fill-upper {
    background: #ffb300;
    border-radius: 10px;
}

input[type=range]::-ms-thumb {
    border: 1px solid #fff;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: #fff;
    margin-top: -2px;
    background-image: linear-gradient(to top, #ffffff 0%, #d6d6d6 100%);
}

input[type=range]:focus::-ms-fill-lower {
    background: #ffb300;
}

input[type=range]:focus::-ms-fill-upper {
    background: #ffb300;
}

.header-main {
    font-size: 46px;
    margin-top: 0;
    margin-bottom: 36px;
    font-weight: 500;
}
