html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #f6f6ee;
    font-family: Open Sans;
    font-size: 16px;
    line-height: 28px;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    src: local('Open Sans Regular'),local('Open-Sans-Regular'),
 url('../media/font/open-sans-regular.woff2') format('woff2'),
 url('../media/font/open-sans-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: bold;
    src: local('Open Sans Bold'),local('Open-Sans-Bold'),
 url('../media/font/open-sans-700.woff2') format('woff2'),
 url('../media/font/open-sans-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: normal;
    src: local('Open Sans Italic'),local('Open-Sans-Italic'),
 url('../media/font/open-sans-italic.woff2') format('woff2'),
 url('../media/font/open-sans-italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: bold;
    src: local('Open Sans Bold Italic'),local('Open-Sans-Bold-Italic'),
 url('../media/font/open-sans-700italic.woff2') format('woff2'),
 url('../media/font/open-sans-700italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Allerta Stencil';
    font-style: normal;
    font-weight: normal;
    src: local('Allerta Stencil Regular'),local('Allerta-Stencil-Regular'),
 url('../media/font/allerta-stencil.woff2') format('woff2'),
 url('../media/font/allerta-stencil.ttf') format('truetype');
}

@font-face {
    font-family: 'Dancing Script';
    font-style: normal;
    font-weight: normal;
    src: local('Dancing Script Regular'),local('Dancing-Script-Regular'),
 url('../media/font/dancing-script.woff2') format('woff2'),
 url('../media/font/dancing-script.ttf') format('truetype');
}

p {
    font-family: Open Sans;
    font-size: 16px;
    line-height: 28px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #000000;
    font-weight: normal;
}

h1 {
    font-family: Allerta Stencil;
    font-size: 30px;
    color: #318ab6;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 34px;
}

h2 {
    font-family: Allerta Stencil;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

h3 {
    font-family: Open Sans;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

h5 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
}

h6 {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}

a {
    color: #318ab6;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #5bbeef;
}

a:focus {
    text-decoration: none;
    color: #5bbeef;
}

a:active {
    color: #5bbeef;
    text-decoration: none;
}

span {
    color: #000000;
}

ul {
    list-style-type: disc;
}

li {
    margin-top: 15px;
    margin-bottom: 15px;
}

label {
    color: #000000;
    font-weight: normal;
}

input {
    color: #000000;
    font-weight: normal;
    padding: 5px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #808080;
    background-color: #ffffff;
    border-radius: 0;
    margin: 0;
}

input::placeholder {
    color: #808080;
    font-size: 16px;
}

textarea {
    color: #000000;
    font-weight: normal;
    padding: 5px 10px;
    height: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #808080;
    background-color: #ffffff;
    border-radius: 0;
}

input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #808080;
    position: relative;
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 0;
    padding: 0;
    margin-right: 5px;
    margin-left: 0;
    cursor: pointer;
}

input[type=checkbox]:checked {
    background-color: #00aaff;
}

input[type=checkbox]:checked:before {
    content: url('/media/Check.svg');
    color: #ffffff;
    position: absolute;
    left: 3px;
    width: 13px;
    height: 13px;
    top: 2px;
}

input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-style: none;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 0;
}

select {
    padding: 5px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 16px;
    border: 1px solid #808080;
    background-image: url('/media/SelectArrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 15px;
    background-color: #ffffff;
    border-radius: 0;
}

input[type=radio] {
    border: 1px solid #808080;
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    background-color: #ffffff;
    padding: 0;
    margin-left: 0;
    margin-right: 5px;
}

input[type=radio]:checked {
    background-color: #00aaff;
}

input[type=radio]:checked:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
}

table {
    border-collapse: collapse;
}

th {
    border: 1px solid #000000;
    padding: 5px 10px;
    font-weight: bold;
    background-color: #f0f0f0;
    text-align: center;
}

td {
    padding: 5px 10px;
    border: 1px solid #000000;
}

tr:nth-child(odd) {
    background-color: #f0f0f0;
}

.Button {
    color: #ffffff;
    text-decoration: none;
    background-color: #318ab6;
    padding: 10px;
    cursor: pointer;
    margin-top: 15px;
    display: inline-flex;
    margin-bottom: 15px;
}

.Button:hover {
    background-color: #5bbeef;
    text-decoration: none;
    color: #ffffff;
}

.Button:active {
    background-color: #5bbeef;
    text-decoration: none;
    color: #ffffff;
}

.Button:focus {
    background-color: #5bbeef;
    text-decoration: none;
    color: #ffffff;
}

.RechtsTextWrap {
    padding: 50px 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
}

@media (min-width: 501px) and (max-width: 999px) {
    .RechtsTextWrap {
        padding: 80px 25px;
        margin-left: auto;
        margin-right: auto;
        max-width: 1280px;
    }
}

@media (min-width:1000px) {
    .RechtsTextWrap {
        padding: 100px 50px;
        margin-left: auto;
        margin-right: auto;
        max-width: 1280px;
    }
}

.H1Recht {
    margin-bottom: 40px;
}

.H2Recht {
    margin-top: 50px;
    margin-bottom: 25px;
}

footer p {
    color: #ffffff;
}

footer a {
    color: #5bbeef;
}

header {
    background-image: linear-gradient(to bottom, #318ab6 0%, rgba(49, 138, 182, 0.75) 50%, rgba(49, 138, 182, 0) 100%);
    height: 80px;
}

.HeaderTitle {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width:500px) {
    header {
        height: 100px;
    }
}

.TitleOverflowWrap {
    margin-top: -80px;
}

@media (max-width:500px) {
    .TitleOverflowWrap {
        margin-top: -100px;
    }
}

.Width100prc {
    width: 100%;
}

.DisplayBlock {
    display: block;
}

.TxtImgBG:nth-child(even):before {
    content: '';
    position: absolute;
    width: 100%;
    height: 25px;
    z-index: 10000;
    bottom: 100%;
    background-image: url('/media/Welle-Break-Blau.svg');
    background-repeat: repeat-x;
    background-position: center bottom;
    margin-bottom: -1px;
}

.WaveTop {
    position: relative;
}

.WaveTop:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 25px;
    z-index: 10000;
    bottom: 100%;
    background-image: url('/media/Welle-Break.svg');
    background-repeat: repeat-x;
    background-position: center bottom;
    margin-bottom: -1px;
}

@media (min-width:1000px) {
    .TitleOverflowText {
        margin-top: -50px !important;
    }
}

.ConsentTxt {
    font-size: 12px;
    line-height: 16px;
}

.MapFull {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}
