﻿@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --orange: #FFA535;
    --brightOrange: #FFC266;
    --grey: #3B3C42;
    --lightGrey: #EFEFEF;
    --white: #FFF;
}

body,
html,
.overfoweHide {
    position: absolute;
    font-family: 'Nunito';
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.icon,
.icon_filter,
.icon_info,
.icon_arrow_left,
.icon_arrow_right,
.icon_standort {
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: cover;
    position: relative;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin: 0 0.4em 0 0.2em
}

.icon_filter {
    background-image: url("../assets/Filter.svg");
    top: 0.2em;
    margin-right: 0.2em;
}

.icon_info {
    background-image: url("../assets/info_orange.svg");
    top: 0.2em;
    margin-right: 0.2em;
}

.icon_arrow_left {
    background-image: url("../assets/arrow_left_orange.svg");
    top: 0.3em;
}

.icon_arrow_right {
    background-image: url("../assets/arrow_right_orange.svg");
    top: 0.3em;
}

.icon_x {
    background-image: url("../assets/Close.svg");
}

.icon_standort {
    background-image: url("../assets/Standort_orange.svg");
}

h2 {
    color: var(--grey);
    font-size: 24;
    text-align: center;
}

h3 {
    font-size: 18px;
}

a {
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

section {
    position: relative;
    padding-bottom: 1em;
}

section::after {
    content: " ";
    position: absolute;
    width: 90%;
    bottom: 0;
    height: 4px;
    border-radius: 2px;
    background-color: var(--lightGrey);
}

section:last-of-type:after {
    content: "";
    display: none;
}

div.section {
    margin-top: 8px;
    position: relative;
}

div.section-border-bottom {
    padding-top: 1em;
    padding-bottom: 1em;
    border-top: 1px solid var(--lightGrey);
    border-bottom: 1px solid var(--lightGrey);
}

/*.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #FFA535;
    border-radius: 4px;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .slider:hover {
        opacity: 1;
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        background: #FFA535;
        cursor: pointer;
        border-color: #FFA535;
        border-radius: 10px;
        box-shadow: #d4d4d4 1px 1px;
    }

    .slider::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #FFA535;
        cursor: pointer;
        border-color: #FFA535;
        border-radius: 10px;
        box-shadow: #d4d4d4 1px 1px;
    }
*/
