@charset "UTF-8";
@font-face {
    font-family: "SWR-Sans";
    font-weight: normal;
    font-display: swap;
    font-style: normal;
    src: local("SWR-VAR-Sans"), url("../fonts/SWRSans-Regular.woff2") format("woff2"), url("../fonts/SWRSans-Regular.woff") format("woff");
}

* {
    box-sizing: border-box;
}
html {
    font-size: 16px;
    margin: 0;
    padding: 0;
}
body {
    font-family: SWR-Sans, Thesis, helvetica, roboto, "droid sans", arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1em;
    background-color: #fff;
    color: #494949;
    margin: 0;
    padding: 0;

    /* ==============================================
    NOTE: Kann auch später entfernt werden.
          Sorgt dafür, dass auch bei wenig Inhalt
          die Seite immer gestreckt wird.
    ============================================== */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

a {
    color: #494949;
    text-decoration: none;
}

a:active,
a:focus,
a:hover {
    color: #494949;
    text-decoration: underline;
}

img {
    width: 100%;
    border: none;
    display: block;
}

/* visuell verstecken - für Screenreader, wenn aria-label nicht genutzt werden kann */
.sr-only {
    width: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
}


/* ==== Seitenwrapper */

#content-wrapper {
    overflow-x: hidden;
}

.container {
    margin: 0 auto;
    padding-right: 10px;
    padding-left: 10px;
    min-height: 0.1px;
}

@media (max-width:767px) {
    .container {
        width: 100%;
        max-width: 510px;
    }
    .innerWrapper {
        width: 100%;
    }
}

@media (min-width:992px) {
    .container {
        width: 750px;
        max-width: 750px;
    }
}

@media (min-width:1200px) {
    .container {
        width: 996px;
        max-width: inherit;
    }
}

@media screen and (min-width: 1901px) {
    .innerWrapper {width: 1424px;}
}

/* Basis eines Druckstylesheets */

@media print {
    #header, #site-footer {
        display: none;
    }

    .container {
        width: 96% !important;
    }

    a[href]:after,
    a[href^="#"]:after,
    a[href^="javascript:"]:after,
    abbr[title]:after {
        content: "";
    }

    .label {
        border: none;
    }
}
