body {
    font-family: 'Montserrat';
    background-color: #F5E9BD;
}


input[type=range].sldr {
    width: 100%;
    margin: 0px 0;
    background-color: transparent;
    -webkit-appearance: none;
}
input[type=range].sldr:focus {
    outline: none;
}
input[type=range].sldr::-webkit-slider-runnable-track {
    background: rgba(0, 113, 169, 0.5);
    border: 1px solid #010101;
    border-radius: 13px;
    width: 100%;
    height: 25px;
    cursor: pointer;
}
input[type=range].sldr::-webkit-slider-thumb {
    margin-top: -1px;
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: 1px solid #000000;
    cursor: pointer;
    -webkit-appearance: none;
}
input[type=range].sldr:focus::-webkit-slider-runnable-track {
    background: #0071a9;
}
input[type=range].sldr::-moz-range-track {
    background: rgba(0, 113, 169, 0.5);
    border: 1px solid #010101;
    border-radius: 13px;
    width: 100%;
    height: 25px;
    cursor: pointer;
}
input[type=range].sldr::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: 1px solid #000000;
    cursor: pointer;
}
input[type=range].sldr::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 1px 0;
    color: transparent;
    width: 100%;
    height: 25px;
    cursor: pointer;
}
input[type=range].sldr::-ms-fill-lower {
    background: #0071a9;
    border: 1px solid #010101;
    border-radius: 26px;
}
input[type=range].sldr::-ms-fill-upper {
    background: rgba(0, 113, 169, 0.5);
    border: 1px solid #010101;
    border-radius: 26px;
}
input[type=range].sldr::-ms-thumb {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border: 1px solid #000000;
    cursor: pointer;
    margin-top: 0px;
    /*!Needed to keep the Edge thumb centred*/
}
input[type=range].sldr:focus::-ms-fill-lower {
    background: rgba(0, 113, 169, 0.5);
}
input[type=range].sldr:focus::-ms-fill-upper {
    background: #0071a9;
}
/*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].sldr {
        margin: 0;
        /*Edge starts the margin from the thumb, not the track as other browsers do*/
    }
}

.announce-font {
    text-decoration: underline;
    font-style: italic;
}


footer {
    bottom: 0px;
    position: absolute;
}

.result-font {
    font-size: 3rem;
}

.light-font {
    font-size: 1rem !important;
    font-weight: 100;
}

.center-horizontally {
    margin: auto;
}

.border-raidus-20 {
    border-radius: 20px;
}

.border-left-20 {
    border-radius: 20px 0px 0px 20px;
}

.padding-left-20 {
    padding-left: 20px;
}