@charset "UTF-8";
@font-face {
  font-family: "primary-font";
  src: url("../fonts/open-sans/light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "primary-font";
  src: url("../fonts/open-sans/regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "primary-font";
  src: url("../fonts/open-sans/italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "primary-font";
  src: url("../fonts/open-sans/bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "primary-font";
  src: url("../fonts/open-sans/bold-italic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
}
*,
*:before,
*:after {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/** /
* {
  outline: 1px dotted rgba( 0, 0, 0, .2 );
}
/**/
:root {
  --background-color: #fff;
  --text-color: #000;
  --primary-color: #0694e8;
  --secondary-color: rgb(212, 158, 21);
  --lite-bg: #f4f8fd;
}

html {
  font-size: 62.5%;
  line-height: 1.333em;
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font: normal 1.8rem/1.3 "primary-font";
  min-height: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  width: 100dvw;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
p {
  margin-bottom: 2rem;
}

h1 {
  text-wrap: balance;
}

h2 {
  font-size: 2.4rem;
}

table + h2,
p + h2 {
  margin-top: 4rem;
}

a {
  color: var(--primary-color);
}

nav ul {
  list-style-type: none;
}

img {
  max-width: 100%;
}

#page-wrapper {
  margin: 8rem auto 0;
  max-width: 98rem;
}

.wide {
  position: relative;
}
.wide:after {
  background-color: inherit;
  content: "";
  display: block;
  height: 100%;
  left: calc((100vw - 98rem) / -2);
  position: absolute;
  top: 0rem;
  width: 100vw;
  z-index: -1;
}
@media (width < 1000px) {
  .wide:after {
    left: 0;
  }
}

input#nav-toggle {
  display: none;
}

label[for=nav-toggle] {
  cursor: pointer;
  position: fixed;
  right: 1rem;
  top: 3rem;
  z-index: 10001;
}
@media (width > 1000px) {
  label[for=nav-toggle] {
    display: none;
  }
}
input#nav-toggle:checked + label[for=nav-toggle] > i:first-of-type {
  display: none;
}
input#nav-toggle:checked + label[for=nav-toggle] > i:last-of-type {
  display: inline-block;
}
label[for=nav-toggle] i:last-of-type {
  display: none;
}

.container {
  /* max-width: 64rem; */
  /* padding: 4rem 0; */
}
.container h1 {
  color: var(--primary-color);
}
.container ul {
  list-style-type: none;
}
.container ul li {
  padding-left: 1.6rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.container ul li:before {
  color: var(--primary-color);
  content: "–";
  display: inline-bock;
  left: 0;
  position: absolute;
}
.container table {
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: 2.4rem 0;
  width: 100%;
}
.container table th {
  border-bottom: 2px solid #999;
  color: #09f;
  padding: 0.2rem 0;
  text-align: left;
  vertical-align: bottom;
}
.container table td {
  border-bottom: 0.1rem solid #eee;
  width: 25%;
  text-align: left;
  vertical-align: top;
}
.container table td h4 {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.6rem;
}

header {
  background-color: var(--background-color);
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  height: 8rem;
  position: fixed !important;
  top: 0;
  z-index: 10000;
}
header.wide:after {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}
header .logo {
  width: 24rem;
}
@media (width < 1000px) {
  header nav {
    background-color: var(--primary-color);
    bottom: 0;
    overflow-x: scroll;
    overscroll-behavior: contain;
    padding: 3rem 3rem 3rem 0;
    position: fixed;
    right: -32rem;
    top: 0;
    transition: 0.15s right ease-in-out;
    width: 32rem;
  }
  input#nav-toggle:checked ~ #page-wrapper header nav {
    right: 0;
  }
  header nav ul {
    padding-left: 2rem;
  }
  header nav ul li {
    margin: 1rem 0;
  }
  header nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  header nav ul li a.active {
    color: #000;
  }
}
@media (width > 1000px) {
  header nav {
    display: block;
    margin-top: 3rem;
  }
  header nav ul {
    display: flex;
    gap: 2rem;
    list-style-type: none;
  }
  header nav ul > li {
    position: relative;
  }
  header nav ul > li a {
    color: #000;
    display: block;
    padding-bottom: 3rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
  }
  header nav ul > li a:hover, header nav ul > li a.active {
    color: var(--primary-color);
  }
  header nav ul > li a:hover:after, header nav ul > li a.active:after {
    border-top: 0.3rem solid var(--primary-color);
    content: "";
    display: inline-block;
    left: -0.9rem;
    position: absolute;
    top: 4.8rem;
    width: calc(100% + 1.8rem);
  }
  header nav ul > li.nav--home {
    display: none;
  }
  header nav ul > li > ul {
    background-color: rgba(255, 255, 255, 0.6666666667);
    backdrop-filter: blur(5px);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
    display: none;
    gap: 1rem;
    left: -0.9rem;
    /*outline: 1px dotted green;*/
    padding: 0.9rem;
    position: absolute;
    top: 5.1rem;
    min-width: calc(100% + 1.8rem);
  }
  header nav ul > li > ul > li {
    width: 100%;
  }
  header nav ul > li > ul > li a {
    display: block;
    padding-bottom: 1rem;
    text-transform: none;
  }
  header nav ul > li > ul > li a:hover:after, header nav ul > li > ul > li a.active:after {
    display: none !important;
  }
  header nav ul > li:hover > ul {
    display: block;
  }
}

.modular-hero {
  /*overflow: hidden;*/
  display: flex;
}
@media (width > 768px) {
  .modular-hero {
    max-height: 54.1935483871rem;
  }
}
@media (width < 768px) {
  .modular-hero {
    flex-direction: column;
  }
}
@media (width > 980px) {
  .modular-hero {
    height: 32.2580645161vw;
  }
}
@media (width < 1000px) {
  .modular-hero {
    padding: 1rem;
  }
}
.modular-hero > div {
  position: relative;
}
@media (width > 768px) {
  .modular-hero > div {
    width: 50%;
  }
}
.modular-hero > div:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding-right: 2rem;
}
@media (width < 768px) {
  .modular-hero > div:last-of-type {
    order: -1;
  }
}
.modular-hero > div h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  text-wrap: balance;
}
.modular-hero > div p {
  font-size: 1.5rem;
  font-weight: 400;
}
.modular-hero > div img {
  height: 100%;
  object-fit: cover;
  /* height: 100%; */
  /*aspect-ratio: 28/18;*/
}
@media (width > 980px) and (width < 1680px) {
  .modular-hero > div img {
    left: 0;
    position: absolute;
    max-width: none !important;
    width: 50vw;
  }
}
@media (width > 1680px) {
  .modular-hero > div img {
    left: 0;
    position: absolute;
    max-width: none !important;
    width: 84rem;
  }
}

.button {
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  color: var(--background-color);
  display: inline-block;
  font-family: "primary-font";
  font-size: 1.5rem;
  font-weight: 800;
  padding: 1rem 2rem;
  text-decoration: none;
}
.button:hover {
  color: var(--text-color);
}

.modular-infos {
  background-color: var(--lite-bg);
  font-size: 1.4rem;
  padding: 5rem 0;
}
@media (width < 1000px) {
  .modular-infos {
    padding: 3rem 1rem;
  }
}
.modular-infos > div {
  background-color: var(--background-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  padding: 2rem;
}
@media (width < 768px) {
  .modular-infos > div {
    flex-direction: column;
  }
}
.modular-infos > div div {
  padding-left: 4rem;
  position: relative;
  width: 100%;
}
.modular-infos > div div i {
  color: var(--primary-color);
  font-size: 2rem;
  left: 0;
  position: absolute;
  top: 0.3rem;
}
.modular-infos > div div:not(:first-of-type):before {
  content: "";
  position: absolute;
}
@media (width > 768px) {
  .modular-infos > div div:not(:first-of-type):before {
    border-left: 0.2rem solid #eee;
    height: 100%;
    left: -2rem;
  }
}
@media (width < 768px) {
  .modular-infos > div div:not(:first-of-type):before {
    border-top: 0.2rem solid #eee;
    left: 0;
    top: -2rem;
    width: 100%;
  }
}
@media (width > 768px) and (width < 1000px) {
  .modular-infos > div div:last-of-type {
    display: none;
  }
}

.modular-teaser {
  padding: 0 0 8rem;
}
@media (width < 1000px) {
  .modular-teaser {
    padding: 0 1rem 8rem;
  }
}
.modular-teaser h2 {
  padding: 4rem 0 3rem;
  text-align: center;
}
.modular-teaser .grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (width < 1000px) {
  .modular-teaser .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 540px) {
  .modular-teaser .grid {
    grid-template-columns: 1fr;
  }
}
.modular-teaser .grid {
  grid-template-rows: auto;
}
.modular-teaser .grid > a {
  /*background-color: var(--background-color);*/
  /* border-bottom: 0.5rem solid var(--primary-color); */
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  color: var(--text-color);
  overflow: hidden;
  padding: 2rem;
  position: relative;
  text-decoration: none;
}
.modular-teaser .grid > a:after {
  background-color: var(--primary-color);
  bottom: 0;
  content: "";
  display: block;
  height: 0.5rem;
  left: 0;
  position: absolute;
  transition: height 0.1s ease-in-out;
  width: 100%;
  z-index: -1;
}
.modular-teaser .grid > a:hover p,
.modular-teaser .grid > a:hover h3 {
  color: var(--background-color);
}
.modular-teaser .grid > a:hover i {
  color: var(--text-color);
}
.modular-teaser .grid > a:hover:after {
  height: 100%;
}
.modular-teaser .grid > a i {
  color: var(--primary-color);
  font-size: 4rem;
  margin-bottom: 2rem;
}
.modular-teaser .grid > a h3 {
  margin-bottom: 1rem;
}
.modular-teaser .grid > span {
  /*background-color: var(--background-color);*/
  /* border-bottom: 0.5rem solid var(--primary-color); */
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  color: var(--text-color);
  overflow: hidden;
  padding: 2rem;
  position: relative;
  text-decoration: none;
}
.modular-teaser .grid > span:after {
  background-color: var(--primary-color);
  bottom: 0;
  content: "";
  display: block;
  height: 0.5rem;
  left: 0;
  position: absolute;
  transition: height 0.1s ease-in-out;
  width: 100%;
  z-index: -1;
}
.modular-teaser .grid > span i {
  color: var(--primary-color);
  font-size: 4rem;
  margin-bottom: 2rem;
}
.modular-teaser .grid > span h3 {
  margin-bottom: 1rem;
}

.modular-text {
  padding: 0 0 8rem;
}
@media (width < 1000px) {
  .modular-text {
    padding: 0 1rem 8rem;
  }
}
.modular-text h2 {
  padding: 4rem 0 3rem;
  text-align: center;
}
@media (width > 1000px) {
  .modular-text p:has(.left, .right) {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .modular-text p:has(.left, .right) img {
    width: 100%;
  }
  .modular-text p:has(.left, .right) img.right {
    order: 2;
  }
}

.faqs,
.modular-faqs {
  background-color: var(--lite-bg);
  border-radius: 0.5rem;
  margin-bottom: 4rem;
  padding: 2rem 2rem 1rem;
}
.faqs details,
.modular-faqs details {
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  display: grid;
  grid-template-rows: 0fr;
  margin-bottom: 2rem;
  padding: 1rem;
  position: relative;
}
.faqs details:before,
.modular-faqs details:before {
  background-image: url(../img/details--toggle.svg);
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 3rem auto;
  content: "";
  display: inline-block;
  height: 2rem;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 1.7rem;
  transition: transform 0.1s ease-in-out;
  width: 3rem;
  z-index: 0;
}
.faqs details summary,
.modular-faqs details summary {
  appearance: none;
  cursor: pointer;
  display: block;
  font-weight: bold;
  padding: 0.5rem 3rem 0.5rem 1rem;
  position: relative;
  user-select: none;
}
.faqs details summary::marker,
.modular-faqs details summary::marker {
  color: transparent;
  outline: 1px dotted green;
  overflow: hidden;
  width: 0 !important;
}
.faqs details > div,
.modular-faqs details > div {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1rem;
  transition: grid-template-rows ease-in-out 5s;
}
.faqs details > div > div,
.modular-faqs details > div > div {
  overflow: hidden;
  padding-top: 2rem;
}
.faqs details[open]:before,
.modular-faqs details[open]:before {
  transform: rotate(-180deg);
}
.faqs details[open] > div,
.modular-faqs details[open] > div {
  animation: animate 0.15s 0s 1 normal forwards;
}

@keyframes animate {
  from {
    grid-template-rows: 0fr;
  }
  to {
    grid-template-rows: 1fr;
  }
}
footer {
  font-size: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  line-height: 1.5;
  padding: 8rem 0;
  width: 100%;
}
@media (width < 640px) {
  footer {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }
}
footer:after {
  border-top: 0.1rem solid #ccc;
}
footer .logo {
  display: inline-block;
}
footer .logo img {
  width: 28rem;
}
footer div i {
  color: rgba(0, 0, 0, 0.4);
}
footer nav {
  position: relative;
}
footer nav ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0;
  right: 0;
  text-align: right;
}
footer nav ul li {
  display: none;
}
footer nav ul li.nav--praxis, footer nav ul li.nav--haeufige-beschwerden, footer nav ul li.nav--koerperregion, footer nav ul li.nav--leistungen, footer nav ul li.nav--kontakt {
  display: inline-block;
}

#base {
  display: grid;
  font-size: 1.3rem;
  grid-template-columns: 1fr 1fr;
  padding: 2rem 0 0;
}
@media (width < 640px) {
  #base {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
}
#base:after {
  border-top: 0.1rem solid #ccc;
}
#base nav {
  position: relative;
}
#base nav > ul {
  position: absolute;
  display: flex;
  gap: 2rem;
  right: 0;
}
#base nav > ul > li:not(.nav--kontakt) {
  display: none;
}
#base nav > ul > li > a {
  display: none;
}
#base nav > ul > li > ul {
  display: flex;
  gap: 2rem;
  right: 0;
}
#base nav > ul > li > ul > li {
  display: none;
}
#base nav > ul > li > ul > li.nav--datenschutz, #base nav > ul > li > ul > li.nav--impressum {
  display: inline-block;
}
#base nav > ul > li > ul > li.nav--datenschutz a, #base nav > ul > li > ul > li.nav--impressum a {
  display: inline-block;
}

.box-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.box-grid .box {
  width: 30rem;
}

.teaser,
.box {
  border-radius: 0.4rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.teaser img,
.box img {
  border-bottom: 0.1rem solid #eee;
  width: 100%;
}
.teaser h2,
.box h2 {
  background-color: #09f;
  color: #fff;
  font-size: 1.5rem !important;
  line-height: 2.8rem;
  font-weight: 600;
  margin-bottom: 0 !important;
  padding: 0 1rem 0 2.6rem;
  position: relative;
  text-transform: uppercase;
}
.teaser h2:before,
.box h2:before {
  color: rgba(255, 255, 255, 0.5);
  content: "\f068";
  font-size: 1.1rem;
  font-family: "Font Awesome 7 Free";
  left: 1rem;
  padding-top: 0.1rem;
  position: absolute;
}
.teaser h2 + p,
.box h2 + p {
  padding: 0;
}
.teaser h2 + ul,
.box h2 + ul {
  padding-top: 1.2rem;
}
.teaser h4,
.box h4 {
  color: #09f;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 1rem 1rem;
}
.teaser p,
.box p {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  padding: 0 1rem 1rem;
}
.teaser p span,
.box p span {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  display: block;
  padding: 1rem;
}
.teaser ul,
.box ul {
  padding-left: 1rem;
  padding-bottom: 2rem;
}
.teaser ul li,
.box ul li {
  padding-bottom: 0.5rem;
}
.teaser a,
.box a {
  color: #09f;
  text-decoration: none;
}

.content-teaser {
  max-width: 64rem;
}
.content-teaser img {
  float: left;
  width: 32rem;
}
@media (width < 1024px) {
  .content-teaser img {
    float: none;
    width: 100%;
  }
}
.content-teaser h4,
.content-teaser p {
  padding-left: 33rem;
}
@media (width < 1024px) {
  .content-teaser h4,
  .content-teaser p {
    padding-left: 1rem;
  }
}

#breadcrumbs {
  font-size: 1.3rem;
  margin: 4rem 0;
}
@media (width < 1000px) {
  #breadcrumbs {
    padding: 0 1rem;
  }
}
#breadcrumbs a {
  text-decoration: none;
}

body.page--home #breadcrumbs {
  display: none;
}

.colgrp {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
}
.colgrp > p:empty {
  display: none;
}
.colgrp > div > h2 {
  text-wrap: balance;
}
.colgrp > div:has(img) {
  display: flex;
}
.colgrp > div:has(img) img {
  aspect-ratio: 4/3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* BEGIN COOKIEBANNER */
#cookiebannerbg {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: block;
  left: 0;
  padding: 10px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  #cookiebannerbg {
    /*    background-color: rgba( 255, 255, 255, .8 );*/
    backdrop-filter: saturate(180%) blur(1px);
    -webkit-backdrop-filter: saturate(180%) blur(1px);
  }
}
#cookie-management-banner {
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  display: block;
  font-size: 13px;
  left: 20px;
  line-height: 18px;
  padding: 20px;
  position: fixed;
  bottom: 20px;
  max-width: 360px;
  min-width: 300px;
  z-index: 10000;
}

@media screen and (max-width: 639px) {
  #cookie-management-banner {
    left: 10px;
  }
}
#cookie-management-banner a {
  color: #fff;
  text-decoration: underline;
}

#cookie-management-banner > div {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

#cookie-management-banner > section > div > h4,
#cookie-management-banner > section > div > p {
  hyphens: auto;
  margin-bottom: 8px;
}

#cookie-management-banner > section {
  max-height: 60vh;
  overflow-y: auto;
}

.cookiebanner fieldset {
  border: 1px solid #fff;
  border-radius: 4px;
  margin: 20px 0 0;
  padding: 0 10px 10px 10px;
}

.cookiebanner fieldset label {
  cursor: pointer;
  display: block;
  padding-left: 20px;
  position: relative;
  text-align: left;
  width: calc(100% - 20px);
}

.cookiebanner fieldset label input[type=checkbox] {
  left: 0;
  opacity: 1;
  position: absolute;
  top: 8px;
  width: auto;
}

.cookiebanner fieldset label small {
  display: block;
  line-height: 18px;
}

body.cookiebanner {
  /*  margin-top: 44px;*/
}

.disallowed-external-content button,
a.btn {
  background-color: #fff;
  color: var(--primary-color) !important;
  display: inline-block;
  font-size: 18px;
  border-radius: 4px;
  line-height: 18px;
  /*  margin-top: 20px;*/
  padding: 6px 2px;
}

.disallowed-external-content button {
  margin-bottom: 0;
  margin-top: 10px;
}

.disallowed-external-content button:hover,
a.btn:hover {
  color: #333;
}

.disallowed-external-content {
  background-color: var(--primary-color);
  color: #fff;
  display: block;
  padding: 20px;
}

.sib-form {
  display: none;
}

.btngrp {
  display: flex;
  justify-content: space-between;
}

button,
.btngrp a.btn {
  font-size: 15px;
  margin-top: 20px;
  padding: 6px 12px;
  text-decoration: none !important;
  text-transform: uppercase;
}

.btngrp a.btn:first-of-type {
  margin-right: 6px;
}

.btngrp a.btn:last-of-type {
  margin-left: 6px;
}

#cookie-management-banner fieldset {
  display: none;
}

#cookie-management-banner.customize fieldset {
  display: block;
}

#cookiecustomize {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

#cookie-management-banner.customize #cookiecustomize {
  display: none;
}

#cookieaccept {
  background-color: rgba(255, 255, 255, 0.6) !important;
  display: none;
}

#cookie-management-banner.customize #cookieaccept {
  display: block;
}

a.txt {
  color: var(--background-color) !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  border-radius: 4px;
  line-height: 18px;
  /* margin-top: 2rem; */
  padding: 6px;
  text-decoration: underline;
}

button.manage-privacy-settings {
  border: 0;
  cursor: pointer;
  font-size: 15px;
  padding: 3px 10px;
  text-transform: uppercase;
}

/* END COOKIEBANNER */

/*# sourceMappingURL=smk.css.map */
