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

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}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
@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)}
}
#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}
table.sortable thead th{background-image:url(../../assets/tablesorter/images/default.svg);background-repeat:no-repeat;background-position:center right}table.sortable thead th.tablesorter-headerAsc{background-image:url(../../assets/tablesorter/images/asc.svg)}table.sortable thead th.tablesorter-headerDesc{background-image:url(../../assets/tablesorter/images/desc.svg)}
.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}
.cc-head>*:first-child{margin-top:0}.cc-head>*:last-child{margin-bottom:15px}.contao-cookiebar{--ccb-backdrop: rgba(0, 0, 0, .75);--ccb-anim-duration: .5s;--ccb-checked-clr: #399d32;--ccb-checked-bg: #dcf3db;--ccb-unchecked-clr: #9c9b99;--ccb-unchecked-bg: #fff;--ccb-disabled-clr: #c8c7c5;--ccb-disabled-bg: #f4f4f4;--ccb-focus-clr: #00a4f4;position:fixed;inset:0;z-index:9999;display:flex;align-items:var(--ccb-align, center);justify-content:var(--ccb-justify, center);letter-spacing:0;padding:15px;max-height:100dvh;box-sizing:border-box;pointer-events:none;overflow:hidden;color:var(--ccb-clr, #444)}.contao-cookiebar *{box-sizing:border-box}.contao-cookiebar p{color:var(--ccb-text, #868686);line-height:1.4}.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 45px;cursor:pointer}.contao-cookiebar input+label:before,.contao-cookiebar input+label:after{content:"";position:absolute;border-radius:10px}.contao-cookiebar input+label:before{top:7px;left:0;width:35px;height:18px;margin:0;box-sizing:content-box;background:var(--ccb-unchecked-bg);border:1px solid var(--ccb-unchecked-clr);transition:border-color .2s}.contao-cookiebar input+label:after{display:block;top:11px;left:4px;width:12px;height:12px;background:var(--ccb-unchecked-clr);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, var(--ccb-unchecked-clr) 0%, var(--ccb-unchecked-clr) 50%, var(--ccb-checked-clr) 50%, var(--ccb-checked-clr) 100%)}.contao-cookiebar input:checked+label:after{background:var(--ccb-checked-clr);margin-left:17px}.contao-cookiebar input:checked+label:active:after{margin-left:12px}.contao-cookiebar input:checked+label:before{background:var(--ccb-checked-bg);border-color:var(--ccb-checked-clr)}.contao-cookiebar input:disabled+label{pointer-events:none}.contao-cookiebar input:disabled+label:after{background:var(--ccb-disabled-clr)}.contao-cookiebar input:disabled+label:before{background:var(--ccb-disabled-bg);border-color:var(--ccb-disabled-clr)}.contao-cookiebar input:focus-visible:not(.cc-hide-focus)+label:before{outline:3px dashed var(--ccb-focus-clr);outline-offset:2px}.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 var(--ccb-btn-bdr, #cfcfcf);border-radius:4px;color:var(--ccb-btn-clr, #444);background:var(--ccb-btn-bg, #f5f5f5)}.contao-cookiebar .cc-btn:hover,.contao-cookiebar .cc-btn:focus{background:var(--ccb-btn-bg-hvr, #ececec)}.contao-cookiebar .cc-btn:last-child{margin-bottom:0}.contao-cookiebar .grayscale{--ccb-btn-bg: #f1efef;--ccb-btn-bg-hvr: #ececec}.contao-cookiebar .grayscale .success{--ccb-btn-bg: #fbfbfb;--ccb-btn-bg-hvr: #f7f7f7}.contao-cookiebar .highlight .success{--ccb-btn-bg: #4e9e3e;--ccb-btn-bg-hvr: #4c933f;--ccb-btn-bdr: #3e7830;--ccb-btn-clr: #fff}.cc-focus:not(.cc-hide-focus):focus-visible{outline:3px dashed var(--ccb-focus-clr);outline-offset:-3px}.cc-invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;float:left}.cc-inner{display:inline-block;overflow-y:auto;max-height:100%;max-width:100%;padding:23px;border-radius:3px;opacity:0;pointer-events:none;visibility:hidden;font-size:1rem;text-align:left;background:var(--ccb-bg, #fff);box-shadow:var(--ccb-box-shadow, rgba(99, 99, 99, 0.2)) 0 2px 8px 0;animation:var(--ccb-anim, cookiebar-middle-in) var(--ccb-anim-duration) ease-in-out forwards}.cc-group{position:relative;border:1px solid var(--ccb-bdr, #d0d0d0);border-radius:5px;margin-bottom:10px}.cc-cookie-info{font-size:.875rem;background:var(--ccb-info-bg, #fff);border:1px solid var(--ccb-info-bdr, #efefef);padding:10px;border-radius:5px}.cc-cookie-info>div>span{font-weight:600}.cc-cookie-info>div+div{margin-top:5px;word-wrap:break-word}.cc-cookie-info+button.cc-detail-btn-details{margin-top:15px}.cc-cookies{background:var(--ccb-cookies-bg, #fbfbfb);border-radius:0 0 5px 5px}.cc-cookies>p{font-size:.875rem}.cc-cookies>p,.cc-cookies>.cc-cookie{margin:0;padding:15px;border-top:1px solid var(--ccb-cookies-bdr, #fbfbfb)}.cc-cookie label.cookie+*{margin-top:10px}.cc-cookie p{margin:0 0 15px;font-size:.875rem}.cc-cookie-desc p{margin-bottom:0}.cc-footer,.cc-info{text-align:center}.cc-info{margin-top:15px}.cc-info>p{font-size:.875rem}.cc-info>a{display:inline-block;font-size:.813rem;color:var(--ccb-detail-clr, #a2a2a2);text-decoration:none}.cc-info>a:hover{color:var(--ccb-detail-clr-hvr, #717171)}.cc-info>a+a:before{display:inline-block;content:"·";margin-right:5px}.cc-active .cc-inner{opacity:1;pointer-events:auto;visibility:visible}.cc-active.cc-blocked{pointer-events:auto;animation:cookiebar-overlay-in var(--ccb-anim-duration) ease-in-out forwards}.cc-saved.cc-inner{opacity:0;pointer-events:none;visibility:hidden}.cc-saved.cc-blocked{pointer-events:none;animation:cookiebar-overlay-out var(--ccb-anim-duration) ease-in-out forwards}.cc-left{--ccb-justify: flex-start}.cc-right{--ccb-justify: flex-end}.cc-top{--ccb-align: flex-start}.cc-top.cc-active{--ccb-anim: cookiebar-top-in}.cc-top.cc-saved{--ccb-anim: cookiebar-top-out}.cc-middle.cc-active{--ccb-anim: cookiebar-middle-in}.cc-middle.cc-saved{--ccb-anim: cookiebar-middle-out}.cc-bottom{--ccb-align: flex-end}.cc-bottom.cc-active{--ccb-anim: cookiebar-bottom-in}.cc-bottom.cc-saved{--ccb-anim: cookiebar-bottom-out}@media(min-width: 768px){.contao-cookiebar .cc-btn{width:auto;margin-bottom:0}.cc-inner{max-width:var(--ccb-max-width, 750px)}}@media(forced-colors){.contao-cookiebar input+label:after{border:1px solid currentColor}.cc-inner{border:1px solid currentColor}input.cc-group-half+label:after{margin-left:9px}}@media(prefers-reduced-motion){.contao-cookiebar{--ccb-anim-duration: 2s}}@media print{.contao-cookiebar{opacity:0}}@keyframes cookiebar-overlay-in{0%{background:rgba(0,0,0,0)}to{background:var(--ccb-backdrop)}}@keyframes cookiebar-overlay-out{0%{background:var(--ccb-backdrop)}to{background:rgba(0,0,0,0);visibility:hidden}}@keyframes cookiebar-top-in{0%{opacity:0;transform:translateY(-100%)}to{opacity:1;transform:translateY(0)}}@keyframes cookiebar-top-out{0%{opacity:1;visibility:visible;transform:translateY(0)}to{opacity:0;visibility:hidden;transform:translateY(-100%)}}@keyframes cookiebar-middle-in{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}@keyframes cookiebar-middle-out{0%{opacity:1;visibility:visible;transform:scale(1)}to{opacity:0;visibility:hidden;transform:scale(0)}}@keyframes cookiebar-bottom-in{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}@keyframes cookiebar-bottom-out{0%{opacity:1;visibility:visible;transform:translateY(0)}to{opacity:0;visibility:hidden;transform:translateY(100%)}}.cc-group{display:flex;flex-wrap:wrap;justify-content:space-between;align-content:center}.cc-group>label{flex-grow:1;margin:5px 0 5px 10px}.cc-cookies{display:none;width:100%}.cc-detail-btn{padding:8px 10px;line-height:1.2rem}.cc-detail-btn-details{text-decoration:underline;padding:0;margin:0 0 10px}.cc-detail-btn,.cc-detail-btn-details{display:inline-block;color:var(--ccb-detail-clr, #a2a2a2);border:0 none;outline:0 none;background:rgba(0,0,0,0);font-size:13px;letter-spacing:0;text-transform:initial;cursor:pointer}.cc-detail-btn span:nth-child(2),.cc-detail-btn-details span:nth-child(2){display:none}.cc-detail-btn.cc-active span:nth-child(1),.cc-detail-btn-details.cc-active span:nth-child(1){display:none}.cc-detail-btn.cc-active span:nth-child(2),.cc-detail-btn-details.cc-active span:nth-child(2){display:inline}.cc-detail-btn:hover,.cc-detail-btn-details:hover{background:rgba(0,0,0,0);color:var(--ccb-detail-clr-hvr, #717171)}
/**
 * Global TinyMCE style sheet
 *
 * Use this style sheet to define CSS classes for the rich text editor. The
 * stlye sheet will be included in the editor and the page layout automatically.
 * Although the stlye sheet is shared by all themes, you can override its
 * formattings in any of your theme style sheets.
 *
 *   files/tinymce.css (this is how it looks like in TinyMCE)
 *   .warning { color:#c55; }
 *
 *   theme_a.css (this is how it looks like in theme A)
 *   .warning { font-weight:bold; }
 *
 *   theme_b.css (this is how it looks like in theme B)
 *   .warning { color:#000; }
 *
 * If you do not want to use a global TinyMCE style sheet at all, simply delete
 * this file (files/tinymce.css).
 */
.warning { color:#c55; font-size:1.1em; }
.confirmation { color:#090; font-size:1.1em; }
.information { color:#999; font-size:0.9em; }

/* Body //////////////////////////////////////////////////////////////////// */
body {
    margin:0;
    padding-top:0;
    padding-bottom:0;
    background-color:#ffffff;
    font:13px 'Roboto Slab',serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x:hidden;
}
#wrapper {
    width:100%;
    max-width:1200px;
    position:relative;
    overflow:hidden;
    display:block;
    margin:0 auto;
    padding:180px 0 0;
    z-index:1;
    overflow-x:hidden;
}
@media (max-width:992px) {
    #wrapper{
         padding-top:80px;
    }
}
#header,
#container,
#footer {
    float:none;
    clear:both;
}
#footer {
    color:rgba(26,26,26,.75);
    font-weight: 300;
}
#container {
    min-height:600px;
    padding-bottom:100px;
}
#header .inside:after,
#header .inside:before {
    position:relative;
    float:none;
    clear:both;
    display:table;
    content:" ";
}
#header {
    width:100%;
    left:0;
    top:0;
    position:fixed;
    background-color:#ffffff;
    z-index:9999;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
}
#header .inside {
    width:100%;
    max-width:1200px;
    margin-right:auto;
    margin-left:auto;
    padding-right:15px;
    padding-left:15px;
}
#header.fix .inside {
    padding-bottom:20px;
    overflow: visible;
}
@media (max-width:992px) {
    #header{
         height:75px;
    }
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    border:none;
}
.invisible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.vertical-align {
    width:100%;
    top:50%;
    position:absolute;
    -webkit-transform: translateY(-50%); 
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%); 
    transform: translateY(-50%); 
    left: 0px;
}

/* Figure //////////////////////////////////////////////////////////////////// */
figure {
    margin:0;
}
figure.float_left {
    position:relative;
    float:left;
    display:inline-block;
}
figure.float_right {
    position:relative;
    float:right;
    display:inline-block;
}
figure:focus,
img:focus {
    outline:none;
}
.center {
    text-align:center;
}
.responsive img {
    width:100% !important;
    height:auto !important;
}
img {
    max-width:100% !important;
    height:auto !important;
}
.padding {
    padding-right:15px !important;
    padding-left:15px !important;
}
p.back a,
p.more a {
    margin-left:15px;
    padding:10px;
    white-space:nowrap;
    background-color:#cc073c;
    border:1px solid;
    text-decoration:none;
    color:#ffffff;
    text-transform:uppercase;
    font-weight:400;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
p.back a:hover,
p.more a:hover {
    color:#cc073c;
    background:none;
}
.logo {
    position:relative;
    float:left;
    display:block;
    margin-top:0;
    margin-left:50%;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
}
#header.fix .logo {
    margin-left:0;
}
.logo figure {
    left:-50%;
    position:relative;
    float:left;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
}
#header.fix .logo figure {
    left:0;
}
@media (max-width:992px) {
    .logo{
       margin-left:0;
    }
    .logo figure {
       left:0;
    }
}

/* Typography //////////////////////////////////////////////////////////////////// */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight:normal;
    color:#cc073c;
    font-weight:400;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: inherit;
}
h1 {
    font-size:2em;
}
#h1_center{
	text-align:center;
}
h2 {
    font-size:1.5em;
}
h3 {
    font-size:1.17em;
}
h4 {
    font-size:1.12em;
}
h5 {
    font-size:.83em;
}
h6 {
    font-size:.75em;
}
p,
blockquote {
    font-size:15px;
    line-height:26px;
    color:rgba(26,26,26,.75);
    font-weight:300;
}
#footer p {
    font-size:13px;
    line-height:20px;
}
em {
    font-style:italic;
}
strong {
    font-weight:bold;
}
small {
    font-size:80%;
}
a {
    text-decoration:none;
    color:#cc073c;
}
a:hover {
    text-decoration:underline;
}

/* Font Awesome Icons //////////////////////////////////////////////////////////////////// */
.fa-2 {
    font-size:2em !important;
}
.fa-3 {
    font-size:4em !important;
}
.fa-4 {
    font-size:7em !important;
}
.fa-5 {
    font-size:12em !important;
}
.fa-6 {
    font-size:20em !important;
}

/* Syndications //////////////////////////////////////////////////////////////////// */
.pdf_link {
    width:100%;
    position:relative;
    float:none;
    clear:both;
    display:block;
    margin-top:70px;
    padding-right:15px;
    padding-left:15px;
    text-align:center;
    white-space:nowrap;
}
.pdf_link a {
    margin-left:5px;
    font-size:16px;
    color:rgba(204,7,60,.4);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
.pdf_link a:hover {
    text-decoration:none;
    color:rgba(204,7,60,1);
}
.pdf_link img {
    display:none;
}

/* Simple Columns Custom /////////////////////////////////////////////// */
.sc2 {
    width:50%;
}
.sc3 {
    width:33.3%;
}
.sc3-2 {
    width:66.6%;
}
.sc4 {
    width:25%;
}
.sc4-2 {
    width:50%;
}
.sc4-3 {
    width:75%;
}
.sc5 {
    width:20%;
}
.sc5-2 {
    width:40%;
}
.sc5-3 {
    width:60%;
}
.sc5-3 {
    width:80%;
}
.sc {
    box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    margin-left:0 !important;
    margin-right:0 !important;
    padding-left:0 !important;
    clear: none !important;
    padding-left: 15px !important;
    float: left;
}
.sc-first {
    padding-left:15px !important;
}
.sc2,
.sc3,
.sc3-2,
.sc4,
.sc4-2,
.sc4-3,
.sc5,
.sc5-2,
.sc5-3,
.sc5-4 {
    padding-right:15px !important;
    padding-left:15px !important;
}
@media (max-width:768px) {
    .sc2, .sc3, .sc3-2, .sc4, .sc4-2, .sc4-3, .sc5, .sc5-2, .sc5-3, .sc5-4 {
        width:100% !important;
    }
}

/* Mainmenu //////////////////////////////////////////////////////////////////// */
.mainmenu {
    position:relative;
    float:right;
    display:block;
    margin-top:35px;
    margin-right:50%;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
}
#header.fix .mainmenu {
    margin-right:-14px;
}
.mainmenu:after {
    position:relative;
    float:none;
    display:table;
    content:" ";
}
@media (max-width:992px) {
    .mainmenu{
          display:none;
    }
}
.mainmenu ul {
    position:relative;
    display:block;
    margin:0 auto;
    padding:0;
    text-align:center;
    list-style-type:none;
    -ms-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.mainmenu ul.level_1 {
    width:200%;
    position:relative;
    float:right;
    display:block;
    margin:0 -100% 0 0;
    padding:0;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
#header.fix .mainmenu ul.level_1 {
    width:100%;
    margin-right:0;
}
.mainmenu ul.level_1 li {
    position:relative;
    display:inline-block;
}
.mainmenu ul.level_1 li a,
.mainmenu ul.level_1 li span.active,
.mainmenu ul.level_1 li span.forward {
    position:relative;
    display:inline-block;
    padding-right:13px;
    padding-left:13px;
    white-space:nowrap;
    font-size:14px;
    text-decoration:none;
    color:#cc073c;
    font-weight:700;
    letter-spacing:3px;
    text-transform: uppercase;
}
.mainmenu ul.level_1 li a:hover,
.mainmenu ul.level_1 li span.active,
.mainmenu ul.level_1 li.submenu:hover > a,
.mainmenu ul.level_1 li.trail > a,
.mainmenu ul.level_1 li span.forward {
    color:rgba(204,7,60,.6);
}
.mainmenu ul.level_1 li > ul {
    position:absolute;
    padding:10px;
    background-color:#fff;
    -webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.25);
    box-shadow:0 0 2px 0 rgba(0,0,0,.25);
    z-index:999;
}
.mainmenu ul.level_1 li > ul {
    visibility: hidden;
    opacity: 0;
    -webkit-transition-property: opacity, visibility;
    -moz-transition-property: opacity, visibility;
    -o-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -webkit-transition-duration: .2s, 0s;
    -moz-transition-duration: .2s, 0s;
    -o-transition-duration: .2s, 0s;
    transition-duration: .2s, 0s;
    -webkit-transition-delay: 0s, .2s;
    -moz-transition-delay: 0s, .2s;
    -o-transition-delay: 0s, .2s;
    transition-delay: 0s, .2s;
}
.mainmenu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
}
.mainmenu ul.level_2 {
    min-width:150px;
    top:25px;
    width:auto;
}
.mainmenu ul.level_2 li {
    width:100%;
    position:relative;
    float:none;
    display:inline-block;
    margin:0;
    padding:0;
}
.mainmenu ul.level_2 li a,
.mainmenu ul.level_2 li span.active,
.mainmenu ul.level_2 li span.forward {
    position:relative;
    float:none;
    display:block;
    padding-top:6px;
    padding-bottom:6px;
    white-space:nowrap;
    font-size:12px;
    color:#cc073c;
    letter-spacing:2px;
    font-weight:400;
}
.mainmenu ul.level_2 li a:hover,
.mainmenu ul.level_2 li span.active,
.mainmenu ul.level_2 li a.trail,
.mainmenu ul.level_2 li.submenu:hover > a,
.mainmenu ul.level_2 li span.forward {
    color:rgba(204,7,60,.6);
}
.mainmenu ul.level_2 li > ul {
    min-width:150px;
    left:0;
    top:0;
    margin-left:100%;
    width:auto;
}

/* Mobile Menu //////////////////////////////////////////////////////////////////// */
.menu-opener,
.menu-opener:hover,
.menu-opener.active,
.menu-opener-inner,
.menu-opener-inner::before,
.menu-opener-inner::after,
.menu,
.menu.active,
.mobilenav {
    -webkit-transition: 250ms all;
    transition: 250ms all;
}
.mobilenav {
    overflow-x:hidden;
}
.menu-opener {
    width:25px;
    height:25px;
    right:19px;
    top:33px;
    position:fixed;
    float:right;
    margin:0;
    padding:0;
    z-index: 99999999;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.menu-opener-inner {
    width:25px;
    height:2px;
    top:11px;
    position:absolute;
    background-color:#cc073c;
}
.menu-opener-inner::before,
.menu-opener-inner::after {
    width:25px;
    height:2px;
    position:absolute;
    display:block;
    background-color:#cc073c;
    content: '';
}
.menu-opener-inner::before {
    top:-9px;
}
.menu-opener-inner::after {
    top:9px;
}
.menu-opener-inner.active {
    background: transparent;
}
.menu-opener-inner.active::before {
    background-color:#ffffff;
    -webkit-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
}
.menu-opener-inner.active::after {
    background-color:#ffffff;
    color:#ffffff;
    -webkit-transform: translateY(-9px) translateX(0rem) rotate(45deg);
    -ms-transform: translateY(-9px) translateX(0rem) rotate(45deg);
    transform: translateY(-9px) translateX(0rem) rotate(45deg);
}
.mobilenav {
    background: #231F20;
      height: 0rem;
      position: absolute;
      top: 0;
     right: 0;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      width: 0rem;
      z-index: 999999;
}
.mobilenav.active {
    width: -webkit-calc(100% - 0rem);
      width: calc(100% - 0rem);
      height: calc(100% - 0rem);
}
#mobilenavsection {
    width:100%;
    height:0%;
    left:0;
    top:0;
    position:absolute;
    display:none;
    z-index:99999;
    oveflow-x:hidden;
}
@media (max-width:992px) {
    #mobilenavsection{
       display:block;
    }
}
#mobilenavsection.active {
    height:100%;
}
#mobilenavsection .inside {
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}
.mobilenav ul {
    position:relative;
    display:block;
    margin:0 auto;
    padding:0;
    text-align:center;
    list-style-type:none;
    list-style-type:none;
    -ms-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.mobilenav ul.level_1 {
    margin:0;
    padding:40px 0;
    text-align:center;
    list-style-type:none;
}
.mobilenav li {
    position:relative;
    display:block;
}
.mobilenav ul.level_1 li a,
.mobilenav ul.level_1 li span.active,
.mobilenav ul.level_1 li span.forward {
    position:relative;
    display:block;
    margin:20px 0;
    padding:0;
    font-size:15px;
    text-decoration:none;
    color:#ffffff;
    text-transform:uppercase;
    font-weight:400;
    letter-spacing:3px;
}
.mobilenav ul.level_1 li a:hover,
.mobilenav ul.level_1 li span.active,
.mobilenav ul.level_1 li a.trail,
.mobilenav ul.level_1 li span.forward {
    color:rgba(255,255,255,.6);
}
.mobilenav ul.level_2 li a,
.mobilenav ul.level_2 li span.active,
.mobilenav ul.level_2 li span.forward {
    margin-top:10px;
    margin-bottom:10px;
    font-size:12px;
    color:rgba(255,255,255,.5);
}

/* Portfolio List Images //////////////////////////////////////////////////////////////////// */
.portfolio {
    float:left;
    line-height:0px;
    color:#cc073c;
    overflow:hidden !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    padding-bottom: 0px !important;
    margin-bottom:30px !important;
}
@media (max-width:768px) {
    .portfolio{
         padding-bottom:15px !important;
    }
}
.portfolio img {
    width:100% !important;
    height:auto !important;
}
.sliphover-container span.vertical-align {
    width:100%;
    left:0;
    top:50%;
    position:absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.sliphover-container h4 {
    width:100%;
    margin-bottom:3px;
    padding-right:20px;
    padding-left:20px;
    font-size:18px;
    color:#ffffff;
    text-transform:uppercase;
    font-weight: 700;
}
.sliphover-container a {
    width:100%;
    height:100%;
    bottom:0;
    left:0;
    right:0;
    top:0;
    position:absolute;
}
.portlink_mobile {
    width:100%;
    height:100%;
    bottom:0;
    left:0;
    right:0;
    top:0;
    position:absolute;
    display:none;
}
@media (max-width:992px) {
    .portlink_mobile{
       display:block;
    }
}
.sliphover-container span.subheadline {
    font-size:14px;
    color:#999;
    font-weight:300;
}
.izotope-container {
    width:100%;
}
.grid-sizer {
    width: 0;
}

/* Portfolio Filter //////////////////////////////////////////////////////////////////// */
.fillter-wrap {
    width:100%;
    position:relative;
    display:block;
    margin-top:60px;
    margin-bottom:60px;
    text-align:center;
}
.fillter-wrap .but {
    margin-right:20px;
    margin-left:20px;
    font-size:12px;
    color:#cc073c;
    text-transform:uppercase;
    background: none;
    letter-spacing: 2px;
    outline: none;
    border: none;
    box-shadow: none;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
@media (max-width:768px) {
    .fillter-wrap .but{
         width:100%;
         padding-bottom:10px;
         margin:0px;
    }
}
.fillter-wrap .but.activbut {
    font-weight: 700;
}

/* Team //////////////////////////////////////////////////////////////////// */
.layout_latest .team_container {
    width:0%;
    bottom:0;
    left:0;
    right:0;
    top:0;
    position:absolute;
    overflow:hidden;
    margin-right:0;
    margin-left:0;
    padding-top:30px;
    padding-right:0;
    padding-left:0;
    background-color:rgba(255,255,255,.8);
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
}
.layout_latest:hover .team_container {
    width:100%;
    padding-right:30px;
    padding-left:30px;
}
@media (max-width:992px) {
    .layout_latest .team_container{
    position:relative;
    width:100%;
    margin:0px !important;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    padding:0px !important;
    }
}
.team_container i {
    margin-right:20px;
    font-size:18px;
}

/* Content Slider Images //////////////////////////////////////////////////////////////////// */
.ce_sliderStart {
    position:relative;
    display:block;
    padding-right:15px;
    padding-left:15px;
}
.ce_sliderStart img {
    width:100%;
    height:auto;
}
.content-slider {
    background-color:rgba(0,0,0,.05);
}
.ce_sliderStart figure {
    font-size:0px;
}
.slider-control .slider-menu {
    display:none;
}
.slider-control {
    height:0px;
    top:50%;
    position:absolute;
    left:15px;
    right:15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.slider-prev {
    width:50px;
    height:50px;
    top:-25px;
    position:absolute;
    display:block;
    text-align:center;
    line-height:0px;
    color:#cc073c;
    display:block !important;
    left:20px !important;
    cursor:pointer;
    font-size:48px !important;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
.slider-next {
    width:50px;
    height:50px;
    top:-25px;
    position:absolute;
    float:right;
    display:block;
    text-align:center;
    line-height:0px;
    color:#cc073c;
    display:block !important;
    cursor:pointer;
    right:20px !important;
    font-size:48px !important;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
.slider-prev:hover,
.slider-next:hover {
    color:#ffffff;
}

/* News Reader //////////////////////////////////////////////////////////////////// */
.mod_newsreader .layout_full .info {
    position:relative;
    float:right;
    margin-top:-1px;
    margin-right:15px;
    margin-left:15px;
    font-size:12px;
}

/* Comments //////////////////////////////////////////////////////////////////// */
.ce_comments {
    padding:50px 20px 50px 15px;
}
.reply {
    margin-left:50px;
}
.comment {
    padding:10px 10px 10px 20px;
    background-color:rgba(204,7,60,.03);
    border-left:4px solid #cc073c;
}
.ce_comments p.info {
    font-size:12px;
}
.com_by {
    color:#cc073c;
}
.ce_comments i {
    margin-right:10px;
    margin-left:20px;
}
.ce_comments .form {
    margin-top:40px;
}
.ce_comments .submit {
    margin-top:20px;
}

/* Accordion //////////////////////////////////////////////////////////////////// */
.ce_accordion {
    margin-bottom:10px;
}
.ce_accordion .toggler {
    width:100%;
    position:relative;
    display:block;
    padding:14px 40px 14px 11px;
    border:1px solid #cc073c;
    font-size:15px;
    color:#cc073c;
    background:none;
    cursor:pointer;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.ce_accordion .toggler:hover,
.ce_accordion .ui-accordion-header-active {
    background-color:rgba(204,7,60,1);
    color:#ffffff;
}
.ce_accordion .toggler:focus {
    outline:none;
}
.ce_accordion .ui-accordion-header:after {
    right:15px;
    top:16px;
    position:absolute;
    font:16px "Font Awesome 6 Free";
    color:#cc073c;
    content: "\f0ab";
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.ce_accordion .ui-accordion-header:hover:after {
    color:#ffffff;
}
.ce_accordion .ui-accordion-header-active:after {
    right:15px;
    top:16px;
    position:absolute;
    font:16px "Font Awesome 6 Free";
    color:#ffffff;
    content: "\f0aa";
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.ce_accordion .accordion {
    padding:10px 11px;
}
.ce_accordion .accordion:after {
    position:relative;
    float:none;
    clear:both;
    display:block;
    padding:1px 11px 0;
    content:"";
}

/* Form //////////////////////////////////////////////////////////////////// */
form label {
    position:relative;
    float:none;
    display:block;
    margin-bottom:5px;
    font-size:15px;
    font-weight:normal;
    color:rgba(26,26,26,.75);
    font-weight: 300;
}
form {
    position:relative;
}
form fieldset label {
    display:inline;
}
form .text,
form .textarea,
form .captcha {
    width:100%;
    margin-bottom:10px;
    padding:14px;
    border:1px solid rgba(204,7,60,.4);
    font:13px 'Roboto Slab',serif;
    color:#cc073c;
    background-color:transparent !important;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
form .captcha_text {
    margin-bottom:10px;
    margin-left:0;
    font-size:14px;
    color:rgba(26,26,26,.75);
    font-weight: 300;
}
form .upload {
    margin-bottom:10px;
    margin-left:0;
    font-size:14px;
    color:rgba(26,26,26,.75);
    font-weight: 300;
}
form .text:focus,
form .textarea:focus,
form .captcha:focus,
#Slidersection form .text:focus {
    border:1px solid rgba(204,7,60,1);
    outline:none;
}
form #ctrl_country_91 {
    width:100%;
    margin-bottom:10px;
    padding:14px;
    border:1px solid rgba(204,7,60,.4);
    border-radius:0;
    font:13px 'Roboto Slab',serif;
    color:#cc073c;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;   
    box-sizing: border-box;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
form fieldset {
    margin-bottom:10px;
    padding:0;
    border:0px;
}
form fieldset legend {
    margin-bottom:10px;
}
form fieldset span label {
    margin-right:15px;
    margin-left:-3px;
}
form span.mandatory {
    margin-left:3px;
    font-weight:bold;
    color:#cc073c;
}
form p.error {
    margin-top:0;
    margin-bottom:5px;
    font-size:13px;
    color:#f00;
}
form br {
    display:none;
}
form .submit {
    position:relative;
    display:block;
    margin-top:20px;
    padding:10px;
    white-space:nowrap;
    background-color:#cc073c;
    border:1px solid #cc073c;
    font:15px 'Roboto Slab',serif;
    text-decoration:none;
    color:#ffffff;
    text-transform:uppercase;
    cursor:pointer;
    font-weight:400;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
a.submit {
    position:relative;
    margin-top:20px;
    padding:10px;
    white-space:nowrap;
    background-color:#cc073c;
    border:1px solid #cc073c;
    font:15px 'Roboto Slab',serif;
    text-decoration:none;
    color:#ffffff;
    text-transform:uppercase;
    cursor:pointer;
    font-weight:400;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
form .submit:hover,
a.submit:hover {
    text-decoration:none;
    color:#cc073c;
    background:none;
}
form .submit:focus {
    outline:none;
}
.mod_subscribe .checkbox_container span,
.mod_subscribe .checkbox_container span label,
.mod_subscribe .checkbox_container span input {
    position:relative;
    float:left;
    display:inline;
}
.mod_unsubscribe .checkbox_container span,
.mod_unsubscribe .checkbox_container span label,
.mod_unsubscribe .checkbox_container span input {
    position:relative;
    float:left;
    display:inline;
}
.mod_subscribe .checkbox_container,
.mod_unsubscribe .checkbox_container {
    position:relative;
    display:block;
    padding-bottom:20px;
}
.mod_subscribe .checkbox_container span label,
.mod_unsubscribe .checkbox_container span label {
    margin-right:10px;
}
input.submit,
a.submit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Table //////////////////////////////////////////////////////////////////// */
.ce_table table {
    width:100%;
    table-layout: fixed;
    border-spacing:0px;
    border-collapse: collapse;
}
.ce_table table th,
.ce_table table td {
    padding:8px 10px;
    text-align:left;
    border:1px solid #ccc;
}
.ce_table table thead th {
    cursor:pointer;
}

/* Blockquotes //////////////////////////////////////////////////////////////////// */
blockquote p {
    position:relative;
    display:block;
    padding-right:60px;
    padding-left:100px;
    font-style:italic;
}
blockquote {
    position:relative;
    display:block;
    margin:0;
    padding:0;
}
blockquote:before {
    left:25px;
    position:absolute;
    display:block;
    font:50px "Font Awesome 6 Free";
    content: "\f10e";
}

/* Warning //////////////////////////////////////////////////////////////////// */
span.warning,
p.warning {
    position:relative;
    display:block;
    padding:20px;
    text-align:center;
    background-color:#c00;
    text-decoration:none;
    color:#ffffff;
    font-weight:400;
}
span.warning:before,
p.warning:before {
    width:100%;
    height:30px;
    position:relative;
    float:none;
    clear:both;
    display:block;
    padding-bottom:10px;
    text-align:center;
    font:30px "Font Awesome 6 Free";
    font-weight:normal;
    color:#ffffff;
    content:"\f071";
}

/* Confirmation //////////////////////////////////////////////////////////////////// */
span.confirmation,
p.confirmation {
    position:relative;
    display:block;
    padding:20px;
    text-align:center;
    background-color:#25b035;
    text-decoration:none;
    color:#ffffff;
    font-weight:400;
}
span.confirmation:before,
p.confirmation:before {
    width:100%;
    height:30px;
    position:relative;
    float:none;
    clear:both;
    display:block;
    padding-bottom:10px;
    text-align:center;
    font:30px "Font Awesome 6 Free";
    font-weight:normal;
    color:#ffffff;
    content: "\f024";
}

/* information //////////////////////////////////////////////////////////////////// */
span.information,
p.information {
    position:relative;
    display:block;
    padding:20px;
    text-align:center;
    background-color:#00a6ff;
    font-size:1.1em;
    text-decoration:none;
    color:#ffffff;
    font-weight:400;
}
span.information:before,
p.information:before {
    width:100%;
    height:30px;
    position:relative;
    float:none;
    clear:both;
    display:block;
    padding-bottom:10px;
    text-align:center;
    font:30px "Font Awesome 6 Free";
    font-weight:normal;
    color:#ffffff;
    content: "\f0a1";
}

/* Event List //////////////////////////////////////////////////////////////////// */
.mod_eventlist .event {
    position:relative;
    display:block;
    font-size:15px;
    font-weight:normal;
    color:rgba(26,26,26,.75);
    font-weight: 300;
}
.mod_eventlist .empty {
    position:relative;
    display:block;
    font-size:15px;
    font-weight:normal;
    color:rgba(26,26,26,.75);
    font-weight: 300;
}
.mod_eventlist h1 {
    margin-top:50px;
    margin-bottom:50px;
    padding-right:15px;
    padding-left:15px;
    text-align:center;
    width:100% !important;
}
.mod_eventlist .event img {
    font-size:15px;
    font-weight:normal;
    color:#cc073c;
    width:100% !important;
    height:auto !important;
}
.mod_eventlist .event figure {
    margin-bottom:26px;
}
.mod_eventlist  p.time {
    font-size:12px;
}
.mod_eventlist .layout_teaser h2 a {
    text-decoration:none;
    color:#cc073c;
    text-transform:uppercase;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mod_eventlist .layout_teaser h2 a:hover {
    color:rgba(204,7,60,.6);
}
.mod_eventlist p.more a {
    margin-left:0;
}
.mod_eventlist p.more {
    margin-top:30px;
}

/* Event Reader //////////////////////////////////////////////////////////////////// */
.mod_eventreader .layout_full {
    position:relative;
    display:block;
}
.mod_eventreader .layout_full p.info {
    position:relative;
    display:block;
    padding-right:15px;
    padding-left:15px;
    text-align:center;
    font-weight:normal;
    color:#cc073c;
    text-transform:uppercase;
    font-weight:700;
}
.mod_eventreader .layout_full p.info span.location {
    font-weight:400;
}

/* Pagination  //////////////////////////////////////////////////////////////////// */
.pagination {
    position:relative;
    float:none;
    clear:both;
    display:block;
    padding:15px 15px 40px;
}
.pagination ul {
    position:relative;
    float:left;
    display:block;
    margin:0;
    padding:0;
    list-style-type:none;
}
.pagination p {
    position:relative;
    float:right;
    display:block;
    margin-top:-10px;
    margin-right:10px;
}
@media (max-width:768px) {
    .pagination p{
    float:none;
    clear:both;
    }
}
.pagination ul li {
    height:42px;
    position:relative;
    float:left;
    display:block;
    margin-bottom:10px;
}
.pagination ul li a,
.pagination ul li span {
    height:42px;
    margin-right:10px;
    padding:10px 16px;
    background-color:rgba(204,7,60,1);
    border:1px solid #cc073c;
    font-size:15px;
    text-decoration:none;
    color:#ffffff;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.pagination ul li a:hover,
.pagination ul li span,
.pagination ul li strong
{
    height:42px;
    margin-right:10px;
    padding:10px 16px;
    font-size:15px;
    text-decoration:none;
    font-weight: 300;
    color:#cc073c;
    border:1px solid #cc073c;
    background:none;
}

/* Calendar Small //////////////////////////////////////////////////////////////////// */
.calendar_inner {
    border-bottom:20px solid rgba(204,7,60,.03);
}
.mod_calendar table {
    width:100%;
    display:table;
    background-color:rgba(204,7,60,.03);
    table-layout: fixed !important;
    border-spacing:0px;
    border-collapse: collapse;
}
.minicalendar_head {
    width:100%;
    background-color:#cc073c;
}
.minicalendar_head tr th.previous,
.minicalendar_head tr th.current,
.minicalendar_head tr th.next {
    height:170px;
    margin-right:auto;
    margin-left:auto;
    vertical-align:middle;
    text-align:center;
    font-size:20px;
    font-weight:normal;
    color:#ffffff;
}
.minicalendar_head tr th.previous,
.minicalendar_head tr th.next {
    padding-right:20px;
    padding-left:20px;
}
.minicalendar_head tr th a {
    font-size:30px;
    text-decoration:none;
    color:#ffffff;
}
.minicalendar_head tr th a:hover {
    color:#ffffff;
}
.minicalendar_head tr {
    width:100%;
}
.minicalendar_body {
    width:100%;
    table-layout:fixed;
}
.minicalendar_body th.label {
    margin-right:auto;
    margin-left:auto;
    padding-top:10px;
    padding-bottom:10px;
    vertical-align:middle;
    text-align:center;
    font-size:13px;
    font-weight:bold;
    color:#cc073c;
    text-transform:uppercase;
}
.minicalendar_body tr td {
    overflow:hidden;
    margin-right:auto;
    margin-left:auto;
    padding-top:4px;
    padding-bottom:4px;
    vertical-align:middle;
    text-align:center;
    color:rgba(204,7,60,.5);
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.minicalendar_body tr td:hover,
.minicalendar_body tr td.selected {
    background-color:#cc073c;
    color:#ffffff;
}
.minicalendar_body tr td a {
    width:100%;
    height:100%;
    text-decoration:none;
    color:#cc073c;
}
.minicalendar_body tr td:hover a,
.minicalendar_body tr td.selected a {
    color:#ffffff;
}

/* News List Latest  //////////////////////////////////////////////////////////////////// */
.mod_newslist .layout_latest {
    position:relative;
    display:block;
    margin-bottom:60px;
}
.mod_newslist .layout_latest img {
    width:100% !important;
    height:auto !important;
}
.mod_newslist .layout_latest figure {
    margin-bottom:26px;
}
.mod_newslist .layout_latest h2 a {
    text-decoration:none;
    color:#cc073c;
    text-transform:uppercase;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mod_newslist .layout_latest h2 a:hover {
    color:rgba(204,7,60,.6);
}
.mod_newslist .layout_latest p.more a {
    margin-left:0;
}
.mod_newslist .layout_latest p.more {
    margin-top:30px;
}
.mod_newslist .layout_latest  p.info {
    font-size:12px;
}

/* Downloads //////////////////////////////////////////////////////////////////// */
.ce_downloads,
.ce_download {
}
.ce_downloads ul {
    margin:0;
    padding:0;
    list-style-type:none;
}
.ce_downloads ul li,
.ce_download a {
    position:relative;
    display:block;
    margin-bottom:10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;   
    box-sizing: border-box;
}
.ce_downloads ul li a,
.ce_download a {
    width:100%;
    position:relative;
    display:block;
    padding:14px 40px;
    border:1px solid #cc073c;
    font-size:15px;
    text-decoration:none;
    color:#cc073c;
    background:none;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.ce_downloads ul li a:hover,
.ce_downloads ul li a:active,
.ce_download a:hover,
.ce_download a:active {
    background-color:rgba(204,7,60,1);
    color:#ffffff;
}
.ce_downloads ul li a span,
.ce_download a span {
    position:relative;
    float:right;
    display:block;
    padding-top:2px;
    font-size:13px;
    text-decoration:none;
    color:#cc073c;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}
.ce_downloads ul li a:hover span,
.ce_downloads ul li a:active span,
.ce_download a:hover span,
.ce_download a:active span {
    color:#ffffff;
}
.ce_downloads ul li a:before,
.ce_download a:before {
    right:12px;
    top:17px;
    position:absolute;
    display:block;
    font:17px "Font Awesome 6 Free";
    text-decoration:none;
    color:#ffffff;
    content: "\f019";
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}
.ce_downloads ul li a:hover:before,
.ce_downloads ul li a:active:before,
.ce_download a:hover:before,
.ce_download a:active:before {
    color:#cc073c;
}
.ce_downloads ul li a:after,
.ce_download a:after {
    position:relative;
    float:none;
    clear:both;
    display:block;
    content:"";
}
.ce_downloads ul li img,
.ce_download img {
    left:12px;
    top:16px;
    position:absolute;
    z-index:9;
}

/* FAQ List //////////////////////////////////////////////////////////////////// */
.mod_faqlist {
}
.mod_faqlist ul {
    margin:0;
    padding:0;
    list-style-type:none;
}
.mod_faqlist ul li {
    position:relative;
    display:block;
    margin-bottom:10px;
}
.mod_faqlist ul li a {
    width:100%;
    position:relative;
    display:inline-block;
    padding:14px 15px 14px 40px;
    border:1px solid #cc073c;
    font-size:15px;
    text-decoration:none;
    color:#cc073c;
    background:none;
    font-weight:400;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mod_faqlist ul li a:hover,
.mod_faqlist ul li a:active {
    background-color:rgba(204,7,60,1);
    color:#ffffff;
}
.mod_faqlist ul li a:before {
    left:15px;
    top:15px;
    position:absolute;
    display:block;
    font:19px "Font Awesome 6 Free";
    color:#cc073c;
    font-weight:normal;
    content: "\f128";
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mod_faqlist ul li a:active:before,
.mod_faqlist ul li a:hover:before {
    color:#ffffff;
}
.mod_faqreader h1,
.mod_faqreader .ce_text,
.mod_faqreader p.info {
    padding-right:15px;
    padding-left:15px;
}
.mod_faqreader .ce_text:after {
    position:relative;
    float:none;
    clear:both;
    display:block;
    content:"";
}
.mod_faqreader p.back {
    position:relative;
    float:left;
    display:block;
}
.mod_faqreader .ce_comments {
    position:relative;
    float:none;
    clear:both;
    display:block;
    margin-top:50px;
}
.mod_faqreader p.info {
    position:relative;
    float:right;
    margin-top:15px;
    font-size:12px;
}
@media (max-width:768px) {
    .mod_faqreader p.info, .mod_faqreader p.back{
    float:none;
    }
}

/* Googlemap //////////////////////////////////////////////////////////////////// */
.dlh_googlemap {
    width:100% !important;
}
.ce_dlh_googlemaps {
    position:relative;
    display:block;
    margin-top:30px;
}

/* Headline Image //////////////////////////////////////////////////////////////////// */
.image_container_padding {
    width:100%;
    height:200px;
    position:relative;
    display:block;
    margin-bottom:60px;
    padding-right:15px;
    padding-left:15px;
    overflow:hidden !important;
}
.headline_image {
    width:100%;
    height:200px;
    position:relative;
    display:block;
    background-position:center top;
    background-repeat:no-repeat;
    z-index:99;
}
.image_container_padding h1 {
    width:100%;
    left:0;
    top:50%;
    position:absolute;
    margin:-20px 0 0;
    padding:0;
    text-align:center;
    font-size:36px;
    line-height:36px;
    color:#62021d;
    text-transform:uppercase;
    letter-spacing:5px;
    font-weight:700;
    z-index:999;
}
.image_container_padding h1:after {
    width:60px;
    height:2px;
    bottom:0;
    left:50%;
    position:absolute;
    margin-bottom:-15px;
    margin-left:-30px;
    text-align:center;
    background-color:#62021d;
    content:"";
}

/* Subscribe //////////////////////////////////////////////////////////////////// */
.mod_unsubscribe .submit,
.mod_subscribe .submit {
    margin-top:20px;
}
.mod_unsubscribe p.error,
.mod_subscribe p.error {
    color:#c00;
}
.mod_unsubscribe p.confirm,
.mod_subscribe p.confirm {
    color:#00a6ff;
}

/* Search //////////////////////////////////////////////////////////////////// */
.mod_search .even,
.mod_search .odd {
    position:relative;
    overflow:hidden;
    display:block;
    margin-bottom:20px;
    background-color:rgba(204,7,60,.05);
}
.mod_search .even a,
.mod_search .odd a {
    width:100%;
    position:relative;
    display:block;
    padding:11px 115px 11px 11px;
    background-color:rgba(204,7,60,.7);
    font-size:16px;
    text-decoration:none;
    color:#ffffff;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mod_search .even h3,
.mod_search .odd h3 {
    margin-top:0;
}
.mod_search .even a:hover,
.mod_search .odd a:hover {
    background-color:rgba(204,7,60,.99);
}
.mod_search .even h3 span,
.mod_search .odd h3 span {
    right:0;
    top:13px;
    position:absolute;
    padding-right:11px;
    font-size:12px;
    color:#ffffff;
}
.mod_search .even .context,
.mod_search .odd .context {
    padding:10px 20px 0;
}
.mod_search .even .url,
.mod_search .odd .url {
    padding:0 20px 10px;
    font-size:12px;
}
.mod_search .text {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.mod_search .pagination {
    padding-right:0;
    padding-left:0;
}
.mod_search .submit {
    margin-top:10px;
    margin-bottom:15px;
}

/* Shop //////////////////////////////////////////////////////////////////// */
.mod_iso_productlist {
    font-size:14px;
    color:rgba(26,26,26,.75);
    padding:0px !important;
    font-weight: 300;
}
.product_list .product .formbody {
    padding-bottom:40px;
    text-align:center;
}
.product_list .product .formbody h3 {
    margin-bottom:5px;
    text-transform:uppercase;
    font-weight:700;
}
.product_list .product .formbody .sku,
.product_list .product .formbody .teaser,
.product_list .product .formbody .submit_container {
    display:none;
}
.shop_imagebox {
    position:relative;
    display:block;
}
.shop_overlay {
    width:100%;
    height:100%;
    left:0;
    top:0;
    position:absolute;
    background-color:rgba(255,255,255,.9);
    opacity: 10; 
    transform: scale(0); 
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0); 
    -webkit-transition: all 350ms cubic-bezier(0.77, 0.155, 0.445, 1.32);
    -moz-transition: all 350ms cubic-bezier(0.77, 0.155, 0.445, 1.32);
    -o-transition: all 350ms cubic-bezier(0.77, 0.155, 0.445, 1.32);
    transition: all 350ms cubic-bezier(0.77, 0.155, 0.445, 1.32); 
    z-index: 50;
}
.shop_imagebox:hover .shop_overlay {
    opacity: 1; 
    transform: scale(1); 
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
}
.details a {
    padding:10px;
    white-space:nowrap;
    border:1px solid #cc073c;
    font-size:14px;
    text-decoration:none;
    color:#cc073c;
    text-transform:uppercase;
    background:none;
    font-weight:400;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
.details a:hover {
    background-color:rgba(204,7,60,1);
    color:#ffffff;
}

/* Shop Filter //////////////////////////////////////////////////////////////////// */
.mod_iso_productfilter form label {
    font-size:14px;
    text-transform:uppercase;
    font-weight:400;
}
.mod_iso_productfilter form .text {
    max-height:40px;
    padding:10px 35px 10px 10px;
    border-color:rgba(204,7,60,.4);
    color:rgba(204,7,60,.7);
}
.mod_iso_productfilter select,
.mod_iso_productreader select {
    width:100%;
    max-height:40px;
    margin-bottom:20px;
    padding:10px;
    background:#ffffff url("../../files/theme_files_q/img/arrow_down.png") right center no-repeat;
    border:1px solid rgba(204,7,60,.4);
    border-radius:0;
    font:13px 'Roboto Slab',serif;;
    color:rgba(204,7,60,.7);
    cursor:pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.mod_iso_productfilter select::-ms-expand,
.mod_iso_productreader select::-ms-expand {
    display:none;
}
.mod_iso_productfilter .lt-ie10 select,
.mod_iso_productreader .lt-ie10 select {
    background-image: none;
}
.mod_iso_productfilter option {
    cursor:pointer;
}
.mod_iso_productfilter .search .submit {
    width:20px;
    height:20px;
    right:10px;
    top:11px;
    position:absolute;
    display:block;
    border:0px;
    font-size:0px;
    background:transparent;
}
.mod_iso_productfilter .search:before {
    bottom:21px;
    right:10px;
    position:absolute;
    font-family:'Font Awesome 6 Free';
    font: var(--fa-font-solid);
    content: '\f002';
    font-size:18px;
    color:rgba(204,7,60,.4);
}
.mod_iso_productfilter .search,
.mod_iso_productfilter {
    position:relative;
    display:block;
}
.mod_iso_productfilter .clear_filters {
    position:relative;
    display:block;
    padding-top:10px;
}

/* Shop Reader //////////////////////////////////////////////////////////////////// */
.mod_iso_productreader {
    padding-right:15px;
    padding-left:15px;
    font-weight:400;
}
.mod_iso_productreader .product {
    position:relative;
    display:block;
    margin-bottom:30px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(204,7,60,.15);
}
.mod_iso_productreader h2 {
    margin-top:30px;
    margin-bottom:30px;
    font-size:18px;
    line-height:22px;
    text-transform:uppercase;
    font-weight:700;
}
.mod_iso_productreader .sku {
    overflow:hidden;
    display:none;
}
.mod_iso_productreader .border_box {
    position:relative;
    overflow:hidden;
    display:block;
    margin-top:20px;
    margin-bottom:20px;
    padding-top:20px;
    padding-bottom:20px;
    border-top:1px solid rgba(204,7,60,.15);
    border-bottom:1px solid rgba(204,7,60,.15);
}
.mod_iso_productreader .border_box .options {
    width:50%;
    position:relative;
    float:left;
    display:block;
}
.mod_iso_productreader .border_box .options label {
    position:relative;
    float:left;
    display:block;
    padding-top:10px;
    font-size:15px;
    line-height:22px;
    color:rgba(26,26,26,.75);
    font-weight: 300;
}
.mod_iso_productreader form fieldset legend {
    position:relative;
    float:left;
    display:block;
    padding-top:10px;
    font-size:15px;
    line-height:22px;
    color:rgba(26,26,26,.75);
    font-weight: 300;
}
.mod_iso_productreader .border_box .options select {
    position:relative;
    float:left;
    display:block;
    margin-bottom:0;
}
.mod_iso_productreader form fieldset span {
    position:relative;
    float:left;
    display:block;
    margin-bottom:0;
}
.mod_iso_productreader .border_box .price {
    width:50%;
    position:relative;
    float:left;
    display:block;
    padding-top:10px;
    text-align:right;
    font-size:15px;
    text-transform:uppercase;
    font-weight:700;
}
.mod_iso_productreader .submit_container {
    position:relative;
    display:block;
    margin-top:40px;
    text-align:right;
}
.mod_iso_productreader .submit_container .submit {
    position:relative;
    display:inline-block;
    margin-left:5px;
}
.mod_iso_productreader .submit_container .quantity_container {
    width:200px;
    position:relative;
    display:inline-block;
    text-align:right;
}
.mod_iso_productreader .submit_container .quantity_container .text {
    width:42px;
    height:42px;
    max-width:42px;
    max-height:42px;
    position:relative;
    display:inline-block;
    padding-top:11px;
    padding-bottom:10px;
    text-align:center;
    font-size:15px;
}
.mod_iso_productreader .submit_container .quantity_container label {
    position:relative;
    display:inline-block;
    margin-right:6px;
    text-align:right;
}
.mod_iso_productreader p.back a {
    margin-left:0;
}
.als-container {
    position:relative;
    overflow:hidden;
    display:block;
    margin:0 -15px;
}
.als-viewport {
    max-width:100%;
    position:relative;
    overflow:hidden;
    display:block;
    margin:0;
    width: 100% !important;
}
.als-wrapper {
    width:100%;
    max-width:100%;
    position:relative;
    display:block;
    margin:0;
    padding:0;
    list-style-type:none;
    white-space: nowrap !important;
    letter-spacing: 0;
}
.als-wrapper,
.als-viewport {
    height:auto !important;
}
.als-item {
    width:30%;
    min-height:100px;
    position:relative;
    display:inline-block;
    margin:0 1.666%;
    padding:0 0 30%;
    text-align:center;
    height: auto !important;
}
@media (max-width:768px) {
    .als-item{
    margin:0  3%;
    width:94%;
    padding-bottom:94%;
    height: auto !important;
    }
}
.als-item a {
    width:100%;
    height:100%;
    bottom:0;
    left:0;
    right:0;
    top:0;
    position:absolute;
    display:block;
    margin:0;
    text-align:center;
}
#lista1 .als-item img {
    max-width:100%;
    max-height:100%;
    top:50%;
    position:absolute;
    display:block;
    margin:0 auto;
    width:auto !important;
    height:auto !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.als-prev {
    width:40px;
    height:40px;
    top:50%;
    position:absolute;
    display:block;
    margin-top:-25px;
    text-align:center;
    font-size:48px;
    color:#cc073c;
    left:20px;
    line-height:37px !important;
    font-size:48px !important;
    cursor:pointer;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
.als-next {
    width:40px;
    height:40px;
    top:50%;
    position:absolute;
    display:block;
    margin-top:-25px;
    text-align:center;
    font-size:48px;
    color:#cc073c;
    right:20px;
    line-height:37px !important;
    font-size:48px !important;
    cursor:pointer;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
}
.als-next:hover,
.als-prev:hover {
    color:#ffcccc;
}
.slider_clear {
    position:relative;
    float:none;
    clear:both;
    display:block;
}

/* Container Menu //////////////////////////////////////////////////////////////////// */
#container .mod_navigation ul {
    position:relative;
    display:block;
    margin:0;
    padding:0;
    line-height:23px;
    list-style-type:none;
}
#container .mod_navigation ul li {
    position:relative;
    display:block;
}
#container .mod_navigation ul li a,
#container .mod_navigation ul li span {
    padding-left:20px;
    text-decoration:none;
}
#container .mod_navigation ul li a:before,
#container .mod_navigation ul li span:before {
    left:0;
    top:0;
    position:absolute;
    font-family:'Font Awesome 6 Free';
    content: '\f005';
}
#container .mod_navigation ul li a:hover:before,
#container .mod_navigation ul li.trail  a:before,
#container .mod_navigation ul li.active span:before {
    text-decoration:none;
    font-weight: 900;
}
#container .mod_iso_productfilter .mod_navigation h2 {
    margin-top:0;
}

/* Registration  //////////////////////////////////////////////////////////////////// */
.mod_registration .submit_container {
    position:relative;
    display:block;
    margin-top:20px;
}

/* Lost Password  //////////////////////////////////////////////////////////////////// */
.mod_lostPassword .submit_container {
    position:relative;
    display:block;
    margin-top:20px;
}

/* Login  //////////////////////////////////////////////////////////////////// */
.mod_login .submit_container {
    position:relative;
    display:block;
    margin-top:10px;
}

/* Personal Data  //////////////////////////////////////////////////////////////////// */
.mod_personalData .submit_container {
    position:relative;
    display:block;
    margin-top:20;
}

/* Adress Book  //////////////////////////////////////////////////////////////////// */
.mod_iso_addressbook .even,
.mod_iso_addressbook .odd {
    position:relative;
    display:block;
    padding-top:20px;
    padding-bottom:20px;
    border-top:1px solid rgba(204,7,60,.1);
}
.mod_iso_addressbook {
    margin-bottom:50px;
}
.mod_iso_addressbook .even .vcard,
.mod_iso_addressbook .odd .vcard {
    margin-top:10px;
}
.mod_iso_addressbook .default_billing .buttons:before {
    position:relative;
    float:right;
    display:block;
    margin-left:4px;
    color:#00a6ff;
    content:"Billing address"
}
.mod_iso_addressbook .default_shipping .buttons:after {
    position:relative;
    float:right;
    display:block;
    margin-left:4px;
    color:#25b035;
    content:"Shipping address";
}
.mod_iso_addressbook .edit:before {
    display:inline-block;
    margin-right:4px;
    font-family:"Font Awesome 6 Free";
    font: var(--fa-font-solid);
    text-decoration:none;
    color:#e2e600;
    content:"\f040";
}
.mod_iso_addressbook a.edit:hover:before {
    text-decoration:none;
    text-decoration:none !important;
}
.mod_iso_addressbook .delete:before {
    display:inline-block;
    margin-right:3px;
    margin-left:4px;
    font-family:"Font Awesome 6 Free";
    text-decoration:none;
    color:#e60000;
    content:"\f00d";
}

/* Cart //////////////////////////////////////////////////////////////////// */
.mod_iso_cart {
    position:relative;
    display:block;
    padding-right:15px;
    padding-left:15px;
}
.mod_iso_cart .formbody,
.mod_iso_checkout .formbody,
.mod_iso_orderdetails .formbody {
    margin-bottom:30px;
}
.mod_iso_cart table,
.mod_iso_checkout table,
.mod_iso_orderdetails table {
    width:100%;
    position:relative;
    font-size:15px;
    color:rgba(26,26,26,.75);
    border-spacing:0px;
    border-collapse: collapse;
    font-weight: 300;
}
.mod_iso_cart tbody tr,
.mod_iso_checkout tbody tr,
.mod_iso_orderdetails tbody tr {
    width:100%;
    position:relative;
    margin-bottom:20px;
    border-bottom:1px solid rgba(204,7,60,.2);
    border-spacing:0px;
}
.mod_iso_cart td.tax,
.mod_iso_checkout td.tax,
.mod_iso_orderdetails td.tax {
    font-size:0px;
}
.mod_iso_cart td.actions,
.mod_iso_checkout td.actions,
.mod_iso_orderdetails td.actions {
    width:100px;
    text-align:center;
}
.mod_iso_cart td.total,
.mod_iso_checkout td.total,
.mod_iso_orderdetails td.total {
    width:100px;
    text-align:center;
}
.mod_iso_cart td.price,
.mod_iso_checkout td.price,
.mod_iso_orderdetails td.price {
    width:100px;
    text-align:right;
}
.mod_iso_cart td.quantity,
.mod_iso_checkout td.quantity,
.mod_iso_orderdetails td.quantity {
    width:70px;
}
.mod_iso_cart td.quantity input,
.mod_iso_checkout td.quantity input,
.mod_iso_orderdetails td.quantity input {
    margin-bottom:0;
    text-align:center;
}
.mod_iso_cart td.image,
.mod_iso_checkout td.image,
.mod_iso_orderdetails td.image {
    width:170px;
}
.mod_iso_cart td.image figure,
.mod_iso_checkout td.image figure,
.mod_iso_orderdetails td.image figure {
    min-width:150px;
    min-height:150px;
    position:relative;
    display:block;
    margin-top:20px;
    margin-right:20px;
    margin-bottom:20px;
    text-align:center;
    line-height:0px;
}
.mod_iso_cart td.image img,
.mod_iso_checkout td.image img,
.mod_iso_orderdetails td.image img {
    max-width:150px;
    max-height:150px;
    top:75px;
    position:relative;
    display:block;
    margin-right:auto;
    margin-left:auto;
    width:auto;
    height:auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mod_iso_cart td.name a,
.mod_iso_checkout td.name a,
.mod_iso_orderdetails td.name a {
    font-size:15px;
}
.mod_iso_cart td.name ul,
.mod_iso_checkout td.name ul,
.mod_iso_orderdetails td.name ul {
    margin:0 auto;
    padding:0;
    list-style-type:none;
}
.mod_iso_checkout tfoot td.remove,
.mod_iso_cart tfoot td.remove,
.mod_iso_cart tfoot td.tax,
.mod_iso_checkout tfoot td.tax,
.mod_iso_orderdetails tfoot td.remove {
    font-size:0px;
}
.mod_iso_checkout tfoot td.remove:before,
.mod_iso_cart  tfoot td.remove:before,
.mod_iso_orderdetails tfoot td.remove:before {
    display:none;
}
.mod_iso_cart tfoot tr.foot_first td,
.mod_iso_checkout tfoot tr.foot_first td,
.mod_iso_orderdetails tfoot tr.foot_first td {
    padding-top:30px;
}
.mod_iso_cart tfoot td.total,
.mod_iso_checkout tfoot td.total,
.mod_iso_orderdetails tfoot td.total {
    width:100px;
}
.mod_iso_cart tfoot td.total,
.mod_iso_checkout tfoot td.total,
.mod_iso_orderdetails tfoot td.total {
    text-align:right;
}
.mod_iso_cart .submit_container {
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid rgba(204,7,60,.4);
}
.mod_iso_cart .submit_container:after {
    position:relative;
    float:none;
    clear:both;
    display:block;
    content:"";
}
.mod_iso_cart .continue {
    position:relative;
    float:left;
    display:block;
}
.mod_iso_cart .button_update {
    position:relative;
    float:right;
    display:block;
}
.mod_iso_cart .button_checkout {
    position:relative;
    float:right;
    display:block;
    margin-right:20px;
}
@media (max-width:768px) {
    .mod_iso_cart td,
    .mod_iso_checkout  td , 
    .mod_iso_orderdetails td {
    display:block !important;
    position:relative !important;
    float:none !important;
    width:100% !important;
    text-align:center !important;
    padding:10px 0px 10px 0px !important;
    }
    .mod_iso_cart td.quantity,
    .mod_iso_checkout td.quantity,
    .mod_iso_orderdetails td.quantity {
    width:100% !important;
    }
    .mod_iso_cart td.quantity input,
    .mod_iso_checkout td.quantity input, 
    .mod_iso_orderdetails td.quantity input {
    width:50px !important;
    }
    .mod_iso_cart tr,
    .mod_iso_checkout tr,
    .mod_iso_orderdetails tr {
    border:none !important;
    }
    .mod_iso_cart td figure,
    .mod_iso_checkout td figure, 
    .mod_iso_orderdetails td figure {
    margin-right:0px !important;
    }
    .mod_iso_cart tr.row_last td.col_last,
    .mod_iso_checkout tr.row_last td.col_last, 
    .mod_iso_orderdetails tr.row_last td.col_last {
    padding-bottom:30px !important;
    }
    .mod_iso_cart tfoot td.price,
    .mod_iso_cart tfoot td.col_first,
    .mod_iso_checkout tfoot td.price, 
    .mod_iso_orderdetails tfoot td.price {
    display:none !important;
    }
    .mod_iso_cart tfoot td.total,
    .mod_iso_checkout tfoot td.total, 
    .mod_iso_orderdetails tfoot td.total {
    display:block !important;
    font-weight:bold !important;
    }
    .mod_iso_cart tfoot tr td,
    .mod_iso_cart tfoot tr.foot_first td,
    .mod_iso_checkout tfoot tr td, 
    .mod_iso_orderdetails tfoot tr td,
    .mod_iso_checkout tfoot tr.foot_first td, 
    .mod_iso_orderdetails tfoot tr.foot_first td  {
    padding-top:2px !important;
    padding-bottom:2px !important;
    }
    .mod_iso_cart tfoot tr td.name,
    .mod_iso_checkout tfoot tr td.name, 
    .mod_iso_orderdetails tfoot tr td.name {
    padding-top:30px !important;
    }
    .mod_iso_cart tfoot,
    .mod_iso_checkout tfoot, 
    .mod_iso_orderdetails tfoot {
    border-top: 1px solid rgba(26,26,26,.1) !important;
    }
    .mod_iso_cart .submit_container input,
    .mod_iso_checkout .submit_container input,
    .mod_iso_orderdetails .submit_container input{
    float:none !important;
    clear:both !important;
    margin:0 auto 20px auto !important;
    }
    .mod_iso_checkout .billing_address a.edit, 
    .mod_iso_checkout .shipping_address a.edit, 
    .mod_iso_checkout .shipping_method a.edit, 
    .mod_iso_checkout .payment_method a.edit {
    float:none !important;
    }
}

/* Checkout //////////////////////////////////////////////////////////////////// */
.mod_iso_checkout {
    position:relative;
    display:block;
    padding-right:15px;
    padding-left:15px;
}
.mod_iso_checkout .steps:after {
    position:relative;
    float:none;
    clear:both;
    display:block;
    margin-bottom:30px;
    content:"";
}
.mod_iso_checkout .steps ol {
    margin:0;
    padding:0;
    list-style-type:none;
}
.mod_iso_checkout .steps ol li {
    width:25%;
    height:11px;
    position:relative;
    float:left;
    display:block;
    text-align:center;
    border-bottom:1px solid rgba(204,7,60,.4);
    color:rgba(204,7,60,.3);
}
.mod_iso_checkout .steps ol.steps3 li {
    width:33.333%;
}
.mod_iso_checkout .steps ol li.active,
.mod_iso_checkout .steps ol li.passed {
    border-bottom:1px solid rgba(204,7,60,.99);
    color:rgba(204,7,60,.99);
}
.mod_iso_checkout .steps ol li:after {
    width:17px;
    height:17px;
    right:0;
    top:1px;
    position:absolute;
    background-color:#ffffff;
    font-family:"Font Awesome 6 Free";
    font-size: 17px;
    font-weight: 900;
    content: "\f105";
}
.mod_iso_checkout .steps ol li span,
.mod_iso_checkout .steps ol li a {
    padding-right:10px;
    padding-left:10px;
    text-align:center;
    background-color:#ffffff;
}
@media (max-width:768px) {
    .mod_iso_checkout .steps ol li{
    width:100%;
    clear:both;
    float:none;
    margin-bottom:30px;
    }
}
.mod_iso_checkout .submit_container {
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid rgba(204,7,60,.4);
}
.mod_iso_checkout .submit_container .next,
.mod_iso_checkout .submit_container .confirm {
    float:right;
}
.mod_iso_checkout .submit_container .previous {
    float:left;
}
.mod_iso_checkout .submit_container:after {
    position:relative;
    float:none;
    clear:both;
    display:block;
    content:"";
}
.mod_iso_checkout .billing_address,
.mod_iso_checkout .shipping_address,
.mod_iso_checkout .shipping_method,
.mod_iso_checkout .payment_method,
.mod_iso_orderdetails .billing_address,
.mod_iso_orderdetails .shipping_address,
.mod_iso_orderdetails .shipping_method,
.mod_iso_orderdetails .payment_method {
    position:relative;
    display:block;
    margin-bottom:30px;
    padding-top:20px;
    border-top:1px solid rgba(204,7,60,.3);
}
.mod_iso_checkout .payment_method {
    padding-bottom:30px;
    border-bottom:1px solid rgba(204,7,60,.3);
}
.mod_iso_checkout .billing_address a.edit,
.mod_iso_checkout .shipping_address a.edit,
.mod_iso_checkout .shipping_method a.edit,
.mod_iso_checkout .payment_method a.edit {
    position:relative;
    float:right;
    display:block;
}
.mod_iso_checkout .billing_address a.edit:before,
.mod_iso_checkout .shipping_address a.edit:before,
.mod_iso_checkout .shipping_method a.edit:before,
.mod_iso_checkout .payment_method a.edit:before {
    display:inline-block;
    margin-right:3px;
    font-family:"Font Awesome 6 Free";
    font: var(--fa-font-solid);
    color:#cc073c;
    content: "\f040 ";
}
.mod_iso_checkout #ctrl_BillingAddress span,
.mod_iso_checkout #ctrl_ShippingAddress span {
    position:relative;
    display:block;
    margin-bottom:10px;
}
.mod_iso_checkout #ctrl_BillingAddress  .vcard span,
.mod_iso_checkout #ctrl_ShippingAddress  .vcard span {
    position:relative;
    display:inline;
    margin-bottom:0;
}
.mod_iso_checkout .widget-radio .radio {
    margin-right:10px;
}
#loginguest {
    margin-bottom:15px;
    padding-top:15px;
    border-bottom:1px dashed rgba(98,2,29,.7);
}

/* Orderhistory //////////////////////////////////////////////////////////////////// */
.mod_iso_orderhistory table {
    position:relative;
    margin-bottom:60px;
}
.mod_iso_orderhistory table {
    width:100%;
    position:relative;
    table-layout:fixed;
    border-collapse: collapse;
    border-spacing: 0px;
}
.mod_iso_orderhistory table thead tr th {
    text-align:left;
    border-bottom:1px solid rgba(204,7,60,.2);
}
.mod_iso_orderhistory table tr th,
.mod_iso_orderhistory table tr td {
    padding-top:10px;
    padding-bottom:10px;
}
.mod_iso_orderhistory table tr td.col_last {
    text-align:right;
}
.mod_iso_orderhistory table tr td.col_last:before {
    display:inline-block;
    margin-right:4px;
    font-family:"Font Awesome 6 Free";
    color:#00a6ff;
    content:"\f06e";
}

/* Orderdetails  //////////////////////////////////////////////////////////////////// */
.mod_iso_orderdetails {
    position:relative;
    display:block;
}
.mod_iso_orderdetails .downloads {
    margin-top:30px;
    border-top:1px solid rgba(204,7,60,.4);
}
.mod_iso_orderdetails .downloads .unavailable {
    color:#f00;
}
.mod_iso_orderdetails .downloads .available a {
    color:#00a6ff;
}

/* padding für Contao 4
=============================================================================*/
.abst-r-15 {padding-right: 15px;}
.abst-l-15 {padding-left: 15px;}


/* Abstände für contao4
============================================================================= */

.Abstand-o-5  {margin-top:5px;}
.Abstand-o-10 {margin-top:10px;}
.Abstand-o-15 {margin-top:15px;}
.Abstand-o-20 {margin-top:20px;}
.Abstand-o-25 {margin-top:25px;}
.Abstand-o-30 {margin-top:30px;}
.Abstand-o-35 {margin-top:35px;}
.Abstand-o-40 {margin-top:40px;}
.Abstand-o-45 {margin-top:45px;}
.Abstand-o-50 {margin-top:50px;}
.Abstand-o-55 {margin-top:55px;}
.Abstand-o-60 {margin-top:60px;}
.Abstand-o-65 {margin-top:65px;}
.Abstand-o-70 {margin-top:70px;}
.Abstand-o-75 {margin-top:75px;}
.Abstand-o-80 {margin-top:80px;}
.Abstand-o-85 {margin-top:85px;}
.Abstand-o-90 {margin-top:90px;}
.Abstand-o-95 {margin-top:95px;}
.Abstand-o-100 {margin-top:100px;}
.Abstand-o-110 {margin-top:110px;}
.Abstand-o-120 {margin-top:120px;}
.Abstand-o-130 {margin-top:130px;}
.Abstand-o-140 {margin-top:140px;}
.Abstand-o-150 {margin-top:150px;}
.Abstand-o-160 {margin-top:160px;}
.Abstand-o-170 {margin-top:170px;}
.Abstand-o-180 {margin-top:180px;}
.Abstand-o-190 {margin-top:190px;}
.Abstand-o-200 {margin-top:200px;}


.Abstand-u-5  {margin-bottom:5px;}
.Abstand-u-10 {margin-bottom:10px;}
.Abstand-u-15 {margin-bottom:15px;}
.Abstand-u-20 {margin-bottom:20px;}
.Abstand-u-25 {margin-bottom:25px;}
.Abstand-u-30 {margin-bottom:30px;}
.Abstand-u-35 {margin-bottom:35px;}
.Abstand-u-40 {margin-bottom:40px;}
.Abstand-u-45 {margin-bottom:45px;}
.Abstand-u-50 {margin-bottom:50px;}
.Abstand-u-55 {margin-bottom:55px;}
.Abstand-u-60 {margin-bottom:60px;}
.Abstand-u-65 {margin-bottom:65px;}
.Abstand-u-70 {margin-bottom:70px;}
.Abstand-u-75 {margin-bottom:75px;}
.Abstand-u-80 {margin-bottom:80px;}
.Abstand-u-85 {margin-bottom:85px;}
.Abstand-u-90 {margin-bottom:90px;}
.Abstand-u-95 {margin-bottom:95px;}
.Abstand-u-100 {margin-bottom:100px;}
.Abstand-u-110 {margin-bottom:110px;}
.Abstand-u-120 {margin-bottom:120px;}
.Abstand-u-130 {margin-bottom:130px;}
.Abstand-u-140 {margin-bottom:140px;}
.Abstand-u-150 {margin-bottom:150px;}
.Abstand-u-160 {margin-bottom:160px;}
.Abstand-u-170 {margin-bottom:170px;}
.Abstand-u-180 {margin-bottom:180px;}
.Abstand-u-190 {margin-bottom:190px;}
.Abstand-u-200 {margin-bottom:200px;}

/* Icons Footer etc.
============================================================================= */
.footersocials a { padding: 0 7px; margin: 0 2px; 
	-moz-transition: all .5s; 
	-webkit-transition: all .5s; 
	transition: all .5s; 
}
.footersocials a:hover  { background: none!important; }


p.footerIcons a:after {
	-moz-opacity: .5;
	-webkit-opacity: .5;
	opacity: .5;
	
	-moz-transition: all .5s; 
	-webkit-transition: all .5s; 
	transition: all .5s; 
}

p.footerIcons a { font-size: 18px; }
p.footerIcons  em { display: none; }
.footer-fb:after { content:"\f09a"; }
.footer-tw:after { content:"\f099"; }
.footer-gp:after { content:"\f0d5 "; }
.footer-pi:after { content:"\f0d2 "; }
.footer-yt:after { content:"\f16a "; }
.footer-ig:after { content:"\f16d "; }

p.footerIcons a:hover:after { 
	-moz-opacity: 1;
	-webkit-opacity: 1;
	opacity: 1;
}

.scrolltop a:after {color: #1B1C1E; content:"\f106"; display: block; text-indent:0; background: #e7e7e7; padding: 3px 14px; font-size: 25px;}
.scrolltop a:hover:after  { color:white; }

footer { margin-top: 50px; }

a, span, em, .footerIcons a
{ 
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.eventhome  { margin-bottom: 20px; }

.footerIcons a:hover,
em.fa:hover {
	text-decoration:none;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

/* Darstellungsproblem Mainmenu Logo
============================================================================= */
.block {
	overflow: visible;
}
