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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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}
.lazyload,.lazyloading,.lazyloaded{opacity:0;will-change:opacity;transition:all 0.3s ease-in-out}.lazyloaded{opacity:1}.lazyload.thumb,.lazyloading.thumb,.lazyloaded.thumb{opacity:1}.intrinsic-ratio-wrapper{display:inline-block;max-width:100%;width:100%}.intrinsic-ratio{position:relative;height:0;max-width:100%}.intrinsic-ratio>img,.intrinsic-ratio>picture{position:absolute;top:0;left:0;width:100%}.intrinsic-ratio>.thumb{height:100%}
.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://www.twelveskip.com/resources/icons/1091/boxxed-flat-social-media-icons */

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

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

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

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

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

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

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

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

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

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

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

/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu panels CSS
*/
.mm-menu.mm-horizontal > .mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease; }

.mm-menu .mm-hidden {
  display: none; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu,
.mm-menu > .mm-panel {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0; }

.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0; }
  .mm-menu > .mm-panel {
    background: inherit;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 20px;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0); }
    .mm-menu > .mm-panel.mm-opened {
      -webkit-transform: translate(0%, 0);
      -moz-transform: translate(0%, 0);
      -ms-transform: translate(0%, 0);
      -o-transform: translate(0%, 0);
      transform: translate(0%, 0); }
    .mm-menu > .mm-panel.mm-subopened {
      -webkit-transform: translate(-30%, 0);
      -moz-transform: translate(-30%, 0);
      -ms-transform: translate(-30%, 0);
      -o-transform: translate(-30%, 0);
      transform: translate(-30%, 0); }
    .mm-menu > .mm-panel.mm-highest {
      z-index: 1; }
  .mm-menu .mm-list {
    padding: 20px 0; }
  .mm-menu > .mm-list {
    padding-bottom: 0; }
    .mm-menu > .mm-list:after {
      content: '';
      display: block;
      height: 40px; }

.mm-panel > .mm-list {
  margin-left: -20px;
  margin-right: -20px; }
  .mm-panel > .mm-list:first-child {
    padding-top: 0; }

.mm-list,
.mm-list > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-list {
  font: inherit;
  font-size: 14px; }
  .mm-list a,
  .mm-list a:hover {
    text-decoration: none; }
  .mm-list > li {
    position: relative; }
    .mm-list > li > a,
    .mm-list > li > span {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      color: inherit;
      line-height: 20px;
      display: block;
      padding: 10px 10px 10px 20px;
      margin: 0; }
  .mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
    content: '';
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0; }
  .mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
    width: auto;
    margin-left: 20px;
    position: relative;
    left: auto; }
  .mm-list a.mm-subopen {
    background: rgba(3, 2, 1, 0);
    width: 40px;
    height: 100%;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2; }
    .mm-list a.mm-subopen:before {
      content: '';
      border-left-width: 1px;
      border-left-style: solid;
      display: block;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }
    .mm-list a.mm-subopen.mm-fullsubopen {
      width: 100%; }
      .mm-list a.mm-subopen.mm-fullsubopen:before {
        border-left: none; }
    .mm-list a.mm-subopen + a,
    .mm-list a.mm-subopen + span {
      padding-right: 5px;
      margin-right: 40px; }
  .mm-list > li.mm-selected > a.mm-subopen {
    background: transparent; }
  .mm-list > li.mm-selected > a.mm-fullsubopen + a,
  .mm-list > li.mm-selected > a.mm-fullsubopen + span {
    padding-right: 45px;
    margin-right: 0; }
  .mm-list a.mm-subclose {
    text-indent: 20px;
    padding-top: 30px;
    margin-top: -20px; }
  .mm-list > li.mm-label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 10px;
    text-transform: uppercase;
    text-indent: 20px;
    line-height: 25px;
    padding-right: 5px; }
  .mm-list > li.mm-spacer {
    padding-top: 40px; }
    .mm-list > li.mm-spacer.mm-label {
      padding-top: 25px; }
  .mm-list a.mm-subopen:after,
  .mm-list a.mm-subclose:before {
    content: '';
    border: 2px solid transparent;
    display: inline-block;
    width: 7px;
    height: 7px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-bottom: -5px;
    position: absolute;
    bottom: 50%; }
  .mm-list a.mm-subopen:after {
    border-top: none;
    border-left: none;
    right: 18px; }
  .mm-list a.mm-subclose:before {
    border-right: none;
    border-bottom: none;
    margin-bottom: -15px;
    left: 22px; }

.mm-menu.mm-vertical .mm-list .mm-panel {
  display: none;
  padding: 10px 0 10px 10px; }
  .mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
    border-color: transparent; }
.mm-menu.mm-vertical .mm-list li.mm-opened > .mm-panel {
  display: block; }
.mm-menu.mm-vertical .mm-list > li > a.mm-subopen {
  height: 40px; }
  .mm-menu.mm-vertical .mm-list > li > a.mm-subopen:after {
    top: 16px;
    bottom: auto; }
.mm-menu.mm-vertical .mm-list > li.mm-opened > a.mm-subopen:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }
.mm-menu.mm-vertical .mm-list > li.mm-label > a.mm-subopen {
  height: 25px; }

html.mm-opened .mm-page {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu {
  background: #333333;
  color: rgba(255, 255, 255, 0.6); }
  .mm-menu .mm-list > li:after {
    border-color: rgba(0, 0, 0, 0.15); }
  .mm-menu .mm-list > li > a.mm-subclose {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.3); }
  .mm-menu .mm-list > li > a.mm-subopen:after, .mm-menu .mm-list > li > a.mm-subclose:before {
    border-color: rgba(255, 255, 255, 0.3); }
  .mm-menu .mm-list > li > a.mm-subopen:before {
    border-color: rgba(0, 0, 0, 0.15); }
  .mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen),
  .mm-menu .mm-list > li.mm-selected > span {
    background: rgba(0, 0, 0, 0.1); }
  .mm-menu .mm-list > li.mm-label {
    background: rgba(255, 255, 255, 0.05); }
  .mm-menu.mm-vertical .mm-list li.mm-opened > a.mm-subopen,
  .mm-menu.mm-vertical .mm-list li.mm-opened > ul {
    background: rgba(255, 255, 255, 0.05); }

/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease; }

html.mm-opened {
  overflow: hidden;
  position: relative; }
  html.mm-opened body {
    overflow: hidden; }

html.mm-background .mm-page {
  background: inherit; }

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999; }

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block; }

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed; }
.mm-menu.mm-current {
  display: block; }

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0); }

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0); } }

/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box; }

.mm-list > li.mm-search {
  padding: 10px;
  margin-top: -20px; }
.mm-list > li.mm-subtitle + li.mm-search {
  margin-top: 0; }

div.mm-panel > div.mm-search {
  padding: 0 0 10px 0; }

.mm-menu.mm-hasheader .mm-list > li.mm-search {
  margin-top: 0; }

.mm-menu > .mm-search {
  background: inherit;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; }

.mm-search {
  padding: 10px; }
  .mm-search input {
    border: none;
    border-radius: 30px;
    font: inherit;
    font-size: 14px;
    line-height: 30px;
    outline: none;
    display: block;
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 0 10px; }
  .mm-search input::-ms-clear {
    display: none; }

.mm-menu .mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 60px 0; }
  .mm-menu .mm-noresultsmsg:after {
    border: none !important; }

.mm-noresults .mm-noresultsmsg {
  display: block; }

.mm-menu li.mm-nosubresults > a.mm-subopen {
  display: none; }
  .mm-menu li.mm-nosubresults > a.mm-subopen + a,
  .mm-menu li.mm-nosubresults > a.mm-subopen + span {
    padding-right: 10px; }
.mm-menu.mm-hassearch > .mm-panel {
  padding-top: 70px; }
  .mm-menu.mm-hassearch > .mm-panel > .mm-list:first-child {
    margin-top: -20px; }
.mm-menu.mm-hasheader > .mm-panel > div.mm-search:first-child {
  margin-top: -10px; }
  .mm-menu.mm-hasheader > .mm-panel > div.mm-search:first-child + .mm-list {
    padding-top: 0; }

.mm-menu .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6); }
.mm-menu .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.3); }

#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}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
@charset "UTF-8";
/* CSS Document */

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/files/Ahrens/fonts/open-sans-v29-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/Ahrens/fonts/open-sans-v29-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/Ahrens/fonts/open-sans-v29-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/Ahrens/fonts/open-sans-v29-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/files/Ahrens/fonts/open-sans-v29-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/Ahrens/fonts/open-sans-v29-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/files/Ahrens/fonts/open-sans-v29-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/Ahrens/fonts/open-sans-v29-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/Ahrens/fonts/open-sans-v29-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/Ahrens/fonts/open-sans-v29-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/files/Ahrens/fonts/open-sans-v29-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/Ahrens/fonts/open-sans-v29-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('/files/Ahrens/fonts/open-sans-v29-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/Ahrens/fonts/open-sans-v29-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/Ahrens/fonts/open-sans-v29-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/Ahrens/fonts/open-sans-v29-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('/files/Ahrens/fonts/open-sans-v29-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/Ahrens/fonts/open-sans-v29-latin-italic.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* titillium-web-regular - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  src: url('/files/Ahrens/fonts/titillium-web-v15-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/Ahrens/fonts/titillium-web-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-regular.svg#TitilliumWeb') format('svg'); /* Legacy iOS */
}
/* titillium-web-600 - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  src: url('/files/Ahrens/fonts/titillium-web-v15-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/Ahrens/fonts/titillium-web-v15-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-600.woff') format('woff'), /* Modern Browsers */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-600.svg#TitilliumWeb') format('svg'); /* Legacy iOS */
}
/* titillium-web-700 - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  src: url('/files/Ahrens/fonts/titillium-web-v15-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/Ahrens/fonts/titillium-web-v15-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/Ahrens/fonts/titillium-web-v15-latin-700.svg#TitilliumWeb') format('svg'); /* Legacy iOS */
}

* {
    outline: 0 !important;
    box-sizing: border-box
}

body,
html {
    font-family: "Open Sans", Arial, sans-serif !important;
    font-size: 16px !important;
    margin: 0;
    padding: 0;
    border: 0;
    color: #303030;
    line-height: 1.6em;
    background: #f3f3f3
}

a {
    color: #cd1719;
    text-decoration: none
}

a:focus,
a:hover {
    color: #cd1719;
    text-decoration: underline
}

a[href^="tel:"] {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-left: 40px;
    box-sizing: border-box;
    color: #303030 !important;
    text-decoration: none !important
}

a[href^="tel:"]:focus,
a[href^="tel:"]:hover {
    color: #303030 !important;
    text-decoration: none !important;
    cursor: inherit
}

@media all and (max-width:799px) {
    a[href^="tel:"]:focus,
    a[href^="tel:"]:hover {
        cursor: pointer
    }
}

a[href^="tel:"]::before {
    content: url(/files/Ahrens/assets/icon-team-phone.png);
    height: 34px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 5px 3px 5px;
    background: #303030;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    box-sizing: border-box
}

.fax-link {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-left: 40px;
    box-sizing: border-box
}

.fax-link::before {
    height: 34px;
    position: absolute;
    top: 0;
    left: 0;
    background: #303030;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    box-sizing: border-box
}

.fax-link::before {
    content: url(/files/Ahrens/assets/icon-team-fax.png);
    padding: 5px 5px 3px 5px
}

a[href^="mailto:"] {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-left: 40px;
    color: #303030 !important;
    box-sizing: border-box
}

a[href^="mailto:"]:focus,
a[href^="mailto:"]:hover {
    color: #cd1719 !important;
    text-decoration: none !important
}

a[href^="mailto:"]:focus::before,
a[href^="mailto:"]:hover::before {
    background: #cd1719
}

a[href^="mailto:"]::before {
    content: url(/files/Ahrens/assets/icon-team-email.png);
    height: 34px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 5px 0 5px;
    background: #303030;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    box-sizing: border-box
}

.ce_text {
    width: 100%;
    float: left
}

.ce_text a {
    color: #cd1719
}

@media all and (max-width:800px) {
    .ce_text a {
        word-wrap: break-word;
        overflow-wrap: break-word
    }
}

.ce_text a:focus,
.ce_text a:hover {
    color: #cd1719
}

@media all and (max-width:800px) {
    .ce_text p {
        word-wrap: break-word;
        overflow-wrap: break-word
    }
}

.ce_text ul {
    padding-left: 20px;
    list-style: inherit
}

@media all and (max-width:800px) {
    .ce_text ul li {
        word-wrap: break-word;
        overflow-wrap: break-word
    }
}

.ce_headline {
    width: 100%;
    float: left;
    margin-bottom: 20px
}

sup {
    vertical-align: baseline;
    position: relative;
    top: -.6em;
    font-size: 10px
}

.tel-link a {
    color: #303030;
    text-decoration: none;
    cursor: text
}

.tel-link a:focus,
.tel-link a:hover {
    color: #303030;
    text-decoration: none;
    cursor: text
}

.btn-standard {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    background: #cd1719
}

.btn-standard:focus,
.btn-standard:hover {
    color: #fff;
    text-decoration: none;
    background: #e01c1e
}

.btn-standard.hyperlink,
.ce_hyperlink.btn-standard {
    padding: 0;
    background: 0 0
}

.btn-standard.hyperlink:focus,
.btn-standard.hyperlink:hover,
.ce_hyperlink.btn-standard:focus,
.ce_hyperlink.btn-standard:hover {
    background: 0 0
}

.btn-standard.hyperlink a,
.ce_hyperlink.btn-standard a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px 20px;
    background: #cd1719
}

.btn-standard.hyperlink a:focus,
.btn-standard.hyperlink a:hover,
.ce_hyperlink.btn-standard a:focus,
.ce_hyperlink.btn-standard a:hover {
    background: #e01c1e
}

a.tel-link {
    color: #303030;
    text-decoration: none;
    cursor: text
}

a.tel-link:focus,
a.tel-link:hover {
    color: #303030;
    text-decoration: none;
    cursor: text
}

.btn-warning {
    float: left;
    padding: 10px 20px;
    color: #fff;
    background-color: #9d9d9d !important;
    border-color: #9d9d9d !important
}

.btn-warning p {
    margin-bottom: 0
}

.ce_image,
figure,
img {
    max-width: 100%;
    height: auto
}

nav .invisible {
    position: absolute;
    top: -9999px;
    left: -9999px;
    opacity: 0;
    visibility: visible
}

nav .invisible:focus {
    top: 0;
    left: -100px;
    color: #fff;
    opacity: 1
}

form .invisible {
    position: absolute;
    top: -9999px;
    left: -9999px;
    opacity: 0
}

sup {
    vertical-align: baseline;
    position: relative;
    top: -.6em;
    font-size: 10px
}

#header {
    width: 100%;
    height: 150px;
    position: fixed;
    top: 0;
    left: 0;
    transition: top .2s ease-in-out;
    border-top: 20px solid #f3f3f3;
    z-index: 99999999;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

@media all and (max-width:1280px) {
    #header {
        height: 120px
    }
}

@media all and (max-width:980px) {
    #header {
        border-top: none
    }
}

@media all and (max-width:800px) and (orientation:landscape) {
    #header {
        position: absolute
    }
}

#header .inside {
    width: 1640px;
    height: 100%;
    position: absolute;
    left: 50%;
    margin-left: -820px;
    background: #333
}

@media all and (max-width:1640px) {
    #header .inside {
        width: 100%;
        left: 0;
        margin-left: 0
    }
}

#header.absolute {
    position: absolute
}

#header.active-anchor {
    position: absolute
}

#header.smaller {
    height: 60px;
    border-top: none;
    border-bottom: none !important
}

#header.quick-search-open {
    position: absolute
}

.mainnavi {
    width: 1200px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 120px;
    text-align: right;
    z-index: 100000000000000020000;
    -webkit-backface-visibility: hidden
}

@media all and (max-width:1580px) {
    .mainnavi {
        width: 950px
    }
}

@media all and (max-width:1280px) {
    .mainnavi {
        padding-right: 20px
    }
}

@media all and (max-width:1130px) {
    .mainnavi {
        width: 820px
    }
}

@media all and (max-width:1030px) {
    .mainnavi {
        width: 750px
    }
}

@media all and (max-width:980px) {
    .mainnavi {
        display: none
    }
}

.mainnavi ul.level_1 {
    width: auto;
    float: right;
    margin: 0;
    padding: 0;
    text-align: right;
    list-style: none
}

.mainnavi ul.level_1 li {
    float: left;
    position: relative;
    display: inline-block;
    margin-right: 20px;
    padding-right: 20px
}

.mainnavi ul.level_1 li::after {
    content: "";
    width: 2px;
    height: 24px;
    position: absolute;
    top: 8px;
    right: 0;
    background: #fff
}

.mainnavi ul.level_1 li a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding: 3px 0 20px 0;
    color: #fff;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    border-top: 6px solid #333;
    z-index: 9999999
}

@media all and (max-width:1080px) {
    .mainnavi ul.level_1 li a {
        padding: 3px 0 10px 0;
        font-size: 18px
    }
}

.mainnavi ul.level_1 li a:focus,
.mainnavi ul.level_1 li a:hover {
    color: #fff;
    text-decoration: none;
    border-top: 6px solid #cd1719
}

.mainnavi ul.level_1 li a:focus ul.level_2 {
    display: block !important
}

.mainnavi ul.level_1 li span {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding: 3px 0 20px 0;
    color: #fff;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 22px;
    text-decoration: none;
    text-transform: uppercase;
    border-top: 6px solid #cd1719;
    z-index: 9999999
}

.mainnavi ul.level_1 li.hover a {
    color: #fff;
    text-decoration: none;
    border-top: 6px solid #cd1719
}

.mainnavi ul.level_1 li.trail a {
    color: #fff;
    text-decoration: none;
    border-top: 6px solid #cd1719
}

.mainnavi ul.level_1 li.first {
    position: absolute;
    top: -9999px;
    left: -9999px;
    opacity: 0
}

@media all and (max-width:980px) {
    .mainnavi ul.level_1 li.first {
        position: relative;
        top: 0;
        left: 0;
        opacity: 1
    }
}

.mainnavi ul.level_1 li.first.sfHover {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1
}

.mainnavi ul.level_1 li.last {
    margin-right: 0;
    padding-right: 0
}

.mainnavi ul.level_1 li.last::after {
    display: none
}

.mainnavi ul.level_1 li.nav-level-2-240 ul.level_2 {
    width: 240px
}

.mainnavi ul.level_1 li.nav-level-2-320 ul.level_2 {
    width: 320px
}

.mainnavi ul.level_1 li.nav-no-dropdown ul.level_2 {
    opacity: 0
}

.mainnavi ul.level_2 {
    width: 220px;
    display: none;
    position: absolute;
    top: 54px;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    padding: 20px 40px 0 40px;
    line-height: 1.8em;
    background: #333;
    z-index: 999999
}

@media all and (max-width:1080px) {
    .mainnavi ul.level_2 {
        top: 44px
    }
}

.mainnavi ul.level_2 li {
    width: 100%;
    float: left;
    position: relative;
    display: block;
    margin: 0 0 10px 0 !important;
    padding: 0 !important
}

.mainnavi ul.level_2 li::after {
    display: none
}

.mainnavi ul.level_2 li a,
.mainnavi ul.level_2 li a:link,
.mainnavi ul.level_2 li a:visited,
.mainnavi ul.level_2 li span {
    position: relative;
    float: left;
    display: inline-block;
    padding: 0 !important;
    color: #fff !important;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    text-align: left;
    text-transform: inherit;
    line-height: 1.4em;
    border: none
}

.mainnavi ul.level_2 li span {
    font-style: italic;
    color: #cd1719
}

.mainnavi ul.level_2 li a:focus,
.mainnavi ul.level_2 li a:hover {
    color: #cd1719 !important;
    text-decoration: none
}

.mainnavi ul.level_2 li span:hover {
    text-decoration: none
}

.mainnavi ul.level_2 li.active a,
.mainnavi ul.level_2 li.active span,
.mainnavi ul.level_2 li.trail a,
.mainnavi ul.level_2 li.trail span {
    color: #cd1719;
    font-style: italic;
    text-decoration: none
}

.mainnavi ul.level_2 li.first {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1
}

.mainnavi ul.level_2 li.first.sfHover {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1
}

.mainnavi ul.level_2 li.last {
    margin-bottom: 40px !important
}

.mainnavi ul.level_2 li.trail ul.level_3 li a {
    font-style: normal
}

.mainnavi ul.level_2 li.trail ul.level_3 li span {
    font-style: italic
}

.mainnavi ul.level_3 {
    position: absolute;
    top: -20px;
    left: 100%;
    margin-left: 40px;
    padding: 20px 40px 0 40px;
    line-height: 1.8em;
    background: #333;
    z-index: 999999
}

.mainnavi .nav-280 ul.level_3 {
    width: 280px
}

.mainnavi .submenu.last ul.level_3 {
    width: 280px
}
.mainnavi .nav-300 ul.level_3 {
    width: 300px
}

.mainnavi .nav-left ul.level_3 {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 40px
}

#header.smaller .mainnavi {
    bottom: -1px
}

#header.smaller .mainnavi li {
    padding-bottom: 0
}

#header.smaller .mainnavi li a {
    padding-bottom: 16px
}

#header.smaller .mainnavi ul.level_2 {
    top: 42px
}

.mobile_menu_trigger,
.nav-main-mobile-button {
    display: none;
    position: absolute;
    top: 34px;
    right: 20px;
    z-index: 999999999999
}

@media all and (max-width:980px) {
    .mobile_menu_trigger,
    .nav-main-mobile-button {
        display: block !important
    }
}

@media all and (max-width:680px) {
    .mobile_menu_trigger,
    .nav-main-mobile-button {
        top: 16px
    }
}

@media all and (max-width:300px) {
    .mobile_menu_trigger,
    .nav-main-mobile-button {
        right: 10px
    }
}

.mobile_menu_trigger a.main-button,
.nav-main-mobile-button a.main-button {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase
}

@media all and (max-width:300px) {
    .mobile_menu_trigger a.main-button,
    .nav-main-mobile-button a.main-button {
        font-size: 16px
    }
}

.mobile_menu_trigger a.main-button:focus,
.mobile_menu_trigger a.main-button:hover,
.nav-main-mobile-button a.main-button:focus,
.nav-main-mobile-button a.main-button:hover {
    color: #fff;
    text-decoration: none
}

.mobile_menu_trigger a.main-button::before,
.nav-main-mobile-button a.main-button::before {
    width: 32px;
    height: 32px;
    display: inline-block;
    position: relative;
    top: 12px;
    left: 0;
    content: "";
    background: url(/files/Ahrens/assets/icon-mobile-nav.png) no-repeat
}

@media all and (max-width:300px) {
    .mobile_menu_trigger a.main-button::before,
    .nav-main-mobile-button a.main-button::before {
        width: 22px;
        height: 22px;
        top: 6px;
        left: -2px;
        background-size: 100%
    }
}

#header.smaller .mobile_menu_trigger,
#header.smaller .nav-main-mobile-button {
    top: auto;
    bottom: 15px
}

.mod_mmenu.mm-menu {
    background: #cd1719
}

.mod_mmenu.mm-menu ul {
    padding-top: 50px !important
}

.mod_mmenu.mm-menu ul li a {
    color: #fff
}

.mod_mmenu.mm-menu ul li span {
    color: #fff
}

.mod_mmenu.mm-menu ul li.mm-subtitle {
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #666;
    padding: 0 !important;
    z-index: 999
}

.mod_mmenu.mm-menu ul li.mm-subtitle a.mm-subclose {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0
}

.mod_mmenu.mm-menu ul li.mm-subtitle a.mm-subclose::before {
    top: 50%;
    bottom: auto
}

.mod_mmenu.mm-menu ul .close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff
}

.mod_mmenu.mm-menu .level_2 li,
.mod_mmenu.mm-menu .level_3 li,
.mod_mmenu.mm-menu .level_4 li {
    padding-left: 40px !important
}

.smaller.mod_mmenu.mm-menu {
    top: 60px
}

.mm-menu .mm-list>li>a.mm-subclose:before,
.mm-menu .mm-list>li>a.mm-subopen:after {
    border-color: #fff
}

.custom {
    width: 100%;
    float: left
}

#wrapper {
    width: 100%;
    float: left;
    position: relative;
    z-index: 99
}

#container {
    width: 100%;
    float: left;
    margin-top: 150px
}

@media all and (max-width:1280px) {
    #container {
        margin-top: 120px
    }
}

.home #container {
    margin-top: 150px
}

@media all and (max-width:1280px) {
    .home #container {
        margin-top: 120px
    }
}

@media all and (max-width:767px) {
    .home #container .mod_article.first .article-inner {
        padding: 0
    }
}

.home #container .items-container {
    padding: 0 20px 0 20px
}

.home #container .mod_breadcrumb {
    display: none
}

.home .filter-container {
    margin-bottom: 0
}

#main {
    width: 100%;
    float: left
}

#main .inside {
    width: 100%;
    height: 100%;
    float: left;
    position: relative
}

.mm-wrapper {
    /*overflow-y: hidden*/
}

.mod_article {
    width: 100%;
    float: left;
    position: relative;
    left: 0;
    left: 0
}

.mod_article .article-inner {
    width: 1520px;
    float: left;
    position: relative;
    left: 50%;
    margin-left: -760px;
    padding: 20px 20px;
    background: #fff
}

@media all and (max-width:1640px) {
    .mod_article .article-inner {
        width: 100%;
        left: 0;
        margin-left: 0
    }
}

.mod_article .article-inner.top-grey-bar {
    position: relative;
    padding: 0
}

.mod_article .article-inner.top-grey-bar::before {
    content: "";
    width: 1640px;
    height: 50px;
    position: absolute;
    top: 0;
    left: -60px;
    background: #333
}

@media all and (max-width:1640px) {
    .mod_article .article-inner.top-grey-bar::before {
        width: 100%;
        left: 0
    }
}

@media all and (max-width:1080px) {
    .mod_article .article-inner.top-grey-bar::before {
        height: 20px
    }
}

@media all and (max-width:980px) {
    .mod_article .article-inner.top-grey-bar::before {
        display: none
    }
}

.mod_article.container-breadcrumb .article-inner {
    padding: 65px 20px 20px 20px
}

.no-header .mod_article.first .article-inner {
    padding: 50px 0 20px 0 !important
}

.no-header .mod_breadcrumb {
    top: 80px
}

.article-sidebar-container .mod_article .article-inner {
    width: 100%;
    left: 0;
    margin-left: 0
}

.article-sidebar .article-inner * {
    width: 1070px;
    float: left;
    position: relative
}

.article-sidebar .article-inner * * {
    width: inherit
}

.article-sidebar .article-inner .mod_boxes4ward {
    width: 330px
}

.mod_article.article-bc .article-inner {
    padding: 80px 20px 20px 20px
}

@media all and (max-width:1640px) {
    .mod_article.article-bc .article-inner {
        padding: 80px 20px 0 20px
    }
}

@media all and (max-width:980px) {
    .mod_article.article-bc .article-inner {
        padding: 20px 20px 0 20px
    }
}

@media all and (max-width:300px) {
    .mod_article.article-bc .article-inner {
        padding: 0
    }
}

.mod_article.article-main-slider#home-slider,
.mod_article.article-main-slider#main-slider {
    height: 397px;
    margin: 0 !important;
    background: #e6e6e6
}

@media all and (max-width:2120px) {
    .mod_article.article-main-slider#home-slider,
    .mod_article.article-main-slider#main-slider {
        border-top: 3px solid #fff;
        border-bottom: 3px solid #fff
    }
}

@media all and (max-width:1600px) {
    .mod_article.article-main-slider#home-slider,
    .mod_article.article-main-slider#main-slider {
        height: auto
    }
}

@media all and (max-width:980px) {
    .mod_article.article-main-slider#home-slider,
    .mod_article.article-main-slider#main-slider {
        border-top: none
    }
}

@media all and (max-width:800px) {
    .mod_article.article-main-slider#home-slider,
    .mod_article.article-main-slider#main-slider {
        height: 200px
    }
}

.mod_article.article-main-slider#home-slider .article-inner,
.mod_article.article-main-slider#main-slider .article-inner {
    width: 1600px;
    max-width: 1600px;
    margin-left: -800px;
    padding: 0
}

@media all and (max-width:2480px) {
    .mod_article.article-main-slider#home-slider .article-inner,
    .mod_article.article-main-slider#main-slider .article-inner {
        left: 440px;
        margin-left: 0
    }
}

@media all and (max-width:2120px) {
    .mod_article.article-main-slider#home-slider .article-inner,
    .mod_article.article-main-slider#main-slider .article-inner {
        left: 480px
    }
}

@media all and (max-width:2090px) {
    .mod_article.article-main-slider#home-slider .article-inner,
    .mod_article.article-main-slider#main-slider .article-inner {
        width: 100%;
        left: auto;
        position: absolute;
        top: 0;
        right: 0;
        padding: 0
    }
}

@media all and (max-width:1600px) {
    .mod_article.article-main-slider#home-slider .article-inner,
    .mod_article.article-main-slider#main-slider .article-inner {
        position: relative;
        margin-left: 0
    }
}

@media all and (max-width:800px) {
    .mod_article.article-main-slider#home-slider .article-inner,
    .mod_article.article-main-slider#main-slider .article-inner {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 200px
    }
    .mod_article.article-main-slider#home-slider .article-inner .slides li img,
    .mod_article.article-main-slider#main-slider .article-inner .slides li img {
        width: auto;
        max-width: inherit;
        height: 200px;
        position: absolute;
        top: 0;
        right: 0
    }
}

.mod_article.article-main-slider#main-slider {
    height: 344px !important
}

@media all and (max-width:1600px) {
    .mod_article.article-main-slider#main-slider {
        height: auto !important
    }
}

@media all and (max-width:800px) {
    .mod_article.article-main-slider#main-slider {
        height: 200px !important
    }
}

.mod_article.article-offers-slider#offers-slider .flex-caption {
    width: auto;
    right: 0;
    background: #fff
}

.mod_article.article-offers-slider#offers-slider .flex-caption .caption_title_line {
    margin-right: 0;
    padding: 5px 15px 5px 15px
}

.mod_article.article-offers-slider#offers-slider .flex-caption .caption_title_line p {
    color: #303030
}

.mod_article.content-intro {
    background: #e4dfd7
}

.mod_article.content-intro .image_container {
    width: 100%;
    float: left
}

.mod_article.content-intro.ci-home .image_container {
    width: 20vw;
    float: right
}

@media all and (max-width:980px) {
    .mod_article.content-intro.ci-home .image_container {
        width: 30vw
    }
}

.mod_article.hellbraun {
    background: #d6cdbf
}

.mod_article.beige {
    background: #e4dfd7
}

.mod_article.weiss {
    background: #fff
}

.mod_article.weiss .article-inner {
    float: left
}

.header-logo-link .header-logo {
    width: 300px;
    height: 188px;
    position: absolute;
    top: 23px;
    left: 120px
}

@media all and (max-width:1280px) {
    .header-logo-link .header-logo {
        width: 200px;
        height: auto;
        left: 20px
    }
}

@media all and (max-width:1080px) {
    .header-logo-link .header-logo {
        width: 150px
    }
}

@media all and (max-width:980px) {
    .header-logo-link .header-logo {
        width: 100px;
        top: 20px
    }
}

.header-logo-link .header-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%
}

#header.smaller .header-logo-link .header-logo {
    width: 49px;
    height: 41px;
    top: auto;
    bottom: 10px
}

.nav-meta-header {
    position: absolute;
    top: 20px;
    right: 200px
}

@media all and (max-width:1280px) {
    .nav-meta-header {
        top: 10px;
        right: -11px
    }
}

.nav-meta-header .invisible:focus {
    width: 200px;
    top: -20px;
    left: 0
}

.nav-meta-header ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.nav-meta-header ul li {
    display: inline-block;
    float: left;
    margin-right: 30px;
    padding: 0
}

.nav-meta-header ul li a,
.nav-meta-header ul li span {
    display: inline-block;
    position: relative;
    padding: 0 30px 0 0;
    color: #fff;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer
}

@media all and (max-width:1080px) {
    .nav-meta-header ul li a,
    .nav-meta-header ul li span {
        font-size: 16px
    }
}

.nav-meta-header ul li a:focus,
.nav-meta-header ul li a:hover,
.nav-meta-header ul li span:focus,
.nav-meta-header ul li span:hover {
    color: #cd1719
}

.nav-meta-header ul li span.active,
.nav-meta-header ul li span:hover {
    color: #cd1719 !important
}

.nav-meta-header ul li.first a::before,
.nav-meta-header ul li.first span::before {
    content: url(/files/Ahrens/assets/icon-tel-white-round.png);
    position: absolute;
    top: 0;
    right: 0
}

@media all and (max-width:1280px) {
    .nav-meta-header ul li.last {
        margin-right: 0
    }
}

.nav-meta-header ul li.last span::before {
    content: url(/files/Ahrens/assets/icon-person-white-round.png);
    position: absolute;
    top: 0;
    right: 0
}

.nav-meta-header.desktop {
    display: block
}

@media all and (max-width:980px) {
    .nav-meta-header.desktop {
        display: none
    }
}

.nav-meta-header.mobile {
    display: none
}

@media all and (max-width:980px) {
    .nav-meta-header.mobile {
        display: none !important
    }
}

#header.smaller .nav-meta-header {
    display: none
}

.form-search {
    position: absolute;
    top: 30px;
    right: 100px;
    z-index: 99
}

@media screen and (max-width:1280px) {
    .form-search {
        top: 20px;
        right: 290px
    }
}

@media screen and (max-width:1080px) {
    .form-search {
        right: 270px
    }
}

@media screen and (max-width:980px) {
    .form-search {
        width: 100%;
        display: none;
        right: auto;
        left: 0;
        padding: 0 20px
    }
}

.form-search .main-navigation-search {
    position: absolute;
    top: 0;
    right: 10px;
    height: 2.85714em;
    min-width: 3.42857em;
    margin-top: -1.35714em;
    border-radius: 0;
    overflow: hidden;
    font-size: .875em
}

@media screen and (max-width:980px) {
    .form-search .main-navigation-search {
        position: relative;
        background: #fff
    }
}

.form-search .main-navigation-search input {
    -webkit-appearance: none;
    float: right;
    width: 15em;
    margin: .57143em .5em 0 -10.35714em;
    padding: 5px 25px 5px 0;
    border: 0;
    border-bottom: none;
    border-radius: 0;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: inherit;
    background: 0 0;
    box-shadow: none;
    -webkit-transition: margin-left .2s ease-out;
    transition: margin-left .2s ease-out
}

@media screen and (max-width:980px) {
    .form-search .main-navigation-search input {
        width: 100%;
        float: left;
        margin: 0;
        padding: 8px 20px 8px 20px;
        border-color: #d2cbcb;
        box-shadow: none
    }
    .form-search .main-navigation-search input:focus {
        margin: 0;
        padding: 8px 20px 8px 20px
    }
}

.form-search .main-navigation-search .instead-of-button,
.form-search .main-navigation-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    color: #636363;
    text-align: left;
    text-indent: -99em;
    text-shadow: none;
    line-height: 0;
    background: 0 0;
    box-shadow: none
}

.form-search .main-navigation-search .instead-of-button::after,
.form-search .main-navigation-search button::after {
    content: "";
    width: 18px;
    height: 18px;
    text-indent: 0;
    display: inline-block;
    position: relative;
    display: block;
    text-align: center;
    color: #fff;
    background: url(/files/Ahrens/assets/icon-search-white-25.png) no-repeat top 0 left 0;
    background-size: cover
}

@media screen and (max-width:980px) {
    .form-search .main-navigation-search .instead-of-button:after,
    .form-search .main-navigation-search button:after {
        content: "";
        width: 18px;
        height: 18px;
        background: url(/files/Ahrens/assets/icon-search-grey-25.png) no-repeat top 0 left 0;
        background-size: cover;
        color: #000;
        cursor: pointer
    }
}

.form-search .main-navigation-search .instead-of-button::after {
    top: 12px
}

.form-search .main-navigation-search.focus input,
.form-search:focus input,
.form-search:hover input {
    margin-left: .85714em;
    border-color: #d2cbcb;
    box-shadow: none
}

@media screen and (max-width:980px) {
    .form-search .main-navigation-search.focus input,
    .form-search:focus input,
    .form-search:hover input {
        margin-left: 0
    }
}

.form-search .main-navigation-search.focus .main-navigation-search,
.form-search:focus .main-navigation-search,
.form-search:hover .main-navigation-search {
    background: #fff
}

.form-search .main-navigation-search.focus .instead-of-button:after,
.form-search .main-navigation-search.focus button:after,
.form-search:focus .instead-of-button:after,
.form-search:focus button:after,
.form-search:hover .instead-of-button:after,
.form-search:hover button:after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(/files/Ahrens/assets/icon-search-grey-25.png) no-repeat top 0 left 0;
    background-size: cover;
    color: #000;
    cursor: pointer
}

.form-search .main-navigation-search.focus {
    background: #fff
}

.form-search .textlink {
    position: absolute;
    top: -10px;
    right: -40px
}

@media screen and (max-width:980px) {
    .form-search .textlink {
        display: none
    }
}

.form-search .textlink a {
    display: block;
    padding-left: 20px;
    color: #fff !important;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 14px;
    text-decoration: none !important;
    text-transform: uppercase
}

.form-search .textlink a:focus,
.form-search .textlink a:hover {
    color: #cd1719 !important;
    cursor: pointer
}

input[type=search]::-webkit-search-cancel-button {
    display: none
}

#header.smaller .form-search {
    display: none
}

.site-search .textlink a {
    color: #cd1719 !important
}

#header .tel-link {
    display: none
}

@media all and (max-width:799px) {
    #header .tel-link {
        display: inline-block;
        position: absolute;
        right: 0;
        bottom: -47px;
        margin-right: 20px;
        padding-left: 30px
    }
    #header .tel-link a {
        color: #303030
    }
    #header .tel-link a:focus,
    #header .tel-link a:hover {
        color: #303030;
        text-decoration: none
    }
    #header .tel-link a::after {
        content: url(/files/SEQIS/assets/icon-tel-link.svg);
        position: absolute;
        top: 0;
        left: 0
    }
}

@media all and (max-width:290px) {
    #header .tel-link {
        right: auto;
        left: 10px
    }
}

#header.smaller .tel-link {
    display: none
}

#top-link {
    display: none;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    right: 20px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid #303030;
    border-radius: 100%;
    z-index: 99999999999
}

@media all and (max-width:1280px) {
    #top-link {
        bottom: 20px
    }
}

@media all and (max-width:700px) {
    #top-link {
        right: 10px;
        bottom: 10px
    }
}

#top-link img {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg)
}

#footer {
    width: 100%;
    float: left;
    position: relative;
    left: 0
}

#footer .inside {
    width: 1520px;
    height: 100%;
    position: relative;
    float: left;
    left: 50%;
    margin-left: -760px;
    padding: 50px 20px 0 20px;
    background: #fff
}

@media all and (max-width:1640px) {
    #footer .inside {
        width: 100%;
        left: 0;
        margin-left: 0;
        padding: 30px 20px
    }
}

#footer .inside h6 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #303030;
    font-size: 24px;
    font-weight: 400 !important;
    text-transform: uppercase;
    line-height: 1.2em
}

@media all and (max-width:1020px) {
    #footer .inside h6 {
        margin-bottom: 5px
    }
}

#footer .inside a[href^="tel:"] {
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 0
}

#footer .inside a[href^="tel:"]::before {
    display: none
}

#footer .inside a[href^="mailto:"] {
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 0
}

#footer .inside a[href^="mailto:"]::before {
    display: none
}

#footer .inside .mod_customnav ul li a:focus,
#footer .inside .mod_customnav ul li a:hover {
    color: #303030;
    text-decoration: underline
}

#footer .inside .mod_customnav ul li span {
    color: #303030;
    font-style: italic
}

#footer .inside .footer-top-container {
    width: 100%;
    float: left;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 2px solid #333
}

#footer .inside .footer-top-container .footer-top-text {
    font-size: 18px;
    text-transform: uppercase
}

#footer .inside .footer-products-container {
    width: 20%;
    float: left;
    padding-right: 40px
}

@media all and (max-width:1020px) {
    #footer .inside .footer-products-container {
        width: 50%;
        margin-bottom: 30px
    }
}

@media all and (max-width:480px) {
    #footer .inside .footer-products-container {
        width: 100%;
        padding-right: 0
    }
}

#footer .inside .footer-contact-container {
    width: 20%;
    float: left;
    padding-right: 40px
}

@media all and (max-width:1020px) {
    #footer .inside .footer-contact-container {
        width: 50%;
        margin-bottom: 30px;
        padding-right: 0
    }
}

@media all and (max-width:480px) {
    #footer .inside .footer-contact-container {
        width: 100%;
        padding-right: 0
    }
}

#footer .inside .footer-contact-container .footer-logos-cert a:hover {
    text-decoration: none
}

#footer .inside .footer-contact-container .footer-logos-cert a img {
    margin-right: 10px
}

#footer .inside .footer-tel-container {
    width: 20%;
    float: left;
    padding-right: 40px
}

@media all and (max-width:1020px) {
    #footer .inside .footer-tel-container {
        width: 50%;
        margin-bottom: 30px
    }
}

@media all and (max-width:480px) {
    #footer .inside .footer-tel-container {
        width: 100%;
        padding-right: 0
    }
}

#footer .inside .footer-tel-container .footer-logos-cert a:hover {
    text-decoration: none
}

#footer .inside .footer-tel-container .footer-logos-cert a img {
    margin-right: 10px
}

#footer .inside .footer-service-container {
    width: 20%;
    float: left;
    padding-right: 40px
}

@media all and (max-width:1020px) {
    #footer .inside .footer-service-container {
        width: 50%;
        margin-bottom: 30px
    }
}

@media all and (max-width:480px) {
    #footer .inside .footer-service-container {
        width: 100%;
        padding-right: 0
    }
}

#footer .inside .mod_sharebuttons,
#footer .inside .mod_sharelinks {
    width: 20%;
    float: left
}

@media all and (max-width:1020px) {
    #footer .inside .mod_sharebuttons,
    #footer .inside .mod_sharelinks {
        width: 50%;
        clear: both;
        margin-bottom: 30px;
        margin-left: 0
    }
}

@media all and (max-width:480px) {
    #footer .inside .mod_sharebuttons,
    #footer .inside .mod_sharelinks {
        width: 100%;
        padding-right: 0
    }
}

#footer .inside .mod_sharebuttons h6,
#footer .inside .mod_sharelinks h6 {
    margin-top: 0;
    margin-bottom: 40px
}

@media all and (max-width:1020px) {
    #footer .inside .mod_sharebuttons h6,
    #footer .inside .mod_sharelinks h6 {
        margin-bottom: 15px
    }
}

#footer .inside .mod_sharebuttons .sharebuttons ul.boxxed li a,
#footer .inside .mod_sharelinks .sharebuttons ul.boxxed li a {
    background-image: url(/system/modules/sharebuttons/assets/boxxed/sprites-32.png) !important
}

#footer .inside .mod_sharebuttons .sharebuttons ul.boxxed .social-sharing-yt a img,
#footer .inside .mod_sharelinks .sharebuttons ul.boxxed .social-sharing-yt a img {
    margin: 4px
}

#footer .inside .mod_sharebuttons .sharelinks,
#footer .inside .mod_sharelinks .sharelinks {
    overflow: hidden
}

#footer .inside .mod_sharebuttons .sharelinks ul.theme,
#footer .inside .mod_sharelinks .sharelinks ul.theme {
    list-style-type: none;
    margin: -4px;
    padding: 0
}

#footer .inside .mod_sharebuttons .sharelinks ul.theme li,
#footer .inside .mod_sharelinks .sharelinks ul.theme li {
    float: left
}

#footer .inside .mod_sharebuttons .sharelinks ul.theme li a,
#footer .inside .mod_sharelinks .sharelinks ul.theme li a {
    margin: 4px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-indent: 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #303030
}

#footer .inside .mod_sharebuttons .sharelinks ul.theme li a.facebook,
#footer .inside .mod_sharelinks .sharelinks ul.theme li a.facebook {
    background-position: -40px 0
}

#footer .inside .mod_sharebuttons .sharelinks ul.theme li a.twitter,
#footer .inside .mod_sharelinks .sharelinks ul.theme li a.twitter {
    background-position: -160px 0
}

#footer .inside .mod_sharebuttons .sharelinks ul.theme li a.xing,
#footer .inside .mod_sharelinks .sharelinks ul.theme li a.xing {
    background-position: -200px 0
}

#footer .inside .mod_sharebuttons .sharelinks ul.theme li a.linkedin,
#footer .inside .mod_sharelinks .sharelinks ul.theme li a.linkedin {
    background-position: -120px 0
}

#footer .inside .mod_sharebuttons .sharelinks ul.boxxed li a,
#footer .inside .mod_sharelinks .sharelinks ul.boxxed li a {
    width: 32px;
    height: 32px;
    background-image: url(/system/modules/sharebuttons/assets/boxxed/sprites-32.png)
}

#footer .inside .footer-bottom-container {
    width: 100%;
    float: left;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid #303030
}

@media all and (max-width:1020px) {
    #footer .inside .footer-bottom-container {
        margin-top: 0
    }
}

#footer .inside .nav-meta-footer-bottom {
    width: 35%;
    float: left
}

@media all and (max-width:1460px) {
    #footer .inside .nav-meta-footer-bottom {
        width: 100%
    }
}

@media all and (max-width:1020px) {
    #footer .inside .nav-meta-footer-bottom {
        float: left
    }
}

#footer .inside .nav-meta-footer-bottom li {
    display: inline-block;
    margin-left: 20px
}

@media all and (max-width:1020px) {
    #footer .inside .nav-meta-footer-bottom li {
        margin-left: 0;
        margin-right: 10px
    }
}

@media all and (max-width:400px) {
    #footer .inside .nav-meta-footer-bottom li {
        display: block
    }
}

#footer .inside .nav-meta-footer-bottom li.first {
    margin-left: 0
}

#footer .inside .footer-bottom-text {
    width: 65%;
    float: left;
    text-align: right
}

@media all and (max-width:1460px) {
    #footer .inside .footer-bottom-text {
        width: 100%;
        text-align: left
    }
}

@media all and (max-width:1020px) {
    #footer .inside .footer-bottom-text {
        width: 100%;
        max-width: none
    }
}

#footer .inside .footer-bottom-text .tel-link:focus,
#footer .inside .footer-bottom-text .tel-link:hover {
    color: #303030;
    text-decoration: none;
    cursor: text
}

@media all and (max-width:1020px) {
    #footer .inside .footer-bottom-text .tel-link:focus,
    #footer .inside .footer-bottom-text .tel-link:hover {
        color: #fff;
        text-decoration: underline;
        cursor: pointer
    }
}

#footer .inside a {
    color: #303030
}

#footer .inside a:focus,
#footer .inside a:hover {
    color: #303030;
    text-decoration: underline
}

@media all and (max-width:500px) {
    .header-mit-bild {
        overflow: hidden
    }
}

.header-mit-bild .article-inner .ce_text {
    width: 100%;
    float: left;
    position: relative
}

.header-mit-bild .article-inner .ce_text .image_container img {
    width: 100%;
    height: auto
}

@media all and (max-width:500px) {
    .header-mit-bild .article-inner .ce_text .image_container img {
        width: auto;
        max-width: none;
        height: 250px;
        position: relative;
        left: 50%;
        -ms-transform: translate(-60%, 0);
        -webkit-transform: translate(-60%, 0);
        -moz-transform: translate(-60%, 0);
        transform: translate(-60%, 0)
    }
}

.header-mit-bild .article-inner .ce_text p {
    display: inline-block;
    position: absolute;
    bottom: 50px;
    left: 0;
    padding: 10px 50px 10px 30px;
    color: #303030;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    line-height: 1.2em;
    background: rgba(255, 255, 255, .6);
    font-weight: 600;
}

@media all and (max-width:980px) {
    .header-mit-bild .article-inner .ce_text p {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 22px
    }
}

@media all and (max-width:767px) {
    .header-mit-bild .article-inner .ce_text p {
        padding: 10px 20px;
        font-size: 18px
    }
}

@media all and (max-width:500px) {
    .header-mit-bild .article-inner .ce_text p {
        bottom: 10px;
        padding: 8px 14px;
        font-size: 18px
    }
}

.mod_breadcrumb {
    width: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99
}

@media all and (max-width:980px) {
    .mod_breadcrumb {
        display: none
    }
}

.mod_breadcrumb ul {
    width: 1520px;
    float: left;
    position: relative;
    left: 50%;
    margin-bottom: 0;
    margin-left: -760px;
    padding: 20px 20px;
    background: #fff
}

@media all and (max-width:1640px) {
    .mod_breadcrumb ul {
        width: 100%;
        left: 0;
        margin-left: 0;
        padding: 20px
    }
}

.mod_breadcrumb ul li {
    display: inline-block;
    float: left;
    padding: 0 10px;
    border-right: 1px solid #303030
}

.mod_breadcrumb ul li a {
    color: #303030
}

.mod_breadcrumb ul li a:focus,
.mod_breadcrumb ul li a:hover {
    color: #cd1719
}

.mod_breadcrumb ul li.first {
    padding-left: 0
}

.mod_breadcrumb ul li.active {
    font-style: italic
}

.mod_breadcrumb ul li.last {
    border-right: none
}

.filter {
    width: 100%;
    float: left;
    position: relative
}

@media all and (max-width:300px) {
    .filter {
        border: none
    }
}

@media all and (max-width:980px) {
    .filter {
        min-height: 300px;
        padding: 10px 80px 60px 80px
    }
}

@media all and (max-width:600px) {
    .filter {
        min-height: auto;
        padding: 10px 20px
    }
}

.filter .select-container-left,
.filter .select-container-middle,
.filter .select-container-right {
    min-width: 420px;
    min-height: 48px;
    margin-right: 30px;
    float: left;
    position: relative
}

@media all and (max-width:1300px) {
    .filter .select-container-left,
    .filter .select-container-middle,
    .filter .select-container-right {
        position: absolute;
        top: 80px;
        left: 10%
    }
}

@media all and (max-width:1120px) {
    .filter .select-container-left,
    .filter .select-container-middle,
    .filter .select-container-right {
        left: 5%
    }
}

@media all and (max-width:980px) {
    .filter .select-container-left,
    .filter .select-container-middle,
    .filter .select-container-right {
        left: 50%;
        -ms-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}

@media all and (max-width:600px) {
    .filter .select-container-left,
    .filter .select-container-middle,
    .filter .select-container-right {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        -ms-transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        transform: none
    }
}

@media all and (max-width:470px) {
    .filter .select-container-left,
    .filter .select-container-middle,
    .filter .select-container-right {
        width: 100%
    }
}

.filter .select-container-left .widget-select,
.filter .select-container-middle .widget-select,
.filter .select-container-right .widget-select {
    width: 100% !important;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.filter .select-container-left .widget-select.active,
.filter .select-container-middle .widget-select.active,
.filter .select-container-right .widget-select.active {
    display: block;
    opacity: 1
}

.filter .select-container-left select,
.filter .select-container-middle select,
.filter .select-container-right select {
    width: 420px;
    height: 48px;
    position: relative;
    float: left;
    position: relative;
    margin-right: 20px;
    padding: 0 60px 0 20px;
    color: #303030;
    font-size: 20px;
    text-transform: uppercase;
    background: url(/files/Ahrens/assets/icon-select-bg-red-angle-down-white.png) no-repeat top 0 right 0;
    border: none;
    border: 1px solid #cd1719;
    border-radius: 0;
    outline: hidden;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

@media all and (max-width:470px) {
    .filter .select-container-left select,
    .filter .select-container-middle select,
    .filter .select-container-right select {
        width: 100%;
        margin-right: 0;
        font-size: 16px;
        background: url(/files/Ahrens/assets/icon-select-bg-red-angle-down-white.png) no-repeat top 0 right 0
    }
}

.filter .select-container-left select::after,
.filter .select-container-middle select::after,
.filter .select-container-right select::after {
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #cd1719
}

.filter .select-container-left select option,
.filter .select-container-middle select option,
.filter .select-container-right select option {
    font-size: 18px;
    text-transform: inherit
}

.filter .select-container-left select optgroup,
.filter .select-container-middle select optgroup,
.filter .select-container-right select optgroup {
    color: #cd1719
}

.filter .select-container-left select label,
.filter .select-container-middle select label,
.filter .select-container-right select label {
    color: #cd1719
}

.filter .select-container-left select::-ms-expand,
.filter .select-container-middle select::-ms-expand,
.filter .select-container-right select::-ms-expand {
    display: none
}

.filter .btn-container {
    float: left
}

@media all and (max-width:1300px) {
    .filter .btn-container {
        position: absolute;
        bottom: 20px;
        left: 50%;
        -ms-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}

@media all and (max-width:600px) {
    .filter .btn-container {
        position: relative;
        bottom: 0;
        left: 0;
        -ms-transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        transform: none
    }
}

.filter .btn-container .btn-standard {
    position: relative;
    top: 10px;
    left: 60px;
    font-size: 24px;
    text-transform: uppercase
}

@media all and (max-width:1300px) {
    .filter .btn-container .btn-standard {
        top: 0;
        left: 0
    }
}

@media all and (max-width:470px) {
    .filter .btn-container .btn-standard {
        font-size: 16px
    }
}

@media all and (max-width:400px) {
    .filter .btn-container .btn-standard {
        padding: 5px 10px
    }
}

.filter .container-filter-submit {
    width: 100%;
    min-height: 50px;
    float: left;
    margin-top: 30px
}

.filter .container-filter-submit .filter-submit {
    display: none;
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.filter .container-filter-submit .filter-submit:active,
.filter .container-filter-submit .filter-submit:focus,
.filter .container-filter-submit .filter-submit:hover {
    color: #fff;
    text-decoration: none
}

.filter .container-filter-submit .filter-submit.active {
    display: inline-block;
    opacity: 1
}

#cookiebar {
    padding: 8px 100px;
    z-index: 999999999
}

@media all and (max-width:700px) {
    #cookiebar {
        padding: 8px 20px !important;
        font-size: 10px
    }
}

#cookiebar button {
    background-color: #000 !important
}

.ce_flexSlider {
    width: 70%;
    float: left;
    overflow: hidden
}

@media all and (max-width:980px) {
    .ce_flexSlider {
        width: 100%
    }
}

.ce_flexSlider .flexslider {
    margin: 0 !important
}

.ce_flexSlider .flexslider .slides {
    background: #fff
}

.ce_flexSlider .flexslider .slides li a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9999
}

@media all and (max-width:980px) {
    .ce_flexSlider .flexslider .slides li img {
        width: auto;
        max-width: none;
        height: 430px;
        position: relative;
        left: 50%;
        -ms-transform: translate(-60%, 0);
        -webkit-transform: translate(-60%, 0);
        -moz-transform: translate(-60%, 0);
        transform: translate(-60%, 0)
    }
}

@media all and (max-width:600px) {
    .ce_flexSlider .flexslider .slides li img {
        height: 250px
    }
}

.ce_flexSlider .flexslider .flex-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto !important;
    background: 0 0 !important
}

.ce_flexSlider .flexslider .flex-caption .caption_title_line {
    position: absolute;
    bottom: 10%;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
    float: left !important;
    z-index: 9999
}

@media all and (max-width:1640px) {
    .ce_flexSlider .flexslider .flex-caption .caption_title_line {
        top: 40%;
        left: 12vw
    }
}

@media all and (max-width:980px) {
    .ce_flexSlider .flexslider .flex-caption .caption_title_line {
        left: 6vw
    }
}

@media all and (max-width:767px) {
    .ce_flexSlider .flexslider .flex-caption .caption_title_line {
        top: auto;
        bottom: 2vw;
        left: 2vw
    }
}

.ce_flexSlider .flexslider .flex-caption .caption_title_line p {
    display: inline-block;
    float: left;
    clear: both;
    margin-bottom: 0;
    padding: 10px 70px 10px 50px;
    color: #303030;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.6em;
    /*background: rgba(255, 255, 255, .4);*/
    background: rgba(255, 255, 255, 1);
}

@media all and (max-width:980px) {
    .ce_flexSlider .flexslider .flex-caption .caption_title_line p {
        font-size: 20px
    }
}

@media all and (max-width:600px) {
    .ce_flexSlider .flexslider .flex-caption .caption_title_line p {
        padding: 5px 10px 5px 10px;
        font-size: 16px
    }
}

@media all and (max-width:460px) {
    .ce_flexSlider .flexslider .flex-caption .caption_title_line p {
        padding: 3px 8px 3px 8px;
        font-size: 14px
    }
}

.ce_flexSlider .flexslider .flex-caption .caption_title_line p:nth-child(1) {
    font-weight: 700
}

.ce_flexSlider .flexslider .flex-direction-nav {
    width: 100%;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -24px;
    overflow: hidden
}

@media all and (max-width:980px) {
    .ce_flexSlider .flexslider .flex-direction-nav {
        display: none
    }
}

.ce_flexSlider .flexslider .flex-direction-nav li {
    width: 48px;
    height: 48px
}

.ce_flexSlider .flexslider .flex-direction-nav li a {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 !important;
    cursor: pointer
}

.ce_flexSlider .flexslider .flex-direction-nav li:nth-child(1) {
    float: left
}

.ce_flexSlider .flexslider .flex-direction-nav li:nth-child(1) a {
    background: url(/files/Ahrens/assets/icon-slider-arrow-left.png) no-repeat 0 0 !important
}

.ce_flexSlider .flexslider .flex-direction-nav li:nth-child(2) {
    float: right
}

.ce_flexSlider .flexslider .flex-direction-nav li:nth-child(2) a {
    left: auto !important;
    background: url(/files/Ahrens/assets/icon-slider-arrow-right.png) no-repeat 0 0 !important
}

.ce_flexSlider.slider-full {
    width: 1520px;
    position: relative;
    left: 50%;
    margin-left: -760px;
    margin-bottom: 10px
}

@media all and (max-width:1640px) {
    .ce_flexSlider.slider-full {
        width: 100%;
        left: 0;
        margin-left: 0
    }
}

@media all and (max-width:767px) {
    .ce_flexSlider.slider-full {
        margin-bottom: 0
    }
}

.mod_tagcloud {
    width: 100%;
    float: left
}

.mod_tagcloud ul.cloud {
    list-style: none;
    padding: 0 !important
}

.mod_tagcloud ul.cloud li {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px
}

.mod_tagcloud ul.cloud li a {
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 10px 20px;
    color: #303030 !important;
    background: #f3f3f3
}

.mod_tagcloud ul.cloud li a:focus,
.mod_tagcloud ul.cloud li a:hover {
    color: #303030 !important;
    background: #c1c1c1
}

.mod_tagcloud ul.cloud li.active a {
    font-weight: 700
}

.mod_tagcloud ul.cloud li.size3,
.mod_tagcloud ul.cloud li.size4 {
    font-size: 16px;
    font-weight: 400
}

.ce_youtube {
    width: 100%;
    float: left
}

.ce_youtube.video-projects {
    max-width: 700px;
    height: auto
}

.ce_kontakt_google_map {
    width: 100%;
    float: left
}

.ce_kontakt_google_map .text-container {
    width: 60%;
    float: left;
    position: relative;
    padding: 20px
}

@media all and (max-width:980px) {
    .ce_kontakt_google_map .text-container {
        width: 100%
    }
}

.ce_kontakt_google_map .text-container .ce_headline {
    margin-bottom: 0
}

.ce_kontakt_google_map .text-container .ce_headline h3 {
    margin-top: 0;
    margin-bottom: 40px;
    color: #cd1719;
    font-size: 22px;
    text-transform: uppercase
}

.ce_kontakt_google_map .map-container {
    width: 40%;
    float: left
}

@media all and (max-width:980px) {
    .ce_kontakt_google_map .map-container {
        width: 100%
    }
}

.mod_dlh_googlemaps {
    width: 100%;
    height: 400px;
    float: left
}

@media all and (max-width:980px) {
    .mod_dlh_googlemaps {
        width: 100%
    }
}

.mod_dlh_googlemaps .dlh_googlemap {
    width: 100%;
    height: 400px;
    float: left
}

.mod_dlh_googlemaps .dlh_googlemap .gm-style-iw {
    font-size: 16px
}

.mod_dlh_googlemaps .dlh_googlemap .gm-style-iw .routinglink {
    position: relative
}

.mod_dlh_googlemaps .dlh_googlemap .gm-style-iw .routinglink a {
    display: inline-block;
    position: absolute;
    color: #3a84df;
    font-size: 16px
}

.mod_dlh_googlemaps .dlh_googlemap .gm-style-iw .routinglink .text-hidden {
    display: none
}

.meta-ueberschrift,
.teaser-home-angebote-hl-top {
    display: inline-block;
    position: relative;
    left: -50px;
    margin-bottom: 10px;
    padding: 4px 20px 4px 50px;
    font-size: 28px;
    background: #fff
}

@media all and (max-width:980px) {
    .meta-ueberschrift,
    .teaser-home-angebote-hl-top {
        word-wrap: break-word;
        overflow-wrap: break-word
    }
}

@media all and (max-width:550px) {
    .meta-ueberschrift,
    .teaser-home-angebote-hl-top {
        font-size: 5vw
    }
}

.meta-ueberschrift p,
.teaser-home-angebote-hl-top p {
    margin: 0;
    padding: 0
}

h1 {
    margin-top: 0;
    color: #cd1719;
    font-size: 30px;
    text-transform: uppercase
}

@media all and (max-width:767px) {
    h1 {
        font-size: 24px
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Titillium Web", Arial, sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.2em !important
}

@media all and (max-width:800px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-wrap: break-word;
        overflow-wrap: break-word
    }
}

.hl-with-sub-hl {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 6px
}

.hl-with-sub-hl::after {
    content: "";
    width: 100px;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #cd1719
}

.hl-with-sub-hl h1 {
    margin-bottom: 10px;
    color: #303030;
    font-size: 36px;
    font-weight: 600
}

.hl-with-sub-hl p {
    color: #cd1719;
    font-size: 24px
}

h1.hl-center,
h2.hl-center,
h3.hl-center,
h4.hl-center,
h5.hl-center,
h6.hl-center {
    text-align: center
}

.intro-text {
    width: 70%;
    float: left
}

@media all and (max-width:980px) {
    .intro-text {
        width: 100%
    }
}

.intro-text ul {
    list-style: none
}

.intro-text ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    background: url(/files/Ahrens/assets/icon-check-48.png) no-repeat top 0 left 0;
    background-size: 24px
}

.btn-default {
    display: inline-block;
    float: left;
    position: relative;
    padding: 10px 60px 10px 20px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    background: #cd1719;
    cursor: pointer
}

.btn-default a {
    color: #fff
}

.btn-default a:hover {
    text-decoration: none
}

.btn-default:hover {
    text-decoration: none;
    background: #e01c1e
}

.btn-default::after {
    content: url(/files/Ahrens/assets/icon-plus-white.png);
    position: absolute;
    top: 14px;
    right: 20px
}

.ce_form {
    width: 100%;
    float: left
}

.ce_form .formbody {
    width: 100%;
    float: left
}

.ce_form .formbody p.error {
    font-size: 20px;
    color: #f80a0a
}

.ce_form {
    width: 100%;
    float: left;
    position: relative;
    padding-top: 30px
}

.ce_form .widget {
    width: 40%;
    min-height: 48px;
    float: left;
    margin-right: 2%;
    margin-bottom: 20px;
    margin-left: 0
}

@media all and (max-width:980px) {
    .ce_form .widget {
        width: 48%
    }
}

@media all and (max-width:700px) {
    .ce_form .widget {
        width: 100%;
        margin-right: 0
    }
}

.ce_form .widget .col-lg-9 {
    width: 100%;
    padding: 0
}

.ce_form .widget .col-lg-offset-3 {
    margin-left: 0 !important
}

.ce_form .one_half {
    width: 100%;
    float: left;
    margin: 0 0 .8em 0
}

.ce_form .one_half label {
    margin: 0 !important;
    padding: 0 !important
}

.ce_form .one_full {
    width: 100% !important;
    float: left;
    margin: 0 0 .8em 0
}

.ce_form .one_full_text {
    width: 100%;
    min-height: 10em;
    margin: 0 0 .8em 0
}

.ce_form .widget-explanation {
    width: 100% !important;
    min-height: inherit !important;
    margin-right: 0 !important
}

.ce_form .widget-textarea {
    width: 82%;
    margin-right: 0
}

@media all and (max-width:700px) {
    .ce_form .widget-textarea {
        width: 100%
    }
}

.ce_form .widget-textarea .textarea {
    width: 70%
}

.ce_form .widget-radio {
    width: 100%;
    margin-right: 0
}

.ce_form .widget-radio legend {
    margin-bottom: 10px
}

.ce_form .widget-radio .radio {
    margin-bottom: 5px
}

.ce_form .widget-radio .radio input {
    margin-left: 1px
}

.ce_form .checkbox_container,
.ce_form .widget-checkbox {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 20px
}

.ce_form .checkbox_container legend,
.ce_form .widget-checkbox legend {
    margin-bottom: 10px
}

.ce_form .checkbox_container span,
.ce_form .widget-checkbox span {
    display: inline-block;
    float: left;
    margin-right: 20px
}

.ce_form .widget-select {
    position: relative
}

.ce_form .widget-calendar {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 11px !important
}

.ce_form .widget-calendar input {
    width: 49% !important;
    margin-right: 10px !important
}

@media all and (max-width:700px) {
    .ce_form .widget-calendar input {
        width: 100% !important;
        margin-right: 0 !important
    }
}

.ce_form .widget-calendar img:hover {
    cursor: pointer
}

.ce_form .widget-calendar .calendar-info {
    margin-top: 4px;
    margin-left: 20px;
    font-size: 14px;
    color: #737373
}

@media all and (max-width:700px) {
    .ce_form .widget-calendar .calendar-info {
        margin-left: 0
    }
}

.ce_form span.mandatory {
    display: none
}

.ce_form .submit_container {
    width: 100%;
    float: left;
    margin-bottom: 20px
}

.ce_form .submit {
    height: auto !important;
    padding: 6px 40px;
    background: #cd1719;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: none !important;
    cursor: pointer
}

@media all and (max-width:600px) {
    .ce_form .submit {
        white-space: normal
    }
}

.ce_form .submit:focus,
.ce_form .submit:hover {
    background: #e01c1e
}

.ce_form .form-hidden {
    position: absolute
}

@media all and (max-width:840px) {
    .ce_form fieldset {
        margin-bottom: 10px
    }
}

.ce_form fieldset .widget {
    width: 31.3333333%
}

@media all and (max-width:840px) {
    .ce_form fieldset .widget {
        width: 100%;
        margin-right: 0
    }
}

.ce_form fieldset .widget span {
    display: inline-block;
    margin-right: 30px
}

.ce_form input.text {
    width: 100%;
    height: 46px;
    padding: 1em .6em;
    font-size: .8em;
    background: #fcfcfc;
    border: 1px solid #abadb3;
    border-radius: 0 !important
}

.ce_form input.text.formicon {
    width: 100% !important;
    padding-left: 4.6em !important;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px
}

.ce_form input.kontakt_theme {
    padding-left: 60px !important;
    background: #fcfcfc !important
}

.ce_form .container-kontakt_theme {
    position: relative
}

.ce_form .container-kontakt_theme::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-theme.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form input.kontakt_network {
    padding-left: 60px !important;
    background: #fcfcfc !important
}

.ce_form .container-kontakt_network {
    position: relative
}

.ce_form .container-kontakt_network::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-network.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form input.kontakt_name {
    padding-left: 60px !important;
    background: #fcfcfc !important
}

.ce_form .container-kontakt_name {
    position: relative
}

.ce_form .container-kontakt_name::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-name.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form input.kontakt_map {
    padding-left: 60px !important;
    background: #fcfcfc !important
}

.ce_form .container-kontakt_map {
    position: relative
}

.ce_form .container-kontakt_map::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-map.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form input.kontakt_tel {
    padding-left: 60px !important;
    background: #fcfcfc !important
}

.ce_form .container-kontakt_tel {
    position: relative
}

.ce_form .container-kontakt_tel::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-tel.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form input.kontakt_fax {
    padding-left: 60px !important;
    background: #fcfcfc !important
}

.ce_form .container-kontakt_fax {
    position: relative
}

.ce_form .container-kontakt_fax::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-fax.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form input.kontakt_mail {
    padding-left: 60px !important;
    background: #fcfcfc !important
}

.ce_form .container-kontakt_mail {
    position: relative
}

.ce_form .container-kontakt_mail::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-mail.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form input.kontakt_question {
    padding-left: 60px !important;
    background: #fcfcfc !important
}

.ce_form .container-kontakt_question {
    position: relative
}

.ce_form .container-kontakt_question::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-question.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form input.form-date-location {
    background: #f0f8ff
}

.ce_form input.form-list-price {
    background: #f0f8ff
}

.ce_form input.form-fee {
    background: #f0f8ff
}

.ce_form textarea {
    min-height: 12em;
    padding: 1em .6em;
    background: #fcfcfc;
    border: 1px solid #abadb3;
    border-radius: 0 !important
}

.ce_form select {
    width: 100%;
    height: 46px;
    float: left;
    padding-right: 10px;
    padding-left: 10px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important;
    border: 1px solid #abadb3 !important
}

.ce_form select::-ms-expand {
    display: none
}

.ce_form select.select.kontakt_gender {
    padding-left: 60px !important
}

.ce_form .container-kontakt_gender {
    position: relative
}

.ce_form .container-kontakt_gender::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-gender.png) no-repeat top 0 left 0;
    background-size: cover
}

.ce_form .container-kontakt_gender::after {
    content: "";
    width: 8px;
    height: 15px;
    position: absolute;
    top: 16px;
    right: 10px;
    background: url(/files/Ahrens/assets/icon-select-arrow.png) no-repeat top 0 right 0
}

.ce_form .checkbox-single .checkbox {
    float: left;
    margin-right: 10px
}

.ce_form .checkbox-single label {
    float: left;
    position: relative;
    top: -4px
}

.ce_form .checkbox-margin-top {
    float: left;
    margin-top: 30px;
    margin-bottom: 30px
}

.ce_form .checkbox-no-margin {
    margin-top: 0;
    margin-bottom: 0
}

.ce_form input:focus,
.ce_form select:focus,
.ce_form textarea:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-slideout {
    height: 0;
    overflow: hidden;
    -webkit-transition: height .5s ease-in;
    transition: height .5s ease-in
}

.form-slideout.expanded {
    height: 100%
}

.show-form {
    height: auto !important;
    position: relative;
    padding: 6px 40px 6px 20px;
    background: #cd1719;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: none !important;
    cursor: pointer;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important
}

.show-form:hover {
    background: #e01c1e
}

.show-form::after {
    content: url(/files/Ahrens/assets/icon-plus-white.png);
    position: absolute;
    top: 10px;
    right: 10px
}

.message.ajaxconfirm {
    color: #cd1719;
    font-size: 22px;
    font-weight: 700
}

#mod-form-customer-feedback .message.ajaxconfirm {
    width: 100%;
    float: left;
    margin-top: 20px;
    padding: 50px 20px;
    background: #f3f1f1
}

.header-slideout .submit {
    background: #333
}

.mod_subscribe,
.mod_unsubscribe {
    width: 100%;
    float: left
}

.mod_subscribe #tl_subscribe,
.mod_subscribe #tl_unsubscribe,
.mod_unsubscribe #tl_subscribe,
.mod_unsubscribe #tl_unsubscribe {
    width: 100%;
    float: left;
    position: relative
}

.mod_subscribe #tl_subscribe .nl-email-container,
.mod_subscribe #tl_unsubscribe .nl-email-container,
.mod_unsubscribe #tl_subscribe .nl-email-container,
.mod_unsubscribe #tl_unsubscribe .nl-email-container {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 20px
}

.mod_subscribe #tl_subscribe .nl-email-container::before,
.mod_subscribe #tl_unsubscribe .nl-email-container::before,
.mod_unsubscribe #tl_subscribe .nl-email-container::before,
.mod_unsubscribe #tl_unsubscribe .nl-email-container::before {
    content: "";
    width: 45px;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    background: url(/files/Ahrens/assets/formicon-mail.png) no-repeat top 0 left 0;
    background-size: cover
}

.mod_subscribe #tl_subscribe .nl-email-container input.text,
.mod_subscribe #tl_unsubscribe .nl-email-container input.text,
.mod_unsubscribe #tl_subscribe .nl-email-container input.text,
.mod_unsubscribe #tl_unsubscribe .nl-email-container input.text {
    width: 100%;
    max-width: 450px;
    height: 46px;
    padding: 1em .6em;
    padding-left: 60px !important;
    font-size: .8em;
    background: #fcfcfc;
    border: 1px solid #abadb3;
    border-radius: 0 !important
}

.mod_subscribe #tl_subscribe .nl-email-container input.text:focus,
.mod_subscribe #tl_unsubscribe .nl-email-container input.text:focus,
.mod_unsubscribe #tl_subscribe .nl-email-container input.text:focus,
.mod_unsubscribe #tl_unsubscribe .nl-email-container input.text:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.mod_subscribe #tl_subscribe .submit,
.mod_subscribe #tl_unsubscribe .submit,
.mod_unsubscribe #tl_subscribe .submit,
.mod_unsubscribe #tl_unsubscribe .submit {
    float: left;
    height: auto !important;
    padding: 6px 40px;
    background: #cd1719;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: none !important;
    cursor: pointer
}

@media all and (max-width:600px) {
    .mod_subscribe #tl_subscribe .submit,
    .mod_subscribe #tl_unsubscribe .submit,
    .mod_unsubscribe #tl_subscribe .submit,
    .mod_unsubscribe #tl_unsubscribe .submit {
        white-space: normal
    }
}

.mod_subscribe #tl_subscribe .submit:focus,
.mod_subscribe #tl_subscribe .submit:hover,
.mod_subscribe #tl_unsubscribe .submit:focus,
.mod_subscribe #tl_unsubscribe .submit:hover,
.mod_unsubscribe #tl_subscribe .submit:focus,
.mod_unsubscribe #tl_subscribe .submit:hover,
.mod_unsubscribe #tl_unsubscribe .submit:focus,
.mod_unsubscribe #tl_unsubscribe .submit:hover {
    background: #e01c1e
}

.mod_subscribe .confirm,
.mod_subscribe .error,
.mod_unsubscribe .confirm,
.mod_unsubscribe .error {
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 700
}

.form-fields-full .intl-tel-input,
.form-fields-full .widget {
    width: 100% !important;
    margin-bottom: 10px
}

.form-fields-full .intl-tel-input .col-lg-9,
.form-fields-full .widget .col-lg-9 {
    width: 70% !important
}

.form-fields-full .intl-tel-input .col-lg-9 input,
.form-fields-full .intl-tel-input .col-lg-9 select,
.form-fields-full .widget .col-lg-9 input,
.form-fields-full .widget .col-lg-9 select {
    height: 36px;
    margin: 0 !important
}

.form-fields-full .intl-tel-input {
    width: 100% !important;
    margin-bottom: 10px
}

.form-fields-full .intl-tel-input input {
    width: 70% !important;
    height: 36px;
    margin: 0 !important
}

#form-anfrage,
#form-reg {
    padding-top: 30px
}

#form-anfrage .widget,
#form-reg .widget {
    width: 49%
}

@media all and (max-width:700px) {
    #form-anfrage .widget,
    #form-reg .widget {
        width: 100%
    }
}

#form-anfrage .widget:nth-child(odd),
#form-reg .widget:nth-child(odd) {
    margin-right: 0
}

#form-reg-free {
    padding-top: 30px
}

#form-reg-free .widget {
    width: 49%
}

@media all and (max-width:700px) {
    #form-reg-free .widget {
        width: 100%
    }
}

#form-reg-free .widget:nth-child(odd) {
    margin-right: 0
}

#feedback-ausbildung .widget-calendar input.text,
#feedback-events .widget-calendar input.text {
    width: 40% !important;
    margin-right: 2% !important
}

@media all and (max-width:980px) {
    #feedback-ausbildung .widget-calendar input.text,
    #feedback-events .widget-calendar input.text {
        width: 90% !important;
        margin-right: 0 !important
    }
}

@media all and (max-width:700px) {
    #feedback-ausbildung .widget-calendar input.text,
    #feedback-events .widget-calendar input.text {
        width: 100% !important
    }
}

@media all and (max-width:980px) {
    #feedback-ausbildung .widget-calendar .ui-datepicker-trigger,
    #feedback-events .widget-calendar .ui-datepicker-trigger {
        float: left;
        clear: both
    }
}

@media all and (max-width:980px) {
    #feedback-ausbildung .widget-calendar .calendar-info,
    #feedback-events .widget-calendar .calendar-info {
        width: 100%;
        float: left;
        margin-left: 0
    }
}

#feedback-ausbildung .widget-text-full,
#feedback-events .widget-text-full {
    width: 100% !important
}

#feedback-ausbildung .widget-text-full .control-label.col-lg-3,
#feedback-events .widget-text-full .control-label.col-lg-3 {
    width: 40% !important;
    margin-right: 2%;
    padding: 0;
    font-weight: 400 !important;
    text-align: left !important
}

@media all and (max-width:980px) {
    #feedback-ausbildung .widget-text-full .control-label.col-lg-3,
    #feedback-events .widget-text-full .control-label.col-lg-3 {
        width: 100% !important;
        margin-right: 0 !important
    }
}

#feedback-ausbildung .widget-text-full .col-lg-9,
#feedback-events .widget-text-full .col-lg-9 {
    width: 40% !important;
    margin-right: 2%
}

@media all and (max-width:980px) {
    #feedback-ausbildung .widget-text-full .col-lg-9,
    #feedback-events .widget-text-full .col-lg-9 {
        width: 90% !important;
        margin-right: 0 !important
    }
}

@media all and (max-width:700px) {
    #feedback-ausbildung .widget-text-full .col-lg-9,
    #feedback-events .widget-text-full .col-lg-9 {
        width: 100% !important
    }
}

#feedback-ausbildung .widget-textarea,
#feedback-events .widget-textarea {
    width: 100% !important
}

#feedback-ausbildung .widget-textarea .control-label.col-lg-3,
#feedback-events .widget-textarea .control-label.col-lg-3 {
    width: 40% !important;
    margin-right: 2%;
    padding: 0;
    font-weight: 400 !important;
    text-align: left !important
}

@media all and (max-width:980px) {
    #feedback-ausbildung .widget-textarea .control-label.col-lg-3,
    #feedback-events .widget-textarea .control-label.col-lg-3 {
        width: 90% !important;
        margin-right: 0 !important
    }
}

@media all and (max-width:700px) {
    #feedback-ausbildung .widget-textarea .control-label.col-lg-3,
    #feedback-events .widget-textarea .control-label.col-lg-3 {
        width: 100% !important
    }
}

#feedback-ausbildung .widget-textarea .col-lg-9,
#feedback-events .widget-textarea .col-lg-9 {
    width: 40% !important;
    margin-right: 2%
}

@media all and (max-width:980px) {
    #feedback-ausbildung .widget-textarea .col-lg-9,
    #feedback-events .widget-textarea .col-lg-9 {
        width: 90% !important;
        margin-right: 0 !important
    }
}

@media all and (max-width:700px) {
    #feedback-ausbildung .widget-textarea .col-lg-9,
    #feedback-events .widget-textarea .col-lg-9 {
        width: 100% !important
    }
}

#feedback-ausbildung .widget-radio,
#feedback-events .widget-radio {
    width: 100% !important
}

#feedback-ausbildung .widget-radio .radio_container,
#feedback-events .widget-radio .radio_container {
    width: 100%;
    float: left
}

#feedback-ausbildung .widget-radio .radio_container legend,
#feedback-events .widget-radio .radio_container legend {
    width: 40%;
    float: left;
    margin-right: 2%;
    font-size: 16px;
    border-bottom: none
}

@media all and (max-width:980px) {
    #feedback-ausbildung .widget-radio .radio_container legend,
    #feedback-events .widget-radio .radio_container legend {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0
    }
}

#feedback-ausbildung .checkbox_container,
#feedback-ausbildung .widget-checkbox,
#feedback-events .checkbox_container,
#feedback-events .widget-checkbox {
    width: 100% !important;
    margin-bottom: 20px !important
}

#feedback-ausbildung .checkbox_container legend,
#feedback-ausbildung .widget-checkbox legend,
#feedback-events .checkbox_container legend,
#feedback-events .widget-checkbox legend {
    width: 40%;
    float: left;
    margin-right: 2%;
    font-size: 16px;
    border-bottom: none
}

@media all and (max-width:980px) {
    #feedback-ausbildung .checkbox_container legend,
    #feedback-ausbildung .widget-checkbox legend,
    #feedback-events .checkbox_container legend,
    #feedback-events .widget-checkbox legend {
        width: 100% !important;
        margin-right: 0 !important
    }
}

#feedback-ausbildung .checkbox_container .checkboxes-container,
#feedback-ausbildung .widget-checkbox .checkboxes-container,
#feedback-events .checkbox_container .checkboxes-container,
#feedback-events .widget-checkbox .checkboxes-container {
    width: 40%;
    float: left
}

@media all and (max-width:980px) {
    #feedback-ausbildung .checkbox_container .checkboxes-container,
    #feedback-ausbildung .widget-checkbox .checkboxes-container,
    #feedback-events .checkbox_container .checkboxes-container,
    #feedback-events .widget-checkbox .checkboxes-container {
        width: 100% !important;
        margin-right: 0 !important
    }
}

#feedback-ausbildung .checkbox_container .checkboxes-container span,
#feedback-ausbildung .widget-checkbox .checkboxes-container span,
#feedback-events .checkbox_container .checkboxes-container span,
#feedback-events .widget-checkbox .checkboxes-container span {
    width: 100%;
    display: block;
    position: relative
}

#feedback-ausbildung .checkbox_container .checkboxes-container span input.checkbox,
#feedback-ausbildung .widget-checkbox .checkboxes-container span input.checkbox,
#feedback-events .checkbox_container .checkboxes-container span input.checkbox,
#feedback-events .widget-checkbox .checkboxes-container span input.checkbox {
    width: auto !important;
    margin-right: 10px !important;
    position: absolute
}

#feedback-ausbildung .checkbox_container .checkboxes-container span label,
#feedback-ausbildung .widget-checkbox .checkboxes-container span label,
#feedback-events .checkbox_container .checkboxes-container span label,
#feedback-events .widget-checkbox .checkboxes-container span label {
    margin-left: 20px;
    font-weight: 400 !important
}

#feedback-ausbildung .form-navigation,
#feedback-events .form-navigation {
    width: 100%;
    float: left;
    margin-top: 50px;
    margin-bottom: 20px
}

#feedback-ausbildung .form-navigation button,
#feedback-events .form-navigation button {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 20px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important;
    color: #fff;
    background: #cd1719;
    text-transform: uppercase;
    border: none !important
}

#feedback-ausbildung .form-navigation button:focus,
#feedback-ausbildung .form-navigation button:hover,
#feedback-events .form-navigation button:focus,
#feedback-events .form-navigation button:hover {
    background: #e01c1e
}

.mod_mp_form_steps {
    width: 100%;
    float: left;
    display: none
}

.mod_mp_form_steps ul {
    list-style: inherit
}

.mod_mp_form_steps ul li {
    display: inline-block;
    float: left;
    margin-right: 10px
}

.mod_mp_form_steps ul li a {
    color: #cd1719
}

.mod_mp_form_steps ul li a:focus,
.mod_mp_form_steps ul li a:hover {
    color: #cd1719;
    text-decoration: underline
}

#form-login {
    margin-top: 50px
}

@media all and (max-width:600px) {
    #form-login table {
        width: 100%
    }
}

@media all and (max-width:600px) {
    #form-login td {
        width: 100%;
        display: block
    }
}

#form-login .col_first {
    padding-right: 40px
}

@media all and (max-width:600px) {
    #form-login .col_first {
        margin-bottom: 10px;
        padding-right: 0
    }
}

#form-login input.text {
    width: 300px;
    margin-bottom: 20px
}

@media all and (max-width:600px) {
    #form-login input.text {
        width: 100% !important;
        margin-right: 0 !important
    }
}

#form-login .checkbox_container {
    margin-bottom: 20px
}

.submit {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important
}

#datenschutztext {
    width: 100%;
    float: left;
    margin-top: 50px;
    padding: 20px;
    background: #faebd7
}

#cboxOverlay {
    z-index: 999999999 !important
}

#colorbox {
    z-index: 9999999999 !important
}

.ce_teaser_5_spaltig_bild_link {
    width: 12.5%;
    float: left;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

@media all and (max-width:980px) {
    .ce_teaser_5_spaltig_bild_link {
        width: 49%
    }
}

@media all and (max-width:600px) {
    .ce_teaser_5_spaltig_bild_link {
        width: 100%
    }
}

.ce_teaser_5_spaltig_bild_link .ce_image.attribute .ce_image .image_container a img {
    width: auto;
    max-width: 130px;
    max-height: 100%
}

@media all and (max-width:1280px) {
    .ce_teaser_5_spaltig_bild_link .ce_image.attribute .ce_image .image_container a img {
        max-width: 100px
    }
}

.ce_teaser_50_spaltig_bild_link {
    width: 20%;
    float: left;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

@media all and (max-width:980px) {
    .ce_teaser_50_spaltig_bild_link {
        width: 49%
    }
}

@media all and (max-width:600px) {
    .ce_teaser_50_spaltig_bild_link {
        width: 100%
    }
}

.ce_teaser_50_spaltig_bild_link .ce_image.attribute .ce_image .image_container a img {
    width: auto;
    max-height: 180px;
    max-width: 100%
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text {
    width: 23.5%;
    float: left;
    position: relative;
    margin-right: 2%;
    margin-bottom: 40px
}

@media all and (max-width:980px) {
    .ce_teaser_4_spaltig_2x_ueberschrift_bild_text {
        width: 49%
    }
    .ce_teaser_4_spaltig_2x_ueberschrift_bild_text:nth-child(even) {
        margin-right: 0
    }
}

@media all and (max-width:600px) {
    .ce_teaser_4_spaltig_2x_ueberschrift_bild_text {
        width: 100%;
        margin-right: 0
    }
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text:nth-child(4n+4) {
    margin-right: 0
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text div.ce_headline {
    width: 100%;
    float: left
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text div.ce_headline h3 {
    margin: 0;
    color: #303030;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text p.sub-hl {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    padding: 0 0 20px 0;
    color: #cd1719;
    font-size: 22px;
    border-bottom: 1px solid #303030
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text .ce_image.attribute.image {
    width: 100%;
    float: left;
    margin-bottom: 20px
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text .ce_image.attribute.image .ce_image .image_container {
    width: 100%;
    float: left;
    position: relative
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text .ce_image.attribute.image .ce_image .image_container img {
    width: 100%;
    float: left
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text .text-container {
    width: 100%;
    float: left;
    position: relative;
    padding-bottom: 25px
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text .text-container::after {
    content: url(/files/Ahrens/assets/icon-arrow-right-grey-long.png);
    position: absolute;
    bottom: 0;
    left: 0
}

.ce_teaser_4_spaltig_2x_ueberschrift_bild_text .text-container p {
    margin: 0;
    color: #303030
}

.ce_teaser_3_spaltig_ueberschrift_bild,.ce_teaser_4_spaltig_ueberschrift_bild {
    width: 32.66666667%;
    float: left;
    position: relative;
    margin-right: 1%;
    margin-bottom: 20px;
    padding: 10px;
    background: #f3f1f1
}

@media all and (max-width:980px) {
    .ce_teaser_3_spaltig_ueberschrift_bild,.ce_teaser_4_spaltig_ueberschrift_bild {
        width: 49%
    }
    .ce_teaser_3_spaltig_ueberschrift_bild:nth-child(even),.ce_teaser_4_spaltig_ueberschrift_bild:nth-child(even) {
        margin-right: 0
    }
}

@media all and (max-width:600px) {
    .ce_teaser_3_spaltig_ueberschrift_bild,.ce_teaser_4_spaltig_ueberschrift_bild {
        width: 100%;
        margin-right: 0
    }
}

.ce_teaser_3_spaltig_ueberschrift_bild:nth-child(3n+3),.ce_teaser_4_spaltig_ueberschrift_bild:nth-child(3n+4) {
    margin-right: 0
}

.ce_teaser_3_spaltig_ueberschrift_bild div.ce_headline,.ce_teaser_4_spaltig_ueberschrift_bild div.ce_headline {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #303030
}

.ce_teaser_3_spaltig_ueberschrift_bild div.ce_headline h3,.ce_teaser_4_spaltig_ueberschrift_bild div.ce_headline h3 {
    margin: 0;
    color: #303030;
    font-size: 24px;
    font-weight: 600
}

.ce_teaser_3_spaltig_ueberschrift_bild .ce_image.attribute.image,.ce_teaser_4_spaltig_ueberschrift_bild .ce_image.attribute.image {
    width: 100%;
    float: left
}

.ce_teaser_3_spaltig_ueberschrift_bild .ce_image.attribute.image .ce_image .image_container,.ce_teaser_4_spaltig_ueberschrift_bild .ce_image.attribute.image .ce_image .image_container {
    width: 100%;
    float: left;
    position: relative
}

.ce_teaser_3_spaltig_ueberschrift_bild .ce_image.attribute.image .ce_image .image_container img,.ce_teaser_4_spaltig_ueberschrift_bild .ce_image.attribute.image .ce_image .image_container img {
    width: 100%;
    float: left
}

.ce_teaser_3_spaltig_ueberschrift_bild .text-container,.ce_teaser_4_spaltig_ueberschrift_bild .text-container {
    width: 100%;
    float: left;
    position: relative;
    padding-bottom: 25px
}

.ce_teaser_3_spaltig_ueberschrift_bild .text-container::after,.ce_teaser_4_spaltig_ueberschrift_bild .text-container::after {
    content: url(/files/Ahrens/assets/icon-arrow-right-grey-long.png);
    position: absolute;
    bottom: 0;
    left: 0
}

.ce_teaser_3_spaltig_ueberschrift_bild .text-container p,.ce_teaser_4_spaltig_ueberschrift_bild .text-container p {
    margin: 0;
    color: #303030
}

.ce_teaser_2_spaltig_bild_text_logo,
.ce_teaser_3_spaltig_bild_text_logo,
.ce_teaser_4_spaltig_bild_text_logo{
    width: 48%;
    float: left;
    position: relative;
    margin-right: 4%;
    margin-bottom: 40px
}

@media all and (max-width:980px) {
    .ce_teaser_2_spaltig_bild_text_logo,
    .ce_teaser_3_spaltig_bild_text_logo,.ce_teaser_4_spaltig_bild_text_logo {
        width: 100% !important;
        margin-right: 0 !important
    }
}

.ce_teaser_2_spaltig_bild_text_logo:nth-child(even),
.ce_teaser_3_spaltig_bild_text_logo:nth-child(even),.ce_teaser_4_spaltig_bild_text_logo:nth-child(even) {
    margin-right: 0
}

.ce_teaser_2_spaltig_bild_text_logo a,
.ce_teaser_3_spaltig_bild_text_logo a,.ce_teaser_4_spaltig_bild_text_logo a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    top: 0;
    left: 0
}

.ce_teaser_2_spaltig_bild_text_logo a:focus,
.ce_teaser_3_spaltig_bild_text_logo a:focus,.ce_teaser_4_spaltig_bild_text_logo a:focus  {
    background: rgba(0, 0, 0, .3)
}

.ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image,
.ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image {
    width: 100%;
    float: left
}

.ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image .ce_image .image_container,
.ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image .ce_image .image_container,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image .ce_image .image_container {
    width: 100%;
    float: left
}

.ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image .ce_image .image_container img,
.ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image .ce_image .image_container img,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image .ce_image .image_container img {
    width: 100%;
    float: left
}

.ce_teaser_2_spaltig_bild_text_logo p,
.ce_teaser_3_spaltig_bild_text_logo p,.ce_teaser_4_spaltig_bild_text_logo p {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    padding: 10px 40px;
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
    background: rgba(137, 15, 5, .6)
}

.ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image.logo,
.ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image.logo,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image.logo {
    width: auto;
    position: absolute;
    top: 20px;
    right: 20px
}
.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image.logo {
top: 10px;
    right: 10px;
	
}
@media all and (max-width:1400px) {
    .ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image.logo,
    .ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image.logo,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image.logo {
        top: -20px;
        right: -20px
    }
}

@media all and (max-width:1100px) {
    .ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image.logo,
    .ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image.logo,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image.logo {
        width: 80px
    }
}

@media all and (max-width:767px) {
    .ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image.logo,
    .ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image.logo,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image.logo {
        width: auto
    }
}

.ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image.logo .ce_image .image_container,
.ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image.logo .ce_image .image_container,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image.logo .ce_image .image_container {
    width: auto;
    float: left
}

.ce_teaser_2_spaltig_bild_text_logo .ce_image.attribute.image.logo .ce_image .image_container img,
.ce_teaser_3_spaltig_bild_text_logo .ce_image.attribute.image.logo .ce_image .image_container img,.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image.logo .ce_image .image_container img {
    width: auto;
    float: left
}
.ce_teaser_4_spaltig_bild_text_logo .ce_image.attribute.image.logo .ce_image .image_container img {
	height: 70px;
	
}
.ce_teaser_3_spaltig_bild_text_logo,.ce_teaser_4_spaltig_bild_text_logo {
    width: 30.33333333%;
    float: left;
    position: relative;
    margin-right: 3%;
    margin-bottom: 30px
}
.ce_teaser_4_spaltig_bild_text_logo {
	width: 22.333%;
	
}
.ce_teaser_3_spaltig_bild_text_logo:nth-child(even),.ce_teaser_4_spaltig_bild_text_logo:nth-child(even) {
    margin-right: 3%
}

.ce_teaser_3_spaltig_bild_text_logo:nth-child(3n+3),.ce_teaser_4_spaltig_bild_text_logo:nth-child(3n+4) {
    margin-right: 0
}

.ce_teaser_4_spaltig_bild_text_ueberschrift {
    width: 23%;
    float: left;
    position: relative;
    margin-right: 2%;
    margin-bottom: 40px
}

@media all and (max-width:980px) {
    .ce_teaser_4_spaltig_bild_text_ueberschrift {
        width: 49%
    }
    .ce_teaser_4_spaltig_bild_text_ueberschrift:nth-child(even) {
        margin-right: 0
    }
}

@media all and (max-width:600px) {
    .ce_teaser_4_spaltig_bild_text_ueberschrift {
        width: 100%;
        margin-right: 0
    }
}

.ce_teaser_4_spaltig_bild_text_ueberschrift a {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    position: relative;
    top: 0;
    left: 0
}

.ce_teaser_4_spaltig_bild_text_ueberschrift a:focus {
    background: rgba(0, 0, 0, .3)
}

.ce_teaser_4_spaltig_bild_text_ueberschrift .ce_image.attribute.image {
    width: 100%;
    float: left
}

.ce_teaser_4_spaltig_bild_text_ueberschrift .ce_image.attribute.image .ce_image .image_container {
    width: 100%;
    float: left
}

.ce_teaser_4_spaltig_bild_text_ueberschrift .ce_image.attribute.image .ce_image .image_container img {
    width: 100%;
    float: left
}

.ce_teaser_4_spaltig_bild_text_ueberschrift p {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -120%);
    -webkit-transform: translate(-50%, -120%);
    -moz-transform: translate(-50%, -120%);
    transform: translate(-50%, -120%);
    padding: 10px 40px;
    color: #fff;
    font-size: 18px;
    background: rgba(137, 15, 5, .6)
}

.ce_teaser_4_spaltig_bild_text_ueberschrift div.ce_headline {
    width: 100%;
    float: left;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #303030
}

.ce_teaser_4_spaltig_bild_text_ueberschrift div.ce_headline h3 {
    margin: 0;
    color: #303030;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase
}

.quick-search-box {
    width: 40px;
    height: 260px;
    position: absolute;
    bottom: 0;
    right: 0;
    -ms-transform: translate(0, 100%);
    -webkit-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    transform: translate(0, 100%);
    z-index: 99999
}

@media all and (max-width:767px) {
    .quick-search-box {
        display: none
    }
}

@media all and (max-width:980px) {
    .quick-search-box.quick-search-box-opened {
        width: 100%
    }
}

.quick-search-box-teaser {
    width: 40px;
    height: 260px;
    position: absolute;
    top: 0;
    right: 0;
    background: #cd1719
}

@media all and (max-width:980px) {
    .quick-search-box-teaser {
        z-index: 999999
    }
}

.quick-search-box-teaser:hover {
    cursor: pointer
}

.quick-search-box-teaser p {
    width: 260px;
    height: 40px;
    position: absolute;
    top: 95px;
    left: -100px;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #fff;
    text-transform: uppercase
}

.quick-search-box-content {
    width: 930px;
    height: 460px;
    display: none;
    position: absolute;
    top: 0;
    right: -400px;
    padding: 40px 40px 40px 40px;
    background: #fff;
    transition: all .5s ease
}

@media all and (max-width:767px) {
    .quick-search-box-content {
        background: #f3f3f3
    }
}

.quick-search-box-content .mod_customnav ul li a {
    color: #303030
}

.quick-search-box-content .mod_customnav ul li a:focus,
.quick-search-box-content .mod_customnav ul li a:hover {
    color: #cd1719;
    text-decoration: underline
}

.quick-search-box-content .mod_customnav ul li span {
    color: #cd1719;
    font-style: italic
}

.quick-search-box-content .quick-search-renovation-container {
    width: 33%;
    float: left;
    padding-right: 30px
}

@media all and (max-width:767px) {
    .quick-search-box-content .quick-search-renovation-container {
        width: 50%;
        margin-bottom: 20px
    }
}

@media all and (max-width:600px) {
    .quick-search-box-content .quick-search-renovation-container {
        width: 100%;
        padding-right: 0
    }
}

.quick-search-box-content .quick-search-new-container {
    width: 33%;
    float: left;
    padding-right: 30px
}

@media all and (max-width:767px) {
    .quick-search-box-content .quick-search-new-container {
        width: 50%;
        margin-bottom: 20px
    }
}

@media all and (max-width:600px) {
    .quick-search-box-content .quick-search-new-container {
        width: 100%;
        padding-right: 0
    }
}

.quick-search-box-content .quick-search-service-container {
    width: 33%;
    float: left;
    padding-right: 30px
}

@media all and (max-width:767px) {
    .quick-search-box-content .quick-search-service-container {
        width: 100%;
        padding-right: 0
    }
}

.quick-search-box-content.quick-search-box-content-opened {
    display: block;
    right: 40px
}

@media all and (max-width:980px) {
    .quick-search-box-content.quick-search-box-content-opened {
        width: 100%;
        height: auto;
        right: 0;
        float: left;
        padding-right: 40px;
        z-index: 99999
    }
}

.quick-search-box-content a {
    color: #fff
}

.quick-search-box-content a:hover {
    color: #fff;
    text-decoration: underline
}

.quick-search-box-icon-open {
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    top: 10px;
    right: 7px;
    background: url(/files/Ahrens/assets/icon-plus-white-16.png) no-repeat center
}

@media all and (max-width:980px) {
    .quick-search-box-icon-open {
        z-index: 999999
    }
}

.quick-search-box-icon-open:hover {
    cursor: pointer
}

.quick-search-box-icon-open-nonvisible {
    display: none
}

.quick-search-box-icon-close {
    width: 16px;
    height: 16px;
    display: none;
    position: absolute;
    top: 15px;
    right: 11px;
    background: url(/files/Ahrens/assets/icon-close-white-16.png);
    background-size: 100%
}

@media all and (max-width:980px) {
    .quick-search-box-icon-close {
        z-index: 999999
    }
}

.quick-search-box-icon-close:hover {
    cursor: pointer
}

.quick-search-box-icon-close-visible {
    display: block
}

.box-with-btn {
    width: 100%;
    float: left
}

.box-with-btn .article-inner {
    padding: 20px !important;
    background: #e6e6e6;
    border: 20px solid #fff
}

@media all and (max-width:767px) {
    .box-with-btn .article-inner {
        border: none
    }
}

.box-with-btn .article-inner .ce_text {
    width: 100%;
    float: left
}

.box-with-btn .article-inner .ce_text h1 {
    width: 100%;
    float: left;
    margin-bottom: 20px
}

.box-with-btn .article-inner .ce_text p {
    width: 65%;
    float: left;
    padding-right: 50px
}

.box-with-btn .article-inner .ce_hyperlink {
    width: 35%;
    position: absolute;
    bottom: 20px;
    right: 20px
}

.box-with-btn .article-inner .ce_hyperlink a {
    display: inline-block;
    float: right;
    position: relative;
    padding: 10px 60px 10px 20px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    background: #cd1719
}

.box-with-btn .article-inner .ce_hyperlink a:focus,
.box-with-btn .article-inner .ce_hyperlink a:hover {
    text-decoration: none;
    background: #e01c1e
}

.box-with-btn .article-inner .ce_hyperlink a::after {
    content: url(/files/Ahrens/assets/icon-plus-white-16.png);
    position: absolute;
    top: 12px;
    right: 15px
}

@media all and (max-width:767px) {
    .home .box-with-btn {
        border-bottom: 20px solid #fff
    }
}

@media all and (max-width:550px) {
    .home .box-with-btn .article-inner {
        padding: 20px 50px 20px 20px !important
    }
}

@media all and (max-width:767px) {
    .home .box-with-btn .article-inner p {
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0
    }
}

@media all and (max-width:767px) {
    .home .box-with-btn .article-inner .ce_hyperlink {
        width: auto;
        position: relative;
        right: auto;
        bottom: auto;
        float: left
    }
}

@media all and (max-width:400px) {
    .home .box-with-btn .article-inner .ce_hyperlink a {
        font-size: 14px
    }
}

.box_bild_3_punkte {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 50px
}

.box_bild_3_punkte div.ce_headline {
    width: 100%;
    float: left;
    margin-bottom: 30px
}

.box_bild_3_punkte div.ce_headline h3 {
    margin: 0;
    color: #303030;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase
}

.box_bild_3_punkte .ce_image.attribute.image {
    width: 49%;
    float: left;
    margin-right: 2%
}

@media all and (max-width:980px) {
    .box_bild_3_punkte .ce_image.attribute.image {
        width: 100%;
        margin-right: 0
    }
}

.box_bild_3_punkte .ce_image.attribute.image .ce_image .image_container {
    width: 100%;
    float: left;
    position: relative
}

.box_bild_3_punkte .ce_image.attribute.image .ce_image .image_container img {
    width: 100%;
    float: left
}

.box_bild_3_punkte .text-container {
    width: 49%;
    float: left
}

@media all and (max-width:980px) {
    .box_bild_3_punkte .text-container {
        width: 100%
    }
}

.box_bild_3_punkte .text-container .text-box {
    width: 80%;
    padding: 10px 0;
    border-bottom: 1px solid #dadada
}

@media all and (max-width:980px) {
    .box_bild_3_punkte .text-container .text-box {
        width: 100%
    }
}

.box_bild_3_punkte .text-container .text-box div.ce_headline {
    width: 100%;
    float: left;
    margin-bottom: 0
}

.box_bild_3_punkte .text-container .text-box div.ce_headline h4 {
    margin: 0;
    color: #303030;
    font-size: 24px;
    font-weight: 600
}

.box_bild_3_punkte .text-container .text-box p {
    color: #cd1719;
    font-size: 22px
}

.box_bild_3_punkte .text-container .text-box.first {
    border-top: 1px solid #dadada
}

@media all and (max-width:980px) {
    .box_bild_3_punkte .text-container .text-box.first {
        border-top: none
    }
}

.box_bild_3_punkte .logos-container {
    width: 100%;
    float: left;
    margin-top: 20px
}

.box_bild_3_punkte .logos-container .ce_image.attribute.image {
    width: auto;
    float: left;
    margin-right: 10px
}

@media all and (max-width:480px) {
    .box_bild_3_punkte .logos-container .ce_image.attribute.image {
        width: 32%;
        margin-right: 2%
    }
}

.box_bild_3_punkte .logos-container .ce_image.attribute.image .ce_image .image_container {
    width: auto;
    float: left
}

.box_bild_3_punkte .logos-container .ce_image.attribute.image .ce_image .image_container img {
    width: auto;
    float: left
}

.box_bild_3_punkte .logos-container .ce_image.attribute.image.last {
    margin-right: 0
}

@media all and (max-width:480px) {
    .box_bild_3_punkte .logos-container .ce_image.attribute.image.last {
        margin-right: 0
    }
}

.box-products-facts,
.box-products-facts-wider-image,
.box-products-facts-wider-image-text-below-full {
    width: 100%;
    float: left;
    margin: 30px 0;
    padding: 40px 20px;
    background: #fff;
    background: -webkit-linear-gradient(left, #fff, #e9e8e5);
    background: -o-linear-gradient(right, #fff, #e9e8e5);
    background: -moz-linear-gradient(right, #fff, #e9e8e5);
    background: linear-gradient(to right, #fff, #e9e8e5)
}

.box-products-facts ul,
.box-products-facts-wider-image ul,
.box-products-facts-wider-image-text-below-full ul {
    padding-left: 20px;
    list-style: inherit
}

@media all and (max-width:800px) {
    .box-products-facts ul li,
    .box-products-facts-wider-image ul li,
    .box-products-facts-wider-image-text-below-full ul li {
        word-wrap: break-word;
        overflow-wrap: break-word
    }
}

.box-products-facts ol,
.box-products-facts-wider-image ol,
.box-products-facts-wider-image-text-below-full ol {
    padding-left: 20px
}

.box-products-facts .ce_image.attribute.image,
.box-products-facts-wider-image .ce_image.attribute.image,
.box-products-facts-wider-image-text-below-full .ce_image.attribute.image {
    width: 33%;
    float: left;
    position: relative
}

.box-products-facts .ce_image.attribute.image .ce_image .image_container,
.box-products-facts-wider-image .ce_image.attribute.image .ce_image .image_container,
.box-products-facts-wider-image-text-below-full .ce_image.attribute.image .ce_image .image_container {
    width: 100%;
    float: left;
    position: relative
}

.box-products-facts .ce_image.attribute.image .ce_image .image_container a.cboxElement,
.box-products-facts-wider-image .ce_image.attribute.image .ce_image .image_container a.cboxElement,
.box-products-facts-wider-image-text-below-full .ce_image.attribute.image .ce_image .image_container a.cboxElement {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    position: relative
}

.box-products-facts .ce_image.attribute.image .ce_image .image_container a.cboxElement:after,
.box-products-facts-wider-image .ce_image.attribute.image .ce_image .image_container a.cboxElement:after,
.box-products-facts-wider-image-text-below-full .ce_image.attribute.image .ce_image .image_container a.cboxElement:after {
    content: url(/files/Ahrens/assets/icon-search-grey-25.png);
    position: absolute;
    bottom: 0;
    right: 40px
}

.box-products-facts .ce_image.attribute.image .ce_image .image_container img,
.box-products-facts-wider-image .ce_image.attribute.image .ce_image .image_container img,
.box-products-facts-wider-image-text-below-full .ce_image.attribute.image .ce_image .image_container img {
    width: auto;
    float: left;
    position: relative;
    left: 50%;
    padding-right: 80px;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.box-products-facts .logos-container .ce_image.attribute.image .ce_image .image_container a.cboxElement:after,
.box-products-facts-wider-image .logos-container .ce_image.attribute.image .ce_image .image_container a.cboxElement:after,
.box-products-facts-wider-image-text-below-full .logos-container .ce_image.attribute.image .ce_image .image_container a.cboxElement:after {
    content: "";
    display: none
}

.box-products-facts .text-container,
.box-products-facts-wider-image .text-container,
.box-products-facts-wider-image-text-below-full .text-container {
    width: 66%;
    float: left
}

.box-products-facts .text-container div.ce_headline,
.box-products-facts-wider-image .text-container div.ce_headline,
.box-products-facts-wider-image-text-below-full .text-container div.ce_headline {
    width: 100%;
    float: left;
    margin-bottom: 0
}

.box-products-facts .text-container div.ce_headline h2,
.box-products-facts-wider-image .text-container div.ce_headline h2,
.box-products-facts-wider-image-text-below-full .text-container div.ce_headline h2 {
    margin: 50px 0 20px 0;
    color: #303030;
    font-size: 36px;
    font-weight: 600
}

.box-products-facts .text-container .text-above,
.box-products-facts-wider-image .text-container .text-above,
.box-products-facts-wider-image-text-below-full .text-container .text-above {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #303030
}

.box-products-facts .text-container .logos-container,
.box-products-facts-wider-image .text-container .logos-container,
.box-products-facts-wider-image-text-below-full .text-container .logos-container {
    width: 100%;
    float: left;
    margin-bottom: 30px
}

.box-products-facts .text-container .logos-container .ce_image.attribute.image,
.box-products-facts-wider-image .text-container .logos-container .ce_image.attribute.image,
.box-products-facts-wider-image-text-below-full .text-container .logos-container .ce_image.attribute.image {
    width: auto;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px
}

.box-products-facts .text-container .logos-container .ce_image.attribute.image:after,
.box-products-facts-wider-image .text-container .logos-container .ce_image.attribute.image:after,
.box-products-facts-wider-image-text-below-full .text-container .logos-container .ce_image.attribute.image:after {
    display: none
}

.box-products-facts .text-container .logos-container .ce_image.attribute.image .ce_image .image_container,
.box-products-facts-wider-image .text-container .logos-container .ce_image.attribute.image .ce_image .image_container,
.box-products-facts-wider-image-text-below-full .text-container .logos-container .ce_image.attribute.image .ce_image .image_container {
    width: 100%;
    float: left;
    position: relative
}

.box-products-facts .text-container .logos-container .ce_image.attribute.image .ce_image .image_container img,
.box-products-facts-wider-image .text-container .logos-container .ce_image.attribute.image .ce_image .image_container img,
.box-products-facts-wider-image-text-below-full .text-container .logos-container .ce_image.attribute.image .ce_image .image_container img {
    padding-right: 0
}

.box-products-facts .text-container .text-under,
.box-products-facts-wider-image .text-container .text-under,
.box-products-facts-wider-image-text-below-full .text-container .text-under {
    width: 100%;
    float: left
}

.box-products-facts-wider-image .ce_image.attribute.image {
    width: 55%
}

.box-products-facts-wider-image .ce_image.attribute.image .ce_image .image_container img {
    padding-right: 0
}

.box-products-facts-wider-image .text-container {
    width: 45%
}

.box-products-facts-wider-image-text-below-full .ce_image.attribute.image {
    width: 55%;
    margin-bottom: 30px
}

.box-products-facts-wider-image-text-below-full .ce_image.attribute.image .ce_image .image_container img {
    padding-right: 0
}

.box-products-facts-wider-image-text-below-full .text-container {
    width: 45%;
    margin-bottom: 30px
}

.box-products-facts-wider-image-text-below-full .text-container .text-above {
    border-bottom: none
}

.box-products-facts-wider-image-text-below-full .text-under {
    width: 100%;
    float: left
}

.box-products-facts-wider-image-text-below-full .text-under .text-under-left {
    width: 55%;
    float: left;
    padding-right: 40px
}

.box-products-facts-wider-image-text-below-full .text-under .text-under-right {
    width: 45%;
    float: left
}

.box-products-facts-wider-image-text-below-full .text-under .text-under-right .logos-container {
    width: 100%;
    float: left
}

.box-products-facts-wider-image-text-below-full .text-under .text-under-right .logos-container .ce_image.attribute.image {
    width: auto;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px
}

.ce_box_balken_rot {
    width: 100%;
    float: left;
    position: relative;
    padding: 10px 20px !important;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    background: #cd1719;
    border-right: 20px solid #fff;
    border-bottom: 50px solid #fff;
    border-left: 20px solid #fff
}

@media all and (max-width:1100px) {
    .ce_box_balken_rot {
        padding: 20px !important
    }
}

@media all and (max-width:980px) {
    .ce_box_balken_rot {
        border-right: none;
        border-bottom: none;
        border-left: none
    }
}

@media all and (max-width:600px) {
    .ce_box_balken_rot {
        font-size: 20px
    }
}

.ce_box_balken_rot a.link-full {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0
}

.ce_box_balken_rot .text-links {
    width: 35%;
    min-height: 80px;
    float: left;
    padding: 60px 0 0 40px
}

@media all and (max-width:1100px) {
    .ce_box_balken_rot .text-links {
        width: auto;
        min-height: inherit;
        margin-bottom: 20px;
        padding: 0;
        border-bottom: 2px solid #fff
    }
}

.ce_box_balken_rot .text-rechts {
    width: 65%;
    float: left;
    padding: 15px 60px 0 30px;
    color: #fff;
    font-size: 18px;
    border-left: 1px solid #000
}

@media all and (max-width:1100px) {
    .ce_box_balken_rot .text-rechts {
        width: 100%;
        padding: 0;
        border-left: none
    }
}

@media all and (max-width:600px) {
    .ce_box_balken_rot .text-rechts {
        font-size: 16px
    }
}

.ce_box_balken_rot .text-rechts .text-big {
    font-size: 26px
}

@media all and (max-width:600px) {
    .ce_box_balken_rot .text-rechts .text-big {
        font-size: 20px
    }
}

.ce_box_balken_rot.hover {
    background: #e01c1e
}

.ce_produkte_datensatz,
.ce_produkte_datensatz_rte {
    width: 100%;
    float: left
}

.ce_produkte_datensatz .data-box,
.ce_produkte_datensatz_rte .data-box {
    width: 100%;
    float: left
}

.ce_produkte_datensatz .data-box .col-left,
.ce_produkte_datensatz_rte .data-box .col-left {
    width: 20%;
    float: left;
    margin-bottom: 10px;
    padding-right: 30px
}

.ce_produkte_datensatz .data-box .col-right,
.ce_produkte_datensatz_rte .data-box .col-right {
    width: 80%;
    float: left;
    margin-bottom: 10px
}

.ce_produkte_datensatz .data-box ul,
.ce_produkte_datensatz_rte .data-box ul {
    padding-left: 20px;
    list-style: inherit
}

@media all and (max-width:800px) {
    .ce_produkte_datensatz .data-box ul li,
    .ce_produkte_datensatz_rte .data-box ul li {
        word-wrap: break-word;
        overflow-wrap: break-word
    }
}

.ce_produkte_download {
    width: 100%;
    float: left;
    margin-top: 50px
}

.ce_produkte_download div.ce_headline {
    width: 100%;
    float: left;
    margin-bottom: 30px
}

.ce_produkte_download div.ce_headline h4 {
    position: relative;
    margin: 0;
    padding-left: 60px;
    color: #303030;
    font-size: 22px;
    font-weight: 600
}

.ce_produkte_download div.ce_headline h4:after {
    content: url(/files/Ahrens/assets/icon-download-grey.png);
    position: absolute;
    top: 0;
    left: 0
}

.ce_produkte_download .download-container {
    width: 100%;
    float: left;
    margin-bottom: 30px
}

.ce_produkte_download .download-container .ce_image.attribute.image {
    width: 30%;
    float: left;
    padding-right: 50px
}

.ce_produkte_download .download-container .ce_image.attribute.image .ce_image .image_container {
    width: auto;
    max-width: 100%;
    float: left
}

.ce_produkte_download .download-container .ce_image.attribute.image .ce_image .image_container a.cboxElement {
    width: 100%;
    height: 100%;
    display: block;
    float: left
}

.ce_produkte_download .download-container .ce_image.attribute.image .ce_image .image_container img {
    width: auto;
    float: left
}

.ce_produkte_download .download-container .text-container {
    width: 70%;
    float: left
}

.ce_produkte_download .download-container .text-container .text {
    width: 100%;
    float: left;
    margin-bottom: 50px;
    font-size: 18px
}

.ce_produkte_download .download-container .text-container a {
    min-width: 300px;
    display: inline-block;
    float: left;
    position: relative;
    padding: 10px 60px 10px 20px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    background: #cd1719
}

.ce_produkte_download .download-container .text-container a:focus,
.ce_produkte_download .download-container .text-container a:hover {
    text-decoration: none;
    background: #e01c1e
}

.ce_produkte_download .download-container .text-container a::after {
    content: url(/files/Ahrens/assets/icon-plus-white-16.png);
    position: absolute;
    top: 12px;
    right: 15px
}

.ce_produkte_download .download-container .text-container a .size {
    display: none
}

.ce_produkte_download.produkte-download-light .download-container .ce_image.attribute.image {
    width: 20%
}

.ce_produkte_download.produkte-download-light .download-container .text-container a {
    width: 100%;
    min-width: inherit;
    min-height: 42px;
    display: block;
    float: left;
    padding: 10px 0 20px 60px;
    color: #cd1719;
    font-size: 20px;
    background: url(/files/Ahrens/assets/icon-downloads-arrow-down.png) no-repeat top 0 left 0;
    border-bottom: 1px solid #eee;
    text-transform: inherit
}

.ce_produkte_download.produkte-download-light .download-container .text-container a:focus,
.ce_produkte_download.produkte-download-light .download-container .text-container a:hover {
    color: #cd1719;
    text-decoration: underline;
    background: url(/files/Ahrens/assets/icon-downloads-arrow-down.png) no-repeat top 0 left 0
}

.ce_produkte_download.produkte-download-light .download-container .text-container a::after {
    display: none
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig {
    width: 100%;
    float: left
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .title-row {
    width: 100%;
    float: left
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .title-row h3 {
    color: #cd1719;
    font-size: 20px
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .title-row .title-first {
    width: 32%;
    float: left;
    margin-right: 2%
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .title-row .title-second {
    width: 32%;
    float: left;
    margin-right: 2%
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .title-row .title-third {
    width: 32%;
    float: left
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .image-row {
    width: 100%;
    float: left
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .image-row .image-first {
    width: 32%;
    float: left;
    margin-right: 2%
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .image-row .image-second {
    width: 32%;
    float: left;
    margin-right: 2%
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .image-row .image-third {
    width: 32%;
    float: left
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .text-row {
    width: 100%;
    float: left
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .text-row p {
    color: #878686
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .text-row .text-first {
    width: 32%;
    float: left;
    margin-right: 2%
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .text-row .text-second {
    width: 32%;
    float: left;
    margin-right: 2%
}

.ce_produkte_bild_mit_ueberschrift_3_spaltig .text-row .text-third {
    width: 32%;
    float: left
}

.box-hotline a[href^="tel:"] {
    display: inline-block;
    position: relative;
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 90px;
    font-size: 62px
}

.box-hotline a[href^="tel:"]::before {
    content: url(/files/Ahrens/assets/icon-phone-call-72.png);
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    background: 0 0
}

.ce_box_downloads {
    width: 100%;
    float: left;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dadada
}

.ce_box_downloads .dl-row,
.ce_box_downloads .dl-title {
    width: 100%;
    float: left;
    margin-bottom: 10px
}

.ce_box_downloads .dl-row .dl-left,
.ce_box_downloads .dl-row .title-left,
.ce_box_downloads .dl-title .dl-left,
.ce_box_downloads .dl-title .title-left {
    width: 50%;
    float: left;
    padding-right: 50px
}

.ce_box_downloads .dl-row .dl-left .ce_headline,
.ce_box_downloads .dl-row .title-left .ce_headline,
.ce_box_downloads .dl-title .dl-left .ce_headline,
.ce_box_downloads .dl-title .title-left .ce_headline {
    margin-bottom: 0
}

.ce_box_downloads .dl-row .dl-left .ce_box_downloads,
.ce_box_downloads .dl-row .title-left .ce_box_downloads,
.ce_box_downloads .dl-title .dl-left .ce_box_downloads,
.ce_box_downloads .dl-title .title-left .ce_box_downloads {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.ce_box_downloads .dl-row .dl-right,
.ce_box_downloads .dl-row .title-right,
.ce_box_downloads .dl-title .dl-right,
.ce_box_downloads .dl-title .title-right {
    width: 50%;
    float: left
}

.ce_box_downloads .dl-row .dl-right .ce_headline,
.ce_box_downloads .dl-row .title-right .ce_headline,
.ce_box_downloads .dl-title .dl-right .ce_headline,
.ce_box_downloads .dl-title .title-right .ce_headline {
    margin-bottom: 0
}

.ce_box_downloads .dl-row .dl-right .ce_box_downloads,
.ce_box_downloads .dl-row .title-right .ce_box_downloads,
.ce_box_downloads .dl-title .dl-right .ce_box_downloads,
.ce_box_downloads .dl-title .title-right .ce_box_downloads {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.ce_box_technische_zeichnungen {
    width: 100%;
    float: left
}

.ce_box_technische_zeichnungen .dl-row {
    width: 100%;
    float: left;
    margin-bottom: 10px
}

.mod_article.bg-gradient-gray .article-inner {
    padding: 20px;
    background: linear-gradient(to right, #fff, #e9e8e5)
}

.container-text-fb .container-left {
    width: 70%;
    float: left;
    padding-right: 40px
}

@media all and (max-width:1520px) {
    .container-text-fb .container-left {
        width: 60%
    }
}

@media all and (max-width:1260px) {
    .container-text-fb .container-left {
        width: 50%;
        padding-right: 20px
    }
}

@media all and (max-width:980px) {
    .container-text-fb .container-left {
        width: 100%
    }
}

.container-text-fb .container-left .btn-default a:active,
.container-text-fb .container-left .btn-default a:hover {
    color: #fff
}

.container-text-fb .container-left .text-tags {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    padding: 20px;
    list-style: none;
    background: #eee
}

.container-text-fb .container-left .text-tags li {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px
}

.container-text-fb .container-left .text-tags li span {
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 8px 12px;
    color: #303030;
    background: #fff
}

.container-text-fb .container-fb {
    width: 30%;
    float: left;
    text-align: right
}

@media all and (max-width:1520px) {
    .container-text-fb .container-fb {
        width: 40%
    }
}

@media all and (max-width:1260px) {
    .container-text-fb .container-fb {
        width: 50%
    }
}

@media all and (max-width:980px) {
    .container-text-fb .container-fb {
        width: 100%;
        text-align: left
    }
}

.header-slideout {
    width: 100%;
    height: 0;
    display: block;
    visibility: visible;
    float: left;
    position: relative;
    background: #e6e6e6;
    -webkit-transition: height .5s ease-in;
    transition: height .5s ease-in
}

.header-slideout .slideout-inner {
    width: 1520px;
    float: left;
    position: relative;
    left: 50%;
    margin-left: -760px;
    padding: 20px
}

@media all and (max-width:1640px) {
    .header-slideout .slideout-inner {
        width: 100%;
        left: 0;
        margin-left: 0
    }
}

.header-slideout .slideout-inner .one-third {
    width: 32.66666667%;
    float: left;
    margin-right: 1%
}

@media screen and (max-width:980px) {
    .header-slideout .slideout-inner .one-third {
        width: 100%
    }
}

.header-slideout .slideout-inner .two-third {
    width: 66.3333333%;
    float: left
}

@media screen and (max-width:980px) {
    .header-slideout .slideout-inner .two-third {
        display: none
    }
}

.header-slideout .slideout-inner .ce_form {
    padding-top: 0 !important
}

.header-slideout .slideout-inner .ce_form .checkbox_container span {
    margin-right: 10px
}

.header-slideout .slideout-inner .ce_form .widget-submit {
    margin-top: 10px
}

.header-slideout .slideout-inner .ce_form .intl-tel-input .country-list {
    z-index: 9999999999
}

.header-slideout .slideout-inner .ce_form .error {
    font-size: 16px !important
}

.header-slideout .slideout-inner .ce_form .message.ajaxconfirm {
    color: #cd1719
}

.header-slideout .slideout-inner p.hl {
    font-family: "Titillium Web", Arial, sans-serif !important;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2em !important
}

.header-slideout .slideout-inner a.btn-default {
    color: #fff;
    background: #333
}

.header-slideout .slideout-inner a.btn-default:hover {
    background: #e01c1e
}

.header-slideout .header-slideout-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer
}

.header-slideout.expanded {
    height: 450px
}

@media screen and (max-width:1470px) {
    .header-slideout.expanded {
        height: 470px
    }
}

@media screen and (max-width:1310px) {
    .header-slideout.expanded {
        height: 490px
    }
}

.content-left {
    width: 1150px;
    float: left;
    position: relative;
    padding-right: 100px
}

@media all and (max-width:1480px) {
    .content-left {
        width: 75%
    }
}

@media all and (max-width:1280px) {
    .content-left {
        width: 70%
    }
}

@media all and (max-width:980px) {
    .content-left {
        width: 100%;
        margin: 0 !important;
        padding: 0 0 20px 0
    }
}

.content-left .article-inner {
    width: 100%;
    float: left;
    left: 0;
    margin-left: 0;
    padding: 0 !important
}

.content-left .mod_breadcrumb {
    display: none
}

.content-left .content-left-text {
    width: 100%;
    float: left
}

.content-left .content-left-text h2 {
    margin-top: 0
}

.content-left .content-left-gallery {
    width: 100%;
    float: left
}

.sidebar-right {
    width: 330px;
    float: left
}

@media all and (max-width:1480px) {
    .sidebar-right {
        width: 25%
    }
}

@media all and (max-width:1280px) {
    .sidebar-right {
        width: 30%
    }
}

@media all and (max-width:980px) {
    .sidebar-right {
        width: 100%;
        margin: 0 !important
    }
}

.sidebar-right .article-inner {
    width: 100%;
    float: left;
    left: 0;
    margin-left: 0;
    padding: 0 !important
}

.sidebar-right .article-inner .ce_image {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .ce_image .image_container {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .ce_image .image_container img {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .ce_hyperlink {
    width: 100%;
    float: left;
    margin-bottom: 10px
}

.sidebar-right .article-inner .ce_hyperlink a {
    width: 100%;
    display: inline-block;
    float: left;
    position: relative;
    padding: 10px 60px 10px 20px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    background: #cd1719
}

.sidebar-right .article-inner .ce_hyperlink a:focus,
.sidebar-right .article-inner .ce_hyperlink a:hover {
    text-decoration: none;
    background: #e01c1e
}

.sidebar-right .article-inner .ce_hyperlink a::after {
    content: url(/files/Ahrens/assets/icon-plus-white.png);
    position: absolute;
    top: 14px;
    right: 20px
}

.sidebar-right .article-inner .sidebar-right-image {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .sidebar-right-image .ce_image.attribute {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .sidebar-right-image .ce_image.attribute .ce_image {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .sidebar-right-image .ce_image.attribute .ce_image .image_container {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .sidebar-right-image .ce_image.attribute .ce_image .image_container img {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .sidebar-right-logo {
    width: 100%;
    float: left;
    margin-bottom: 30px
}

.sidebar-right .article-inner .sidebar-right-logo .image_container {
    width: 100%;
    float: left
}

.sidebar-right .article-inner .sidebar-right-logo .image_container img {
    width: auto;
    float: left;
    position: relative;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.sidebar-right .article-inner .box-grey {
    width: 100%;
    float: left;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 20px;
    background: #eee
}

.sidebar-right .article-inner .box-grey h5 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase
}

.sidebar-right .article-inner .box-grey ul {
    list-style: square
}

.sidebar-right .article-inner .box-grey ul li {
    margin-bottom: 15px
}

.sidebar-right .article-inner .box-grey a[href^="mailto:"],
.sidebar-right .article-inner .box-grey a[href^="tel:"] {
    margin-top: 6px;
    margin-bottom: 10px
}

.sidebar-right .article-inner .sidebar-right-contact {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    padding: 20px;
    background: #eee
}

.sidebar-right .article-inner .sidebar-right-contact h6 {
    margin-top: 0;
    font-size: 20px;
    text-transform: uppercase
}

.sidebar-right .article-inner .sidebar-right-contact a {
    display: inline-block;
    position: relative;
    padding: 10px 20px 10px 40px;
    color: #fff;
    background: #cd1719
}

.sidebar-right .article-inner .sidebar-right-contact a:focus,
.sidebar-right .article-inner .sidebar-right-contact a:hover {
    text-decoration: none;
    background: #e01c1e
}

.sidebar-right .article-inner .sidebar-right-contact a::before {
    content: url(/files/KLINGER_International/assets/icon-arrow-right-double-white.png);
    position: absolute;
    top: 12px;
    left: 15px
}

.ce_accordion {
    width: 100%;
    float: left;
    border-top: 1px solid #eee
}

.ce_accordion .toggler {
    width: 100%;
    position: relative;
    padding: 20px 20px 20px 40px;
    color: #303030;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer
}

.ce_accordion .toggler:hover {
    color: #cd1719
}

.ce_accordion .toggler::before {
    content: url(/files/Ahrens/assets/icon-plus-dark-grey-18.png);
    position: absolute;
    top: 20px;
    left: 10px;
}

.ce_accordion .toggler.active {
    color: #cd1719
}

.ce_accordion .accordion {
    width: 100%;
    float: left;
    padding: 20px 20px 20px 40px
}

.ce_accordion.last {
    border-bottom: 1px solid #eee
}

.nav-filter-news {
    width: 100%;
    float: left
}

.nav-filter-news ul {
    margin: 0;
    padding: 0
}

.nav-filter-news ul li {
    display: inline-block;
    float: left;
    margin-right: 20px
}

.nav-filter-news ul li a,
.nav-filter-news ul li span {
    display: block;
    padding: 10px 30px;
    color: #303030;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    background: #f3f3f3;
    border: 2px solid #f3f3f3
}

.nav-filter-news ul li a:hover,
.nav-filter-news ul li span:hover {
    color: #fff;
    text-decoration: none;
    background: #cd1719;
    border: 2px solid #cd1719
}

.nav-filter-news ul li span {
    border: 2px solid #cd1719
}

.nav-filter-news ul li span:hover {
    color: #303030;
    background: #f3f3f3;
    border: 2px solid #cd1719
}

.mod_newslist {
    width: 100%;
    float: left;
    margin-top: 50px
}

.mod_newslist .layout_latest {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 30px;
    padding: 10px 0;
    border-top: 1px solid #303030
}

.mod_newslist .layout_latest::after {
    content: url(/files/Ahrens/assets/icon-plus-white.png);
    position: absolute;
    bottom: 10px;
    right: 0;
    padding: 10px 10px 2px 10px;
    background: #cd1719;
    cursor: pointer
}

.mod_newslist .layout_latest:hover::after {
    background: #333
}

.mod_newslist .layout_latest .link-full a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -99999px;
    overflow: hidden;
    z-index: 99
}

.mod_newslist .layout_latest .image_container {
    width: 30%;
    float: left;
    padding-right: 30px
}

.mod_newslist .layout_latest .image_container img {
    float: left
}

.mod_newslist .layout_latest .text-container {
    width: 70%;
    float: left;
    position: relative;
    padding-right: 80px
}

.mod_newslist .layout_latest .text-container .news-archive {
    margin: 20px 0 15px 0;
    font-size: 14px
}

.mod_newslist .layout_latest .text-container h2 {
    margin: 0 0 20px 0
}

.mod_newslist .layout_latest .text-container h2 a {
    color: #303030;
    text-decoration: none
}

.mod_newslist .layout_latest .text-container .more {
    display: none
}

.pagination {
    width: 100%;
    float: left;
    padding: 20px
}

.pagination li {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px
}

.pagination li a {
    display: inline-block;
    padding: 6px 14px;
    color: #fff;
    font-size: 18px;
    background: #cd1719;
    border: 1px solid #cd1719
}

.pagination li a:hover,
.pagination li span {
    display: inline-block;
    padding: 6px 14px;
    color: #303030;
    font-size: 18px;
    text-decoration: none;
    background: #fff;
    border: 1px solid #cd1719
}

.mod_newsreader {
    width: 100%;
    float: left;
    padding-top: 30px
}

@media all and (max-width:980px) {
    .mod_newsreader {
        padding-top: 0
    }
}

@media all and (max-width:980px) {
    .mod_newsreader .layout_full .text-container {
        float: left
    }
}

.mod_newsreader h1.main-hl {
    margin: 0 !important;
    color: #cd1719;
    font-size: 36px;
    text-transform: uppercase
}

@media all and (max-width:400px) {
    .mod_newsreader h1.main-hl {
        font-size: 26px
    }
}

@media all and (max-width:300px) {
    .mod_newsreader h1.main-hl {
        word-break: break-word
    }
}

.mod_newsreader h2.main-hl {
    margin: 0 0 20px 0 !important;
    font-size: 28px;
    text-transform: uppercase
}

@media all and (max-width:400px) {
    .mod_newsreader h2.main-hl {
        font-size: 22px
    }
}

@media all and (max-width:300px) {
    .mod_newsreader h2.main-hl {
        word-break: break-word
    }
}

.mod_newsreader h2 {
    margin: 30px 0 20px 0 !important;
    font-size: 28px
}

@media all and (max-width:400px) {
    .mod_newsreader h2 {
        font-size: 22px
    }
}

@media all and (max-width:300px) {
    .mod_newsreader h2 {
        word-break: break-word
    }
}

.mod_newsreader .ce_text {
    width: 100%;
    float: left
}

.mod_newsreader .ce_image {
    width: 100%;
    float: left;
    margin: 40px 0
}

.mod_newsreader ul {
    list-style: inherit;
    padding-left: 20px
}

.mod_newsreader ol {
    padding-left: 15px
}

.mod_newsreader .mod_sharebuttons {
    width: 192px;
    float: left;
    margin: 10px 8px 40px 0;
    padding: 50px 0;
    border-top: 1px solid #303030 !important;
    border-bottom: 1px solid #303030 !important
}

.mod_newsreader .mod_sharebuttons h6 {
    display: none
}

.mod_newsreader .mod_sharebuttons .sharebuttons ul.boxxed li a {
    background-image: url(/system/modules/sharebuttons/assets/boxxed/sprites-32.png) !important
}

.mod_newsreader .mod_sharebuttons .sharebuttons ul.boxxed .social-sharing-yt a img {
    margin: 4px
}

.mod_newsreader .back {
    opacity: 0
}

.mod_newsreader .pagination {
    width: 100%;
    float: left;
    margin-top: 30px;
    padding: 0
}

.mod_newsreader .pagination .total {
    display: none
}

.mod_newsreader .pagination ul {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0
}

.mod_newsreader .pagination ul li a {
    padding: 0 !important;
    border: none !important
}

.mod_newsreader .pagination ul li a .index {
    display: none
}

.mod_newsreader .pagination ul li a span {
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    background: #cd1719
}

.mod_newsreader .pagination ul li a span:hover {
    text-decoration: none;
    background: #e01c1e
}

.mod_newsreader .pagination ul li a span::before {
    position: absolute;
    top: 10px
}

.mod_newsreader .pagination ul li:nth-child(1) a span {
    padding: 10px 20px 10px 50px
}

.mod_newsreader .pagination ul li:nth-child(1) a span::before {
    content: url(/files/Ahrens/assets/icon-arrow-left-white-24.png);
    left: 10px
}

.mod_newsreader .pagination ul li:nth-child(2) {
    display: none
}

.mod_newsreader .pagination ul li:nth-child(3) a span {
    padding: 10px 50px 10px 20px
}

.mod_newsreader .pagination ul li:nth-child(3) a span::before {
    content: url(/files/Ahrens/assets/icon-arrow-right-white-24.png);
    right: 10px
}

.mod_newsreader .pagination ul li.active {
    display: none
}

.blog-content {
    width: 64%;
    float: left;
    margin: 0 5% 0 0;
    padding: 0
}

@media all and (max-width:980px) {
    .blog-content {
        width: 100%;
        margin: 0;
        padding: 0 0 20px 0
    }
}

.blog-content a {
    color: #cd1719 !important
}

.blog-content a:focus,
.blog-content a:hover {
    color: #cd1719 !important
}

.blog-sidebar {
    width: 31%;
    float: left;
    padding: 20px;
    border: 1px solid #cdd5e0
}

@media all and (max-width:980px) {
    .blog-sidebar {
        width: 100%
    }
}

.blog-sidebar .blog-social {
    margin-top: 0
}

.blog-sidebar .blog-social h6 {
    margin-top: 0;
    font-size: 20px
}

.blog-sidebar .blog-social .mod_sharebuttons {
    width: 192px;
    float: left;
    margin: 10px 8px 40px 0;
    padding: 0;
    border-top: 0 !important;
    border-bottom: 0 !important
}

.blog-sidebar .blog-social .mod_sharebuttons .sharebuttons ul.boxxed li a {
    background-image: url(/system/modules/sharebuttons/assets/boxxed/sprites-32.png) !important
}

.blog-sidebar .blog-social .mod_sharebuttons .sharebuttons ul.boxxed .social-sharing-yt a img {
    margin: 4px
}

.blog-sidebar .blog-social .rssicon {
    float: left;
    padding-top: 10px
}

.blog-sidebar .blog-current {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    padding: 20px;
    background: #eee
}

.blog-sidebar .blog-current .mod_newslist {
    width: 100%;
    margin-top: 0
}

@media all and (max-width:980px) {
    .blog-sidebar .blog-current .mod_newslist {
        padding: 0
    }
}

.blog-sidebar .blog-current .mod_newslist .layout_simple {
    width: 100%;
    background: 0 0;
    margin: 0 0 5px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #303030
}

.blog-sidebar .blog-current .mod_newslist .layout_simple time {
    display: none
}

.blog-sidebar .blog-current .mod_newslist .layout_simple a {
    color: #303030
}

.blog-sidebar .blog-current .mod_newslist .layout_simple a:focus,
.blog-sidebar .blog-current .mod_newslist .layout_simple a:hover {
    color: #cd1719
}

.blog-sidebar .blog-current .mod_newslist .layout_simple:hover::after {
    display: none
}

.blog-sidebar .blog-current .mod_newslist .arc_2.featured {
    display: none
}

.blog-sidebar .blog-current h6 {
    margin-top: 0;
    font-size: 20px
}

.blog-sidebar .blog-tags {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    padding: 20px;
    background: #eee
}

.blog-sidebar .blog-tags h6 {
    font-size: 20px
}

.blog-sidebar .blog-tags .mod_tagcloud {
    width: 100%;
    float: left
}

.blog-sidebar .blog-tags .mod_tagcloud ul {
    padding-left: 0;
    list-style: none
}

.blog-sidebar .blog-tags .mod_tagcloud ul li {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px
}

.blog-sidebar .blog-tags .mod_tagcloud ul li a {
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 8px 12px;
    color: #303030;
    background: #fff
}

.blog-sidebar .blog-tags .mod_tagcloud ul li a:focus,
.blog-sidebar .blog-tags .mod_tagcloud ul li a:hover {
    color: #fff !important;
    text-decoration: none;
    background: #cd1719
}

.blog-social {
    width: 100%;
    float: left;
    margin-top: 50px
}

.back {
    width: 100%;
    float: left
}

.box-grey-red-line {
    width: 100%;
    float: left;
    margin: 20px 0;
    padding: 20px;
    background: #eee;
    border-top: 4px solid #cd1719
}

.box-grey-red-line h1,
.box-grey-red-line h2,
.box-grey-red-line h3,
.box-grey-red-line h4,
.box-grey-red-line h5,
.box-grey-red-line h6 {
    color: #303030
}

.ce_gallery {
    width: 100%;
    float: left;
    margin: 40px 0
}

.ce_gallery ul {
    list-style: none;
    padding-left: 0
}

.ce_gallery li {
    float: left;
    position: relative;
    margin-bottom: 10px
}

.ce_gallery li .image_container img {
    float: left
}

.ce_gallery li .image_container .caption {
    display: none
}

.ce_gallery ul.cols_3 li {
    width: 32%;
    margin-right: 2%
}

.ce_gallery ul.cols_4 li {
    width: 24.25%;
    margin-right: 1%
}

.ce_gallery ul.cols_5 li {
    width: 19.2%;
    margin-right: 1%
}

.ce_gallery li.col_last {
    margin-right: 0 !important
}

.caption {
    margin-top: 5px;
    color: #737373
}

.image_container.float_right {
    float: right;
    margin-bottom: 20px;
    margin-left: 40px
}

@media all and (max-width:980px) {
    .image_container.float_right {
        float: left;
        margin-left: 0
    }
}

.image_container.float_left {
    float: left;
    margin-bottom: 20px;
    margin-right: 40px
}

.ce_image.img-one-half {
    width: 49%;
    float: left;
    margin-right: 2%
}

@media all and (max-width:600px) {
    .ce_image.img-one-half {
        width: 100%
    }
}

.ce_image.img-one-half.right {
    margin-right: 0
}

.ce_image.img-one-third {
    width: 32%;
    float: left;
    margin-right: 2%
}

@media all and (max-width:600px) {
    .ce_image.img-one-third {
        width: 100%
    }
}

.ce_image.img-one-third.right {
    margin-right: 0
}

#special-position-geschosshoch.ce_image.img-one-third {
    width: auto;
    position: relative;
    left: -60px;
    margin-right: 0
}

#special-position-geschosshoch.ce_image.img-one-third .image_container {
    position: relative;
    padding: 100px 200px 0 0
}

#special-position-geschosshoch.ce_image.img-one-third .image_container .caption {
    width: 200px !important;
    position: absolute;
    top: 100px;
    right: 0
}

.ce_youtube {
    margin: 40px 0
}

.ce_download {
    width: 100%;
    float: left;
    margin-top: 10px;
    margin-bottom: 20px
}

.ce_download .mime_icon {
    display: none
}

.ce_download a {
    width: 100%;
    min-height: 42px;
    display: block;
    float: left;
    padding: 10px 0 20px 60px;
    font-size: 20px;
    background: url(/files/Ahrens/assets/icon-downloads-arrow-down.png) no-repeat top 0 left 0;
    border-bottom: 1px solid #eee
}

.ce_download a .size {
    display: none
}

.nav-sub {
    width: 100%;
    float: left
}

.nav-sub ul {
    margin: 0;
    padding: 0;
    list-style: inherit
}

.nav-sub ul li {
    width: 100%;
    float: left
}

.nav-sub ul li a {
    color: #303030
}

.nav-sub ul li a:hover {
    color: #cd1719
}

.nav-sub ul li span {
    color: #cd1719;
    font-style: italic
}

.nav-sub ul.level_2 {
    padding-left: 20px
}

.nav-sub ul.level_2 li.active ul.level_3,
.nav-sub ul.level_2 li.trail ul.level_3 {
    display: block
}

.nav-sub ul.level_3 {
    display: none;
    padding-left: 40px
}

.nav-sub ul.level_3 li.active ul.level_4,
.nav-sub ul.level_3 li.trail ul.level_4 {
    display: block
}

.nav-sub ul.level_4 {
    display: none;
    padding-left: 60px
}

.mod_faqpage {
    width: 100%;
    float: left
}

.mod_faqpage section {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    padding: 20px;
    background: #eee
}

.ce_box_team {
    width: 45%;
    float: left;
    margin-right: 10%;
    margin-bottom: 40px;
    background: #f3f3f3
}

@media all and (max-width:980px) {
    .ce_box_team {
        width: 100%;
        height: auto !important
    }
}

.ce_box_team h3 {
    margin: 20px 0 20px 0
}

.ce_box_team .image_container {
    width: 35%;
    float: left;
    position: relative
}

@media all and (max-width:980px) {
    .ce_box_team .image_container {
        width: 35%
    }
}

@media all and (max-width:600px) {
    .ce_box_team .image_container {
        width: 100%
    }
}

.ce_box_team .image_container img {
    float: left
}

.ce_box_team .text-container {
    width: 65%;
    min-height: 286px;
    float: left;
    position: relative;
    padding: 20px
}

@media all and (max-width:980px) {
    .ce_box_team .text-container {
        width: 65%;
        min-height: inherit
    }
}

@media all and (max-width:600px) {
    .ce_box_team .text-container {
        width: 100%
    }
}

.ce_box_team .text-container .ce_headline {
    margin-bottom: 0
}

.ce_box_team .text-container .ce_headline h3 {
    margin-top: 0;
    margin-bottom: 40px;
    color: #cd1719;
    font-size: 22px;
    text-transform: uppercase
}

.ce_box_team.right {
    margin-right: 0
}

.rote-box {
    width: 49%;
    float: left;
    position: relative;
    margin-right: 2%;
    margin-bottom: 20px;
    background: #cd1719
}

@media all and (max-width:980px) {
    .rote-box {
        width: 100%;
        height: 30vw !important;
        margin-right: 0
    }
}

@media all and (max-width:600px) {
    .rote-box {
        height: 50vw !important
    }
}

.rote-box h3 {
    position: absolute;
    top: 50%;
    left: 30px;
    margin-top: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font-size: 64px;
    font-weight: 400 !important;
    text-transform: uppercase
}

@media all and (max-width:980px) {
    .rote-box h3 {
        font-size: 7vw
    }
}

@media all and (max-width:600px) {
    .rote-box h3 {
        font-size: 14vw
    }
}

@media all and (max-width:600px) {
    .rote-box h3 {
        font-size: 12vw
    }
}

@media all and (max-width:400px) {
    .rote-box h3 {
        font-size: 10vw
    }
}

.rote-box:nth-child(even) {
    margin-right: 0
}

.ce_table {
    width: 100%;
    display: block;
    overflow-x: scroll
}

.ce_table caption {
    padding: 10px;
    background: #eee
}

.ce_table td,
.ce_table th {
    padding: 10px;
    border: 1px solid #303030
}

.ce_tabelle_standorte {
    width: 100%;
    float: left
}

.ce_tabelle_standorte .table-left {
    width: 50%;
    float: left;
    padding-right: 50px
}

@media all and (max-width:767px) {
    .ce_tabelle_standorte .table-left {
        width: 100%;
        padding-right: 0
    }
}

.ce_tabelle_standorte .table-right {
    width: 50%;
    float: left
}

@media all and (max-width:767px) {
    .ce_tabelle_standorte .table-right {
        width: 100%
    }
}

.ce_tabelle_standorte .table-box {
    width: 100%;
    float: left;
    margin-bottom: 30px
}

.table-normal-two table {
    width: 100%
}

@media all and (max-width:980px) {
    .table-normal-two table {
        display: block;
        overflow-x: scroll
    }
}

.table-normal-two table tbody tr td {
    width: 50%;
    padding: 5px 0
}

.carousel-feedback .caroufredsel_controls {
    width: 100%;
    float: left;
    margin-bottom: 20px
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi {
    width: 100%;
    position: relative
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_prev {
    width: 32px;
    height: 32px;
    float: left;
    position: relative;
    margin-right: 10px;
    background: #cd1719;
    cursor: pointer
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_prev:hover {
    background: #e01c1e
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_prev::before {
    content: url(/files/Ahrens/assets/icon-arrow-left-white.png);
    position: absolute;
    top: 4px;
    left: 4px
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_prev span {
    position: absolute;
    text-indent: -9999px
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_button {
    width: 32px;
    height: 32px;
    float: left;
    position: relative;
    margin-right: 10px;
    background: #cd1719;
    cursor: pointer
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_button:hover {
    background: #e01c1e
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_button::before {
    content: url(/files/Ahrens/assets/icon-pause-white.png);
    position: absolute;
    top: 4px;
    left: 4px
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_button span {
    position: absolute;
    text-indent: -9999px
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_button.paused {
    background: #e6e6e6
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_next {
    width: 32px;
    height: 32px;
    float: left;
    position: relative;
    margin-right: 10px;
    background: #cd1719;
    cursor: pointer
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_next:hover {
    background: #e01c1e
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_next::before {
    content: url(/files/Ahrens/assets/icon-arrow-right-white.png);
    position: absolute;
    top: 4px;
    left: 4px
}

.carousel-feedback .caroufredsel_controls .caroufredsel_navi .caroufredsel_next span {
    position: absolute;
    text-indent: -9999px
}

.imagemap-container {
    width: 100%;
    float: left
}

.mod_booknav {
    width: 100%;
    float: left
}

.mod_booknav ul {
    margin: 0
}

.mod_booknav ul li {
    display: inline-block;
    float: left;
    margin-right: 10px
}

.mod_booknav ul li a {
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    background: #cd1719
}

.mod_booknav ul li a:hover {
    text-decoration: none;
    background: #e01c1e
}

.mod_booknav ul li a::before {
    position: absolute;
    top: 10px
}

.mod_booknav ul li.prev a {
    padding: 10px 20px 10px 50px
}

.mod_booknav ul li.prev a::before {
    content: url(/files/Ahrens/assets/icon-arrow-left-white-24.png);
    left: 10px
}

.mod_booknav ul li.up a {
    padding: 10px 20px 10px 20px
}

.mod_booknav ul li.up a::before {
    left: 10px
}

.mod_booknav ul li.next a {
    padding: 10px 50px 10px 20px
}

.mod_booknav ul li.next a::before {
    content: url(/files/Ahrens/assets/icon-arrow-right-white-24.png);
    right: 10px
}

.vco-storyjs .vco-feature p {
    font-family: "Open Sans", Arial, sans-serif !important;
    color: #303030 !important
}

.vco-storyjs .vco-feature .vco-slider h2.date {
    font-family: "Open Sans", Arial, sans-serif !important
}

.mod_article.article-iframe .article-inner {
    width: 100%;
    left: 0;
    margin-left: 0;
    padding: 0;
    background: 0 0
}

.ce_hyperlink.produktinfo-light::after {
    display: none
}

.ce_hyperlink.produktinfo-light.block a {
    width: 100%;
    min-width: inherit;
    min-height: 42px;
    display: block;
    float: left;
    padding: 10px 0 20px 60px;
    color: #cd1719;
    font-size: 20px;
    background: url(/files/Ahrens/assets/icon-downloads-arrow-down.png) no-repeat top 0 left 0;
    border-bottom: 1px solid #eee;
    text-transform: inherit
}

.g-recaptcha {
    margin-bottom: 2em
}

#startseite .flex-caption .caption_title_line p:nth-child(2) {
    background: #cd1719;
    margin-top: 20px;
    font-size: 20px;
    padding: 0
}

#startseite .flex-caption .caption_title_line p:nth-child(2) a {
    color: #fff;
    display: block;
    padding: 10px 70px 10px 50px
}

#startseite .flex-caption .caption_title_line p:nth-child(2) a:after {
    content: url(/files/Ahrens/assets/icon-plus-white-16.png);
    position: absolute;
    top: 12px;
    right: 15px
}

@media(max-width:1000px) {
    #startseite .flex-caption .caption_title_line p:nth-child(2) {
        width: 82%;
        font-size: 16px
    }
}

@media(max-width:600px) {
    #startseite .flex-caption .caption_title_line p:nth-child(2) a {
        color: #fff;
        display: block;
        padding: 3px 8px 3px 8px
    }
    #startseite .flex-caption .caption_title_line p:nth-child(2) {
        width: 80%;
        font-size: 16px
    }
}

.factbox-referenzen .rows {
    position: relative;
    clear: both;
    padding: 0 20px
}

.ahr-fact {
    width: 100%;
    background: #e6e6e6;
    float: left;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px
}

.ahr-fact p {
    color: #cd1719;
    font-weight: 700;
    padding: 20px 20px 10px 20px;
    text-align: center;
    font-size: 30px
}

.ahr-fact span.caption {
    color: #000 !important;
    font-weight: 400;
    font-size: 16px
}

.factbox-referenzen a:hover .ahr-fact {
    background: #d7d7d7 !important
}

@media(min-width:982px) {
    .factbox-referenzen .rows {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex
    }
}

.header-tel a,
.fixed-footer {
    color: #fff !important;
    background: none !important;
    position: relative;
    padding: 5px 20px 5px 40px !important;
    color: #fff;
    font-size: 18px !important;
    text-transform: uppercase;
    background: #cd1719 !important;
    cursor: pointer !important;
    margin-top: -10px
}

.header-tel a:focus,
.header-tel a:hover,
.fixed-footer a:hover,
.fixed-footer a:focus {
    background: #e01c1e !important;
    color: #fff !important
}

.header-tel a[href^="tel:"]::before,
.fixed-footer a[href^="tel:"]::before {
    background: none;
    position: absolute
}

.fixed-footer a[href^="tel:"]::before {
    top: 6px;
    left: 10px
}

.fixed-footer a {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 50px;
    color: #fff !important;
    padding-top: 10px
}

.fixed-footer {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 55%;
    height: 45px;
    z-index: 1000;
    padding: 0 !important
}

@media(min-width:992px) {
    .fixed-footer {
        display: none
    }
}

@media(max-width:980px) {
    .ce_flexSlider .flexslider .slides li img {
        height: auto !important;
        width: 100% !important;
        -ms-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}
.btn-highlight,.img-highlight {
position: absolute;
top: 5.5em;
left: 6.5em;
z-index: 10000;
text-align: right;
}
.hire-btn {
	max-width: 150px;
	max-height: 150px;
}
.btn-highlight a {
color: #fff !important;
background: none !important;
position: relative;
padding: 20px 50px 20px 50px !important;
color: #fff;
font-size: 18px !important;
text-transform: uppercase;
background: #cd1719 !important;
cursor: pointer !important;
display: inline-block;
text-align: center;
border-radius: 40px;
border: 1px solid white;
}
.btn-highlight a:hover {
	background: #e01c1e !important;
color: #fff !important;
text-decoration: none;
}

@media(max-width: 767px) {
	.btn-highlight{
		position: relative;
		top: initial;
		right: initial;
		text-align: center;
		margin: 1em 0 0.3em 0;
	}
	.img-highlight {
		
		top: 0;
		margin: 0;
		right: 1em;
		margin-top: 0.5em;
				
	}
	.img-highlight img {
		width: 5.5em; 
		height: auto;
	}
	.btn-highlight a,.img-highlight a {
		display: block;
	}
}
@media(min-width: 768px) {
.h1-with-pic .image_container.float_left {
	position: absolute;
	left: 0;
	top: 0;
}
.h1-with-pic.hl-with-sub-hl {
	padding-left: 180px;
}
.h1-with-pic.hl-with-sub-hl:after {
	left: 180px;
}

.ce_box_bild_4_punkte > .attribute.image .image_container {
	height: 500px;	
}
.ce_box_bild_4_punkte > .attribute.image .image_container img {
	height: 100%;
width: 100%;
object-fit: cover;
object-position: center;
}	
.ce_table.resp_table {
		overflow-x: initial;
	}

}
@media(max-width: 767px) {
	.h1-with-pic .image_container.float_left {
	
		display: none;
	}
	
}
.ce_table thead th {
	background: #f3f3f3;
}
.ce_table thead th p {
	margin-bottom: 0;
}
.padding-top-null {
	padding-top: 0;
}

.padding-top-20 {
	padding-top: 20px;
}
.title-red h2 {
	color: #cd1719;	
}
.title-upper h2 {
	text-transform: uppercase;
}
.job-title h2 {
	margin-top: 0;
}
.job-title table th,
.job-title table td {
	border: none;
	background: none;
}
.job-title table th.head_0  {
	padding-left: 0;
}
.job-title table td {
	padding-block: 0;
}
.job-title table .col_0 {
	padding-left: 0;
} 
.recruit {
	position: relative;
}
.recruit::before {
	content: "";
	position: absolute;
	top: -1em;
	left: -1em;
	background: url(/files/Ahrens/images/AHRENS-0434_Logo_Nachbau_02.png) no-repeat;
	background-size: contain;
	display: block;
	width: 5em;
	height: 5em;
	z-index: 9;
}
@media (min-width: 1200px) {
	.recruit::before {
		content: "";
		position: absolute;
		top: -4em;
		left: -1em;
		background: url(/files/Ahrens/images/AHRENS-0434_Logo_Nachbau_02.png) no-repeat;
		background-size: contain;
		display: block;
		width: 9em;
		height: 9em;
		z-index: 9;
	}
}
@media (min-width: 992px) {
	.mod_article.padding-top-null .article-inner {
		padding-top: 0;
	}
	.padding-right-null {
		padding-right: 0;
	}
	.mod_article.padding-right-null .article-inner {
		padding-right: 0;
	}
}
.overflow-visible {
	overflow: visible;	
}
.social-sharing-yt.social-sharing {
  display: inline-block;
}
.deactivate-link a{
	text-decoration: none;
	cursor:default;
}

.box-grey a[href^="tel:"] {
	cursor: pointer;
}
.box-grey a[href^="tel:"]:hover {
	color: #cd1719 !important;
  text-decoration: none !important;
}
.box-grey a[href^="tel:"]:focus::before, .box-grey a[href^="tel:"]:hover::before {
  background: #cd1719;
}
.headline-margin-0 h1,.headline-margin-0 h2,.headline-margin-0 h3,.headline-margin-0 h4,.headline-margin-0 h5{margin:0}.slick-slide{position:relative;height:100%}.slick-slide .ce_image,.slick-slide .ce_hyperlink{height:100%}.slick-slide .ce_image .image_container,.slick-slide .ce_hyperlink .image_container{height:100%}.slick-slide .ce_image .image_container img,.slick-slide .ce_hyperlink .image_container img{width:100%;height:100%;object-fit:cover}.slick-slide .ce_text{display:none;position:absolute;width:unset;bottom:2em;left:0;background-color:rgba(255, 255, 255, 0.6);padding:0.5em 3em;font-size:1.2rem;line-height:2rem;font-weight:600}@media (min-width:767px){.slick-slide .ce_text{font-size:2rem;line-height:3rem;display:inline-block}}.btn-red{background:#cd1719;color:white;border-radius:15px;font-size:1.2rem;font-weight:600;text-align:center}@media (min-width:992px){.btn-red{font-size:2rem;width:473px}}.btn-red:hover{background:#911011;transition:0.2s ease-in all}.btn-red a{color:white !important;padding:0;margin:0;width:100%;height:100%;display:block;padding:2em 0}.btn-red a::before{content:none}.btn-red a:hover{cursor:pointer;color:white !important;text-decoration:none}.btn-red a:focus,.btn-red a:focus-visible,.btn-red a:visited,.btn-red a:active{color:white !important}.ce_accordion .toggler{padding:20px 20px 20px 50px}.ce_accordion .toggler::before{content:"";background:#cd1719;width:1.5em;height:1.5em;top:15px;left:5px}.ce_accordion .toggler::after{content:"";width:0.8em;height:0.8em;position:absolute;top:22.2px;left:12.4px;background-color:#cd1719;background:url(/files/Ahrens/assets/icon-plus-white-16.png) no-repeat center;background-size:contain}.ce_accordion .toggler.active{color:#cd1719}.border_seperator{background:#cd1719;width:7em;height:0.6em;margin-top:0.5em;margin-bottom:1.5em}.checkbox-list ul{list-style:none;padding-left:0}.checkbox-list ul li{display:flex;gap:1em;margin-bottom:1em}.checkbox-list ul li::before{content:"";display:inline-block;width:1.5em;height:1.5em;background:url(/files/Ahrens/assets/icon-check-48.png) no-repeat;background-size:contain;flex-shrink:0}.job-title-red-header{padding-right:20px}.job-title-red-header .col_4 a{color:white;background:#cd1719;padding:0.4em 1em;display:block;text-align:center;width:fit-content}.job-title-red-header .col_4 a:hover{background:#911011;transition:0.2s ease-in all;cursor:pointer;color:white !important;text-decoration:none}.job-title-red-header .col_4 a:focus,.job-title-red-header .col_4 a:focus-visible,.job-title-red-header .col_4 a:visited,.job-title-red-header .col_4 a:active{color:white !important}.job-title-red-header table{width:100%}.job-title-red-header table thead tr{border:2px solid #cd1719}.job-title-red-header table thead tr th{border:none;background:none}.job-title-red-header table tbody tr td{border:none}.job-title-red-header table tbody tr td.col_0{color:#cd1719}.job-title-red-header table tbody tr.row_0 td{padding-top:1.2em}.carousel-employee{display:flex;flex-direction:column;margin-top:2em}.carousel-employee .caroufredsel_controls{width:100%;float:left;order:2}.carousel-employee .caroufredsel_controls .caroufredsel_navi{display:flex;justify-content:center;width:100%;position:relative}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_prev{width:32px;height:32px;float:left;position:relative;margin-right:10px;background:#cd1719;cursor:pointer}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_prev:hover{background:#911011}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_prev::before{content:url(/files/Ahrens/assets/icon-arrow-left-white.png);position:absolute;top:4px;left:4px}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_prev span{position:absolute;text-indent:-9999px}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_button{width:32px;height:32px;float:left;position:relative;margin-right:10px;background:#cd1719;cursor:pointer}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_button:hover{background:#911011}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_button::before{content:url(/files/Ahrens/assets/icon-pause-white.png);position:absolute;top:4px;left:4px}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_button span{position:absolute;text-indent:-9999px}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_button.paused{background:grey}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_next{width:32px;height:32px;float:left;position:relative;margin-right:10px;background:#cd1719;cursor:pointer}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_next:hover{background:#911011}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_next::before{content:url(/files/Ahrens/assets/icon-arrow-right-white.png);position:absolute;top:4px;left:4px}.carousel-employee .caroufredsel_controls .caroufredsel_navi .caroufredsel_next span{position:absolute;text-indent:-9999px}.carousel-employee .caroufredsel video{max-width:100%}.carousel-employee .caroufredsel img{height:266px;width:auto;object-fit:contain}.clearfix{clear:both}.karriere .img-highlight{display:none}.caroufredsel .row .col-7{background:linear-gradient(to right, #fff, #E9E8E5);padding:0.4em}.caroufredsel .row{grid-gap:0}.ahr-team-video .ce_youtube{margin-top:10px}.unterlassungserklaerung{border:2px solid #000;padding:1em;text-align:justify}.float-left{float:left}.btn-more-padding>a{line-height:1.5em;padding:2em 0em}.empl-top .caroufredsel .row .col-7{background:none}.empl-top .ce_youtube{margin-top:0}.ce_sliderStart .slider-menu{display:none}.ce_sliderStart{position:relative}.ce_sliderStart .slider-control{position:absolute;top:0;left:0}.ce_sliderStart.control-bottom{display:flex;flex-direction:column}.ce_sliderStart.control-bottom .slider-control{top:unset;bottom:0px;left:50%;transform:translateX(-50%)}.ce_sliderStart.control-bottom .content-slider{margin-bottom:2em}.ce_sliderStart .slider-prev,.ce_sliderStart .slider-next{position:relative;display:inline-block;padding:0.5em 1em;background:#cd1719;width:32px;height:32px;margin-right:1em}.ce_sliderStart:not(.control-bottom) .slider-wrapper{margin-top:3em}.ce_sliderStart .slider-prev::before{content:url("/files/Ahrens/assets/icon-arrow-left-white.png");position:absolute;top:4px;left:4px}.ce_sliderStart .slider-next::before{content:url("/files/Ahrens/assets/icon-arrow-right-white.png");position:absolute;top:4px;left:4px}.ce_sliderStart iframe{width:100%}.ce_sliderStart .ce_youtube{margin:0}.ce_sliderStart .row .col-7{background:linear-gradient(to right, white, #e9e8e5);padding:0.4em}.ce_sliderStart.carousel-employee .row{gap:0}.ce_sliderStart.carousel-employee img{height:266px;width:auto;object-fit:contain}.mod_article .mod_article{float:none;position:relative}.mod_article .mod_article .article-inner{width:auto;float:none;margin-left:initial;left:unset;background:none;padding:0}.ce_youtube iframe{width:100%;height:auto;aspect-ratio:1.7777777778}.hide-btn-bewerbung .hire-btn{display:none}@media (max-width:500px){.hide-btn-bewerbung .header-mit-bild .article-inner .ce_text .image_container img{width:100%;max-width:none;height:auto;position:relative;left:0%;-ms-transform:translate(0%, 0);-webkit-transform:translate(0%, 0);-moz-transform:translate(0%, 0);transform:translate(0%, 0)}}.swiper.testamonial-slider{width:100%;height:100%;padding-top:3.5em}.swiper.testamonial-slider .swiper-pagination{top:17px;bottom:initial}.swiper.testamonial-slider .swiper-nav{width:35px}.swiper.testamonial-slider .swiper-nav::after{content:none}.swiper.testamonial-slider .swiper-pagination-bullet-active{background:#cd1719 !important}.swiper.testamonial-slider .swiper-button-prev,.swiper.testamonial-slider .swiper-button-next{left:unset;top:unset;top:20px;height:auto}.swiper.testamonial-slider .swiper-button-prev{left:42%;transform:rotate(180deg) translateX(-50%)}@media (max-width:767px){.swiper.testamonial-slider .swiper-button-prev{left:10%}}.swiper.testamonial-slider .swiper-button-next{right:42%;transform:translateX(-50%)}@media (max-width:767px){.swiper.testamonial-slider .swiper-button-next{right:10%}}.swiper.testamonial-slider .swiper-wrapper{align-items:center;padding-top:2em;padding-bottom:4em}.swiper.testamonial-slider .swiper-wrapper .swiper-slide{height:100%;border-radius:10px;background:#fff;box-shadow:0 0 38px 1.5px rgba(19, 118, 159, 0.2);font-size:15px;padding:4em;padding-bottom:2em;text-align:center;width:580px}.swiper.testamonial-slider .swiper-wrapper .swiper-slide.swiper-slide-active{font-size:17px}.swiper.testamonial-slider .swiper-wrapper .swiper-slide .testimonial-item{display:flex;flex-direction:column}.swiper.testamonial-slider .swiper-wrapper .swiper-slide .testimonial-item .quote-icon{font-size:80px;color:#cd1719}.swiper.testamonial-slider .swiper-wrapper .swiper-slide .testimonial-item .quote{font-style:italic}.swiper.testamonial-slider .swiper-wrapper .swiper-slide .testimonial-item .person{font-size:14px}.swiper.testamonial-slider .swiper-wrapper .swiper-slide .testimonial-item .person figure{margin:0}.swiper.testamonial-slider .swiper-wrapper .swiper-slide .testimonial-item .person .text-start>div{font-weight:bold}.swiper.testamonial-slider .swiper-wrapper .swiper-slide .testimonial-item .person img{width:56px;height:56px;object-fit:cover;object-position:center;border-radius:100%}.swiper .swiper-nav{background:#cd1719;padding:10px 0}.swiper .modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.5);display:none;justify-content:center;align-items:center;z-index:1000}.swiper .modal-content{background:white;border-radius:8px;max-width:600px;width:90%;max-height:80vh;padding:20px;box-shadow:0 5px 15px rgba(0, 0, 0, 0.3);position:relative;overflow-y:auto}.swiper .modal-header{font-weight:bold;margin-bottom:10px}.swiper .modal-close{position:absolute;top:10px;right:15px;background:none;border:none;font-size:20px;cursor:pointer;color:#666}.swiper .modal-body{white-space:pre-wrap}.swiper .btn-link{background:none;border:none;color:#007bff;text-decoration:underline;cursor:pointer;padding:0;font-size:1rem}.h2-uppercase{margin:0;color:#303030;font-size:32px;font-weight:600;text-align:center;text-transform:uppercase;margin-bottom:1em}.h3-uppercase h4{font-size:32px;font-weight:600;text-align:center;text-transform:uppercase;margin-bottom:1em}.button-red{height:2.5em;text-align:center}@media (max-width:767px){.button-red{margin-top:-2em}}.button-red a{position:relative;padding:10px 60px 10px 20px;color:#fff;font-size:18px;text-transform:uppercase;background:#cd1719;height:auto !important;background:#cd1719;color:#fff;text-transform:uppercase;border:none !important;cursor:pointer;-webkit-appearance:none !important;-moz-appearance:none !important;appearance:none !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;-ms-border-radius:0 !important;border-radius:0 !important}@media (max-width:767px){.button-red a{width:100%;display:block;font-size:15px}}.button-red a:after{content:url(/files/Ahrens/assets/icon-plus-white.png);position:absolute;top:13px;right:10px}.button-red a:hover,.button-red a:focus{text-decoration:none;background:#e01c1e}
