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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header,footer,nav,section,aside,main,article,figure,figcaption{display:block}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}body{font:12px/1 "Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco,monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}
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%}
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
news/* emmaus-main.css gehört zur Internetpräsenz emmaus-nuernberg.de
Neugestaltung der Seite der Emmausgemeinde (www.emmaus-nuernberg.de) online seit 02-2021/*


/* ===================================================================================================
1. Einbindung der Webfonts aus Gründen des Datenschutzes
=====================================================================================================*/

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
       url('/files/theme/fonts/roboto/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/files/theme/fonts/roboto/roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local('Roboto Italic'), local('Roboto-Italic'),
       url('/files/theme/fonts/roboto/roboto-v20-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/files/theme/fonts/roboto/roboto-v20-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'),
       url('/files/theme/fonts/roboto/roboto-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('/files/theme/fonts/roboto/roboto-v20-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* ====================================================================================================================
2. allgemeine Layouteinstellungen
=======================================================================================================================*/

html {
  overflow-y: scroll;
  height: 100%;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  /* border-top: 4px solid #5b2282;*/
  font-family: Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  color: #292c37;
  background-color: #EDEAF1;
   /* background-color: #989594;*/
  /*background-image:linear-gradient(hsl(360,0%,86%) 0%, #F2DC99 50%, hsl(360,0%,86%) 100%); */
  /* background-image: url("/files/theme/img/bkground-img-green16.png");*/
  /* background-image: repeating-linear-gradient(45deg, #96cf40 0%, #5b2282 30%, #96cf40 60%,#5b2282 80%, #96cf40 100%) */
}


/* Anpassen Boxmodel */
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

*:before,
*:after{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Headlines */
h1, h2, h3, h4 {
  font-weight: 700;
}

h1 {
  /*font-size: 2.375em;*/
  font-size: 1.5em;
  line-height: 1.26315789em;
  margin-top: 0.63157895em;
  margin-bottom: 1.2631579em;
  color: #5b2282;
}

h2 {
  font-size: 1.75em;
  line-height: 1.71428571em;
  margin-top: 0.85714286em;
  margin-bottom: 0.85714286em;
}
h3 {
  font-size: 1.3125em;
  line-height: 1.14285714em;
  margin-top: 1.14285714em;
  margin-bottom: 1em;
}
h4,
h5,
h6 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

h5 {
    font-size: 0.7em;
}

h6 {
    font-size: 0.6em;
}

.h1-black h1 {
    color: black;
    margin-bottom: 0.5em;
}

/* sonstige Abstände und Elemente */
p, ul, ol, pre, table, blockquote {
  margin-top: 0em;
  margin-bottom: 1.5em;
}


ul ul, ol ol, ul ol, ol ul {
  margin-top: 0em;
  margin-bottom: 0em;
}

ul {
  list-style: square;
}

ul {
    list-style-position: outside;
}

ol {
  list-style: decimal;
}

li {
  margin-left: 1.3em;
}

/*hr {
  border: 1px solid #292c37;
  margin: 5px 20px;
}*/

/* Links */

a,

a:visited {
	color:#5b2282;
	text-decoration: none;
    position: relative;
}

a:after {
    content: ''; /*content ist leer */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    border-bottom: 2px solid #999999;
    transition: 0.6s;
}

a:hover:after {
    width: 100%;
}

a:hover,
a:focus,
a:active {
	color: #6D7891;
  outline: 0;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

a.logo::after {
    border-bottom: 0px;
}

/*==============================================================================
3. Layoutangaben für den Inhaltsbereich
================================================================================*/

#wrapper {
  width: 100%;
  max-width: 960px;
  background-color: #dedbd4;
  margin: 0 auto 0 auto;
  padding: 2%;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}

#main {
	background-image: url("/files/theme/img/bkground-wrapper-3.jpg");
    background-attachment: fixed;
}
#main .inside {
  padding: 0.5em 0 0 0;
}

/** Header **/
#header .inside {
  border-top: 3px solid #22005c;
  border-left: 3px solid #22005c;
  border-right: 3px solid #22005c;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: #5B2282;
  padding-left: 2%;
  padding-right: 2%;
}

#header_down .inside {
  display: block;
  background-color: #5B2282;

}

#header .mod_form {
  position:absolute;
  top: 26px;
  right: 10px;
  z-index: 10;
  /*margin: 0.5em 0;*/
}
/** Logo **/

#logo {
  display: flex;
  flex-shrink: 0;
  padding: 5px;
  max-width: 100%;
  width: 120px;

}


#logo2 {
  display: none;
  flex-basis: 30%;
  flex-grow: 1;
}

#logo-text {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  width: 80%;
}

#logo-text h1 {
  /*display: none;*/
  color: #dedbd4;
  font-size: 130%;
  margin: auto 0 auto 10px;
  text-align: center;
  /*float: left; */

}



.hinter-grau {
    background: #F1F3F4;
    padding: 0.5em;
    opacity: 0.6;
}

.termine {
  border: 2px black solid;
  background: #F1F3F4;
  padding: 0.5em;
  margin-bottom: 15px;
}

.termine h2 {
  border-left: 50px #5B2282 solid;
  padding-left: 40px;
  background: linear-gradient(to left, #5B2282 0%, #e5e5e5 100%);
  margin-top: 0.5em;
}


/* Navigation */

#nav-main {
  display: none;
}


#nav-main ul {
  margin: 1em;
  padding: 0;
}

#nav-main li {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}

#nav-main a,
#nav-main strong {
  display: block;
  text-decoration: none;
  font-size: 1.125em;
  color: #dedbd4;
  font-weight: 700;
  margin: 0 1em;
  line-height: 1.5;
}

#nav-main a.last,
#nav-main .active.last {
  margin-right: 0;
}

#nav-main a:hover,
#nav-main a:focus {
  color: #feffbf;
}

#nav-main strong.active,
#nav-main .trail {
	color: #feffbf;
}

#nav-mobile {
  display: block;
  width:220px;
  margin: 0.25em auto 1em;
}

/* #nav-mobile {
	  font-size: 0.5em
  list-style: none;
}*/

#nav-sitemap {
    display: block;
    line-height: 2.5em;
    font-size: 1.0em;

    }

#nav-sitemap a {
    text-decoration: none;
    list-style: none;
    color: black;
}

#nav-sitemap a:hover {
    font-size: 1.2em;
}
.mod_quicknav ul .level_1 {
	list-style: circle;
	font-size: 0.95em;
}

#nav-mobile select {
  margin: 0;
}

.nav-toggle {
  text-align: right;
  margin: 0.3em;
}

.nav-toggle a {
  font-size: 1.5em;
  text-decoration: none;
}


/* Breadcrumb */
.mod_breadcrumb ul {
	list-style: none;
	margin: 1.5em 0;
}

.mod_breadcrumb li {
	display:inline-block;
	margin: 0;
	padding: 0;
}

.mod_breadcrumb li:after {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  content: "\f0da";
  width: 20px;
  text-align: center;
}

.mod_breadcrumb .last:after {
	content: '';
}

.mod_breadcrumb {
  /*display: none;*/
}

/* Header Image Home */
.header-image {
  position: relative;
  margin-top: 20px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.header-image h1 {
  text-align: center;
  color: #5B2282;
  margin-bottom: 0.5em;
  margin-top: 0.1em;
}




/* Boxen */
.box-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  text-align: justify;
}

.box {
  width: 100%;
  min-width: 200px;
  text-align: center;
  margin-bottom: 3em;
}

.box50 {
  width: 100%;
  min-width: 300px;
  text-align: center;
  margin-bottom: 3em;
}

.box-center {
  min-width: 300px;
  margin: 0 auto;
  text-align: justify;

}

/*Boxentest - nur temporär */

.boxentest-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.boxentest box2{
  width: 100%;
  min-width: 200px;
  text-align: center;
  margin-bottom: 2em;
}

/** Icons von Fontawesome **/

.box h2::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 0.75em;
  background: #5b2282;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-block;
}
.box-left h2::before {
  content: "\f0a1";
}


.box-middle h2::before {
  content: "\f129";
}

.box-right h2::before {
  content: "\f500";
}

/** Buttons **/
.button a,
button {
  display: inline-block;
  padding: 0.5em 2.75em;
	background:	#5b2282;
  font-size: 1.3125em;
	margin: 0.5em 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  border: 0;
  transition: all 0.3s ease 0s;
}
.button a:hover,
.button a:focus
button a:hover,
button a:focus {
  background-color: #710c13;
}
.button-center,
.text-center {
  text-align: center;
}
button {
  cursor: pointer;
}

.button-paypal {
  text-align: center;
  position: relative;
  margin-left: auto;
	margin-right: auto;
}

/** Footer **/

#footer {
    border-bottom: 3px solid #22005c;
    border-left: 3px solid #22005c;
    border-right: 3px solid #22005c;
    border-radius: 0 0 4px 4px ;
}

#footer_top {
	margin: 40px 0 0 0;
  border-top: 3px solid #22005c;
  border-left: 3px solid #22005c;
  border-right: 3px solid #22005c;
  background-color: #5b2282; opacity: 1;
  /* background-color: #B38B6D; */
  /*border: 1px black solid;
  border-radius: 0 0 10px 10px;*/
  padding: 1%;
}

#footer_top h5 {
	font-size: 1.0em;
	border-bottom: 2px #cccccc solid;
	color: #dedbd4;
	margin-top: 0;
    margin-bottom: 1.8em;
    padding-bottom: 10px;
    text-transform: uppercase;
}

#footer_top p {
  color: #dedbd4;
}

#footer_top a {
    color: #dedbd4;
}

#footer_top a:before {
 content: " \00BB ";
 text-decoration: none;
}

#footer_top a:visited {
	color: #dedbd4;
	text-decoration: none;

}

#footer_top a:hover {
	/*color: #710c13;*/
}

.footer-copyright {
    background-color: #5B2282; opacity: 1;
	margin-top: 1px;
	border-top: 1px solid #ccc;
	font-size: 0.75em;
	padding: 10px 0;
    text-align: center;
    color:#fff;
}

.footer-copyright a {
    color: #fff;
}

.zeilabst_footer {
    line-height: 2em;
}

/* Social Icons */
.socialicons {
	list-style: none;
	margin: 0;
	padding: 0;
}

.socialicons li {
	font-size: 2.5em;
	line-height: 1;
	display: inline-block;
	vertical-align: top;
	margin-right: 5px;
	margin-left: 0;
}


/* Subnavigation links */
#left .inside {
	padding-right: 60px;
  padding-left: 2%;
}

#left .mod_navigation {
	margin-top: 60px;
  display: none;
}

#left h5 {
	color: #292c37;
	margin-top: 0;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1em;
}

#left h5::after {
  width: 40px;
  height: 2px;
  display: block;
  margin-top: 0;
  background-color: #5b2282;
  content: " ";
}

#left .mod_navigation ul {
	list-style: none;
	margin: 0 0 0 1em;
	padding: 0;
}

#left .mod_navigation ul li {
	border-bottom: 1px solid #ccc;
	margin: 0;
	padding: 0;
}

#left .mod_navigation ul li a,
#left .mod_navigation ul li strong {
	color: #292c37;
	text-decoration: none;
	line-height: 2.5;
	display: block;
	font-weight: 400;
}

#left .mod_navigation ul li a:hover,
#left .mod_navigation ul li a:focus {
	color: #5b2282;
	text-decoration: none;
}


#left .mod_navigation ul li strong.active,
#left .mod_navigation ul li .trail {
	color: #5b2282;
	font-weight: 700;
}

/* Subnavigation erweitern */

#left .mod_navigation ul .level_2 {
	list-style-type: square;
	font-size: 0.95em;
}

#left .mod_navigation .level_2 li {
    margin-left: 1.5em;
    border-bottom: none;
}

/***********Spendenzähler *********************************/

#counter_startseite {
    text-align: center;
}

/****** ENDE *****Spendenzähler ***************************/



/*************** Spendenbutton ****************************/

#spendenbutton {
    text-align: center;
    margin-bottom: 15px;
}

#spendenbutton a{
    color: darkorange;
}

.spendenbtn {
    -moz-box-shadow: 1px 2px 9px 0px #9a8aa6; -webkit-box-shadow: 1px 2px 9px 0px #9a8aa6;
    box-shadow: 1px 2px 9px 0px #9a8aa6;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9177a3), color-stop(1, #5c2282) );
    background:-moz-linear-gradient( center top, #9177a3 5%, #5c2282 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9177a3', endColorstr='#5c2282');
    background-color:#9177a3;
    -webkit-border-top-left-radius:20px; -moz-border-radius-topleft:20px; border-top-left-radius:20px; -webkit-border-top-right-radius:20px; -moz-border-radius-topright:20px;
    border-top-right-radius:20px;
    -webkit-border-bottom-right-radius:20px; -moz-border-radius-bottomright:20px; border-bottom-right-radius:20px; -webkit-border-bottom-left-radius:20px;
    -moz-border-radius-bottomleft:20px;
    border-bottom-left-radius:20px;
    text-indent:0px;
    border:1px solid #5c2282;
    display:inline-block;
    color:#ffffff;
    /*font-family:Verdana; */
    font-size:18px;
    font-weight:bold;
    font-style:normal;
    height:54px;
    line-height:54px;
    width:183px;
    text-decoration:none;
    text-align:center;
}

.spendenbtn:hover { background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #5c2282), color-stop(1, #9177a3) );
    background:-moz-linear-gradient( center top, #5c2282 5%, #9177a3 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5c2282', endColorstr='#9177a3');
    background-color:#5c2282; color:#ffffff;}

.spendenbtn:active {
    position:relative; top:1px;
}

/******* ENDE ******** Spendenbutton ************************/

/*********** Modul "Sonntagskollekte" ***********************/

#sonntagskollekte {
    margin-top: 20px;
}

/******* Ende **** Modul "Sonntagskollekte" *****************/

/*********** Modul "Die Losungen" ***************************/

.los-box {
    max-width:95%;
    height:auto;
    margin: auto;
    padding: 2%;
    background: #fff;
    opacity: 0.5;
    text-align: justify;
    border: 2px black solid;
}

.los-box h1 {
    margin-bottom: 0.2em;
}

.ueberschrift {
    font-size: 1.5em;
    color: black;
}

.mod_dielosung span {
    line-height: 3em;
}



/*********** ENDE Modul "Die Losungen" **********************/

/*********** Beginn Modul "Die Losungen" ********************/

#ev-ter-start {
  width:100%;
  display: grid;
  align-items: center;
}

/*********** Beginn Modul "Die Losungen" ********************/

/*********** Modul "Besucherzähler" ***************************/

#besucher {
    display: flex;
    flex: 1 1 100%;
    flex-direction: row;
    justify-content: space-evenly;
    color: white;
    background-color:#5b2282;
    opacity: 1;
    padding: 2%;
    margin-top: 15px;
    border: 1px black solid;
}

#VisitorsName {
    margin-bottom: 10px;
}
#VisitorsOnlineCountLegend {
    float:left;
    margin-right: 10px;
}
#VisitorsOnlineCount {
    float: left;
}

#TodayVisitCountLegend  {
    float:left;
    margin-right: 10px;
}
#TodayVisitCount {
    float: left;
}

#TotalVisitCountLegend {
    float:left;
    margin-right: 10px;
}
.visitor_visitstotal {
    display: none;
}

#AverageVisitsLegend {
    float: left;
    margin-right: 10px;
}
.visitor_average {
        display: none;
}

#VisitorsStartDateLegend {
    float:left;
    margin-right: 10px;
}
.visitor_countsince {
    display: none;
}

/*********** Ende Modul "Besucherzähler" **********************/


/*********** Modul "Liturgischer Kalender" ********************/

#lit_kal {
    margin-top: 30px;
    text-align: center;
}

/**************************************************************/


/* H1 Erweiterung */
h1 {
  /* font-family: Verdana;
  letter-spacing: -2px; */
}

h1+h2,
h1+div h2 {
  margin-top: 0;
}

h3.h3AbstandEng {
  margin-top: -50px;
  font-weight: 300;
}




.box h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 0 1.25em 0;
  padding: 0;
}



/***********/* Formatierung Bilder */ ********************/


/* figure.float_left {
        clear:both;
        margin-right: 3.5em;
}
*/

    figure.float_right {
	   margin-left: 1.5em;
        margin-bottom: 1.5em;
}

    figure.float_above,
    figure.float_below {
        margin-bottom: 1.5em;
}

    figure.center {
        margin: 1.5em 0 auto;
}

/******************** Bilder mit Bildtitelleiste einblenden **************/

.bildleiste_transparent {
    width: 320px;
    position: relative;
}

.bildleiste_transparent img {
    display: block;
}

.bildleiste_transparent span.author {
    background-color: silver;
    background-color: hsla(0, 0%, 100%, 0.5);
    position:absolute;
    bottom: 10px;
    width: 100%;
    line-height: 2em;
    text-align: center;
    opacity:0;
    transition: opacity 1s;
}



.bildleiste_transparent span.copyright {
    background-color: silver;
    background-color: hsla(0, 0%, 100%, 0.5);
    position:absolute;
    bottom: 10px;
    width: 10%;
    line-height: 2em;
    text-align: center;
    opacity:1;
    transition: opacity 1s;
}

.bildleiste_transparent span.copyright:hover {
    opacity: 1;
}

.bildleiste_transparent span.author:hover {
    opacity: 1;
}





/****** ENDE ************** Bilder mit Bildtitelleiste einblenden **************/

/****** Ausführung lt. Contao-Academy *******/

  .image_container {
  display: inline-block;
}

.caption {
	line-height: 1.2;
	font-size: 0.775em;
	background-color: #e6e3e3;
	text-align: center;
	padding: 3px;
	margin-bottom: 0.25em;
  /*border: 0.3px rgb(91, 34, 130) solid;
  border-top: none;*/
  border-left: 5px rgb(91, 34, 130) solid;
  border-bottom:0.2px rgb(91, 34, 130) solid;

}
/**** ENDE ** Ausführung lt. Contao-Academy *******/

/****** ENDE ****** Formatierung Bilder * ********************/


/************************* Formatierung Bilder *************************/
figure.image_container.float_right {
    max-width: 30%;
    margin: 10px;
}

figure.image_container.float_left {
    max-width: 30%;
    margin: 10px 20px 10px 0;
}

/*figure.float_right {
	margin-left: 1.5em;
}
*/
.figure-margin {
  margin:35px 0 0 0;
}

*/
/************************* ENDE Formatierung Bilder *********************/

/* Styles for the caption overlays */
/* Standard Box: Top Center */
.boxen-flex {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
  padding: .5rem;
  text-align: center;
  font-size: 1.2rem;
  background-color: white;
  color: #d9d9d9;
}

.rund {
  border-radius: 100%;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
}

.element-center {
    text-align: center;
}

/** Slider **/

.ce_sliderStart {
	background: #efefef;
}

.slider-control {
	height: 60px;
}

.slider-control .slider-menu {
	font-size: 50px;
	line-height: 55px;
}

.slider-control .slider-prev {
	left: 15px;
}

.slider-control .slider-next {
	right: 15px;
}

/* Absatz vertikal gleichmäßig ausgerichtet, für die Darstellung auf Seite "Treffpunkte" */

.verti {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap;*/
}

/*Einstellungen für die Darstellung der Mitarbeiter mit Bild links und Text*/

.portrait {
  max-width: 90%;
  margin: 10px auto;
  border-top: 2px solid #5b2282;
  margin-bottom: 0;
  background-clip: padding-box;
  padding: 20px;

  
}

.h2-eng {
  margin-top: 0.1em;
  margin-bottom: 0;
  /*font-size: 1.5em;*/
}

/*§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§*/

/******Anfang*** Event- & Kalender-Einstellungen*******/

.calendar td {
	padding: 5px;
	height: 120px;
}

.calendar .head {
	text-align: center;
}

.calendar .label {
	width: 14.25%;
	font-size: 0.75em;
}

.calendar .header {
	font-size: 0.75em;
	background-color: #efefef;
	padding-left: 3px;
}

.calendar .empty .header {
	background-color: #fff;
}

.calendar .today .header{
	background-color: #9f111b;
	color: #fff;
	font-weight: 700;
}

.calendar .event {
	margin: 3px 0;
	line-height: 1.1;
}

.calendar .event a {
	font-size: 0.75em;
}


.minicalendar .head,
.minicalendar .label,
.minicalendar td {
	text-align: center;
}


.minicalendar .active {
	background: #9f111b;
}

.minicalendar .active a,
.minicalendar .active a:visited {
	color: #fff;
}

.layout_upcoming {
	padding: 1em 0.25em;
	border-bottom: 1px solid #ccc;
}

.layout_upcoming.odd {
	background: #efefef;
}

/******ENDE*** Event- & Kalender-Einstellungen*******/

/********************** Anfang Styling Fotokalender ******/
.bild-begleittext {
  display: inline;
  padding: 5% 2% 0 2%;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  border-radius: 15px;
}

.bild-begleittext p {
  margin-bottom: 0.5em;
}

.linie p hr {
  color:#9f111b;
  text-align: center;
  width:80%;
}

/********************** Ende Styling Fotokalender *******/

/******Anfang *** twingle-Einstellungen*************/

/*project-progress.row {
    margin-top: 5px;
}
*/
/****** ENDE *** twingle-Einstellungen*************/



/** Tabelle **/
table {
	width: 100%;
	overflow: auto;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #ccc;
}



th,td {
	border: 1px solid #ccc;
	padding: 5px 10px;
}

th {
	background: #efefef;
	font-weight: 700;
	text-align: left;
}

/* Tabelle responsiv */
#tableresp {
    width: 100%;
    overflow: auto;
}

#tableresp::-webkit-scrollbar{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}

#tableresp::-webkit-scrollbar-thumb{
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: rgba(0, 0, 0, .3);
}

/** Akkordeon **/
.ce_accordion {
    width: 99%;
	margin-bottom: 10px;
    -webkit-box-shadow: 3px 3px 5px 1px #494949;
    box-shadow: 3px 3px 5px 1px #494949;
}

.ui-accordion-content {
    margin-top: 15px;
	border: 1px solid #ccc;
	padding: 0.25em 0.5em;
    clear:both;
}

/* der Akkordeonbalken */
.ce_accordion .toggler {
	cursor: pointer;
	color: #efe1e1;
	/*background: #292c37;*/
    background: #5b2282;
    opacity: 0.9;
    outline: none;
    padding: 0.5em;
    font-weight: 700;
    -webkit-box-shadow: 3px 3px 5px 1px #494949;
    box-shadow: 3px 3px 5px 1px #494949;
}

/*wenn angeklickt oder mit der Maus überfahren: */
.ce_accordion .toggler.active,
.ce_accordion .toggler:hover {
	background: #d7bfff;
    color:#232321;
    opacity: 0.8;
}

/*wenn angeklickt oder mit der Maus überfahren ändert sich auch die Farbe des Icon's: */
.ce_accordion .toggler:hover .ui-icon:before {
    color: #232321;
}

/* Links im Akkordeon werden unterstrichen */
.accordeon_link_underline a {
    text-decoration: underline;
}

/* Icon von Font Awesome gestylt */
.ui-icon:before {
  font-family: "Font Awesome 5 Free";
  color: #efe1e1;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  width: 25px;
  text-align: center;
  content: '\f101';
}

/* neues Icon und neue Farbe - wenn aktiv */
.ui-accordion-header-active .ui-icon:before {
  color: #232321;
  content: '\f338';

}

/** Galerie **/
.ce_gallery>ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
}

.ce_gallery>ul li.col_first {
	clear:none;
}

.ce_gallery>ul li {
	float: none;
	margin: 0.25em auto;
}

/** Slider **/

.ce_sliderStart {
	background: #efefef;
}

.slider-control {
	height: 60px;
}

.slider-control .slider-menu {
	font-size: 50px;
	line-height: 55px;
}

.slider-control .slider-prev {
	left: 15px;
}

.slider-control .slider-next {
	right: 15px;
}
/** Formular **/
label{
	display: block;
}

input,
textarea,
select {
	margin-bottom: 1em;
	padding: 0.5em;
	border: 1px solid #999;
	outline: 0;
	width: 100%;
	border-radius: 2px;
}

input:focus,
textarea:focus,
select:focus {
	border: 1px solid #5b2282;
}

form span.mandatory {
	display: none;
}

.submit {
	margin-top: 0;
}

p.error {
	color: red;
	background: #f1f1f1;
	border: 2px solid red;
	padding: 0.5em;
	margin: 0 0 0.25em 0;
}

.radio_container span {
	margin-right: 2em;
}

.radio_container input {
	width: auto;
	margin-left: 2px;
}

.radio_container label {
	display: inline-block;
}

.checkbox_container {
    display: grid;
    margin-bottom: 30px;
}

.checkbox_container legend {
    margin-bottom: 15px;
    background-color: aliceblue;
    display: block;
}

.checkbox_container span {
    margin-bottom: 10px;
}

.checkbox_container input {
	width: auto;
    margin-bottom: 0;
}

.checkbox_container label {
	display: inline-block;
    display: inline;
    vertical-align: middle;
}

.font-size-08 {
    font-size: 0.8em;
}

/* Kommentar Antworten*/
.comment_default {
    padding: 0.75em 0;
    margin-bottom: 0.75em;
}

.comment_default .info {
	font-weight: 700;
	border-bottom: 1px solid #ccc;
}

.comment_default .reply {
	font-style: italic;
	padding-left: 2em;
	border-left: 2px solid #ccc;
}

.comment_default .reply .info {
	border-bottom: none;
}

.ce_comments .tl_confirm {
  position:absolute;
  top:-6em;
  z-index:999;
  padding:10px;
  background:#48b570;
  color:#fff;
  display:block
}

/** Suche **/
 /*#header .mod_form {
  margin: 0.5em auto;*/
}
#main .mod_form {
  margin: 0 auto;
}
#search-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
}

/*#mod-search-neu {
  position: absolute;
  right:50px;
  margin: 5px 0 10px 0;
}*/

#form-search {
	position: relative;
  display: table;
  margin: 0 auto;
  margin-bottom: 0.5em;

}

#form-search input.text {
    line-height: 2em;
	margin-bottom: 0px;
	padding-right: 30px;
	width: 160px;
	transition: all 0.5s ease 0s;
}

#form-search input.text:focus {
	width: 240px;
}

#form-search input.submit {
	  position: absolute;
    right: 6px;
    top: 13px;
    width: 24px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.mod_search form {
  border: 1px solid #ccc;
	padding: 25px;
  width:100%;
}

.mod_search .header {
	margin-top: 2em;
	padding: 0.5em 0.5em;
	text-align: left;
	background: #292c37;
	color: #fff;
}

mark {
	background: #DEC043;
	font-weight: 700;
}

.mod_search > div {
	padding: 0.75em 0.5em;
}

.mod_search > text {
  width: 150px;
}

.mod_search .odd {
	background: #f3f3f3;
}

.mod_search form button {
	width: 100%;
}
}

/****************** Nachrichten Styling ****************************/
.layout_latest {
	margin-bottom: 3em;
	padding-bottom: 3em;
	border-bottom: 1px solid #ccc;
}


.layout_latest h2,
.layout_full h1 {
	margin: 0;
}

.layout_latest h2 a {
	color: #292c37;
	text-decoration: none;
}

.layout_latest .info,
.layout_full .info {
	font-size: 0.875em;
}

.mod_newsarchive .layout_latest .info {
	margin-bottom: 0;
}

.layout_latest .info:before,
.layout_full .info:before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
	content: "\f073";
    width: 20px;
    text-align: center;
}

#footer .layout_simple {
	border-bottom: 0px solid #ccc;
	padding: 0.5em 0;
}

#footer .layout_simple.first {
	padding-top: 0;
}

#footer .layout_simple a {
	font-weight: 400;
	text-decoration: none;
}

/****************** ENDE Nachrichten Styling ****************************/


/****************** News-Menü *******************************************/
.mod_newsmenu ul {
	list-style: none;
	margin: 0;
}

.mod_newsmenu .year {
	margin: 0;
}

.mod_newsmenu a {
	text-decoration: none;
}

.mod_newsmenu a:hover,
.mod_newsmenu a:focus,
.mod_newsmenu strong.active
 {
	color: #710c13;
	text-decoration: none;
}

/****************** ENDE News-Menü **************************************/

/********************** Newsletter Footer *******************************/

.page-newsletter #footer .mod_subscribe .error {
  display: none;
}

#footer mod_subscribe .submit {
  width: 100%;
}
/**********************ENDE  Newsletter Footer **************************/

/************************Top-Link (nach oben)****************************/

#footer .nach_oben_link {
  bottom: 15px;
  position: fixed;
  right: 15px;
  z-index: 5;
}
#footer .nach_oben_link > a {
  background: #5B2282;
  border: 2px solid white;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 26px;
  font-size: 1.625rem;
  height: 35px;
  text-align: center;
  width: 35px;
}
#footer .nach_oben_link > a:hover {
  background: #5B2282;
}
/************************ENDE Top-Link (nach oben)***********************/

/************************Informationleiste "Redaktion"*******************/
.tipp {
  text-align: left;
  border:#5b2282 2px solid;
  padding: 3%;
}

.tipp a {
  text-decoration: underline;
}

/*.tipp ul {
  list-style: none;
}
*/

/*******************ENDE*Informationleiste "Redaktion"*******************/

/**************Formatierung Hinweistext DSGVO bei Mailversand"***********/
.dsgvo {
  text-align: justify;
  color: #5e5555;
  font-size: small;
  border:#5b2282 3px solid;
  padding: 3% 3% 0 3%;
  margin-bottom: 20px;
}

/************ENDE Formatierung Hinweistext DSGVO bei Mailversand"***********/

/* =============================================================================
4. Einstellungen die wirksam werden, wenn die Mindestgröße des
benutzten Displays von 500px überschritten wird
================================================================================*/

@media (min-width:500px) {
    #logo-text h1 {
       font-size: 150%;
    }

figure.image_container.float_right {
    max-width: 50%;
    margin: 10px 0px 10px 10px;
}

figure.image_container.float_left {
    max-width: 100%;
    margin: 10px 20px 10px 0;
}

#ev-ter-start {
  width: 90%;
}
}

    /* =============================================================================
4. Einstellungen die wirksam werden, wenn die Mindestgröße des
benutzten Displays von 620px überschritten wird
================================================================================*/

@media (min-width:620px) {
    #logo-text h1 {
       font-size: 160%;
    }

figure.image_container.float_right {
    max-width: 100%;
    margin: 10px 0px 10px 10px;
}

figure.image_container.float_left {
    max-width: 100%;
    margin: 10px 20px 10px 0;
}

#ev-ter-start {
  width:80%;
}
}
/* =============================================================================
4. Einstellungen die wirksam werden, wenn die Mindestgröße des
benutzten Displays von 795px überschritten wird
================================================================================*/

/* Viewport min 795px */
@media screen and (min-width: 795px) {


#header {
    margin-bottom: 0px;

}

  #header .inside {
    background-color: ##5B2282;
    border-top: 3px solid #22005c;
    border-left: 3px solid #22005c;
    border-right: 3px solid #22005c;

    /*background: rgb(74,4,73);
    background: linear-gradient(180deg, rgba(74,4,73,1) 0%, rgba(166,111,177,1) 100%); */
    display: flex;
    flex-direction: row;
  }

 #header_down .inside {
    background-color: ##5B2282;
    border-bottom: 3px solid #22005c;
    border-left: 3px solid #22005c;
    border-right: 3px solid #22005c;
    display: block;
  }


#logo-text  {
  display: flex;
  justify-content: center;
  width: 600px;
  margin-left: 150px;

}

#logo-text h1 {
        font-size: 160%;
    }

#logo-text h1 span {
  color: #dedbd4;
  text-align: right;
  font-size: 1.4em;
  margin-bottom: 5px;
  float: left;
  line-height: 1.2em;
}


  #header .mod_form {
    display: none;
    position:absolute;
  	top: 76px;
  	right: 25px;
  	z-index: 10;
  	/*margin: 0.5em 0;*/
  }

  /* Header Image Home */

  .header-image h1 {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 1.9em;
    color: #dedbd4;opacity: 1.0;
    line-height: 1;
    margin-bottom: 5px;
    text-align: right;
  }

  .header-image h1 span {
    background-color: #5B2282;
    opacity: 0.8;
    margin-top: 5px;
    margin-bottom: 5px;
    float: right;
    padding: 10px;
    text-align: right;
  }

  .generation-image h1 {
    position: absolute;
    top: : 20px;
    left:  25px;
    font-size: 1.875em;
    color: #5b2282;opacity: 0.8;
    line-height: 1;
    margin-bottom: 5px;
  }

  .generation-image h1 span {
    background: #DEC043;
    margin-top: 5px;
    margin-bottom: 5px;
    float: left;
    padding: 5px;
    text-align: right;
  }

  #logo {
    display: flex;
    flex-shrink: 0;
    flex-grow: 0;
    max-width: 100%;
    width: 150px;
    max-height: 160px;
    line-height: 0;
    margin: 0.2em;
    padding: 10px 0 0 0;

  }

  #logo2 {
    display: block;
    position: absolute;
    left: 210px;
    bottom: 50px;
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  #form-search {
  	position: relative;
    display: inline-block;
    float: right;
    margin-bottom: 0.5em;

  }
#nav-main {
  display: block;
  width: 600px;
  margin-left: 180px;
}

#nav-mobile {
  display:none ;
}

#nav-sitemap {
    display: none;
    }

#left .mod_navigation {
	display: block;
}

    .nav-toggle {
        display: none;
    }


  .box {
    width: 30%;
    text-align: ;
    margin 0;
  }

  .box50 {
    width: 47%;
    text-align: ;
    margin 0;
  }


/* Ausrichtung von Elementen nach links bei großen Bildschirmen */

.element-center {
text-align: left;
}

#footer {
  background-color: #DEC043 opacity: 0.2;
}
  #footer h5 {
    /*font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 0.75em;
    background: #5b2282;
    color: #fff;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    display: inline-block;*/
    margin-bottom: 1.0em;
  }

  .footer-copyright {

  }
}

/* =============================================================================
4.1 Einstellungen die wirksam werden, wenn die Mindestgröße des
benutzten Displays von 960px überschritten wird
================================================================================*/

@media screen and (min-width: 960px) {
  #wrapper {
    width: 100%;
    max-width: 960px;
    background-color: #dedbd4;
    border: 2px #5b2282 solid;
    margin: 10px auto 10px auto;
    padding: 1%;
  }
  .header-image h1 {
    /* position: absolute;
    bottom: 20px;
    right: 25px;*/
    font-size: 2.8em;
    color: #dedbd4;opacity: 1.0;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
  }

  .header-image h1 span {
    background-color: #5B2282;
    font-size: 25px;
    opacity: 0.8;
    margin-top: 5px;
    margin-bottom: 5px;
    float: right;
    padding: 10px;
    text-align: right;
  }
    #logo-text h1 {
        font-size: 1.8em;
    }


}

* {
	font-size: 12px;
}
body {
	padding:10px;
}
a:hover {
	text-decoration:none;
}
#et_container img {
    height: auto;
    width: 100%;
}
.warning {
	color:red;
	font-weight:bold;
}
.et_link {
}
a.et_link:hover{}

/* Gesamtbreite: */
#et_container {
	width:auto;
	max-width:600px;
}
#et_filter_container {
    display: none;
	width:100%;
}
.et_filter_headline {
	font-weight:bold;
}
.et_filter_headline,
.et_filter_subrow {
	background: rgb(201,221,237);
	padding:2px;
}
.et_filter_subrow {
	text-align:center;
}
.et_filter_main {
	background-color:whitesmoke;
}
.et_filter_block div,
.et_filter_block_left div,
.et_filter_block_right div {
	padding:2px;
	white-space:nowrap;
	background-color:whitesmoke;
}

.et_submit {
	font-size:14px;
	width:200px;
}
.et_reset {
	border:0px;
	margin-left:30px;
}
#et_filter_container input[type=text] {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border:1px solid #666;
	padding:1px;
}
#ETFilter_highlight,
#ETFilter_eventtype,
#ETFilter_people,
#highlight, #eventtype, #people {
	width:240px;
}

.et_pager_container {
	padding:4px 0;
}
.et_pager {}

#et_content_container {
	width:100%;
	-webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.55);
	-moz-box-shadow:    0px 0px 4px rgba(50, 50, 50, 0.55);
	box-shadow:         0px 0px 4px rgba(50, 50, 50, 0.55);
}

.et_content_row {
    margin-top: 3px;
    margin-bottom: 3px;
	padding:3px;
}
.even {
    background-color: #DEDBD4;
}
.odd {
	background-color:whitesmoke;
}
.et_tag {
	font-weight:bold;
}
.et_uhrzeit {}

.et_litname,.et_detail_litname {
	font-size:13px;
	color:#555;
}
.et_detail_litname {
	display: inline-block;
	margin-left:10px;
}

.et_content_title a.et_link_title {
	font-weight:bold;
	color:#333;
}
.et_content_title a.et_link_title:hover {
	color:#000;
}
.et_description {
	/* Auskommentierten, um die Kurzbeschreibung auszublenden: */
	/*display:none;*/
}
.et_city {
	/* Entfernen, um den Ort einzublenden: */
	display:none;
}
.et_placename {}
.et_personname {}
.et_personname:before {
	content: " - ";
}

.et_content_user {
	display:block;
	color:#666;
	font-size:10px;
	line-height:11px;
	padding:2px 0;
}

  .monthbar {
  color: white;
  background: #5B2282;
  background: -moz-linear-gradient(left, #5B2282 0%, #e5e5e5 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5B2282), color-stop(100%, #e5e5e5));
  background: -webkit-linear-gradient(left, #5B2282 0%, #e5e5e5 100%);
  background: -o-linear-gradient(left, #5B2282 0%, #e5e5e5 100%);
  background: -ms-linear-gradient(left, #5B2282 0%, #e5e5e5 100%);
  background: linear-gradient(to right, #5B2282 0%, #e5e5e5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5B2282', endColorstr='#e5e5e5',GradientType=1 );
  padding: 2px 5px;
  font-weight: bold;
}


/* Detailseite: */
#et_detail_header {
	padding:3px;
	background-position:right;
	background-repeat:no-repeat;
	background-size:1px;
}
#et_detail_title {
	font-size:16px;
	font-weight:bold;
	margin:14px 0 8px 2px;
}
#et_detail_date {
	font-size:13px;
	font-weight:bold;
	margin:6px 0 10px 2px;
}
.et_content_detaillabel {
	font-weight:bold;
	color:#555;
}
#et_container #et_place_image,
#et_container #et_place_image_th,
#et_container .equipicon {
	width:auto;
}
.equipicon {
	margin:2px;
}
#et_place_image {
	/* Das groÃŸe Bild wird erst beim Mouseover eingeblendet */
	display:none;
}
.et_user {
	border-top:1px dotted #999;
}
.et_sharefunctions {}
#et_container .et_sharefunctions img {
	width:auto;
}
.et_detail_backlink a {
	/*padding:2px 4px 2px 25px;
	text-decoration:none;
	background-image:url(/bundles/vket/images/backlinkbg.png );
	background-repeat:no-repeat;*/
}
/*  Footer */
#footer {
	text-align:center;
	font-size:10px;
	color:#999;
	padding-top:10px;
}
#footer a {
	color:#999;
}

/* @media all and (min-width: 520px) {
 	/* responsive
	#et_content_container {
	width:auto;
	-webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.55);
	-moz-box-shadow:    0px 0px 4px rgba(50, 50, 50, 0.55);
	box-shadow:         0px 0px 4px rgba(50, 50, 50, 0.55);
}
 */

@media onl screen and (max-width: 520px) {
 	/* responsive */

	#et_content_container {
	width:auto;
	-webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.55);
	-moz-box-shadow:    0px 0px 4px rgba(50, 50, 50, 0.55);
	box-shadow:         0px 0px 4px rgba(50, 50, 50, 0.55);
}


    .et_filter_main:after {
		content: "";
		display: table;
		clear: both;
	}

	.et_filter_block_left {
		-moz-box-sizing: border-box;
		float: left;
		margin-left: 0;
		margin-right: -50%;
		width:50%;
	}
	.et_filter_block_right {
		-moz-box-sizing: border-box;
		float: left;
		margin-left: 50%;
		margin-right: -100%;
		width:50%;
	}

	.et_content_row:after
	 {
		content: "";
		display: table;
		clear: both;
	}
	.et_content_date,
	.et_content_detaillabel,
	.et_detail_backlink {
		-moz-box-sizing: border-box;
		float: left;
		margin-left: 0;
		margin-right: -30%;
		width:30%;
		padding:2px 0 0 2px;

	}

	.et_content_title,
	.et_content_detailvalue,
	.et_sharefunctions {
		-moz-box-sizing: border-box;
		float: left;
		margin-left: 30%;
		margin-right: -100%;
		width:70%;
		padding:2px 0 0 7px;
	}

	#et_detail_header {
		background-size:contain;
	}
}

/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/

ul.simple-pagination {
	/* list-style: none; */
}

.simple-pagination {
	display: block;
	/*overflow: hidden;*/
	padding: 0 0 30px 0;
	margin: 0;
}

.simple-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}

.light-theme a, .light-theme span {
	float:left;
	color: #666;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #BBB;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #efefef;
	background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef));
	background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%);
	background: linear-gradient(top, #ffffff 0%,#efefef 100%);
}
.light-theme a:hover {
	text-decoration: none;
	background: #FCFCFC;
}

.light-theme .current {
	background: #666;
	color: #FFF;
	border-color: #444;
	box-shadow: 0 1px 0 rgba(255,255,255,1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
	cursor: default;
}

* {
	font-size: 12px;
	font-family: Roboto, Arial, sans-serif;
}
body {
    padding:10px;
}
a:hover {
	text-decoration:none;
}
#et_container img {
    height: auto;
    width: 100%;
}
.warning {
	color:red;
	font-weight:bold;
}
.et_link {
}
a.et_link:hover{}

/* Gesamtbreite: */
#et_container {
	width:100%;
}
#et_filter_container {
    display: none;
	width:100%;
}
.et_filter_headline {
	font-weight:bold;
}
.et_filter_headline,
.et_filter_subrow {
	background: rgb(201,221,237);
	padding:2px;
}
.et_filter_subrow {
	text-align:center;
}
.et_filter_main {
	background-color:whitesmoke;
}
.et_filter_block div,
.et_filter_block_left div,
.et_filter_block_right div {
	padding:2px;
	white-space:nowrap;
	background-color:whitesmoke;
}

.et_submit {
	font-size:14px;
	width:200px;
}
.et_reset {
	border:0px;
	margin-left:30px;
}
#et_filter_container input[type=text] {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border:1px solid #666;
	padding:1px;
}
#ETFilter_highlight,
#ETFilter_eventtype,
#ETFilter_people,
#highlight, #eventtype, #people {
	width:240px;
}

.et_pager_container {
	padding:4px 0;
}
.et_pager {}

#et_content_container {
	width:100%;
	-webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.55);
	-moz-box-shadow:    0px 0px 4px rgba(50, 50, 50, 0.55);
	box-shadow:         0px 0px 4px rgba(50, 50, 50, 0.55);
}

.et_content_row {
    margin-top: 3px;
    margin-bottom: 3px;
	padding:3px;
}
.even {
    background-color: #DEDBD4;
}
.odd {
	background-color:whitesmoke;
}
.et_tag {
	font-weight:bold;
}
.et_uhrzeit {}

.et_litname,.et_detail_litname {
	font-size:13px;
	color:#555;
}
.et_detail_litname {
	display: inline-block;
	margin-left:10px;
}

.et_content_title a.et_link_title {
	font-weight:bold;
	color:#333;
}
.et_content_title a.et_link_title:hover {
	color:#000;
}
.et_description {
	/* Auskommentierten, um die Kurzbeschreibung auszublenden: */
	/*display:none;*/
}
.et_city {
	/* Entfernen, um den Ort einzublenden: */
	display:none;
}
.et_placename {}
.et_personname {}
.et_personname:before {
	content: " - ";
}

.et_content_user {
	display:block;
	color:#666;
	font-size:10px;
	line-height:11px;
	padding:2px 0;
}
.monthbar {
  color: white;
  background: #5B2282;
  background: -moz-linear-gradient(left, #5B2282 0%, #e5e5e5 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5B2282), color-stop(100%, #e5e5e5));
  background: -webkit-linear-gradient(left, #5B2282 0%, #e5e5e5 100%);
  background: -o-linear-gradient(left, #5B2282 0%, #e5e5e5 100%);
  background: -ms-linear-gradient(left, #5B2282 0%, #e5e5e5 100%);
  background: linear-gradient(to right, #5B2282 0%, #e5e5e5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5B2282', endColorstr='#e5e5e5',GradientType=1 );
  
  padding: 2px 5px;
  font-weight: bold;
}


/* Detailseite: */
#et_detail_header {
	padding:3px;
	background-position:right;
	background-repeat:no-repeat;
	background-size:1px;
}
#et_detail_title {
	font-size:16px;
	font-weight:bold;
	margin:14px 0 8px 2px;
}
#et_detail_date {
	font-size:13px;
	font-weight:bold;
	margin:6px 0 10px 2px;
}
.et_content_detaillabel {
	font-weight:bold;
	color:#555;
}
#et_container #et_place_image,
#et_container #et_place_image_th,
#et_container .equipicon {
	width:auto;
}
.equipicon {
	margin:2px;
}
#et_place_image {
	/* Das groÃŸe Bild wird erst beim Mouseover eingeblendet */
	display:none;
}
.et_user {
	border-top:1px dotted #999;
}
.et_sharefunctions {}
#et_container .et_sharefunctions img {
	width:auto;
}
.et_detail_backlink a {
	/*padding:2px 4px 2px 25px;
	text-decoration:none;
	background-image:url(/bundles/vket/images/backlinkbg.png );
	background-repeat:no-repeat;*/
}
/*  Footer */
#footer {
	text-align:center;
	font-size:10px;
	color:#999;
	padding-top:1px;
}
#footer a {
	color:#999;
}

@media all and (min-width: 360px) {
 	/* responsive */
	#et_content_container {
	width:100%;
	-webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.55);
	-moz-box-shadow:    0px 0px 4px rgba(50, 50, 50, 0.55);
	box-shadow:         0px 0px 4px rgba(50, 50, 50, 0.55);
}
 

/* @media only screen and (max-width: 520px) {
 	/* responsive 

	#et_content_container {
	width: 100%;
    max-width: 630px;
	-webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, 0.55);
	-moz-box-shadow:    0px 0px 4px rgba(50, 50, 50, 0.55);
	box-shadow:         0px 0px 4px rgba(50, 50, 50, 0.55);
}

*/
    .et_filter_main:after {
		content: "";
		display: table;
		clear: both;
	}

	.et_filter_block_left {
		-moz-box-sizing: border-box;
		float: left;
		margin-left: 0;
		margin-right: -50%;
		width:50%;
	}
	.et_filter_block_right {
		-moz-box-sizing: border-box;
		float: left;
		margin-left: 50%;
		margin-right: -100%;
		width:50%;
	}

	.et_content_row:after
	 {
		content: "";
		display: table;
		clear: both;
	}
	.et_content_date,
	.et_content_detaillabel,
	.et_detail_backlink {
		-moz-box-sizing: border-box;
		float: left;
		margin-left: 0;
		margin-right: -30%;
		width:30%;
		padding:2px 0 0 2px;

	}

	.et_content_title,
	.et_content_detailvalue,
	.et_sharefunctions {
		-moz-box-sizing: border-box;
		float: left;
		margin-left: 30%;
		margin-right: -100%;
		width:70%;
		padding:2px 0 0 7px;
	}

	#et_detail_header {
		background-size:contain;
	}
}

/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/

ul.simple-pagination {
	/* list-style: none; */
}

.simple-pagination {
	display: none;
	/*overflow: hidden;*/
	padding: 0 5px 5px 0;
	margin: 0;
}

.simple-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}

.light-theme a, .light-theme span {
	float:left;
	color: #666;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #BBB;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #efefef;
	background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef));
	background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%);
	background: linear-gradient(top, #ffffff 0%,#efefef 100%);
}
.light-theme a:hover {
	text-decoration: none;
	background: #FCFCFC;
}

.light-theme .current {
	background: #666;
	color: #FFF;
	border-color: #444;
	box-shadow: 0 1px 0 rgba(255,255,255,1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
	cursor: default;
}

/******** Formatierungen Twingle-Spendentool *****/

.form.start {
    padding-top: 15px;
}

.amount {
    max-width:90px;
}
