html {
  --grid__columns: 12;
  --grid__gutter: 1.875rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), minmax(0, 1fr));
  grid-gap: var(--grid__gutter);
  grid-auto-columns: 1fr;
}

.row--show {
  position: relative;
  background: #f9f9f9;
  z-index: 0;
  padding-top: 0.9375rem;
}

.row--show:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: repeating-linear-gradient(to right, #f0f0f0 0%, #f0f0f0 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc(((100% - (1.875rem * 11)) / 12) + 1.875rem) );
}


/* ----- */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  grid-column: 1 / -1;
}

.row-span-xs-1, .row-span-xs-2, .row-span-xs-3, .row-span-xs-4, .row-span-xs-5, .row-span-xs-6, .row-span-xs-7, .row-span-xs-8, .row-span-xs-9, .row-span-xs-10, .row-span-xs-11, .row-span-xs-12, .row-span-sm-1, .row-span-sm-2, .row-span-sm-3, .row-span-sm-4, .row-span-sm-5, .row-span-sm-6, .row-span-sm-7, .row-span-sm-8, .row-span-sm-9, .row-span-sm-10, .row-span-sm-11, .row-span-sm-12, .row-span-md-1, .row-span-md-2, .row-span-md-3, .row-span-md-4, .row-span-md-5, .row-span-md-6, .row-span-md-7, .row-span-md-8, .row-span-md-9, .row-span-md-10, .row-span-md-11, .row-span-md-12, .row-span-lg-1, .row-span-lg-2, .row-span-lg-3, .row-span-lg-4, .row-span-lg-5, .row-span-lg-6, .row-span-lg-7, .row-span-lg-8, .row-span-lg-9, .row-span-lg-10, .row-span-lg-11, .row-span-lg-12, .row-span-xl-1, .row-span-xl-2, .row-span-xl-3, .row-span-xl-4, .row-span-xl-5, .row-span-xl-6, .row-span-xl-7, .row-span-xl-8, .row-span-xl-9, .row-span-xl-10, .row-span-xl-11, .row-span-xl-12 {
  grid-row: 1;
}

.justify-start {
  justify-self: start;
}

.justify-center {
  justify-self: center;
}

.justify-end {
  justify-self: end;
}

.justify-stretch {
  justify-self: stretch;
}

.align-start {
  align-self: start;
}

.align-center {
  align-self: center;
}

.align-end {
  align-self: end;
}

.align-stretch {
  align-self: stretch;
}

.col-1 {
  grid-column: span 1 / span 1;
}

.col-2 {
  grid-column: span 2 / span 2;
}

.col-3 {
  grid-column: span 3 / span 3;
}

.col-4 {
  grid-column: span 4 / span 4;
}

.col-5 {
  grid-column: span 5 / span 5;
}

.col-6 {
  grid-column: span 6 / span 6;
}

.col-7 {
  grid-column: span 7 / span 7;
}

.col-8 {
  grid-column: span 8 / span 8;
}

.col-9 {
  grid-column: span 9 / span 9;
}

.col-10 {
  grid-column: span 10 / span 10;
}

.col-11 {
  grid-column: span 11 / span 11;
}

.col-12 {
  grid-column: span 12 / span 12;
}

@media screen and (min-width: 0) {
  .col-xs-1 {
    grid-column: span 1 / span 1;
  }

  .col-xs-2 {
    grid-column: span 2 / span 2;
  }

  .col-xs-3 {
    grid-column: span 3 / span 3;
  }

  .col-xs-4 {
    grid-column: span 4 / span 4;
  }

  .col-xs-5 {
    grid-column: span 5 / span 5;
  }

  .col-xs-6 {
    grid-column: span 6 / span 6;
  }

  .col-xs-7 {
    grid-column: span 7 / span 7;
  }

  .col-xs-8 {
    grid-column: span 8 / span 8;
  }

  .col-xs-9 {
    grid-column: span 9 / span 9;
  }

  .col-xs-10 {
    grid-column: span 10 / span 10;
  }

  .col-xs-11 {
    grid-column: span 11 / span 11;
  }

  .col-xs-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 0) {
  .col-start-xs-1 {
    grid-column-start: 1;
  }

  .row-start-xs-1 {
    grid-row-start: 1;
  }

  .col-start-xs-2 {
    grid-column-start: 2;
  }

  .row-start-xs-2 {
    grid-row-start: 2;
  }

  .col-start-xs-3 {
    grid-column-start: 3;
  }

  .row-start-xs-3 {
    grid-row-start: 3;
  }

  .col-start-xs-4 {
    grid-column-start: 4;
  }

  .row-start-xs-4 {
    grid-row-start: 4;
  }

  .col-start-xs-5 {
    grid-column-start: 5;
  }

  .row-start-xs-5 {
    grid-row-start: 5;
  }

  .col-start-xs-6 {
    grid-column-start: 6;
  }

  .row-start-xs-6 {
    grid-row-start: 6;
  }

  .col-start-xs-7 {
    grid-column-start: 7;
  }

  .row-start-xs-7 {
    grid-row-start: 7;
  }

  .col-start-xs-8 {
    grid-column-start: 8;
  }

  .row-start-xs-8 {
    grid-row-start: 8;
  }

  .col-start-xs-9 {
    grid-column-start: 9;
  }

  .row-start-xs-9 {
    grid-row-start: 9;
  }

  .col-start-xs-10 {
    grid-column-start: 10;
  }
  .row-start-xs-10 {
    grid-row-start: 10;
  }

  .col-start-xs-11 {
    grid-column-start: 11;
  }

  .row-start-xs-11 {
    grid-row-start: 11;
  }

  .col-start-xs-12 {
    grid-column-start: 12;
  }

  .row-start-xs-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 0) {
  .pull-right-xs {
    grid-column-end: -1;
  }

  .pull-left-xs {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 0) {
  .justify-xs-start {
    justify-self: start;
  }

  .justify-xs-center {
    justify-self: center;
  }

  .justify-xs-end {
    justify-self: end;
  }

  .justify-xs-stretch {
    justify-self: stretch;
  }

  .align-xs-start {
    align-self: start;
  }

  .align-xs-center {
    align-self: center;
  }

  .align-xs-end {
    align-self: end;
  }

  .align-xs-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 0) {
  .row-span-xs-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xs-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xs-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xs-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xs-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xs-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xs-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xs-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xs-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xs-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xs-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xs-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-sm-1 {
    grid-column: span 1 / span 1;
  }

  .col-sm-2 {
    grid-column: span 2 / span 2;
  }

  .col-sm-3 {
    grid-column: span 3 / span 3;
  }

  .col-sm-4 {
    grid-column: span 4 / span 4;
  }

  .col-sm-5 {
    grid-column: span 5 / span 5;
  }

  .col-sm-6 {
    grid-column: span 6 / span 6;
  }

  .col-sm-7 {
    grid-column: span 7 / span 7;
  }

  .col-sm-8 {
    grid-column: span 8 / span 8;
  }

  .col-sm-9 {
    grid-column: span 9 / span 9;
  }

  .col-sm-10 {
    grid-column: span 10 / span 10;
  }

  .col-sm-11 {
    grid-column: span 11 / span 11;
  }

  .col-sm-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }

  .row-start-sm-1 {
    grid-row-start: 1;
  }

  .col-start-sm-2 {
    grid-column-start: 2;
  }

  .row-start-sm-2 {
    grid-row-start: 2;
  }

  .col-start-sm-3 {
    grid-column-start: 3;
  }

  .row-start-sm-3 {
    grid-row-start: 3;
  }

  .col-start-sm-4 {
    grid-column-start: 4;
  }

  .row-start-sm-4 {
    grid-row-start: 4;
  }

  .col-start-sm-5 {
    grid-column-start: 5;
  }

  .row-start-sm-5 {
    grid-row-start: 5;
  }

  .col-start-sm-6 {
    grid-column-start: 6;
  }

  .row-start-sm-6 {
    grid-row-start: 6;
  }

  .col-start-sm-7 {
    grid-column-start: 7;
  }

  .row-start-sm-7 {
    grid-row-start: 7;
  }

  .col-start-sm-8 {
    grid-column-start: 8;
  }

  .row-start-sm-8 {
    grid-row-start: 8;
  }

  .col-start-sm-9 {
    grid-column-start: 9;
  }

  .row-start-sm-9 {
    grid-row-start: 9;
  }

  .col-start-sm-10 {
    grid-column-start: 10;
  }

  .row-start-sm-10 {
    grid-row-start: 10;
  }

  .col-start-sm-11 {
    grid-column-start: 11;
  }

  .row-start-sm-11 {
    grid-row-start: 11;
  }

  .col-start-sm-12 {
    grid-column-start: 12;
  }

  .row-start-sm-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 34.375em) {
  .pull-right-sm {
    grid-column-end: -1;
  }

  .pull-left-sm {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 34.375em) {
  .justify-sm-start {
    justify-self: start;
  }

  .justify-sm-center {
    justify-self: center;
  }

  .justify-sm-end {
    justify-self: end;
  }

  .justify-sm-stretch {
    justify-self: stretch;
  }

  .align-sm-start {
    align-self: start;
  }

  .align-sm-center {
    align-self: center;
  }

  .align-sm-end {
    align-self: end;
  }

  .align-sm-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 34.375em) {
  .row-span-sm-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-sm-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-sm-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-sm-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-sm-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-sm-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-sm-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-sm-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-sm-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-sm-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-sm-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-sm-12 {
    grid-row: span 12 / span 12;
  }
}


@media screen and (min-width: 48em) {
  .col-md-1 {
    grid-column: span 1 / span 1;
  }

  .col-md-2 {
    grid-column: span 2 / span 2;
  }

  .col-md-3 {
    grid-column: span 3 / span 3;
  }

  .col-md-4 {
    grid-column: span 4 / span 4;
  }

  .col-md-5 {
    grid-column: span 5 / span 5;
  }

  .col-md-6 {
    grid-column: span 6 / span 6;
  }

  .col-md-7 {
    grid-column: span 7 / span 7;
  }

  .col-md-8 {
    grid-column: span 8 / span 8;
  }

  .col-md-9 {
    grid-column: span 9 / span 9;
  }

  .col-md-10 {
    grid-column: span 10 / span 10;
  }

  .col-md-11 {
    grid-column: span 11 / span 11;
  }

  .col-md-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 48em) {
  .col-start-md-1 {
    grid-column-start: 1;
  }

  .row-start-md-1 {
    grid-row-start: 1;
  }

  .col-start-md-2 {
    grid-column-start: 2;
  }

  .row-start-md-2 {
    grid-row-start: 2;
  }

  .col-start-md-3 {
    grid-column-start: 3;
  }

  .row-start-md-3 {
    grid-row-start: 3;
  }

  .col-start-md-4 {
    grid-column-start: 4;
  }

  .row-start-md-4 {
    grid-row-start: 4;
  }

  .col-start-md-5 {
    grid-column-start: 5;
  }

  .row-start-md-5 {
    grid-row-start: 5;
  }

  .col-start-md-6 {
    grid-column-start: 6;
  }

  .row-start-md-6 {
     grid-row-start: 6;
  }

  .col-start-md-7 {
    grid-column-start: 7;
  }

  .row-start-md-7 {
    grid-row-start: 7;
  }

  .col-start-md-8 {
    grid-column-start: 8;
  }

  .row-start-md-8 {
    grid-row-start: 8;
  }

  .col-start-md-9 {
    grid-column-start: 9;
  }

  .row-start-md-9 {
    grid-row-start: 9;
  }

  .col-start-md-10 {
    grid-column-start: 10;
  }

  .row-start-md-10 {
    grid-row-start: 10;
  }

  .col-start-md-11 {
    grid-column-start: 11;
  }
  
  .row-start-md-11 {
    grid-row-start: 11;
  }
  
  .col-start-md-12 {
    grid-column-start: 12;
  }
  
  .row-start-md-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 48em) {
  .pull-right-md {
    grid-column-end: -1;
  }
  
  .pull-left-md {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 48em) {
  .justify-md-start {
    justify-self: start;
  }

  .justify-md-center {
    justify-self: center;
  }

  .justify-md-end {
    justify-self: end;
  }

  .justify-md-stretch {
    justify-self: stretch;
  }

  .align-md-start {
    align-self: start;
  }

  .align-md-center {
    align-self: center;
  }

  .align-md-end {
    align-self: end;
  }

  .align-md-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 48em) {
  .row-span-md-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-md-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-md-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-md-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-md-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-md-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-md-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-md-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-md-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-md-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-md-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-md-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-lg-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-lg-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-lg-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-lg-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-lg-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-lg-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-lg-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-lg-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-lg-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-lg-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-lg-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-lg-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  
  .row-start-lg-1 {
    grid-row-start: 1;
  }
  
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  
  .row-start-lg-2 {
    grid-row-start: 2;
  }
  
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  
  .row-start-lg-3 {
    grid-row-start: 3;
  }
  
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  
  .row-start-lg-4 {
    grid-row-start: 4;
  }
  
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  
  .row-start-lg-5 {
    grid-row-start: 5;
  }
  
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  
  .row-start-lg-6 {
    grid-row-start: 6;
  }
  
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  
  .row-start-lg-7 {
    grid-row-start: 7;
  }
  
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  
  .row-start-lg-8 {
    grid-row-start: 8;
  }
  
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  
  .row-start-lg-9 {
    grid-row-start: 9;
  }
  
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  
  .row-start-lg-10 {
    grid-row-start: 10;
  }
  
  .col-start-lg-11 {
    grid-column-start: 11;
  }
  
  .row-start-lg-11 {
    grid-row-start: 11;
  }
  
  .col-start-lg-12 {
    grid-column-start: 12;
  }
  
  .row-start-lg-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 58.75em) {
  .pull-right-lg {
    grid-column-end: -1;
  }
  
  .pull-left-lg {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 58.75em) {
  .justify-lg-start {
    justify-self: start;
  }

  .justify-lg-center {
    justify-self: center;
  }

  .justify-lg-end {
    justify-self: end;
  }

  .justify-lg-stretch {
    justify-self: stretch;
  }

  .align-lg-start {
    align-self: start;
  }

  .align-lg-center {
    align-self: center;
  }

  .align-lg-end {
    align-self: end;
  }

  .align-lg-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 58.75em) {
  .row-span-lg-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-lg-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-lg-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-lg-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-lg-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-lg-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-lg-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-lg-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-lg-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-lg-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-lg-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-lg-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-xl-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-xl-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-xl-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-xl-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-xl-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-xl-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-xl-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-xl-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-xl-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-xl-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-xl-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-xl-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-start-xl-1 {
     grid-column-start: 1;
  }
  
  .row-start-xl-1 {
    grid-row-start: 1;
  }
  
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  
  .row-start-xl-2 {
    grid-row-start: 2;
  }
  
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  
  .row-start-xl-3 {
    grid-row-start: 3;
  }
  
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  
  .row-start-xl-4 {
    grid-row-start: 4;
  }
  
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  
  .row-start-xl-5 {
    grid-row-start: 5;
  }
  
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  
  .row-start-xl-6 {
    grid-row-start: 6;
  }
  
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  
  .row-start-xl-7 {
    grid-row-start: 7;
  }
  
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  
  .row-start-xl-8 {
    grid-row-start: 8;
  }
  
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  
  .row-start-xl-9 {
    grid-row-start: 9;
  }
  
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  
  .row-start-xl-10 {
    grid-row-start: 10;
  }
  
  .col-start-xl-11 {
    grid-column-start: 11;
  }
  
  .row-start-xl-11 {
    grid-row-start: 11;
  }
  
  .col-start-xl-12 {
    grid-column-start: 12;
  }
  
  .row-start-xl-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 68.75em) {
  .pull-right-xl {
    grid-column-end: -1;
  }
  
  .pull-left-xl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 68.75em) {
  .justify-xl-start {
    justify-self: start;
  }

  .justify-xl-center {
    justify-self: center;
  }

  .justify-xl-end {
    justify-self: end;
  }

  .justify-xl-stretch {
    justify-self: stretch;
  }

  .align-xl-start {
    align-self: start;
  }

  .align-xl-center {
    align-self: center;
  }

  .align-xl-end {
    align-self: end;
  }

  .align-xl-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 68.75em) {
  .row-span-xl-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xl-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xl-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xl-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xl-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xl-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xl-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xl-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xl-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xl-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xl-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xl-12 {
    grid-row: span 12 / span 12;
  }
}

.col-start-1 {
  grid-column-start: 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.row-start-2 {
  grid-row-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.row-start-3 {
  grid-row-start: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.row-start-4 {
  grid-row-start: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.row-start-5 {
  grid-row-start: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.row-start-6 {
  grid-row-start: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.row-start-7 {
  grid-row-start: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.row-start-8 {
  grid-row-start: 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.row-start-9 {
  grid-row-start: 9;
}

.col-start-10 {
  grid-column-start: 10;
}
.row-start-10 {
  grid-row-start: 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.row-start-11 {
  grid-row-start: 11;
}

.col-start-12 {
  grid-column-start: 12;
}

.row-start-12 {
  grid-row-start: 12;
}

.row-span-1 {
  grid-row: span 1 / span 1;
}

.row-span-2 {
  grid-row: span 2 / span 2;
}

.row-span-3 {
  grid-row: span 3 / span 3;
}

.row-span-4 {
  grid-row: span 4 / span 4;
}

.row-span-5 {
  grid-row: span 5 / span 5;
}

.row-span-6 {
  grid-row: span 6 / span 6;
}

.row-span-7 {
  grid-row: span 7 / span 7;
}

.row-span-8 {
  grid-row: span 8 / span 8;
}

.row-span-9 {
  grid-row: span 9 / span 9;
}

.row-span-10 {
  grid-row: span 10 / span 10;
}

.row-span-11 {
  grid-row: span 11 / span 11;
}

.row-span-12 {
  grid-row: span 12 / span 12;
}

.mobile_menu{position:fixed;z-index:100;display:none}.mobile_menu .inner{height:100%;background:#000;overflow-y:scroll}.mobile_menu.active.position_left{box-shadow:2px 0 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_top{box-shadow:0 2px 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_right{box-shadow:-2px 0 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_bottom{box-shadow:0 -2px 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.no_shadow{box-shadow:none!important}.mobile_menu_trigger{display:none}.mobile_menu_wrapper{position:relative;width:100%;overflow:hidden}.mobile_menu_overlay{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:99}.mobile_menu_overlay.background{background:rgba(0,0,0,.5)}.mobile_menu li.submenu_hide>ul{display:none}.mobile_menu li.submenu_show>ul{display:block}body.ie8 .mobile_menu,body.ie8 .mobile_menu_trigger,body.ie9 .mobile_menu,body.ie9 .mobile_menu_trigger{display:none!important}
.cc-head>*:first-child{margin-top:0}.cc-head>*:last-child{margin-bottom:15px}.contao-cookiebar{--ccb-backdrop: rgba(0, 0, 0, .75);--ccb-anim-duration: .5s;--ccb-checked-clr: #399d32;--ccb-checked-bg: #dcf3db;--ccb-unchecked-clr: #9c9b99;--ccb-unchecked-bg: #fff;--ccb-disabled-clr: #c8c7c5;--ccb-disabled-bg: #f4f4f4;--ccb-focus-clr: #00a4f4;position:fixed;inset:0;z-index:9999;display:flex;align-items:var(--ccb-align, center);justify-content:var(--ccb-justify, center);letter-spacing:0;padding:15px;max-height:100dvh;box-sizing:border-box;pointer-events:none;overflow:hidden;color:var(--ccb-clr, #444)}.contao-cookiebar *{box-sizing:border-box}.contao-cookiebar p{color:var(--ccb-text, #868686);line-height:1.4}.contao-cookiebar label{position:relative;display:block;padding:8px 13px 8px 0;line-height:1.2rem}.contao-cookiebar label.group{font-weight:600}.contao-cookiebar input{position:absolute;width:1px;height:1px;outline:0 none;opacity:0}.contao-cookiebar input+label{padding:8px 13px 8px 45px;cursor:pointer}.contao-cookiebar input+label:before,.contao-cookiebar input+label:after{content:"";position:absolute;border-radius:10px}.contao-cookiebar input+label:before{top:7px;left:0;width:35px;height:18px;margin:0;box-sizing:content-box;background:var(--ccb-unchecked-bg);border:1px solid var(--ccb-unchecked-clr);transition:border-color .2s}.contao-cookiebar input+label:after{display:block;top:11px;left:4px;width:12px;height:12px;background:var(--ccb-unchecked-clr);transition:background .2s,margin-left .2s,padding .2s}.contao-cookiebar input+label:active:after{padding-left:5px}.contao-cookiebar input.cc-group-half+label:after{background:linear-gradient(to right, var(--ccb-unchecked-clr) 0%, var(--ccb-unchecked-clr) 50%, var(--ccb-checked-clr) 50%, var(--ccb-checked-clr) 100%)}.contao-cookiebar input:checked+label:after{background:var(--ccb-checked-clr);margin-left:17px}.contao-cookiebar input:checked+label:active:after{margin-left:12px}.contao-cookiebar input:checked+label:before{background:var(--ccb-checked-bg);border-color:var(--ccb-checked-clr)}.contao-cookiebar input:disabled+label{pointer-events:none}.contao-cookiebar input:disabled+label:after{background:var(--ccb-disabled-clr)}.contao-cookiebar input:disabled+label:before{background:var(--ccb-disabled-bg);border-color:var(--ccb-disabled-clr)}.contao-cookiebar input:focus-visible:not(.cc-hide-focus)+label:before{outline:3px dashed var(--ccb-focus-clr);outline-offset:2px}.contao-cookiebar .cc-btn{display:inline-block;cursor:pointer;width:100%;padding:8px 14px;margin-bottom:8px;font-size:15px;outline:0 none;border:1px solid var(--ccb-btn-bdr, #cfcfcf);border-radius:4px;color:var(--ccb-btn-clr, #444);background:var(--ccb-btn-bg, #f5f5f5)}.contao-cookiebar .cc-btn:hover,.contao-cookiebar .cc-btn:focus{background:var(--ccb-btn-bg-hvr, #ececec)}.contao-cookiebar .cc-btn:last-child{margin-bottom:0}.contao-cookiebar .grayscale{--ccb-btn-bg: #f1efef;--ccb-btn-bg-hvr: #ececec}.contao-cookiebar .grayscale .success{--ccb-btn-bg: #fbfbfb;--ccb-btn-bg-hvr: #f7f7f7}.contao-cookiebar .highlight .success{--ccb-btn-bg: #4e9e3e;--ccb-btn-bg-hvr: #4c933f;--ccb-btn-bdr: #3e7830;--ccb-btn-clr: #fff}.cc-focus:not(.cc-hide-focus):focus-visible{outline:3px dashed var(--ccb-focus-clr);outline-offset:-3px}.cc-invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;float:left}.cc-inner{display:inline-block;overflow-y:auto;max-height:100%;max-width:100%;padding:23px;border-radius:3px;opacity:0;pointer-events:none;visibility:hidden;font-size:1rem;text-align:left;background:var(--ccb-bg, #fff);box-shadow:var(--ccb-box-shadow, rgba(99, 99, 99, 0.2)) 0 2px 8px 0;animation:var(--ccb-anim, cookiebar-middle-in) var(--ccb-anim-duration) ease-in-out forwards}.cc-group{position:relative;border:1px solid var(--ccb-bdr, #d0d0d0);border-radius:5px;margin-bottom:10px}.cc-cookie-info{font-size:.875rem;background:var(--ccb-info-bg, #fff);border:1px solid var(--ccb-info-bdr, #efefef);padding:10px;border-radius:5px}.cc-cookie-info>div>span{font-weight:600}.cc-cookie-info>div+div{margin-top:5px;word-wrap:break-word}.cc-cookie-info+button.cc-detail-btn-details{margin-top:15px}.cc-cookies{background:var(--ccb-cookies-bg, #fbfbfb);border-radius:0 0 5px 5px}.cc-cookies>p{font-size:.875rem}.cc-cookies>p,.cc-cookies>.cc-cookie{margin:0;padding:15px;border-top:1px solid var(--ccb-cookies-bdr, #fbfbfb)}.cc-cookie label.cookie+*{margin-top:10px}.cc-cookie p{margin:0 0 15px;font-size:.875rem}.cc-cookie-desc p{margin-bottom:0}.cc-footer,.cc-info{text-align:center}.cc-info{margin-top:15px}.cc-info>p{font-size:.875rem}.cc-info>a{display:inline-block;font-size:.813rem;color:var(--ccb-detail-clr, #a2a2a2);text-decoration:none}.cc-info>a:hover{color:var(--ccb-detail-clr-hvr, #717171)}.cc-info>a+a:before{display:inline-block;content:"·";margin-right:5px}.cc-active .cc-inner{opacity:1;pointer-events:auto;visibility:visible}.cc-active.cc-blocked{pointer-events:auto;animation:cookiebar-overlay-in var(--ccb-anim-duration) ease-in-out forwards}.cc-saved.cc-inner{opacity:0;pointer-events:none;visibility:hidden}.cc-saved.cc-blocked{pointer-events:none;animation:cookiebar-overlay-out var(--ccb-anim-duration) ease-in-out forwards}.cc-left{--ccb-justify: flex-start}.cc-right{--ccb-justify: flex-end}.cc-top{--ccb-align: flex-start}.cc-top.cc-active{--ccb-anim: cookiebar-top-in}.cc-top.cc-saved{--ccb-anim: cookiebar-top-out}.cc-middle.cc-active{--ccb-anim: cookiebar-middle-in}.cc-middle.cc-saved{--ccb-anim: cookiebar-middle-out}.cc-bottom{--ccb-align: flex-end}.cc-bottom.cc-active{--ccb-anim: cookiebar-bottom-in}.cc-bottom.cc-saved{--ccb-anim: cookiebar-bottom-out}@media(min-width: 768px){.contao-cookiebar .cc-btn{width:auto;margin-bottom:0}.cc-inner{max-width:var(--ccb-max-width, 750px)}}@media(forced-colors){.contao-cookiebar input+label:after{border:1px solid currentColor}.cc-inner{border:1px solid currentColor}input.cc-group-half+label:after{margin-left:9px}}@media(prefers-reduced-motion){.contao-cookiebar{--ccb-anim-duration: 2s}}@media print{.contao-cookiebar{opacity:0}}@keyframes cookiebar-overlay-in{0%{background:rgba(0,0,0,0)}to{background:var(--ccb-backdrop)}}@keyframes cookiebar-overlay-out{0%{background:var(--ccb-backdrop)}to{background:rgba(0,0,0,0);visibility:hidden}}@keyframes cookiebar-top-in{0%{opacity:0;transform:translateY(-100%)}to{opacity:1;transform:translateY(0)}}@keyframes cookiebar-top-out{0%{opacity:1;visibility:visible;transform:translateY(0)}to{opacity:0;visibility:hidden;transform:translateY(-100%)}}@keyframes cookiebar-middle-in{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}@keyframes cookiebar-middle-out{0%{opacity:1;visibility:visible;transform:scale(1)}to{opacity:0;visibility:hidden;transform:scale(0)}}@keyframes cookiebar-bottom-in{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}@keyframes cookiebar-bottom-out{0%{opacity:1;visibility:visible;transform:translateY(0)}to{opacity:0;visibility:hidden;transform:translateY(100%)}}.cc-groups{display:none;padding-top:15px}.cc-group{text-align:left}.cc-group>label{margin:5px 130px 5px 10px}.cc-detail-btn-details{text-decoration:underline;padding:0;margin:0 0 10px;color:var(--ccb-detail-clr, #a2a2a2);border:0 none;outline:0 none;background:rgba(0,0,0,0);font-size:13px;letter-spacing:0;text-transform:initial;cursor:pointer}.cc-detail-btn-details span:nth-child(2){display:none}.cc-detail-btn-details.cc-active span:nth-child(1){display:none}.cc-detail-btn-details.cc-active span:nth-child(2){display:inline}.cc-detail-btn-details:hover{color:var(--ccb-detail-clr-hvr, #717171)}
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
@charset "UTF-8";
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/* lato-regular - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/files/theme/font/lato-v16-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Lato Regular"), local("Lato-Regular"), url("/files/theme/font/lato-v16-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme/font/lato-v16-latin-regular.woff2") format("woff2"), url("/files/theme/font/lato-v16-latin-regular.woff") format("woff"), url("/files/theme/font/lato-v16-latin-regular.ttf") format("truetype"), url("/files/theme/font/lato-v16-latin-regular.svg#Lato") format("svg"); /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/files/theme/font/lato-v16-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Lato Bold"), local("Lato-Bold"), url("/files/theme/font/lato-v16-latin-700.eot?#iefix") format("embedded-opentype"), url("/files/theme/font/lato-v16-latin-700.woff2") format("woff2"), url("/files/theme/font/lato-v16-latin-700.woff") format("woff"), url("/files/theme/font/lato-v16-latin-700.ttf") format("truetype"), url("/files/theme/font/lato-v16-latin-700.svg#Lato") format("svg"); /* Legacy iOS */
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.invisible, .ce_form .widget-radio .radio_container > span input, .ce_form .widget-checkbox .checkbox_container > span input {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.invisibleAccessible, .mod_mobile_menu button span,
.mobile_menu button span,
.sr-only {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*Make Contao Elements visble at all*/
.centered {
  text-align: center;
  margin: 0 auto;
}
.centered.content-headline {
  margin: 0 0 0.5em 0;
}

.reset-button, .mod_mobile_menu button,
.mobile_menu button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  text-align: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
}
.reset-button::-moz-focus-inner, .mod_mobile_menu button::-moz-focus-inner,
.mobile_menu button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/******************************************************************
CUSTOMIZED RESET VALUES
I added these extra styles as a more personalized reset. Feel free
to remove them if you like or add your own. If you want to update
the normalize styles, make sure to edit from this point up.
******************************************************************/
b, strong, .strong {
  font-weight: bold;
}

em, .em {
  font-style: italic;
}

small {
  font-size: 75%;
}

dd {
  margin: 0;
}

html, body {
  font-size: 16px;
  font-family: "Lato", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #262626;
  scroll-behavior: smooth;
}

body {
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (min-width: 120.0625em) {
  body {
    background: url("/files/theme/img/bg_balls_01.svg") repeat #E5F4FF;
  }
}

p {
  font-size: 16px;
  font-size: 1rem;
  color: #262626;
  margin: 0 0 0.5em 0;
}

::-moz-selection {
  background: #F08AF0;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #F08AF0;
  color: #fff;
  text-shadow: none;
}

html {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  text-wrap: balance;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: calc(32px + 18 * (100vw - 300px) / 1600);
  font-family: "Lato", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #003A66;
}

h2, .h2 {
  font-size: calc(28px + 12 * (100vw - 300px) / 1600);
  font-family: "Lato", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #003A66;
}

h3 {
  font-size: calc(20px + 4 * (100vw - 300px) / 1600);
  font-family: "Lato", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #003A66;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Lato", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #003A66;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Lato", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #003A66;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Lato", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #003A66;
}

img, picture {
  max-width: 100%;
  height: auto;
  line-height: 0;
}

figure {
  line-height: 0;
  margin: 0;
}

figcaption {
  line-height: 1.2;
}

a {
  color: #003A66;
  text-decoration: underline;
}
a:hover, a:focus {
  color: #262626;
}

a[href^="tel:"] {
  color: #262626;
  text-decoration: none;
}

ul, ol {
  padding: 0;
  list-style-type: none;
}

.main .content-text ul {
  list-style-image: none;
  margin: 0;
  padding: 0;
}
.main .content-text li {
  padding-left: 1.5rem;
  font-size: 1rem;
  margin: 0 0 0.5em 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='none'%3E%3Ccircle cx='20' cy='20' r='8' fill='%23262626'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: left top;
}

.main ol {
  list-style-type: decimal;
  margin-left: 1em;
}

.wrapper {
  background: #fff;
}

.main {
  background: url("/files/theme/img/bg_balls_01.svg") top 600px center no-repeat, url("/files/theme/img/bg_balls_02.svg") bottom 600px center no-repeat;
}

.wrap, .mod_article:not(.fullwidth) .inner, .footer .inside, #header-contact .inside, .headerimage h1, .header .inside {
  max-width: 1420px;
  margin: 0 auto;
}

/*
.inside {

} */
.header {
  background-color: #fff;
}
@media screen and (max-width: 100em) {
  .header {
    padding: 0 1em;
  }
}
.header .logo {
  max-width: 270px;
  -webkit-transition: max-width 0.3s;
  transition: max-width 0.3s;
  margin: 0.3em 0;
}
@media screen and (max-width: 26.25em) {
  .header .logo {
    max-width: 180px;
  }
}
.header .logo img {
  height: 100px;
  -webkit-transition: max-width 0.2s;
  transition: max-width 0.2s;
}
.header .logo a {
  display: block;
}
.header .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
  border-bottom: 1px solid #E5F4FF;
  max-width: 1920px;
  margin-inline: auto;
}
.sticky .logo {
  max-width: 100px;
}
.sticky .logo img {
  height: 60px;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .container {
  padding-top: 125px;
}

.headerimage {
  position: relative;
}
.headerimage h1 {
  position: absolute;
  z-index: 1;
  font-size: calc(22px + 26 * (100vw - 300px) / 1600);
  color: #003A66;
  left: 15vw;
  top: 10vh;
  max-width: 25ch;
}
@media screen and (max-width: 61.25em) {
  .headerimage h1 {
    top: 10vh;
  }
}
@media screen and (max-width: 43.125em) {
  .headerimage h1 {
    top: 4vh;
    max-width: 80%;
  }
}
@media screen and (max-width: 25em) {
  .headerimage h1 {
    top: 1vh;
    max-width: 80%;
  }
}
.headerimage h1 span {
  display: inline-block;
  background: #F6B805;
  border-radius: 10px;
  padding: 0.2em 0.3em 0.1em 0.3em;
  margin-bottom: 0.2em;
}
.headerimage.right h1 {
  right: 10vw;
  left: auto;
}
.headerimage.leistungen h1 {
  max-width: 40%;
  top: 5vh;
}
@media screen and (max-width: 65.5em) {
  .headerimage.leistungen h1 {
    max-width: 50%;
    top: 2vh;
  }
}
@media screen and (max-width: 47.5em) {
  .headerimage.leistungen h1 {
    top: 6vh;
    max-width: 100%;
    text-align: right;
  }
}
@media screen and (max-width: 41.875em) {
  .headerimage.leistungen h1 {
    top: 1vh;
    max-width: 60%;
  }
}

#header-contact {
  text-align: right;
  background-color: #82C9FF;
  color: #fff;
  padding: 0.5rem 0;
  line-height: 1;
}
#header-contact p {
  margin-bottom: 0;
}
#header-contact svg {
  height: 1rem;
  width: 1rem;
  vertical-align: sub;
}
#header-contact a {
  text-decoration: none;
  color: #003A66;
  padding: 0.25rem 0.5rem;
}
#header-contact a:hover, #header-contact a:focus {
  text-decoration: underline;
}

.footer *[class*=icon-] {
  width: 1.25rem;
  height: 1.25rem;
  color: #003A66;
  fill: #003A66;
  margin-right: 0.25em;
  vertical-align: sub;
}
.footer .inside {
  padding: 4rem 0;
}
.footer .row > div {
  padding: 0 1em;
}
.footer .row > div:last-child {
  text-align: right;
}
@media screen and (max-width: 58.75em) {
  .footer .logo {
    max-width: 200px;
  }
}
.footer a:not([href^="tel:"]) {
  color: #262626;
  text-decoration: underline;
}
.footer a:not([href^="tel:"]):hover, .footer a:not([href^="tel:"]):focus {
  text-decoration: none;
  color: #FF7F42;
}
.footer .content-hyperlink a {
  text-decoration: none;
  color: #fff;
}

.mod_article {
  /*Seiten Leistungen*/
  /* Seite Leistungen tesaser Artikel */
  /*Seiten Medizinische Leistungen*/
  /* Seite Lestiungen tesaser Artikel */
}
.mod_article:not(:first-child) {
  padding: 3rem 0;
}
@media screen and (min-width: 56.25em) {
  .mod_article:not(:first-child) {
    padding: 6rem 0;
  }
}
.mod_article.nopadding {
  padding: 0;
}
@media screen and (max-width: 93.75em) {
  .mod_article:not(.fullwidth) .inner {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.mod_article.bg-blue {
  background-color: #E5F4FF;
}
.mod_article.information {
  padding: 3em 0;
}
.mod_article.information h2 {
  margin-top: 0;
}
@media screen and (max-width: 51.5em) {
  .mod_article.information .inner > .content-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    margin-bottom: 2em;
  }
  .mod_article.information .inner > .content-text figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
    padding-right: 1em;
  }
  .mod_article.information .inner > .content-text figure img {
    max-width: 60px;
  }
  .mod_article.information .inner > .content-text .text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
@media screen and (min-width: 51.5625em) {
  .mod_article.information .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mod_article.information .inner > .content-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    text-align: center;
  }
  .mod_article.information .inner figure {
    margin-bottom: 2em;
  }
  .mod_article.information .inner figure img {
    max-width: 200px;
  }
}
.mod_article.leistungen-akkordion h2 {
  border-radius: 15px;
  text-align: center;
  color: #262626;
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  padding-top: 240px;
}
.mod_article.baby h2 {
  background: url("/files/theme/img/baby.svg") no-repeat center center #F6B805;
  margin: 0;
}
.mod_article.kleinkind h2 {
  background: url("/files/theme/img/kleinkind.svg") no-repeat center center #FF7F42;
  margin: 0;
}
.mod_article.schulkind h2 {
  background: url("/files/theme/img/schulkind.svg") no-repeat center center #ED6CED;
  margin: 0;
}
.mod_article.teenager .inner h2 {
  background: url("/files/theme/img/teenager.svg") no-repeat center center #33A7FF;
  margin: 0;
}
.mod_article.vu-teaser .content-hyperlink {
  text-align: center;
}
.mod_article.vu-teaser .content-hyperlink a {
  display: block;
  border-radius: 15px;
  color: #262626;
  text-decoration: none;
  font-size: 32px;
  font-size: 2rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-size: 40%;
}
@media screen and (min-width: 48em) {
  .mod_article.vu-teaser .content-hyperlink a {
    padding-top: 240px;
  }
}
.mod_article.vu-teaser .content-hyperlink.baby a {
  background: url("/files/theme/img/baby.svg") no-repeat center center #F6B805;
}
.mod_article.vu-teaser .content-hyperlink.baby a:hover, .mod_article.vu-teaser .content-hyperlink.baby a:focus {
  background-color: #FEDC7A;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.vu-teaser .content-hyperlink.baby a {
    background-size: 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
.mod_article.vu-teaser .content-hyperlink.kleinkind a {
  background: url("/files/theme/img/kleinkind.svg") no-repeat center center #FF7F42;
}
.mod_article.vu-teaser .content-hyperlink.kleinkind a:hover, .mod_article.vu-teaser .content-hyperlink.kleinkind a:focus {
  background-color: #FFBA99;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.vu-teaser .content-hyperlink.kleinkind a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
.mod_article.vu-teaser .content-hyperlink.schulkind a {
  background: url("/files/theme/img/schulkind.svg") no-repeat center center #ED6CED;
}
.mod_article.vu-teaser .content-hyperlink.schulkind a:hover, .mod_article.vu-teaser .content-hyperlink.schulkind a:focus {
  background-color: #F5BAF5;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.vu-teaser .content-hyperlink.schulkind a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
.mod_article.vu-teaser .content-hyperlink.teenager a {
  background: url("/files/theme/img/teenager.svg") no-repeat center center #33A7FF;
}
.mod_article.vu-teaser .content-hyperlink.teenager a:hover, .mod_article.vu-teaser .content-hyperlink.teenager a:focus {
  background-color: #B3DEFF;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.vu-teaser .content-hyperlink.teenager a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
.mod_article.ml {
  margin-bottom: 1em;
  padding: 2em 0;
}
.mod_article.ml .content-text {
  background: #cce890;
  padding: 1em;
  border-radius: 10px;
  margin-top: 0;
}
.mod_article.ml h2,
.mod_article.ml h3,
.mod_article.ml p,
.mod_article.ml li {
  color: #3F5412;
}
.mod_article.ml h2 {
  padding-top: 220px;
  padding-bottom: 0.5rem;
  padding-bottom: 1em;
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 48em) {
  .mod_article.ml h2 {
    padding-top: 110px;
  }
}
.mod_article.impfung h2 {
  background: url("/files/theme/img/impfung.svg") no-repeat center center #B8DF66;
  background-size: 30%;
}
@media screen and (max-width: 48em) {
  .mod_article.impfung h2 {
    background-size: 10%;
  }
}
.mod_article.kita h2 {
  background: url("/files/theme/img/kita.svg") no-repeat center center #B8DF66;
  background-size: 30%;
}
@media screen and (max-width: 48em) {
  .mod_article.kita h2 {
    background-size: 10%;
  }
}
.mod_article.jarbschg h2 {
  background: url("/files/theme/img/jarbschg.svg") no-repeat center center #B8DF66;
  background-size: 30%;
}
@media screen and (max-width: 48em) {
  .mod_article.jarbschg h2 {
    background-size: 10%;
  }
}
.mod_article.sport h2 {
  background: url("/files/theme/img/sport.svg") no-repeat center center #B8DF66;
  background-size: 30%;
}
@media screen and (max-width: 48em) {
  .mod_article.sport h2 {
    background-size: 10%;
  }
}
.mod_article.ultraschall h2 {
  background: url("/files/theme/img/ultraschall.svg") no-repeat center center #B8DF66;
  background-size: 30%;
}
@media screen and (max-width: 48em) {
  .mod_article.ultraschall h2 {
    background-size: 10%;
  }
}
.mod_article.sehtest h2 {
  background: url("/files/theme/img/sehtest.svg") no-repeat center center #B8DF66;
  background-size: 30%;
}
@media screen and (max-width: 48em) {
  .mod_article.sehtest h2 {
    background-size: 20%;
  }
}
.mod_article.allergologie h2 {
  background: url("/files/theme/img/allergologie.svg") no-repeat center center #B8DF66;
  background-size: 30%;
}
@media screen and (max-width: 48em) {
  .mod_article.allergologie h2 {
    background-size: 10%;
  }
}
.mod_article.notfaelle h2 {
  background: url("/files/theme/img/notfaelle.svg") no-repeat center center #B8DF66;
  background-size: 30%;
}
@media screen and (max-width: 48em) {
  .mod_article.notfaelle h2 {
    background-size: 10%;
  }
}
.mod_article.ml-teaser .row {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}
.mod_article.ml-teaser .content-hyperlink {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  text-align: center;
  background-color: #B8DF66;
  border-radius: 15px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.mod_article.ml-teaser .content-hyperlink:hover, .mod_article.ml-teaser .content-hyperlink:focus {
  background-color: #cce890;
}
.mod_article.ml-teaser .content-hyperlink a {
  display: block;
  padding-top: 22px;
  padding-bottom: 1em;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 48em) {
  .mod_article.ml-teaser .content-hyperlink a {
    padding-top: 220px;
  }
}
.mod_article.ml-teaser .content-hyperlink.impfung a {
  background: url("/files/theme/img/impfung.svg") no-repeat top 35% center;
  background-size: 20%;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.ml-teaser .content-hyperlink.impfung a {
    background-size: 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
@media screen and (max-width: 29.375em) {
  .mod_article.ml-teaser .content-hyperlink.impfung a {
    background-size: 22px;
  }
}
.mod_article.ml-teaser .content-hyperlink.kita a {
  background: url("/files/theme/img/kita.svg") no-repeat top 35% center;
  background-size: 20%;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.ml-teaser .content-hyperlink.kita a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
@media screen and (max-width: 29.375em) {
  .mod_article.ml-teaser .content-hyperlink.kita a {
    background-size: 22px;
  }
}
.mod_article.ml-teaser .content-hyperlink.jarbschg a {
  background: url("/files/theme/img/jarbschg.svg") no-repeat top 27% center;
  background-size: 20%;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.ml-teaser .content-hyperlink.jarbschg a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
@media screen and (max-width: 29.375em) {
  .mod_article.ml-teaser .content-hyperlink.jarbschg a {
    background-size: 22px;
  }
}
.mod_article.ml-teaser .content-hyperlink.sport a {
  background: url("/files/theme/img/sport.svg") no-repeat top 35% center;
  background-size: 20%;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.ml-teaser .content-hyperlink.sport a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
@media screen and (max-width: 29.375em) {
  .mod_article.ml-teaser .content-hyperlink.sport a {
    background-size: 22px;
  }
}
.mod_article.ml-teaser .content-hyperlink.ultraschall a {
  background: url("/files/theme/img/ultraschall.svg") no-repeat top 35% center;
  background-size: 20%;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.ml-teaser .content-hyperlink.ultraschall a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
@media screen and (max-width: 29.375em) {
  .mod_article.ml-teaser .content-hyperlink.ultraschall a {
    background-size: 22px;
  }
}
.mod_article.ml-teaser .content-hyperlink.sehtest a {
  background: url("/files/theme/img/sehtest.svg") no-repeat top 35% center;
  background-size: 30%;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.ml-teaser .content-hyperlink.sehtest a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
@media screen and (max-width: 29.375em) {
  .mod_article.ml-teaser .content-hyperlink.sehtest a {
    background-size: 22px;
  }
}
.mod_article.ml-teaser .content-hyperlink.allergologie a {
  background: url("/files/theme/img/allergologie.svg") no-repeat top 27% center;
  background-size: 20%;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.ml-teaser .content-hyperlink.allergologie a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
@media screen and (max-width: 29.375em) {
  .mod_article.ml-teaser .content-hyperlink.allergologie a {
    background-size: 22px;
  }
}
.mod_article.ml-teaser .content-hyperlink.notfaelle a {
  background: url("/files/theme/img/notfaelle.svg") no-repeat top 35% center;
  background-size: 20%;
}
@media screen and (max-width: 47.9375em) {
  .mod_article.ml-teaser .content-hyperlink.notfaelle a {
    background-size: auto 60px;
    background-position: left 5% center;
    padding-left: 15%;
  }
}
@media screen and (max-width: 29.375em) {
  .mod_article.ml-teaser .content-hyperlink.notfaelle a {
    background-size: 22px;
  }
}
.mod_article.team .teammember {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
}
.mod_article.team .teammember .rte {
  background-color: #E5F4FF;
  background-color: rgba(229, 244, 255, 0.8);
  padding: 0.3em;
}
.mod_article.team .teammember .rte h3 {
  color: #003A66;
  margin: 0;
  font-size: 20px;
  font-size: 1.25rem;
}
.mod_article.intro-text {
  padding: 2rem 0 2em 0;
}
@media screen and (min-width: 48.75em) {
  .mod_article.intro-text {
    padding: 4rem 0 3em 0;
  }
}
.mod_article.booking {
  padding: 4rem 0;
}
@media screen and (min-width: 56.25em) {
  .mod_article.booking {
    padding: 8rem 0;
  }
}
.mod_article.contact *[class*=icon-] {
  width: 20px;
  height: 20px;
  color: #003A66;
  margin-right: 0.5em;
}

.ie11 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ie11 [class^=col-] {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  margin-bottom: 2rem;
  padding: 0;
}
.ie11 .row > div {
  margin-bottom: 2rem;
}
.ie11 .row .col-sm-12,
.ie11 .row .col-md-12,
.ie11 .row .col-lg-12,
.ie11 .row .col-xl-12 {
  -ms-flex-preferred-size: calc(100% - 1rem);
      flex-basis: calc(100% - 1rem);
}
.ie11 .row .col-sm-11,
.ie11 .row .col-md-11,
.ie11 .row .col-lg-11,
.ie11 .row .col-xl-11 {
  -ms-flex-preferred-size: calc(91.666667% - 1rem);
      flex-basis: calc(91.666667% - 1rem);
}
.ie11 .row .col-sm-10,
.ie11 .row .col-md-10,
.ie11 .row .col-lg-10,
.ie11 .row .col-xl-10 {
  -ms-flex-preferred-size: calc(83.333333% - 1rem);
      flex-basis: calc(83.333333% - 1rem);
}
.ie11 .row .col-sm-9,
.ie11 .row .col-md-9,
.ie11 .row .col-lg-9,
.ie11 .row .col-xl-9 {
  -ms-flex-preferred-size: calc(75% - 1rem);
      flex-basis: calc(75% - 1rem);
}
.ie11 .row .col-sm-8,
.ie11 .row .col-md-8,
.ie11 .row .col-lg-8,
.ie11 .row .col-xl-8 {
  -ms-flex-preferred-size: calc(66.666667% - 1rem);
      flex-basis: calc(66.666667% - 1rem);
}
.ie11 .row .col-sm-7,
.ie11 .row .col-md-7,
.ie11 .row .col-lg-7,
.ie11 .row .col-xl-7 {
  -ms-flex-preferred-size: calc(58.333333% - 1rem);
      flex-basis: calc(58.333333% - 1rem);
}
.ie11 .row .col-sm-6,
.ie11 .row .col-md-6,
.ie11 .row .col-lg-6,
.ie11 .row .col-xl-6 {
  -ms-flex-preferred-size: calc(50% - 1rem);
      flex-basis: calc(50% - 1rem);
}
.ie11 .row .col-sm-5,
.ie11 .row .col-md-5,
.ie11 .row .col-lg-5,
.ie11 .row .col-xl-5 {
  -ms-flex-preferred-size: calc(41.666667% - 1rem);
      flex-basis: calc(41.666667% - 1rem);
}
.ie11 .row .col-sm-4,
.ie11 .row .col-md-4,
.ie11 .row .col-lg-4,
.ie11 .row .col-xl-4 {
  -ms-flex-preferred-size: calc(33.333333% - 1rem);
      flex-basis: calc(33.333333% - 1rem);
}
.ie11 .row .col-sm-3,
.ie11 .row .col-md-3,
.ie11 .row .col-lg-3,
.ie11 .row .col-xl-3 {
  -ms-flex-preferred-size: calc(25% - 1rem);
      flex-basis: calc(25% - 1rem);
}
.ie11 .row .col-sm-2,
.ie11 .row .col-md-2,
.ie11 .row .col-lg-2,
.ie11 .row .col-xl-2 {
  -ms-flex-preferred-size: calc(16.666667% - 1rem);
      flex-basis: calc(16.666667% - 1rem);
}
.ie11 .row .col-sm-1,
.ie11 .row .col-md-1,
.ie11 .row .col-lg-1,
.ie11 .row .col-xl-1 {
  -ms-flex-preferred-size: calc(8.333333% - 1rem);
      flex-basis: calc(8.333333% - 1rem);
}

/* Contao elements */
.content-text + .content-text,
.content-text + .content-headline {
  margin-top: 1.5rem;
}

.content-download .download-element[class*=ext-] a {
  padding-right: 2.4em;
}
.content-download .download-element a {
  background: url("/files/theme/img/download.svg") right 5px center no-repeat #FF7F42;
  border-radius: 10px;
  padding: 0.4em 1em;
  text-decoration: none;
  color: #fff;
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 65em) {
  .content-download .download-element a {
    padding: 0.8em 1.5em;
  }
}
.content-download .download-element a:hover, .content-download .download-element a:focus {
  color: #262626;
  background-color: #FFBA99;
}

.content-hyperlink a {
  background: #0074CC;
  border-radius: 10px;
  padding: 0.4em 1em;
  text-decoration: none;
  color: #fff;
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 65em) {
  .content-hyperlink a {
    padding: 0.8em 1.5em;
  }
}
.content-hyperlink a:hover, .content-hyperlink a:focus {
  color: #262626;
  background: #FFBA99;
}
.content-hyperlink a[target=_blank] {
  padding-right: 2.4em;
  background: url("/files/theme/img/externallink.svg") right 5px center no-repeat #0074CC;
}
.content-hyperlink.no-bg a {
  background-color: transparent;
  padding: 0;
  background-image: none;
}
.content-hyperlink.no-bg a:hover, .content-hyperlink.no-bg a:focus {
  background-color: transparent;
}

.content-gallery ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  list-style: none;
}
.content-gallery.galleryline li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
}

.content-description-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  border: solid #82C9FF;
  border-width: 1px 1px 0 1px;
}
.content-description-list dt {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  padding: 0.5rem;
  text-align: right;
  color: #262626;
  font-weight: bold;
  border-bottom: 1px solid #82C9FF;
}
.content-description-list dd {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
  padding: 0.5rem;
  border-bottom: 1px solid #82C9FF;
}

.content-download {
  display: block;
}
.content-download a {
  display: block;
  padding: 0.5em 1em 0.5em 3rem;
  background-color: #E5F4FF;
  border: 1px solid #005799;
  background-repeat: no-repeat;
  background-position: left 0.5rem center;
  background-size: 1.5rem;
  text-decoration: none;
  color: #262626;
  border-radius: 10px;
}
.content-download a:hover, .content-download a:focus {
  border-color: #870C87;
  background-color: #FCEEFC;
  color: #262626;
}
.content-download.download-element a {
  background-size: 1.5rem 1.5rem;
}
.content-download.download-element.ext-pdf a {
  background-image: url("/files/theme/img/icons/icon-pdf.svg");
}
.content-download.download-element.ext-docx a {
  background-image: url("/files/theme/img/icons/icon-docx.svg");
}
.content-download.download-element.ext-doc a {
  background-image: url("/files/theme/img/icons/icon-doc.svg");
}
.content-download.download-element.ext-jpg a {
  background-image: url("/files/theme/img/icons/icon-jpg.svg");
}
.content-download.download-element.ext-png a {
  background-image: url("/files/theme/img/icons/icon-png.svg");
}
.content-download.download-element.ext-gif a {
  background-image: url("/files/theme/img/icons/icon-gif.svg");
}
.content-download.download-element.ext-tiff a {
  background-image: url("/files/theme/img/icons/icon-tiff.svg");
}
.content-download.download-element.ext-mp3 a {
  background-image: url("/files/theme/img/icons/icon-mp3.svg");
}
.content-download.download-element.ext-mp4 a {
  background-image: url("/files/theme/img/icons/icon-mp4.svg");
}
.content-download.download-element.ext-ppt a {
  background-image: url("/files/theme/img/icons/icon-ppt.svg");
}
.content-download.download-element.ext-zip a {
  background-image: url("/files/theme/img/icons/icon-zip.svg");
}
.content-download.download-element.ext-rar a {
  background-image: url("/files/theme/img/icons/icon-rar.svg");
}
.content-download.download-element.ext-txt a {
  background-image: url("/files/theme/img/icons/icon-txt.svg");
}
.content-download.download-element.ext-xls a {
  background-image: url("/files/theme/img/icons/icon-xls.svg");
}
.content-download.download-element.ext-xlsx a {
  background-image: url("/files/theme/img/icons/icon-xlsx.svg");
}
.content-download.download-element.ext-xml a {
  background-image: url("/files/theme/img/icons/icon-xml.svg");
}

.content-table table {
  border: 1px solid #82C9FF;
  border-radius: 15px;
  width: 100%;
}
.content-table tr:nth-child(even) {
  background-color: #E5F4FF;
  background-color: #E5F4FF;
  background-color: rgba(229, 244, 255, 0.8);
}
.content-table td {
  padding: 0.5em;
}
.content-table td:first-child {
  font-weight: bold;
  border-right: 1px solid #B3DEFF;
}

.embed-container {
  position: relative;
  padding-bottom: 56%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container.small {
  padding-bottom: 28vh;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.map-info {
  background-color: #E9E9E9;
  padding: 2em;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.map-info img {
  width: 80px;
  height: auto;
}
.map-info .linkfake {
  cursor: pointer;
  color: #82C9FF;
  text-decoration: underline;
}
.map-info .linkfake:hover {
  color: #262626;
}

.row {
  margin-bottom: 1.6em;
  grid-gap: 1em;
}

.service h2 {
  margin-top: 2.4em;
}

nav a {
  display: block;
  text-decoration: none;
}

@media screen and (max-width: 47.5em) {
  .mainnav {
    display: none;
  }
}
.mainnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
@media screen and (min-width: 50em) {
  .mainnav ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.mainnav li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
}
@media screen and (min-width: 56.25em) {
  .mainnav li.termin {
    margin-left: 1rem;
  }
}
.mainnav a, .mainnav strong {
  display: block;
  padding: 0.5em;
  color: #262626;
  line-height: 1.2;
}
@media screen and (min-width: 68.75em) {
  .mainnav a, .mainnav strong {
    padding: 0.5em 1em;
  }
}
.mainnav a.termin, .mainnav strong.termin {
  background-color: #0074CC;
  border-radius: 10px;
  color: #fff;
  line-height: 1.2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.mainnav a.termin:hover, .mainnav a.termin:focus, .mainnav strong.termin:hover, .mainnav strong.termin:focus {
  background-color: #FEDC7A;
  color: #413100;
}
.mainnav a.active, .mainnav a.trail, .mainnav strong.active, .mainnav strong.trail {
  font-weight: bold;
  color: #005799;
}
.mainnav a:hover, .mainnav a:focus, .mainnav strong:hover, .mainnav strong:focus {
  color: #005799;
}
.mainnav .level_1 a,
.mainnav .level_1 strong {
  font-size: 1rem;
}
@media screen and (min-width: 53.75em) {
  .mainnav .level_1 a,
  .mainnav .level_1 strong {
    font-size: 1.2rem;
  }
}
.mainnav .level_2 {
  display: none;
  position: absolute;
  top: 2.2em;
  left: 0;
  z-index: 2;
  background-color: #E5F4FF;
  border: 1px solid #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}
.mainnav .level_2 li:not(.last) {
  border-bottom: 1px solid #fff;
}
.mainnav .level_2 a, .mainnav .level_2 strong {
  padding: 0.5em 2em;
}
.mainnav .level_2 a:hover, .mainnav .level_2 a:focus, .mainnav .level_2 strong:hover, .mainnav .level_2 strong:focus {
  background-color: #B3DEFF;
}
.mainnav .level_1 li:hover .level_2,
.mainnav .level_1 li:focus-visible .level_2,
.mainnav .level_1 li:focus-within .level_2 {
  display: block;
}

.mod_mobile_menu,
.mobile_menu {
  color: #003A66;
}
.mod_mobile_menu svg,
.mobile_menu svg {
  width: 40px;
  height: 40px;
}

.mod_mobile_menu {
  padding-right: 1em;
}

.mobile_menu .inner {
  background-color: #E5F4FF;
}
.mobile_menu .mheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.25em 0 0.25em 0;
  background-color: #fff;
}
.mobile_menu .mheader .logo {
  max-width: 100px;
}
.mobile_menu .mheader .logo a {
  background: none;
  border: none;
  padding: 0;
}
.mobile_menu ul {
  margin: 0;
}
.mobile_menu a {
  display: block;
  padding: 0.5em;
  background-color: #B3DEFF;
  color: #262626;
}
.mobile_menu a:not(.first) {
  border-top: 3px dotted #fff;
}
.mobile_menu a.termin {
  background-color: #005799;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  margin: 1em auto;
  border: none;
}
.mobile_menu a:hover, .mobile_menu a:focus {
  background-color: #FDCA35;
  color: #262626;
}
.mobile_menu a.phone {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  text-decoration: none;
  background-color: #82C9FF;
  margin-bottom: 1em;
  border: none;
}
.mobile_menu a.phone svg {
  height: 20px;
}
.mobile_menu .level_2 a {
  padding-left: 2em;
}
.mobile_menu .offcanvas-footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mobile_menu .offcanvas-footer li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.mobile_menu .offcanvas-footer a {
  border: none;
  background-color: #870C87;
  color: #fff;
  text-align: center;
  margin: 0.2em;
}
.mobile_menu .offcanvas-footer a:hover, .mobile_menu .offcanvas-footer a:focus {
  background-color: #CE13CE;
}

#backToTop {
  position: fixed;
  bottom: 10px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
}
#backToTop a {
  background-color: #870C87;
  color: #fff;
  padding: 1em;
  text-decoration: none;
  border-radius: 10px 0 0 0;
}

/*Variable Werte für Grundstyle*/
/*
Import additional file for using js select solution (does not work with group otion in Contao select fields)
	// activate @import "nice-select";
	// add $GLOBALS['TL_JAVASCRIPT'][] = $GLOBALS['TL_CONFIG']['uploadPath'].'/theme/js/jquery.nice-select.min.js|static'; to script template
	// Add $('select').niceSelect(); to main js
*/
.nice-select {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.6em;
  background-color: #E5F4FF;
  border-radius: 15px;
  border: solid 1px #33A7FF;
  cursor: pointer;
}
.nice-select:focus {
  outline: none;
}
.nice-select:after {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  height: 5px;
  width: 5px;
  pointer-events: none;
  border-bottom: 2px solid #262626;
  border-right: 2px solid #262626;
  margin-top: -4px;
  -webkit-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #33A7FF;
  color: #8d8d8d;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #595959;
}
.nice-select .list {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 9;
  margin: 0;
  background-color: #E5F4FF;
  border: 1px solid #33A7FF;
  border-top: none;
  border-radius: 15px;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  outline: none;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  list-style: none;
  outline: none;
  padding: 0.6em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #8d8d8d;
}
.nice-select .option:not(:last-child) {
  border-bottom: 1px solid #33A7FF;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #7fc9ff;
}
.nice-select .option.selected {
  color: #262626;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #8d8d8d;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*Klassen für @extend*/
.fieldreset, .ce_form .widget-checkbox.dsgvo fieldset {
  border: none;
  padding: 0;
}

/*Basic Styles*/
.ce_form {
  background-color: #fff;
  padding: 1em;
  border-radius: 15px;
  /*Select basic styles works unreliably in IE and Edge browser */
  /*Select basic  end*/
}
.ce_form input,
.ce_form label {
  display: block;
}
.ce_form label,
.ce_form legend {
  color: #262626;
}
.ce_form label span.mandatory,
.ce_form legend span.mandatory {
  color: #F08AF0;
}
.ce_form input,
.ce_form textarea {
  width: 100%;
  border: 1px solid #33A7FF;
  padding: 0.6em;
  background-color: #E5F4FF;
  color: #262626;
  border-radius: 15px;
}
.ce_form input:focus,
.ce_form textarea:focus {
  background: #dbf0ff;
}
.ce_form input:valid {
  color: #262626;
}
.ce_form input:invalid {
  color: #8d8d8d;
}
.ce_form fieldset {
  border: 1px solid #33A7FF;
}
.ce_form .widget {
  margin-bottom: 2em;
}
.ce_form .widget-checkbox .checkbox_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-checkbox .checkbox_container > span label {
  padding-left: 30px;
}
.ce_form .widget-checkbox .checkbox_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #33A7FF;
  background: #E5F4FF;
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-checkbox .checkbox_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: 20px;
}
.ce_form .widget-checkbox.dsgvo legend {
  display: none;
}
.ce_form .widget-radio .radio_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-radio .radio_container > span label {
  padding-left: 30px;
}
.ce_form .widget-radio .radio_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #33A7FF;
  background: #E5F4FF;
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-radio .radio_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: 20px;
}
.ce_form .widget-submit button {
  background: #E5F4FF;
  color: #262626;
  padding: 0.6em;
  border: 1px solid #33A7FF;
  cursor: pointer;
}
.ce_form .widget-submit button:hover {
  background: #dbf0ff;
}

.button {
  display: block;
}
.button a {
  display: inline-block;
  background-color: #FF7F42;
  border-radius: 10px;
  text-align: center;
  padding: 0.5em 1em;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button a:hover, .button a:focus {
  color: #fff;
  background-color: #0074CC;
}
.button.button-orange a {
  background-color: #FF7F42;
  color: #fff;
}
.button.button-orange a:hover, .button.button-orange a:focus {
  color: #fff;
  background-color: #0074CC;
}
.button.button-blue a {
  background-color: #0074CC;
  color: #fff;
}
.button.button-blue a:hover, .button.button-blue a:focus {
  color: #262626;
  background-color: #B3DEFF;
}
.button.large a {
  font-size: 30px;
}
.button.large a:hover:hover, .button.large a:hover:focus, .button.large a:focus:hover, .button.large a:focus:focus {
  color: #fff;
  background-color: #0074CC;
}

.ce_accordion {
  margin-bottom: 1.5rem;
}
.ce_accordion.content-text {
  margin-top: 0;
}
.ce_accordion p, .ce_accordion a, .ce_accordion li {
  color: inherit;
}
.ce_accordion button {
  padding: 1em;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  line-height: 1;
  cursor: pointer;
  text-align: left;
  color: #262626;
}
.ce_accordion button > span {
  display: block;
  font-size: 2.25rem;
  font-weight: bold;
}
.ce_accordion .toggler {
  border-radius: 15px;
  background-color: #82C9FF;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ce_accordion .toggler:hover, .ce_accordion .toggler:focus, .ce_accordion .toggler.active {
  background-color: #078AED;
  border-radius: 15px 15px 0 0;
}
.ce_accordion .toggler:hover ~ .accordion, .ce_accordion .toggler:focus ~ .accordion, .ce_accordion .toggler.active ~ .accordion {
  background-color: #078AED;
  border-radius: 0 0 15px 15px;
  color: #262626;
}
.ce_accordion .accordion {
  padding: 1em;
}
.baby .ce_accordion .toggler {
  background-color: #FEDC7A;
}
.baby .ce_accordion .toggler:hover, .baby .ce_accordion .toggler:focus, .baby .ce_accordion .toggler.active {
  background-color: #F6B805;
}
.baby .ce_accordion .toggler:hover ~ .accordion, .baby .ce_accordion .toggler:focus ~ .accordion, .baby .ce_accordion .toggler.active ~ .accordion {
  background-color: #F6B805;
}
.kleinkind .ce_accordion .toggler {
  background-color: #FFBA99;
}
.kleinkind .ce_accordion .toggler:hover, .kleinkind .ce_accordion .toggler:focus, .kleinkind .ce_accordion .toggler.active {
  background-color: #FF7F42;
}
.kleinkind .ce_accordion .toggler:hover ~ .accordion, .kleinkind .ce_accordion .toggler:focus ~ .accordion, .kleinkind .ce_accordion .toggler.active ~ .accordion {
  background-color: #FF7F42;
}
.schulkind .ce_accordion .toggler {
  background-color: #F5BAF5;
}
.schulkind .ce_accordion .toggler:hover, .schulkind .ce_accordion .toggler:focus, .schulkind .ce_accordion .toggler.active {
  background-color: #ED6CED;
}
.schulkind .ce_accordion .toggler:hover ~ .accordion, .schulkind .ce_accordion .toggler:focus ~ .accordion, .schulkind .ce_accordion .toggler.active ~ .accordion {
  background-color: #ED6CED;
}
.teenager .ce_accordion .toggler {
  background-color: #B3DEFF;
}
.teenager .ce_accordion .toggler:hover, .teenager .ce_accordion .toggler:focus, .teenager .ce_accordion .toggler.active {
  background-color: #33A7FF;
}
.teenager .ce_accordion .toggler:hover ~ .accordion, .teenager .ce_accordion .toggler:focus ~ .accordion, .teenager .ce_accordion .toggler.active ~ .accordion {
  background-color: #33A7FF;
}

.contao-cookiebar {
  --ccb-detail-clr: #262626;
  --ccb-text: #262626;
  --ccb-detail-clr-hvr: #005799;
}
.footer .ce_text,
.ce_text.footer-fax{
	margin: 0;
}



.ce_hyperlink.footer-tel a,
.ce_hyperlink.footer-mail a {
	background: none;
	color: #000;
	padding: 0;
}

.ce_hyperlink.footer-tel a {
	padding-left: 30px;
	 background-image: url("data:image/svg+xml,%3Csvg width='1601' height='1537' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Ctitle%3Ebackground%3C/title%3E%3Crect fill='none' id='canvas_background' height='402' width='582' y='-1' x='-1'/%3E%3C/g%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cpath fill='%23c0c0c0' id='svg_1' d='m1600,1240q0,27 -10,70.5t-21,68.5q-21,50 -122,106q-94,51 -186,51q-27,0 -52.5,-3.5t-57.5,-12.5t-47.5,-14.5t-55.5,-20.5t-49,-18q-98,-35 -175,-83q-128,-79 -264.5,-215.5t-215.5,-264.5q-48,-77 -83,-175q-3,-9 -18,-49t-20.5,-55.5t-14.5,-47.5t-12.5,-57.5t-3.5,-52.5q0,-92 51,-186q56,-101 106,-122q25,-11 68.5,-21t70.5,-10q14,0 21,3q18,6 53,76q11,19 30,54t35,63.5t31,53.5q3,4 17.5,25t21.5,35.5t7,28.5q0,20 -28.5,50t-62,55t-62,53t-28.5,46q0,9 5,22.5t8.5,20.5t14,24t11.5,19q76,137 174,235t235,174q2,1 19,11.5t24,14t20.5,8.5t22.5,5q18,0 46,-28.5t53,-62t55,-62t50,-28.5q14,0 28.5,7t35.5,21.5t25,17.5q25,15 53.5,31t63.5,35t54,30q70,35 76,53q3,7 3,21z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 20px;
	background-repeat: no-repeat;
	
}
.ce_text.footer-fax p {
	padding-left: 30px;
	margin: 0;
   background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' id='icon-fax' viewBox='0 0 37 30' width='30px' height='30px'%3E%3Cpath d='M0.0322003 23.0325V4.98257C0.0322003 4.98257 -0.619855 2.07129 3.94453 2.07129C8.50892 2.07129 8.50892 4.98257 8.50892 4.98257V23.0325C8.50892 23.0325 8.50892 25.9438 3.94453 25.9438C-0.619855 25.9438 0.0322003 23.0325 0.0322003 23.0325Z' fill='%23C0C0C0'/%3E%3Cpath d='M37 23.7541V3.86035H33.4546V10.4916H15.7277V3.86035H12.1823V23.7541H37Z' fill='%23C0C0C0'/%3E%3Cpath d='M17.4752 0V8.28571H31.8725V0H17.4752Z' fill='currentolor'/%3E%3Cpath d='M16.3678 22.7852V28.9994H32.98V22.7852H16.3678Z' stroke='%23C0C0C0'/%3E%3Cpath d='M19.2731 2.53418H25.3509M19.2731 4.52356H21.0964M19.2731 6.51294H27.782' stroke='%23C0C0C0' stroke-width='0.5'/%3E%3Crect x='16.4368' y='14.4707' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='16.4368' y='17.123' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='16.4368' y='19.7754' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='19.2731' y='14.4707' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='19.2731' y='17.123' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='19.2731' y='19.7754' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='22.1094' y='14.4707' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='22.1094' y='17.123' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='22.1094' y='19.7754' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='26.3638' y='14.4707' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='26.3638' y='17.123' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='26.3638' y='19.7754' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='29.2002' y='14.4707' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='29.2002' y='17.123' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='29.2002' y='19.7754' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='32.0365' y='14.4707' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='32.0365' y='17.123' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3Crect x='32.0365' y='19.7754' width='1.41815' height='1.32625' fill='%23C0C0C0'/%3E%3C/svg%3E");
    background-size: 20px;
	background-repeat: no-repeat;
	
}
.ce_hyperlink.footer-mail a {
	padding-left: 30px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' id='icon-fax' viewBox='0 0 37 30' width='30px' height='30px'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.4991 16.5C18.0045 16.5 0 4.3365 0 4.3365V3C0 1.344 1.60326 0 3.58229 0H39.4159C41.3967 0 43 1.344 43 3L42.9714 4.5C42.9714 4.5 25.1619 16.5 21.4991 16.5ZM21.4991 20.625C25.3301 20.625 42.9714 9 42.9714 9L43 27C43 28.656 41.3967 30 39.4159 30H3.58229C1.60505 30 0 28.656 0 27L0.0286297 9C0.0268403 9 18.0045 20.625 21.4991 20.625Z' fill='%23c0c0c0'/%3E%3C/svg%3E");
	background-size: 20px;
	background-repeat: no-repeat;
}

