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}
/*!
 * mega menu layout
 * optimiced for Contao Official Demo Theme
 */.mod_navigation.dropdown{overflow:visible}.mod_navigation li.mm_container>a,.mod_navigation li.mm_container>span{position:relative}.mod_navigation li.mm_container:not(.mm_container_onClickOnly):hover>a:after,.mod_navigation li.mm_container:not(.mm_container_onClickOnly):hover>strong:after,.mod_navigation li.mm_container.mm_container_onClickOnly.mm_isActive>a:after,.mod_navigation li.mm_container.mm_container_onClickOnly.mm_isActive>strong:after{content:"";position:absolute;left:0;right:0;bottom:-3px;height:3px;background-color:#F4F2F0;z-index:110}.mod_navigation li.mm_container .mm_dropdown{display:none;position:absolute;left:0;right:0;z-index:100}.mod_navigation li.mm_container .mm_dropdown>.inner{padding:1rem 2rem;border:1px solid #E5DFDC;background-color:rgba(244, 242, 240, 0.95);overflow:hidden}.mod_navigation li.mm_container:not(.mm_container_onClickOnly):hover .mm_dropdown,.mod_navigation li.mm_container.mm_container_onClickOnly .mm_isActive~.mm_dropdown{display:block}
#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";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden; }
  .contao-cookiebar * {
    box-sizing: border-box; }
  .contao-cookiebar:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .contao-cookiebar .cc-inner {
    display: inline-block;
    overflow-y: auto;
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-size: 1rem;
    text-align: left; }
  .contao-cookiebar.cc-top .cc-inner {
    vertical-align: top; }
  .contao-cookiebar.cc-top.cc-active .cc-inner {
    animation: cookiebar-top-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-top.cc-saved .cc-inner {
    animation: cookiebar-top-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom .cc-inner {
    vertical-align: bottom; }
  .contao-cookiebar.cc-bottom.cc-active .cc-inner {
    animation: cookiebar-bottom-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom.cc-saved .cc-inner {
    animation: cookiebar-bottom-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle .cc-inner {
    vertical-align: middle; }
  .contao-cookiebar.cc-middle.cc-active .cc-inner {
    animation: cookiebar-middle-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle.cc-saved .cc-inner {
    animation: cookiebar-middle-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-left {
    text-align: left; }
  .contao-cookiebar.cc-right {
    text-align: right; }
  .contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
    margin-top: 0; }
  .contao-cookiebar .cc-head p {
    margin-bottom: 15px; }
  .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 #cfcfcf;
    border-radius: 4px;
    color: #444;
    background: #f5f5f5; }
    .contao-cookiebar .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .cc-btn:last-child {
      margin-bottom: 0; }
  .contao-cookiebar .grayscale .cc-btn {
    background: #f1efef; }
    .contao-cookiebar .grayscale .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .grayscale .cc-btn.success {
      background: #fbfbfb; }
      .contao-cookiebar .grayscale .cc-btn.success:hover {
        background: #f7f7f7; }
  .contao-cookiebar .highlight .cc-btn.success {
    background: #4e9e3e;
    border-color: #3e7830;
    color: #fff; }
    .contao-cookiebar .highlight .cc-btn.success:hover {
      background: #4c933f; }
  .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 50px;
      cursor: pointer; }
      .contao-cookiebar input + label:before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 35px;
        height: 18px;
        margin: 0;
        box-sizing: content-box;
        border-radius: 10px;
        background: #fff;
        border: 2px solid #9c9b99;
        transition: border-color .2s; }
      .contao-cookiebar input + label:after {
        display: block;
        content: '';
        position: absolute;
        top: 10px;
        left: 4px;
        width: 14px;
        height: 14px;
        border-radius: 10px;
        background: #9c9b99;
        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, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%); }
    .contao-cookiebar input:checked + label:after {
      background: #399d32;
      margin-left: 17px; }
    .contao-cookiebar input:checked + label:active:after {
      margin-left: 12px; }
    .contao-cookiebar input:checked + label:before {
      background: #dcf3db;
      border-color: #399d32; }
    .contao-cookiebar input:disabled + label {
      pointer-events: none; }
      .contao-cookiebar input:disabled + label:after {
        background: #c8c7c5; }
      .contao-cookiebar input:disabled + label:before {
        background: #f4f4f4;
        border-color: #c8c7c5; }
  .contao-cookiebar.cc-active .cc-inner {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .contao-cookiebar.cc-active.cc-blocked {
    pointer-events: auto;
    animation: cookiebar-overlay-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-saved.cc-inner {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
  .contao-cookiebar.cc-saved.cc-blocked {
    pointer-events: none;
    animation: cookiebar-overlay-out 0.5s ease-in-out forwards; }

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0; }
  .contao-cookiebar .cc-inner {
    max-width: 750px; } }

@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 0, 0, 0); }
  100% {
    background: rgba(0, 0, 0, 0.75); } }

@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(0, 0, 0, 0.75); }
  100% {
    background: rgba(0, 0, 0, 0);
    visibility: hidden; } }

@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); } }

@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0); } }

@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%); } }

.contao-cookiebar {
  color: #444444; }
  .contao-cookiebar p {
    color: #868686;
    line-height: 1.4; }
  .contao-cookiebar .cc-inner {
    padding: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    background: #fff; }
  .contao-cookiebar .cc-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    position: relative;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    margin-bottom: 10px; }
    .contao-cookiebar .cc-group > label {
      flex-grow: 1;
      margin: 5px 0 5px 10px; }
    .contao-cookiebar .cc-group .cc-detail-btn {
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      padding: 8px 10px;
      line-height: 1.2rem; }
      .contao-cookiebar .cc-group .cc-detail-btn span:nth-child(2) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(1) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(2) {
        display: inline; }
      .contao-cookiebar .cc-group .cc-detail-btn:hover {
        color: #717171; }
    .contao-cookiebar .cc-group .cc-detail-btn-details {
      display: inline-block;
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      text-decoration: underline;
      padding: 0;
      margin: 0 0 10px; }
      .contao-cookiebar .cc-group .cc-detail-btn-details span:nth-child(2) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(1) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(2) {
        display: inline; }
      .contao-cookiebar .cc-group .cc-detail-btn-details:hover {
        color: #717171; }
  .contao-cookiebar .cc-cookies {
    display: none;
    width: 100%;
    background: #fbfbfb;
    border-radius: 0 0 5px 5px; }
    .contao-cookiebar .cc-cookies > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-cookies > p, .contao-cookiebar .cc-cookies > .cc-cookie {
      margin: 0;
      padding: 15px;
      border-top: 1px solid #e6e6e6; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info {
      font-size: 0.875rem;
      background: #fff;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #efefef; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div > span {
        font-weight: 600; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div + div {
        margin-top: 5px; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
        margin-top: 15px; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-desc > p {
      margin-bottom: 0; }
    .contao-cookiebar .cc-cookies .cc-cookie label.cookie + p, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
      margin-top: 10px; }
    .contao-cookiebar .cc-cookies .cc-cookie p {
      margin: 0 0 15px;
      font-size: 0.875rem; }
  .contao-cookiebar .cc-footer, .contao-cookiebar .cc-info {
    text-align: center; }
  .contao-cookiebar .cc-info {
    margin-top: 15px; }
    .contao-cookiebar .cc-info > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-info > a {
      display: inline-block;
      font-size: 0.813rem;
      color: #a2a2a2;
      text-decoration: none; }
      .contao-cookiebar .cc-info > a:hover {
        color: #717171; }
      .contao-cookiebar .cc-info > a + a:before {
        display: inline-block;
        content: '·';
        margin-right: 5px; }

.sharebuttons {
	overflow:hidden;
}

.sharebuttons > ul.theme {
	list-style-type:none;
	margin:-4px;
	padding:0;
}

.sharebuttons > ul.theme:after {
	content:"";
	display:block;
	clear:both;
}

.sharebuttons > ul.theme > li {
	float:left;
}

.sharebuttons > ul.theme > li > a {
	margin:4px;
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-indent:101%;
	background-repeat:no-repeat;
	background-position:center;
}

.sharebuttons > ul.text > li > a {
	text-indent:0;
}

/* source: http://simpleicons.org/ */

.sharebuttons > ul.simpleicons_black > li > a {
	width:32px;
	height:32px;
	background-image:url('../../system/modules/sharebuttons/assets/simpleicons/sprites-black-32.png');
}

.sharebuttons > ul.simpleicons_black > li > a.facebook {
	background-position:-40px 0;
}

.sharebuttons > ul.simpleicons_black > li > a.twitter {
	background-position:-160px 0;
}

.sharebuttons > ul.simpleicons_black > li > a.gplus {
	background-position:-80px 0;
}

.sharebuttons > ul.simpleicons_black > li > a.linkedin {
	background-position:-120px 0;
}

.sharebuttons > ul.simpleicons_black > li > a.xing {
	background-position:-200px 0;
}

.sharebuttons > ul.simpleicons_black > li > a.mail {
	background-position:0 0;
}

.sharebuttons > ul.simpleicons_black > li > a.tumblr {
	background-position:-240px 0;
}

.sharebuttons > ul.simpleicons_black > li > a.pinterest {
	background-position:-280px 0;
}

.sharebuttons > ul.simpleicons_black > li > a.reddit {
	background-position:-320px 0;
}

.sharebuttons > ul.simpleicons_black > li > a.whatsapp {
	background-position:-360px 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
       only screen and (-o-min-device-pixel-ratio: 13/10),
       only screen and (min-resolution: 120dpi) 
{
	.sharebuttons > ul.simpleicons_black > li > a {
		background-size:auto 32px;
		background-image:url('../../system/modules/sharebuttons/assets/simpleicons/sprites-black-64.png');
	}
}

/* NUUNNAV CSS*/

.nuunnavbutton {display: none; width: 50px; cursor: pointer; position: fixed; z-index: 2500; top: 29px; right: 3%;}
.nuunnavbutton .navline {height: 3px; width: 100%; margin-bottom: 9px; border-radius: 0; background: #000000; opacity: 1; transition: transform 0.3s ease, opacity 0.3s ease;}
.nuunnavbutton .navline:last-of-type {width: 80%; margin-bottom: 0; margin-left: 20%;}

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

#nuunnav {display: none; padding-top: 11px; font-family: 'barlowregular'; font-size: 2.8rem; padding-left: 25px; padding-right: 25px; position: fixed; overflow-y: auto; top: 0; width: 100%; max-width: 500px; background: #EBEDF0; /*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: 'barlowregular'; color: #000000; text-decoration: none; padding: 7px 15px; border-radius: 40px; background: #EBEDF0; border: 1px solid #EBEDF0; transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;}
#nuunnav li a.active {color: #D40E1B;}
#nuunnav li.active_link a {color: #D40E1B;}
#nuunnav li a:hover {color: #D40E1B;}
#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; text-transform: uppercase; font-size: 2.8rem; float: left; clear: left; padding: 11px 0 12px 0;}
#nuunnav ul.level_1 > li.submenu > a {margin-right: 0px; float: left; clear: left;}
#nuunnav ul li.submenu .subtoggler {width: 50px; height: 50px; position: relative; display: flex; align-items: center; justify-content: center; float: left; cursor: pointer;}
#nuunnav ul.level_2 li.submenu .subtoggler {height: 40px;}
#nuunnav ul li.submenu .subtoggler .subtoggline1 {width: 16px; height: 2px; background: #000000;}
#nuunnav ul li.submenu .subtoggler .subtoggline2 {width: 16px; height: 2px; background: #000000; 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: #000000; font-family: 'barlowregular'; display: inline-block; font-size: 2rem; float: left; clear: left; padding: 5px 0 5px 0;}
#nuunnav ul.level_2 li a.active {color: #D40E1B; font-family: 'barlowregular';}
#nuunnav ul.level_2 li a:hover {color: #D40E1B; 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: 'barlowregular';}
#nuunnav ul.level_3 li a:hover {color: #D40E1B; 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: 'barlowregular';}
#nuunnav ul.level_4 li a:hover {color: #D40E1B; 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: 'barlowregular';}
	#nuunnav li a:hover {color: #000000;}
	#nuunnav ul.level_2 li a.active {font-family: 'barlowregular';}
	#nuunnav ul.level_2 li a:hover {color: #000000;}
	#nuunnav ul.level_3 li a.active {font-family: 'barlowregular';}
	#nuunnav ul.level_3 li a:hover {color: #000000;}
	#nuunnav ul.level_4 li a.active {font-family: 'barlowregular';}
	#nuunnav ul.level_4 li a:hover {color: #000000;}
}*/

/*@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:  Promix Solutions AG			     	 	 	 */
/*   File:    screen.css					                 */
/*-----------------------------------------------------------*/
/*   Autor:   Thomas Dürig, www.nuun.ch 	                 */
/*   Datum:   Feburar 2022					                 */
/*   Site: 	  www.promix-solutions.ch             			 */
/*************************************************************/
/*  LAYOUT													 */
/*************************************************************/

/*FARBEN*/
/*	

*/

/*  GLOBAL													 */
/*************************************************************/

html, body {--grid__gutter: 3rem; position: relative; height: 100%; width:100%; font: 62.5% "barlowregular", Arial, Verdana, Helvetica, sans-serif; letter-spacing:0em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: antialiased; font-smoothing: antialiased;}
body {font-size:20px; font-size:2rem; line-height: 2.4rem; color: #000000; background-color: #fff;}

.invisible {display: none !important;}

.schmal50 {width: 50% !important; margin: 0 auto;}
.schmal75 {width: 75% !important; margin: 0 auto;}

.schmal {max-width: 1477px; margin: 0 auto;}
h1.ce_headline.schmal, h2.ce_headline.schmal {margin-bottom: 20px; margin-top: 1em;}

strong {font-family: 'barlowbold'; font-weight: normal;}
sub {vertical-align: sub;}

.zentriert {text-align: center;}
.rechts {text-align: right;}

/*Backtotop*/
#backtotop {width: 70px; position: fixed; bottom: 45px; right: 20px; cursor: pointer; opacity: 0; z-index: 5000;}
#backtotop img {width: 100%;}

/*  HEADER / NAVIGATION									     */
/*************************************************************/
#header {z-index: 1000; height: 125px; width: 100%; position: fixed; top: 0; left: 0; background: #EBEDF0; border-top: 25px solid #D40E1B; transition: height 0.3s ease, border-top 0.3s ease;}
#header.up {height: 77px; border-top: 3px solid #D40E1B;}
#header .inside {width: 94%; padding: 0px 3%; max-width: 1750px; margin: 0 auto; position: relative;}
#header .logo {margin-top: 43px; display: inline-block; margin-right: 50px; float: left; transition: margin-top 0.3s ease;}
#header.up .logo {margin-top: 18px;}
#header .navigation {display: inline-block; float: left; margin-top: 63px; transition: margin-top 0.3s ease;}
#header.up .navigation {margin-top: 27px;}
#header .navigation ul {margin-bottom: 0;}
#header .navigation ul li {display: inline-block; margin-right: 20px; padding-bottom: 38px; transition: padding-bottom 0.3s ease;}
#header.up .navigation ul li {padding-bottom: 27px;}
#header .navigation ul li a {color: #000; text-decoration: none; padding-bottom: 38px; padding-right: 20px; background: url(../../files/data/graphics/arrow-down.svg) top 5px right no-repeat; transition: padding-bottom 0.3s ease; transition: color 0.3s ease, background 0.3s ease;}
#header.up .navigation ul li a {padding-bottom: 27px;}
#header .navigation ul li a:hover {color: #D40E1B; background: url(../../files/data/graphics/arrow-down-rot.svg) top 15px right no-repeat;}
#header .navigation ul li a.active,
#header .navigation ul li a.trail {color: #D40E1B; background: url(../../files/data/graphics/arrow-down-rot.svg) top 5px right no-repeat;}
#header .navigation ul li a.green:hover {color: #49843f; background: url(../../files/data/graphics/arrow-down-gruen.svg) top 15px right no-repeat;}
#header .navigation ul li a.green.active,
#header .navigation ul li a.green.trail {color: #49843f; background: url(../../files/data/graphics/arrow-down-gruen.svg) top 5px right no-repeat;}
#header .navigation ul li a.themen {font-family: 'barlowregular'; text-transform: uppercase; padding-right: 0; background: none;}
#header .navigation ul li a.themen:hover,
#header .navigation ul li a.themen.active,
#header .navigation ul li a.themen.trail {color: #D40E1B; background: none;}
#header .navigation ul li.themen.normalsub {margin-right: 40px;}

#header .inside .navigation .mm_dropdown {position: fixed; background: #EBEDF0; width: 100%; top: 150px; box-shadow: 0 5px 5px rgba(0,0,0,0.1); transition: all 0.3s ease;}
#header.up .inside .navigation .mm_dropdown {top: 80px;}
#header .inside .navigation .mm_dropdown .inner {background: #EBEDF0; border: none; max-width: 1750px; margin: 0 auto; padding: 0 3% 20px 3%;}

#header .inside .navigation .mm_dropdown .mod_customnav ul li {display: block; width: 100%; margin-right: 0; padding-bottom: 0;}
#header .inside .navigation .mm_dropdown .mod_customnav ul li a {display: block; width: 100%; padding:15px 10px; background: none; border-bottom: 1px solid #fff; box-sizing: border-box; transition: color 0.3s ease, border-bottom 0.3s ease;}
#header .inside .navigation .mm_dropdown .mod_customnav ul li a.active,
#header .inside .navigation .mm_dropdown .mod_customnav ul li a:hover {color: #D40E1B; border-bottom: 1px solid #D40E1B;}
#header .inside .navigation .themen:not(.normalsub) .mm_dropdown .mod_customnav ul li.first a {font-family: 'barlowbold'; border-bottom: 2px solid #000; transition: color 0.3s ease, border-bottom 0.3s ease;}
#header .inside .navigation .themen:not(.normalsub) .mm_dropdown .mod_customnav ul li.first a.active,
#header .inside .navigation .themen:not(.normalsub) .mm_dropdown .mod_customnav ul li.first a:hover {color: #D40E1B; border-bottom: 2px solid #D40E1B;}
#header .inside .navigation .themen:not(.normalsub) .mm_dropdown .mod_customnav ul li.first a.trail {border-bottom: 2px solid #000; color: #000; transition: color 0.3s ease, border-bottom 0.3s ease;}
#header .inside .navigation .themen:not(.normalsub) .mm_dropdown .mod_customnav ul li.first a.trail:hover {color: #D40E1B; border-bottom: 2px solid #D40E1B;}
#header .inside .navigation .mm_dropdown .ce_text a {display: block; width: 100%; padding:15px 10px; background: none; border-bottom: 1px solid #fff; box-sizing: border-box; transition: color 0.3s ease, border-bottom 0.3s ease;}
#header .inside .navigation .mm_dropdown .ce_text a:hover {color: #D40E1B; border-bottom: 1px solid #D40E1B;}

body .mod_navigation li.mm_container .mm_dropdown {display: block; visibility: hidden; opacity: 0; transition: visibility 0.3s ease, opacity 0.3s ease;}
body .mod_navigation li.mm_container:hover .mm_dropdown {visibility: visible; opacity: 1;}
.mod_navigation li.mm_container:hover>a:after, .mod_navigation li.mm_container:hover>span:after {display: none;}

#header .headerkontakt {float: right; display: inline-block; margin-top: 65px; transition: margin-top 0.3s ease;}
#header.up .headerkontakt {margin-top: 28px;}
#header .headerkontakt a {color: #000; padding-right: 30px; background: url(../../files/data/graphics/icon-header-mail.svg) center right no-repeat; transition: color 0.3s ease, background 0.3s ease;}
#header .headerkontakt a:hover {color: #D40E1B; background: url(../../files/data/graphics/icon-header-mail-rot.svg) center right no-repeat;}

#header .mod_changelanguage {position: absolute; top: 60px; right: 200px; transition: top 0.3s ease;}
#header.up .mod_changelanguage {top: 23px;}
#header .mod_changelanguage ul {position: relative; font-size: 2rem; margin-bottom: 0;}
#header .mod_changelanguage ul li.active {display: inline-block; position: relative; top: 0 !important; border-bottom: none;}
#header .mod_changelanguage ul li.active a {padding:5px 30px 5px 0; width: auto; background: url(../../files/data/graphics/icon-header-lng.svg) center right no-repeat; font-family: 'barlowregular'; transition: background 0.3s ease, color 0.3s ease;}
#header .mod_changelanguage ul li.active a:after {display: none;}
#header .mod_changelanguage ul li.active a:hover {background: url(../../files/data/graphics/icon-header-lng-rot.svg) center right no-repeat; color: #D40E1B;}
#header .mod_changelanguage ul li {padding: 0; display: none; clear: both; position: absolute; top: 34px; right: 0; border-bottom: 1px solid #000;}
body.deu #header .mod_changelanguage ul .lang-en {top: 34px;}
body.deu #header .mod_changelanguage ul .lang-it {top: 75px;}
body.deu #header .mod_changelanguage ul .lang-fr {top: 116px;}
body.deu #header .mod_changelanguage ul .lang-es {top: 157px;}
body.eng #header .mod_changelanguage ul .lang-de {top: 34px;}
body.eng #header .mod_changelanguage ul .lang-it {top: 75px;}
body.eng #header .mod_changelanguage ul .lang-fr {top: 116px;}
body.eng #header .mod_changelanguage ul .lang-es {top: 157px;}
body.frn #header .mod_changelanguage ul .lang-de {top: 34px;}
body.frn #header .mod_changelanguage ul .lang-en {top: 75px;}
body.frn #header .mod_changelanguage ul .lang-it {top: 116px;}
body.frn #header .mod_changelanguage ul .lang-es {top: 157px;}
body.ita #header .mod_changelanguage ul .lang-de {top: 34px;}
body.ita #header .mod_changelanguage ul .lang-en {top: 75px;}
body.ita #header .mod_changelanguage ul .lang-fr {top: 116px;}
body.ita #header .mod_changelanguage ul .lang-es {top: 157px;}
body.esp #header .mod_changelanguage ul .lang-de {top: 34px;}
body.esp #header .mod_changelanguage ul .lang-en {top: 75px;}
body.esp #header .mod_changelanguage ul .lang-fr {top: 116px;}
body.esp #header .mod_changelanguage ul .lang-it {top: 157px;}
#header .mod_changelanguage ul li a {padding: 8px 15px; background: #EBEDF0; width: 120px; display: block; color: #000; text-decoration: none; font-family: 'barlowbold'; transition: background 0.3s ease;}
#header .mod_changelanguage ul li a:hover {background: #ccc;}
#header .mod_changelanguage ul .lang-de a:after {content: "Deutsch"; margin-left: 10px; font-family: 'barlowregular';}
#header .mod_changelanguage ul .lang-en a:after {content: "English"; margin-left: 10px; font-family: 'barlowregular';}
#header .mod_changelanguage ul .lang-fr a:after {content: "Français"; margin-left: 10px; font-family: 'barlowregular';}
#header .mod_changelanguage ul .lang-it a:after {content: "Italiano"; margin-left: 10px; font-family: 'barlowregular';}
#header .mod_changelanguage ul .lang-es a:after {content: "Español"; margin-left: 10px; font-family: 'barlowregular';}
#header .mod_changelanguage ul:hover li {display: block;}

#header .inside .suchecontainer {position: absolute; top: 66px; right: 280px; transition: top 0.3s ease;}
#header.up .inside .suchecontainer {top: 29px;}
#header .inside .togglebutton {display: inline-block; margin-left: 0px; cursor: pointer; width: 20px; float: right;}
#header .inside .togglebutton .close {display: none;}
#header .inside .togglebutton img {max-width: 100%; height: auto;}
#header .inside .suchecontainer .suchfeld {overflow: hidden; position: absolute; top: -5px; right: 30px; width: 0px; transition: width 1s ease;}
#header .inside .suchecontainer .suchfeld.open {width: 300px;}
#header .inside .suchecontainer .suchfeld .mod_search {height: 30px; border: 1px solid #000; border-radius: 3px; box-sizing: border-box; background: #fff; overflow: hidden;}
#header .inside .suchecontainer .suchfeld form {margin-bottom: 0;}
#header .inside .suchecontainer .suchfeld .formbody {margin: 0 auto 0 auto; height: 30px; width: 100%; padding: 0;}
#header .inside .suchecontainer .suchfeld .formbody .widget-text {width: 264px; display: inline-block;}
#header .inside .suchecontainer .suchfeld .formbody input.text {vertical-align: middle; width: 100%; margin-bottom: 0; -webkit-appearance: textfield; padding: 0; box-sizing: border-box; width: 100%; border:none; height: 30px;}
#header .inside .suchecontainer .suchfeld .formbody input.text:focus {outline: none;}
#header .inside .suchecontainer .suchfeld .formbody .widget-submit {display: inline-block; float: left; width: 30px; height: 30px;}
#header .inside .suchecontainer .suchfeld .formbody button.submit {vertical-align: middle; cursor: pointer; margin-top: 0; float: left; border:none; margin-left: 0px; width: 30px; height: 30px; padding: 0; background: url(../../files/data/graphics/icon-header-search.svg) center no-repeat; font-size: 0rem;}

/*  SLIDER 			                                         */
/*************************************************************/
.mod_article.slider img {width: 100%; height: auto;}
.mod_article.slider .inside {width: 100%; padding: 0; max-width: initial; position: relative;}
.mod_article.slider .ce_image .image_container {line-height: 0;}
.mod_article.slider .inside .topslider,
.mod_article.slider .inside .topslider .slick-container {height: 33vw; overflow: hidden;}
.mod_article.slider .inside .topslider .slick-slide {position: relative;}
#main .slider .slick-container .ce_image,
#main .slider .slick-container .ce_image .image_container {height: 33vw;}
#main .slider .slick-container .ce_image .image_container img {width: 100%; height: 100%; object-fit: cover;}
body.serviceseite #main .slider .slick-container .ce_image .image_container img {object-position:top;}
.slider .slick-container .slick-list {height: 33vw;}
#container .mod_article.slider .ce_text {position: absolute; top: 0; right: 0; color: #000; width: 50%; box-sizing: border-box; margin-bottom: 0; padding-left: 12%; padding-right: 2%; height: 100%; background: url(../../files/data/graphics/slider-text-bg-weiss-trans.svg) left center no-repeat; background-size: cover; display: flex; align-items: center;}
.mod_article.slider .ce_text h2 {color: #000; font-size: 8rem; line-height: 7.5rem; font-family: 'barlowbold'; margin: 0 0 20px 0;}
.mod_article.slider .ce_text p {font-size: 3.6rem; line-height: 4.6rem;}
.slider .slick-container ul {margin-bottom: 0; position: absolute; bottom: 30px; right: 0; width: 38%;}
.slider .slick-container ul li {cursor: pointer; width: 85px; float: left; margin-bottom: 15px; margin-right: 20px; height: 2px; background: #000; display: inline-block; transition: background 0.3s ease;}
.slider .slick-container ul li.slick-active, .slider .slick-container ul li:hover {background: #D40E1B;}
.slider .slick-container ul li button {display: none;}

#main .topslider.halb .slick-container .ce_image {width: 63%;}
#container .mod_article.slider .topslider.halb .ce_text {background: url(../../files/data/graphics/slider-text-bg-weiss.svg) left center no-repeat; background-size: cover;}
#main .topslider.halb .slick-container .ce_image.sliderlogo {position: absolute;top: 20px; right: 20px; width: auto; height: auto;}
#main .topslider.halb .slick-container .ce_image.sliderlogo .image_container {width: auto; height: auto;}
#main .topslider.halb .slick-container .ce_image.sliderlogo .image_container img {width: auto; height: auto;}

.mod_article .scrollarrow {position: absolute; bottom: -30px; left: 50%; z-index: 10; transform: translateX(-50%); width: 50px; height: 50px; background: url(../../files/data/graphics/scrollarrow.svg) center no-repeat;}
.mod_article .scrollarrow a {display: block; width: 100%; height: 100%;}

/*  INHALTSELEMENTE                                          */
/*************************************************************/
#container {padding-top: 150px; margin-bottom: 500px; z-index: 50; position: relative; display: inline-block; width: 100%; background: #fff;}

.mod_article {position: relative;}
.mod_article .inside {width: 94%; padding: 80px 3%; max-width: 1750px; margin: 0 auto;}

.mod_article.grau {background: rgb(195,200,206);
background: -moz-linear-gradient(top,  rgba(195,200,206,1) 0%, rgba(235,237,240,1) 28%, rgba(235,237,240,1) 100%);
background: -webkit-linear-gradient(top,  rgba(195,200,206,1) 0%,rgba(235,237,240,1) 28%,rgba(235,237,240,1) 100%);
background: linear-gradient(to bottom,  rgba(195,200,206,1) 0%,rgba(235,237,240,1) 28%,rgba(235,237,240,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3c8ce', endColorstr='#ebedf0',GradientType=0 );}
#container .mod_article.grau .ce_text {margin-bottom: 0;}
#container .mod_article.grau h3,
#container .mod_article.grau .lead p,
#container .mod_article.grau.lead p {margin: 0;}
#container .mod_article.grau .ce_hyperlink {margin: 0 0 15px 0;}

h1, h2 {font-family: 'barlowbold'; font-size: 3.6rem; line-height: 4.2rem; color: #D40E1B;}
h3 {font-size: 3.6rem; line-height: 4.2rem;}

.lead p {font-size: 3.6rem; line-height: 4.2rem;}

.ce_text.adresse {border-top: 1px solid #000;}
.ce_text.adresse h5 {font-size: 1.6rem; line-height: 2rem;}
.ce_text.adresse h3 {margin-top: 15px; min-height: 80px;}

/*Text*/
.image_container img {max-width: 100%; height: auto;}

#container .ce_text {margin-bottom: 30px;}
#container .ce_text .image_container.float_left {width: 48.5%; float: left; margin-right: 3%;}
#container .ce_text .image_container.float_right {width: 48.5%; float: right; margin-left: 3%;}

.ce_text a {color: #D40E1B; text-decoration: none;}

/*Hyperlink*/
.ce_hyperlink {display: block; margin: 20px 0 50px 0;}
.ce_hyperlink.rot a {display: inline-block; text-align: center; font-size: 2.8rem; line-height: 3.6rem; font-family: 'barlowbold'; text-decoration: none; color: #D40E1B; padding: 15px 30px 10px 30px; border: 3px solid #D40E1B; background: none; transition: background 0.3s ease, color 0.3s ease;}
.ce_hyperlink.rot a:hover {background: #D40E1B; color: #fff;}
.ce_hyperlink.rot a svg {display: none;}
/*.ce_hyperlink a {font-size: 2rem; line-height: 2.6rem; padding: 15px 0 15px 65px; text-decoration: none; color: #000; background: url(../../files/data/graphics/arrow-hyperlink.svg) left bottom no-repeat; transition: color 0.3s ease, background 0.3s ease;}
.ce_hyperlink a:hover {color: #D40E1B; background: url(../../files/data/graphics/arrow-hyperlink-hover.svg) left bottom no-repeat;}*/
.ce_hyperlink a {position: relative; display: inline-block; font-size: 2rem; line-height: 2.6rem; padding: 15px 0 15px 65px; text-decoration: none; color: #000; transition: color 0.3s ease;}
.ce_hyperlink a:hover {color: #D40E1B;}
.ce_hyperlink a svg {position: absolute; top: 6px; left: 0;}
.ce_hyperlink a svg #Pfeil {transition: transform-origin 0.3s ease;}
.ce_hyperlink a:hover svg #Pfeil {transform-origin: -4px -12px;}
.ce_hyperlink a svg path {transition: stroke 0.3s ease;}
.ce_hyperlink a:hover svg path {stroke: #D40E1B;}

/*Linkboxen*/
.linkboxen .box {position: relative; width: 31.3%; margin-right: 3%; display: inline-block; float: left;}
.linkboxen .box:nth-of-type(3n) {margin-right: 0;}
.linkboxen .box:nth-of-type(3n+1) {clear: left;}
.linkboxen .box img {width: 100%; height: auto; transition: opacity 0.3s ease;}
.linkboxen .box h2 {font-size: 1.5em; padding-left: 0; transition: padding-left 0.3s ease;}
.linkboxen .box h2 svg {margin-left: 20px; vertical-align: top;}
.linkboxen .box h2 svg #Pfeil {transition: transform 0.3s ease;}
/*.linkboxen .box h2:after {content: ""; display: inline-block; margin-left: 20px; width: 45px; height: 45px; background: url(../../files/data/graphics/arrow-red-right.svg) center no-repeat; transition: background 0.3s ease;}*/
.linkboxen .box .boxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10;}
.linkboxen .box:hover h2 {padding-left: 10px;}
.linkboxen .box:hover h2 svg #Pfeil {transform: translate(-17151px, -16266px);}
/*.linkboxen .box:hover h2:after {background: url(../../files/data/graphics/arrow-red-right-hover.svg) center no-repeat;}*/
.linkboxen .box:hover img {opacity: 0.7;}

/*Counter*/
.counter {background: #EBEDF0; padding: 50px 5%;}
.counter .box {text-align: center; position: relative; width: 30%; margin-right: 5%; display: inline-block; float: left; background: url(../../files/data/graphics/counter-bg-top.svg) top 30px center no-repeat; background-size: 100%; opacity: 1; transition: opacity 0.3s ease;}
.counter .box:hover {opacity: 0.7;}
.counter .box.gruen {background: url(../../files/data/graphics/counter-bg-top-gruen.svg) top 30px center no-repeat; background-size: 100%;}
.counter .box.grau {background: url(../../files/data/graphics/counter-bg-top-grau.svg) top 30px center no-repeat; background-size: 100%;}
.counter .box:nth-of-type(3n) {margin-right: 0;}
.counter .box:nth-of-type(3n+1) {clear: left;}
.counter .box .boxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10;}
.counter .box .iconbox {display: block;width: 100%; text-align: center;}
.counter .box .iconbox img {width: 60px; height: 60px; object-fit: scale-down; background: #EBEDF0; padding: 0 15px;}
.counter .box h3 {font-size: 4.8rem; line-height: 5.2rem; color: #D40E1B; font-family: 'barlowbold';}
.counter .box.gruen h3 {color: #49843f;}
.counter .box.grau h3 {color: #6b6b6a;}
.counter .box p {font-size: 3.6rem; line-height: 4rem; color: #D40E1B;}
.counter .box.gruen p {color: #49843f;}
.counter .box.grau p {color: #6b6b6a;}
.counter .box .boxbot {height: 50px; width: 100%; background: url(../../files/data/graphics/counter-bg-bot.svg) bottom right no-repeat; background-size: 100%;}
.counter .box.gruen .boxbot {background: url(../../files/data/graphics/counter-bg-bot-gruen.svg) bottom right no-repeat; background-size: 100%;}
.counter .box.grau .boxbot {background: url(../../files/data/graphics/counter-bg-bot-grau.svg) bottom right no-repeat; background-size: 100%;}

/*Divider*/
.divider {display: block; clear: both; width: 100%; height: 3px; margin: 120px auto; background:url(../../files/data/graphics/divider.svg) center no-repeat;}

/*Back Link*/
.rsceback {display: block; clear: both; width: 100%; margin: 120px auto; background: url(../../files/data/graphics/rsce-back-bg.svg) center no-repeat;}
.rsceback a {background: url(../../files/data/graphics/arrow-hyperlink.svg) left center no-repeat; transition: background 0.3s ease;}
.rsceback a:hover {background: url(../../files/data/graphics/arrow-hyperlink-hover.svg) left center no-repeat;}

/*Sales*/
.salesbox {display: block; clear: both; width: 100%; margin: 120px auto;}
.salesbox .titel {display: block; width: 100%; text-align: center; margin-bottom: 80px; background: url(../../files/data/graphics/rsce-sales-lines.svg) center no-repeat;}
.salesbox h3 {text-align: center; margin-bottom: 60px;}
.salesbox .row {margin: 0 auto; max-width: 850px;}
.salesbox .phone {position: relative; min-width: 60px; padding-top: 70px; transition: color 0.3s ease;}
.salesbox .phone:hover {color: #D40E1B;}
.salesbox .phone svg #Phone {transition: transform 0.3s ease;}
.salesbox .phone:hover svg #Phone {transform: translate(33px, 2px);}
.salesbox .mail {position: relative; min-width: 60px; padding-top: 70px; transition: color 0.3s ease;}
.salesbox .mail:hover {color: #D40E1B;}
.salesbox .mail svg #Mail {transition: transform 0.3s ease, fill 0.3s ease;}
.salesbox .mail:hover svg #Mail {transform: translate(30px, 6px);}
.salesbox .form {position: relative; min-width: 60px; padding-top: 70px; transition: color 0.3s ease;}
.salesbox .form:hover {color: #D40E1B;}
.salesbox .form svg #Form {transition: transform 0.3s ease, fill 0.3s ease;}
.salesbox .form:hover svg #Form {transform: translate(40px, 5px);}
.salesbox div a {display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10;}
.salesbox svg {position: absolute; top: 0; left: 50%; transform: translateX(-50%);}
.salesbox svg path {transition: stroke 0.3s ease;}
.salesbox svg g {transition: fill 0.3s ease;}
.salesbox .phone:hover svg path {stroke: #D40E1B;}
.salesbox .mail:hover svg #circle {stroke: #D40E1B;}
.salesbox .mail:hover svg g {fill: #D40E1B;}
.salesbox .form:hover svg #pfader {stroke: #D40E1B;}
.salesbox .form:hover svg #Form {fill: #D40E1B;}

/*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;}

/*Table*/
.ce_text table {border:none;}
.ce_text table tbody {border:none;}
.ce_text table td {border:none;}

/*List*/
#main .ce_text ul {display: table; margin-bottom: 25px;}

#main .ce_text ul li {vertical-align: middle; list-style: none; padding-left: 20px; background: url(../../files/data/graphics/icon-listbullet.svg) no-repeat top 7px left;}

#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%; line-height:21px; padding:0 0 0 0; margin:0 0 5px 0; background:#fff;}

body #container .ce_downloads a, body #container .ce_download a, body #container .enclosure a {
    position:relative;
    z-index:300;
    text-decoration: underline;
    text-decoration-color: #DBDBDB;
    color: #222222;
    display:block;
    padding:8px 30px 8px 40px;
    margin:0 0 0 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: #D8232A; text-decoration-color: #D8232A;}

.download-element a {background: url(../../files/data/graphics/icon-download.svg) top left no-repeat;}
.download-element.ext-pdf a {background: url(../../files/data/graphics/icon-pdf.svg) top left no-repeat;}
.download-element.ext-doc a {background: url(../../files/data/graphics/icon-doc.svg) top left no-repeat;}
.download-element.ext-docx a {background: url(../../files/data/graphics/icon-doc.svg) top left no-repeat;}
.download-element.ext-xls a {background: url(../../files/data/graphics/icon-xls.svg) top left no-repeat;}
.download-element.ext-xlsx a {background: url(../../files/data/graphics/icon-xls.svg) top left no-repeat;}
.download-element.ext-jpg a {background: url(../../files/data/graphics/icon-jpg.svg) top left no-repeat;}
.download-element.ext-jpeg a {background: url(../../files/data/graphics/icon-jpg.svg) top left no-repeat;}
.download-element.ext-png a {background: url(../../files/data/graphics/icon-png.svg) top left no-repeat;}
.download-element.ext-ppt a {background: url(../../files/data/graphics/icon-ppt.svg) top left no-repeat;}
.download-element.ext-pptx a {background: url(../../files/data/graphics/icon-ppt.svg) top left no-repeat;}

/*Form*/
.ce_form .formbody input {-webkit-appearance:none;} 
.ce_form .formbody button {-webkit-appearance:none;}

.ce_form {margin-top: 40px; width: 100%; margin-right: auto; margin-left: auto;}
.ce_form .formbody label {width: 100%; padding-top: 2px; margin-bottom: 5px; display: inline-block; float: left;}
.ce_form .formbody input {box-sizing: border-box; width: 100%; padding:18px 0; margin-bottom: 0px; border-left: none; border-top: none; border-right: none; border-bottom: 1px solid #000000; color: #000000; background: none;}
.ce_form .formbody textarea {box-sizing: border-box; width: 100%; padding:18px 0; border-left: none; border-top: none; border-right: none; border-bottom: 1px solid #000000; margin-bottom: 5px; color: #000000; background: none;}

.ce_form .formbody .submit {cursor: pointer; text-align: left; width: auto; border: none; font-size: 2rem; line-height: 2.6rem; padding: 15px 0 15px 65px; text-decoration: none; color: #000; background: url(../../files/data/graphics/arrow-hyperlink.svg) left bottom no-repeat; transition: color 0.3s ease, background 0.3s ease; margin-top: 20px}

.ce_form .formbody select {box-sizing: border-box; width: 100%; padding:18px 0; margin-bottom: 15px; border-left: none; border-top: none; border-right: none; border-bottom: 1px solid #000000; color: #000000; background: none;}
.ce_form .formbody fieldset {margin-bottom: 10px;}
.ce_form .formbody fieldset legend {margin-bottom: 15px;} 
.ce_form .formbody fieldset span {width:100%; float: left;}
.ce_form .formbody fieldset span input {float: left; width: 5%; height: 26px;}
.ce_form .formbody fieldset span label {padding-top: 0; width: 95%;}
.ce_form .formbody .widget-captcha {width: 100%; height: auto;}
.ce_form .formbody .widget-captcha input {margin-bottom: 5px;}
.ce_form .formbody .widget-captcha span {width: 100%; float: left;}
.ce_form .formbody .widget-captcha label span.mandatory {width: auto; float: none;}
.ce_form .formbody .widget-checkbox input {-webkit-appearance:checkbox;}
.ce_form .formbody .widget-checkbox legend span {width: auto; float: none;}
.ce_form .formbody .widget-radio input {-webkit-appearance:radio;}

.ce_form .formbody input:focus, .ce_form .formbody textarea:focus {outline: none;}

/*radio und checkbox templates */
.ce_form .formbody .checkbox_container a {color: #d67500; text-decoration: none;}
.ce_form .formbody .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
.ce_form .formbody .checkbox_container label {cursor: pointer; width: 100%; position: relative; margin-bottom: 15px; display: inline-block;}
.ce_form .formbody .checkbox_container.inline label {width: 30%;}
.ce_form .formbody .checkbox_container span {width: 90px; margin-right: 15px; font-family: 'barlowbold';}
.ce_form .formbody .checkbox_container span.lname {width: auto; padding-top: 11px;}
.ce_form .formbody .checkbox_container .checkmark {cursor: pointer; position: relative; height: 45px; width: 45px; background-color: #fff; border:1px solid #000000;}
.ce_form .formbody .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
.ce_form .formbody .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.ce_form .formbody .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
.ce_form .formbody .checkbox_container input:checked ~ .checkmark:after {display: block;}
.ce_form .formbody .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 45px; height: 45px; background: url(../../files/data/graphics/checkmark.svg) center no-repeat; background-size: 23px;}

.ce_form .formbody .radio_container a {color: #d67500; text-decoration: none;}
.ce_form .formbody .radio_container input {position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; background: #dedede;}
.ce_form .formbody .radio_container label {cursor: pointer; width: 150px; position: relative; margin-bottom: 40px; display: inline-block;}
.ce_form .formbody .radio_container span {width: 90px; margin-right: 15px;}
.ce_form .formbody .radio_container span.lname {width: auto; padding-top: 5px;}
.ce_form .formbody .radio_container .checkmark {cursor: pointer; position: relative; height: 38px; width: 38px; background-color: #fff; border:1px solid #E9EBF0; border-radius: 50px;}
.ce_form .formbody .radio_container:hover input ~ .checkmark {background-color: #fff;}
.ce_form .formbody .radio_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.ce_form .formbody .radio_container .checkmark:after {content: ""; position: absolute; display: none;}
.ce_form .formbody .radio_container input:checked ~ .checkmark:after {display: block;}
.ce_form .formbody .radio_container .checkmark:after {top: 9px; left: 9px; width: 21px; height: 21px; background: #104D73; position: absolute; border-radius: 50px;}

.ce_form .anfrage .formbody .checkbox_container.inline label {width: 100%;}

.ce_form #savings-calculator input.text {text-align: right;}
.ce_form #savings-calculator .formbody input {padding: 26px 0 10px 0;}
.ce_form #savings-calculator input.text.b16 {color: #49843f;}
.ce_form #savings-calculator .grau {background: rgb(235,237,240); background: linear-gradient(90deg, rgba(235,237,240,1) 66%, rgba(255,255,255,1) 66%); padding: 10px 20px 20px 20px; margin-left: -20px;}
.ce_form #savings-calculator input.text.lock {border-bottom: 1px solid #c5c5c5;}
.ce_form #savings-calculator .calculate {margin: 20px 0;}
.ce_form #savings-calculator .calculate button {display: inline-block; text-align: center; font-size: 2.8rem; line-height: 3.6rem; font-family: 'barlowbold'; text-decoration: none; color: #D40E1B; padding: 15px 30px 10px 30px; border: 3px solid #D40E1B; background: none; transition: background 0.3s ease, color 0.3s ease;}
.ce_form #savings-calculator .calculate button:hover {background: #D40E1B; color: #fff;}
.ce_form #savings-calculator .calculate button svg {display: none;}

/*Form Popup*/
.formpopup-kontakt {display: none; z-index: 1000; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}
.formpopup-service {display: none; z-index: 1000; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}

#header .formpopup-spacer {display: flex; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}
#header .formpopup-overlay {background: #000; opacity: 0.7; display: block; cursor: pointer; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;}
#header .formpopup-close {position: absolute; top: 10px; right: 20px; cursor: pointer;}
#header .formpopup-container {position: relative; box-sizing: border-box; width: 100%; max-width: 1400px; max-height: 90%; overflow-y: auto; z-index: 20; background: rgba(255,255,255,1); padding: 80px 110px;}
#header .formpopup-container h3 {margin-top: 0;}
#header .formpopup-container .widget-recaptcha {display: inline-block; width: 49%;}
#header .formpopup-container .widget-submit {position: relative; text-align: right; display: inline-block; width: 50%; vertical-align: top;}
#header .formpopup-container .widget-submit button {cursor: pointer; text-align: left; width: auto; border:none; font-size: 2rem; line-height: 2.6rem; padding: 15px 0 15px 65px; text-decoration: none; color: #000; background: url(../../files/data/graphics/arrow-hyperlink.svg) left bottom no-repeat; transition: color 0.3s ease, background 0.3s ease; margin-top: 0;}
#header .formpopup-container .widget-submit button:hover {color: #D40E1B; background: url(../../files/data/graphics/arrow-hyperlink-hover.svg) left bottom no-repeat;}
#header .formpopup-container .widget-explanation a {color: #000; text-decoration: none; transition: color 0.3s ease;}
#header .formpopup-container .widget-explanation a:hover {color: #D40E1B;}
#header .formpopup-container .ce_text h3 {font-size: 2.5rem; line-height: 3rem;}
#header .formpopup-container .ce_text p {font-size: 1.6rem; line-height: 2.1rem;}
#header .formpopup-container .ce_text a {color: #000; text-decoration: none; transition: color 0.3s ease;}
#header .formpopup-container .ce_text a:hover {color: #D40E1B;}
/*body.serviceseite #header .formpopup-container .widget-checkbox {display: none;}*/
body.serviceseite #header .formpopup-container .widget-textarea textarea {min-height: 305px;}
.ce_hyperlink.button-form-service a {font-size: 26px;}

/*Newsletter*/
.cr_body label {width: 100%; padding-top: 2px; margin-bottom: 2px; display: inline-block; float: left; color: #757575;}
.cr_body input {box-sizing: border-box; width: 100%; padding:5px 0; margin-bottom: 25px; border-left: none; border-top: none; border-right: none; border-bottom: 1px solid #000000; color: #000000; background: none;}
.cr_body input:focus {outline: none;}
.cr_body textarea {box-sizing: border-box; width: 100%; padding:5px 0; border-left: none; border-top: none; border-right: none; border-bottom: 1px solid #000000; margin-bottom: 5px; color: #000000; background: none;}
.cr_body .submit button {cursor: pointer; text-align: left; border:none; font-size: 2rem; line-height: 2.6rem; padding: 15px 0 15px 65px; text-decoration: none; color: #000; background: url(../../files/data/graphics/arrow-hyperlink.svg) left bottom no-repeat; transition: color 0.3s ease, background 0.3s ease;}
.cr_body .submit button:hover {color: #D40E1B; background: url(../../files/data/graphics/arrow-hyperlink-hover.svg) left bottom no-repeat;}
.cr_body select {box-sizing: border-box; width: 100%; padding:5px 0; margin-bottom: 15px; border-left: none; border-top: none; border-right: none; border-bottom: 1px solid #000000; color: #000000; background: none;}

.cr_body .editable_content > div {display: inline-block; width: 48.5%; margin-right: 3%; float: left;}
.cr_body .editable_content > div:nth-of-type(2n) {margin-right: 0;}

.cr_body .checkbox_container a {color: #d67500; text-decoration: none;}
.cr_body .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
.cr_body .checkbox_container label {cursor: pointer; color: #000; width: 100%; position: relative; margin-bottom: 15px; display: inline-block;}
.cr_body .checkbox_container.inline label {width: 30%;}
.cr_body .checkbox_container span {width: 90px; margin-right: 15px;}
.cr_body .checkbox_container span.lname {width: auto; padding-top: 11px; display: inline-block;}
.cr_body .checkbox_container .checkmark {cursor: pointer; display: inline-block; float: left; position: relative; height: 45px; width: 45px; background-color: #fff; border:1px solid #000000;}
.cr_body .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
.cr_body .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.cr_body .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
.cr_body .checkbox_container input:checked ~ .checkmark:after {display: block;}
.cr_body .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 45px; height: 45px; background: url(../../files/data/graphics/checkmark.svg) center no-repeat; background-size: 23px;}


/*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%;}

#container .ce_player .me-plugin {max-width: 100%;}
#container .ce_player .mejs-overlay {max-width: 100% !important;}

/*Google Map*/
.dlh_googlemap {width: 100% !important;}

/*Social Media Buttons*/
.socialmediabuttons {position: fixed; right: 50px; bottom: 5%;}
.socialmediabuttons .button {position: absolute; overflow: hidden; bottom: 180px; right: 0; width: 50px; height: 50px; background: #fff; margin-bottom: 8px; margin-left: 0px; transition: width 0.3s ease; box-shadow: 0 10px 10px rgba(0,0,0,0.16);}
.socialmediabuttons .button:nth-of-type(2) {bottom: 120px;}
.socialmediabuttons .button:nth-of-type(3) {bottom: 60px;}
.socialmediabuttons .button:nth-of-type(4) {bottom: 0px;}
.socialmediabuttons .button:hover {width: 200px;}
.socialmediabuttons .button .inner {width: 200px;}
.socialmediabuttons .button a {display: block; width: 100%; height: 100%;}
.socialmediabuttons .button .smbbild {display: flex; align-items: center; justify-content: center; float: left; height: 50px; width: 50px;}
.socialmediabuttons .button .smbbild img {}
.socialmediabuttons .button p {display: inline-block; float: left; margin: 0 7px; color: #000; line-height: 50px;}
.socialmediabuttons .sharebuttons > ul.theme {margin: 0;}
.socialmediabuttons .sharebuttons > ul.theme > li > a {margin: 9px 6px;}

/*Newsbanner*/
/* Newsbanner ausgeblendet */
.newsbanner {display: none;}
/*
.newsbanner {width: 50px; height: 200px; right: 0; background: #fff; position: absolute; bottom: 180px; margin-bottom: 8px; overflow: hidden; box-shadow: 0 10px 10px rgba(0,0,0,0.16); box-sizing: border-box; margin-right: 0; transition: width 0.3s ease;}
.newsbanner:hover,
.newsbanner.active {width: 600px;}
.newsbanner .inner {width: 600px;}
.newsbanner .smbtxt {display: flex; align-items: center; justify-content: center; float: left; height: 200px; width: 50px;}
.newsbanner .smbtxt strong {transform: rotate(-90deg);}
.newsbanner .mod_newslist {width: 550px; height: 200px; position: relative; display: inline-block; float: left; box-sizing: border-box; padding: 35px;}
.newsbanner .news .image_container {width: 215px; height: 130px; display: inline-block; float: left; margin-right: 15px;}
.newsbanner .news h3 {font-size: 2rem; line-height: 2.6rem; margin: 2px 0 0 0;}
.newsbanner .news h3 a {color: #000; font-size: 2rem; line-height: 2.6rem; text-decoration: none;}
.newsbanner .news .newstext {width: 215px; height: 130px; display: inline-block; float: left;}
.newsbanner .news .newstext .more {margin-bottom: 0;}
.newsbanner .news .newstext .more a {font-size: 1.5rem; color: #000; text-decoration: none;}
.newsbanner .news .bannerclose {display: inline-block; cursor: pointer; position: absolute; top: 5px; right: 5px;}
*/

.newsbannermobile {position: fixed; bottom: 0; width: 100%; height: 62px; margin-bottom: -62px; overflow: hidden; display: none; transition: margin-bottom 0.3s ease;}
.newsbannermobile .news {width: 250px; box-sizing: border-box; box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15); height: 62px; padding-left: 50px; background: #fff; margin: 0 auto; transition: margin-bottom 0.3s ease;}
.newsbannermobile .news h2 {margin: 2px 0 0 0;}
.newsbannermobile .news h2 a {color: #444444; font-size: 1.5rem; line-height: 2rem; text-decoration: none;}
.newsbannermobile .news .newstext {width: 150px; float: left;}
.newsbannermobile .news .newstext .more {margin-bottom: 0;}
.newsbannermobile .news .newstext .more a {font-size: 1.5rem; color: #444444; text-decoration: none;}
.newsbannermobile .news .bannerclose {display: inline-block; cursor: pointer; margin:10px 0 0 15px;}

/*Suche*/
#main .mod_search .widget-text {display: inline-block;}
#main .mod_search .widget-text input {border: 1px solid #5c5f60; border-radius: 3px; padding: 5px;}
#main .mod_search .widget-text input:focus {outline: none;}
#main .mod_search .widget-submit {display: inline-block;}
#main .mod_search .widget-submit button {border:none; border-radius: 3px;background: #D40E1B; color: #fff; margin-left: 10px; padding: 8px 15px 6px 15px; text-transform: uppercase; font-size: 1.8rem; line-height: 2rem;}
#main .mod_search h4 a {color: #0a0b09; text-decoration: none; transition: color 0.3s ease;}
#main .mod_search h4 a:hover {color: #D40E1B;}
#main .mod_search mark {background-color: #ffc4c5;}
#main .mod_search .url {margin-bottom: 20px;}
#main .mod_search .url a {font-size: 14px; color: #0a0b09; text-decoration: none; transition: color 0.3s ease;}
#main .mod_search .url a:hover {color: #D40E1B;}


/*  NEWS / TERMINE                                           */
/*************************************************************/
.mod_newslist .layout_latest {position: relative; width: 31.3%; margin-right: 3%; display: inline-block; float: left; margin-bottom: 40px;}
.mod_newslist .layout_latest:nth-of-type(3n) {margin-right: 0;}
.mod_newslist .layout_latest:nth-of-type(3n+1) {clear: left;}
.mod_newslist .layout_latest .info {font-size: 1.6rem; line-height: 2rem;}
.mod_newslist .layout_latest .image_container {width: 45%; margin-right: 5%; display: inline-block; float: left;}
.mod_newslist .layout_latest .image_container img {width: 100%; height: auto;}
.mod_newslist .layout_latest .newstext {width: 50%; min-height: 300px; display: inline-block; float: left;}
.mod_newslist .layout_latest .newstext h3 {font-size: 2.5rem; line-height: 3rem; color: #000; text-decoration: none; margin: 0; transition: color 0.3s ease;}
.mod_newslist .layout_latest:hover .newstext h3 {color: #D40E1B;}
.mod_newslist .layout_latest .newstext a {font-size: 2.5rem; line-height: 3rem; color: #000; text-decoration: none; margin: 0; transition: color 0.3s ease;}
.mod_newslist .layout_latest:hover .newstext a {color: #D40E1B;}
.mod_newslist .layout_latest .more {display: inline-block; box-sizing: border-box; clear: both; width: 100%; margin-top: 0px; padding: 15px 0 15px 65px; position: relative;}
.mod_newslist .layout_latest .more a {font-size: 2rem; line-height: 2.6rem; text-decoration: none; color: #000; /*background: url(../../files/data/graphics/arrow-hyperlink.svg) left bottom no-repeat;*/ transition: color 0.3s ease;}
.mod_newslist .layout_latest:hover .more a {color: #D40E1B; /*background: url(../../files/data/graphics/arrow-hyperlink-hover.svg) left bottom no-repeat;*/}
.mod_newslist .layout_latest .more svg {position: absolute; top: 6px; left: 0;}
.mod_newslist .layout_latest .more svg #Pfeil {transition: transform-origin 0.3s ease;}
.mod_newslist .layout_latest:hover .more svg #Pfeil {transform-origin: -4px -12px;}
.mod_newslist .layout_latest .more svg path {transition: stroke 0.3s ease;}
.mod_newslist .layout_latest:hover .more svg path {stroke: #D40E1B;}
.mod_newslist .layout_latest .newslink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; z-index: 10;}

.mod_newsreader .back a {font-size: 2rem; line-height: 2.6rem; padding: 15px 0 15px 65px; text-decoration: none; color: #000; background: url(../../files/data/graphics/arrow-hyperlink.svg) left bottom no-repeat; transition: color 0.3s ease, background 0.3s ease;}
.mod_newsreader .back a:hover {color: #D40E1B; background: url(../../files/data/graphics/arrow-hyperlink-hover.svg) left bottom no-repeat;}

.pagination {clear: both; display: block; width: 100%;}
.pagination p {display: inline-block; float: right;}
.pagination ul {display: inline-block; float: left;}
.pagination ul li {width: auto; margin-right: 5px; margin-bottom: 10px; display: inline-block;}
.pagination ul li a,
.pagination ul li span {border-radius: 3px; text-decoration: none; padding:5px 0 5px 0; width: 30px; display: block; text-align: center; background: #D40E1B; color: #fff; transition: color 0.3s ease, background 0.3s ease;}
.pagination ul li a:hover,
.pagination ul li span.active {background: #D40E1B; color: #ECECEC;}
.pagination ul li.next a,
.pagination ul li.last a,
.pagination ul li.first a,
.pagination ul li.previous a {width: auto; padding: 5px 7px 5px 7px;}

/*  VERTRIEBSPARTNER                                         */
/*************************************************************/
.ctlg_vertrieb {border-top: 1px solid #9B9C9E; position: relative; display: inline-block; float: left; margin-bottom: 50px;}
.mod_catalogUniversalView .ctlg_vertrieb {width: 22.7%; margin-right: 3%;}
.mod_catalogUniversalView .ctlg_vertrieb:nth-of-type(4n) {margin-right: 0;}
.mod_catalogUniversalView .ctlg_vertrieb:nth-of-type(4n+1) {clear: left;}

.ctlg_vertrieb .verkaufsbereich {margin-top: 20px;}
.ctlg_vertrieb .verkaufsbereich .trenner:last-of-type {display: none;}
.ctlg_vertrieb h3 {margin-top: 25px; min-height: 85px; margin-bottom: 25px;}
.ctlg_vertrieb .vpinhalt {min-height: 230px;}
.ctlg_vertrieb .box {display: inline-block; width: 100%; margin-bottom: 6px;}
.ctlg_vertrieb .links {display: inline-block; width: 30%; vertical-align: top;}
.ctlg_vertrieb .rechts {display: inline-block; width: 70%; text-align: left;}
.ctlg_vertrieb .rechts a {color: #000000; text-decoration: none;}
.ctlg_vertrieb .map_link {margin-top: 30px;}

.vertriebspartnerfilter .ctlg_form_field .checkbox_container {width: 47.5%; margin-right: 5%; display: inline-block; float: left; box-sizing: border-box; background: #F5F7F9; padding: 9px;}
.vertriebspartnerfilter .ctlg_form_field .checkbox_container.Injection {margin-right: 0;}
.vertriebspartnerfilter .ctlg_form_field .checkbox_container.Spritzguss {margin-right: 0;}
body .vertriebspartnerfilter .checkbox_container {line-height: 0; margin-bottom: 7px; font-size: 2.5rem;}
.vertriebspartnerfilter .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
.vertriebspartnerfilter .checkbox_container label {cursor: pointer; width: 100%; position: relative; margin-bottom: 0px; display: inline-block;}
.vertriebspartnerfilter .checkbox_container.inline label {width: 30%;}
.vertriebspartnerfilter .checkbox_container span {width: 90px; margin-right: 15px; font-family: 'barlowregular';}
.vertriebspartnerfilter .checkbox_container span.lname {width: auto; padding-top: 6px; display: inline-block; float: left; line-height: 2rem;}
.vertriebspartnerfilter .checkbox_container .checkmark {cursor: pointer; display: inline-block; float: left; position: relative; height: 30px; width: 30px; background-color: #fff; border:1px solid #000000;}
.vertriebspartnerfilter .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
.vertriebspartnerfilter .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.vertriebspartnerfilter .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
.vertriebspartnerfilter .checkbox_container input:checked ~ .checkmark:after {display: block;}
.vertriebspartnerfilter .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 30px; height: 30px; background: url(../../files/data/graphics/checkmark.svg) center no-repeat; background-size: 17px;}

body .vertriebspartnerfilter .reset {padding-bottom: 0; margin-bottom: 0; border-bottom: none;}
body .vertriebspartnerfilter .reset a {font-size: 2.5rem; line-height: 3rem; height: 50px; background: #F5F7F9 url(../../files/data/graphics/formpopup-close.svg) center left 15px no-repeat; padding: 9px 9px 9px 50px; box-sizing: border-box; display: block; width: 100%;}
body .vertriebspartnerfilter .reset a:hover {font-family: 'barlowregular';}

/*  ANWENDUNGEN                                              */
/*************************************************************/
.ce_catalogFilterForm {margin-bottom: 30px;}
.ce_catalogFilterForm form {display: inline-block; float: left; width: 65.6%; margin-right: 3%;}
.ce_catalogFilterForm .reset {display: inline-block; float: left; width: 31.3%; border-bottom: 1px solid #000; border-left: none; border-top: none; border-right: none; font-size: 3.6rem; line-height: 4.2rem; padding: 0 0 10px 0;}
.ce_catalogFilterForm .reset a {color: #000; text-decoration: none;}
.ce_catalogFilterForm .reset a:hover {font-family: 'barlowmedium';}
.ce_catalogFilterForm form .select {display: inline-block; float: left; width: 47.7%; margin-right: 4.6%;}
.ce_catalogFilterForm form .select:last-of-type {margin-right: 0;}
.ce_catalogFilterForm form .select .custom-select-container.is-open .custom-select-panel {max-height: 360px;}
.ce_catalogFilterForm form .select .custom-select-opener {width: 100%; border-bottom: 1px solid #000; border-left: none; border-top: none; border-right: none; font-size: 3.6rem; line-height: 4.2rem; padding: 0 0 10px 0; background: #fff url(../../files/data/graphics/arrow-down.svg) center right no-repeat;}
.ce_catalogFilterForm form .select .custom-select-opener:hover {font-family: 'barlowmedium';}
.ce_catalogFilterForm form .select .custom-select-panel {z-index: 20; background: #fff;}
.ce_catalogFilterForm form .select .custom-select-option {border-bottom: 1px solid #000; border-left: none; border-top: none; border-right: none; font-size: 3.6rem; line-height: 4.2rem; padding: 10px 0;}
.ce_catalogFilterForm form .select .custom-select-option.has-focus {background: #fff; font-family: 'barlowmedium';}
.ce_catalogFilterForm form .select .is-open .custom-select-opener {font-family: 'barlowmedium';}
.ce_catalogFilterForm form .select .custom-select-option.is-selected {font-family: 'barlowmedium';}
.ce_catalogFilterForm form .select .custom-select-option.is-selected::before {display: none;}

body .extrusionsfilter .reset a {padding-right: 30px; background: url(../../files/data/graphics/formpopup-close.svg) center right no-repeat;}
body .extrusionsfilter .anwendungen_filter_container {width: 31.3%;}
body .extrusionsfilter .anwendungen_filter_container .checkbox_container {line-height: 0; padding: 9px; margin-bottom: 7px; font-size: 2.5rem;}
body .extrusionsfilter .anwendungen_filter_container .Extrusion {display: none;}
body .extrusionsfilter .anwendungen_filter_container .Estrusione {display: none;}
body .extrusionsfilter .anwendungen_filter_container .Extrusión {display: none;}

body .extrusionsfilter .extrusion_filter_container {padding: 9px; width: 65.7%; box-sizing: border-box;}
body .extrusionsfilter .extrusion_filter_container .checkbox_container {margin-left: 0; margin-top: 0; margin-bottom: 19px; font-size: 2.5rem;}
body .extrusionsfilter .extrusion_filter_container .checkbox_container.klein {margin-left: 4%; width: 29%; font-size: 2rem; float: left;}
.extrusionsfilter .checkbox_container.klein .checkmark {width: 24px; height: 24px;}
.extrusionsfilter .checkbox_container.klein .checkmark:after {width: 24px; height: 24px; background-size: 14px;}
.extrusionsfilter .checkbox_container.klein span.lname {padding-top: 3px;}

.extrusionsfilter .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
.extrusionsfilter .checkbox_container label {cursor: pointer; width: 100%; position: relative; margin-bottom: 0px; display: inline-block;}
.extrusionsfilter .checkbox_container.inline label {width: 30%;}
.extrusionsfilter .checkbox_container span {width: 90px; margin-right: 15px; font-family: 'barlowregular';}
.extrusionsfilter .checkbox_container span.lname {width: auto; padding-top: 6px; display: inline-block; float: left; line-height: 2rem;}
.extrusionsfilter .checkbox_container .checkmark {cursor: pointer; display: inline-block; float: left; position: relative; height: 30px; width: 30px; background-color: #fff; border:1px solid #000000;}
.extrusionsfilter .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
.extrusionsfilter .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.extrusionsfilter .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
.extrusionsfilter .checkbox_container input:checked ~ .checkmark:after {display: block;}
.extrusionsfilter .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 30px; height: 30px; background: url(../../files/data/graphics/checkmark.svg) center no-repeat; background-size: 17px;}


.mod_catalogUniversalView:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.ctlg_teaser {border-top: 1px solid #9B9C9E; position: relative; width: 100%; margin-right: 0%; display: inline-block; float: left; margin-bottom: 50px;}
.mod_catalogUniversalView .ctlg_teaser {width: 31.3%; margin-right: 3%;}
.mod_catalogUniversalView .ctlg_teaser:nth-of-type(3n) {margin-right: 0;}
.mod_catalogUniversalView .ctlg_teaser:nth-of-type(3n+1) {clear: left;}
.ctlg_teaser .anwendung {font-size: 1.6rem; line-height: 2rem; padding-top: 25px;}
.ctlg_teaser .anwendung .trenner:last-of-type {display: none;}
.ctlg_teaser h3 {margin-top: 20px; min-height: 90px;color: #000; text-decoration: none; hyphens: auto; transition: color 0.3s ease;}
.ctlg_teaser:hover h3 {color: #D40E1B;}
.ctlg_teaser h3 a {color: #000; text-decoration: none;}
.ctlg_teaser .beschreibung {min-height: 100px;}
.ctlg_teaser img {transition: opacity 0.3s ease; width: 100%;}
.ctlg_teaser:hover img {opacity: 0.7;}
.ctlg_teaser .more {position: relative; display: block; clear: both; width: 100%; margin-top: 20px;}
.ctlg_teaser .more a {position: relative; font-size: 2rem; line-height: 2.6rem; padding: 15px 0 15px 65px; text-decoration: none; color: #000; transition: color 0.3s ease;}
.ctlg_teaser:hover .more a {color: #D40E1B;}
.ctlg_teaser .more a svg {position: absolute; top: 6px; left: 0;}
.ctlg_teaser .more a svg #Pfeil {transition: transform-origin 0.3s ease;}
.ctlg_teaser:hover .more a svg #Pfeil {transform-origin: -4px -12px;}
.ctlg_teaser .more a svg path {transition: stroke 0.3s ease;}
.ctlg_teaser:hover .more a svg path {stroke: #D40E1B;}
.ctlg_teaser .boxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10;}

.mod_catalogUniversalView.flexliste {display: flex; flex-wrap: wrap; width: 103%; margin-left: -1.5%;}
.mod_catalogUniversalView.flexliste .ctlg_teaser {width: 30.333%; margin-left: 1.5%; margin-right: 1.5%;}

.mod_catalogMasterView h1 {margin-top: 0;}

/*  FOOTER                                                   */
/*************************************************************/
#footer {height: auto; display: block; clear: both; z-index: 5; position: fixed; bottom: 0; left: 0; width: 100%; background: rgb(195,200,206);
background: -moz-linear-gradient(top,  rgba(195,200,206,1) 0%, rgba(235,237,240,1) 28%, rgba(235,237,240,1) 100%);
background: -webkit-linear-gradient(top,  rgba(195,200,206,1) 0%,rgba(235,237,240,1) 28%,rgba(235,237,240,1) 100%);
background: linear-gradient(to bottom,  rgba(195,200,206,1) 0%,rgba(235,237,240,1) 28%,rgba(235,237,240,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3c8ce', endColorstr='#ebedf0',GradientType=0 );}
#footer .inside {width: 94%; padding: 80px 3%; max-width: 1750px; margin: 0 auto;}
#footer h3 {font-size: 2.5rem; line-height: 3rem;}
#footer p {font-size: 1.6rem; line-height: 2.1rem;}
#footer a {color: #000; text-decoration: none; transition: color 0.3s ease;}
#footer a:hover {color: #D40E1B;}
#footer .footerbot {color: #9B9C9E;}
#footer .footerbot a {color: #9B9C9E; transition: color 0.3s ease;}
#footer .footerbot a:hover {color: #D40E1B;}
#footer .footerbot .footersocials img {margin-left: 10px;}
#footer .footerbot .footersocials p {margin-top: 15px;}
#footer .footerbot p {margin-top: 30px;}
#footer .ce_hyperlink.rechts {margin-top: 0;}

/*  GREEN SOLUTIONS	#49843f                                  */
/*************************************************************/
body.green #header {border-top: 25px solid #49843f; transition: height 0.3s ease, border-top 0.3s ease;}
body.green #header.up {border-top: 3px solid #49843f;}
body.green .slider .slick-container ul li.slick-active, body.green .slider .slick-container ul li:hover {background: #49843f;}
body.green h1, body.green h2 {color: #49843f;}
body.green .ce_text a {color: #49843f;}
body.green .ce_hyperlink.rot a {color: #49843f; border: 3px solid #49843f; background: none; transition: background 0.3s ease, color 0.3s ease;}
body.green .ce_hyperlink.rot a:hover {color: #fff; background: #49843f;}
body.green .ce_hyperlink a:hover {color: #49843f;}
body.green .ce_hyperlink a:hover svg path {stroke: #49843f;}
body.green .salesbox .phone:hover {color: #49843f;}
body.green .salesbox .mail:hover {color: #49843f;}
body.green .salesbox .form:hover {color: #49843f;}
body.green .salesbox .phone:hover svg path {stroke: #49843f;}
body.green .salesbox .mail:hover svg #circle {stroke: #49843f;}
body.green .salesbox .mail:hover svg g {fill: #49843f;}
body.green .salesbox .form:hover svg #pfader {stroke: #49843f;}
body.green .salesbox .form:hover svg #Form {fill: #49843f;}
body.green #header .formpopup-container .widget-submit button:hover {color: #49843f; background: url(../../files/data/graphics/arrow-hyperlink-hover-green.svg) left bottom no-repeat;}
body.green #header .formpopup-container .widget-explanation a:hover {color: #49843f;}
body.green .cr_body .submit button:hover {color: #49843f; background: url(../../files/data/graphics/arrow-hyperlink-hover-green.svg) left bottom no-repeat;}
body.green .mod_newslist .layout_latest:hover .newstext h3 {color: #49843f;}
body.green .mod_newslist .layout_latest:hover .newstext a {color: #49843f;}
body.green .mod_newslist .layout_latest:hover .more a {color: #49843f; background: url(../../files/data/graphics/arrow-hyperlink-hover-green.svg) left bottom no-repeat;}
body.green .pagination ul li span {background: #49843f; transition: color 0.3s ease, background 0.3s ease;}
body.green .pagination ul li span.active {background: #49843f;}
body.green .ctlg_teaser:hover h3 {color: #49843f;}
body.green .ctlg_teaser:hover .more a {color: #49843f; background: url(../../files/data/graphics/arrow-hyperlink-hover-green.svg) left bottom no-repeat;}
body.green .linkboxen .box h2:after {background: url(../../files/data/graphics/arrow-green-right.svg) center no-repeat; transition: background 0.3s ease;}
body.green .linkboxen .box:hover h2:after {background: url(../../files/data/graphics/arrow-green-right-hover.svg) center no-repeat;}

/*  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: 2000px) {
	.socialmediabuttons {right: 30px;}
	#footer .inside {width: calc(94% - 60px); padding: 80px calc(3% + 60px) 80px 3%;}
}

@media screen and (max-width: 1580px) {
    #header .logo {margin-right: 20px;}
    #header .navigation ul li {margin-right: 5px;}
    #header .mod_changelanguage {right: 160px;}
    #header .inside .suchecontainer {right: 230px;}
    .mod_article.slider .ce_text h2 {font-size: 4vw; line-height: 3.8vw; margin: 0 0 1.3vw 0;}
    .mod_article.slider .ce_text p, .mod_article.slider .ce_text h3 {font-size: 2.3vw; line-height: 2.7vw;}
    body .extrusionsfilter .extrusion_filter_container .checkbox_container.klein {width: 46%;}
    body .extrusionsfilter .anwendungen_filter_container .checkbox_container {font-size: 2.2rem;}
    body .extrusionsfilter .extrusion_filter_container .checkbox_container {font-size: 2.2rem;}
    #header .navigation ul li.themen.normalsub {margin-right: 20px;}
}

@media screen and (max-width: 1400px) {
	#header .navigation ul li a {font-size: 1.6rem;}
	#header .navigation ul li .mm_dropdown a {font-size: 2.4rem;}
	#header .headerkontakt a {font-size: 1.6rem;}
	#header .mod_changelanguage ul li.active a {font-size: 1.6rem;}
	#header .mod_changelanguage {right: 130px;}
	#header .inside .suchecontainer {right: 190px;}
	.mod_newslist .layout_latest .image_container {display: block; width: 100%; margin: 0 0 20px 0;}
	.mod_newslist .layout_latest .newstext {display: block; width: 100%; min-height: 250px;}
	#footer {position: relative;}
	#container {margin-bottom: 0;}
	.mod_catalogUniversalView .ctlg_vertrieb {width: 48.5%; margin-right: 3%;}
	.mod_catalogUniversalView .ctlg_vertrieb:nth-of-type(2n) {margin-right: 0;}
	.mod_catalogUniversalView .ctlg_vertrieb:nth-of-type(2n+1) {clear: left;}
	body .extrusionsfilter .anwendungen_filter_container .checkbox_container {font-size: 1.7rem;}
	.slider .slick-container ul li {width: 40px; margin-bottom: 10px;}
	.slider .slick-container ul {bottom: 15px;}
}

@media screen and (max-width: 1200px) {
	#header .navigation {display: none;}
	#header .headerkontakt {display: none;}
	#header .mod_changelanguage {display: none;}
	#header .inside .suchecontainer {display: none;}
	.nuunnavbutton {display: block;}
	#nuunnav {display: block;}
	#nuunnav .logo {margin-top: 30px; margin-bottom: 30px;}
	#nuunnav .ce_text {font-size:1.8rem; line-height: 2.8rem; color: #484848; clear: both; margin-top: 0px;}
	#nuunnav .ce_text a {color: #484848; text-decoration: none; transition: color 0.3s ease;}
	#nuunnav .ce_text a:hover {color: #D40E1B;}
	#nuunnav .footersocials img {margin-right: 10px;}
	#nuunnav .mod_changelanguage li {display: inline-block; margin-right: 7px; padding-right: 8px; border-right: 1px solid #484848; float: left;}
	#nuunnav .mod_changelanguage li:last-of-type {border-right: 0;}
	#nuunnav .mod_changelanguage ul.level_1 > li > a {font-size: 1.8rem; line-height: 1.8rem; padding: 0;}

	#header {height: 77px; border-top: 3px solid #D40E1B;}
	body.green #header {border-top: 3px solid #49843f;}
	#header .logo {margin-top: 18px;}
	#container {padding-top: 77px;}
	h1, h2 {font-size: 4rem; line-height: 4.8rem;}
	h3 {font-size: 3rem; line-height: 3.6rem;}
	.counter .box h3 {font-size: 4rem; line-height: 4.8rem;}
	.counter .box p {font-size: 3rem; line-height: 3.6rem;}
	.mod_catalogUniversalView.flexliste .ctlg_teaser {width: 47%;}
}

@media screen and (max-width: 1100px) {
	#footer .footertop .col-xl-4 h3 {text-align: left !important;}
	#footer .footertop .col-xl-4 .rechts {text-align: left;}
	#footer .footerbot {--grid__gutter: 0rem;}
	#footer .footerbot p {margin: 0;}
	.dlh_googlemap {height: 25vw;}
	body .extrusionsfilter .extrusion_filter_container {width: 100%; margin-right: 0; margin-bottom: 20px;}
	body .extrusionsfilter .anwendungen_filter_container {width: 100%;}
	body .extrusionsfilter .anwendungen_filter_container .checkbox_container {font-size: 2.2rem;}
	.mod_article.slider .inside .topslider, .mod_article.slider .inside .topslider .slick-container {height: auto; background: #fff;}
	.slider .slick-container .slick-list {height: auto;}
	#container .mod_article.slider .ce_text {position: relative; height: auto; width: 100%; padding: 20px 3%; display: block; background: #fff;}
	#container .mod_article.slider .topslider.halb .ce_text {position: relative; height: auto; width: 100%; padding: 20px 3%; display: block; background: #fff;}
	.slider .slick-container .slick-dots {display: none !important;}
	#main .topslider.halb .slick-container .ce_image {width: 100%;}
	#main .topslider .slick-container .ce_image {overflow: hidden;}
	#main .topslider .slick-container .ce_image.top img {min-height: 100%; object-fit: initial; height: auto;}
	#main .topslider.halb .slick-container .ce_image.sliderlogo {position: relative; top: initial; right: initial; margin-bottom: 20px;}
}

@media screen and (max-width: 1000px) {
    .linkboxen .box {width: 100%; margin-right: 0;}
    #main .counter .box {width: 100%; max-width: 400px; margin: 0 auto 50px auto; display: block; float: none;}
    .mod_catalogUniversalView .ctlg_teaser {width: 48.5%;}
	.mod_catalogUniversalView .ctlg_teaser:nth-of-type(3n) {margin-right: 3%;}
	.mod_catalogUniversalView .ctlg_teaser:nth-of-type(3n+1) {clear: none;}
	.mod_catalogUniversalView .ctlg_teaser:nth-of-type(2n) {margin-right: 0;}
	.mod_catalogUniversalView .ctlg_teaser:nth-of-type(2n+1) {clear: left;}
	.vertriebspartnerfilter .ctlg_form_field .checkbox_container {width: 100%; margin-left: 0; margin-right: 0;}
	.vertriebspartnerfilter.ce_catalogFilterForm form {width: 100%; margin-left: 0; margin-right: 0; margin-bottom: 0;}
	body .vertriebspartnerfilter .reset {width: 100%; margin-left: 0; margin-right: 0;}
}

@media screen and (max-width: 940px) {
	.ce_form #savings-calculator .grau {background: rgb(235,237,240); box-sizing: border-box; width: 106%; padding: 10px 3% 20px 3%; margin-left: -3%;}
}

@media screen and (max-width: 850px) {
	
	h1, h2 {font-size: 3.3rem; line-height: 3.8rem;}
	.mod_article.slider .ce_text h2 {font-size: 3rem; line-height: 3.4rem;}
	.lead p {font-size: 3rem; line-height: 3.4rem;}
	.mod_article.slider .ce_text p, .mod_article.slider .ce_text h3 {font-size: 1.8rem; line-height: 2.2rem;}
	
	.mod_article .inside {padding: 45px 3%;}
	.divider {margin:60px auto;}
	#header .formpopup-container {padding: 60px 3%;}
}

@media screen and (max-width: 750px) {
    #container .rs-column.-large-col-2-1 {width: 100%; margin-right: 0; margin-top: 0;}
    #container .rs-column.-large-col-3-1 {width: 100%; margin-right: 0; margin-top: 0;}
    #container .rs-column.-large-col-4-1 {width: 100%; margin-right: 0; margin-top: 0;}
    .schmal75 {width: 100% !important; margin: 0 auto;}
    .schmal50 {width: 100% !important; margin: 0 auto;}
    #main .mod_newslist .layout_latest {display: block; width: 100%; margin: 0 auto 40px auto; max-width: 500px; float: none;}
    .mod_catalogUniversalView .ctlg_teaser {width: 100%; margin-right: 0;}
    .mod_catalogUniversalView .ctlg_vertrieb {width: 100%; margin-right: 0;}
    .ctlg_vertrieb .vpinhalt {min-height: initial;}
    body .extrusionsfilter .extrusion_filter_container .checkbox_container.klein {width: 96%;}
    body .extrusionsfilter .extrusion_filter_container .checkbox_container {margin-bottom: 10px;}
    .mod_catalogUniversalView.flexliste {width: 100%; margin-left: 0; display: block;}
    .mod_catalogUniversalView.flexliste .ctlg_teaser {width: 100%; margin-left: 0; margin-right: 0;}
    .cr_body .editable_content > div {width: 100%; margin-right: 0;}
    .mod_newslist .layout_latest .newstext {min-height: initial;}
    #header .formpopup-container .widget-recaptcha {display: block; width: 100%;}
	#header .formpopup-container .widget-submit {display: block; width: 100%; text-align: left; margin-bottom: 40px;}
}

@media screen and (max-width: 600px) {
	#container .ce_text .image_container.float_left {width: 100%; float: left; margin-right: 0%;}
	#container .ce_text .image_container.float_right {width: 100%; float: right; margin-left: 0%;}
}

/*Zoom 125%*/
@media (-webkit-device-pixel-ratio: 1.25) {
	:root {zoom: 0.8;}
	.mod_article.slider .inside .topslider,
	.mod_article.slider .inside .topslider .slick-container {height: 42vw;}
	#main .slider .slick-container .ce_image,
	#main .slider .slick-container .ce_image .image_container {height: 42vw;}
	.slider .slick-container .slick-list {height: 42vw;}
}

/*Zoom 150%*/
@media (-webkit-device-pixel-ratio: 1.5){
	:root {	zoom: 0.66;}
	#header .mod_changelanguage {right: 230px;}
	#header .inside .suchecontainer {right: 310px;}
	.mod_article.slider .inside .topslider,
	.mod_article.slider .inside .topslider .slick-container {height: 48vw;}
	#main .slider .slick-container .ce_image,
	#main .slider .slick-container .ce_image .image_container {height: 48vw;}
	.slider .slick-container .slick-list {height: 48vw;}
}
@media (-webkit-device-pixel-ratio: 1.5) and (max-width: 1550px){
	#header .mod_changelanguage {right: 190px;}
    #header .inside .suchecontainer {right: 260px;}
}
@media (-webkit-device-pixel-ratio: 1.5) and (max-width: 1370px){
	#header .mod_changelanguage {right: 160px;}
	#header .inside .suchecontainer {right: 230px;}
}

/*  CONTAO-COOKIBAR                                          */
/*************************************************************/
.contao-cookiebar .cc-inner {font-size:1.5rem;}
.contao-cookiebar .cc-cookies .cc-cookie p {font-size:1.3rem;}
.contao-cookiebar a {font-size:1.3rem; color:#D40E1B}
.contao-cookiebar input + label:before {top: 3px;}
.contao-cookiebar input + label:after {top: 7px;}
.contao-cookiebar .cc-group .cc-detail-btn {font-size:1.5rem;}
.contao-cookiebar .cc-cookies > p  {font-size:1.5rem;}


/*  FONTS                                                    */
/*************************************************************/

@font-face {
    font-family: 'barlowbold';
    src: url('../../files/data/style/Fonts/barlow-bold.woff2') format('woff2'),
         url('../../files/data/style/Fonts/barlow-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'barlowlight';
    src: url('../../files/data/style/Fonts/barlow-light.woff2') format('woff2'),
         url('../../files/data/style/Fonts/barlow-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'barlowmedium';
    src: url('../../files/data/style/Fonts/barlow-medium.woff2') format('woff2'),
         url('../../files/data/style/Fonts/barlow-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'barlowregular';
    src: url('../../files/data/style/Fonts/barlow-regular.woff2') format('woff2'),
         url('../../files/data/style/Fonts/barlow-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'barlowsemibold';
    src: url('../../files/data/style/Fonts/barlow-semibold.woff2') format('woff2'),
         url('../../files/data/style/Fonts/barlow-semibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'barlowthin';
    src: url('../../files/data/style/Fonts/barlow-thin.woff2') format('woff2'),
         url('../../files/data/style/Fonts/barlow-thin.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;}
