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}
/* Slider */
.slick-slider
{
    position: relative;

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

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

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

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

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

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

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

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

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

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

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

    height: auto;

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

#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
/* NUUNNAV CSS*/

.nuunnavbutton.opener {display: none; width: 20px; cursor: pointer; position: absolute; z-index: 2500; top: 25px; right: 4%; transition: top 0.3s ease;}
.nuunnavbutton .navline {height: 2px; width: 100%; box-sizing: border-box; margin-bottom: 4px; border-radius: 2px; background: #004F9E; opacity: 1; transition: transform 0.3s ease, opacity 0.3s ease;}
.nuunnavbutton .navline:last-of-type {margin-bottom: 0;}
.nuunnavbutton .navline.mid {opacity: 1;}
.nuunnavbutton .navline.top {transform: rotate(0); transform-origin: top right;}
.nuunnavbutton .navline.bot {transform: rotate(0); transform-origin: bottom right; width: 60%; float: right;}

.nuunnavbutton.crossed {top: 30px; width: 20px; cursor: pointer; position: absolute; z-index: 2500; right: 40px;}
.nuunnavbutton.crossed .navline {margin-bottom: 5px;}
.nuunnavbutton.crossed .navline.top {transform: rotate(-45deg); transform-origin: top right; background: #fff;}
.nuunnavbutton.crossed .navline.mid {opacity: 0;}
.nuunnavbutton.crossed .navline.bot {margin-left: 0; width: 100%; transform: rotate(45deg); transform-origin: bottom right; background: #fff;}

#nuunnav {display: none; padding-top: 0px; font-size: 2.4rem; padding-bottom: 0px; position: fixed; overflow-y: auto; top: 0; width: 100%; max-width: 500px; background: linear-gradient(90deg, #00619F 0%, #312783 100%); height: 100vh; z-index: 2000; box-sizing: border-box; transition:right 0.4s ease, box-shadow 0.3s ease;}
#nuunnav.open {right: 0 !important; box-shadow: 0 0 10px rgba(0,0,0,0.5);}
#nuunnav .inside {padding: 0 3% 30px 3%;}

#nuunnav .navigation {margin-top: 50px; margin-bottom: 0px; display: inline-block; width: 100%;}
#nuunnav .navigation li a {color: #fff; text-decoration: none; padding: 20px 40px 15px 40px; transition:color 0.3s ease;}
#nuunnav .navigation li a.active {color: #333; background: #fff; border-bottom: 1px solid #E3E9F4;}
/*#nuunnav .navigation li a:hover {color: #333;}*/
#nuunnav .navigation ul {list-style: none; padding-left: 0; margin-bottom: 0; display: block; width: 100%;}
#nuunnav .navigation ul.level_1 {margin: 0;}
#nuunnav .navigation ul.level_1 > li {position: relative; display: inline-block; width: 100%; float: left;}
#nuunnav .navigation ul.level_1 > li > a {display: inline-block; font-family: 'poppinslight'; font-size: 2.4rem; line-height: 3.2rem; float: left; clear: left;}
#nuunnav .navigation ul.level_1 > li.submenu > a {margin-right: 0px; float: left; clear: left;}
#nuunnav .navigation ul li.submenu .subtoggler {width: 50px; height: 40px; position: absolute; top: 14px; right: 22px; display: flex; align-items: center; justify-content: center; float: left; cursor: pointer;}
#nuunnav .navigation ul.level_2 li.submenu .subtoggler {height: 34px;}
#nuunnav .navigation ul li.submenu .subtoggler .subtoggline1 {width: 18px; height: 2px; background: #fff;}
#nuunnav .navigation ul li.submenu .subtoggler .subtoggline2 {width: 18px; height: 2px; background: #fff; position: absolute; transform: rotate(90deg); transition: transform 0.3s ease;}
#nuunnav .navigation ul li.submenu .subtoggler.down .subtoggline2 {transform: rotate(0deg);}
#nuunnav .navigation ul li.active.submenu .subtoggler .subtoggline1 {background: #004F9F}
#nuunnav .navigation ul li.active.submenu .subtoggler .subtoggline2 {background: #004F9F}

#nuunnav .navigation ul.level_2 {display: none;}
#nuunnav .navigation .active ul.level_2 {background: #fff;}
#nuunnav .navigation ul.level_2 > li > a {display: inline-block; width: calc(100% - 80px); font-size: 2.4rem; float: left; clear: left; padding: 10px 40px;}
#nuunnav .navigation .active ul.level_2 > li > a {color: #333; background: #fff;}
#nuunnav .navigation ul.level_2 > li:first-of-type a {padding-top: 20px;}
#nuunnav .navigation ul.level_2 > li:last-of-type a {border-bottom: 1px solid #E3E9F4; padding-bottom: 20px;}
#nuunnav .navigation ul.level_2 li a.active {}
/*#nuunnav .navigation ul.level_2 li a:hover {color: #333; background: url(../../files/data/files/data/graphics/icon-nav-bg.svg) center left 4vw no-repeat;}*/
#nuunnav .navigation ul.level_2 li {position: relative; display: inline-block; width: 100%; float: left;}

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

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

@media screen and (max-width: 1100px) {
	.nuunnavbutton.opener {display: block;}
	.nuunnavbutton.crossed {display: block;}
	#nuunnav {display: block;}
}
/*************************************************************/
/*   Design:  CERTAS care   				     	 	 	 */
/*   File:    screen.css					                 */
/*-----------------------------------------------------------*/
/*   Autor:   Thomas Dürig, www.nuun.ch 	                 */
/*   Datum:   Juni 2024						                 */
/*   Site: 	  www.certas.care             					 */
/*************************************************************/
/*  LAYOUT													 */
/*************************************************************/

/*FARBEN*/
/*	

*/

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

html, body {position: relative; height: 100%; width:100%; font: 62.5% "poppinslight", sans-serif; font-weight: 300; letter-spacing:0em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: antialiased; font-smoothing: antialiased;}
body {font-size: 20px; font-size: 2rem; line-height: 3.2rem; color: #333333; background-color: #fff;}

.invisible {display: none !important;}

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

.zentriert {text-align: center;}

strong {font-family: 'poppinsbold';}
hr {border: none; height: 1px; color: #ccc; background-color: #ccc;}

.rel {position: relative;}

.flipbook.df-floating .df-ui-controls:before, .flipbook .df-floating .df-ui-controls:before, .df-lightbox-wrapper.df-floating .df-ui-controls:before, .df-lightbox-wrapper .df-floating .df-ui-controls:before {display: none;}
.flipbook.df-floating .df-ui-controls:after, .flipbook .df-floating .df-ui-controls:after, .df-lightbox-wrapper.df-floating .df-ui-controls:after, .df-lightbox-wrapper .df-floating .df-ui-controls:after {display: none;}


/*  HEADER / NAVIGATION									     */
/*************************************************************/
#header {position: absolute; top: 0; left: 50%; transform: translateX(-50%); box-sizing: border-box; width: 96%; max-width: 1323px; margin: 60px auto 0 auto; padding: 0 2%; height: 123px; background: #fff; z-index: 100; box-shadow: 0px 0px 8px 0 rgba(0,0,0,0.06), 0px 0px 160px 120px rgba(0,0,0,0.05);}
#header.up {position: fixed; top: -60px;}
#header .inside {position: relative;}
#header .logo {margin-top: 50px; width: 169px; height: auto; display: inline-block;}
#header .logo img {width: 100%; height: auto;}
#header .mobilecart {display: none;}
#header .navigation {margin-bottom: 0; margin-top: 52px; float: right; display: inline-block;}
#header .navigation li {position: relative; display: inline-block; margin: 0 23px;}
#header .navigation li.shop {margin-right: 0;}
#header .navigation li a {text-decoration: none; color: #333; font-size: 2.4rem; line-height: 3.2rem; padding-bottom: 24px; border-bottom: 12px solid #fff; transition: color 0.3s ease, border-bottom 0.3s ease;}
body.firefox #header .navigation li a {padding-bottom: 30px;}
#header .navigation li a:hover, #header .navigation li a.active, #header .navigation li a.trail {color: #004F9F; border-bottom: 12px solid; border-image: linear-gradient(90deg, #C0A9CF 0%, #846FAA 100%) 1;}

#header .navigation li a.shop {padding: 9px 23px 7px 60px; background: url(../../files/data/graphics/cart-weiss.svg) center left 20px no-repeat, linear-gradient(90deg, #00619F 0%, #312783 100%); font-size: 1.6rem; line-height: 2.6rem; font-family: 'poppinsbold'; color: #fff; border-bottom: none; transition: background 0.3s ease;}
body.firefox #header .navigation li a.shop {padding-bottom: 7px;}
/*#header .navigation li a.shop:hover, #header .navigation li a.shop.active, #header .navigation li a.shop.trail {background: #8563A7 url(../../files/data/graphics/cart-weiss.svg) center left 20px no-repeat;}*/


#header .navigation ul.level_2 {visibility: hidden; box-sizing: border-box; padding: 20px 30px; border: 1px solid #E2E4E8; border-top: none; background: #fff; position: absolute; top: 71px; left: calc(50%); transform: translateX(-50%); opacity: 0; transition: opacity 0.3s ease, top 0.3s ease;}
#header.up .navigation ul.level_2 {top: 71px;}
#header .navigation li:hover ul.level_2 {opacity: 1; visibility: visible;}
#header .navigation ul.level_2 li {display: block; margin: 4px 0; padding-left: 0;}
#header .navigation ul.level_2 li a {text-align: left; padding: 0; color: #333; text-transform: none; background-image: none; white-space: nowrap; border-bottom: none; transition: color 0.3s ease;}
#header .navigation ul.level_2 li a:hover, #header .navigation ul.level_2 li a.active, #header .navigation ul.level_2 li a.trail {color: #004F9F;}
#header .navigation ul.level_3 li {display: block; margin: 0; padding-left: 15px;}

#header .headerrechts {position: absolute; top: -47px; width: 100%;}
#header .headerrechts .content-text {display: inline-block; font-size: 1.2rem; line-height: 1.8rem; padding-bottom: 9px; margin-right: 15px; padding-right: 20px;}
#header .headerrechts .content-text a {text-decoration: none; color: #333; transition: color 0.3s ease;}
#header .headerrechts .content-text a:hover {color: #8563A7;}
#header .headerrechts .content-text.loginhover {position: relative;}
#header .headerrechts .content-text.loginhover .flyout {position: absolute; right: 0; top: 55px; background: #fff; width: 130px; padding: 5px 19px 0px 10px; text-align: right; height: 0px; opacity: 0; visibility: hidden; transition: visibility 0.3s ease, opacity 0.3s ease, height 0.3s ease;}
#header .headerrechts .content-text.loginhover:hover .flyout {height: 67px; opacity: 1; visibility: visible;}
#header .headerrechts .content-text.loginhover .flyout p {height: 0px; opacity: 0; visibility: hidden; transition: visibility 0.3s ease, opacity 0.3s ease, height 0.3s ease;}
#header .headerrechts .content-text.loginhover:hover .flyout p {height: 19px; opacity: 1; visibility: visible;}
#header .headerrechts .content-text.hotline {position: relative; padding-left: 20px;}
#header .headerrechts .content-text.hotline .tooltip {opacity: 0; position: absolute; top: -30px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1.8rem; line-height: 1.8rem; padding: 10px; border-radius: 4px; background: #333; white-space: nowrap; transition: opacity 0.3s ease;}
#header .headerrechts .content-text.hotline .tooltip:after {content: ""; position: absolute; display: block; width: 8px; height: 8px; background: #333; bottom: -3px; left: 50%; transform: translateX(-50%) rotate(45deg);}
#header .headerrechts .content-text.hotline:hover .tooltip {opacity: 1;}

#header .mod_changelanguage {display: inline-block; position: relative; float: right;}
#header .mod_changelanguage ul {margin-bottom: 0;}
#header .mod_changelanguage ul li {text-align: left; display: inline-block; margin-left: 20px;}
#header .mod_changelanguage ul li a {font-size: 1.2rem; line-height: 1.8rem; position: relative; color: #333; text-transform: lowercase; text-decoration: none; padding: 0; display: inline-block; transition: color 0.3s ease;}
#header .mod_changelanguage:hover ul li a {color: #004F9F;}
#header .mod_changelanguage ul li a.active {color: #004F9F; font-family: 'poppinsbold';}

.toplogoarticle .logo {display: inline-block;}
.toplogoarticle .toplinkcart {display: none; float: right; margin-top: -3px;}
.toplogoarticle .toplinkcart a {display: inline-block; color: #fff; text-decoration: none; font-size: 2rem; padding: 4px 20px 4px 48px; background: #333 url(../../files/data/graphics/cart-weiss.svg) center left 15px no-repeat; border-radius: 11px; box-shadow: 0 0 8px 0 rgba(0,0,0,0.07); transition: background 0.3s ease;}
.toplogoarticle .toplinkcart a:hover, body.shop .toplogoarticle .toplinkcart a {background: #8563A7 url(../../files/data/graphics/cart-weiss.svg) center left 15px no-repeat; border-radius: 11px;}

#nuunnav .inside {padding: 0 0 0px 0;}
#nuunnav .nuunnavtop {height: 50px; border-bottom: 1px solid #E2E4E8;}
#nuunnav .nuunnavtop .inside {padding: 0 0;}
#nuunnav .nuunnavtop .logo {width: 150px;}
#nuunnav .nuunnavtop .logo img {width: 100%; height: auto; margin-top: 28px;}
#nuunnav .mod_changelanguage {margin: 30px 0 0 40px;}
#nuunnav .mod_changelanguage li {display: inline-block; margin-right: 7px; padding-right: 8px; float: left;}
#nuunnav .mod_changelanguage ul.level_1 > li > a {font-size: 1.2rem; line-height: 1.6rem; border-bottom:none; text-decoration: none; padding: 0; color: #fff; text-transform: lowercase; font-family: 'poppinslight'; vertical-align: middle;}
#nuunnav .mod_changelanguage ul.level_1 > li > a.active {font-family: 'poppinsbold';font-size: 1.2rem; line-height: 1.8rem;}
#nuunnav .mod_article.toplogoarticle .inside {padding: 25px 40px; border-bottom: 1px solid #E2E4E8;}
#nuunnav .mod_navigation {margin-top: 0px; width: 100%; padding: 0;}
#nuunnav ul.level_1 > li > a {padding: 20px 40px 15px 40px; border-bottom: 1px solid #E2E4E8; display: block; width: calc(100% - 80px);}
#nuunnav .footertop {margin-top: -11px;background: linear-gradient(90deg, #FAFAFA 0%, #D4D5D5 100%); border-bottom: 1px solid #fff;}
#nuunnav .footertop .inside {position: relative; width: calc(100% - 80px); padding: 30px 40px; max-width: 1119px; margin: 0 auto;}
#nuunnav .footertop h4 {font-size: 2.5rem; line-height: 2.9rem;}
#nuunnav .footertop .content-text.ftl h5 {color: #333;}
#nuunnav .footertop .content-text.ftl a {font-size: 2rem; line-height: 2.8rem; font-family: 'poppinsbold'; font-weight: 700; color: #333; padding: 0; border: 0; background: initial;}
/*.content-text.ftl {padding-left: 80px; background: url(../../files/data/graphics/footer-ftl.svg) top left no-repeat;}*/
.content-text.ftl h5 {color: #fff;}
.content-text.ftl a {display: inline-block; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 9px 30px 4px 30px; border: 3px solid #fff; color: #fff;}
.content-text.ftl a:hover {background: #fff; color: rgba(255,255,255,0);}
/*.content-text.ftl a {display: inline-block; color: #fff; text-decoration: none; padding: 6px 15px 6px 40px; background: #8563A7 url(../../files/data/graphics/cart-weiss.svg) center left 11px no-repeat; background-size: 22px; border-radius: 11px; box-shadow: 0 0 8px 0 rgba(0,0,0,0.07); transition: transform 0.3s ease;}
.content-text.ftl a:hover {box-shadow: 0 0 16px 0 rgba(0,0,0,0.07); transform: scale(1.05);}*/
/*.content-text.ftr {padding-left: 80px; background: url(../../files/data/graphics/cart-schwarz.svg) top left no-repeat;}*/
.content-text.ftr h5 {color: #fff;}
.content-text.ftr a {display: inline-block; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 9px 30px 4px 30px; border: 3px solid #fff; color: #fff;}
.content-text.ftr a:hover {background: #fff; color: rgba(255,255,255,0);}
/*.content-text.ftr a {display: inline-block; color: #fff; text-decoration: none; padding: 6px 15px 6px 40px; background: #8563A7 url(../../files/data/graphics/cart-weiss.svg) center left 11px no-repeat; background-size: 22px; border-radius: 11px; box-shadow: 0 0 8px 0 rgba(0,0,0,0.07); transition: transform 0.3s ease;}
.content-text.ftr a:hover {box-shadow: 0 0 16px 0 rgba(0,0,0,0.07); transform: scale(1.05);}*/

#nuunnav .footerbot {background: linear-gradient(90deg, #FAFAFA 0%, #D4D5D5 100%); font-size: 1.6rem; line-height: 2.6rem;}
#nuunnav .footerbot .inside {position: relative; width: calc(100% - 80px); padding: 40px 40px 20px 40px; max-width: 1119px; margin: 0 auto;}
#nuunnav .footerbot .footerlogo {margin-top: 50px;}
#nuunnav .footerbot h5 {font-size: 1.6rem; line-height: 2.6rem;}
#nuunnav .footerbot h4 {margin-top: 0; font-size: 2.5rem; line-height: 2.9rem;}
#nuunnav .footerbot a {color: #333; text-decoration: none; transition: color 0.3s ease;}
#nuunnav .footerbot a:hover {color: #8563A7;}
#nuunnav .footerbot .content-text {margin-bottom: 50px;}
#nuunnav .footerbotbot {border-top: 1px solid #fff; padding-top: 0px; margin-top: 0px; background: linear-gradient(90deg, #FAFAFA 0%, #D4D5D5 100%);}
#nuunnav .footerbotbot .inside {position: relative; width: calc(100% - 80px); padding: 40px 40px 20px 40px; max-width: 1119px; margin: 0 auto;}
#nuunnav .footerbotbot .content-text {font-size: 1.2rem; line-height: 2rem; margin-bottom: 0;}
#nuunnav .footerbotbot a {color: #333; text-decoration: none; transition: color 0.3s ease;}
#nuunnav .footerbotbot a:hover {color: #8563A7;}

/*  INHALTSELEMENTE                                          */
/*************************************************************/
#container {padding-top: 140px;}

.mod_article .inside {position: relative; width: 92%; padding: 60px 4%; box-sizing: border-box; max-width: 1322px; margin: 0 auto;}
.mod_article.shoptitel .inside {padding: 60px 4% 10px 4%;}
#bestellung.mod_article .inside {padding: 10px 4% 60px 4%;}
/*.mod_article.schmal .inside {max-width: 1170px;}*/
.mod_article.grau .inside {background: #F0F2F7;}
.mod_article.blau {background: #E3E9F4;}
.mod_article.toplogoarticle {border-bottom: 1px solid #E2E4E8;}
.mod_article.shadowbox .inside {box-shadow: 0px 0px 8px 0 rgba(0,0,0,0.06), 0px 0px 160px 120px rgba(0,0,0,0.05);}
.mod_article.shadowbox.shadowflex .inside {display: flex; align-items: center;}

.mod_article.halbgrau {background: linear-gradient(90deg, rgba(226,228,232,1) 0%, rgba(226,228,232,1) 40%, rgba(247,248,249,1) 40%, rgba(247,248,249,1) 100%);}
.mod_article.halbgrau .inside {padding-top: 0; padding-bottom: 0;}
.mod_article.halbgrau .row {--grid__gutter: 0rem;}
.mod_article.halbgrau .dunkel {background: #E2E4E8; border-top: 60px solid #E2E4E8; border-bottom: 60px solid #E2E4E8; padding-right: 30px;}
.mod_article.shadowbox .hell {position: relative; background: #fff; padding-left: 15%;}
.mod_article.shadowbox .hell:before {content: ""; position: absolute; display: block; width: 2px; height: 90%; background: #E3E9F4; left: calc(14% + 43px); top: 30px;}
#container .mod_article.shadowbox .hell .content-text {padding-left: 117px; padding-top: 1px; margin-bottom: 70px; position: relative;}
#container .mod_article.shadowbox .hell .content-text h4 {margin-top: 20px;}
.mod_article.shadowbox .hell .content-text.eins {background: url(../../files/data/graphics/mark-1.svg) top left no-repeat;}
.mod_article.shadowbox .hell .content-text.zwei {background: url(../../files/data/graphics/mark-2.svg) top left no-repeat;}
.mod_article.shadowbox .hell .content-text.drei {background: url(../../files/data/graphics/mark-3.svg) top left no-repeat;}
.mod_article.shadowbox .hell .content-text.vier {background: url(../../files/data/graphics/mark-4.svg) top left no-repeat;}
.mod_article.shadowbox .hell .content-text.eins:hover {background: url(../../files/data/graphics/mark-1-h.svg) top left no-repeat;}
.mod_article.shadowbox .hell .content-text.zwei:hover {background: url(../../files/data/graphics/mark-2-h.svg) top left no-repeat;}
.mod_article.shadowbox .hell .content-text.drei:hover {background: url(../../files/data/graphics/mark-3-h.svg) top left no-repeat;}
.mod_article.shadowbox .hell .content-text.vier:hover {background: url(../../files/data/graphics/mark-4-h.svg) top left no-repeat;}


/*Artikel vollbild*/
.mod_article.vollbild {max-width: initial;}
.mod_article.vollbild .inside {width: 100%; height: auto; padding: 0; max-width: 1323px; position: relative;}
.mod_article.vollbild.top .inside {height: 810px; max-width: 1430px;}
.mod_article.vollbild .inside .content-image, .mod_article.vollbild .inside .content-player {width: 100%; height: auto; position: relative; overflow: hidden;}
.mod_article.vollbild.top .inside .content-image, .mod_article.vollbild .inside .content-player {height: 810px;}
.mod_article.vollbild .inside .content-image figure, .mod_article.vollbild .inside .content-player figure {line-height: 0;}
.mod_article.vollbild .inside .content-image img, .mod_article.vollbild .inside .content-player video {width: 100%; height: 100%; object-fit: cover;}
#container .mod_article.vollbild .inside .content-text {position: absolute; bottom: 100px; right: -40px; width: 600px; padding:30px; box-sizing: border-box;}
#container .mod_article.vollbild .inside .content-text:after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #00619F 0%, #312783 100%); mix-blend-mode: multiply;}
.mod_article.vollbild .inside .content-text h1, .mod_article.vollbild .inside .content-text h2, .mod_article.vollbild .inside .content-text h3, .mod_article.vollbild .inside .content-text h4, .mod_article.vollbild .inside .content-text p {color: #fff; text-shadow: 0px 0px 20px rgba(0,0,0,0.5); z-index: 2; position: relative;}
.mod_article.vollbild .inside .content-text h1, .mod_article.vollbild .inside .content-text h2 {font-size: 6.4rem; line-height: 7.6rem; margin-bottom: 10px; margin-top: 0;}
.mod_article.vollbild .inside .content-text h4 {font-size: 2rem; line-height: 2.8rem;}
#main .mod_article.halbvollbild .inside {max-width: 1300px;}
#main .mod_article.halbvollbild .inside .content-text {position: absolute; bottom: 100px; right: -40px; width: 500px; padding:20px 50px 30px 50px; box-sizing: border-box;}
#main .mod_article.halbvollbild .inside .content-text h2 {font-size: 3.2rem; line-height: 4rem; color: #fff; z-index: 1; position: relative;}
#main .mod_article.halbvollbild .inside .content-text:after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #00619F 0%, #312783 100%); mix-blend-mode: multiply;}
#main .mod_article.halbvollbild .inside .content-image figure {line-height: 0;}

h1, h2 {font-size: 6.4rem; line-height: 7.6rem; font-family: 'poppinslight'; font-weight: 300; letter-spacing: 0px; color: #004F9F;}
h3 {font-size: 4rem; line-height: 4.8rem; font-family: 'poppinslight'; font-weight: 300; letter-spacing: 0px; color: #004F9F;}
h4 {font-size: 3.2rem; line-height: 4rem; font-family: 'poppinslight'; font-weight: 300; letter-spacing: 0px; color: #333;}
h5 {font-size: 2rem; line-height: 2.8rem; font-family: 'poppinsbold'; font-weight: 700; color: #333;}
h6 {font-size: 2.4rem; line-height: 3.2rem; font-family: 'poppinslight'; font-weight: 300; letter-spacing: 0px; color: #004F9F;}

/*Text*/
.image_container img {max-width: 100%; height: auto;}
.image-container img {max-width: 100%; height: auto;}
figure img {max-width: 100%; height: auto;}
.content-image.rund img {border-radius: 100%;}

#container .content-text {margin-bottom: 30px;}
#container .content-text .image_container.float_left {width: 48.5%; float: left; margin-right: 3%;}
#container .content-text .image_container.float_right {width: 48.5%; float: right; margin-left: 3%;}
.content-text.grau {padding: 25px 30px 13px 30px; background: #F2F2F2; border-radius: 4px;}
.content-text a {color: #004F9F; text-decoration: none; transition: color 0.3s ease;}
/*.content-text a:hover {color: #8563A7}*/
.content-text.gross p {font-size: 2.4rem; line-height: 3.6rem;}
.content-text.klein p {font-size: 1.8rem; line-height: 2.8rem;}

/*Gallery*/
#container #main .content-gallery ul.cols_2 li {width: 48.5%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .content-gallery ul.cols_3 li {width: 31.3%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .content-gallery ul.cols_4 li {width: 22.75%; margin-right: 3%; margin-bottom: 30px; display: inline-block; float: left; line-height: 1;}
#container #main .content-gallery ul li.col_last {margin-right: 0;}
#container #main .content-gallery ul li figure {width: 100%; overflow: hidden; line-height: 0;}
#container #main .content-gallery ul li figure img {width: 100%; height: auto; -webkit-transition: all .5s ease; transition: all .5s ease;}
#container #main .content-gallery ul li figure:hover img {-webkit-transform: scale(1.1); transform: scale(1.1);}
#colorbox #cboxTitle {display: none !important;}
#colorbox #cboxCurrent {font-size: 1.5rem;}
.masonry .image_container img {border:10px solid #fff;}

/*Hyperlink*/
.content-hyperlink {margin: 20px 0;}
.content-hyperlink.inline {display: inline-block; margin-right: 20px;}
.content-hyperlink a {display: inline-block; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 9px 30px 4px 30px; border: 3px solid; border-image: linear-gradient(90deg, #00619F 0%, #312783 100%) 1; background: linear-gradient(90deg, #00619F 0%, #312783 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent; text-decoration: none;}
.content-hyperlink a:hover {-webkit-background-clip: border-box; -webkit-text-fill-color: initial; background-clip: border-box; text-fill-color: initial; color: #fff;}
.content-hyperlink.cart a {padding: 12px 20px 12px 50px; background: #8563A7 url(../../files/data/graphics/cart-weiss.svg) center left 15px no-repeat;}

/*Akkordeon*/
#container .content-accordion {border-bottom: 2px solid #E3E9F4; margin-bottom: 40px;}
.content-accordion .handorgel__header__button {border:none; line-height: 4rem; cursor: pointer; position: relative; padding: 40px 70px 30px 30px;}
.content-accordion .handorgel__header__button:after {content: ""; transform-origin: top; display: inline-block; width: 30px; height: 30px; position: absolute; right: 30px; top: 50%; transform: translateY(-50%); background: url(../../files/data/graphics/acc-plus.svg) center right no-repeat; background-size: contain; transition: transform 0.3s ease;}
.content-accordion .handorgel__header--open .handorgel__header__button:after {transform: rotate(45deg) translateY(-50%);}
.content-accordion .handorgel__header {border-top: 2px solid #E3E9F4;}
.content-accordion .handorgel__content {background: initial; border: none;}

.notrufakkordeons.content-accordion .handorgel__header__button {cursor: pointer; position: relative; padding: 40px 70px 30px 135px;}
.notrufakkordeons.content-accordion #handorgel1-fold1-header .handorgel__header__button {background: url(../../files/data/graphics/icon-call.svg) center left 40px no-repeat;}
.notrufakkordeons.content-accordion #handorgel1-fold2-header .handorgel__header__button {background: url(../../files/data/graphics/icon-shield.svg) center left 45px no-repeat;}
.notrufakkordeons.content-accordion #handorgel1-fold3-header .handorgel__header__button {background: url(../../files/data/graphics/icon-supporter.svg) center left 40px no-repeat;}
.notrufakkordeons.content-accordion .handorgel__content__inner {padding-left: 135px; padding-right: 60px;}

/*BGBox*/
.bgbox {padding-top: 20px; padding-bottom: 20px; position: relative;}
.bgbox:after {content: ""; width: 300px; height: 100%; position: absolute; top: 0; left: 10%; z-index: -1; background: linear-gradient(90deg, #C0A9CF 0%, #846FAA 100%);}
.shadowbgbox {padding-top: 20px; padding-bottom: 20px; position: relative;}
.shadowbgbox .inside {background: #fff;}
.shadowbgbox:after {content: ""; width: 300px; height: 100%; position: absolute; top: 0; left: calc((100vw - 1300px) / 2 + 5%); z-index: -1; background: linear-gradient(90deg, #C0A9CF 0%, #846FAA 100%);}

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

#main .content-text ul li {vertical-align: middle; list-style: none; margin-bottom: 15px; padding-left: 27px; background: url(../../files/data/graphics/icon-listbullet.svg) no-repeat top 12px left;}

#main .content-text ol {
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
#main .content-text ol > li {
    position:relative; /* Create a positioning context */
    margin:0 0 0 20px; /* Give each list item a left margin to make room for the numbers */
    list-style:none; /* Disable the normal item numbering */
}
#main .content-text ol > li:before {
    content:counter(li)"."; /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    left: -18px;
    top: 1px;
    font-size: 1.8rem;
    color: #0088C9;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

/*Downloads*/
.content-download.sc.last, .content-downloads.sc.last {padding-right: 0;}
.content-download, .content-downloads {position:relative; width:100%; margin:0 0 20px 0; padding:0;}
.content-download ul, .content-downloads ul {position:relative; float:left; width:100%; margin:0; padding:0 0 0 0;}
.content-download ul li, .content-downloads ul li {position:relative; width:100%; line-height:21px; padding:0 0 0 0; margin:0 0 5px 0; background:#fff;}

body #container .content-downloads a, body #container .content-download a, body #container .enclosure a {
    position:relative;
    text-decoration: none;
    color: #333333;
    display:block;
    padding: 50px 65px 45px 60px;
    border-radius: 0px;
    font-size: 2.4rem; line-height: 3.2rem;
    margin:0 0 0 0;
    position: relative;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16), 0px 0px 48px 120px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    }   
body #container .content-downloads a:after, body #container .content-download a:after, body #container .enclosure a:after {content: ""; position: absolute; top: 50%; transform: translateY(-50%); right: 18px; width: 40px; height: 27px; background: url(../../files/data/graphics/icon-download-bg.svg) center no-repeat;}

body #container .enclosure a:hover,
body #container .content-downloads a:hover, 
body #container .content-downloads a:active, 
body #container .content-download a:hover, 
body #container .content-download a:active {background: linear-gradient(90deg, #00619F 0%, #312783 100%); color: #fff;}
body #container .content-downloads a:hover:after, body #container .content-download a:hover:after, body #container .enclosure a:hover:after {filter: brightness(4) grayscale(1);}

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

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

#container .content-form {margin-top: 40px; margin-right: auto; margin-left: auto;}
#container .formbody label {width: 100%; font-size: 1.2rem; line-height: 1.8rem; font-family: 'poppinsbold'; padding-top: 10px; margin-bottom: 8px; display: inline-block; float: left;}
#container .formbody input {height: 48px; box-sizing: border-box; width: 100%; padding: 10px 3% 1px 3%; margin-bottom: 15px; border:none; background-color: #fff; box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16); filter: drop-shadow(0px 0px 48px 120px rgba(0, 0, 0, 0.05)); border-bottom: 4px solid #fff;}
#container .formbody input:focus {border-bottom: 4px solid; border-image: linear-gradient(90deg, #00619F 0%, #312783 100%) 1; outline: none;}
#container .formbody textarea {box-sizing: border-box; width: 100%; padding: 10px 3% 1px 3%; border: none; margin-bottom: 15px; background-color: #fff; box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16); filter: drop-shadow(0px 0px 48px 120px rgba(0, 0, 0, 0.05)); border-bottom: 4px solid #fff;}
#container .formbody textarea:focus {border-bottom: 4px solid; border-image: linear-gradient(90deg, #00619F 0%, #312783 100%) 1; outline: none;}
/*#container .formbody .submit {background-color: #005fab; margin-top: 7px; padding: 5px 0; color: #fff; margin-left: 0; width: 200px;}*/
/*#container .formbody .widget-submit {text-align: right;}*/
/*#container .formbody .submit {display: inline-block; color: #fff; text-decoration: none; padding: 10px 30px; background: #8563A7; border: none; border-radius: 11px; box-shadow: 0 0 8px 0 rgba(0,0,0,0.07); transition: transform 0.3s ease;}
#container .formbody .submit:hover {box-shadow: 0 0 16px 0 rgba(0,0,0,0.07); transform: scale(1.05);}*/
#container .formbody .submit {cursor: pointer; display: inline-block; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 9px 30px 4px 30px; border: 3px solid; border-image: linear-gradient(90deg, #00619F 0%, #312783 100%) 1; background: linear-gradient(90deg, #00619F 0%, #312783 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent; text-decoration: none;}
#container .formbody .submit:hover {-webkit-background-clip: border-box; -webkit-text-fill-color: initial; background-clip: border-box; text-fill-color: initial; color: #fff;}
#container .formbody select {height: 48px; box-sizing: border-box; width: 100%; padding: 10px 3% 1px 3%; margin-bottom: 15px; border:none; background-color: #fff; box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16); filter: drop-shadow(0px 0px 48px 120px rgba(0, 0, 0, 0.05)); border-bottom: 4px solid #fff;}
#container .formbody select:focus {border-bottom: 4px solid; border-image: linear-gradient(90deg, #00619F 0%, #312783 100%) 1; outline: none;}
#container .formbody fieldset {margin-bottom: 10px;}
#container .formbody fieldset span {width:100%; float: left;}
#container .formbody fieldset span input {float: left; width: 5%; height: 26px;}
#container .formbody fieldset span label {padding-top: 0; width: 95%;}
#container .formbody fieldset legend {font-size: 2.4rem; line-height: 3.6rem;}
#container .formbody .widget-captcha {margin-bottom: 40px;}
#container .formbody .widget-captcha input {margin-bottom: 5px;}
#container .formbody .widget-captcha span {width: 100%; float: left;}
#container .formbody .widget-captcha label span.mandatory {width: auto; float: none;}
#container .formbody .widget-checkbox input {-webkit-appearance:checkbox;}
#container .formbody .widget-checkbox legend span {width: auto; float: none;}
#container .formbody .widget-radio input {-webkit-appearance:radio;}

/*radio und checkbox templates von scayla*/
#container .formbody .checkbox_container {margin-top: 20px;}
#container .formbody .checkbox_container a {color: #333333; transition: color 0.3s ease;}
#container .formbody .checkbox_container a:hover {color: #8563A7}
#container .formbody .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
body #container .formbody .checkbox_container label {cursor: pointer; width: 100%; padding: 0 0 0 0px; box-sizing: border-box; position: relative; margin-bottom: 40px; display: inline-block;}
#container .formbody .checkbox_container span {width: 90px; margin-right: 15px;}
#container .formbody .checkbox_container span.lname {width: calc(100% - 80px); padding-top: 0px; font-size: 1.8rem; line-height: 2.8rem; font-family: 'poppinslight';}
#container .formbody .checkbox_container .checkmark {cursor: pointer; position: relative; margin-right: 20px; float: left; height: 24px; width: 24px; background-color: #fff; border:2px solid #004F9F;}
#container .formbody .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
#container .formbody .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
#container .formbody .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
#container .formbody .checkbox_container input:checked ~ .checkmark:after {display: block;}
#container .formbody .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 24px; height: 24px; background: url(../../files/data/graphics/checkmark.svg) center no-repeat; background-size: 17px;}

#container .formbody .radio_container {margin-top: 0px; margin-bottom: 30px;}
#container .formbody .radio_container legend {display: inline-block; float: left; width: auto; margin-top: 25px; /*padding-right: 20px; padding-top: 3px; text-align: right; font-size: 1.2rem; line-height: 1.8rem;*/ font-family: 'poppinsbold';}
#container .formbody .radio_container legend span {width: auto; float: none; margin-right: 0;}
#container .formbody .radio_container .optionen {display: block; clear: both; width: 100%; max-width: 600px;}
#container .formbody .radio_container a {color: #d67500; text-decoration: none;}
#container .formbody .radio_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}
body #container .formbody .radio_container label {cursor: pointer; width: 50%; padding-right: 0; position: relative; margin-bottom: 0px; display: inline-block;}
#container .formbody .radio_container span {width: 90px; margin-right: 15px;}
#container .formbody .radio_container span.lname {width: auto; padding-top: 1px; font-size: 1.6rem; line-height: 2.6rem; font-family: 'poppinslight';}
#container .formbody .radio_container .checkmark {cursor: pointer; position: relative; height: 24px; width: 24px; background-color: #fff; box-sizing: border-box; border: 2px solid #004F9F; border-radius: 50px;}
#container .formbody .radio_container:hover input ~ .checkmark {background-color: #fff;}
#container .formbody .radio_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
#container .formbody .radio_container .checkmark:after {content: ""; position: absolute; display: none;}
#container .formbody .radio_container input:checked ~ .checkmark:after {display: block;}
#container .formbody .radio_container .checkmark:after {top: 2px; left: 2px; width: 16px; height: 16px; background: #004F9F; position: absolute; border-radius: 50px;}
#container .formbody .radio_container.shadowradio {margin-bottom: 40px; padding: 40px; box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16); filter: drop-shadow(0px 0px 48px 120px rgba(0, 0, 0, 0.05));}
body #container .formbody .radio_container.shadowradio label {width: 100%;}

/*Columns*/
#container .rs-column.-large-col-2-1 {width: 48.5%; margin-right: 3%;}
#container .rs-column.-large-col-2-1.-large-last {margin-right: 0;}
#container .rs-column.-large-col-3-1 {width: 31.3%; margin-right: 3%;}
#container .rs-column.-large-col-3-1.-large-last {margin-right: 0;}
#container .rs-column.-large-col-4-1 {width: 22.75%; margin-right: 3%; margin-top: 0;}
#container .rs-column.-large-col-4-1.-large-last {margin-right: 0;}

/*Player*/
#container .content-player {clear: both;}
#container .content-player embed {max-width: 100%;}
#container .content-player video {max-width: 100%;}
#container .content-player iframe {max-width: 100%;}

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

/*YouTube*/
#container .content-youtube {clear: both;}
#container .content-youtube embed {max-width: 100%;}
#container .content-youtube video {max-width: 100%;}
#container .content-youtube iframe {max-width: 100%;}

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

/*Vimeo*/
#container .content-vimeo {clear: both;}
#container .content-vimeo embed {max-width: 100%;}
#container .content-vimeo video {max-width: 100%;}
#container .content-vimeo iframe {max-width: 100%;}

#container .content-vimeo .me-plugin {max-width: 100%;}
#container .content-vimeo .mejs-overlay {max-width: 100% !important;}
#container .content-vimeo figure {line-height: 0;}

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

/*  BESTELLUNGEN RECHNER                                     */
/*************************************************************/
#bestellung > .inside {max-width: 1525px;}

#bestellung .prodcontainer .plusminusbox {position: relative; width: 31.3332%; min-height: 337px; margin-left: 1%; margin-right: 1%; margin-bottom: 40px; box-sizing: border-box; background: #F0F0F0; border: 2px solid #D4D5D5; padding: 20px 22px;}
#bestellung .prodcontainer .plusminusbox .uebertitel {font-size: 2rem; line-height: 2.3rem; font-family: 'poppinsbold'; color: #333333; padding: 0 60px 0 0; margin-top: 0; min-height: 46px; margin-bottom: 7px;}
#bestellung .prodcontainer .plusminusbox .infopopupbutton {position: absolute; top: 15px; right: 20px; width: 35px; height: 35px; cursor: pointer; background: url(../../files/data/graphics/prodpopup-open.svg) center no-repeat; z-index: 5; transition: background 0.3s ease;}
#bestellung .prodcontainer .plusminusbox .infopopupbutton.open {background: url(../../files/data/graphics/prodpopup-close.svg) center no-repeat;}
#bestellung .prodcontainer .plusminusbox .infopopup {position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-sizing: border-box; background: #fff; padding: 60px 25px 25px 25px; font-size: 1.6rem; line-height: 2rem; z-index: 3; display: none;}
#bestellung .prodcontainer .plusminusbox .plusminuslinks {display: inline-block; float: left; width: 50%; padding-right: 20px; box-sizing: border-box;}
#bestellung .prodcontainer .plusminusbox .plusminuslinks img {width: 100%; max-height: 160px; object-fit: scale-down;}
#bestellung .prodcontainer .plusminusbox .plusminuslinks .preislinks {position: absolute; bottom: 25px; left: 22px; font-size: 2.4rem; line-height: 3rem; font-family: 'poppinsbold';}
#bestellung .prodcontainer .plusminusbox .plusminuslinks .preislinksinfo {font-size: 1.2rem; line-height: 1.8rem; font-family: 'poppinsregular';}
#bestellung .prodcontainer .plusminusbox .plusminusrechts {display: inline-block; float: left; width: 50%;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .bittewaehlen {font-size: 1.6rem; line-height: 2.2rem; margin-bottom: 0;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl {width: 100%; background: initial; box-shadow: none; filter: unset; margin-bottom: 0; margin-left: 0; margin-right: 0; padding: 15px 0 0 0;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .freitext {font-size: 1.6rem; line-height: 1.9rem;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler {display: inline-block; width: 100%;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler .minus {display: inline-block; float: left; width: 27%; position: relative; height: 32px; background: #333333;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler .minus:after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../../files/data/graphics/zaehler-minus.svg) center no-repeat;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler .minus:hover {background: #00619F; background: linear-gradient(90deg,rgba(0, 97, 159, 1) 0%, rgba(49, 39, 131, 1) 100%);}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler .plus {display: inline-block; float: left; width: 27%; position: relative; height: 32px; background: #333333;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler .plus:after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../../files/data/graphics/zaehler-plus.svg) center no-repeat;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler .plus:hover, #bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl.active .zaehler .plus {background: #00619F; background: linear-gradient(90deg,rgba(0, 97, 159, 1) 0%, rgba(49, 39, 131, 1) 100%);}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler input {cursor: default; display: inline-block; float: left; width: 40%; margin: 0 3%; position: relative; height: 32px; text-align: center; border: none; border-radius: 0; background: #fff; font-size: 1.6rem; line-height: 1.6rem; font-family: 'poppinsbold'; outline: none;}
#bestellung .prodcontainer .plusminusbox .plusminusrechts .wahl .zaehler input:focus {outline: none;}

/* Chrome, Safari, Edge, Opera */
#bestellung .prodcontainer .plusminusbox .wahl .zaehler input::-webkit-outer-spin-button,
#bestellung .prodcontainer .plusminusbox .wahl .zaehler input::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
/* Firefox */
#bestellung .prodcontainer .plusminusbox .wahl .zaehler input[type=number] {-moz-appearance: textfield;}


#bestellung .prodcontainer {display: flex; flex-wrap: wrap; justify-content: flex-start; width: 102%; margin-left: -1%; padding: 0; box-sizing: border-box;}
#bestellung .prodcontainer.choice {padding-top: 33px;}
#bestellung .prodcontainer .wahl {cursor: pointer; width: 48%; box-sizing: border-box; margin-bottom: 40px; margin-left: 1%; margin-right: 1%; padding: 20px 0px; background: #F0F0F0; transition: background 0.3s ease;}
#bestellung .prodcontainer .wahl.active {background: #fff;}

#bestellung .prodcontainer .ce_rsce_servicedienst {position: relative; background: #fff; border: 2px solid #D4D5D5; width: 48%; box-sizing: border-box; margin-bottom: 40px; margin-left: 1%; margin-right: 1%; padding: 20px 0px;}
#bestellung .prodcontainer .ce_rsce_servicedienst h3 {color: #333; font-size: 3.2rem; line-height: 4rem; padding-left: 120px;}
#bestellung .prodcontainer .ce_rsce_servicedienst h4 {color: #333; font-family: 'poppinsbold'; font-size: 1.8rem; line-height: 2rem; padding-left: 120px; margin-top: -7px;}
#bestellung .prodcontainer .ce_rsce_servicedienst.zentrale h3 {color: #333; background: url(../../files/data/graphics/icon-zentrale.svg) bottom 2px left 40px no-repeat; padding-top: 30px; padding-bottom: 12px; margin: 0;}
/*body.it #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale h3 {color: #333; background: initial;}*/
#bestellung .prodcontainer .ce_rsce_servicedienst.friendsfamily h3 {color: #333; background: url(../../files/data/graphics/icon-friendsfamily.svg) bottom 2px left 40px no-repeat; padding-top: 30px; padding-bottom: 12px; margin: 0;}
#bestellung .prodcontainer .ce_rsce_servicedienst .beschreibung {padding: 5px 0 0px 0; margin: 5px 0; min-height: 130px; /*border-top: 1px solid #F0F2F7; border-bottom: 1px solid #F0F2F7;*/}
#bestellung .prodcontainer .ce_rsce_servicedienst .beschreibung p {font-size: 2rem; line-height: 2.8rem; text-align: left !important; padding: 0 40px 10px 40px; /*border-bottom: 1px solid #F0F2F7;*/}
#bestellung .prodcontainer .ce_rsce_servicedienst .beschreibung ul {box-sizing: border-box; width: 100%; padding: 0;}
#bestellung .prodcontainer .ce_rsce_servicedienst .beschreibung ul li {margin-bottom: 15px; line-height: 2.7rem; padding: 15px 40px 20px 80px; background: url(../../files/data/graphics/check-purp.svg) top 16px left 40px no-repeat; border-bottom: 1px solid #F0F2F7;}
#bestellung .prodcontainer .ce_rsce_servicedienst .beschreibung ul li:last-of-type {border-bottom: none;}
#bestellung .prodcontainer .ce_rsce_servicedienst .preisbox {display: inline-block; width: 50%; box-sizing: border-box; float: left; font-family: 'poppinsbold'; font-size: 2.4rem; line-height: 3.4rem; padding-left: 40px;}
#bestellung .prodcontainer .ce_rsce_servicedienst .preisbox .klein {font-family: 'poppinslight'; display: block; clear: both; font-size: 1.2rem; line-height: 1.8rem; vertical-align: top; color: #333; padding: 0;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahlbutton {text-align: center; float: right; margin-right: 40px;}
/*#bestellung .prodcontainer .ce_rsce_servicedienst .wahlbutton:after {content: ""; display: inline-block; margin: 5px 0; padding: 10px 15px; color: #fff; border-radius: 11px; background: #333333 url(../../files/data/graphics/check-black.svg) center left 15px no-repeat; transition: background 0.3s ease, padding 0.3s ease;}*/
/*#bestellung .prodcontainer .ce_rsce_servicedienst.active .wahlbutton:after {background: #8563A7 url(../../files/data/graphics/check-weiss.svg) center left 15px no-repeat; padding: 10px 15px 10px 55px;}*/
#bestellung .prodcontainer .ce_rsce_servicedienst .wahlbutton:after {content: ""; display: inline-block; margin: 5px 0; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 11px 30px 6px 30px; color: #fff; background: url() center left 20px no-repeat, #333; transition: all 0.3s ease;}
#bestellung .prodcontainer .ce_rsce_servicedienst.active .wahlbutton:after {padding-left: 60px; background: url(../../files/data/graphics/check-weiss.svg) center left 20px no-repeat, linear-gradient(90deg, #00619F 0%, #312783 100%);}
/*#bestellung .prodcontainer .ce_rsce_servicedienst.zentrale {padding-top: 60px;}*/
/*#bestellung .prodcontainer .ce_rsce_servicedienst.friendsfamily {margin-top: 45px; padding-top: 15px;}*/
body.de #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale:before {content: "Empfehlung"; display: block; width: 76px; padding: 3px 20px 0 20px; position: absolute; top: -35px; left: 10%; right: 0; color: #fff; background: #846FAA; font-size: 1.2rem; font-family: 'poppinsbold';}
body.de #bestellung .prodcontainer .ce_rsce_servicedienst .wahlbutton:after {content: "wählen";}
body.de #bestellung .prodcontainer .ce_rsce_servicedienst.active .wahlbutton:after {content: "gewählt";}
body.fr #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale:before {content: "Recommandation"; display: block; width: 112px; padding: 3px 20px 0 20px; position: absolute; top: -35px; left: 10%; right: 0; color: #fff; background: #846FAA; font-size: 1.2rem; font-family: 'poppinsbold';}
body.fr #bestellung .prodcontainer .ce_rsce_servicedienst .wahlbutton:after {content: "Choisir";}
body.fr #bestellung .prodcontainer .ce_rsce_servicedienst.active .wahlbutton:after {content: "sélectionné";}
body.it #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale:before {content: "Raccomandazione"; display: block; width: 121px; padding: 3px 20px 0 20px; position: absolute; top: -35px; left: 10%; right: 0; color: #fff; background: #846FAA; font-size: 1.2rem; font-family: 'poppinsbold';}
body.it #bestellung .prodcontainer .ce_rsce_servicedienst .wahlbutton:after {content: "Selezionare";}
body.it #bestellung .prodcontainer .ce_rsce_servicedienst.active .wahlbutton:after {content: "selezionato";}
body.en #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale:before {content: "Recommendation"; display: block; width: 121px; padding: 3px 20px 0 20px; position: absolute; top: -35px; left: 10%; right: 0; color: #fff; background: #846FAA; font-size: 1.2rem; font-family: 'poppinsbold';}
body.en #bestellung .prodcontainer .ce_rsce_servicedienst .wahlbutton:after {content: "Select";}
body.en #bestellung .prodcontainer .ce_rsce_servicedienst.active .wahlbutton:after {content: "selected";}
#bestellung .prodcontainer .ce_rsce_servicedienst .servicedienstrechts {display: inline-block; box-sizing: border-box; float: left; width: 50%; margin: 0; padding: 0 45px 0 0;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl {background: #fff; width: 100%; padding: 0; margin: 0;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler {display: inline-block; width: 100%;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler .minus {display: inline-block; float: left; width: 27%; position: relative; height: 32px; background: #333333;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler .minus:after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../../files/data/graphics/zaehler-minus.svg) center no-repeat;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler .minus:hover {background: #00619F; background: linear-gradient(90deg,rgba(0, 97, 159, 1) 0%, rgba(49, 39, 131, 1) 100%);}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler .plus {display: inline-block; float: left; width: 27%; position: relative; height: 32px; background: #333333;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler .plus:after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../../files/data/graphics/zaehler-plus.svg) center no-repeat;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler .plus:hover, #bestellung .prodcontainer .ce_rsce_servicedienst .wahl.active .zaehler .plus {background: #00619F; background: linear-gradient(90deg,rgba(0, 97, 159, 1) 0%, rgba(49, 39, 131, 1) 100%);}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler input {cursor: default; display: inline-block; float: left; width: 40%; margin: 0 3%; position: relative; height: 32px; text-align: center; border: none; border-radius: 0; background: #f0f0f0; font-size: 1.6rem; line-height: 1.6rem; font-family: 'poppinsbold'; outline: none;}
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler input:focus {outline: none;}
/* Chrome, Safari, Edge, Opera */
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler input::-webkit-outer-spin-button,
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler input::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
/* Firefox */
#bestellung .prodcontainer .ce_rsce_servicedienst .wahl .zaehler input[type=number] {-moz-appearance: textfield;}

#bestellung .prodcontainer .wahl.ce_rsce_produkte.unsichtbar {display: none !important;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte {border: 2px solid #D4D5D5; position: relative; width: 31.3332%; min-height: 337px; margin-left: 1%; margin-right: 1%;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte.active {border: 2px solid #D4D5D5;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte h3 {margin: 20px 0 0px 0; min-height: 46px; padding-right: 60px; font-size: 2rem; line-height: 2.3rem; padding-left: 40px; color: #333; font-family: 'poppinsbold';}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .infopopupbutton {position: absolute; top: 15px; right: 20px; width: 35px; height: 35px; cursor: pointer; background: url(../../files/data/graphics/prodpopup-open.svg) center no-repeat; z-index: 5; transition: background 0.3s ease;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .infopopupbutton.open {background: url(../../files/data/graphics/prodpopup-close.svg) center no-repeat;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .infopopup {position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-sizing: border-box; background: #fff; padding: 60px 25px 25px 25px; font-size: 1.6rem; line-height: 2rem; z-index: 3; display: none;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .image-container {box-sizing: border-box; width: 100%; height: 140px; padding: 30px 40px; margin-bottom: 20px; /*border-bottom: 1px solid #F0F2F7;*/}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .image-container img {width: 50%; height: 100%; object-fit: scale-down; object-position: top left;}
/*#bestellung .prodcontainer .wahl.ce_rsce_produkte .preisbox {display: inline-block; margin-top: 20px; font-weight: 700; font-size: 3rem; line-height: 2.5rem;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .preisbox .klein {font-weight: 400; font-size: 1.8rem; line-height: 1.8rem; vertical-align: top; color: #979592; padding: 0 5px;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton {display: inline-block; float: right;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton:after {content: ""; display: inline-block; margin: 0px 0; padding: 10px 15px; color: #fff; border-radius: 11px; background: #333333 url(../../files/data/graphics/check-black.svg) center left 15px no-repeat; transition: background 0.3s ease, padding 0.3s ease;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte.active .wahlbutton:after {background: #8563A7 url(../../files/data/graphics/check-weiss.svg) center left 15px no-repeat; padding: 10px 15px 10px 55px;}*/
#bestellung .prodcontainer .wahl.ce_rsce_produkte .preisbox {display: inline-block; width: 40%; box-sizing: border-box; float: left; font-family: 'poppinsbold'; font-size: 2.4rem; line-height: 3.4rem; padding-left: 40px;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .preisbox .klein {font-family: 'poppinslight'; display: block; clear: both; font-size: 1.2rem; line-height: 1.8rem; vertical-align: top; color: #333; padding: 0;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton {text-align: center; float: right; margin-right: 40px;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton:after {content: ""; display: inline-block; margin: 5px 0; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 11px 30px 6px 30px; color: #fff; background: url() center left 20px no-repeat, #333; transition: all 0.3s ease;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte.active .wahlbutton:after {padding-left: 60px; background: url(../../files/data/graphics/check-weiss.svg) center left 20px no-repeat, linear-gradient(90deg, #00619F 0%, #312783 100%);}

body.de #bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton:after {content: "wählen";}
body.de #bestellung .prodcontainer .wahl.ce_rsce_produkte.active .wahlbutton:after {content: "gewählt";}
body.fr #bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton:after {content: "choisir";}
body.fr #bestellung .prodcontainer .wahl.ce_rsce_produkte.active .wahlbutton:after {content: "sélectionné";}
body.it #bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton:after {content: "Selezionare";}
body.it #bestellung .prodcontainer .wahl.ce_rsce_produkte.active .wahlbutton:after {content: "Selezionato";}
body.en #bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton:after {content: "choose";}
body.en #bestellung .prodcontainer .wahl.ce_rsce_produkte.active .wahlbutton:after {content: "selected";}

body.de #bestellung .prodcontainer .wahl.ce_rsce_produkte.securitas .image-container:after {content: "*) Eine Intervention durch die Securitas kostet zusätzlich CHF 205.-"; color: #797979; font-size: 1.6rem; line-height: 2.4rem; top: -35px; position: relative; display: block;}
body.fr #bestellung .prodcontainer .wahl.ce_rsce_produkte.securitas .image-container:after {content: "*) Une itervention de Securitas coûte 205 CHF supplémentaires."; color: #797979; font-size: 1.6rem; line-height: 2.4rem; top: -35px; position: relative; display: block;}
body.it #bestellung .prodcontainer .wahl.ce_rsce_produkte.securitas .image-container:after {content: "*) Un intervento di Securitas costa altri 205 franci."; color: #797979; font-size: 1.6rem; line-height: 2.4rem; top: -35px; position: relative; display: block;}
body.en #bestellung .prodcontainer .wahl.ce_rsce_produkte.securitas .image-container:after {content: "*) An intervention by Securitas costs an additional CHF 205."; color: #797979; font-size: 1.6rem; line-height: 2.4rem; top: -35px; position: relative; display: block;}

#bestellung .prodcontainer .wahl.ce_rsce_produkte.rabatt .preisbox {font-size: 0rem;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte.rabatt .preisbox .klein {font-size: 0rem;}
#bestellung .prodcontainer .wahl.ce_rsce_produkte.rabatt .preisbox .preis {font-size: 3rem; color: #004F9E;}
body.de #bestellung .prodcontainer .wahl.ce_rsce_produkte.rabatt .preisbox .preis:after {content: "% Rabatt";}
body.fr #bestellung .prodcontainer .wahl.ce_rsce_produkte.rabatt .preisbox .preis:after {content: "% de réduction";}
body.it #bestellung .prodcontainer .wahl.ce_rsce_produkte.rabatt .preisbox .preis:after {content: " Sconto %";}
body.en #bestellung .prodcontainer .wahl.ce_rsce_produkte.rabatt .preisbox .preis:after {content: "% discount";}

#bestellung .wahl.dossier {display: none; width: 100%; box-sizing: border-box; margin-bottom: 40px; padding: 30px 0px; background: #fff; box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.06), 0px 0px 160px 120px rgba(0, 0, 0, 0.05);}
#bestellung .wahl.dossier h3 {margin: 20px 0 30px 0; font-size: 3.2rem; line-height: 4rem; padding: 0px 40px 40px 40px; color: #333; border-bottom: 2px solid #F0F2F7;}
/*#bestellung .wahl.dossier .preisbox {display: inline-block; margin-top: 20px; padding-left: 50px; font-weight: 700; font-size: 3rem; line-height: 2.5rem;}
#bestellung .wahl.dossier .preisbox .klein {font-weight: 400; font-size: 1.8rem; line-height: 1.8rem; vertical-align: top; color: #979592; padding: 0 5px;}
#bestellung .wahl.dossier .wahlbutton {display: inline-block; float: right;}
#bestellung .wahl.dossier .wahlbutton:after {content: ""; display: inline-block; margin: 0px 0; color: #fff; border-radius: 11px; background: #8563A7 url(../../files/data/graphics/check-weiss.svg) center left 15px no-repeat; padding: 10px 15px 10px 55px;}*/
#bestellung .wahl.dossier .preisbox {display: inline-block; width: 50%; box-sizing: border-box; font-weight: 700; font-size: 4rem; line-height: 4.8rem; padding-left: 40px; font-family: 'poppinslight';}
#bestellung .wahl.dossier .preisbox .klein {font-family: 'poppinsbold'; display: block; clear: both; font-size: 1.2rem; line-height: 1.8rem; vertical-align: top; color: #333; padding: 0 5px;}
#bestellung .wahl.dossier .wahlbutton {text-align: center; float: right; margin-right: 40px; margin-top: 20px;}
#bestellung .wahl.dossier .wahlbutton:after {margin: 5px 0; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; color: #fff; padding: 11px 30px 6px 60px; background: url(../../files/data/graphics/check-weiss.svg) center left 20px no-repeat, linear-gradient(90deg, #00619F 0%, #312783 100%);}
body.de #bestellung .wahl.dossier .wahlbutton:after {content: "obligatorisch";}
body.fr #bestellung .wahl.dossier .wahlbutton:after {content: "obligatoire";}
body.it #bestellung .wahl.dossier .wahlbutton:after {content: "obbligatorio";}
body.en #bestellung .wahl.dossier .wahlbutton:after {content: "obligatory";}

.datumcontainer {padding: 0px 0; border-top: 2px solid #E3E9F4; border-bottom: 2px solid #E3E9F4;}
.datumcontainer p {font-size: 1.8rem; line-height: 2.8rem; text-align: left !important; padding: 0px; color: #333;}
#container .datumcontainer .widget-text {display: flex; padding: 0 0 20px 0; align-items: center; justify-content: space-between;}
#container .datumcontainer .widget-text label {display: inline-block; width: auto; float: none; margin-right: 10px; margin-bottom: 15px; font-size: 1.8rem; line-height: 3.2rem; font-family: 'poppinslight';}
#container .datumcontainer .widget-text input {position: relative; display: inline-block; width: auto; width: 350px; background: #fff; padding: 7px 20px 3px 20px; font-size: 1.8rem; line-height: 3.2rem; box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16); filter: drop-shadow(0px 0px 48px 120px rgba(0, 0, 0, 0.05)); border-bottom: 4px solid #fff;}
#container .datumcontainer .widget-text input:focus {border-bottom: 4px solid; border-image: linear-gradient(90deg, #00619F 0%, #312783 100%) 1; outline: none;}
#container .datumcontainer .widget-text input:after {content: ""; display: block; width: 32px; height: 32px; position: absolute; top: 8px; right: 15px; background: #fff url(../../files/data/graphics/input-date-icon.svg) center no-repeat; pointer-events: none;}

#container .bestellungform .liste {margin-bottom: 50px; margin-left: auto; margin-right: auto; font-size: 1.8rem; line-height: 2.8rem;}
#container .bestellungform .liste > div {border-bottom: 2px solid #E3E9F4; padding: 15px 20px;}
#container .bestellungform .liste .widget-explanation.legendetitel {border-bottom: none;}
#container .bestellungform .liste .legende {padding-top: 0; font-size: 2.4rem; line-height: 3.6rem;}
#container .bestellungform .liste .legende .legende-artikel {display: inline-block; width: 15%; margin-right: 20px;}
#container .bestellungform .liste .legende .legende-beschreibung {display: inline-block; width: calc(85% - 600px); margin-right: 10px;}
#container .bestellungform .liste .legende .legende-einzelpreis {display: inline-block; width: 200px; margin-right: 50px; text-align: right;}
#container .bestellungform .liste .legende .legende-menge {display: inline-block; width: 150px;}
#container .bestellungform .liste .legende .legende-gesamt {display: inline-block; width: 154px; text-align: right;}
#container .bestellungform .liste .supportmember {color: #004F9E; padding: 0;}
#container .bestellungform .liste .supportmember input {color: #004F9E;}
#container .bestellungform .liste .supportmember > div {border-bottom: 2px solid #E3E9F4; padding: 10px 20px;}
#container .bestellungform .liste .item {display: none;}
#container .bestellungform .liste .item.active {display: block;}
#container .bestellungform .liste .itembild {display: inline-block; width: 15%; margin-right: 20px; vertical-align: top;}
#container .bestellungform .liste .itembild img {width: 100%; height: 100px; object-fit: scale-down; /*object-position: top;*/}
#container .bestellungform .liste .itemtitel {display: inline-block; width: calc(85% - 550px); margin-right: 10px;}
#container .bestellungform .liste .itemtitel h4 {font-size: 1.6rem; line-height: 2rem; font-family: 'poppinsbold'; margin: 0 0 4px 0; padding: 0;}
#container .bestellungform .liste .itemtitel p {margin-bottom: 0; font-size: 1.6rem; line-height: 2rem;}
#container .bestellungform .liste .itemklasse {display: none;}
#container .bestellungform .liste .widget.titeltext {display: none;}
#container .bestellungform .liste .widget.flavortext {display: none;}
#container .bestellungform .liste .widget {vertical-align: top;}
#container .bestellungform .liste .widget-explanation {font-size: 2.4rem; line-height: 3.2rem; padding-left: 0;}
#container .bestellungform .liste .menge {display: inline-block; width: 150px; min-height: 2px; vertical-align: top;}
#container .bestellungform .liste .item .zaehler {display: inline-block; width: 100%;}
#container .bestellungform .liste .item .zaehler .minus {cursor: pointer; display: inline-block; float: left; width: 35%; position: relative; height: 32px; background: #333333;}
#container .bestellungform .liste .item .zaehler .minus:after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../../files/data/graphics/zaehler-minus.svg) center no-repeat;}
#container .bestellungform .liste .item .zaehler .minus:hover {background: #00619F; background: linear-gradient(90deg,rgba(0, 97, 159, 1) 0%, rgba(49, 39, 131, 1) 100%);}
#container .bestellungform .liste .item .zaehler .plus {cursor: pointer; display: inline-block; float: left; width: 35%; position: relative; height: 32px; background: #333333;}
#container .bestellungform .liste .item .zaehler .plus:after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../../files/data/graphics/zaehler-plus.svg) center no-repeat;}
#container .bestellungform .liste .item .zaehler .plus:hover, #container .bestellungform .liste .item.active .zaehler .plus {background: #00619F; background: linear-gradient(90deg,rgba(0, 97, 159, 1) 0%, rgba(49, 39, 131, 1) 100%);}
#container .bestellungform .liste .item .zaehler input {cursor: default; display: inline-block; float: left; width: 24%; padding: 0; box-shadow: none; margin: 0 3%; position: relative; height: 32px; text-align: center; border: none; border-radius: 0; background: #fff; font-size: 1.6rem; line-height: 1.6rem; font-family: 'poppinsbold'; outline: none;}
#container .bestellungform .liste .item .zaehler input:focus {outline: none;}
/* Chrome, Safari, Edge, Opera */
#container .bestellungform .liste .item .zaehler input::-webkit-outer-spin-button,
#container .bestellungform .liste .item .zaehler input::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
/* Firefox */
#container .bestellungform .liste .item .zaehler input[type=number] {-moz-appearance: textfield;}
/*#container .bestellungform .liste .statusbtw {display: inline-block; width: 130px; margin-right: 20px; vertical-align: top;}*/
#container .bestellungform .liste .widget.preis {display: inline-block; width: 154px;}
/*#container .bestellungform .liste .widget.preis:before {content: "CHF"; display: inline-block; text-align: right; margin-left: 5px;}*/
#container .bestellungform .liste input.preis {height: 40px; display: inline-block; box-shadow: none; filter: initial; border-bottom: none; float: right; text-align: right; width: 105px; padding: 0; background: #fff;}
#container .bestellungform .liste input.preis:focus {outline: none; border-bottom: none;}
#container .bestellungform .liste .widget.einzelpreis {display: inline-block; width: 150px; margin-right: 50px;}
#container .bestellungform .liste input.einzelpreis {height: 40px; display: inline-block; box-shadow: none; filter: initial; border-bottom: none; float: right; text-align: right; width: 105px; padding: 0; background: #fff;}
#container .bestellungform .liste input.einzelpreis:focus {outline: none; border-bottom: none;}
#container .bestellungform .liste .anstattbox {display: none; text-align: right; font-family: 'poppinslight'; font-size: 1.8rem; line-height: 2.8rem; color: #004F9E;}
#container .bestellungform .liste .anstattbox.anstattactive {display: block;}
#container .bestellungform .liste .anstattbox .widget.preis {width: auto; padding-right: 1px;}
#container .bestellungform .liste .anstattbox .widget.preis:before {margin-left: 0;}
#container .bestellungform .liste .anstattbox .widget.preis input.preis {width: 80px; color: #004F9E; margin-top: -1px; text-decoration: line-through;}
#container .bestellungform .liste .menge .trash {display: inline-block; width: 32px; height: 32px; background: url(../../files/data/graphics/bestellung-trash.svg) center no-repeat; cursor: pointer;}

#container .bestellungform .listeinmalig {border-bottom: 2px solid #E3E9F4;}
#container .bestellungform .listeinmalig .rabattpauschal input.preis {border: 1px solid #979797;}
#container .bestellungform .listeinmalig .einmaligtotal {font-family: 'poppinsbold'; font-size: 2.4rem; line-height: 2.7rem; border-bottom: none; padding-top: 25px;}
#container .bestellungform .listeinmalig .einmaligtotal .itemtitel {width: calc(100% - 170px); font-family: 'poppinslight';}
#container .bestellungform .listeinmalig .einmaligtotal .itemtitel p {font-size: 2.4rem; line-height: 2.7rem;}
#container .bestellungform .listeinmalig .einmaligtotal div.preis:before {content: "CHF"; width: 45px; display: inline-block; padding-top: 1px;}
#container .bestellungform .listeinmalig .einmaligtotal div.preis:after {clear: both; font-size: 1.3rem; line-height: 2rem; font-family: 'poppinslight'; text-align: right; display: block;}
body.de #container .bestellungform .listeinmalig .einmaligtotal div.preis:after {content: "inkl. MwSt.";}
body.fr #container .bestellungform .listeinmalig .einmaligtotal div.preis:after {content: "TVA inclus";}
body.it #container .bestellungform .listeinmalig .einmaligtotal div.preis:after {content: "IVA inclusa";}
body.en #container .bestellungform .listeinmalig .einmaligtotal div.preis:after {content: "including VAT";}
#container .bestellungform .listeinmalig .einmaligtotal .preis input {margin-bottom: 0; height: 30px;}

#container .bestellungform .listeinmalig .einmaligtotalrabatt {font-family: 'poppinsbold'; font-size: 2.4rem; line-height: 2.7rem; border-bottom: none;}
#container .bestellungform .listeinmalig .einmaligtotalrabatt .itemtitel {width: calc(100% - 170px);}
#container .bestellungform .listeinmalig .einmaligtotalrabatt .itemtitel p {font-size: 2.4rem; line-height: 2.7rem;}
#container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:before {content: "CHF"; width: 45px; display: inline-block; padding-top: 1px;}
#container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:after {clear: both; font-size: 1.3rem; line-height: 2rem; font-family: 'poppinslight'; text-align: right; display: block;}
body.de #container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:after {content: "inkl. MwSt.";}
body.fr #container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:after {content: "TVA inclus";}
body.it #container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:after {content: "IVA inclusa";}
body.en #container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:after {content: "including VAT";}
#container .bestellungform .listeinmalig .einmaligtotalrabatt .preis input {margin-bottom: 0; height: 30px;}

body.de #container .bestellungform .listeinmalig .statusbtw:before {content: "einmalig";}
body.fr #container .bestellungform .listeinmalig .statusbtw:before {content: "une fois";}
body.it #container .bestellungform .listeinmalig .statusbtw:before {content: "una tantum";}
body.en #container .bestellungform .listeinmalig .statusbtw:before {content: "one-off";}

#container .bestellungform .listeinmalig .gutschein {border-bottom: none;}
#container .bestellungform .listeinmalig .gutschein .itemtitel {width: 17%; margin-right: 20px; padding-top: 10px;}
#container .bestellungform .listeinmalig .gutschein .itemtitel p {font-size: 2.4rem; line-height: 2.7rem;}
#container .bestellungform .listeinmalig .gutschein div.code {display: inline-block; width: 100%; max-width: 425px;}
#container .bestellungform .listeinmalig .gutschein .widget.preis {float: right; width: 174px; font-family: 'poppinsbold'; font-size: 2.4rem; line-height: 2.7rem;}
#container .bestellungform .listeinmalig .gutschein div.preis:before {content: "- CHF"; width: 69px; display: inline-block; padding-top: 6px;}

#container .bestellungform .listeinmalig .freibetragrabatt .itemtitel p {font-size: 2.4rem; line-height: 2.7rem;}
#container .bestellungform .listeinmalig .freibetragrabatt .widget-text {display: inline-block; width: calc(15% + 530px); text-align: right;}
#container .bestellungform .listeinmalig .freibetragrabatt .widget-text input {width: 100px; text-align: right; padding: 10px 0 1px 0;}

#container .bestellungform .listmonatlich .item.rabatt .widget.preis {display: none;}
#container .bestellungform .listmonatlich .item.rabatt .widget.rabattval {display: inline-block; width: 160px;}
#container .bestellungform .listmonatlich .item.rabatt .widget.rabattval:before {content: "CHF"; display: inline-block; text-align: right; margin-left: 5px;}
#container .bestellungform .listmonatlich .item.rabatt input.rabattval {display: inline-block; box-shadow: none; border-bottom: none; filter: initial; float: right; text-align: right; width: 105px; padding: 0; background: #fff;}
#container .bestellungform .listmonatlich .item.rabatt input.rabattval:focus {outline: none; border-bottom: none;}
#container .bestellungform .listmonatlich .prozentualrabatt input.preis {border: 1px solid #979797;}
#container .bestellungform .listmonatlich .prozentualrabatt .widget.preis:before {content: "%"; float: right; margin-left: 5px;}
#container .bestellungform .listmonatlich .monatlichtotal {font-family: 'poppinsbold'; font-size: 2.4rem; line-height: 2.7rem;}
#container .bestellungform .listmonatlich .monatlichtotal .itemtitel {width: calc(100% - 170px); font-family: 'poppinslight';}
#container .bestellungform .listmonatlich .monatlichtotal .itemtitel p {font-size: 2.4rem; line-height: 2.7rem;}
#container .bestellungform .listmonatlich .monatlichtotal div.preis:before {content: "CHF"; width: 45px; display: inline-block; padding-top: 1px;}
#container .bestellungform .listmonatlich .monatlichtotal .preis:after {clear: both; font-size: 1.3rem; line-height: 2rem; font-family: 'poppinslight'; text-align: right; display: block;}
body.de #container .bestellungform .listmonatlich .monatlichtotal .preis:after {content: "inkl. MwSt.";}
body.fr #container .bestellungform .listmonatlich .monatlichtotal .preis:after {content: "TVA inclus";}
body.it #container .bestellungform .listmonatlich .monatlichtotal .preis:after {content: "IVA inclusa";}
body.en #container .bestellungform .listmonatlich .monatlichtotal .preis:after {content: "including VAT";}
#container .bestellungform .listmonatlich .monatlichtotal .preis input {margin-bottom: 0; height: 30px;}
#container .bestellungform .listmonatlich .monatlichtotalrabatt {font-family: 'poppinsbold';}
body.de #container .bestellungform .listmonatlich .statusbtw:before {content: "pro Monat";}
body.de #container .bestellungform .listmonatlich .rabatt .statusbtw:before {content: "abzüglich";}
body.de #container .bestellungform .listmonatlich .supportmember .statusbtw:before {content: "einmalig";}
body.fr #container .bestellungform .listmonatlich .statusbtw:before {content: "par mois";}
body.fr #container .bestellungform .listmonatlich .rabatt .statusbtw:before {content: "moins";}
body.fr #container .bestellungform .listmonatlich .supportmember .statusbtw:before {content: "une fois";}
body.it #container .bestellungform .listmonatlich .statusbtw:before {content: "al mese";}
body.it #container .bestellungform .listmonatlich .rabatt .statusbtw:before {content: "meno";}
body.it #container .bestellungform .listmonatlich .supportmember .statusbtw:before {content: "una tantum";}
body.en #container .bestellungform .listmonatlich .statusbtw:before {content: "per month";}
body.en #container .bestellungform .listmonatlich .rabatt .statusbtw:before {content: "minus";}
body.en #container .bestellungform .listmonatlich .supportmember .statusbtw:before {content: "one-off";}

#container .bestellungform .kontaktcontainer {max-width: 1000px; margin-left: auto; margin-right: auto;}
#container .bestellungform .anwendercontainer {max-width: 1000px; margin-left: auto; margin-right: auto; padding-bottom: 5px; border-bottom: 2px solid #E3E9F4;}
#container .formbody .anwendercontainer .radio_container legend {margin-top: 0; padding-top: 0; font-size: 1.8rem; line-height: 2.8rem; font-family: 'poppinslight';}
body #container .formbody .anwendercontainer .radio_container label {width: 100%;}
#container .formbody .anwendercontainer h3 {margin-bottom: 4px;}
#container .bestellungform .zahlungradio legend {text-align: left;}
#container .bestellungform .zahlungradio legend:after {font-size: 1.8rem; line-height: 2.8rem;}
/*body.de #container .bestellungform .zahlungradio legend:after {content:"Die Verrechnung erfolgt halbjährlich."; display: block; clear: both; font-family: 'poppinslight';}
body.fr #container .bestellungform .zahlungradio legend:after {content:"La facturation est semestrielle."; display: block; clear: both; font-family: 'poppinslight';}
body.it #container .bestellungform .zahlungradio legend:after {content:"La fatturazione avviene ogni sei mesi."; display: block; clear: both; font-family: 'poppinslight';}
body.en #container .bestellungform .zahlungradio legend:after {content:"Invoicing takes place every six months."; display: block; clear: both; font-family: 'poppinslight';}*/

.bestellungkontakt {padding: 0 8px;}
.bestellungkontakt h3 {font-size: 2.4rem; line-height: 3.6rem; margin-top: 25px; margin-bottom: 4px; color: #333; font-family: 'poppinsbold'; text-align: left;}

.bestellungkontakt .widget.bemerkungen {display: inline-block; width: 100%; padding-bottom: 20px; border-bottom: 2px solid #E3E9F4;}
#container .bestellungkontakt .widget.bemerkungen label {font-size: 2.4rem; line-height: 3.6rem; margin-top: 25px; margin-bottom: 4px; color: #333; font-family: 'poppinsbold'; text-align: left;}

.kostenuebersicht {display: inline-block; width: 100%; padding-bottom: 20px; border-bottom: 2px solid #E3E9F4;}
.kostenuebersicht h3 {margin-bottom: 15px;}
.kostenuebersicht p {font-size: 2.4rem; line-height: 2.7rem;}
.kostenuebersicht .kostenuebersichteinmalig {display: inline-block; width: 100%;}
.kostenuebersicht .kostenuebersichtmonatlich {display: inline-block; width: 100%;}
.kostenuebersicht .links {display: inline-block; width: 60%; float: left;}
.kostenuebersicht .rechts {display: inline-block; width: 40%; float: left; text-align: right;}
.kostenuebersicht .rechts p {margin-bottom: 0;}
.kostenuebersicht .rechts p.klein {font-size: 1.3rem; line-height: 2rem;}

#container .bestellungform .sprachfeld {display: none;}
.formbody span.mandatory {color: #BF4E4C; float: none !important;}

.prodcontainer.keinebestellung {display: flex; flex-wrap: wrap; justify-content: space-between;}
.prodcontainer.keinebestellung .wahl {width: 48%; box-sizing: border-box; margin-bottom: 40px; padding: 20px 0px 107px 0; box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.06), 0px 0px 160px 120px rgba(0, 0, 0, 0.05); background: #fff;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst {position: relative;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst h3 {font-size: 3.5rem; line-height: 4rem; padding-left: 120px;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst h4 {font-family: 'poppinsbold'; color: #333; font-size: 1.8rem; line-height: 2rem; padding-left: 120px; margin-top: 0;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale h3 {color: #333; background: url(../../files/data/graphics/icon-zentrale.svg) bottom 2px left 40px no-repeat; padding-top: 30px; padding-bottom: 12px; margin: 0;}
/*body.it .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale h3 {color: #333; background: initial;}*/
.prodcontainer.keinebestellung .ce_rsce_servicedienst.friendsfamily h3 {color: #333; background: url(../../files/data/graphics/icon-friendsfamily.svg) bottom 2px left 40px no-repeat; padding-top: 30px; padding-bottom: 12px; margin: 0;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst .beschreibung {padding: 25px 0 0px 0; margin: 25px 0; border-top: 1px solid #F0F2F7;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst .beschreibung p {text-align: left !important; padding: 0 40px 20px 40px; border-bottom: 1px solid #F0F2F7;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst .beschreibung ul {box-sizing: border-box; width: 100%; padding: 0;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst .beschreibung ul li {margin-bottom: 15px; line-height: 2.7rem; padding: 15px 40px 20px 80px; background: url(../../files/data/graphics/check-purp.svg) top 16px left 40px no-repeat; border-bottom: 1px solid #F0F2F7;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst .beschreibung ul li:last-of-type {border-bottom: none;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst .preisbox {display: none;}
.prodcontainer.keinebestellung .wahl .zurbestellung {position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(90deg, #00619F 0%, #312783 100%); padding: 30px 0; display: flex; align-items: center; justify-content: center;}
.prodcontainer.keinebestellung .wahl .zurbestellung a {text-decoration: none; display: inline-block; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 9px 30px 4px 30px; border: 3px solid #fff; color: #fff; transition: none;}
.prodcontainer.keinebestellung .wahl .zurbestellung a:hover {background: #fff; color: #004F9F;}

/*.prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale {padding-top: 60px;}
.prodcontainer.keinebestellung .ce_rsce_servicedienst.friendsfamily {margin-top: 45px; padding-top: 15px;}*/
body.de .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale:before {content: "Empfehlung"; display: block; width: 76px; padding: 3px 20px 0 20px; position: absolute; top: -35px; left: 10%; right: 0; color: #fff; background: #846FAA; font-size: 1.2rem; font-family: 'poppinsbold';}
body.fr .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale:before {content: "Recommandation"; display: block; width: 112px; padding: 3px 20px 0 20px; position: absolute; top: -35px; left: 10%; right: 0; color: #fff; background: #846FAA; font-size: 1.2rem; font-family: 'poppinsbold';}
body.it .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale:before {content: "Raccomandazione"; display: block; width: 121px; padding: 3px 20px 0 20px; position: absolute; top: -35px; left: 10%; right: 0; color: #fff; background: #846FAA; font-size: 1.2rem; font-family: 'poppinsbold';}
body.en .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale:before {content: "Recommendation"; display: block; width: 121px; padding: 3px 20px 0 20px; position: absolute; top: -35px; left: 10%; right: 0; color: #fff; background: #846FAA; font-size: 1.2rem; font-family: 'poppinsbold';}

.bestellungslider .slick-container {padding-top: 115px; padding-bottom: 90px;}
.bestellungslider .slick-prev {display: inline-block; position: absolute; bottom: 0; left: 50%; transform: translateX(-110%); cursor: pointer; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 12px 30px 7px 30px; background: #333; color: #fff; text-decoration: none;}
.bestellungslider .slick-next {display: inline-block; position: absolute; bottom: 0; left: 50%; transform: translateX(10%); cursor: pointer; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 12px 30px 7px 30px; background: #333; color: #fff; text-decoration: none;}
.bestellungslider .slick-disabled {display: none !important;}
.bestellungslider .slick-dots {display: block; position: absolute; top: 0; left: 0; width: 100%; box-sizing: border-box; padding: 24px 0 4px 0; min-height: 75px; border-top: 2px solid #E3E9F4; border-bottom: 2px solid #E3E9F4; margin-bottom: 0;}
.bestellungslider .slick-dots li {display: inline-block; position: relative; margin-top: 0px; margin-bottom: 10px; margin-right: 30px; cursor: pointer;}
.bestellungslider .slick-dots li:after {font-family: 'poppinsbold'; text-decoration: underline; font-size: 2.4rem; line-height: 3rem; opacity: 0;}
.bestellungslider .slick-dots li button {position: absolute; top: 0; left: 0; padding: 0; background: #fff; font-family: 'poppinslight'; color: #004F9F; font-size: 2.4rem; line-height: 3rem; border: none; cursor: pointer;}
.bestellungslider .slick-dots li:hover button, .bestellungslider .slick-dots li.slick-active button {top: -1px; font-family: 'poppinsbold'; text-decoration: underline;}
.bestellungslider .slick-dots li button:after {display: inline; font-family: 'poppinslight'; color: #004F9F; font-size: 2.4rem; line-height: 3rem;}
.bestellungslider .slick-dots li:hover button:after, .bestellungslider .slick-dots li.slick-active button:after {font-family: 'poppinsbold'; text-decoration: underline;}
.bestellungslider .slick-dots li button:focus {outline: none;}

body.de .bestellungslider .slick-dots li:nth-of-type(1) button:after {content: ". Notrufgeräte";}
body.de .bestellungslider .slick-dots li:nth-of-type(2) button:after {content: ". Notruftasten";}
body.de .bestellungslider .slick-dots li:nth-of-type(3) button:after {content: ". Dienstleisungen";}
body.de .bestellungslider .slick-dots li:nth-of-type(4) button:after {content: ". Optionen";}
body.de .bestellungslider .slick-dots li:nth-of-type(5) button:after {content: ". Warenkorb";}
body.de .bestellungslider .slick-dots li:nth-of-type(6) button:after {content: ". Checkout";}

body.de .bestellungslider .slick-dots li:nth-of-type(1):after {content: "1. Notrufgeräte";}
body.de .bestellungslider .slick-dots li:nth-of-type(2):after {content: "2. Notruftasten";}
body.de .bestellungslider .slick-dots li:nth-of-type(3):after {content: "3. Dienstleisungen";}
body.de .bestellungslider .slick-dots li:nth-of-type(4):after {content: "4. Optionen";}
body.de .bestellungslider .slick-dots li:nth-of-type(5):after {content: "5. Warenkorb";}
body.de .bestellungslider .slick-dots li:nth-of-type(6):after {content: "6. Checkout";}

body.fr .bestellungslider .slick-dots li:nth-of-type(1) button:after {content: ". Apareils";}
body.fr .bestellungslider .slick-dots li:nth-of-type(2) button:after {content: ". Déclencheurs";}
body.fr .bestellungslider .slick-dots li:nth-of-type(3) button:after {content: ". Services";}
body.fr .bestellungslider .slick-dots li:nth-of-type(4) button:after {content: ". Options";}
body.fr .bestellungslider .slick-dots li:nth-of-type(5) button:after {content: ". Panier";}
body.fr .bestellungslider .slick-dots li:nth-of-type(6) button:after {content: ". Paiement";}

body.fr .bestellungslider .slick-dots li:nth-of-type(1):after {content: "1. Apareils";}
body.fr .bestellungslider .slick-dots li:nth-of-type(2):after {content: "2. Déclencheurs";}
body.fr .bestellungslider .slick-dots li:nth-of-type(3):after {content: "3. Services";}
body.fr .bestellungslider .slick-dots li:nth-of-type(4):after {content: "4. Options";}
body.fr .bestellungslider .slick-dots li:nth-of-type(5):after {content: "5. Panier";}
body.fr .bestellungslider .slick-dots li:nth-of-type(6):after {content: "6. Paiement";}

body.it .bestellungslider .slick-dots li:nth-of-type(1) button:after {content: ". Dispositivo";}
body.it .bestellungslider .slick-dots li:nth-of-type(2) button:after {content: ". Pulsante";}
body.it .bestellungslider .slick-dots li:nth-of-type(3) button:after {content: ". Servizi";}
body.it .bestellungslider .slick-dots li:nth-of-type(4) button:after {content: ". Opzioni";}
body.it .bestellungslider .slick-dots li:nth-of-type(5) button:after {content: ". Carrello";}
body.it .bestellungslider .slick-dots li:nth-of-type(6) button:after {content: ". Checkout";}

body.it .bestellungslider .slick-dots li:nth-of-type(1):after {content: "1. Dispositivo";}
body.it .bestellungslider .slick-dots li:nth-of-type(2):after {content: "2. Pulsante";}
body.it .bestellungslider .slick-dots li:nth-of-type(3):after {content: "3. Servizi";}
body.it .bestellungslider .slick-dots li:nth-of-type(4):after {content: "4. Opzioni";}
body.it .bestellungslider .slick-dots li:nth-of-type(5):after {content: "5. Carrello";}
body.it .bestellungslider .slick-dots li:nth-of-type(6):after {content: "6. Checkout";}

body.en .bestellungslider .slick-dots li:nth-of-type(1) button:after {content: ". Devices";}
body.en .bestellungslider .slick-dots li:nth-of-type(2) button:after {content: ". Buttons";}
body.en .bestellungslider .slick-dots li:nth-of-type(3) button:after {content: ". Services";}
body.en .bestellungslider .slick-dots li:nth-of-type(4) button:after {content: ". Options";}
body.en .bestellungslider .slick-dots li:nth-of-type(5) button:after {content: ". Shopping cart";}
body.en .bestellungslider .slick-dots li:nth-of-type(6) button:after {content: ". Checkout";}

body.en .bestellungslider .slick-dots li:nth-of-type(1):after {content: "1. Devices";}
body.en .bestellungslider .slick-dots li:nth-of-type(2):after {content: "2. Buttons";}
body.en .bestellungslider .slick-dots li:nth-of-type(3):after {content: "3. Services";}
body.en .bestellungslider .slick-dots li:nth-of-type(4):after {content: "4. Options";}
body.en .bestellungslider .slick-dots li:nth-of-type(5):after {content: "5. Shopping cart";}
body.en .bestellungslider .slick-dots li:nth-of-type(6):after {content: "6. Checkout";}

#container .realform .bestellungform .listeinmalig {display: none;}
#container .realform .bestellungform .listmonatlich {display: none;}

/*  FOOTER                                                   */
/*************************************************************/
#footer {height: auto; display: block; clear: both; position: relative;}
/*#footer .footertop {background: #F2F2F2;}*/
#footer .footertop .inside {position: relative; width: 92%; padding: 60px 4%; box-sizing: border-box; max-width: 1322px; margin: 0 auto; box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.06), 0px 0px 160px 120px rgba(0, 0, 0, 0.05); background: linear-gradient(90deg, #00619F 0%, #312783 100%);}
#footer .footertop h4 {color: #fff;}
#footer .footertop .ftl {color: #fff; /*padding-left: 80px; background: url(../../files/data/graphics/footer-ftl.svg) top left no-repeat;*/}
#footer .footertop .ftl a {display: inline-block; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 9px 30px 4px 30px; border: 3px solid #fff; color: #fff; transition: none;}
#footer .footertop .ftl a:hover {background: #fff; color: #004F9F;}
#footer .footertop .ftr {color: #fff; /*padding-left: 80px; background: url(../../files/data/graphics/cart-schwarz.svg) top left no-repeat;*/}
#footer .footertop .ftr a {display: inline-block; font-family: 'poppinsbold'; font-size: 2rem; line-height: 2.8rem; padding: 9px 30px 4px 30px; border: 3px solid #fff; color: #fff; transition: none;}
#footer .footertop .ftr a:hover {background: #fff; color: #004F9F;}

/*#footer .footerbot {background: #E3E9F4;}*/
#footer .footerbot .inside {position: relative; width: 92%; padding: 80px 4% 20px 4%; box-sizing: border-box; max-width: 1322px; margin: 0 auto; box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.06), 0px 0px 160px 120px rgba(0, 0, 0, 0.05);}
#footer .footerbot .footerlogo {margin-top: 20px; margin-bottom: 20px;}
#footer .footerbot h4 {margin-top: 0; font-size: 3.1rem;}
#footer .footerbot h5 {font-size: 1.6rem; line-height: 2.6rem;}
#footer .footerbot p {font-size: 1.6rem; line-height: 2.6rem;}
#footer .footerbot a {color: #333; text-decoration: none; transition: color 0.3s ease;}
#footer .footerbot a:hover {color: #8563A7;}
#footer .footerbot .bot {border-top: 2px solid #E2E4E8; padding-top: 20px; margin-top: 50px;}
#footer .footerbot .bot .content-text {font-size: 1.6rem; line-height: 2rem;}
#footer .footerbot .bot .content-image {text-align: right; vertical-align: top;}
body.keinefragen .footertop {display: none;}

/*  LIGHTBOX	                                             */
/*************************************************************/
#cboxTitle {display: none !important;} 
#cboxLoadedContent {border: none;} 
#cboxNext {background: url("../../files/data/graphics/lightbox-next.svg"); width: 35px; position: absolute; right: 15px; height: 45px; top: 53%; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxPrevious {background: url("../../files/data/graphics/lightbox-prev.svg"); width: 35px; position: absolute; left: 15px; height: 45px; top: 53%; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxClose {background: url("../../files/data/graphics/lightbox-close.svg"); width: 35px; position: absolute; right: 15px; top: 15px; height: 35px; background-position: center; background-repeat: no-repeat; background-size: contain;} 
#cboxCurrent {font-size: 14px;} 

/*  FIXES		                                             */
/*************************************************************/
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height:0px;}
.clearfix {display: block;}
/* End hide from IE-mac */

/*Abstaende*/
.oben0 {margin-top: 0px !important;}
.oben10 {margin-top: 10px !important;}
.oben20 {margin-top: 20px !important;}
.oben30 {margin-top: 30px !important;}
.oben40 {margin-top: 40px !important;}
.oben50 {margin-top: 50px !important;}
.oben60 {margin-top: 60px !important;}
.oben70 {margin-top: 70px !important;}
.oben80 {margin-top: 80px !important;}
.oben90 {margin-top: 90px !important;}
.oben100 {margin-top: 100px !important;}
.oben110 {margin-top: 110px !important;}
.oben120 {margin-top: 120px !important;}
.oben130 {margin-top: 130px !important;}
.oben140 {margin-top: 140px !important;}
.oben150 {margin-top: 150px !important;}

.unten0 {margin-bottom: 0px !important;}
.unten10 {margin-bottom: 10px !important;}
.unten20 {margin-bottom: 20px !important;}
.unten30 {margin-bottom: 30px !important;}
.unten40 {margin-bottom: 40px !important;}
.unten50 {margin-bottom: 50px !important;}
.unten60 {margin-bottom: 60px !important;}
.unten70 {margin-bottom: 70px !important;}
.unten80 {margin-bottom: 80px !important;}
.unten90 {margin-bottom: 90px !important;}
.unten100 {margin-bottom: 100px !important;}
.unten110 {margin-bottom: 110px !important;}
.unten120 {margin-bottom: 120px !important;}
.unten130 {margin-bottom: 130px !important;}
.unten140 {margin-bottom: 140px !important;}
.unten150 {margin-bottom: 150px !important;}

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on February 22, 2024 */
@font-face {
    font-family: 'poppinsblack';
    src: url('../../files/data/style/Fonts/poppins-black-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinsbold';
    src: url('../../files/data/style/Fonts/poppins-bold-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinsextrabold';
    src: url('../../files/data/style/Fonts/poppins-extrabold-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinsextralight';
    src: url('../../files/data/style/Fonts/poppins-extralight-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-extralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinsitalic';
    src: url('../../files/data/style/Fonts/poppins-italic-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinslight';
    src: url('../../files/data/style/Fonts/poppins-light-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinsmedium';
    src: url('../../files/data/style/Fonts/poppins-medium-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinsregular';
    src: url('../../files/data/style/Fonts/poppins-regular-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppinsthin';
    src: url('../../files/data/style/Fonts/poppins-thin-webfont.woff2') format('woff2'),
         url('../../files/data/style/Fonts/poppins-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*  MEDIA QUERIES                                            */
/*************************************************************/
@media screen and (max-width: 1550px) {
	#container .mod_article.vollbild .inside .content-text {right: 0; bottom: -40px; margin-bottom: 0;}
}

@media screen and (max-width: 1440px) {
	#header .navigation li {margin: 0 8px;}
	.mod_article.vollbild.top .inside {height: 56vw;}
	.mod_article.vollbild.top .inside .content-image, .mod_article.vollbild .inside .content-player {height: 56vw;}
	#footer .footertop .inside {box-sizing: initial;}
	#footer .footerbot .inside {box-sizing: initial;}
	.shadowbgbox:after {left: 10%;}
	#bestellung .prodcontainer .plusminusbox {width: 48%;}
	#bestellung .prodcontainer .wahl.ce_rsce_produkte {width: 48%;}
}

/*@media screen and (max-width: 1300px) {
	#header .navigation li a.shop {padding: 12px 15px; background: #333333;}
	#header .navigation li a.shop:hover, #header .navigation li a.shop.active, #header .navigation li a.shop.trail {background: #8563A7;}
	#header .logo {margin-top: 58px; width: 150px;}
	#header .navigation li {font-size: 1.8rem;}
	#header .navigation li a {padding-bottom: 53px;}
}*/

@media screen and (max-width: 1200px) {
	#header .navigation li a {padding-bottom: 26px; font-size: 2.1rem;}
    h1, h2 {font-size: 6rem; line-height: 6.5rem;}
    h3 {font-size: 4.5rem; line-height: 5rem;}
    #container .mod_article.vollbild .inside .content-text {width: 350px;}
    .mod_article.vollbild .inside .content-text h1, .mod_article.vollbild .inside .content-text h2 {font-size: 3.2rem; line-height: 4rem;}
    .mod_article.vollbild .inside .content-text h4 {display: none;}
    #container .content-vimeo iframe {height: 51vw;}
    #main .mod_article.halbvollbild .inside .content-text {right: 0; bottom: 20px; margin-bottom: 0; width: 350px;}
    #main .mod_article.halbvollbild .inside .content-text h2 {font-size: 1.8rem; line-height: 2.8rem;}
    #container .bestellungform .liste .legende .legende-einzelpreis {display: none;}
    #container .bestellungform .liste .widget.einzelpreis {display: none;}
    #container .bestellungform .liste .itemtitel {width: calc(85% - 350px);}
    #container .bestellungform .liste .legende .legende-beschreibung {width: calc(85% - 350px);}
}

@media screen and (max-width: 1100px) {
    #container {padding-top: calc(2vw + 40px);}
    #header {height: 64px; position: fixed; top: 2vw; margin-top: 0;}
    #header.up {top:2vw;}
    #header .logo {margin-top: 22px; width: 100px;}
    #header .mobilecart {display: inline-block; float: right; margin: 22px 60px 0 0;}
    #header .navigation {display: none;}
    #header .headerrechts {display: none;}
    .mod_article.toplogoarticle .inside {padding: 25px 4%;}
    #footer .footerbot .bot .content-image {text-align: left;}
    .toplogoarticle .toplinkcart {display: inline-block;}

    #bestellung .prodcontainer .wahl {width: 100%;}
    #bestellung .prodcontainer .ce_rsce_servicedienst.friendsfamily {width: 100%; margin-top: 0;}
    /*#bestellung .prodcontainer .wahl.ce_rsce_produkte .preisbox {display: block; text-align: center;}
    #bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton {margin-top: 20px; display: block; float: none; text-align: center;}
    #bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton:after {padding: 7px 10px;}
    #bestellung .prodcontainer .wahl.ce_rsce_produkte.active .wahlbutton:after {padding: 7px 15px 7px 55px;}
    #bestellung .wahl.dossier .preisbox {display: block; text-align: center; padding-left: 0;}
    #bestellung .wahl.dossier .wahlbutton {margin-top: 20px; display: block; float: none; text-align: center;}
    #bestellung .wahl.dossier .wahlbutton:after {padding: 7px 15px 7px 55px;}*/
    .prodcontainer.keinebestellung .wahl {width: 100%;}
    .prodcontainer.keinebestellung .ce_rsce_servicedienst.friendsfamily {width: 100%; margin-top: 0;}
    #container .bestellungform .listeinmalig .gutschein div.code {width: 340px;}
}

@media screen and (max-width: 940px) {
    #container .rs-column.-large-col-2-1 {width: 100%; margin-right: 0; margin-top: 0;}
    #container .rs-column.-large-col-3-1 {width: 100%; margin-right: 0; margin-top: 0;}
    #container .rs-column.-large-col-4-1 {width: 100%; margin-right: 0; margin-top: 0;}
    .schmal75 {width: 100% !important; margin: 0 auto;}
    .schmal50 {width: 100% !important; margin: 0 auto;}
    #footer .footerbot .content-text p {text-align: left !important; margin-bottom: 0;}
    .mod_article.halbgrau .hell {padding: 0; background: initial; border: none;}
    .mod_article.halbgrau .dunkel {padding: 0; background: initial; border: none;}
    #container .mod_article.halbgrau .hell .content-text {padding-left: 85px; margin-bottom: 40px;}
    .mod_article.halbgrau .hell:before {left: 43px;}
    .mod_article .inside {padding: 30px 4%;}
    .mod_article.halbgrau {background: initial;}
    .mod_article.halbgrau .hell .content-text.eins {background: url(../../files/data/graphics/mark-1-weiss.svg) top left no-repeat;}
    .mod_article.halbgrau .hell .content-text.zwei {background: url(../../files/data/graphics/mark-2-weiss.svg) top left no-repeat;}
    .mod_article.halbgrau .hell .content-text.drei {background: url(../../files/data/graphics/mark-3-weiss.svg) top left no-repeat;}
    .mod_article.halbgrau .hell .content-text.vier {background: url(../../files/data/graphics/mark-4-weiss.svg) top left no-repeat;}
    #bestellung .prodcontainer .plusminusbox {width: 98%;}
	#bestellung .prodcontainer .wahl.ce_rsce_produkte {width: 98%;}
	.bestellungslider .slick-dots {padding: 15 0 0 0;}
	.bestellungslider .slick-dots li {margin-bottom: 4px; margin-right: 20px;}
	.bestellungslider .slick-dots li:after {font-size: 1.8rem; line-height: 2.2rem;}
	.bestellungslider .slick-dots li button {font-size: 1.8rem; line-height: 2.2rem;}
	.bestellungslider .slick-dots li button:after {font-size: 1.8rem; line-height: 2.2rem;}

    /*Abstaende*/
    .oben10 {margin-top: 5px !important;}
    .oben20 {margin-top: 10px !important;}
    .oben30 {margin-top: 15px !important;}
    .oben40 {margin-top: 20px !important;}
    .oben50 {margin-top: 25px !important;}
    .oben60 {margin-top: 30px !important;}
    .oben70 {margin-top: 35px !important;}
    .oben80 {margin-top: 40px !important;}
    .oben90 {margin-top: 45px !important;}
    .oben100 {margin-top: 50px !important;}
    .oben110 {margin-top: 50px !important;}
    .oben120 {margin-top: 50px !important;}
    .oben130 {margin-top: 50px !important;}
    .oben140 {margin-top: 50px !important;}
    .oben150 {margin-top: 50px !important;}

    .unten10 {margin-bottom: 5px !important;}
    .unten20 {margin-bottom: 10px !important;}
    .unten30 {margin-bottom: 15px !important;}
    .unten40 {margin-bottom: 20px !important;}
    .unten50 {margin-bottom: 25px !important;}
    .unten60 {margin-bottom: 30px !important;}
    .unten70 {margin-bottom: 35px !important;}
    .unten80 {margin-bottom: 40px !important;}
    .unten90 {margin-bottom: 45px !important;}
    .unten100 {margin-bottom: 50px !important;}
    .unten110 {margin-bottom: 50px !important;}
    .unten120 {margin-bottom: 50px !important;}
    .unten130 {margin-bottom: 50px !important;}
    .unten140 {margin-bottom: 50px !important;}
    .unten150 {margin-bottom: 50px !important;}
}

@media screen and (max-width: 850px) {
	#container .bestellungform .liste .legende {padding: 0;}
	#container .bestellungform .liste .legende div {display: none !important;}
	#container .bestellungform .liste .widget-explanation.legendetitel {padding-bottom: 0;}
	#container .bestellungform .liste .itembild {width: 100%; margin-right: 0; margin-bottom: 20px;}
	#container .bestellungform .liste .itemtitel {width: 100%; margin-right: 0; margin-bottom: 20px;}
	#container .bestellungform .liste .widget.preis {float: right; text-align: right;}
	#container .bestellungform .liste input.preis {float: none;}
	#container .bestellungform .liste .itembild img {object-position: left;}
	#container .bestellungform .listeinmalig .einmaligtotal .itemtitel {width: 100%; margin-right: 0; margin-bottom: 20px;}
	#container .bestellungform .listeinmalig .einmaligtotal .widget.preis {width: 100%; margin-right: 0; margin-bottom: 20px; text-align: left; float: none;}
	#container .bestellungform .listeinmalig .einmaligtotal .widget.preis input {width: calc(100% - 65px); text-align: left;}
	#container .bestellungform .listeinmalig .einmaligtotal div.preis:before {width: 55px;}
	#container .bestellungform .listeinmalig .einmaligtotal div.preis:after {text-align: left;}
	#container .bestellungform .listeinmalig .gutschein .itemtitel {width: 100%; margin-right: 0; margin-bottom: 20px;}
	#container .bestellungform .listeinmalig .gutschein div.code {width: 100%; margin-right: 0; margin-bottom: 0px; max-width: initial;}
	#container .bestellungform .listeinmalig .gutschein .widget.preis {width: 100%; margin-right: 0; margin-bottom: 40px; text-align: left;}
	#container .bestellungform .listeinmalig .gutschein .widget.preis input {width: calc(100% - 75px); text-align: left;}
	#container .bestellungform .listeinmalig .einmaligtotalrabatt .itemtitel {width: 100%; margin-right: 0; margin-bottom: 20px;}
	#container .bestellungform .listeinmalig .einmaligtotalrabatt .widget.preis {width: 100%; margin-right: 0; margin-bottom: 20px; text-align: left; float: none;}
	#container .bestellungform .listeinmalig .einmaligtotalrabatt .widget.preis input {width: calc(100% - 65px); text-align: left;}
	#container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:before {width: 55px;}
	#container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:after {text-align: left;}
	#container .bestellungform .listmonatlich .monatlichtotal .itemtitel {width: 100%; margin-right: 0; margin-bottom: 20px;}
	#container .bestellungform .listmonatlich .monatlichtotal .widget.preis {width: 100%; margin-right: 0; margin-bottom: 20px; text-align: left; float: none;}
	#container .bestellungform .listmonatlich .monatlichtotal .widget.preis input {width: calc(100% - 65px); text-align: left;}
	#container .bestellungform .listmonatlich .monatlichtotal div.preis:before {width: 55px;}
	#container .bestellungform .listmonatlich .monatlichtotal div.preis:after {text-align: left;}
	.kostenuebersicht .links {width: 100%; float: none;}
	.kostenuebersicht .rechts {width: 100%; float: none; text-align: left;}
	.kostenuebersicht .kostenuebersichteinmalig {margin-bottom: 20px;}
}

@media screen and (max-width: 768px) {
	.zentriert {text-align: left !important;}
	.content-text h1 {text-align: left !important;}
	.content-text h2 {text-align: left !important;}
	.content-text h3 {text-align: left !important;}
	.content-text p {text-align: left !important;}
	.content-text.gross p {font-size: 2rem; line-height: 3.2rem}
    body {font-size: 18px; font-size: 1.8rem; line-height: 2.8rem;}
    h1, h2 {font-size: 3.2rem; line-height: 4rem;}
    h3 {font-size: 2.4rem; line-height: 3.2rem;}
    h4 {font-size: 2rem; line-height: 2.8rem;}
    .content-accordion .handorgel__header__button {line-height: 2.8rem;}
    .notrufakkordeons.content-accordion .handorgel__header__button {padding: 90px 70px 15px 20px;}
    .notrufakkordeons.content-accordion #handorgel1-fold1-header .handorgel__header__button {background: url(../../files/data/graphics/icon-call.svg) top 20px left 20px no-repeat;}
	.notrufakkordeons.content-accordion #handorgel1-fold2-header .handorgel__header__button {background: url(../../files/data/graphics/icon-shield.svg) top 20px left 20px no-repeat;}
	.notrufakkordeons.content-accordion #handorgel1-fold3-header .handorgel__header__button {background: url(../../files/data/graphics/icon-supporter.svg) top 20px left 20px no-repeat;}
	.notrufakkordeons.content-accordion .handorgel__content__inner {padding-left: 20px; padding-right: 40px;}
	.bgbox:after {width: 40%;}
	.shadowbgbox:after {width: 40%;}
	#main .mod_article.halbvollbild .inside {width: 100%; padding: 30px 0;}
	#main .mod_article.halbvollbild .inside .content-text {position: relative; width: 100%; margin-bottom: 20px;}
	#main .mod_article.halbvollbild .inside .content-text:before {content: ""; width: 40%; height: 20px; position: absolute; bottom: -20px; left: 10%; z-index: -1; background: linear-gradient(90deg, #C0A9CF 0%, #846FAA 100%);}
	#main .mod_article.halbvollbild .inside .content-text:after {mix-blend-mode: initial;}
    .mod_article.vollbild.top .inside {height: 390px;}
	.mod_article.vollbild.top .inside .content-image, .mod_article.vollbild.top .inside .content-image figure, .mod_article.vollbild .inside .content-player {height: 390px;}
	.mod_article.vollbild.top .inside .content-image img {width: 100%; height: 100%; object-fit: cover;}
	#container .mod_article.vollbild .inside .content-text {width: 300px; bottom: -20px;}
	.mod_article.shadowbox .hell {padding-left: 0;}
	.mod_article.shadowbox .hell:before {left: 35px;}
	body #container .content-downloads a, body #container .content-download a, body #container .enclosure a {padding: 40px 60px 35px 25px; font-size: 2rem; line-height: 2.8rem; hyphens: auto;}
	#footer .footertop .ftr a {font-size: 1.6rem; line-height: 2.6rem;}
	#footer .footertop .ftl a {font-size: 1.6rem; line-height: 2.6rem;}
	#bestellung .prodcontainer .ce_rsce_servicedienst.zentrale h3 {background: initial;}
    #bestellung .prodcontainer .ce_rsce_servicedienst.friendsfamily h3 {background: initial;}
    .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale h3 {background: initial;}
    .prodcontainer.keinebestellung .ce_rsce_servicedienst.friendsfamily h3 {background: initial;}
    .prodcontainer.keinebestellung .ce_rsce_servicedienst h3 {padding-left: 40px;}
    .prodcontainer.keinebestellung .ce_rsce_servicedienst h4 {padding-left: 40px;}
    body.de .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale:before {top: -29px;}
    body.fr .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale:before {top: -29px;}
    body.en .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale:before {top: -29px;}
    body.it .prodcontainer.keinebestellung .ce_rsce_servicedienst.zentrale:before {top: -29px;}
    #bestellung .prodcontainer .wahl .zurbestellung a {font-size: 1.6rem; line-height: 2.6rem;}
    #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale h3 {background: initial;}
    #bestellung .prodcontainer .ce_rsce_servicedienst.friendsfamily h3 {background: initial;}
    #bestellung .prodcontainer .ce_rsce_servicedienst h3 {padding-left: 40px;}
    #bestellung .prodcontainer .ce_rsce_servicedienst h4 {padding-left: 40px;}
    body.de #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale:before {top: -29px;}
    body.fr #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale:before {top: -29px;}
    body.en #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale:before {top: -29px;}
    body.it #bestellung .prodcontainer .ce_rsce_servicedienst.zentrale:before {top: -29px;}
    #bestellung .prodcontainer .ce_rsce_servicedienst .preisbox {width: 100%; padding-right: 40px; border-bottom: 1px solid #F0F2F7; padding-bottom: 20px;}
    #bestellung .prodcontainer .ce_rsce_servicedienst .wahlbutton {float: left; margin-left: 40px; margin-top: 20px;}
    #bestellung .prodcontainer .wahl.ce_rsce_produkte .preisbox {width: 100%; padding-right: 40px; border-bottom: 1px solid #F0F2F7; padding-bottom: 20px;}
    #bestellung .prodcontainer .wahl.ce_rsce_produkte .wahlbutton {float: left; margin-left: 40px; margin-top: 20px;}
    #container .datumcontainer .widget-text label {width: 100%; margin-right: 0; margin-bottom: 15px; display: block; font-size: 1.8rem;}
    #container .datumcontainer .widget-text {display: block;}
    #container .datumcontainer .widget-text input {font-size: 1.8rem;}
    #bestellung .wahl.dossier .preisbox {width: 100%; padding-right: 40px; border-bottom: 1px solid #F0F2F7; padding-bottom: 20px;}
	#bestellung .wahl.dossier .wahlbutton {float: none; text-align: left; margin-left: 40px; margin-top: 40px;}
    #container .bestellungform .liste .itemtitel {display: block; width: 100%; margin-right: 0;}
    #container .bestellungform .liste .statusbtw {display: none;}
    /*#container .bestellungform .liste .widget.preis {display: block; width: 100%;}*/
    /*#container .bestellungform .formbody .liste input.preis {float: none; width: 75px;}
    #container .bestellungform .listmonatlich .item.rabatt input.rabattval {float: none; width: 75px;}
    #container .bestellungform .liste .widget.preis:before {margin-left: 0;}
    #container .bestellungform .liste .anstattbox {text-align: left; font-size: 1.6rem; line-height: 2.2rem;}
    #container .bestellungform .liste .anstattbox .widget.preis {display: inline-block; vertical-align: inherit;}
    #container .bestellungform .liste .anstattbox .widget.preis input.preis {margin-top: 1px;}
    #container .bestellungform .formbody .listmonatlich .prozentualrabatt input.preis {float: left;}
    #container .bestellungform .listmonatlich .prozentualrabatt .widget.preis:before {float: initial;}
    #container .bestellungform .kontaktcontainer .inside {width: 100%; padding: 30px 0;}
    #container .bestellungform .anwendercontainer .inside {width: 100%; padding: 30px 0;}
    #container .bestellungform .widget-explanation {text-align: left !important;}
    #container .bestellungform .widget-explanation h3 {text-align: left !important;}*/
    body #container .formbody .radio_container label {width: 100%;}
    #container .formbody .radio_container span.lname {width: calc(100% - 60px); margin-right: 0; text-align: left;}
    #container .formbody .radio_container .checkmark {margin-right: 10px;}
    body #container .formbody .checkbox_container label {padding: 0;}
    #footer .footerbot .inside {background: linear-gradient(90deg, #FAFAFA 0%, #D4D5D5 100%);}
    #footer .footerbot .bot {border-top: 1px solid #fff;}
    #footer .footerbot .bot a {display: block; clear: both; font-size: 1.2rem; line-height: 1.8rem;}
    #footer .footerbot .bot p {display: block; clear: both; font-size: 1.2rem; line-height: 1.8rem;}
    #footer .footerbot .inside {width: calc(100% - 80px); padding: 50px 40px 20px 40px;}
}

@media screen and (max-width: 550px) {
    h1, h2 {font-size: 3.8rem; line-height: 4.2rem;}
    .toplogoarticle .logo {width: 120px;}
    .toplogoarticle .logo img {width: 100%; height: auto;}
    .toplogoarticle .toplinkcart a {font-size: 1.8rem; padding: 2px 10px 2px 40px; background: #333 url(../../files/data/graphics/cart-weiss.svg) center left 10px no-repeat;}
    body.shop .toplogoarticle .toplinkcart a {background: #8563A7 url(../../files/data/graphics/cart-weiss.svg) center left 10px no-repeat;}
    #container .bestellungform .formbody label {width: 100%; text-align: left;}
    #container .bestellungform .formbody input {width: 100%;}
    #container .bestellungform .formbody textarea {width: 100%;}
    #container .bestellungform .formbody select {width: 100%;}
    #container .bestellungform .row {--grid__gutter: 0rem;}
    /*#container .formbody .radio_container {width: 100%;}*/
    #container .formbody .radio_container .optionen {width: 100%;}
    #container .formbody .checkbox_container span.lname {font-size: 1.6rem;}
}

/*************************************************************/
/*   Design:   CERTAS CARE - Website         				 	       */
/*   File:     print.css					                           */
/*-----------------------------------------------------------*/
/*   Autor:   Thomas Dürig, www.nuun.ch 	                   */
/*   Datum:   Juli 2025     		                             */
/*   Site: 	  www.certas.care         		   		             */
/*************************************************************/

@media print {
 
  body {background:none; -webkit-print-color-adjust: exact; font-size: 16px; line-height: 20px;}
  body #main {height:270mm !important; width:90%; padding-left: 5%; padding-right: 5%; margin-left:auto; margin-right:auto;}
  /*#printheader {display: block !important; width: 100%; margin: 0 0 20px 0; padding:0;}
  #printheader img {width: 100%; height: auto;}*/
  #container {padding-top: 0 !important; margin-top: 0 !important;}
  #nuunnav {display: none !important;}
  .nuunnavbutton {display: none !important;}

  body #header {display: none !important;}
  body .custom {display: none !important;}
  body #footer {display: none !important;}
  #container .ce_vimeo {display: none;}
  
  #bestellung.mod_article .inside {width: 100%; padding: 0; max-width: initial;}
  #main:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
  
  .mod_article.shoptitel {display: none !important;}
  .bestellungslider .slick-dots {display: none !important;}
  .bestellungslider .slick-prev {display: none !important;}
  .bestellungslider .slick-next {display: none !important;}
  #container .bestellungform .liste .legende {display: none !important;}
  #container .bestellungform .liste .item .zaehler .minus {display: none !important;}
  #container .bestellungform .liste .item .zaehler .plus {display: none !important;}
  #container .bestellungform .liste .menge .trash {display: none !important;}

  .bestellungslider {width: 100%; height: auto;}
  .bestellungslider .slick-container {padding-top: 0 !important; padding-bottom: 0 !important;}
  .bestellungslider .slick-list {display: block !important; width: 100% !important; height: auto !important; transform: none !important; opacity: 1 !important;}
  .bestellungslider .slick-track {display: block !important; width: 100% !important; height: auto !important; transform: none !important; opacity: 1 !important;}
  .bestellungslider .slick-track .slick-slide {display: none !important;}
  .bestellungslider .slick-track .slick-slide:nth-of-type(5) {display: block !important; width: 100% !important; height: auto !important; float: none; clear: both;}

  body #container .bestellungform .liste > div {padding: 20px 0;}
  body #container .bestellungform .liste .widget-explanation.legendetitel p strong {font-size: 25px; line-height: 25px;}
  body #container .bestellungform .liste .itembild {display: inline-block; width: 15%; margin-right: 2%;}
  body #container .bestellungform .liste .itemtitel {display: inline-block; width: 53%; margin-right: 0; z-index: 2;}
  body #container .bestellungform .liste .itemtitel h4 {width: 80%; font-size: 16px; line-height: 20px; margin: 0; padding: 0;}
  body #container .bestellungform .liste .itemtitel p {width: 100%; font-size: 16px; line-height: 20px;}
  body #container .bestellungform .liste .widget {width: auto; height: auto;}
  body #container .bestellungform .liste .widget.einzelpreis {display: inline-block; width: 50px !important; margin: 0px !important; font-size: 16px; line-height: 20px; text-align: center;}
  body #container .bestellungform .liste input.einzelpreis {font-size: 16px; line-height: 20px; width: 100px !important; height: 23px;}
  body #container .bestellungform .liste .menge {display: inline-block; width: 50px !important; min-height: 2px; margin: 0px !important; vertical-align: top; font-size: 16px; line-height: 20px; text-align: center;}
  body #container .bestellungform .liste .item .zaehler input {font-size: 16px; line-height: 20px; width: 20px !important; height: 23px; float: none; margin: 0;}
  body #container .bestellungform .liste .widget.preis {display: inline-block; width: 50px !important; margin: 0px !important; font-size: 16px; line-height: 20px; text-align: right;}
  body #container .bestellungform .liste input.preis {font-size: 16px; line-height: 20px; width: 100px !important; height: 23px;}

  body #container .bestellungform .listeinmalig {break-after: page;}
  body #container .bestellungform .listeinmalig .einmaligtotal {padding: 20px 0; font-size: 16px; line-height: 20px; margin: 0;}
  body #container .bestellungform .listeinmalig .einmaligtotal .itemtitel {display: inline-block; width: 80%; margin-right: 0; z-index: 2;}
  body #container .bestellungform .listeinmalig .einmaligtotal .widget.preis {display: inline-block; width: 200px; text-align: right; margin: 0; padding: 0;}
  body #container .bestellungform .listeinmalig .einmaligtotal div.preis::before {display: none;}
  body #container .bestellungform .listeinmalig .einmaligtotal .preis input {display: inline-block; float: left; font-size: 16px; line-height: 20px; width: 100px !important; height: 23px; clear: none; vertical-align: top; margin: 0; padding: 0;}
  body #container .bestellungform .listeinmalig .einmaligtotal div.preis:after {width: 100px;}
  body #container .bestellungform .listeinmalig .gutschein {padding: 20px 0; font-size: 16px; line-height: 20px; margin: 0;}
  body #container .bestellungform .listeinmalig .gutschein .itemtitel {display: inline-block; width: 30%; margin-right: 0; z-index: 2;}
  body #container .bestellungform .listeinmalig .gutschein div.code {display: inline-block; width: 50%; margin-right: 0; z-index: 2;}
  body #container .bestellungform .listeinmalig .gutschein div.code input {display: inline-block; font-size: 16px; line-height: 20px; height: 23px; clear: none; vertical-align: top; margin: 0; padding: 0 25px 0 0; border: none; box-shadow: none;}
  body #container .bestellungform .listeinmalig .gutschein div.code input::placeholder {display: none; color: #fff;}
  body #container .bestellungform .listeinmalig .gutschein .widget.preis {display: inline-flex; justify-content: flex-end; float: right; width: 200px; text-align: right; margin: 0; padding: 0;}
  body #container .bestellungform .listeinmalig .gutschein div.preis::before {content: "-"; display: inline; font-size: 16px; line-height: 20px; width: 30px !important; height: 23px; clear: none; vertical-align: top; margin: 0; padding: 0;}
  body #container .bestellungform .listeinmalig .gutschein .preis input {display: inline-block; font-size: 16px; line-height: 20px; width: 100px !important; height: 23px; clear: none; vertical-align: top; margin: 0; padding: 0 25px 0 0;}
  body #container .bestellungform .listeinmalig .einmaligtotalrabatt {padding: 20px 0; font-size: 16px; line-height: 20px; margin: 0;}
  body #container .bestellungform .listeinmalig .einmaligtotalrabatt .itemtitel {display: inline-block; width: 80%; margin-right: 0; z-index: 2;}
  body #container .bestellungform .listeinmalig .einmaligtotalrabatt .widget.preis {display: inline-block; width: 200px; text-align: right; margin: 0; padding: 0;}
  body #container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis::before {display: none;}
  body #container .bestellungform .listeinmalig .einmaligtotalrabatt .preis input {display: inline-block; float: left; font-size: 16px; line-height: 20px; width: 100px !important; height: 23px; clear: none; vertical-align: top; margin: 0; padding: 0;}
  body #container .bestellungform .listeinmalig .einmaligtotalrabatt div.preis:after {width: 100px;}

  body #container .bestellungform .listmonatlich {break-after: page;}
  body #container .bestellungform .listmonatlich .monatlichtotal {padding: 20px 0; font-size: 16px; line-height: 20px; margin: 0;}
  body #container .bestellungform .listmonatlich .monatlichtotal .itemtitel {display: inline-block; width: 80%; margin-right: 0; z-index: 2;}
  body #container .bestellungform .listmonatlich .monatlichtotal .widget.preis {display: inline-block; width: 200px; text-align: right; margin: 0; padding: 0;}
  body #container .bestellungform .listmonatlich .monatlichtotal div.preis::before {display: none;}
  body #container .bestellungform .listmonatlich .monatlichtotal .preis input {display: inline-block; float: left; font-size: 16px; line-height: 20px; width: 100px !important; height: 23px; clear: none; vertical-align: top; margin: 0; padding: 0;}
  body #container .bestellungform .listmonatlich .monatlichtotal div.preis:after {width: 100px;}
  

  iframe {display: none !important;}
  embed {display: none !important;}
 
  h1 {font-size: 50px !important; line-height: 55px !important;}
  h2 {font-size: 34px !important; line-height: 39px !important;}
  h3 {font-size: 24px !important; line-height: 29px !important;}
  p  {font-size: 12px !important; line-height: 15px !important;}
  li  {font-size: 12px !important; line-height: 15px !important;}
}
