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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
@charset "UTF-8";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden; }
  .contao-cookiebar * {
    box-sizing: border-box; }
  .contao-cookiebar:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .contao-cookiebar .cc-inner {
    display: inline-block;
    overflow-y: auto;
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-size: 1rem;
    text-align: left; }
  .contao-cookiebar.cc-top .cc-inner {
    vertical-align: top; }
  .contao-cookiebar.cc-top.cc-active .cc-inner {
    animation: cookiebar-top-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-top.cc-saved .cc-inner {
    animation: cookiebar-top-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom .cc-inner {
    vertical-align: bottom; }
  .contao-cookiebar.cc-bottom.cc-active .cc-inner {
    animation: cookiebar-bottom-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom.cc-saved .cc-inner {
    animation: cookiebar-bottom-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle .cc-inner {
    vertical-align: middle; }
  .contao-cookiebar.cc-middle.cc-active .cc-inner {
    animation: cookiebar-middle-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle.cc-saved .cc-inner {
    animation: cookiebar-middle-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-left {
    text-align: left; }
  .contao-cookiebar.cc-right {
    text-align: right; }
  .contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
    margin-top: 0; }
  .contao-cookiebar .cc-head p {
    margin-bottom: 15px; }
  .contao-cookiebar .cc-btn {
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 8px 14px;
    margin-bottom: 8px;
    font-size: 15px;
    outline: 0 none;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    color: #444;
    background: #f5f5f5; }
    .contao-cookiebar .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .cc-btn:last-child {
      margin-bottom: 0; }
  .contao-cookiebar .grayscale .cc-btn {
    background: #f1efef; }
    .contao-cookiebar .grayscale .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .grayscale .cc-btn.success {
      background: #fbfbfb; }
      .contao-cookiebar .grayscale .cc-btn.success:hover {
        background: #f7f7f7; }
  .contao-cookiebar .highlight .cc-btn.success {
    background: #4e9e3e;
    border-color: #3e7830;
    color: #fff; }
    .contao-cookiebar .highlight .cc-btn.success:hover {
      background: #4c933f; }
  .contao-cookiebar label {
    position: relative;
    display: block;
    padding: 8px 13px 8px 0;
    line-height: 1.2rem; }
    .contao-cookiebar label.group {
      font-weight: 600; }
  .contao-cookiebar input {
    position: absolute;
    width: 1px;
    height: 1px;
    outline: 0 none;
    opacity: 0; }
    .contao-cookiebar input + label {
      padding: 8px 13px 8px 50px;
      cursor: pointer; }
      .contao-cookiebar input + label:before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 35px;
        height: 18px;
        margin: 0;
        box-sizing: content-box;
        border-radius: 10px;
        background: #fff;
        border: 2px solid #9c9b99;
        transition: border-color .2s; }
      .contao-cookiebar input + label:after {
        display: block;
        content: '';
        position: absolute;
        top: 10px;
        left: 4px;
        width: 14px;
        height: 14px;
        border-radius: 10px;
        background: #9c9b99;
        transition: background .2s, margin-left .2s, padding .2s; }
      .contao-cookiebar input + label:active:after {
        padding-left: 5px; }
    .contao-cookiebar input.cc-group-half + label:after {
      background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%); }
    .contao-cookiebar input:checked + label:after {
      background: #399d32;
      margin-left: 17px; }
    .contao-cookiebar input:checked + label:active:after {
      margin-left: 12px; }
    .contao-cookiebar input:checked + label:before {
      background: #dcf3db;
      border-color: #399d32; }
    .contao-cookiebar input:disabled + label {
      pointer-events: none; }
      .contao-cookiebar input:disabled + label:after {
        background: #c8c7c5; }
      .contao-cookiebar input:disabled + label:before {
        background: #f4f4f4;
        border-color: #c8c7c5; }
  .contao-cookiebar.cc-active .cc-inner {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .contao-cookiebar.cc-active.cc-blocked {
    pointer-events: auto;
    animation: cookiebar-overlay-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-saved.cc-inner {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
  .contao-cookiebar.cc-saved.cc-blocked {
    pointer-events: none;
    animation: cookiebar-overlay-out 0.5s ease-in-out forwards; }

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

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

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

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

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

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

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

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

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

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

@media screen{
#iso_ajaxBox{width:20%;padding:9px 50px 9px 24px;position:fixed;top:10%;left:40%;background:#fff url(../../system/modules/isotope/assets/images/loading.gif) no-repeat right center;border:2px solid #000;font-family:"Trebuchet MS",Verdana,sans-serif;font-size:15px;line-height:18px;text-align:left;color:#000;z-index:9999}#iso_ajaxBox.btnClose{background-image:none;cursor:pointer}#iso_ajaxBox p{margin:1em 0;padding:0}#iso_ajaxBox .iso_error{padding-left:34px;background:url(../../system/modules/isotope/assets/images/cross-24.png) left center no-repeat}#iso_ajaxBox .iso_confirm{padding-left:34px;background:url(../../system/modules/isotope/assets/images/tick-24.png) left center no-repeat}#iso_ajaxBox .iso_info{padding-left:34px;background:url(../../system/modules/isotope/assets/images/information-24.png) left center no-repeat}#iso_ajaxOverlay{width:100%;height:100%;position:fixed;top:0;left:0;background-color:#000;z-index:9998;-moz-opacity:.5;opacity:.5;_display:none;filter:Alpha(opacity=50)}
}
/* Slider */
.slick-slider
{
    position: relative;

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

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

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

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

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

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

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

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

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

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

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

    height: auto;

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

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../../files/theme-files/lib/slick/./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../../files/theme-files/lib/slick/./fonts/slick.eot');
    src: url('../../files/theme-files/lib/slick/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('../../files/theme-files/lib/slick/./fonts/slick.woff') format('woff'), url('../../files/theme-files/lib/slick/./fonts/slick.ttf') format('truetype'), url('../../files/theme-files/lib/slick/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */

.slick-dots
{
    position: absolute;
    bottom: 0px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: 1;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: white;
}

@font-face{font-family:"Kanit";font-style:normal;font-weight:100;src:url("/files/theme-files/fonts/kanit-v7-latin-100.eot");src:local("Kanit Thin"), local("Kanit-Thin"), url("/files/theme-files/fonts/kanit-v7-latin-100.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-100.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-100.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-100.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-100.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:normal;font-weight:200;src:url("/files/theme-files/fonts/kanit-v7-latin-200.eot");src:local("Kanit ExtraLight"), local("Kanit-ExtraLight"), url("/files/theme-files/fonts/kanit-v7-latin-200.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-200.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-200.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-200.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-200.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:normal;font-weight:300;src:url("/files/theme-files/fonts/kanit-v7-latin-300.eot");src:local("Kanit Light"), local("Kanit-Light"), url("/files/theme-files/fonts/kanit-v7-latin-300.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-300.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-300.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-300.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-300.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:italic;font-weight:300;src:url("/files/theme-files/fonts/kanit-v7-latin-300italic.eot");src:local("Kanit Light Italic"), local("Kanit-LightItalic"), url("/files/theme-files/fonts/kanit-v7-latin-300italic.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-300italic.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-300italic.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-300italic.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-300italic.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:normal;font-weight:400;src:url("/files/theme-files/fonts/kanit-v7-latin-regular.eot");src:local("Kanit Regular"), local("Kanit-Regular"), url("/files/theme-files/fonts/kanit-v7-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-regular.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-regular.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-regular.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-regular.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:italic;font-weight:400;src:url("/files/theme-files/fonts/kanit-v7-latin-italic.eot");src:local("Kanit Italic"), local("Kanit-Italic"), url("/files/theme-files/fonts/kanit-v7-latin-italic.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-italic.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-italic.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-italic.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-italic.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:normal;font-weight:500;src:url("/files/theme-files/fonts/kanit-v7-latin-500.eot");src:local("Kanit Medium"), local("Kanit-Medium"), url("/files/theme-files/fonts/kanit-v7-latin-500.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-500.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-500.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-500.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-500.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:normal;font-weight:600;src:url("/files/theme-files/fonts/kanit-v7-latin-600.eot");src:local("Kanit SemiBold"), local("Kanit-SemiBold"), url("/files/theme-files/fonts/kanit-v7-latin-600.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-600.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-600.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-600.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-600.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:normal;font-weight:700;src:url("/files/theme-files/fonts/kanit-v7-latin-700.eot");src:local("Kanit Bold"), local("Kanit-Bold"), url("/files/theme-files/fonts/kanit-v7-latin-700.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-700.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-700.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-700.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-700.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:normal;font-weight:800;src:url("/files/theme-files/fonts/kanit-v7-latin-800.eot");src:local("Kanit ExtraBold"), local("Kanit-ExtraBold"), url("/files/theme-files/fonts/kanit-v7-latin-800.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-800.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-800.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-800.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-800.svg#Kanit") format("svg")}@font-face{font-family:"Kanit";font-style:normal;font-weight:900;src:url("/files/theme-files/fonts/kanit-v7-latin-900.eot");src:local("Kanit Black"), local("Kanit-Black"), url("/files/theme-files/fonts/kanit-v7-latin-900.eot?#iefix") format("embedded-opentype"), url("/files/theme-files/fonts/kanit-v7-latin-900.woff2") format("woff2"), url("/files/theme-files/fonts/kanit-v7-latin-900.woff") format("woff"), url("/files/theme-files/fonts/kanit-v7-latin-900.ttf") format("truetype"), url("/files/theme-files/fonts/kanit-v7-latin-900.svg#Kanit") format("svg")}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */.hamburger{display:inline-block;cursor:pointer;transition-property:opacity, filter;transition-duration:0.15s;transition-timing-function:linear;font:inherit;color:inherit;text-transform:none;background-color:transparent;border:0;margin:0;overflow:visible}.hamburger:hover{opacity:0.7}.hamburger.is-active:hover{opacity:0.7}.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner::before,.hamburger.is-active .hamburger-inner::after{background-color:#000}.hamburger-box{width:40px;height:24px;display:inline-block;position:relative}.hamburger-inner{display:block;top:50%;margin-top:-2px}.hamburger-inner,.hamburger-inner::before,.hamburger-inner::after{width:40px;height:3px;background-color:#000;border-radius:4px;position:absolute;transition-property:transform;transition-duration:0.15s;transition-timing-function:ease}.hamburger-inner::before,.hamburger-inner::after{content:"";display:block}.hamburger-inner::before{top:-10px}.hamburger-inner::after{bottom:-10px}.hamburger--elastic .hamburger-inner{top:2px;transition-duration:0.275s;transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}.hamburger--elastic .hamburger-inner::before{top:10px;transition:opacity 0.125s 0.275s ease}.hamburger--elastic .hamburger-inner::after{top:20px;transition:transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55)}.hamburger--elastic.is-active .hamburger-inner{transform:translate3d(0, 10px, 0) rotate(135deg);transition-delay:0.075s}.hamburger--elastic.is-active .hamburger-inner::before{transition-delay:0s;opacity:0}.hamburger--elastic.is-active .hamburger-inner::after{transform:translate3d(0, -20px, 0) rotate(-270deg);transition-delay:0.075s}
*{box-sizing:border-box;margin:0;padding:0}body{font-family:"Kanit";font-size:20px;font-weight:300;background-color:#D1CBBA}fieldset,img,iframe{margin:0;padding:0;border:0;display:block}.row,#header .inside,#footer .inside{max-width:1400px;width:100%;margin-left:auto;margin-right:auto}.pt-0{padding-top:0rem}.pb-0{padding-bottom:0rem}.mt-0{margin-top:0rem}.mb-0{margin-bottom:0rem}.pt-1{padding-top:1rem}.pb-1{padding-bottom:1rem}.mt-1{margin-top:1rem}.mb-1{margin-bottom:1rem}.pt-2{padding-top:2rem}.pb-2{padding-bottom:2rem}.mt-2{margin-top:2rem}.mb-2{margin-bottom:2rem}.pt-3{padding-top:3rem}.pb-3{padding-bottom:3rem}.mt-3{margin-top:3rem}.mb-3{margin-bottom:3rem}.pt-4{padding-top:4rem}.pb-4{padding-bottom:4rem}.mt-4{margin-top:4rem}.mb-4{margin-bottom:4rem}.center{text-align:center}a{color:#000}h1{font-weight:200;font-size:4rem;color:#000;text-align:center;margin-top:2rem;margin-bottom:1rem}h1+h3{margin-top:-1.5rem;text-transform:uppercase}h2{font-weight:300;font-size:3rem;line-height:1;text-transform:uppercase;margin-top:2rem;margin-bottom:1rem}h3{font-weight:200;font-size:2rem;margin-top:2rem;margin-bottom:1rem}h4{font-weight:500;text-transform:uppercase;margin-top:2rem;margin-bottom:1rem}p{margin-bottom:1rem}p.right{text-align:right}img{display:block;max-width:100%;height:auto}table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent;border-collapse:collapse;border:none}table tr{border-bottom:1px solid #F5F2E8}table tr td,table tr th{vertical-align:top}strong{font-weight:500}hr{border:0;border-top:1px solid gray;border-bottom:1px solid #F5F2E8;margin-bottom:1rem}.border{border:solid 1px #D1CBBA;padding:0 1rem;margin-bottom:2rem}.invisible{display:none}.mod_navigation ul{margin:0;padding:0}.mod_navigation ul li{float:left;margin:0 1.8rem 1rem 0;list-style:none}.mod_navigation ul li a{color:#000;text-decoration:none}form fieldset.radio_container>span{display:block}form .radio_container .filled{display:flex;justify-content:flex-start;margin-bottom:1rem}form .radio_container .filled input{margin:0.5rem 1rem 0 0;align-self:flex-start}form input.text,form textarea,form select{border:1px solid #000;border-radius:0;padding:0.5rem 0.6rem;outline:none;width:100%}form input.text.error,form textarea.error,form select.error{border-color:#bc200a}form .widget{position:relative}form .widget:not(:last-child){margin-bottom:1em}form .widget:not(.widget-checkbox):not(.widget-radio).focus label{line-height:1em;top:0 !important;left:0.5em !important;font-size:0.6em;background-color:white !important}form .widget:not(.widget-checkbox):not(.widget-radio).focus p.error{display:none}form .widget:not(.widget-checkbox):not(.widget-radio) label,form .widget .quantity_container label{position:absolute;top:50%;left:0;transform:translateY(-50%);background-color:rgba(255, 255, 255, 0);color:#9f9f9f;padding:0 0.5em;transition:top 0.1s, font-size 0.1s, left 0.1s, background-color 0.1s, color 0.1s;pointer-events:none}form .widget:not(.widget-checkbox):not(.widget-radio) label.error,form .widget .quantity_container label.error{color:#bc200a}form .widget:not(.widget-checkbox):not(.widget-radio).filled label,form .widget:not(.widget-checkbox):not(.widget-radio).focus label,form .widget.widget-select label,form .widget .quantity_container label{line-height:1em;top:0 !important;left:0.5em !important;font-size:0.6em;background-color:white !important}form .widget p.error{position:absolute;top:0.3rem;right:0.3rem;padding:0;border:0}form .widget-submit{margin-top:1rem;display:flex;justify-content:flex-end}p.error{padding:0.5rem;margin-top:0;border:1px solid #bc200a;color:#bc200a}p.note{display:block;border:1px solid #ccc;padding:1rem 1rem;margin:1em 0;font-size:90%}.checkbox_container .filled{display:flex;justify-content:flex-start}.checkbox_container .filled .checkbox{margin:0.6rem 0.5rem 0 0;align-self:flex-start}input.submit,button.submit,a.button,a.back,a.btn,.ce_cookiebarOpener a{background-color:#000;display:inline-block;color:#fff;font-size:99%;padding:0.6rem 1rem;margin-left:0.3rem;margin-bottom:0.3rem;text-decoration:none;border:none;border-radius:0;-webkit-appearance:none;cursor:pointer;transition:background-color 0.2s}input.submit:hover,button.submit:hover,a.button:hover,a.back:hover,a.btn:hover,.ce_cookiebarOpener a:hover{background-color:#4d4d4d}input.submit.button_update,input.submit.previous,button.submit.button_update,button.submit.previous,a.button.button_update,a.button.previous,a.back.button_update,a.back.previous,a.btn.button_update,a.btn.previous,.ce_cookiebarOpener a.button_update,.ce_cookiebarOpener a.previous{background-color:#636363}input.submit.disabled,button.submit.disabled,a.button.disabled,a.back.disabled,a.btn.disabled,.ce_cookiebarOpener a.disabled{background-color:#ccc}#header{background-color:#fff;padding:2rem 0}#header .inside{display:flex;flex-direction:row;position:relative}#header .logo img{width:210px;height:auto}#header .hamburger{display:none}#header .mainnavi{margin-left:4rem;position:absolute;bottom:2.3rem}#header .mainnavi ul li{line-height:23px;display:flex}#header .mainnavi ul li:before{content:"";width:23px;height:23px;margin-right:0.3rem}#header .mainnavi ul li.gefuellte-pfefferkuchen:before{content:url(/files/theme-files/img/pfefferkuchen-gefuellt.svg)}#header .mainnavi ul li.ungefuellte-pfefferkuchen:before{content:url(/files/theme-files/img/pfefferkuchen-ungefuellt.svg)}#header .mainnavi ul li.dekorierte-pfefferkuchen:before{content:url(/files/theme-files/img/pfefferkuchen-dekoriert.svg)}#header .mainnavi ul li.spezialitaeten:before{content:url(/files/theme-files/img/spezialitaeten.svg)}#header .mainnavi ul li.gebaeck:before{content:url(/files/theme-files/img/gebaeck.svg)}#header .mainnavi ul li.punsch:before{content:url(/files/theme-files/img/punsch.svg)}#header .mainnavi ul li.geschenk-sets:before{content:url(/files/theme-files/img/geschenk.svg)}#header .globalnavi{position:absolute;top:0;right:4rem}#header .social{position:absolute;top:3px;right:0}#header .social a{float:left;margin-left:0.5rem}#header .social a img{height:26px}#basket{position:fixed;background-color:#D1CBBA;z-index:999;top:0;right:5rem;box-shadow:1px 1px 4px #000}#basket button{display:block;padding:0.6rem;width:47px;height:47px;border:none;background-color:transparent;cursor:pointer;outline:none;background-size:28px;background-repeat:no-repeat;background-position:center;background-image:url("/files/theme-files/img/warenkorb.svg")}#basket button>span{position:absolute;display:block;height:25px;width:25px;left:0;right:-20px;top:20px;margin:0 auto;background-color:#5a9e49;border-radius:50%;z-index:110}#basket button>span>span{position:absolute;transform:translate(-50%, -50%);left:50%;top:50%;color:#fff;text-shadow:0 2px 2px #000;font-size:0.8em;display:block}#functions{position:fixed;background-color:#D1CBBA;z-index:99;top:calc(4.7rem + 52px);right:calc(-274px);box-shadow:1px 1px 4px #000;transition:all 0.5s;width:320px;text-align:right}#functions .func-title{display:block;width:46px;text-align:center;text-transform:uppercase;font-weight:normal;padding:0.8rem;float:left;cursor:pointer;border-right:1px solid #D1CBBA;min-height:250px}#functions .func-title .func-icon{transition:all 0.5s;transform:rotate(180deg);margin-bottom:1rem}#functions .func-content{position:relative;width:270px;float:left;padding:1rem;font-size:1.1rem}#functions .func-content .globalnavi{position:inherit;right:auto;margin:0.5rem 0}#functions .func-content .globalnavi ul li{margin-right:0;float:none;line-height:2rem}#functions .func-content .globalnavi ul li a{font-weight:500}#functions .func-content a.kasse{font-weight:500;text-decoration:none}#functions .func-content a{display:inline-block}#functions.open{right:0}#functions.open .func-icon{transform:rotate(0deg)}#main{background-color:#fff}#main ol{margin:0 0 1rem 1.5rem}#main ul{list-style-type:disc;margin-left:1.5rem}#main p,#main ul{margin-bottom:1em}#main .headerbild{width:100%;height:auto}#main .jugendschutz{padding:1rem 1rem 0 1rem;margin-bottom:1rem;border:1px solid #D1CBBA}#main .mod_article:nth-of-type(even){background-color:#F5F2E8}#main .ce_sliderStart{position:relative}#main .ce_sliderStart .slider-control{position:absolute;top:auto;width:100%;bottom:1rem;height:53%}#main .ce_sliderStart .slider-control .slider-prev,#main .ce_sliderStart .slider-control .slider-next{position:absolute;left:5rem;font-size:0;display:block;width:40px;height:40px}#main .ce_sliderStart .slider-control .slider-prev::before,#main .ce_sliderStart .slider-control .slider-next::before{content:"";display:block;width:25px;height:25px;margin:0.4rem 0 0 1rem;border:0 solid #fff;border-width:4px 0 0 4px;transform:rotate(-45deg)}#main .ce_sliderStart .slider-control .slider-next{position:absolute;left:auto;right:5rem}#main .ce_sliderStart .slider-control .slider-next::before{margin:0.4rem 1rem 0 0;transform:rotate(135deg)}#main .ce_sliderStart .slider-control .slider-menu{position:absolute;top:80%}#main .ce_sliderStart .slider-control .slider-menu b{color:#D1CBBA;font-size:3rem;margin:0.3rem}#main .ce_sliderStart .slider-control .slider-menu b.active{color:#fff}#main .ce_gallery ul{list-style-type:none;margin:0 -0.5rem 2rem -0.5rem}#main .ce_gallery ul li{border:1px solid #D1CBBA;padding:0.5rem;margin:0.5rem}#main .ce_gallery .cols_3 li{width:calc(33.3% - 1rem)}#main .ce_gallery .cols_4 li{width:calc(25% - 1rem)}#main .ce_gallery .cols_5,#main .ce_gallery .cols_6{display:flex;margin:0 -0.5rem;width:calc(100% + 1rem)}#main .ce_gallery .cols_5 li,#main .ce_gallery .cols_6 li{padding:0.5rem;width:20%;text-align:center}#main .ce_gallery .cols_5 li img,#main .ce_gallery .cols_6 li img{width:100%;height:auto}#main .ce_gallery .cols_5 li figcaption,#main .ce_gallery .cols_6 li figcaption{text-transform:uppercase;margin:0.5rem 0}#main .ce_gallery .cols_6 li{width:16.6%}#main .usernavi ul{margin:2rem 0 0;padding:0}#main .usernavi ul li{margin-bottom:1rem;background-color:#F5F2E8;padding:0.5rem 0.8rem;width:100%}#main .usernavi ul li.active,#main .usernavi ul li.passed{background-color:#D1CBBA}#main .usernavi ul li.active a,#main .usernavi ul li.passed a{text-decoration:none;color:#000}.product_list>.product,.mod_iso_productreader .details{border:1px solid #000;margin-bottom:2em}.product_list>.product.row,.mod_iso_productreader .details.row{width:calc(100% - 2px);padding:0}.product_list>.product .formbody,.mod_iso_productreader .details .formbody{display:flex;justify-content:space-between}.product_list>.product a.imageLink,.mod_iso_productreader .details a.imageLink{background-color:#F5F2E8;position:relative;width:47%;padding-bottom:30%;height:0;overflow:hidden}.product_list>.product figure.image_container img,.mod_iso_productreader .details figure.image_container img{position:absolute;transform:translate(-50%, -50%);left:50%;top:50%}.product_list>.product figure.image_container figcaption,.mod_iso_productreader .details figure.image_container figcaption{visibility:hidden}.product_list>.product .stock-out,.mod_iso_productreader .details .stock-out{background-color:#000;color:#fff;padding:0 0.5rem}.product_list>.product .productInfo,.mod_iso_productreader .details .productInfo{position:relative;width:53%;padding:1rem 1.5rem 0.5rem}.product_list>.product .productInfo h2,.mod_iso_productreader .details .productInfo h2{margin-top:0.5rem}.product_list>.product .productInfo h2 a,.mod_iso_productreader .details .productInfo h2 a{text-decoration:none}.product_list>.product .productInfo .bottom,.mod_iso_productreader .details .productInfo .bottom{position:absolute;bottom:1.5rem;left:1.5rem;right:1.5rem}.product_list>.product .teaser,.mod_iso_productreader .details .teaser{margin-bottom:1em}.product_list>.product .actionBox,.mod_iso_productreader .details .actionBox{display:flex;justify-content:space-between}.product_list>.product .actionBox .submit_container,.mod_iso_productreader .details .actionBox .submit_container{display:block}.product_list>.product .actionBox .submit_container .options,.mod_iso_productreader .details .actionBox .submit_container .options{width:100%;margin-bottom:1rem}.product_list>.product .actionBox .submit_container .quantity_container,.mod_iso_productreader .details .actionBox .submit_container .quantity_container{float:left;position:relative}.product_list>.product .actionBox .submit_container .quantity_container label,.mod_iso_productreader .details .actionBox .submit_container .quantity_container label{position:absolute;transform:translateY(-50%);padding:0 0.5em;line-height:1em;top:0 !important;left:0.5em !important;font-size:0.6em;background-color:white !important}.product_list>.product .actionBox .submit_container .quantity_container input.text,.mod_iso_productreader .details .actionBox .submit_container .quantity_container input.text{width:2.4rem;height:100%;text-align:center;padding:0.5rem 0}.product_list>.product .actionBox .submit_container .quantity_container .quantity,.mod_iso_productreader .details .actionBox .submit_container .quantity_container .quantity{display:flex}.product_list>.product .actionBox .submit_container .quantity_container .quantity button,.mod_iso_productreader .details .actionBox .submit_container .quantity_container .quantity button{width:2rem;border:1px solid rgba(0, 0, 0, 0.33);border-radius:0;background-color:#fff;cursor:pointer}.product_list>.product .actionBox .submit_container .quantity_container .quantity button.value-decrement,.mod_iso_productreader .details .actionBox .submit_container .quantity_container .quantity button.value-decrement{border-width:1px 0 1px 1px}.product_list>.product .actionBox .submit_container .quantity_container .quantity button.value-increment,.mod_iso_productreader .details .actionBox .submit_container .quantity_container .quantity button.value-increment{border-width:1px 1px 1px 0}.product_list>.product .details,.mod_iso_productreader .details .details{display:flex;width:100%;justify-content:flex-start;align-items:flex-end;margin-bottom:2rem}.product_list>.product .priceInfo span,.mod_iso_productreader .details .priceInfo span{display:block;text-align:right}.product_list>.product .offer,.mod_iso_productreader .details .offer{font-size:2em;font-weight:500;line-height:1}.product_list.teaser .product .formbody{display:block}.product_list.teaser .product .formbody a.imageLink{display:block;width:100%;padding-bottom:58%}.product_list.teaser .product .formbody .productInfo{width:100%;min-height:380px}.product_list.teaser .product .formbody .productInfo h2{font-size:1.5rem}.product_list.teaser .product .formbody .productInfo .teaser{line-height:1.3}.mod_iso_productreader figure.image_container{background-color:#F5F2E8;position:relative;width:100%;height:0;padding-bottom:64%;overflow:hidden}.mod_iso_productreader figure.image_container img{position:absolute;transform:translate(-50%, -50%);left:50%;top:50%}.mod_iso_productreader figure.image_container figcaption{visibility:visible !important;position:absolute;bottom:0;z-index:800;background-color:#000;color:#fff;padding:0 0.5rem}.mod_iso_productreader .head,.mod_iso_productreader .base{display:flex;justify-content:space-between}.mod_iso_productreader .left{width:47%}.mod_iso_productreader .left figure.image_container{margin-bottom:1rem}.mod_iso_productreader .right{width:53%}.mod_iso_productreader .right .description{margin:0 1.5rem 1rem 1.5rem;padding-left:1em;border-left:1px solid #000}.mod_iso_productreader .right .description>*{margin-top:0}.mod_iso_productreader .head{margin-bottom:2em}.mod_iso_productreader .head .right{position:relative;padding:1em 1.5em 0 2em}.mod_iso_productreader .base .mod_iso_productreader .base .left{text-align:right}.mod_iso_productreader .actionBox{padding-top:1em}.mod_iso_productreader div.back{text-align:right;margin-bottom:2rem}.mod_iso_cart .image,.mod_iso_checkout .image,.mod_iso_orderdetails .image{width:15%}.mod_iso_cart .image figcaption,.mod_iso_checkout .image figcaption,.mod_iso_orderdetails .image figcaption{display:none}.mod_iso_cart .name,.mod_iso_checkout .name,.mod_iso_orderdetails .name{width:52%}.mod_iso_cart .name ul,.mod_iso_checkout .name ul,.mod_iso_orderdetails .name ul{margin-left:1.5rem}.mod_iso_cart .quantity,.mod_iso_checkout .quantity,.mod_iso_orderdetails .quantity{width:10%}.mod_iso_cart .price,.mod_iso_checkout .price,.mod_iso_orderdetails .price{width:10%;text-align:right}.mod_iso_cart .tax,.mod_iso_checkout .tax,.mod_iso_orderdetails .tax{display:none}.mod_iso_cart .action,.mod_iso_checkout .action,.mod_iso_orderdetails .action{width:3%}.mod_iso_cart .thead,.mod_iso_checkout .thead,.mod_iso_orderdetails .thead{display:flex;align-items:center;text-align:left;font-weight:300;color:#636363}.mod_iso_cart .thead .name,.mod_iso_checkout .thead .name,.mod_iso_orderdetails .thead .name{width:60%}.mod_iso_cart .product,.mod_iso_checkout .product,.mod_iso_orderdetails .product{display:flex;align-items:flex-start;width:100%;border-bottom:1px solid #D1CBBA}.mod_iso_cart .product div,.mod_iso_checkout .product div,.mod_iso_orderdetails .product div{padding:0.5rem 0}.mod_iso_cart .product div.focus input,.mod_iso_checkout .product div.focus input,.mod_iso_orderdetails .product div.focus input{border:1px solid #000}.mod_iso_cart .product input.text,.mod_iso_checkout .product input.text,.mod_iso_orderdetails .product input.text{width:calc(100% - 2rem)}.mod_iso_cart .product .image figure,.mod_iso_checkout .product .image figure,.mod_iso_orderdetails .product .image figure{margin-right:0.5rem}.mod_iso_cart .product .quantity,.mod_iso_checkout .product .quantity,.mod_iso_orderdetails .product .quantity{display:flex;margin-left:0.5rem}.mod_iso_cart .product .quantity button,.mod_iso_checkout .product .quantity button,.mod_iso_orderdetails .product .quantity button{width:25%;border:1px solid rgba(0, 0, 0, 0.33);border-radius:0;background-color:#fff}.mod_iso_cart .product .quantity button.value-decrement,.mod_iso_checkout .product .quantity button.value-decrement,.mod_iso_orderdetails .product .quantity button.value-decrement{border-width:1px 0 1px 1px}.mod_iso_cart .product .quantity button.value-increment,.mod_iso_checkout .product .quantity button.value-increment,.mod_iso_orderdetails .product .quantity button.value-increment{border-width:1px 1px 1px 0}.mod_iso_cart .product .quantity input,.mod_iso_checkout .product .quantity input,.mod_iso_orderdetails .product .quantity input{width:50%}.mod_iso_cart .product .actions a.remove,.mod_iso_checkout .product .actions a.remove,.mod_iso_orderdetails .product .actions a.remove{display:block;height:25px;width:25px;font-size:0;position:relative}.mod_iso_cart .product .actions a.remove:after,.mod_iso_cart .product .actions a.remove:before,.mod_iso_checkout .product .actions a.remove:after,.mod_iso_checkout .product .actions a.remove:before,.mod_iso_orderdetails .product .actions a.remove:after,.mod_iso_orderdetails .product .actions a.remove:before{content:"";width:15px;height:2px;background-color:#ff0000;position:absolute;right:0;top:40%}.mod_iso_cart .product .actions a.remove:before,.mod_iso_checkout .product .actions a.remove:before,.mod_iso_orderdetails .product .actions a.remove:before{transform:rotate(-45deg)}.mod_iso_cart .product .actions a.remove:after,.mod_iso_checkout .product .actions a.remove:after,.mod_iso_orderdetails .product .actions a.remove:after{transform:rotate(45deg)}.mod_iso_cart .foot>div,.mod_iso_checkout .foot>div,.mod_iso_orderdetails .foot>div{text-align:right;display:flex;justify-content:space-between}.mod_iso_cart .foot>div .name,.mod_iso_checkout .foot>div .name,.mod_iso_orderdetails .foot>div .name{width:70%}.mod_iso_cart .foot>div .price,.mod_iso_checkout .foot>div .price,.mod_iso_orderdetails .foot>div .price{width:14%;margin-right:3%}.mod_iso_cart .total>div,.mod_iso_checkout .total>div,.mod_iso_orderdetails .total>div{font-weight:bold}.mod_iso_cart .submit_container,.mod_iso_checkout .submit_container,.mod_iso_orderdetails .submit_container{margin-top:2rem}.mod_iso_cart .product .quantity{display:flex}.mod_iso_cart .product .quantity:before{content:"x";margin:0.3rem 0.5rem 0 0}.coupon input.text{width:80%}.mod_iso_checkout .steps{min-height:250px}.mod_iso_checkout .steps ol{margin:0 !important;padding:0}.mod_iso_checkout .steps ol li{margin-bottom:1rem;background-color:#F5F2E8;padding:0.5rem 0.8rem;position:relative}.mod_iso_checkout .steps ol li span{position:relative;z-index:89}.mod_iso_checkout .steps ol li:after{content:"";width:34px;height:34px;position:absolute;right:2rem;bottom:-19px;background-color:#F5F2E8;transform:rotate(45deg);z-index:85;border:0px solid #fff;border-width:0 2px 2px 0}.mod_iso_checkout .steps ol li.active,.mod_iso_checkout .steps ol li.passed{background-color:#D1CBBA}.mod_iso_checkout .steps ol li.active a,.mod_iso_checkout .steps ol li.passed a{text-decoration:none;color:#000}.mod_iso_checkout .steps ol li.active:after,.mod_iso_checkout .steps ol li.passed:after{background-color:#D1CBBA}.mod_iso_checkout .steps ol li.last{margin-bottom:1.5rem}.mod_iso_checkout h2:first-of-type{margin-top:0}.mod_iso_checkout .vcard .street-address br{display:contents}.mod_iso_checkout .submit_container{display:flex;justify-content:flex-end;margin-top:2rem}.mod_iso_checkout span.note{display:block;border:1px solid #000;padding:0 1.5rem;margin:1em 0}.mod_iso_checkout .paymentmethod span.note{display:none}.mod_iso_checkout #opt_paymentmethod_1:checked+#lbl_paymentmethod_1 span.note{display:block}.mod_iso_checkout .shippingaddress h2{margin-top:2rem}.mod_iso_checkout tr.total{font-weight:bold}#billingaddress_new div:nth-child(5),#billingaddress_new div:nth-child(7),#shippingaddress_new div:nth-child(5),#shippingaddress_new div:nth-child(7),.mod_iso_addressbook .formbody .fields div:nth-child(5),.mod_iso_addressbook .formbody .fields div:nth-child(7){width:50%;float:left}#billingaddress_new div:nth-child(6),#billingaddress_new div:nth-child(8),#shippingaddress_new div:nth-child(6),#shippingaddress_new div:nth-child(8),.mod_iso_addressbook .formbody .fields div:nth-child(6),.mod_iso_addressbook .formbody .fields div:nth-child(8){width:48%;margin-left:2%;float:left}#billingaddress_new div:nth-child(9),#shippingaddress_new div:nth-child(9),.mod_iso_addressbook .formbody .fields div:nth-child(9){clear:both}.info_container,.orderproducts,.orderconditions{border:1px solid #000;padding:1rem 1.5rem;margin:0 0 1rem}.info_container h3,.orderproducts h3,.orderconditions h3{margin-top:0}.info_container .edit,.orderproducts .edit,.orderconditions .edit{float:right}.info_container .abholung,.orderproducts .abholung,.orderconditions .abholung{display:none}.shipping.orderconditions{border:none;padding:0}.shipping.orderconditions>div{border:1px solid #000;padding:1rem 1.5rem}#footer{background-color:#D1CBBA;padding:2rem 0 4rem}#footer .footernavi li{float:none}#footer p,#footer li,#footer td,#footer th{color:#000;font-size:1.1rem}#footer figure+h3{margin-top:0.5rem}#overlay{position:fixed;top:100%;left:0;right:0;height:100%;transition:top 0.2s;overflow-y:scroll}#overlay.show{transition:top 0.2s;top:0}#overlay>.inside{position:absolute;width:100%;left:0;right:0;top:10%;background-color:#fff;box-shadow:0 0 25px rgba(0, 0, 0, 0.5)}#overlay>.inside>div{display:none;width:100%;max-width:1400px;margin:0 auto;padding:2em}#overlay>.inside>div.active{display:block}#overlay span.headline{font-size:1.5em;font-weight:400;margin-bottom:1em}#overlay .mod_iso_shipping_calculator{margin-top:1em;text-align:right}#outerWrapper.blur{filter:blur(10px)}#iso_ajaxBox{width:100%;transform:translateY(-50%);top:50%;left:inherit;border:none;padding:0;font-family:inherit;font-size:inherit;line-height:inherit;cursor:default !important}#iso_ajaxBox>.mod_iso_messages{width:100%;max-width:650px;padding:2em calc(200px + 2em) 2em 2em;margin:0 auto;position:relative}#iso_ajaxBox>.mod_iso_messages>ul{transform:translateY(-50%);position:absolute;top:50%;right:2em;text-align:right}#iso_ajaxBox>.mod_iso_messages>ul li{list-style:none;height:2.4rem}#iso_ajaxBox>.mod_iso_messages>ul li span,#iso_ajaxBox>.mod_iso_messages>ul li a{text-decoration:none;padding:0.3rem 1rem;background-color:#000;color:#fff;margin:0;cursor:pointer;transition:background-color 0.2s}#iso_ajaxBox>.mod_iso_messages>ul li span:hover,#iso_ajaxBox>.mod_iso_messages>ul li a:hover{background-color:#4d4d4d}#iso_ajaxBox>.mod_iso_messages>ul li:nth-child(even)>*{background-color:#444}#iso_ajaxBox>.mod_iso_messages>ul li:not(:last-child){margin-bottom:3px}body.fixed #header{position:fixed;top:-80px;left:0;right:0;height:60px;padding:0;box-shadow:0 -2px 20px rgba(0, 0, 0, 0.5);transition:top 0.2s;z-index:999}body.fixed #header>.inside{width:100%;max-width:1400px;margin:0 auto}body.fixed #header>.inside .logo{display:flex;flex-direction:column}body.fixed #header>.inside .logo img{width:50px;height:auto;margin-top:0.4rem}body.fixed #header>.inside .navi{display:flex;flex-direction:column}body.fixed #header>.inside .navi .globalnavi{display:none}body.fixed #header>.inside .navi .mainnavi{bottom:-1rem}body.fixed #header>.inside .social{margin-top:0.9rem}body.fixed.show #header{top:0}@media screen and (max-width:1500px){.row,#header .inside,#footer .inside{padding-right:1rem;padding-left:1rem;width:calc(100% - 3rem);margin-right:3rem}.row .row,#header .inside .row,#footer .inside .row{margin-right:0;margin-left:0;padding:0;width:100%}#main .mod_iso_productlist h2{font-size:2rem}#main .mod_iso_productlist .teaser h2{font-size:1.5rem}#main .teaser .productInfo{min-height:450px}#main .teaser .actionBox{display:block}#main .teaser .actionBox .offer{margin-top:1rem}}@media screen and (max-width:1320px){.mod_navigation ul li{margin:0 1rem 1rem 0}}@media screen and (max-width:1250px){h1{font-size:3rem}h2{font-size:2rem}h3{font-size:1.6rem}.product h2{margin-bottom:0.3rem}.product .details{margin-bottom:1rem !important}}@media screen and (max-width:1024px){h1{font-size:3rem}h2{font-size:1.8rem}h3{font-size:1.6rem}.mod_iso_productlist h2{font-size:1.4rem !important}.pt-0{padding-top:0rem}.pb-0{padding-bottom:0rem}.mt-0{margin-top:0rem}.mb-0{margin-bottom:0rem}.pt-1{padding-top:0.5rem}.pb-1{padding-bottom:0.5rem}.mt-1{margin-top:0.5rem}.mb-1{margin-bottom:0.5rem}.pt-2{padding-top:1rem}.pb-2{padding-bottom:1rem}.mt-2{margin-top:1rem}.mb-2{margin-bottom:1rem}.pt-3{padding-top:1.5rem}.pb-3{padding-bottom:1.5rem}.mt-3{margin-top:1.5rem}.mb-3{margin-bottom:1.5rem}.pt-4{padding-top:2rem}.pb-4{padding-bottom:2rem}.mt-4{margin-top:2rem}.mb-4{margin-bottom:2rem}.product_list>.product .productInfo{padding-top:0.5rem}.product_list>.product .productInfo h2{margin-bottom:0.5rem}.product_list>.product .productInfo .bottom{bottom:0.5rem}.product_list>.product .productInfo .bottom .priceInfo{font-size:16px;line-height:1.3}.fixed #header .mod_navigation{margin-left:2rem;bottom:-0.5rem !important}.fixed #header .mod_navigation ul li a{font-size:1rem}.fixed #header .social{right:1rem}}@media screen and (max-width:1024px){h1{font-size:3rem}h2{font-size:1.6rem}h3{font-size:1.4rem}}@media screen and (max-width:854px){h1{font-size:2em}h2{font-size:1.4em}h3{font-size:1.2em}h4{text-align:center}img{margin-right:auto;margin-left:auto}.row,#header .inside,#footer .inside{padding-right:1rem;padding-left:1rem;width:100%;margin-right:0;margin-left:0}#header{top:0 !important;padding:0}#header .mobile-header{position:relative;width:calc(100% + 2rem);z-index:998;display:flex;background-color:#fff;padding:0.5rem 0;margin:0 -1rem}#header .mobile-header .logo img{width:50px;margin-left:1rem}#header .mobile-header .hamburger{display:block;position:absolute;cursor:pointer;outline:none;margin:1rem;right:0}#header .mobile-container{overflow:scroll;height:90vh;background-color:#fff;width:100%;position:absolute;z-index:990;top:-900px;right:0;left:0;transition:top 0.5s;padding-top:3rem}#header .mobile-container .mainnavi{position:relative;bottom:auto;margin-left:1rem}#header .mobile-container .mainnavi li{width:100%;margin-bottom:2rem}#header .mobile-container .mainnavi li a,#header .mobile-container .mainnavi li strong{font-size:1.4rem !important}#header .mobile-container .globalnavi,#header .mobile-container .social{position:relative;right:auto;top:auto;min-height:2.5rem;margin-left:1rem}#header .mobile-container .globalnavi li,#header .mobile-container .social li{margin-right:1rem}#header .mobile-container .globalnavi a,#header .mobile-container .social a{margin-left:0}#header .mobile-container .social a{margin-right:1rem}#header .mobile-container #functions{position:relative;top:auto;right:auto;width:100%}#header .mobile-container #functions .func-title{width:100%;float:none;border:none;min-height:inherit}#header .mobile-container #functions .func-title .func-icon{display:none}#header .mobile-container #functions .func-content{width:100%;float:none}#header #basket{top:0 !important;right:5rem}body.navOpen #header .mobile-container{top:3rem}#main .ce_sliderStart .slider-control .slider-prev{left:1rem}#main .ce_sliderStart .slider-control .slider-next{right:1rem}#main .ce_sliderStart .slider-control .slider-menu{top:65%}#main .ce_gallery .cols_5,#main .ce_gallery .cols_6{display:block}#main .ce_gallery .cols_5 li,#main .ce_gallery .cols_6 li{float:left;width:calc(50% - 1rem);min-height:260px}#main .product .formbody{display:block}#main .product .formbody a.imageLink{display:block;width:100%;padding-bottom:55%}#main .product .formbody .productInfo{width:100%;min-height:325px}#main .product .formbody .productInfo h2{font-size:1.5rem}#main .product .formbody .productInfo .teaser{line-height:1.3}#main .review .product{flex-wrap:wrap}#main .review .product .image{display:none}#main .review .product .name{width:100%}#main .review .product .quantity{width:30%}#main .review .product .quantity input.text{width:100%}#main .review .product .price{width:30%}#main .review .product .actions{width:10%}#main .review .foot .name{width:60%;text-align:left}#main .details .head .right{padding:1rem 1rem 0 1rem}#main .details .head .right .actionBox{display:block}#main .details .head .right .actionBox .offer{margin-top:1rem}#iso_ajaxBox>.mod_iso_messages{padding:2em}#iso_ajaxBox>.mod_iso_messages>ul{position:relative;right:inherit;transform:translateY(0)}#iso_ajaxBox>.mod_iso_messages li:not(:last-child){margin-bottom:11px}}@media screen and (max-width:745px){#main .ce_sliderStart .slider-control .slider-prev{left:0.5rem}#main .ce_sliderStart .slider-control .slider-next{right:0.5rem}#main .product .formbody .productInfo{min-height:425px}#main .product .formbody .productInfo .actionBox{display:block}#main .product .formbody .productInfo .actionBox .offer{margin-top:1rem}#main .details .left,#main .details .right{width:100%}#main .details .head{flex-direction:column}#main .details .base{flex-direction:column-reverse}#main .details .base .description{margin:0 1rem;padding:0;border:none}.mod_iso_cart .thead,.mod_iso_checkout .thead{display:none}.mod_iso_cart .product,.mod_iso_checkout .product{flex-wrap:wrap}.mod_iso_cart .product .image,.mod_iso_checkout .product .image{display:none}.mod_iso_cart .product .name,.mod_iso_checkout .product .name{width:100%}.mod_iso_cart .product .quantity,.mod_iso_checkout .product .quantity{width:30%}.mod_iso_cart .product .quantity input.text,.mod_iso_checkout .product .quantity input.text{width:100%}.mod_iso_cart .product .price,.mod_iso_checkout .product .price{width:30%}.mod_iso_cart .product .actions,.mod_iso_checkout .product .actions{width:10%}.mod_iso_cart .foot .name,.mod_iso_checkout .foot .name{width:60%;text-align:left}}@media screen and (max-width:374px){.row{grid-gap:0}}@media screen and (min-width:855px){#header #basket{top:4.7rem;right:0}}
@supports not (display: grid){.row{display:table-cell !important}.col-xl-4{display:block !important;display:table-cell !important}}
