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

.nuunnavbutton-open {display: inline-block; width: 70px; height: 70px; cursor: pointer; position: fixed; z-index: 1000; right: 5%; z-index: 2500; top: 50px; background:url(../../files/data/graphics/navbutton-open.svg) center no-repeat; cursor: pointer; opacity: 1; transition: opacity 0.3s ease, transform 0.3s ease;}
.nuunnavbutton-close {display: inline-block; width: 70px; height: 70px; cursor: pointer; position: fixed; right: 5%; z-index: 2500; top: 50px; background:url(../../files/data/graphics/navbutton-close.svg) center no-repeat; cursor: pointer; transition:transform 0.3s ease;}
.nuunnavbutton-open.crossed {opacity: 0;}
.nuunnavbutton-open:hover {transform: scale(1.05);}
.nuunnavbutton-close:hover {transform: scale(1.05);}
/*.nuunnavbutton .navline {height: 3px; width: 100%; margin-bottom: 9px; border-radius: 0; background: #54706a; opacity: 1; transition: transform 0.3s ease, opacity 0.3s ease;}
body.inspektionen .nuunnavbutton .navline {background:#fff;}
.nuunnavbutton .navline:last-of-type {margin-bottom: 0;}

.nuunnavbutton.crossed .navline.top {transform: rotate(-45deg) translateY(9px) translateX(-9px);}
.nuunnavbutton.crossed .navline.mid {opacity: 0;}
.nuunnavbutton.crossed .navline.bot {transform: rotate(-135deg) translateY(8px) translateX(8px);}*/

#nuunnav {display: none; padding-top: 0px; font-family: 'effra-cc'; font-weight: 900; font-size: 3vh; line-height: 4vh; padding-left: 0px; padding-right: 0px; position: fixed; overflow-y: auto; top: 0; left: 0; width: 100%; background-color: #E30613; /*border:10px solid #fff;*/ height: 100vh; z-index: 2500; box-sizing: border-box;}
#nuunnav > .inside {width: 90%; padding: 0 5%; margin: 0 auto;}

/*#nuunnav .navigation {padding-bottom: 100px;}
#nuunnav li a {color: #677A7B; text-decoration: none; transition:color 0.3s ease;}
#nuunnav li a.active {font-family: 'montserratregular';}
#nuunnav li a:hover {color: #FF8035;}
#nuunnav ul {list-style: none; padding-left: 0; display: block; width: 100%;}
#nuunnav ul.level_1 {margin: 0;}
#nuunnav ul.level_1 > li {}
#nuunnav ul.level_1 > li > a {display: inline-block; text-transform: uppercase; font-size: 2.8rem; float: left; clear: left; padding: 23px 0 23px 0;}
#nuunnav ul.level_1 > li.submenu > a {margin-right: 0px; float: left; clear: left;}
#nuunnav ul li.submenu .subtoggler {width: 50px; height: 78px; position: relative; display: flex; align-items: center; justify-content: center; float: left; cursor: pointer;}
#nuunnav ul.level_2 li.submenu .subtoggler {height: 25px;}
#nuunnav ul li.submenu .subtoggler .subtoggline1 {width: 15px; height: 2px; background: #FF8035;}
#nuunnav ul li.submenu .subtoggler .subtoggline2 {width: 15px; height: 2px; background: #FF8035; position: absolute; transform: rotate(90deg); transition: transform 0.3s ease;}
#nuunnav ul li.submenu .subtoggler.down .subtoggline2 {transform: rotate(0deg);}

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

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

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

/*@media screen and (max-width: 650px) {
	.nuunnavbutton {width: 45px; top: 36px;} 
    .nuunnavbutton .navline {margin-bottom: 8px;}
    .nuunnavbutton.crossed .navline.top {transform: rotate(-45deg) translateY(5px) translateX(-7px);}
    .nuunnavbutton.crossed .navline.bot {transform: rotate(-135deg) translateY(10px) translateX(12px);}
}*/
/*************************************************************/
/*   Design:  mein heizöl					     	 	 	 */
/*   File:    screen.css					                 */
/*-----------------------------------------------------------*/
/*   Autor:   Thomas Dürig, www.nuun.ch 	                 */
/*   Datum:   April 2026	       			                 */
/*   Site: 	  www.mein-heizoel.ch          					 */
/*************************************************************/
/*  LAYOUT							   						 */
/*************************************************************/

/*Typekit*/

/*
font-family: "effra-cc"; font-weight: 400;
font-style: normal;
 
font-family: "effra-cc"; font-weight: 700;
font-style: normal;
 
font-family: "effra-cc"; font-weight: 900;
font-style: normal;

font-family: "rollerscript-smooth"; font-weight: 400;
font-style: normal;
*/

/*  GLOBAL													 */
/*************************************************************/
html {--grid__gutter: 2.8rem;}
html, body {position: relative; height: 100%; width:100%; font: 62.5% "effra-cc", Arial, Verdana, Helvetica, sans-serif; font-weight: 400; letter-spacing:0em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: antialiased; font-smoothing: antialiased;}
body {font-size:20px; font-size:2rem; line-height: 2.6rem; color: #000000; 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;}

.row {grid-gap: 0 var(--grid__gutter);}

strong {font-weight: 700;}

/*Cookiebar*/
.contao-cookiebar .cc-inner {max-width: 500px; font-size: 1.5rem; line-height: 1.8rem; background: #fff;}
.contao-cookiebar .cc-inner h3 {font-size: 2.4rem; line-height: 3rem; color: #E30613; transform: none;}
.contao-cookiebar .cc-inner label {line-height: 1.9rem;}
.contao-cookiebar .cc-cookies .cc-cookie p {font-size: 1.5rem; line-height: 1.8rem;}
.contao-cookiebar .cc-info > p {font-size: 1.2rem; line-height: 1.6rem;}
.contao-cookiebar p a {color:#E30613; text-decoration: underline;}
/*.contao-cookiebar .highlight .cc-btn.success {background: #E30613; border-color: #E30613;}
.contao-cookiebar .highlight .cc-btn.success:hover {background: #E30613; border-color: #E30613;}
.contao-cookiebar input:checked + label:before {background: #ffdbdd; border-color: #E30613;}
.contao-cookiebar input:checked + label:after {background: #E30613;}*/

.content-hyperlink.content-cookiebar-opener a {background: #000; padding: 12px 15px 10px 15px;}
.content-hyperlink.content-cookiebar-opener a:hover {background: #000; padding: 12px 15px 10px 15px;}

.cc-module {text-align: center; margin-top: 80px;}
.cc-module button {border: none; cursor: pointer; display: inline-block; font-size: 1.4rem; line-height: 1.8rem; color: #fff; text-decoration: none; padding: 15px 40px 12px 40px; background: #E30613; border-radius: 25px; text-transform: uppercase; transition: transform 0.3s ease;}
.cc-module button:hover {transform: scale(1.05);}


/*  HEADER / NAVIGATION									     */
/*************************************************************/
#header {position: absolute; top: 0; left: 0; width: 100%; height: auto; z-index: 100;}
#header .inside {position: relative; width: 90%; padding: 0px 5%; margin: 0 auto;}
#header .logo {display: inline-block; margin-top: 50px;}
#header .headertel {display: none;}
body.home #header .headertel {display: block; position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: 930px; height: 70px; box-sizing: border-box; background: #000; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px;}
#header .headertel .content-text {display: inline-block; margin-bottom: 0;}
#header .headertel .content-text p {margin-bottom: 0; font-size: 2.6rem; line-height: 4rem; color: #fff; text-decoration: none; font-family: "effra-cc"; font-weight: 900;}
#header .headertel a {text-decoration: none; display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%; padding: 0px 40px; box-sizing: border-box;}
#header .headertel .content-text.text1 {padding-left: 30px; background: url(../../files/data/graphics/icon-phone-header.svg) center left no-repeat;}
#header .headertel .content-text.text2 {margin-right: 60px;}
#header .headertel .content-text.text2 p {font-size: 2rem; font-family: "Caveat-Regular"; font-weight: 400;}
#header .content-hyperlink.heizoelhyper {position: absolute; top: 42px; right: calc(5% + 110px);}
body.home #header .content-hyperlink.heizoelhyper {display: none;}

#nuunnav .logo {display: inline-block; margin-top: 50px;}
#nuunnav .navtel {margin-top: 50px;}
#nuunnav .navtel p {margin-bottom: 0;}
#nuunnav .navtel a {color: #fff; font-size: 2.6rem; line-height: 3rem; padding-left: 30px; text-decoration: none; background: url(../../files/data/graphics/icon-phone-header.svg) center left no-repeat;}
#nuunnav .navmail a {color: #fff; font-size: 2.6rem; line-height: 3rem; padding-left: 30px; text-decoration: none; background: url(../../files/data/graphics/icon-mail-at-weiss.svg) center left no-repeat;}
#nuunnav .content-hyperlink {position: absolute; top: 35px; right: calc(5% + 110px);}
#nuunnav .navigation {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); box-sizing: border-box; width: 980px;}
#nuunnav .navigation a {font-size: 6rem; line-height: 5.3rem; color: #fff; text-decoration: none; padding: 20px 0; display: inline-block; box-sizing: border-box; clear: both; transition: padding-left 0.3s ease;}
#nuunnav .navigation a.active, #nuunnav .navigation a.trail, #nuunnav .navigation a:hover {padding-left: 30px;}

.flyingfooter {position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #fff; box-shadow: 0 0 95px rgba(201,203,204,0.3);}
.flyingfooter .inside {position: relative; width: 90%; height: 65px; display: flex; align-items: center; justify-content: space-between; padding: 0px 5%; max-width: 1410px; margin: 0 auto;}
.flyingfooter .inside .content-text {margin-bottom: 0;}
.flyingfooter .inside .content-text p {margin-bottom: 0; color: #AFA9A5; font-size:1.4rem; line-height: 1.4rem; font-weight: 400;}
.flyingfooter .inside .content-text p a {color: #AFA9A5; text-decoration: none;}
.flyingfooter .inside .ffmid div {display: inline-block; margin: 0 15px; float: left;}
.flyingfooter .inside .ffmid .content-text {position: relative; top: 18px;}
.flyingfooter .inside .ffmid .content-image {margin-top: 9px; height: 40px;}
.flyingfooter .inside .ffmid .content-image figure {height: 40px; vertical-align: top;}
#nuunnav .flyingfooter .inside .ffmid a, #header .flyingfooter .inside .ffmid a {font-size: initial; line-height: initial; font-weight: initial; vertical-align: top; display: inline-block;}

/*  INHALTSELEMENTE                                          */
/*************************************************************/
.mod_article .inside {position: relative; width: 90%; padding: 60px 5%; max-width: 1410px; margin: 0 auto;}
.mod_article.grau {background: #EBEAE8;}
.mod_article.braun {background: #36291E;}
.mod_article.braun h1, .mod_article.braun h2, .mod_article.braun h3, .mod_article.braun h4, .mod_article.braun h5, .mod_article.braun p, .mod_article.braun p a {color: #fff;}
.mod_article.braun .content-hyperlink a {color: #E30613; background: #fff url(../../files/data/graphics/arrow-news.svg) center left 20px no-repeat;}
.mod_article.braun .content-hyperlink a:hover {background: #fff url(../../files/data/graphics/arrow-news.svg) center left 30px no-repeat;}
.mod_article.rot {background: #E30613;}
.mod_article.rot h1, .mod_article.rot h2, .mod_article.rot h3, .mod_article.rot h4, .mod_article.rot h5, .mod_article.rot p, .mod_article.rot p a {color: #fff;}


/*Artikel vollbild*/
.mod_article.vollbild {max-width: initial; background: #000;}
.mod_article.vollbild .inside {width: 100%; height: auto; padding: 0; max-width: initial; position: relative;}
.mod_article.vollbild .inside .content-image, .mod_article.vollbild .inside .content-player {width: 100%; height: auto; position: relative; overflow: hidden;}
.mod_article.vollbild .inside .content-image figure {line-height: 0;}
.mod_article.vollbild .inside .content-image img {opacity: 0.85;}
.mod_article.vollbild .inside .content-image img, .mod_article.vollbild .inside .content-player video {width: 100%; height: 100%; object-fit: cover;}
.mod_article.vollbild .content-text {position: absolute; bottom: 20%; left: 0; right: 0; width: 1080px; max-width: 90%; margin: 0 auto}
.mod_article.vollbild h1, .mod_article.vollbild h2, .mod_article.vollbild h3, .mod_article.vollbild h4, .mod_article.vollbild h5, .mod_article.vollbild p, .mod_article.vollbild p a {color: #fff;}

body .mod_article.topbild {max-width: initial; width: 100%; height: 270px;}
body .mod_article.topbild > .inside {width: 100%; height: 270px; padding: 0; max-width: initial; position: relative;}
body .mod_article.topbild .content-image img {width: 100%; height: 270px; object-fit: cover; object-position: center top;}

body.home .mod_article.topbild {max-width: initial; width: 100%; height: calc(100vh - 65px); transition: height 0.3s ease;}
body.home .mod_article.topbild > .inside {width: 100%; height: 100%; padding: 0; max-width: initial; position: relative;}
body.home .mod_article.topbild .content-image, body.home .mod_article.topbild .content-image figure {width: 100%; height: 100%;}
body.home .mod_article.topbild .content-image img {width: 100%; height: 100%; object-fit: cover;}
body.home .mod_article.topbild .content-image.mobile {display: none;}

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

.content-image figcaption, .content-text figcaption {font-size: 1.6rem; line-height: 2rem;}

.content-text a {color: #000;}

h1, h2 {font-family: 'effra-cc'; font-weight: 900; font-size: 6rem; line-height: 6rem; color: #E30613; margin: 10px 0 20px 0;}
h3 {font-family: 'effra-cc'; font-weight: 900; font-size: 4rem; line-height: 4.4rem; color: #E30613;}
h4 {font-family: 'effra-cc'; font-weight: 700; font-size: 2rem; line-height: 2.6rem; color: #000;}
h5 {font-family: 'effra-cc'; font-weight: 400; font-size: 2rem; line-height: 2.6rem; color: #AFA9A5;}

#container .content-text {margin-bottom: 30px;}
#container .content-text.media--left figure {display: inline-block; width: 42%; margin-right: 3%; vertical-align: top;}
#container .content-text.media--left .rte {display: inline-block; width: 54%; vertical-align: top;}
#container .content-text.media--right:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
#container .content-text.media--right figure {display: inline-block; float: right; width: 42%; margin-left: 3%; vertical-align: top;}
#container .content-text.media--right .rte {display: inline-block; width: 54%; vertical-align: top;}

#container .content-text.grau {background: #EBEAE8; padding: 20px 40px;}

/*Gallery*/
.content-gallery.content-gallery--cols-2 ul li {width: 48.5%; margin-right: 3%; margin-bottom: 20px; display: inline-block; float: left; line-height: 1;}
.content-gallery.content-gallery--cols-3 ul li {width: 31.3%; margin-right: 3%; margin-bottom: 20px; display: inline-block; float: left; line-height: 1;}
.content-gallery.content-gallery--cols-4 ul li {width: 22.75%; margin-right: 3%; margin-bottom: 20px; display: inline-block; float: left; line-height: 1;}
.content-gallery.content-gallery--cols-2 ul li:nth-of-type(2n) {margin-right: 0;}
.content-gallery.content-gallery--cols-3 ul li:nth-of-type(3n) {margin-right: 0;}
.content-gallery.content-gallery--cols-4 ul li:nth-of-type(4n) {margin-right: 0;}
body .content-gallery.masonry ul li {width: calc(25% - 15px); margin-right: 0;}
.content-gallery ul li figure {width: 100%; overflow: hidden; line-height: 0;}
.content-gallery ul li figure img {width: 100%; height: auto; border-radius: 4px; -webkit-transition: all .5s ease; transition: all .5s ease;}
.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-size: 2.4rem; line-height: 2.4rem; color: #fff; font-family: 'effra-cc'; font-weight: 900; text-decoration: none; padding: 12px 28px 10px 70px; background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left 20px no-repeat; border-radius: 2px; transition: background 0.3s ease;}
.content-hyperlink a:hover {background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left 30px no-repeat;}

.content-hyperlink.back a {background: #000 url(../../files/data/graphics/arrow-hyperlink-back.svg) center left 20px no-repeat;}
.content-hyperlink.back a:hover {background: #000 url(../../files/data/graphics/arrow-hyperlink-back.svg) center left 10px no-repeat;}

.content-hyperlink.weiss a {color: #E30613; background: #fff url(../../files/data/graphics/arrow-news.svg) center left 20px no-repeat;}
.content-hyperlink.weiss a:hover {background: #fff url(../../files/data/graphics/arrow-news.svg) center left 30px no-repeat;}
 
/*List*/
#main .content-text ul {display: table; margin-bottom: 25px;}

#main .content-text ul li {vertical-align: middle; list-style: none; padding-left: 25px; background: url(../../files/data/graphics/icon-listbullet.svg) no-repeat top 8px left; background-size: 7px;}
#main .content-text ul li::marker {color: #E30613;}

#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;
}

/*Table*/
#main .content-text table, #main .content-table table {hyphens: auto; width: 100%; border-spacing: 0; margin-bottom: 30px; border:none; overflow: hidden;}
#main .content-text table td, #main .content-text table th, #main .content-table table td, #main .content-table table th {padding: 25px; border:none;}
#main .content-text table thead, #main .content-table table thead {background: #EBEAE8; font-family: 'Caveat-Bold';}
#main .content-text table tbody tr:nth-of-type(odd), #main .content-table table tbody tr:nth-of-type(odd) {background: #EBEAE8;}

/*Downloads*/
.content-download.sc.last, .content-downloads.sc.last {padding-right: 0;}
.content-download, .content-downloads {position:relative; width:100%; margin:0 0 30px 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:2.6rem; padding:0 0 0 0; margin:0 0 30px 0; /*background:#fff;*/ font-size: 2rem;}
.mod_article.dunkel .content-download ul li, .mod_article.dunkel .content-downloads ul li {background: #273540;}

body #container .content-downloads a, body #container .content-download a, body #container .enclosure a {position:relative;text-decoration: none;color: #4A5054;display:block;margin:0 0 0 0;transition: color 0.5s ease, text-decoration-color 0.3s ease;}   

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 {color: #E30613;}
body #container .mod_article.dunkel .content-downloads a, body #container .mod_article.dunkel .content-download a, body #container .mod_article.dunkel .enclosure a {color: #fff;}

.content-download .mitbild figure, .content-downloads .mitbild figure {display: inline-block; width: 85px; height: 100px; margin-right: 10px; border: 1px solid #F2F5F7; box-sizing: border-box; padding: 10px; background: #fff; border-radius: 2px;}
.content-download .mitbild figure a, .content-downloads .mitbild figure a {width: 100%; height: 100%; box-sizing: border-box; padding: 5px; border-radius: 2px;}
.content-download .mitbild figure img, .content-downloads .mitbild figure img {width: 100%; height: 100%; object-fit: scale-down;}

.content-download .mitbild .dlinhalt, .content-downloads .mitbild .dlinhalt {display: inline-block; width: calc(100% - 105px); vertical-align: top;}
.content-download .dlinhalt .titel {margin-top: 0;}
.content-download .dlinhalt .titel span {font-size: 1.4rem; line-height: 2rem; letter-spacing: 1px; margin: 0; display: inline-block; padding: 5px 10px; background: #F6F6F6; text-transform: uppercase; border-radius: 2px;}
.grau .content-download .dlinhalt .titel span {background: #dadada;}
.dunkel .content-download .dlinhalt .titel span {color: #273540;}
.content-download .dlinhalt h5 {color: #AFA9A5; margin-top: 5px; margin-bottom: 0; font-size: 1.6rem;}
.content-download .dlinhalt a {clear: both; font-size: 2rem; line-height: 3.5rem; margin-top: 5px; padding-bottom: 25px; background: url(../../files/data/graphics/download-arrow.svg) bottom left no-repeat;}


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

.ce_form {font-weight: 900; margin-right: auto; margin-left: auto; box-sizing: border-box;}
#container .ce_form {padding:50px 80px 80px 80px; background: #E30613; margin-top: 40px;}
.formbody label {width: 100%; padding-top: 10px; margin-bottom: 5px; display: inline-block; float: left;}
.formbody input {height: 52px; box-sizing: border-box; width: 100%; padding:10px 15px 10px 50px; margin-bottom: 15px; border:none; border-radius: 2px; background-color: #fff;}
.formbody input::placeholder {color: #AFA9A5;}
.formbody textarea {height: 119px; box-sizing: border-box; width: 100%; padding:10px 15px 10px 50px; border: none; border-radius: 2px; margin-bottom: 15px; background-color: #fff; line-height: 120%}
.formbody textarea::placeholder {color: #AFA9A5;}
/*.formbody .submit {background-color: #005fab; margin-top: 7px; padding: 5px 0; color: #fff; margin-left: 0; width: 200px;}*/
.formbody .submit {float: right; cursor: pointer; border: none; display: inline-block; font-size: 2.4rem; line-height: 2.4rem; color: #fff; font-family: 'effra-cc'; font-weight: 900; text-decoration: none; padding: 12px 28px 10px 70px; background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left 20px no-repeat; border-radius: 2px; transition: background 0.3s ease;}
.formbody .submit:hover {background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left 30px no-repeat;}
.formbody .submit.disabled {opacity: 1; background: #E0E0E6 url(../../files/data/graphics/arrow-hyperlink-grau.svg) center left 20px no-repeat; color: #aeaeae;}
.formbody select {color: #AFA9A5; appearance:none; height: 52px; box-sizing: border-box; width: 100%; padding:10px 15px 10px 50px; margin-bottom: 15px; border:none; border-radius: 2px; background-color: #fff;}
.formbody .focused select {color: #000;}
.formbody fieldset {margin-bottom: 10px;}
.formbody fieldset span {width:100%; float: left;}
.formbody fieldset span input {float: left; width: 5%; height: 26px;}
.formbody fieldset span label {padding-top: 0; width: 95%;}
.formbody .widget-captcha {margin-bottom: 40px;}
.formbody .widget-captcha input {margin-bottom: 5px;}
.formbody .widget-captcha span {width: 100%; float: left;}
.formbody .widget-captcha label span.mandatory {width: auto; float: none;}
.formbody .widget-checkbox input {-webkit-appearance:checkbox;}
.formbody .widget-checkbox legend span {width: auto; float: none;}
.formbody .widget-radio input {-webkit-appearance:radio;}
.formbody input:focus, .formbody textarea:focus, .formbody select:focus {outline: none;}

.formbody .widget-explanation h3 {margin-top: 0; margin-bottom: 30px; color: #fff;}

.formbody .widget {position: relative;}
.formbody .widget.person:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-person.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.brief:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-brief.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.pin:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-pin.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.strasse:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-strasse.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.nummer:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-nummer.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.email:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-email.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.phone:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-phone.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.bemerkung:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-bemerkung.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.liter:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-liter.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.kalender:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-kalender.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.uhr:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-uhr.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}
.formbody .widget.gutschein:before {content: ""; width: 50px; height: 52px; background: url(../../files/data/graphics/form-gutschein.svg) center no-repeat; display: block; position: absolute; top: 0; left: 0;}

.formbody .widget:before {transition: filter 0.3s ease;}
.formbody .widget.focused:before {filter: brightness(0);}

/*radio und checkbox templates von scayla*/
.formbody .checkbox_container {margin: 5px 0 10px 0;}
.formbody .checkbox_container a {color: #000; text-decoration: underline;}
/*.formbody .checkbox_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}*/
.formbody .checkbox_container input {display: inline-block; float: right; margin-top: 4px; margin-left: 10px; accent-color: #000;}
.formbody .checkbox_container label {top: initial; left: initial;color: #fff; font-size: 1.4rem; line-height: 1.7rem; font-weight: 400; text-align: right; cursor: pointer; width: calc(100% - 60px); position: relative; margin-bottom: 10px; margin-top: 10px; display: inline-block;}
.mod_article.dunkel .formbody .checkbox_container label {color: #fff;}
/*.formbody .checkbox_container span {width: 90px; margin-right: 15px;}*/
.formbody .checkbox_container span.lname {width: auto; padding-top: 5px;}
.formbody .checkbox_container .checkmark {cursor: pointer; position: relative; height: 38px; width: 38px; background-color: #fff; border:1px solid #E9EBF0;}
.formbody .checkbox_container:hover input ~ .checkmark {background-color: #fff;}
.formbody .checkbox_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.formbody .checkbox_container .checkmark:after {content: ""; position: absolute; display: none;}
.formbody .checkbox_container input:checked ~ .checkmark:after {display: block;}
.formbody .checkbox_container .checkmark:after {top: 0px; left: 0px; width: 38px; height: 38px; background: url(../../files/files/files/files/files/web/data/graphics/checkmark.svg) center no-repeat; background-size: 23px;}

.formbody .radio_container {margin: 5px 0 10px 0;}
.formbody .radio_container a {color: #000; text-decoration: underline;}
/*.formbody .radio_container input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0; background: #dedede;}*/
.formbody .radio_container input {display: inline-block; float:left; margin-top: 4px; margin-right: 10px; accent-color: #000;}
.formbody .radio_container label {top: initial; left: initial;color: #fff; font-size: 2rem; line-height: 2.6rem; font-weight: 900; text-align: left; cursor: pointer; width: calc(100% - 60px); position: relative; margin-bottom: 7px; margin-top: 4px; display: inline-block;}
.mod_article.dunkel .formbody .radio_container label {color: #fff;}
/*.formbody .radio_container span {width: 90px; margin-right: 15px;}*/
.formbody .radio_container span.lname {width: auto; padding-top: 5px;}
.formbody .radio_container .checkmark {cursor: pointer; position: relative; height: 38px; width: 38px; background-color: #fff; border:1px solid #E9EBF0;}
.formbody .radio_container:hover input ~ .checkmark {background-color: #fff;}
.formbody .radio_container input:checked ~ .checkmark {/*background-color: #EE6930;*/}
.formbody .radio_container .checkmark:after {content: ""; position: absolute; display: none;}
.formbody .radio_container input:checked ~ .checkmark:after {display: block;}
.formbody .radio_container .checkmark:after {top: 0px; left: 0px; width: 38px; height: 38px; background: url(../../files/files/files/files/files/web/data/graphics/checkmark.svg) center no-repeat; background-size: 23px;}

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

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

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

/*Accordion*/
.content-accordion {margin-bottom: 20px; border-bottom: none;}
.handorgel__header {border-bottom: 2px solid #fff; margin-top: 25px; position: relative; z-index: 2;}
.handorgel__header--open {border-bottom: none;}
.handorgel__header__button {font-family: 'effra-cc'; font-weight: 700; border-radius: 2px; color:#000; font-size: 2rem; line-height: 2.6rem; border: none; box-sizing: border-box; padding: 30px 30px 30px 100px; background: #D7D4D2 url(../../files/data/graphics/accordion-plus.svg) center left 50px no-repeat; transition: background 0.3s ease;}
.handorgel__header--open .handorgel__header__button {border-bottom: none; background: #fff url(../../files/data/graphics/accordion-minus.svg) center left 50px no-repeat;}
.handorgel__content {background: #D7D4D2; border-bottom: none; border-top: none; transition: all 0.3s ease;}
.handorgel__content.handorgel__content--open {background: #fff; box-shadow: 0 -35px 95px 5px rgba(201,203,204,0.5);}
.handorgel__content__inner {padding: 0 30px 10px 100px;}


/*Scrollboxen*/
.scrollboxen .box {}
.scrollboxen .box .boxinner {width: 100%; /*min-height: 380px;*/ background: #EBEAE8; border-radius: 2px; position: relative; margin-bottom: 40px;}
.scrollboxen .box .boxlinks {display: block; position: absolute; left: 0; bottom: 0; width: 32%; height: 100%; max-height: 380px;}
.scrollboxen .box .boxlinks .image-container {line-height: 0; width: 100%; height: 100%; max-height: 380px;}
.scrollboxen .box .boxlinks .image-container img {width: 100%; height: 100%; object-fit: contain; object-position: bottom left; max-height: 380px;}
.scrollboxen .box .boxrechts {display: block; width: 100%; height: 100%; box-sizing: border-box; padding: 40px 40px 40px 35%;}
.scrollboxen .box .boxrechts h3.miticon {padding-left: 70px; margin-left: -70px; position: relative;}
.scrollboxen .box .boxrechts h3.miticon .image-container {position: absolute; top: 0; left: 0; width: 60px; height: 55px;}
.scrollboxen .box .boxrechts h3.miticon .image-container img {width: 60px; height: 40px; object-fit: scale-down;}

:root {--card-height: min(40svmax, auto); --card-margin: 0vw; --card-top-offset: 0rem; --outline-width: 0px;}

.scrollboxen {
  /* Make place at bottom, as items will slide to that position*/
  padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  /* Don't include the --card-margin in padding, as that will affect the scroll-timeline*/
  margin-bottom: var(--card-margin);
}

.scrollboxen .card1 {--index: 1;}
.scrollboxen .card2 {--index: 2;}
.scrollboxen .card3 {--index: 3;}
.scrollboxen .card4 {--index: 4;}
.scrollboxen .card5 {--index: 5;}
.scrollboxen .card6 {--index: 6;}
.scrollboxen .card7 {--index: 7;}
.scrollboxen .card8 {--index: 8;}
.scrollboxen .box {position: sticky; top: 150px; padding-top: calc(var(--index) * var(--card-top-offset));}
.scrollboxen .boxinner {min-height: auto; transform-origin: 50% 0%; will-change: transform;}
.scrollboxen {list-style: none; outline: calc(var(--outline-width) * 10) solid hotpink; display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(var(--numcards), var(--card-height)); gap: calc(var(--card-margin) + calc(var(--card-height) / 8));}
.scrollboxen .box {outline: var(--outline-width) solid lime;}
/*.scrollboxen .boxinner {background: #F5F5F5; overflow: hidden; display: grid; grid-template-areas: "text img"; grid-template-columns: 1fr 1fr; grid-template-rows: auto; align-items: stretch; outline: var(--outline-width) solid blue;}*/

/*Linkboxen*/
.linkboxen.bgweiss .box {background: #fff;}
.linkboxen .box {position: relative; padding: 30px 40px; background: #EBEAE8; border-radius: 2px; margin-bottom: 30px;}
.linkboxen .box .boxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;}
.linkboxen .box .image-container {text-align: center;}
.linkboxen .box .image-container img {height: 55px; width: auto;}
.linkboxen .box h3.titel {text-align: center; margin: 20px 0;}
.linkboxen .box .content-hyperlink {text-align: center;}

.linkboxen.linkboxenklein .box {position: relative; padding: 40px 40px 30px 40px;}
.linkboxen.linkboxenklein .linkboxtext {text-align: center;}

/*Vereinslider*/
.vereinslider .swiper-button-next {display: none;}
.vereinslider .swiper-button-prev {display: none;}
.vereinslider .swiper-pagination {display: none;}

/*Team*/
#main .team.zentriert .autogrid_row {justify-content: center;}
#main .team .box {padding-bottom: 0px; margin-bottom: 40px;}
#main .team .image-container {line-height: 0;}
#main .team .image-container img {border-radius: 200px; width: 220px;}
#main .team .content-text {height: 100%; margin-bottom: 10px; padding-bottom: 10px; position: relative; overflow: hidden;}
#main .team .content-text .rte {min-height: 102px; padding-top: 120px; padding-bottom: 20px; margin-top: -110px; background: #EBEAE8;}
#main .team .content-text h5 {color: #4A5054;}
#main .team .content-text .rte .funktion {min-height: 55px;}
#main .team .teamkontakt {text-align: center;}
#main .team .teamkontakt p {display: block; margin: 5px 0px;}
#main .team .teamkontakt img {transition: transform 0.3s ease;}
#main .team .teamkontakt img:hover {transform: scale(1.1);}
#main .team .teamkontakt .telefon {margin-bottom: 15px;}
#main .team .teamkontakt .telefon a {color: #000; text-decoration: none; padding-left: 30px; background: url(../../files/data/graphics/icon-phone-team.svg) center left no-repeat;}

/*Textschwarz*/
.boxschwarz .box {box-sizing: border-box; padding: 20px 10px; margin-bottom: 30px; box-sizing: border-box; background: #000; border-radius: 2px;}
.boxschwarz .box .image-container {display: inline-block; width: 40px; text-align: center; vertical-align: top;}
.boxschwarz .box .image-container img {max-width: 100%; height: auto;}
.boxschwarz .box .linkboxtext {display: inline-block; width: calc(100% - 45px);}
.boxschwarz .box .titel {font-size: 2.6rem; line-height: 3.6rem; color: #fff; font-weight: 900; margin-top: 0; margin-bottom: 4px;}
.boxschwarz .box .untertitel {font-size: 2rem; line-height: 2rem; color: #fff; font-family: 'Caveat-Regular'; font-weight: 400; margin-top: 8px;} 
.boxschwarz .box h1, .boxschwarz .box h2, .boxschwarz .box h3, .boxschwarz .box h4, .boxschwarz .box h5, .boxschwarz .box p, .boxschwarz .box p a {color: #fff;}

/*  BESTELLPROZESS                                           */
/*************************************************************/
.bestellbox {display: none;}

body.home .bestellbox {display: block; position: absolute; box-sizing: border-box; top: 30vh; left: calc(50% - 465px); width: 90%; max-width: 930px;}
#container .bestellbox .ce_form {padding: 0; margin: 0; background: initial;}
body .ui-menu .ui-menu-item-wrapper {font-family: 'effra-cc'; font-weight: 900;}
.bestellbox .formbody .submit {font-size: 2rem; line-height: initial;}

.bestellbox .slidetop h3 {color: #fff; margin: 0 0 20px 0; padding-top: 20px;}
.bestellbox .slidetop h3 .blatt {position: relative;}
.bestellbox .slidetop h3 .blatt:after {content: ""; width: 17px; height: 17px; background: url(../../files/data/graphics/home-box-blatt.svg) center no-repeat; position: absolute; top: 2px; right: -10px;}
.bestellbox .slidetop h4 {color: #fff; font-weight: 900;}
.bestellbox .slidetop p {color: #fff; font-weight: 400;}
.bestellbox .slidetop .widget {margin-bottom: 10px;}

.bestellbox .slidebot p {color: #000; font-weight: 400; margin-bottom: 0; font-size: 2rem; line-height: 2.4rem;}
.bestellbox .slidebot strong {font-weight: 900; font-size: 2.6rem; line-height: 3rem;}
.bestellbox .slidebot .inkl p {font-size: 1.4rem; line-height: 1.8rem; position: relative; top: -6px;}
.bestellbox .slidebot {display: inline-block; width: 100%; box-sizing: border-box;}
.bestellbox .slidebot div {display: inline-block; width: 100%; box-sizing: border-box;}
.bestellbox .slidebot .links {display: inline-block; width: 65%; float: left;}
.bestellbox .slidebot .rechts {display: inline-block; width: 35%; float: left; text-align: right;}
.bestellbox .slidebot .info {margin-bottom: 10px;}
.bestellbox .slidebot .rabatte {margin-bottom: 10px;}

/*.bestellbox .slidebot .zusammenfassunglinks {display: inline-block; width: 65%; float: left;}
.bestellbox .slidebot .zusammenfassungrechts {display: inline-block; width: 35%; float: left; box-sizing: border-box; padding: 3px 0px 0 50px;}
.bestellbox .slidebot .zusammenfassunglinks .links {display: inline-block; width: 50%; float: left;}
.bestellbox .slidebot .zusammenfassunglinks .rechts {display: inline-block; width: 50%; float: left; text-align: right;}
.bestellbox .slidebot .drittel {display: inline-block; width: 33%; padding-right: 0.331%; float: left;}*/

/*.bestellbox .slide3 .slidetop .checkbox_container input {float: left; margin: 4px 10px 0 0;}
.bestellbox .slide3 .slidetop .checkbox_container label {text-align: left;}*/
.bestellbox .slide3 .slidetop .widget-submit {text-align: right;}
.bestellbox .slide3 .slidetop .checkbox_container label {font-size: 1.9rem;}
.bestellbox .slide3 .slidetop .submit {float: none;}
.bestellbox .slide3 .slidebot .info {margin-bottom: 0;}
/*.bestellbox .slide3 .slidebot .total {padding-bottom: 15px; margin-bottom: 15px; border-bottom: 2px solid #000;}*/
.bestellbox .slide3 .slidebot .row {display: grid; grid-template-columns: repeat(var(--grid__columns), minmax(0, 1fr)); grid-gap: var(--grid__gutter); grid-auto-columns: 1fr;}
.bestellbox .slide3 .slidebot h4 {margin: 0; font-size: 2rem; line-height: 2.4rem; font-weight: 900;}
.bestellbox .slide3 .slidebot .borderbot .col-md-6 {padding-bottom: 10px; margin-bottom: 20px; border-bottom: 2px solid #000;}
.bestellbox .slide3 .slidebot .lieferungbearbeiten, .bestellbox .slide3 .slidebot .rechnungbearbeiten, .bestellbox .slide3 .slidebot .rabattebearbeiten, .bestellbox .slide3 .slidebot .rechnungbearbeitenabweichend, .bestellbox .slide3 .slidebot .rechnungbearbeitenabweichendanspr {cursor: pointer; display: inline-block; margin-left: 5px; width: 16px; height: 16px; background: url(../../files/data/graphics/bearbeiten.svg) center no-repeat;}
.bestellbox .slide3 .slidebot .rabatte {text-align: left;}
.bestellbox .slide3 .slidebot .checkbox_container {margin-top: 15px;}
.bestellbox .slide3 .slidebot .checkbox_container input {float: left; width: 20px; margin-left: 0; margin-right: 10px;}
.bestellbox .slide3 .slidebot .checkbox_container label {font-size: 2rem; line-height: 2.4rem; color: #000; text-align: left;}

.bestellbox .slide4 .bsttruck {position: absolute; top: 60px; left: 0;}
.bestellbox .slide4 .toptext {box-sizing: border-box; padding-left: 300px;}
.bestellbox .slide4 .toptext .bsttag {font-size: 1.3rem; line-height: 1.3rem; color: #E30613; font-weight: 700; padding: 4px 15px; background: #fff; border-radius: 15px; display: inline-block;}
.bestellbox .slide4 .slidebot .bestaetigunglinks {display: inline-block; width: 47.5%; margin-right: 5%; float: left;}
.bestellbox .slide4 .slidebot .bestaetigungrechts {display: inline-block; width: 47.5%; float: left;}
.bestellbox .slide4 .slidebot h4 {margin: 0 0 10px 0; font-size: 2.6rem; line-height: 2.6rem; font-weight: 900;}
.bestellbox .slide4 .slidebot .bestaetigunglinks .link-phone a {margin-bottom: 0px; display: inline-block; box-sizing: border-box; font-size: 2.4rem; line-height: 2.4rem; color: #000; font-family: 'effra-cc'; font-weight: 900; text-decoration: none; padding: 12px 28px 10px 55px; background: #fff url(../../files/data/graphics/icon-phone-team.svg) center left 20px no-repeat; border-radius: 2px; transition: background 0.3s ease;}
.bestellbox .slide4 .slidebot .bestaetigunglinks .link-mail a {margin-bottom: 15px; display: inline-block; box-sizing: border-box; font-size: 2.4rem; line-height: 2.4rem; color: #000; font-family: 'effra-cc'; font-weight: 900; text-decoration: none; padding: 12px 28px 10px 55px; background: #fff url(../../files/data/graphics/icon-mail.svg) center left 20px no-repeat; border-radius: 2px; transition: background 0.3s ease;}
.bestellbox .slide4 .slidebot .content-hyperlink a {border: 2px solid #000; color: #000; background: #fff url(../../files/data/graphics/arrow-schwarz.svg) center left 20px no-repeat;}

.bestellbox .formswiper {overflow: hidden;}

.bestellbox .formswiper .swiper-slide .slidetop {padding: 60px 60px 40px 60px; background: #E30613;}
.bestellbox .formswiper .swiper-slide .slidebot {padding: 30px 60px 30px 60px; background: #fff; margin-top: 2px;}

.bestellbox .formswiper-button-next {cursor: pointer; box-sizing: border-box; height: 52px; display: inline-block; /*font-size: 2.7rem; line-height: 2.6rem;*/ color: #fff; font-family: 'effra-cc'; font-weight: 900; text-decoration: none; padding: 12px 10px 10px 10px; text-align: center; background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left calc(50% - 70px) no-repeat; border-radius: 2px; transition: background 0.3s ease;}
.bestellbox .formswiper-button-next:hover {background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left calc(50% - 57px) no-repeat;}
.bestellbox .formswiper-button-next.disabled {opacity: 1; background: #E0E0E6 url(../../files/data/graphics/arrow-hyperlink-grau.svg) center left calc(50% - 60px) no-repeat; color: #aeaeae;}

.bestellbox .formswiper-button-prev {position: absolute; top: 40px; right: 60px; font-size: 1.4rem; line-height: 1.4rem; text-decoration: underline; font-weight: 400; color: #fff; cursor: pointer;}

#container .bestellbox .formswiper-pagination {position: absolute; display: block; box-sizing: border-box; padding: 0px 60px 0px 60px; top: 35px; left: 0; right: initial; bottom: initial; width: auto; z-index: 2;}
.bestellbox .formswiper-pagination .swiper-pagination-bullet {width: 20px; height: 20px; padding: 2px 0 0 0; margin: 0 4px 0 0 !important; box-sizing: border-box; background: #E30613; border: 2px solid #fff; border-radius: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; line-height: 1.2rem; font-weight: 700; color: #fff; opacity: 1; transition: background 0.3s ease, color 0.3s ease;}
.bestellbox .formswiper-pagination .swiper-pagination-bullet-active, .bestellbox .formswiper-pagination .swiper-pagination-bullet:hover {background: #fff; color: #E30613;}
.bestellbox .formswiper-pagination .swiper-pagination-bullet:last-of-type {display: none;}

.bestellbox .overlay {display: flex; z-index: 2505; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; backdrop-filter: blur(10px); background: rgba(0,0,0,0.1);}
.bestellbox .overlay .overlay-inner {display: block; max-height: 90vh; overflow-y: auto; box-sizing: border-box; padding: 40px 60px; background: #E30613; width: 90%; max-width: 930px;}
.bestellbox .overlay h3 {color: #fff; margin: 0 0 20px 0; padding-top: 20px;}
.bestellbox .overlay h3 .blatt {position: relative;}
.bestellbox .overlay h3 .blatt:after {content: ""; width: 17px; height: 17px; background: url(../../files/data/graphics/home-box-blatt.svg) center no-repeat; position: absolute; top: 2px; right: -10px;}
.bestellbox .overlay h4 {color: #fff; font-weight: 900;}
.bestellbox .overlay p {color: #fff; font-weight: 400;}

.bestellbox .overlay-verein .overlay-inner {padding-top: 85px; position: relative; background: #E30613 url(../../files/data/graphics/bestellung-konfetti.png) bottom right no-repeat;}
.bestellbox .overlay-verein strong {font-weight: 900;}
.bestellbox .overlay-verein p a {color: #fff;}
.bestellbox .overlay-verein .overlaytopbar {position: absolute; top: 0; left: 0; width: 100%; min-height: 73px; width: 100%; background: #000; color: #fff; box-sizing: border-box; padding: 10px 20px;}
.bestellbox .overlay-verein .overlaytopbar .avatar {display: inline-block; position: absolute; top: 10px; left: 20px;}
.bestellbox .overlay-verein .overlaytopbar .text {display: inline-block; vertical-align: top; margin-left: 90px;}
.bestellbox .overlay-verein .overlaytopbar .text h5 {transform: none; color: #fff; margin: 5px 0 0 0; padding: 0; font-family: 'Caveat-Regular'; font-weight: 400;}
.bestellbox .overlay-verein .overlaytopbar .text p {font-size: 1.4rem; line-height: 1.6rem; margin-bottom: 0;}
.bestellbox .overlay-verein .overlaytopbar .closer {cursor: pointer; display: inline-block; float: right; margin-top: 16px;}
.bestellbox .overlay-verein .formswiper-button-next {width: 100%; margin-bottom: 15px;}
.bestellbox .overlay-verein .keingutschein {cursor: pointer; color: #000; box-sizing: border-box; height: 52px; display: inline-block; /*font-size: 2rem; line-height: 2.7rem;*/ font-family: 'effra-cc'; text-decoration: none; padding: 12px 15px 10px 15px; text-align: center; background: #fff; border-radius: 2px;}
.bestellbox .overlay-verein #vereine_wrapper h4 {padding-left: 18px; background: url(../../files/data/graphics/icon-listbullet-weiss.svg) center left no-repeat;}
.bestellbox .overlay-verein #vereine_wrapper h4 a {color: #fff;}

.bestellbox .overlay-kontakt .overlay-inner {position: relative;}
.bestellbox .overlay-kontakt .overlay-inner .closer {position: absolute; top: 20px; right: 20px; cursor: pointer;}
.bestellbox .overlay-kontakt .formswiper-button-next {float: right; width: 160px; padding: 12px 10px 10px 40px; background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left calc(50% - 40px) no-repeat;}
.bestellbox .overlay-kontakt .formswiper-button-next:hover {background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left calc(50% - 30px) no-repeat;}
.bestellbox .overlay-kontakt .formswiper-button-next.disabled {opacity: 1; background: #E0E0E6 url(../../files/data/graphics/arrow-hyperlink-grau.svg) center left calc(50% - 40px) no-repeat; color: #aeaeae;}
.bestellbox .overlay-kontakt .checkbox_container label {font-size: 1.9rem; line-height: 2.1rem;}
.bestellbox .formbody .checkbox_container a {color: #fff;}
.bestellbox .overlay-kontakt .radio_container label {font-size: 1.9rem;}
.bestellbox .overlay-kontakt .widget-radio.tankdokument input {float: none; width: 24px; height: 24px; margin-left: 0; margin-right: 16px; margin-bottom: 5px;}
.bestellbox .overlay-kontakt .widget-radio.tankdokument label {text-align: left; float: none; top: -5px; font-weight: 900; margin-bottom: 0;}
.bestellbox .overlay-kontakt .widget-radio.tankdokument label a {font-weight: initial; color: #fff;}

.bestellbox .overlaybutton-kontakt {cursor: pointer; box-sizing: border-box; height: 52px; display: inline-block; /*font-size: 2.4rem; line-height: 2.4rem;*/ color: #fff; font-family: 'effra-cc'; font-weight: 900; text-decoration: none; padding: 12px 10px 10px 10px; text-align: center; background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left calc(50% - 70px) no-repeat; border-radius: 2px; transition: background 0.3s ease;}
.bestellbox .overlaybutton-kontakt:hover {background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left calc(50% - 60px) no-repeat;}

.bestellbox .overlay-abweichend .overlay-inner {position: relative;}
.bestellbox .overlay-abweichend .overlay-inner .closer {position: absolute; top: 20px; right: 20px; cursor: pointer;}
.bestellbox .overlay-abweichend .formswiper-button-next {float: right; width: 160px; padding: 12px 10px 10px 40px; background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left calc(50% - 40px) no-repeat;}
.bestellbox .overlay-abweichend .formswiper-button-next:hover {background: #000 url(../../files/data/graphics/arrow-hyperlink.svg) center left calc(50% - 30px) no-repeat;}


/*Datepicker*/
body .date-picker-wrapper {font-family: 'effra-cc'; font-size: 13px; border: none; background-color: #fff; box-shadow: 0 20px 95px rgba(201,203,204,0.5); color: #000000;}
body .date-picker-wrapper .month-wrapper {border: none;}
.date-picker-wrapper .week-name th:first-of-type {visibility: hidden;}
.date-picker-wrapper .week-name th:last-of-type {visibility: hidden;}
.date-picker-wrapper tbody tr td:first-of-type {visibility: hidden;}
.date-picker-wrapper tbody tr td:last-of-type {visibility: hidden;}
.date-picker-wrapper .selected-days {display: none !important;}
.date-picker-wrapper .date-range-length-tip {display: none !important;}
body .date-picker-wrapper .first-date-selected, body .date-picker-wrapper .last-date-selected {background-color: #E30613 !important;}
body .date-picker-wrapper .month-wrapper table .day.checked {background-color: #ffe3e5;}
body .date-picker-wrapper .month-wrapper table .day.toMonth.hovering {background-color: #ffe3e5;}
body .date-picker-wrapper .drp_top-bar .apply-btn {border: solid 1px #E30613; background: #E30613;}
body .date-picker-wrapper .month-wrapper table .day.toMonth.valid {color: #E30613; font-weight: 700;}
body .date-picker-wrapper .month-wrapper table .day.real-today {background-color: #fff; box-shadow: inset 0px 0px 0px 1px #b1abaa;}
body .date-picker-wrapper .month-element {text-transform: capitalize;}
body .date-picker-wrapper .drp_top-bar.normal .normal-top .selection-top {color: #000;}
body .date-picker-wrapper b {color: #000;}
body .date-picker-wrapper .drp_top-bar br {display: none;}
body .date-picker-wrapper:after {content: "Lieferung auf später terminieren? Anruf genügt: 058 307 88 22"; display: block; line-height: 1.4;}

.formbody input#datepicker {letter-spacing: -1px;}

#ui-datepicker-div {z-index: 200 !important; width: 245px; border: none; border-radius: 2px; box-shadow: 0 0 20px rgba(0,0,0,0.2);}
#ui-datepicker-div .ui-datepicker-week-end {display: none !important;}
body .ui-widget {font-family: 'effra-cc';}
body .ui-datepicker .ui-datepicker-title {font-size: 2rem; line-height: 2.6rem; color: #000; font-weight: 900;}
body .ui-widget-header {background: initial; border: none; color: #000; font-weight: 900;}
body .ui-datepicker .ui-datepicker-prev span {display: none;}
body .ui-datepicker .ui-datepicker-next span {display: none;}
body .ui-datepicker .ui-datepicker-prev {height: 32px; background: url(../../files/data/graphics/datepicker-prev.svg) center no-repeat;}
body .ui-datepicker .ui-datepicker-next {height: 32px; background: url(../../files/data/graphics/datepicker-next.svg) center no-repeat;}
body .ui-datepicker th {font-weight: 900;}
body .ui-state-default, body .ui-widget-content .ui-state-default, body .ui-widget-header .ui-state-default, body .ui-button, html body .ui-button.ui-state-disabled:hover, html body .ui-button.ui-state-disabled:active {border:none; border-radius: 20px; background: initial; color: #000; font-weight: 400; width: 30px; height: 26px; text-align: center; display: inline-flex; align-items: center; padding: 4px 0 0 0; justify-content: center; letter-spacing: -1px;}
body .ui-datepicker-calendar .ui-state-hover, body .ui-datepicker-calendar .ui-state-hover, body .ui-datepicker-calendar .ui-state-focus, body .ui-datepicker-calendar .ui-state-focus,  body .ui-datepicker-calendar .ui-button:hover, body .ui-datepicker-calendar .ui-button:focus, body .ui-datepicker-calendar .ui-state-active {background: #E30613; color: #fff;}
body .ui-widget-header .ui-state-hover, body .ui-widget-header .ui-state-focus {border:none; top: 2px;}
body .ui-datepicker td {text-align: center;}

/*Hilfepopup*/
.hilfepopup {position: absolute; bottom: 20px; right: 20px; z-index: 2;}
.hilfepopup .hilfeopener {position: absolute; bottom: 0; right: 0; width: 76px; height: 76px; cursor: pointer; background: url(../../files/data/graphics/hilfepopup-open.png) center no-repeat; z-index: 2; transition: background 0.5s ease;}
.hilfepopup.active .hilfeopener {background: url(../../files/data/graphics/hilfepopup-close.svg) center no-repeat;}
.hilfepopup .hilfebubble {overflow: hidden; white-space: nowrap; position: absolute; bottom: 18px; right: 70px; width: 200px; background: #000; padding: 12px 0px 9px 0; border-radius: 2px; text-align: center; color: #fff; font-size: 1.4rem; line-height: 1.6rem; transition: width 0.5s ease;}
.hilfepopup.active .hilfebubble {width: 0px;}

.hilfepopup .hilfecontainer .top {position: relative; min-height: 73px; width: 100%; background: #000; color: #fff; box-sizing: border-box; padding: 10px 20px;}
.hilfepopup .hilfecontainer .top .avatar {display: inline-block; position: absolute; top: 10px; left: 20px;}
.hilfepopup .hilfecontainer .top .text {display: inline-block; vertical-align: top; margin-left: 90px;}
.hilfepopup .hilfecontainer .top .text h5 {transform: none; color: #fff; margin: 10px 0 0 0; padding: 0; font-family: 'Caveat-Regular'; font-weight: 400;}
.hilfepopup .hilfecontainer .top .text p {font-size: 1.4rem; line-height: 1.6rem; margin-bottom: 0;}
.hilfepopup .hilfecontainer .top .closer {cursor: pointer; display: inline-block; float: right; margin-top: 16px;}

.hilfepopup .hilfecontainer .bot {background: #fff; padding: 30px 25px;}
.hilfepopup .hilfecontainer .bot .links {display: inline-block; width: 80px;}
.hilfepopup .hilfecontainer .bot .rechts {display: inline-block; width: calc(100% - 80px);}
.hilfepopup .hilfecontainer .bot a {color: #000;}
.hilfepopup .hilfecontainer .bot .hilfekontakt div {margin-bottom: 5px;}
.hilfepopup .hilfecontainer .bot h4 {margin-top: 5px;}

.hilfepopup .hilfecontainer {visibility: hidden; opacity: 0; position: absolute; bottom: 90px; right: 0px; width: 330px; overflow: hidden; border-radius: 2px; box-shadow: 0px 2px 30px rgba(0,0,0,0.3); transition: visibility 0.5s ease, opacity 0.5s ease;}
.hilfepopup .hilfecontainer.active {visibility: visible; opacity: 1;}

.bestellbox .hcabladestelle-opener {color: #fff; text-decoration: underline; cursor: pointer;}
.bestellbox .hclieferdistanz-opener {color: #fff; text-decoration: underline; cursor: pointer;}
.bestellbox .hcnotfall-opener {color: #fff; text-decoration: underline; cursor: pointer;}
.bestellbox .wunschzeit-hinweis {color: #fff; font-size: 1.4rem; line-height: 1.7rem; font-weight: 400; margin-top: 5px;}

/*  NEWS / TERMINE                                           */
/*************************************************************/
.mod_newslist .layout_latest {border-radius: 2px; position: relative; margin-bottom: 30px; top: 0; background: #EBEAE8; box-shadow: 0 20px 95px rgba(201,203,204,0); transition: top 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;}
.mod_newslist .layout_latest .boxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;}
.mod_newslist .layout_latest .image_container {line-height: 0;}
.mod_newslist .layout_latest .image_container img {width: 100%; height: auto;}
.mod_newslist .layout_latest .newstext {padding: 30px 40px 60px 40px; background: #EBEAE8; box-sizing: border-box; width: 100%; min-height: 275px; transition: background 0.3s ease;}
.mod_newslist .layout_latest .newstext h3 {margin-top: 0;}
.mod_newslist .layout_latest .newstext h3 a {color: #E30613; text-decoration: none;}
.mod_newslist .layout_latest .newstext .info {font-size: 2rem; line-height: 2.6rem;}
.mod_newslist .layout_latest .newstext .more {position: absolute; bottom: 10px; right: 40px; filter: brightness(0); transition: filter 0.3s ease, right 0.3s ease;}

.mod_newslist .layout_latest:hover {top: -5px; box-shadow: 0 20px 95px rgba(201,203,204,0.5); background: #fff;}
.mod_newslist .layout_latest:hover .newstext {background: #fff;}
.mod_newslist .layout_latest:hover .newstext .more {filter: brightness(1); right: 20px;}

.mod_newslist .layout_short {margin-bottom: 20px; position: relative;}
.mod_newslist .layout_short .boxlink {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;}
.mod_newslist .layout_short p.info {margin-bottom: 3px;}
.mod_newslist .layout_short h4 {margin-top: 0;}
.mod_newslist .layout_short h4 a {font-weight: 900; color: #E30613; text-decoration: none;}

.mod_newsreader .layout_full .hauptbild {margin-bottom: 30px;}
.mod_newsreader .layout_full h3 {color: #000;}
.mod_newsreader .content-hyperlink.back {text-align: center;}
.mod_newsreader .content-hyperlink.back a {color: #000; background: #fff url(../../files/data/graphics/arrow-schwarz-back.svg) center left 20px no-repeat;}
.mod_newsreader .content-hyperlink.back a:hover {background: #fff url(../../files/data/graphics/arrow-schwarz-back.svg) center left 10px no-repeat;}
.mod_newsreader .detailspalterechts {padding-left: 30px;}

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


/*  FOOTER                                                   */
/*************************************************************/
#footer {height: auto; display: block; clear: both; position: relative; background: #fff; box-shadow: 0 20px 95px rgba(201,203,204,0.3);}
#footer .inside {position: relative; width: 90%; padding: 0px 5%; max-width: 1410px; margin: 0 auto;}
#footer .footertop {padding-top: 80px; padding-bottom: 60px;}
#footer .footertop .content-text {margin-top: 50px;}
#footer .footertop .content-text a {color: #000; text-decoration: none;}
#footer .footertop .content-text.navtel {margin-top: 10px; margin-bottom: 10px;}
#footer .footertop .content-text.navtel p {margin-bottom: 0;}
#footer .footertop .content-text.navtel a {color: #E30613; font-weight: 900;  padding-left: 30px; text-decoration: none; background: url(../../files/data/graphics/icon-phone-rot.svg) center left no-repeat;}
#footer .footertop .content-text.navmail {margin-top: 0px;}
#footer .footertop .content-text.navmail a {color: #E30613; font-weight: 900;  padding-left: 30px; text-decoration: none; background: url(../../files/data/graphics/icon-mail-at-rot.svg) center left no-repeat;}
#footer .einzug {padding-left: 50px;}
#footer .footertop .cert1 {margin-top: 140px; display: inline-block;}
#footer .footertop .cert2 {display: inline-block; margin: 0px 0 0 10px; vertical-align: middle;}
#footer .footerbot {height: 65px;}
#footer .footerbot .content-text {margin-bottom: 0; margin-top: 20px;}
#footer .footerbot .content-text p {margin-bottom: 0; color: #AFA9A5; font-size:1.4rem; line-height: 1.4rem; font-weight: 400;}
#footer .footerbot .content-text p a {color: #AFA9A5; text-decoration: none;}
#footer .footerbot .nuun {text-align: center; margin-top: 11px; margin-bottom: 30px;}

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

/*  MEDIA QUERIES                                            */
/*************************************************************/
@media screen and (max-width: 1600px) {
    body.home #header .headertel {width: 590px;}
    body.home #header .headertel .content-text p {font-size: 1.5rem;}
    body.home #header .headertel .content-text.text2 p {font-size: 1.5rem;}
    body.home #header .headertel .content-text.text2 {margin-right: 0;}
    #container .ce_form {padding: 50px 40px 80px 40px;}
}

@media screen and (max-width: 1099px) {
    body {font-size:18px; font-size:1.8rem; line-height: 2.4rem;}
    h1, h2 {font-size: 4rem; line-height: 4.4rem;}
    h3 {font-size: 3rem; line-height: 3.3rem;}
    h4 {font-size:1.8rem; line-height: 2.4rem;}
    h5 {font-size:1.8rem; line-height: 2.4rem;}

    body.home #header .headertel, #header .headertel {display: none;}
    .nuunnavbutton-open {width: 50px; height: 50px; background-size: contain;}
    .nuunnavbutton-close {width: 50px; height: 50px; background-size: contain;}
    #header .logo {width: 165px;}
    #nuunnav .logo {width: 165px;}
    #nuunnav .content-hyperlink {position: relative; right: initial; top: initial;}
    #nuunnav .navtel {margin-top: 0;}
    #nuunnav .navigation {width: 100%; position: relative; top: initial; left: initial; transform: initial;}
    #nuunnav .navigation a {font-size: 4rem; line-height: 3.3rem;}
    body.home .mod_article.topbild .bestellbox {max-width: 90%; box-sizing: border-box;}
    .flyingfooter .inside .fflinks, .flyingfooter .inside .ffrechts {display: none;}
    .flyingfooter .inside {justify-content: center;}
    .flyingfooter .inside .ffmid div {margin: 0 8px;}
    body .mod_article.topbild {height: 190px;}
	body .mod_article.topbild > .inside {height: 190px;}
	body .mod_article.topbild .content-image img {height: 190px;}
    /*.bestellbox .overlay-kontakt .checkbox_container label {font-size: 1.4rem;}*/
    /*.bestellbox .slide3 .slidetop .checkbox_container label {font-size: 1.4rem;}*/
    #footer .footertop .content-text.navmail {margin-bottom: 50px;}
    .mod_newsreader .detailspalterechts {padding-left: 0;}

    body.home .bestellbox {left: 5%;}
}

@media screen and (max-width: 940px) {
    .scrollboxen .box .boxlinks {width: 100%; position: relative; max-height: 180px;}
    .scrollboxen .box .boxlinks .image-container {max-height: 180px;}
    .scrollboxen .box .boxlinks .image-container img {max-height: 180px; object-position: center;}
    .scrollboxen .box .boxrechts {padding: 40px;}
    .scrollboxen .box .boxrechts h3.miticon {margin-left: 0;}
    #footer {text-align: left;}
    #footer .footertop .content-text {margin-top: 0; margin-bottom: 50px;}
    #footer .einzug {padding-left: 0;}
    #footer .flogo {margin-bottom: 50px !important;}
    #footer .footertop .cert1 {margin-top: 60px;}
    #footer .footerbot {height: auto;}
    #footer .footerbot .content-text {margin: 0 0 20px 0;}
    .mobilelinks h2 {text-align: center !important;}
    .mobilelinks h3 {text-align: left !important;}
    .mobilelinks p {text-align: left !important;}
    .handorgel__header__button {padding: 30px 30px 30px 60px; background: #D7D4D2 url(../../files/data/graphics/accordion-plus.svg) center left 25px no-repeat; transition: background 0.3s ease;}
	.handorgel__header--open .handorgel__header__button {background: #fff url(../../files/data/graphics/accordion-minus.svg) center left 25px no-repeat;}
	.handorgel__content__inner {padding: 0 30px 10px 60px;}
	.mod_article.vollbild .content-text {bottom: 0;}
	.mod_article.vollbild .content-text h1, .mod_article.vollbild .content-text h2 {font-size: 4vw; line-height: 4.4vw;}

	body.home .mod_article.topbild .content-image img {width: 100%; height: 100%; object-fit: cover; object-position: center top;}
	body.home .mod_article.topbild .content-image.desktop {display: none;}
	body.home .mod_article.topbild .content-image.mobile {display: block;}
    .bestellbox .slidebot .links, .bestellbox .slidebot .rechts {width: 100%; text-align: left;}
    .bestellbox .slidebot .zusammenfassunglinks, .bestellbox .slidebot .zusammenfassungrechts {width: 100%; margin-right: 0; padding-left: 0;}

    /*Abstaende*/
	.oben0 {margin-top: 0px !important;}
	.oben10 {margin-top: 10px !important;}
	.oben20 {margin-top: 20px !important;}
	.oben30 {margin-top: 20px !important;}
	.oben40 {margin-top: 20px !important;}
	.oben50 {margin-top: 20px !important;}
	.oben60 {margin-top: 20px !important;}
	.oben70 {margin-top: 20px !important;}
	.oben80 {margin-top: 20px !important;}
	.oben90 {margin-top: 20px !important;}
	.oben100 {margin-top: 20px !important;}
	.oben110 {margin-top: 20px !important;}
	.oben120 {margin-top: 20px !important;}
	.oben130 {margin-top: 20px !important;}
	.oben140 {margin-top: 20px !important;}
	.oben150 {margin-top: 20px !important;}

	.unten0 {margin-bottom: 0px !important;}
	.unten10 {margin-bottom: 10px !important;}
	.unten20 {margin-bottom: 20px !important;}
	.unten30 {margin-bottom: 20px !important;}
	.unten40 {margin-bottom: 20px !important;}
	.unten50 {margin-bottom: 20px !important;}
	.unten60 {margin-bottom: 20px !important;}
	.unten70 {margin-bottom: 20px !important;}
	.unten80 {margin-bottom: 20px !important;}
	.unten90 {margin-bottom: 20px !important;}
	.unten100 {margin-bottom: 20px !important;}
	.unten110 {margin-bottom: 20px !important;}
	.unten120 {margin-bottom: 20px !important;}
	.unten130 {margin-bottom: 20px !important;}
	.unten140 {margin-bottom: 20px !important;}
	.unten150 {margin-bottom: 20px !important;}
}

@media screen and (max-width: 750px) {
	#header .content-hyperlink.heizoelhyper {display: none;}
    .bestellbox .overlay-kontakt .checkbox_container label {width: calc(100% - 40px); float: left;}
    .bestellbox .overlay-kontakt .checkbox_container {margin-bottom: 0;}
    .bestellbox .checkbox_container input {width: 20px; padding: 0;}
    .bestellbox .overlay-kontakt .radio_container label {float: left; width: calc(100% - 60px);}
    .bestellbox .overlay-kontakt .widget-radio.tankdokument input {float: left; width: 20px; height: 20px; margin-right: 10px; padding: 0; vertical-align: top; margin-top: 0;}

	body.home .bestellbox {top: 170px;}
    .bestellbox .slidebot .zusammenfassunglinks .links, .bestellbox .slidebot .zusammenfassunglinks .rechts {width: 100%; text-align: left;}
    #container .bestellbox .formswiper-pagination {padding: 0 30px;}
    .bestellbox .formswiper-button-prev {right: 30px;}
    .bestellbox .formswiper .swiper-slide .slidetop {padding: 60px 30px 40px 30px;}
    .bestellbox .overlay .overlay-inner {padding: 30px 30px;}
    .bestellbox .overlay.overlay-verein .overlay-inner {padding-top: 85px;}
    .bestellbox .formswiper .swiper-slide .slidebot {padding: 30px 30px;}
    .bestellbox .slidebot p {font-size: 1.8rem; line-height: 2.1rem;}
    .bestellbox .slidebot strong {float: right;}
    .bestellbox .slidebot .inkl {text-align: right;}
    .bestellbox .slidebot .total .links {display: inline-block; width: 45%; float: left;}
	.bestellbox .slidebot .total .links strong {float: none;}
	.bestellbox .slidebot .total .rechts {display: inline-block; width: 55%; float: left; text-align: right;}
    .bestellbox .slidebot .info .links {display: inline-block; width: 45%; float: left;}
    .bestellbox .slidebot .info .links strong {float: none;}
    .bestellbox .slidebot .info .rechts {display: inline-block; width: 55%; float: left; text-align: right;}
	.bestellbox .slide2 .slidebot div.preisprol {margin-top: 10px;}
	.bestellbox .slidebot .rabattverein .links {display: inline-block; width: 45%; float: left;}
	.bestellbox .slidebot .rabattverein .rechts {display: inline-block; width: 55%; float: left; text-align: right;}
	.bestellbox .slidebot .rabattfuersie .links {display: inline-block; width: 45%; float: left;}
	.bestellbox .slidebot .rabattfuersie .rechts {display: inline-block; width: 55%; float: left; text-align: right;}
	.bestellbox .slidebot .zusammenfassunglinks .info .links {display: inline-block; width: 45%; float: left;}
	.bestellbox .slidebot .zusammenfassunglinks .info .rechts {display: inline-block; width: 55%; float: left; text-align: right;}
	.bestellbox .slide3 .slidetop .checkbox_container label {width: calc(100% - 40px);}
	.bestellbox .slide3 .slidebot strong {float: none;}
    .bestellbox .slide4 .bsttruck {display: none;}
	.bestellbox .slide4 .toptext {padding-left: 0;}
	.bestellbox .slide4 .slidebot .bestaetigunglinks {width: 100%; margin: 0; float: none;}
	.bestellbox .slide4 .slidebot .bestaetigungrechts {width: 100%; margin: 0; float: none;}

	#container .content-text.media--left figure {width: 100%; margin-right: 0%;}
	#container .content-text.media--left .rte {width: 100%;}
	#container .content-text.media--right figure {float: none; width: 100%; margin-left: 0%;}
	#container .content-text.media--right .rte {width: 100%;}
    #container .content-text.grau {background: #EBEAE8; padding: 10px 20px;}
    
    .schmal75 {width: 100% !important; margin: 0 auto;}
    .schmal50 {width: 100% !important; margin: 0 auto;}
}

@media screen and (max-width: 500px) {
	#nuunnav .navigation a {font-size: 2.8rem; line-height: 2.3rem; padding: 15px 0;}
	.flyingfooter .inside .ffmid .content-text {display: none;}
}

@media screen and (max-width: 479px) {
    body .date-picker-wrapper {left: calc(5% + 30px) !important; max-width: calc(90% - 60px) !important; box-sizing: border-box;}
    body .date-picker-wrapper .month-wrapper table {float: none; margin: 0 auto;}
    body .date-picker-wrapper .drp_top-bar {padding: 3px 0px 0px 0;}
    body .date-picker-wrapper .drp_top-bar br {display: block;}
}

@media screen and (max-width: 420px) {
    .bestellbox .row {grid-gap: 0;}
    .bestellbox .slide3 .slidebot .row {grid-gap: 0;}
}

/*Fonts*/
@font-face {
    font-family: 'Caveat-Bold';
    src: url('../../files/data/style/Fonts/Caveat-Bold.woff2') format('woff2'),
        url('../../files/data/style/Fonts/Caveat-Bold.woff') format('woff');
    font-style: normal;
}

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

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

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

