html {
  --grid__columns: 12;
  --grid__gutter: 1.875rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), 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;
}

header,footer,nav,section,aside,main,article,figure,figcaption{display:block}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}body{font:12px/1 "Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco,monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

#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}
/* NUUNNAV CSS*/

.nuunnavbutton {display: none; width: 55px; cursor: pointer; position: fixed; z-index: 2500; top: 45px; right: 5%;}
.nuunnavbutton .navline {height: 2px; width: 100%; margin-bottom: 6px; border-radius: 0; background: #0072AD; opacity: 1; transition: transform 0.3s ease, opacity 0.3s ease;}

.nuunnavbutton.crossed .navline.top {transform: rotate(-30deg) translateY(8px) translateX(-7px);}
.nuunnavbutton.crossed .navline.mid {opacity: 0;}
.nuunnavbutton.crossed .navline.bot {width: 100%; margin-left: 0; transform: rotate(-150deg) translateY(5px) translateX(5px);}

#nuunnav {display: none; padding-top: 11px; font-family: 'latoregular'; font-size: 2rem; padding-left: 25px; padding-right: 25px; position: fixed; overflow-y: auto; top: 0; width: 100%; max-width: 500px; background: #ffffff; /*border:10px solid #fff;*/ height: 100vh; z-index: 2000; box-sizing: border-box; transition:right 0.6s ease, box-shadow 0.3s ease;}
#nuunnav.open {right: 0 !important; box-shadow: 0 0 10px #ababab;}
#nuunnav .inside {padding-bottom: 50px;}

#nuunnav .mod_navigation {margin-top: 20px; margin-bottom: 40px; display: inline-block; width: 100%;}
#nuunnav li a {font-family: 'latoregular'; color: #868686; text-decoration: none; padding: 7px 15px; border-radius: 40px; background: #ffffff; border: 1px solid #ffffff; transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;}
#nuunnav li a.active {color: #2e2e2e;}
#nuunnav li.active_link a {color: #2e2e2e;}
#nuunnav li a:hover {color: #2e2e2e;}
#nuunnav ul {list-style: none; padding-left: 0; margin-bottom: 0; display: block; width: 100%;}
#nuunnav ul.level_1 {margin: 0;}
#nuunnav ul.level_1 > li {}
#nuunnav ul.level_1 > li > a {display: inline-block; font-size: 2rem; float: left; clear: left; padding: 8px 0 5px 0;}
#nuunnav ul.level_1 > li.submenu > a {margin-right: 0px; float: left; clear: left;}
#nuunnav ul li.submenu .subtoggler {width: 50px; height: 52px; position: relative; display: flex; align-items: center; justify-content: center; float: left; cursor: pointer; background: url(../../files/data/graphics/navtoggler-down.svg) center no-repeat; background-size: 15px; transition: background 0.3s ease;}
#nuunnav ul li.submenu .subtoggler.down {background: url(../../files/data/graphics/navtoggler-up.svg) center no-repeat; background-size: 15px;}
#nuunnav ul.level_2 li.submenu .subtoggler {height: 40px;}
/*#nuunnav ul li.submenu .subtoggler .subtoggline1 {width: 16px; height: 2px; background: #868686;}
#nuunnav ul li.submenu .subtoggler .subtoggline2 {width: 16px; height: 2px; background: #868686; position: absolute; transform: rotate(90deg); transition: transform 0.3s ease;}*/
#nuunnav ul li.submenu .subtoggler.down .subtoggline2 {transform: rotate(0deg);}

#nuunnav ul.level_2 {display: none;}
#nuunnav ul.level_2 > li > a {color: #868686; font-family: 'latoregular'; display: inline-block; font-size: 2rem; float: left; clear: left; padding: 0 0 0 20px;}
#nuunnav ul.level_2 li a.active {color: #2e2e2e; font-family: 'latoregular';}
#nuunnav ul.level_2 li a:hover {color: #2e2e2e; background: url(../../files/data/graphics/icon-nav-bg.svg) center left 4vw no-repeat;}

#nuunnav ul.level_3 {display: none;}
#nuunnav ul.level_3 > li > a {display: inline-block; text-transform: none; font-size: 1.7rem; float: left; clear: left; padding: 5px 0 5px 10px;}
#nuunnav ul.level_3 li a.active {font-family: 'latoregular';}
#nuunnav ul.level_3 li a:hover {color: #2e2e2e; background: url(../../files/data/graphics/icon-nav-bg.svg) center left 6vw no-repeat;}

#nuunnav ul.level_4 {display: none;}
#nuunnav ul.level_4 > li > a {display: inline-block; text-transform: none; font-size: 1.5rem; float: left; clear: left; padding: 5px 0 5px 15px;}
#nuunnav ul.level_4 li a.active {font-family: 'latoregular';}
#nuunnav ul.level_4 li a:hover {color: #2e2e2e; background: url(../../files/data/graphics/icon-nav-bg.svg) center left 6vw no-repeat;}


/*@media screen and (max-width: 800px) {
	#nuunnav li a.active {font-family: 'latoregular';}
	#nuunnav li a:hover {color: #868686;}
	#nuunnav ul.level_2 li a.active {font-family: 'latoregular';}
	#nuunnav ul.level_2 li a:hover {color: #868686;}
	#nuunnav ul.level_3 li a.active {font-family: 'latoregular';}
	#nuunnav ul.level_3 li a:hover {color: #868686;}
	#nuunnav ul.level_4 li a.active {font-family: 'latoregular';}
	#nuunnav ul.level_4 li a:hover {color: #868686;}
}*/

/*@media screen and (max-width: 650px) {
	.nuunnavbutton {width: 45px; top: 36px;} 
    .nuunnavbutton .navline {margin-bottom: 8px;}
    .nuunnavbutton.crossed .navline.top {transform: rotate(-45deg) translateY(5px) translateX(-7px);}
    .nuunnavbutton.crossed .navline.bot {transform: rotate(-135deg) translateY(10px) translateX(12px);}
}*/
.custom-select-container {
  position: relative;
  box-sizing: border-box;;
}
.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: .333;
}
.custom-select-opener {
  background-color: #ccc;
  padding: 0.5em;
  display: block;
  cursor: pointer;
  width: 100%;
}
.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-select-panel {
  max-height: 0;
  transition: max-height .5s ease-out, overflow-y 0.1s 0.5s;
  overflow: hidden;
  background-color: #e9e9e9;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
}
.custom-select-container.is-open .custom-select-panel {
  max-height: 10.7em;
  overflow-y: auto
}
.custom-select-option {
  padding: 0.5em;
}
.custom-select-option.has-focus {
  background-color: LightBlue;
}
.custom-select-option.is-selected::before {
  content: "✔";
  padding-right: 0.5em;
}
.custom-select-optgroup > .custom-select-option {
  padding-left: 2em;
}
.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888;
}

/*************************************************************/
/*   Design:  HKT.CH						     	 	 	 */
/*   File:    screen.css					                 */
/*-----------------------------------------------------------*/
/*   Autor:   Thomas Dürig, www.nuun.ch 	                 */
/*   Datum:   Mai 2022						                 */
/*   Site: 	  www.hkt.ch                					 */
/*************************************************************/
/*  LAYOUT													 */
/*************************************************************/

/*FARBEN*/
/*	

*/

/*  GLOBAL													 */
/*************************************************************/

html, body {position: relative; height: 100%; width:100%; font: 62.5% "latoregular", Arial, Verdana, Helvetica, sans-serif; letter-spacing:0em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: antialiased; font-smoothing: antialiased;}
body {font-size:30px; font-size:2rem; line-height: 2.8rem; color: #868686; background-color: #fff;}

.invisible {display: none !important;}

.schmal50 {width: 50% !important; margin-left: auto !important; margin-right: auto !important;}
.schmal75 {width: 66.5% !important; margin-left: auto !important; margin-right: auto !important;}

.zentriert {text-align: center;}

.cookiebar {font-size: 1.8rem; line-height: 2.2rem; z-index: 1000;}
.cookiebar__button {margin: 10px 0; border-radius: 20px;}
.cookiebar__message, .cookiebar__text {display: inline-block; width: 80%; text-align: left;}
.cookiebar__link {display: block;}

/*  HEADER / NAVIGATION									     */
/*************************************************************/
#header {position: fixed; top: 0; left: 0; width: 100%; height: 190px; background: #fff; z-index: 1000; transition: box-shadow 0.3s ease;}
#header .inside {position: relative; width: 90%; padding-left: 5%; padding-right: 5%; margin:0 auto; max-width: 1400px;}
#header .inside .logo {margin-top: 35px; display: inline-block;}
#header .inside .bubble {position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-size: 1.6rem; line-height: 1.9rem; color: #fff; padding: 12px 125px 20px 25px; background: url(../../files/data/graphics/header-bubble-blau.svg) top left no-repeat; background-size: contain;}
#header .inside .bubble a {color: #fff; text-decoration: none;}
#header.up {box-shadow: 0 11px 40px 0 rgba(0,0,0,0.12);}

#header .navigation {display: inline-block; float: right; vertical-align: top; margin-top: 115px;}
#header .navigation ul {margin-bottom: 0;}
#header .navigation ul li {display: inline-block; position: relative; margin-left: 70px;}
#header .navigation ul li a {font-size: 2rem; line-height: 4.8rem; padding-bottom: 30px; color: #868686; text-decoration: none; transition: color 0.3s ease;}
#header .navigation ul li a:hover,
#header .navigation ul li a.active,
#header .navigation ul li a.trail {color: #0072AD;}
#header .navigation ul li a.submenu {padding-right: 30px; background: url(../../files/data/graphics/arrow-down-grau.svg) top 7px right no-repeat;}
#header .navigation ul li a.filtershop {padding: 15px 30px 15px 70px; border-radius: 50px; border: 2px solid #868686; background: url(../../files/data/graphics/icon-filtershop.svg) center left 25px no-repeat; transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;}
#header .navigation ul li a.filtershop:hover,
#header .navigation ul li a.filtershop.active,
#header .navigation ul li a.filtershop.trail {border: 2px solid #0072AD; color: #fff; background: #0072AD url(../../files/data/graphics/icon-filtershop-weiss.svg) center left 25px no-repeat;}

#header .navigation ul li:hover ul.level_2 {display: block; visibility: visible; opacity: 1; top: 57px;}
#header .navigation ul li ul.level_2 {display: block; visibility: hidden; opacity: 0; width: auto; padding: 25px 60px 30px 60px; position: absolute; top: 67px; left: 50%; transform: translateX(-50%); background-color: #fff; border-radius: 4px; filter: drop-shadow(0px 50px 20px rgba(0,114,173,0.15)); -webkit-filter: drop-shadow(0px 50px 20px rgba(0,114,173,0.15)); z-index: 1000; transition:opacity 0.2s, top 0.2s ease;}
#header .navigation ul.level_2 li {margin-left: 0;}
#header .navigation ul.level_2 li a {font-size: 1.8rem; line-height: 2.1rem; letter-spacing: 0.28px; padding-bottom: 0px; color: #868686; text-decoration: none; text-transform: none; white-space: nowrap; padding: 10px 0; display: block;}
#header .navigation ul.level_2 li a:hover,
#header .navigation ul.level_2 li a.active,
#header .navigation ul.level_2 li a.trail {color: #0072AD;}

/*  SLIDER 			                                         */
/*************************************************************/
.topslider {position: relative; width: 90%; padding: 0px 5%; margin:0 auto; max-width: 1750px; height: 330px; overflow: hidden;}
body.home .topslider {height: 720px;}
.mod_article.slider .inside {position: relative; width: 100%; padding: 0; margin:0 auto; max-width: initial;}
.topslider img {width: 100%; height: auto;}
.topslider .ce_text {position: absolute; bottom: 25%; right: 0; width: 40%; color: #fff; text-shadow: 0px 2px 10px rgba(0,0,0,0.2);}
.topslider .ce_text p {margin-bottom: 0;}
.topslider .ce_text h2 {color: #fff; margin: 0; font-size: 4.5rem; line-height: 6rem;}

.newsslider .slick-container {padding-top: 30px; margin-top: 20px;}
.newsslider .slick-prev {position: absolute; top: 0; left: 0; width: 54px; height: 54px; background: url(../../files/data/graphics/slick-prev.svg) center no-repeat; cursor: pointer; transition: transform 0.3s ease;}
.newsslider .slick-next {position: absolute; top: 0; left: 80px; width: 54px; height: 54px; background: url(../../files/data/graphics/slick-next.svg) center no-repeat; cursor: pointer; transition: transform 0.3s ease;}
.newsslider .slick-arrow:hover {transform: scale(1.1);}

.newsslider .slick-list {width: calc(100% + 20px); margin-left: -20px;}
.newsslider .slick-list .slick-slide {box-sizing: border-box; margin: 45px 0 0 20px;}


/*  INHALTSELEMENTE                                          */
/*************************************************************/
#container {padding-top: 190px;}

.mod_article .inside {position: relative; width: 90%; padding: 40px 5%; margin:0 auto; max-width: 1400px;}
#main .mod_article.rechts .inside {box-sizing: border-box; max-width: initial; width: 100%; padding-top: 40px; padding-bottom: 40px; padding-left: calc((100vw - 1050px) / 2); padding-right: 0;}
.mod_article.vollbild .inside {position: relative; width: 100%; padding: 0; margin:0 auto; max-width: initial;}
.mod_article.vollbild .inside img {width: 100%; height: auto;}
.mod_article.rot {background: #DC3E37;}
.mod_article.rot .inside {padding: 140px 5%;}
.mod_article.blau {background: #0072AD;}
.mod_article.blau .inside {padding: 140px 5%;}

.mod_article.rot h1, .mod_article.rot h2, .mod_article.rot h3, .mod_article.rot p, .mod_article.rot a {color: #fff;}
.mod_article.blau h1, .mod_article.blau h2, .mod_article.blau h3, .mod_article.blau p, .mod_article.blau a {color: #fff;}

h1 {font-family: 'latoregular'; font-size: 3rem; line-height: 3.6rem; color: #0072AD; padding-left: 65px; background: url(../../files/data/graphics/headline-line.svg) top 15px left no-repeat; margin-top: 0; margin-bottom: 25px;}
h2 {font-family: 'latoregular'; font-size: 3rem; line-height: 3.6rem; color: #2E2E2E;}
h3 {font-family: 'latoregular'; font-size: 3rem; line-height: 3.6rem; color: #868686; text-transform: uppercase; margin: 40px 0 25px 0;}

/*Text*/
.image_container img {max-width: 100%; height: auto;}

.ce_text {margin-bottom: 30px;}
.ce_text .image_container.float_left {width: 30%; float: left; margin-right: 3%;}
.ce_text.imageauto .image_container.float_left {width: auto; float: left; margin-right: 3%;}
.ce_text .image_container.float_right {width: 30%; float: right; margin-left: 3%;}
.ce_text.imageauto .image_container.float_right {width: auto; float: right; margin-left: 3%;}
.ce_text.klein p {font-size: 2rem; line-height: 2.6rem;}
.ce_text a {color: #868686; text-decoration: underline;}

/*Table*/
.ce_text table {border: none; width: 100%;}
.ce_text table tr:nth-of-type(2n-1) {background: #F6F8FA;}
.ce_text table td {padding: 10px 15px; border: none;}

/*Hyperlink*/
.ce_hyperlink {margin: 20px 0 40px 0;}
.ce_hyperlink a {display: inline-block; padding: 12px 60px 12px 25px; color: #868686; text-decoration: none; border: 2px solid #868686; border-radius: 40px; background: #fff url(../../files/data/graphics/hyperlink-arrow-grau.svg) center right 15px no-repeat; font-size: 2rem; line-height: 2.4rem; transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;}
.ce_hyperlink a:hover {background: #868686 url(../../files/data/graphics/hyperlink-arrow-weiss.svg) center right 15px no-repeat; color: #fff;}
.ce_hyperlink.rot a:hover {background: #DC3E37 url(../../files/data/graphics/hyperlink-arrow-weiss.svg) center right 15px no-repeat; color: #fff; border: 2px solid #DC3E37;}
.ce_hyperlink.blau a:hover {background: #0072AD url(../../files/data/graphics/hyperlink-arrow-weiss.svg) center right 15px no-repeat; color: #fff; border: 2px solid #0072AD;}

.ce_hyperlink.call {display: table; margin: 0 auto;}
.ce_hyperlink.call a {font-size: 8rem; line-height: 8.5rem; padding: 5px 90px 10px 0; border-top: none; border-left: none; border-right: none; border-bottom: 2px solid #fff; border-radius: 0; background: url(../../files/data/graphics/hyperlink-arrow-weiss-gross.svg) bottom 20px right 5px no-repeat; transition: background 0.3s ease, color 0.3s ease, border-bottom 0.3s ease;}
.ce_hyperlink.call a:hover {color: #fff; border-bottom: 2px solid #fff; background: url(../../files/data/graphics/hyperlink-arrow-weiss-gross.svg) bottom 25px right 0px no-repeat;}
.ce_hyperlink.call:after {content: "Jetzt Kontakt aufnehmen"; font-size: 2rem; display: block; clear: both; color: #fff; margin-top: 10px;}

body .buttons {text-align: center; margin-top: -90px; height: 180px; z-index: 5;}
.mod_article.buttons .inside {padding: 0px; max-width: 670px; position: relative;}
.buttons .ce_hyperlink {display: inline-block; margin: 0; position: absolute; top: 0; right: 0; left: initial;}
.buttons .ce_hyperlink.blau {position: absolute; top: 0; left: 50%; transform: translateX(-50%); right: initial;}
.buttons .ce_hyperlink.rot {position: absolute; top: 0; left: 0; right: initial;}
.ce_hyperlink.button {text-align: center; line-height: 0;}
.ce_hyperlink.button a {width: 166px; height: 166px; border-radius: 100px; color: rgba(255,255,255,0); background: #4D4E4C url(../../files/data/graphics/icon-lueftung.svg) center no-repeat; box-sizing: border-box; padding: 110px 0 0 0; text-align: center; border: none; transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;}
.ce_hyperlink.button a:hover,
.ce_hyperlink.button.active a,
.ce_hyperlink.button.active a:hover {transform: scale(1.05); color: rgba(255,255,255,1); background: #4D4E4C url(../../files/data/graphics/icon-lueftung.svg) center top 30px no-repeat;}
.ce_hyperlink.button.rot a {background: #DC3E37 url(../../files/data/graphics/icon-heizung.svg) center no-repeat;}
.ce_hyperlink.button.rot a:hover,
.ce_hyperlink.button.rot.active a,
.ce_hyperlink.button.rot.active a:hover {background: #DC3E37 url(../../files/data/graphics/icon-heizung.svg) center top 30px no-repeat;}
.ce_hyperlink.button.blau a {background: #0072AD url(../../files/data/graphics/icon-klima.svg) center no-repeat;}
.ce_hyperlink.button.blau a:hover,
.ce_hyperlink.button.blau.active a,
.ce_hyperlink.button.blau.active a:hover {background: #0072AD url(../../files/data/graphics/icon-klima.svg) center top 40px no-repeat;}

.ce_hyperlink.button.gross a {width: 250px; height: 250px; border-radius: 200px; font-size: 3rem; color: rgba(255,255,255,0); background: #4D4E4C url(../../files/data/graphics/icon-lueftung.svg) center no-repeat; background-size: 40%; box-sizing: border-box; padding: 165px 0 0 0; text-align: center; border: none; transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;}
.ce_hyperlink.button.gross a:hover {transform: scale(1.1); color: rgba(255,255,255,1); background: #4D4E4C url(../../files/data/graphics/icon-lueftung.svg) center top 30% no-repeat; background-size: 40%;}
.ce_hyperlink.button.gross.rot a {background: #DC3E37 url(../../files/data/graphics/icon-heizung.svg) center no-repeat; background-size: 40%;}
.ce_hyperlink.button.gross.rot a:hover {background: #DC3E37 url(../../files/data/graphics/icon-heizung.svg) center top 30% no-repeat; background-size: 40%;}
.ce_hyperlink.button.gross.blau a {background: #0072AD url(../../files/data/graphics/icon-klima.svg) center no-repeat; background-size: 40%;}
.ce_hyperlink.button.gross.blau a:hover {background: #0072AD url(../../files/data/graphics/icon-klima.svg) center top 40% no-repeat; background-size: 40%;}

.ce_hyperlink.button.klein a {width: 94px; height: 94px; padding-top: 0; background: #4D4E4C url(../../files/data/graphics/icon-lueftung.svg) center no-repeat; background-size: 40%;}
.ce_hyperlink.button.klein a:hover {color: rgba(255,255,255,0); background: #4D4E4C url(../../files/data/graphics/icon-lueftung.svg) center no-repeat; background-size: 40%;}
.ce_hyperlink.button.klein.rot a {width: 94px; height: 94px; padding-top: 0; background: #DC3E37 url(../../files/data/graphics/icon-heizung.svg) center no-repeat; background-size: 40%;}
.ce_hyperlink.button.klein.rot a:hover {color: rgba(255,255,255,0); background: #DC3E37 url(../../files/data/graphics/icon-heizung.svg) center no-repeat; background-size: 40%;}
.ce_hyperlink.button.klein.blau a {width: 94px; height: 94px; padding-top: 0; background: #0072AD url(../../files/data/graphics/icon-klima.svg) center no-repeat; background-size: 40%;}
.ce_hyperlink.button.klein.blau a:hover {color: rgba(255,255,255,0); background: #0072AD url(../../files/data/graphics/icon-klima.svg) center no-repeat; background-size: 40%;}

/*Gallery*/
#container #main .ce_gallery ul.cols_2 li {width: 48.5%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .ce_gallery ul.cols_3 li {width: 31.3%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .ce_gallery ul.cols_4 li {width: 22.75%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .ce_gallery ul li.col_last {margin-right: 0;}
#container #main .ce_gallery ul li figure {width: 100%; overflow: hidden; line-height: 0;}
#container #main .ce_gallery ul li figure img {width: 100%; height: auto; -webkit-transition: all .5s ease; transition: all .5s ease;}
#container #main .ce_gallery ul li figure:hover img {-webkit-transform: scale(1.1); transform: scale(1.1);}
#colorbox #cboxTitle {display: none !important;}
#colorbox #cboxCurrent {font-size: 1.5rem;}
.masonry .image_container img {border:10px solid #fff;}

 
/*List*/
#main .ce_text ul {display: table; margin-bottom: 25px;}
#main .ce_text ul li {vertical-align: middle; list-style: none; padding-left: 35px; background: url(../../files/data/graphics/icon-listbullet.svg) no-repeat top 16px left; margin-bottom: 15px;}
#main .ce_text ul ul {padding-left: 45px;}

#main .ce_text ol {
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
#main .ce_text ol > li {
    position:relative; /* Create a positioning context */
    margin:0 0 0 20px; /* Give each list item a left margin to make room for the numbers */
    list-style:none; /* Disable the normal item numbering */
}
#main .ce_text ol > li:before {
    content:counter(li)"."; /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    left: -18px;
    top: 1px;
    font-size: 1.8rem;
    color: #0088C9;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

/*Downloads*/
.ce_download.sc.last, .ce_downloads.sc.last {padding-right: 0;}
.ce_download, .ce_downloads {position:relative; width:100%; margin:0; padding:0;}
.ce_download ul, .ce_downloads ul {position:relative; float:left; width:100%; margin:0; padding:0 0 0 0;}
.ce_download ul li, .ce_downloads ul li {position:relative; width:100%; padding:0 0 0 0; margin:0 0 85px 0; background:#fff;}
body #container .ce_downloads a img, body #container .ce_download a img, body #container .enclosure a img {border: 1px solid #dbdbdb;}
body #container .ce_downloads .image_container a, body #container .ce_download .image_container a, body #container .enclosure .image_container a {text-align: center;}

body #container .ce_downloads a, body #container .ce_download a, body #container .enclosure a {
    position:relative;
    z-index:300;
    text-decoration: none;
    text-decoration-color: #DBDBDB;
    color: #868686;
    display:block;
    padding:0px 30px 7px 40px;
    margin:0 0 8px 0;
    transition: color 0.5s ease, text-decoration-color 0.3s ease;
    }   

body #container .enclosure a:hover,
body #container .ce_downloads a:hover, 
body #container .ce_downloads a:active, 
body #container .ce_download a:hover, 
body #container .ce_download a:active {color: #2E2E2E; text-decoration-color: #D8232A;}

.download-element a {background: url(../../files/data/graphics/icon-download.svg) top 2px left no-repeat;}
.download-element.ext-pdf a {background: url(../../files/data/graphics/icon-pdf.svg) top 2px left no-repeat;}
.download-element.ext-doc a {background: url(../../files/data/graphics/icon-doc.svg) top 2px left no-repeat;}
.download-element.ext-docx a {background: url(../../files/data/graphics/icon-doc.svg) top 2px left no-repeat;}
.download-element.ext-xls a {background: url(../../files/data/graphics/icon-xls.svg) top 2px left no-repeat;}
.download-element.ext-xlsx a {background: url(../../files/data/graphics/icon-xls.svg) top 2px left no-repeat;}
.download-element.ext-jpg a {background: url(../../files/data/graphics/icon-jpg.svg) top 2px left no-repeat;}
.download-element.ext-jpeg a {background: url(../../files/data/graphics/icon-jpg.svg) top 2px left no-repeat;}
.download-element.ext-png a {background: url(../../files/data/graphics/icon-png.svg) top 2px left no-repeat;}
.download-element.ext-ppt a {background: url(../../files/data/graphics/icon-ppt.svg) top 2px left no-repeat;}
.download-element.ext-pptx a {background: url(../../files/data/graphics/icon-ppt.svg) top 2px left no-repeat;}

/*Form*/
#container .formbody input {-webkit-appearance:none;} 
#container .formbody button {-webkit-appearance:none;}
#container .formbody .widget {margin-bottom: 20px;}
#container .ce_form {margin-top: 40px; width: 100%; margin-right: auto; margin-left: auto;}
#container .formbody label {width: 180px; padding-top: 10px; margin-bottom: 5px; display: inline-block; float: left;}
/*#container .formbody input {box-sizing: border-box; width: 100%; padding:2%; margin-bottom: 5px; border:none; background-color: rgba(225,225,225,0.9);}*/
#container .formbody input {z-index: 5; box-sizing: border-box; width: calc(100% - 180px); position: relative; padding: 14px 16px 14px 16px; background: #fff; border-radius: 6px; border: 2px solid #868686; font-size: 2rem; color: #868686; transition: background 0.3s, color 0.3s ease, border 0.3s ease;}
#container .formbody input:focus {z-index: 10; background: #fff; border: 2px solid #4D4E4C; color: #4D4E4C;}
/*#container .formbody textarea {box-sizing: border-box; width: 100%; padding:2%; border: none; margin-bottom: 5px; background-color: rgba(225,225,225,0.9);}*/
#container .formbody textarea {z-index: 5; width: calc(100% - 180px); box-sizing: border-box; position: relative; padding: 19px 20px 19px 30px; background: #fff; border-radius: 6px; border: 2px solid #868686; font-size: 2rem; color: #868686; transition: background 0.3s, color 0.3s ease, border 0.3s ease;}
#container .formbody textarea:focus {z-index: 10; background: #fff; border: 2px solid #4D4E4C; color: #4D4E4C;}
#container .formbody .submit {background-color: #0072AD; margin-top: 7px; padding: 15px 45px; cursor: pointer; border-radius: 30px; color: #fff; margin-left: 0; border: none; font-size: 2rem; float: right;}
#container .formbody select {box-sizing: border-box; width: 100%; padding:2%; margin-bottom: 15px; border:none; background-color: rgba(225,225,225,0.9);}
#container .formbody fieldset {margin-bottom: 10px;}
#container .formbody fieldset span {width:100%; float: left;}
#container .formbody fieldset span input {float: left; width: 5%; height: 26px;}
#container .formbody fieldset span label {padding-top: 0; width: 95%;}
#container .formbody .widget-captcha {margin-bottom: 40px;}
#container .formbody .widget-captcha input {margin-bottom: 5px;}
#container .formbody .widget-captcha span {width: 100%; float: left;}
#container .formbody .widget-captcha label span.mandatory {width: auto; float: none;}
#container .formbody .widget-checkbox input {-webkit-appearance:checkbox;}
#container .formbody .widget-checkbox legend span {width: auto; float: none;}
#container .formbody .widget-radio input {-webkit-appearance:radio;}
#container .formbody :focus {outline: none;}

/*radio und checkbox templates von scayla*/
#container .formbody .checkbox_container a {color: #868686; text-decoration: underline;}
#container .formbody .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
#container .formbody .checkbox_container label {width: calc(100% - 180px); cursor: pointer; position: relative; margin-bottom: 40px; display: inline-block;}
#container .formbody .checkbox_container legend {width: 180px; padding-top: 10px; margin-bottom: 5px; display: inline-block; float: left;}
#container .formbody .checkbox_container span {width: 90px; margin-right: 15px;}
#container .formbody .checkbox_container span.lname {width: calc(100% - 80px); margin-right: 0; font-size: 2rem; line-height: 3rem; padding-top: 5px; display: inline-block;}
#container .formbody .checkbox_container .checkmark {cursor: pointer; display: inline-block; position: relative; height: 54px; width: 54px; background-color: #fff; border:2px solid #868686; border-radius: 6px;}
#container .formbody .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
#container .formbody .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
#container .formbody .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
#container .formbody .checkbox_container input:checked ~ .checkmark:after {display: block;}
#container .formbody .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 54px; height: 54px; background: url(../../files/data/graphics/checkmark.svg) center no-repeat;}

#container .formbody .radio_container a {color: #d67500; text-decoration: none;}
#container .formbody .radio_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
#container .formbody .radio_container label {cursor: pointer; width: 150px; position: relative; margin-bottom: 40px; display: inline-block;}
#container .formbody .radio_container span {width: 90px; margin-right: 15px;}
#container .formbody .radio_container span.lname {width: auto; padding-top: 5px;}
#container .formbody .radio_container .checkmark {cursor: pointer; position: relative; height: 38px; width: 38px; background-color: #fff; border:1px solid #E9EBF0; border-radius: 50px;}
#container .formbody .radio_container:hover input ~ .checkmark {background-color: #fff;}
#container .formbody .radio_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
#container .formbody .radio_container .checkmark:after {content: ""; position: absolute; display: none;}
#container .formbody .radio_container input:checked ~ .checkmark:after {display: block;}
#container .formbody .radio_container .checkmark:after {top: 9px; left: 9px; width: 21px; height: 21px; background: #104D73; position: absolute; border-radius: 50px;}

#filtershop h2 {margin-top: 0;}
#filtershop .produkte {margin-bottom: 30px;}
#filtershop .produkte .widget {margin-bottom: 0;}
#filtershop .produkte .row {padding: 20px;}
#filtershop .produkte .row:nth-of-type(2n-1) {background: #F6F8FA;}
#filtershop .produkte .row .explanation p {display: flex; align-items: center; margin-bottom: 0;}
#filtershop .produkte .row .explanation p img {margin-right: 30px; width: 100px; height: 100px; object-fit: contain;}
.custom-select-container {max-width: initial; width: initial; margin-top: 0; position: relative;}
.produkte .custom-select-container {max-width: 300px; float: right; width: 100%; margin-top: 17px;}
.custom-select-opener {width: calc(100% - 180px); display: inline-block; z-index: 5; position: relative; padding-left: 30px; background: #fff url(../../files/data/graphics/select-arrow-down.svg) center right 15px no-repeat; border-radius: 6px; border: 2px solid #868686; font-size: 2rem; color: #868686; transition: background 0.3s, color 0.3s ease, border 0.3s ease;}
.produkte .custom-select-opener {width: 100%;}
.is-open .custom-select-opener {z-index: 10; background: #fff url(../../files/data/graphics/select-arrow-down-active.svg) center right 15px no-repeat; border: 2px solid #4D4E4C; color: #4D4E4C;}
.produkte .custom-select-panel {width: 100%;}
.custom-select-panel {width: calc(100% - 180px); right: 0; padding: 0; background: #fff; border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; border: 2px solid #fff; border-top: none; font-size: 2rem; color: #4D4E4C; margin-top: -5px; transition: all 0.3s ease;}
.is-open .custom-select-panel {cursor: pointer; z-index: 8; padding: 20px 0; max-height: 13em; border: 2px solid #4D4E4C; border-top: none;}
#filtershop .produkte .row:nth-of-type(2n-1) .custom-select-panel {border: 2px solid #F6F8FA; border-top: none;}
#filtershop .produkte .row:nth-of-type(2n-1) .is-open .custom-select-panel {border: 2px solid #4D4E4C; border-top: none;}
.custom-select-panel .custom-select-option[data-value="leer"] {color: rgba(255,255,255,0);}
.custom-select-panel .custom-select-option[data-value="leer"]:after {content: "Keine"; color: #4D4E4C; position: absolute; top: 0; left: 30px;}
.custom-select-panel .custom-select-option {padding: 0 30px; font-size: 2rem; position: relative;}
.custom-select-panel .custom-select-option.is-selected::before {display: none;}

#filtershop .kostencontainer {margin-top: 50px;}
#filtershop .kostencontainer .kostentext {display: inline-block; float: right;}
#filtershop .kostencontainer .kostenpreis {display: inline-block; float: right; margin-left: 30px;}
#filtershop .kostencontainer .kostenpreis h2 {line-height: 4rem;}
#filtershop .kostencontainer .kostentext2 {clear: both; font-size: 2rem;}
#filtershop .kostencontainer .kleinmengenzuschlag {clear: both; font-size: 2rem; color: #dc3e37;}

/*Columns*/
#container .rs-column.-large-col-2-1 {width: 48.5%; margin-right: 3%;}
#container .rs-column.-large-col-2-1.-large-last {margin-right: 0;}
#container .rs-column.-large-col-3-1 {width: 31.3%; margin-right: 3%;}
#container .rs-column.-large-col-3-1.-large-last {margin-right: 0;}
#container .rs-column.-large-col-4-1 {width: 22.75%; margin-right: 3%; margin-top: 0;}
#container .rs-column.-large-col-4-1.-large-last {margin-right: 0;}

/*YouTube*/
#container .ce_youtube {clear: both;}
#container .ce_youtube embed {max-width: 100%;}
#container .ce_youtube video {max-width: 100%;}
#container .ce_youtube iframe {max-width: 100%;}

#container .ce_youtube .me-plugin {max-width: 100%;}
#container .ce_youtube .mejs-overlay {max-width: 100% !important;}

#container .ce_player {clear: both;}
#container .ce_player embed {max-width: 100%;}
#container .ce_player video {max-width: 100%;}
#container .ce_player iframe {max-width: 100%;}

/*Google Map*/
.dlh_googlemap {width: 100% !important;}

/*  NEWS / TERMINE                                           */
/*************************************************************/
.layout_latest {position: relative;}
.layout_latest .boxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10;}
.layout_latest .image_container {line-height: 0; overflow: hidden;}
.layout_latest .image_container img {width: 100%; transition: transform 0.3s ease;}
.layout_latest .newstext {min-height: 255px; position: relative; box-sizing: border-box; width: 100%; padding: 25px 30px 90px 30px; background: #F6F8FA;}
.layout_latest .newstext .info {transition: filter 0.3s ease;}
.layout_latest .newstext h3 {font-size: 3rem; line-height: 4rem; color: #868686; margin: 0; text-transform: none; transition: filter 0.3s ease;}
.layout_latest .newstext h3 a {color: #868686; text-decoration: none;}
.layout_latest .newstext .more {position: absolute; bottom: 30px; left: 0; width: 100%; padding: 0 30px; box-sizing: border-box; transition: filter 0.3s ease;}
.layout_latest .newstext .more a {color: #868686; text-decoration: none; font-size: 2rem; line-height: 4rem; background: url(../../files/data/graphics/hyperlink-arrow-grau.svg) center right no-repeat; padding-right: 40px;}

.layout_latest:hover .image_container img {transform: scale(1.1);}
.layout_latest:hover .newstext .info {filter: brightness(0.6);}
.layout_latest:hover .newstext h3 {filter: brightness(0.6);}
.layout_latest:hover .newstext .more {filter: brightness(0.6);}

.newsliste .layout_latest {width: 31.3%; margin-right: 3%; display: inline-block; float: left; margin-bottom: 60px;}
.newsliste .layout_latest:nth-of-type(3n) {margin-right: 0;}
.newsliste .layout_latest:nth-of-type(3n+1) {clear: left;}

.newsliste.referenzen .info {font-size: 2rem; line-height: 4rem;}
.newsliste.referenzen .reficon {position: absolute; width: 54px; height: 54px; right: 30px; top: -27px;}
.newsliste.referenzen .arc_3 .reficon {background: url(../../files/data/graphics/ref-heizung.svg) center no-repeat;}
.newsliste.referenzen .arc_4 .reficon {background: url(../../files/data/graphics/ref-klima.svg) center no-repeat;}
.newsliste.referenzen .arc_5 .reficon {background: url(../../files/data/graphics/ref-lueftung.svg) center no-repeat;}

.referenzreader .arc_3 h1 {color: #DC3E37; background: url(../../files/data/graphics/ref-heizung.svg) top left no-repeat; padding: 10px 0 10px 75px;}
.referenzreader .arc_4 h1 {background: url(../../files/data/graphics/ref-klima.svg) top left no-repeat; padding: 10px 0 10px 75px;}
.referenzreader .arc_5 h1 {color: #4D4E4C; background: url(../../files/data/graphics/ref-lueftung.svg) top left no-repeat; padding: 10px 0 10px 75px;}

.weitereprojekte .layout_latest {padding: 20px; display: inline-block; width: 100%; box-sizing: border-box;}
.weitereprojekte .layout_latest.even {background: #F6F8FA;}
.weitereprojekte .layout_latest .timebox {display: inline-block; float: left; width: 25%;}
.weitereprojekte .layout_latest .timebox p {font-size: 2rem; line-height: 4rem;}
.weitereprojekte .layout_latest .newstext {display: inline-block; float: left; width: 75%; background: none; padding: 0; min-height: initial;}
.weitereprojekte .layout_latest .newstext h2 {margin: 0; padding: 0 0 5px 0;}
.layout_latest .newstext h2 {font-size: 3rem; line-height: 4rem; color: #868686; margin: 0; text-transform: none; transition: filter 0.3s ease;}
.layout_latest .newstext h2 a {color: #868686; text-decoration: none;}

.pagination {clear: both;}
.pagination p {display: inline-block; float: left; font-size: 2rem;}
.pagination ul {display: inline-block; float: right; font-size: 2rem;}
.pagination ul li {display: inline-block; margin: 0 2px;}
.pagination ul li a {color: #868686; text-decoration: none;}
.pagination ul li strong {color: #0072AD; font-family: 'latoregular'; font-weight: normal;}
.pagination ul li.first, .pagination ul li.last, .pagination ul li.next, .pagination ul li.previous {display: none;}

.mod_newsreader .back a {display: inline-block; padding: 12px 60px 12px 25px; color: #868686; text-decoration: none; border: 2px solid #868686; border-radius: 40px; background: #fff url(../../files/data/graphics/hyperlink-arrow-grau.svg) center right 15px no-repeat; font-size: 2rem; line-height: 2.4rem; transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;}
.mod_newsreader .back a:hover {background: #868686 url(../../files/data/graphics/hyperlink-arrow-weiss.svg) center right 15px no-repeat; color: #fff;}

/*  FOOTER                                                   */
/*************************************************************/
#footer {height: auto; display: block; clear: both; position: relative; margin-top: 0;}
#footer .clearfix:after {display: none;}

#footer .footertop {position: absolute; left: 0; top: -27px; width: 100%; text-align: center;}
#footer .footertop #backtotop {cursor: pointer; z-index: 5;}

#footer .footermid {background: #F6F8FA; padding: 80px 0 60px 0;}
#footer .footermid .inside {position: relative; width: 90%; padding-left: 5%; padding-right: 5%; margin:0 auto; max-width: 1400px;}
#footer .footermid .ce_text h3 {font-size: 2rem; margin-top: 84px; margin-bottom: 30px;}
#footer .footermid .ce_text p {font-size: 2rem; line-height: 2.8rem;}
#footer .footermid .ce_text a {color: #868686; text-decoration: none;}

#footer .footerbot {background: #F6F8FA; padding: 10px 0 10px 0; border-top: 2px solid #fff;}
#footer .footerbot .inside {position: relative; width: 90%; padding-left: 5%; padding-right: 5%; margin:0 auto; max-width: 1400px;}
#footer .footerbot .ce_text {display: inline-block; color: #C5C5C5; font-size: 2rem; margin-bottom: 0;}
#footer .footerbot .ce_text p {margin-bottom: 0;}
#footer .footerbot .ce_image {display: inline-block; float: right;}

/*  LIGHTBOX	                                             */
/*************************************************************/
#cboxTitle {display: none !important;} 
#cboxLoadedContent {border: none;} 
#cboxNext {background: url("../../files/data/graphics/lightbox-next.svg"); width: 35px; position: absolute; right: 15px; height: 45px; top: 53%; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxPrevious {background: url("../../files/data/graphics/lightbox-prev.svg"); width: 35px; position: absolute; left: 15px; height: 45px; top: 53%; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxClose {background: url("../../files/data/graphics/lightbox-close.svg"); width: 35px; position: absolute; right: 15px; top: 15px; height: 35px; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxCurrent {font-size: 14px;} 

/*  FIXES		                                             */
/*************************************************************/
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height:0px;}
.clearfix {display: block;}
/* End hide from IE-mac */

/*  MEDIA QUERIES                                            */
/*************************************************************/
@media screen and (max-width: 1960px) {
    .topslider {height: 18.4vw;}
    body.home .topslider {height: 36.7vw;}
}

@media screen and (max-width: 1550px) {
    #header .navigation ul li {margin-left: 30px;}
    .topslider .ce_text {width: 95%;}
    #container .formbody label {font-size: 2rem; width: 120px;}
    #container .formbody .checkbox_container legend {font-size: 2rem; width: 120px;}
    .custom-select-opener {width: calc(100% - 120px);}
    #container .formbody input {width: calc(100% - 120px);}
    #container .formbody textarea {width: calc(100% - 120px);}
    #container .formbody .checkbox_container label {width: calc(100% - 120px);}
}

@media screen and (max-width: 1300px) {
    #header .navigation ul li {margin-left: 13px;}
    #header .navigation ul li a {font-size: 1.7rem;}
    #header .navigation ul.level_2 li a {font-size: 1.7rem;}
    #main .mod_article.rechts .inside {width: 100%; padding-left: 5%; padding-right: 5%; padding-top: 40px; padding-bottom: 40px;}
}

@media screen and (max-width: 1100px) {
    .mobileaus {display: none;}
    #header .navigation {display: none;}
    .nuunnavbutton {display: block;}
    #nuunnav {display: block;}
    #header {height: 110px;}
    #container {padding-top: 110px;}
    #header .inside .logo {width: 134px; margin-top: 20px;}
    #header .inside .bubble {font-size: 1rem; line-height: 1.3rem; font-family: 'latobold'; padding: 3px 55px 10px 15px; transform: none; left: initial; right: 10%;}
    #nuunnav .bubble {position: absolute; top: 0; color: #fff; background: url(../../files/data/graphics/header-bubble-blau.svg) top left no-repeat; background-size: contain; font-size: 1rem; line-height: 1.3rem; font-family: 'latobold'; padding: 3px 55px 10px 15px; transform: none; left: initial; right: 10%;}
    #nuunnav .bubble a {color: #fff; text-decoration: none;}
    #nuunnav .logo {width: 134px; margin-top: 9px;}
    #nuunnav .nuunnavtext {font-size: 2rem; line-height: 2.8rem;}
    #nuunnav .nuunnavtext a {color: #868686; text-decoration: none;}
    #nuunnav .navigation ul li a.filtershop {padding: 10px 30px 10px 70px; border-radius: 50px; border: 2px solid #868686; background: url(../../files/data/graphics/icon-filtershop.svg) center left 25px no-repeat; margin-top: 20px; transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;}
    #nuunnav .navigation ul li a.filtershop:hover,
    #nuunnav .navigation ul li a.filtershop.active,
    #nuunnav .navigation ul li a.filtershop.trail {border: 2px solid #0072AD; color: #fff; background: #0072AD url(../../files/data/graphics/icon-filtershop-weiss.svg) center left 25px no-repeat;}
    .schmal75 {width: 100% !important;}
    .schmal50 {width: 100% !important;}
    body .buttons {text-align: center; margin-top: -60px; height: 120px; z-index: 5;}
    .buttons .ce_hyperlink.button a {width: 80px; height: 80px; padding-top: 0; background: #4D4E4C url(../../files/data/graphics/icon-lueftung.svg) center no-repeat; background-size: 40%;}
    .buttons .ce_hyperlink.button a:hover {color: rgba(255,255,255,0); background: #4D4E4C url(../../files/data/graphics/icon-lueftung.svg) center no-repeat; background-size: 40%;}
    .buttons .ce_hyperlink.button.rot a {width: 80px; height: 80px; padding-top: 0; background: #DC3E37 url(../../files/data/graphics/icon-heizung.svg) center no-repeat; background-size: 40%;}
    .buttons .ce_hyperlink.button.rot a:hover {color: rgba(255,255,255,0); background: #DC3E37 url(../../files/data/graphics/icon-heizung.svg) center no-repeat; background-size: 40%;}
    .buttons .ce_hyperlink.button.blau a {width: 80px; height: 80px; padding-top: 0; background: #0072AD url(../../files/data/graphics/icon-klima.svg) center no-repeat; background-size: 40%;}
    .buttons .ce_hyperlink.button.blau a:hover {color: rgba(255,255,255,0); background: #0072AD url(../../files/data/graphics/icon-klima.svg) center no-repeat; background-size: 40%;}
    .topslider .ce_text {bottom: 15%;}
    #footer .footermid .ce_text h3 {margin-top: 0;}
    .newsliste .layout_latest {width: 48.5%;}
    .newsliste .layout_latest:nth-of-type(3n) {margin-right: 3%;}
    .newsliste .layout_latest:nth-of-type(3n+1) {clear: none;}
    .newsliste .layout_latest:nth-of-type(2n) {margin-right: 0 !important;}
    .newsliste .layout_latest:nth-of-type(2n+1) {clear: left !important;}
}

@media screen and (max-width: 900px) {
    .topslider .ce_text p {font-size: 2rem; line-height: 2.5rem;}
    .topslider .ce_text h2 {font-size: 3rem; line-height: 4rem;}
    .ce_hyperlink.call a {font-size: 6rem; line-height: 6.5rem;}
    .cookiebar__message, .cookiebar__text {width: 100%; margin-right: 0;}
}

@media screen and (max-width: 750px) {
    body {font-size: 2rem; line-height: 3rem;}
    #main .ce_text ul li {background: url(../../files/data/graphics/icon-listbullet.svg) no-repeat top 11px left;}
    h1 {background: none; padding-left: 0;}
    h3 {font-size: 2.2rem; line-height: 2.7rem; margin: 30px 0 15px 0;}
    body .buttons {margin-top: 30px; margin-bottom: -25px; height: 110px;}
    body.home .topslider {height: 45vw;}
    .topslider {height: 30vw;}
    .topslider .slick-container, .topslider .slick-list, .topslider .slick-track, .topslider .slick-slide, .topslider .ce_image, .topslider .image_container {height: 100%;}
    .topslider img {width: 100%; height: 100%; object-fit: cover;}
    .topslider .ce_text {bottom: 7%; margin-bottom: 0;}
    .topslider .ce_text h2 {font-size: 2rem; line-height: 2.5rem;}
    .ce_hyperlink.call a {font-size: 4rem; line-height: 4.5rem; background-size: 30px;}
    .ce_hyperlink.call a:hover {background-size: 30px;}
    .newsliste .layout_latest {width: 100%; margin-right: 0;}
    .weitereprojekte .layout_latest .timebox {width: 100%; display: block; clear: both;}
	.weitereprojekte .layout_latest .newstext {width: 100%; display: block; clear: both;}
    .mod_article.rot .inside, .mod_article.blau .inside {padding: 60px 5%;}
    .newsslider .slick-prev {width: 40px; height: 40px; background-size: contain;}
    .newsslider .slick-next {width: 40px; height: 40px; background-size: contain; left: 70px;}
    .newsslider .slick-container {padding-top: 70px;}
    .ce_hyperlink.button.gross a {width: 170px; height: 170px; padding: 110px 0 0 0; font-size: 2rem;}
    #footer .footerbot .ce_text p {font-size: 1.6rem;}
}


/*  FONTS                                                    */
/*************************************************************/
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on September 5, 2017 */
@font-face {
    font-family: 'latoblack';
    src: url('../../files/data/style/Fonts/lato-black-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/lato-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'latobold';
    src: url('../../files/data/style/Fonts/lato-bold-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/lato-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'latoitalic';
    src: url('../../files/data/style/Fonts/lato-italic-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/lato-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'latolight';
    src: url('../../files/data/style/Fonts/lato-light-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/lato-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'latoregular';
    src: url('../../files/data/style/Fonts/lato-regular-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/lato-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


/*Abstaende*/
.oben0 {margin-top: 0px !important;}
.oben10 {margin-top: 10px !important;}
.oben20 {margin-top: 20px !important;}
.oben30 {margin-top: 30px !important;}
.oben40 {margin-top: 40px !important;}
.oben50 {margin-top: 50px !important;}
.oben60 {margin-top: 60px !important;}
.oben70 {margin-top: 70px !important;}
.oben80 {margin-top: 80px !important;}
.oben90 {margin-top: 90px !important;}
.oben100 {margin-top: 100px !important;}
.oben110 {margin-top: 110px !important;}
.oben120 {margin-top: 120px !important;}
.oben130 {margin-top: 130px !important;}
.oben140 {margin-top: 140px !important;}
.oben150 {margin-top: 150px !important;}

.unten0 {margin-bottom: 0px !important;}
.unten10 {margin-bottom: 10px !important;}
.unten20 {margin-bottom: 20px !important;}
.unten30 {margin-bottom: 30px !important;}
.unten40 {margin-bottom: 40px !important;}
.unten50 {margin-bottom: 50px !important;}
.unten60 {margin-bottom: 60px !important;}
.unten70 {margin-bottom: 70px !important;}
.unten80 {margin-bottom: 80px !important;}
.unten90 {margin-bottom: 90px !important;}
.unten100 {margin-bottom: 100px !important;}
.unten110 {margin-bottom: 110px !important;}
.unten120 {margin-bottom: 120px !important;}
.unten130 {margin-bottom: 130px !important;}
.unten140 {margin-bottom: 140px !important;}
.unten150 {margin-bottom: 150px !important;}
