<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Finansieringsskalkylatorn */

input[type=range] {
    width: 100%;
    background-color: transparent;
    -webkit-appearance: none;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    background: #F6BDAD;
    border: 0;
    border-radius: 2.2px;
    width: 100%;
    height: 4px;
    cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
    margin-top: -9.75px;
    width: 23px;
    height: 23px;
    background: #FA896A;
    border-radius: 17px;
    border: 3px solid white;
    cursor: pointer;
    -webkit-appearance: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #F6BDAD;
}
input[type=range]::-moz-range-track {
    background: #F6BDAD;
    border: 0;
    border-radius: 2.2px;
    width: 100%;
    height: 4px;
    cursor: pointer;
}
input[type=range]::-moz-range-thumb {
    width: 23px;
    height: 23px;
    background: #FA896A;
    border-radius: 17px;
    cursor: pointer;
    border: 3px solid white;
}
input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 10.75px 0;
    color: transparent;
    width: 100%;
    height: 6px;
    cursor: pointer;
}
input[type=range]::-ms-fill-lower {
    background: #afaba7;
    border: 0;
    border-radius: 4.4px;
}
input[type=range]::-ms-fill-upper {
    background: #E88E2D;
    border: 0;
    border-radius: 4.4px;
}
input[type=range]::-ms-thumb {
    width: 26px;
    height: 26px;
    background: #fff;
    border: 5.2px solid #FA896A;
    border-radius: 17px;
    cursor: pointer;
    margin-top: 0px;
    /*Needed to keep the Edge thumb centred*/
}
input[type=range]:focus::-ms-fill-lower {
    background: #E88E2D;
}
input[type=range]:focus::-ms-fill-upper {
    background: red;
}
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align:auto) {
    /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
    input[type=range] {
        margin: 0;
        /*Edge starts the margin from the thumb, not the track as other browsers do*/
    }
}

input.financing_slider_text {
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 8.5pt;
    padding: 3px;
    width: 77px;
}
/* ----------------------- */
</pre></body></html>