input[type=range] {
    height: 41px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
}

input[type=range] {
    -webkit-appearance: none;
    /* Hides the slider so that custom slider can be made */
    width: 100%;
    /* Specific width is required for Firefox. */
    background: transparent;
    /* Otherwise white in Chrome */
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 13px;
    cursor: pointer;
    background: #3071A9;
    border-radius: 50px;
}

input[type=range]::-webkit-slider-thumb {
    height: 35px;
    width: 35px;
    border-radius: 42px;
    background: #0099FF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -11px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #3071A9;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 13px;
    cursor: pointer;
    background: #3071A9;
    border-radius: 50px;
}

input[type=range]::-moz-range-thumb {
    height: 35px;
    width: 35px;
    border-radius: 42px;
    background: #0099FF;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 13px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #3071A9;
    border-radius: 100px;
}

input[type=range]::-ms-fill-upper {
    background: #3071A9;
    border-radius: 100px;
}

input[type=range]::-ms-thumb {
    margin-top: 1px;
    height: 35px;
    width: 35px;
    border-radius: 42px;
    background: #0099FF;
    cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
    background: #3071A9;
}

input[type=range]:focus::-ms-fill-upper {
    background: #3071A9;
}

input[type=checkbox] {
    transform: scale(2);
    margin: 2vmin;
}

button {
    font-size: 4vmin;
    padding: 1vmin 2vmin;
    background-color: #0099ff;
    color: white;
    border-radius: 1vmin;
    border: none;
    outline: none;
    margin: 1vmin 0;
    margin-top: 3vmin;
}