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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   michaelSchneider FOTODESIGN — Theme v2
   Eigenständiges Grundgerüst-CSS, ohne Fremd-Framework (kein euf_grid.css /
   reset.min.css / layout.min.css / responsive.min.css mehr nötig).

   Ersetzt: Basic_settings.css, Basic_settings_schneimifoto.css, grid.css,
            layout.css, mobile_menu.css, Settings_Desktop/Tablet/small.css
   Bleibt bestehen: localfonts.css (Montserrat-Dateien werden weiter
            verwendet, hier nicht erneut eingebunden)

   Breakpoints (aus dem bisherigen Theme übernommen):
     ≥ 1280px  Desktop
     812–1279px Tablet
     < 812px   Mobil
   ========================================================================== */

/* ---------- 1. Design-Tokens ------------------------------------------- */
:root {
  /* Neutrale Basis */
  --paper: #FAF8F4;          /* Seiten-Hintergrund (statt reinem #fff) */
  --paper-raised: #F1ECE3;   /* Kartenflächen */
  --ink: #2B2B2C;            /* Fließtext (nah am bisherigen #3f3f3f) */
  --ink-soft: #5C5C58;
  --ink-faint: #8C897F;
  --line: #E1DACC;

  /* Marke — 1:1 aus Basic_settings_schneimifoto.css übernommen */
  --petrol: #0B4357;         /* Haupt-Akzent, Links, Navigation */
  --petrol-dark: #004056;    /* Footer-Kante, Dropdown-Ebene 2 */
  --petrol-light: #4C8299;   /* Hover-Variante (neu abgeleitet) */
  --green: #75A60C;          /* bisheriger Hero-/Markierungs-Akzent */
  --olive: #A2BA24;          /* bisherige Auswahlfarbe (::selection) */
  --slate: #616F8E;          /* bisherige Link-Hover-Farbe */

  --dark: #14232A;           /* Footer-Fläche (abgeleitet aus Petrol) */
  --dark-2: #0D1A20;
  --dark-ink: #EDE9DF;
  --dark-ink-soft: #A7AA9E;

  --shadow: 0 24px 48px -24px rgba(19, 35, 43, 0.28);
  --radius: 6px;
  color-scheme: light;
}

/* ---------- 2. Basis / Reset -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--petrol); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--petrol-light); }
*::selection { background-color: var(--olive); color: #fff; }
mark { padding: 2px 4px; background-color: var(--green); border-radius: 3px; color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 .5em;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 4vw + 1rem, 3.6rem); }
h2 { font-size: clamp(1.7rem, 2.4vw + 1rem, 2.6rem); }
h3 { font-size: 1.35rem; font-weight: 500; }
p { margin: 0 0 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

/* ---------- 3. Seitenrahmen (bestehende Contao-IDs weiter genutzt) ----- */
#wrapper { background: var(--paper); }
#header, #header-bar {
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 90;
}
#header-bar .inside,
#container .inside,
#footer .inside {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
#header-bar .inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
#logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
/* Logo fest 200px breit, Höhe skaliert proportional mit (keine Verzerrung) */
#logo img, .footer-brand img { display: block; width: 200px; height: auto; }

#container { background: var(--paper); }
#main { padding: 0; }

#footer {
  background: var(--dark-2);
  color: var(--dark-ink-soft);
  border-top: none;
  padding: 56px 0 24px;
}
#footer a { color: var(--dark-ink-soft); }
#footer a:hover { color: var(--dark-ink); }
#footer h4 {
  color: var(--dark-ink); font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 14px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

/* ---------- 4. Content-Elemente (Standard Contao-Klassen) -------------- */
.mod_article { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.mod_article .ce_text.intro {
  font-size: 1.5rem; font-weight: 300; color: var(--ink);
}
.ce_hyperlink a, .ce_download a { color: var(--petrol); }

/* Eyebrow-Label (kleine Kategorie-Zeile über Überschriften) */
.eyebrow {
  display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--petrol); font-weight: 600; margin-bottom: 14px;
}

/* ---------- 5. Buttons --------------------------------------------------- */
.btn, a.btn, button, input[type="submit"] {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  padding: 13px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--petrol); background: var(--petrol); color: #fff;
  transition: all .2s ease; text-decoration: none;
}
.btn:hover, a.btn:hover, button:hover, input[type="submit"]:hover {
  background: var(--petrol-light); border-color: var(--petrol-light); color: #fff; transform: translateY(-1px);
}
.btn.ghost, a.btn.ghost { background: transparent; color: var(--petrol); }
.btn.ghost:hover, a.btn.ghost:hover { background: var(--petrol); color: #fff; }
.btn.on-dark, a.btn.on-dark { background: transparent; border-color: var(--dark-ink); color: var(--dark-ink); }
.btn.on-dark:hover, a.btn.on-dark:hover { background: var(--dark-ink); color: var(--dark); }

/* ---------- 6. Hauptnavigation (siehe templates/mod_navigation_header.html5) */
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: inherit; }
.site-nav li { position: relative; }
.site-nav a, .site-nav strong {
  display: inline-block; padding: 6px 2px; font-size: .85rem; color: var(--ink-soft);
  position: relative; font-weight: 400;
}
.site-nav a::after, .site-nav strong::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--petrol); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav strong.active::after, .site-nav strong.trail::after,
.site-nav a.active::after, .site-nav a.trail::after { transform: scaleX(1); }
/* strong.active/.trail: von Contao serverseitig gesetzt (echte aktuelle Seite).
   a.active/.trail: identische Optik, falls eine Vorschau/ein Prototyp die
   Auswahl clientseitig per JS nachbilden muss (nicht Teil der echten
   Contao-Ausgabe, aber schadet nicht, falls ungenutzt). */
.site-nav strong.active, .site-nav strong.trail,
.site-nav a.active, .site-nav a.trail { color: var(--ink); font-weight: 600; }

/* Untermenüs (Ebene 2) als einfaches Dropdown */
.site-nav ul.level_2 {
  display: none; position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px; flex-direction: column; z-index: 20;
}
.site-nav li:hover > ul.level_2 { display: flex; }
.site-nav ul.level_2 a { padding: 8px 10px; display: block; }
.site-nav ul.level_2 a::after { display: none; }

/* Nachricht-CTA-Link in der Navigation optisch hervorheben */
.site-nav li.nav-cta > a, .site-nav li.nav-cta > strong {
  border: 1px solid var(--petrol); border-radius: 999px; padding: 9px 20px; color: var(--petrol);
}
.site-nav li.nav-cta > a::after, .site-nav li.nav-cta > strong::after { display: none; }
.site-nav li.nav-cta > a:hover { background: var(--petrol); color: #fff; }

/* Checkbox-Hack für mobiles Menü (kein JavaScript nötig) */
.nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-label {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle-label svg { width: 20px; height: 20px; }

@media (max-width: 811.98px) {
  .nav-toggle-label { display: flex; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 6px 0 18px; max-height: 80vh; overflow-y: auto;
  }
  .nav-toggle-input:checked ~ .site-nav { display: flex; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  /* Zeilen füllen die volle Fensterbreite (Padding wandert vom Container auf
     die Zeile selbst), damit der Hover-Hintergrund randlos abdunkeln kann */
  .site-nav a, .site-nav strong {
    display: block; width: 100%;
    padding: 13px 20px; border-bottom: 1px solid var(--line); font-size: 1rem;
    transition: background-color .15s ease;
  }
  .site-nav a::after, .site-nav strong::after { display: none; }
  .site-nav a:hover, .site-nav a:active { background-color: rgba(11, 67, 87, .06); }
  /* Ohne JavaScript kein Hover auf Touch-Geräten möglich -> Untermenüs auf
     Mobil immer eingerückt anzeigen statt sie hinter einem Hover zu verstecken.
     padding/min-width des Desktop-Dropdowns müssen hier explizit zurückgesetzt
     werden, sonst bleiben die Untermenü-Zeilen schmaler als die Hauptpunkte
     und wirken abgeschnitten. Der eigentliche Übeltäter ist align-items:center
     aus der allgemeinen ".site-nav ul"-Regel (für die Desktop-Reihe gedacht) —
     die wird nirgendwo zurückgesetzt und lässt die <li> in ul.level_2 auf
     Inhaltsbreite schrumpfen und zentrieren, egal was <a> für eine width hat. */
  .site-nav ul.level_2 {
    position: static; box-shadow: none; border: none; display: flex;
    align-items: stretch;
    padding: 0; margin: 0; min-width: 0; width: 100%;
  }
  .site-nav ul.level_2 li { width: 100%; }
  .site-nav ul.level_2 a { width: 100%; padding-left: 34px; }
  .site-nav li.nav-cta { margin-top: 12px; padding: 0 20px; }
  .site-nav li.nav-cta > a, .site-nav li.nav-cta > strong { display: block; text-align: center; border-radius: 8px; width: auto; }
  #header-bar { position: relative; }
}

/* ---------- 7. Hero ------------------------------------------------------ */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1280px; margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 4vw, 56px);
}
.hero h1 .accent { color: var(--petrol); font-style: italic; }
.hero .lede { font-size: 1.15rem; color: var(--ink); max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* position:relative gehört hierhin, nicht auf .hero-frame: .hero-tag ist ein
   Geschwister-Element von .hero-frame (beide Kinder von .hero-media) und
   braucht .hero-media als positionierten Bezugsrahmen, sonst positioniert
   sich die Box gegen die ganze Seite statt gegen das Bild. */
.hero-media { position: relative; }
.hero-frame { border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag {
  position: absolute; left: -20px; bottom: 28px; background: var(--paper);
  border: 1px solid var(--line); padding: 16px 22px; border-radius: 4px;
  box-shadow: var(--shadow); max-width: 230px;
}
.hero-tag .k { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--petrol); font-weight: 600; }
.hero-tag .v { font-size: .85rem; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; }

/* ---------- 8. Sektionen / Cards ----------------------------------------- */
.section { max-width: 1280px; margin: 0 auto; padding: clamp(56px, 9vw, 108px) clamp(20px, 4vw, 56px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }

/* Seitenkopf für Unterseiten (Galerien, Fotografie, Info, Blog, ...) */
.page-head { border-top: 1px solid var(--line); padding-bottom: 0 !important; }
.page-head .eyebrow { margin-bottom: 18px; }
.page-head h1 { margin-bottom: 18px; }
.page-head .lede { font-size: 1.15rem; color: var(--ink); max-width: 58ch; margin: 0; }

/* Hinweiszeile unter der Galerie-Grid (Kunstdruck-CTA) */
.gal-note { text-align: center; margin-top: 44px; font-size: .95rem; }
.gal-note a { color: var(--petrol); border-bottom: 1px solid var(--line); }
.gal-note a:hover { border-color: var(--petrol); }

/* "Meine Handschrift" — Painterly Look & Digital Art nebeneinander erklärt,
   Text bleibt immer sichtbar (anders als bei den Hover-Kacheln der Galerie) */
.style-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 8px; }
.style-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius);
  margin-bottom: 20px; box-shadow: var(--shadow);
}
.style-card .k { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--petrol); font-weight: 600; margin-bottom: 8px; display: block; }
.style-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.style-card p { font-size: .92rem; }

.service-grid, .cat-grid, .gal-grid, .blog-grid { display: grid; gap: 22px; }
.service-grid, .cat-grid.three { grid-template-columns: repeat(3, 1fr); }
.cat-grid.four { grid-template-columns: repeat(4, 1fr); }
.gal-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
.blog-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card { display: block; position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.06); }
.service-card .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,20,24,.88) 0%, rgba(11,20,24,.35) 45%, rgba(11,20,24,.05) 70%); }
.service-card .content { position: absolute; left: 22px; right: 22px; bottom: 22px; color: #F4F1E9; }
.service-card .num { font-size: .68rem; letter-spacing: .16em; color: #C9DDE3; font-weight: 600; margin-bottom: 10px; display: block; }
.service-card h3 { color: #F4F1E9; font-size: 1.35rem; margin-bottom: 6px; }
.service-card p { color: #D8D9CE; font-size: .82rem; margin-bottom: 14px; }
.service-card .more { font-size: .75rem; font-weight: 600; color: #F4F1E9; }

.cat-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  background: var(--paper-raised); display: flex; flex-direction: column; gap: 14px;
  min-height: 190px; transition: all .2s ease;
}
.cat-card:hover { border-color: var(--petrol); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-icon { width: 40px; height: 40px; border-radius: 50%; background: color-mix(in srgb, var(--petrol) 12%, var(--paper)); display: flex; align-items: center; justify-content: center; color: var(--petrol); }
.cat-card .go { margin-top: auto; font-size: .75rem; font-weight: 600; color: var(--petrol); }

.gal-tile { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gal-tile:hover img { transform: scale(1.05); }
.gal-tile .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,22,.82), rgba(10,18,22,0) 55%); }
.gal-tile .cap { position: absolute; left: 26px; bottom: 22px; color: #F4F1E9; }
.gal-tile .cap .k { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: #C9DDE3; margin-bottom: 6px; }
.gal-tile .cap h3 { color: #F4F1E9; font-size: 1.15rem; margin: 0; }

/* ---------- 9. Intro / Portrait-Zeile ------------------------------------ */
.intro { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; border-top: 1px solid var(--line); }
.intro-portrait img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.intro-portrait .name { margin-top: 16px; font-size: .95rem; font-weight: 600; }
.intro-portrait .role { font-size: .8rem; color: var(--ink-faint); margin-top: 2px; }
.intro-text p { max-width: 62ch; }

/* ---------- 10. Du/Sie-Hinweis-Block ------------------------------------- */
.note-block { border-top: 1px solid var(--line); background: var(--paper-raised); text-align: center; }
.note-block .inner { max-width: 660px; margin: 0 auto; }
.note-block p { font-size: .92rem; line-height: 1.85; }

/* ---------- 11. CTA-Band -------------------------------------------------- */
.cta-band { background: var(--dark); color: var(--dark-ink); text-align: center; }
.cta-band .eyebrow { color: var(--petrol-light); }
.cta-band h2 { color: var(--dark-ink); margin-bottom: 18px; }
.cta-band p { color: var(--dark-ink-soft); max-width: 50ch; margin: 0 auto 30px; }
.cta-band .actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- 12. Responsive: Tablet & Mobil -------------------------------- */
@media (max-width: 1279.98px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 380px; margin: 0 auto; }
  .intro { grid-template-columns: 1fr; }
  .service-grid, .cat-grid.three, .cat-grid.four, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 811.98px) {
  .service-grid, .cat-grid.three, .cat-grid.four, .blog-grid, .gal-grid, .style-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}

/* montserrat-100 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-100.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Thin'), local('Montserrat-Thin'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-100italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-100italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Thin Italic'), local('Montserrat-ThinItalic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-100italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-200 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-200.eot'); /* IE9 Compat Modes */
  src: local('Montserrat ExtraLight'), local('Montserrat-ExtraLight'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-200italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 200;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-200italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat ExtraLight Italic'), local('Montserrat-ExtraLightItalic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-200italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-300 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Light'), local('Montserrat-Light'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-300italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Light Italic'), local('Montserrat-LightItalic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-300italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-regular - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Regular'), local('Montserrat-Regular'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Italic'), local('Montserrat-Italic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-500 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Medium'), local('Montserrat-Medium'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-500italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Medium Italic'), local('Montserrat-MediumItalic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-500italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-600 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-600italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-600italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat SemiBold Italic'), local('Montserrat-SemiBoldItalic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-600italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-700italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Bold Italic'), local('Montserrat-BoldItalic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-700italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-800 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-800.eot'); /* IE9 Compat Modes */
  src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-800italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-800italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat ExtraBold Italic'), local('Montserrat-ExtraBoldItalic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-800italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-900 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-900.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Black'), local('Montserrat-Black'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/* montserrat-900italic - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 900;
  src: url('../../files/schneimifoto/fonts/montserrat-v13-latin-900italic.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Black Italic'), local('Montserrat-BlackItalic'),
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/schneimifoto/fonts/montserrat-v13-latin-900italic.svg#Montserrat') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'icons';
  src: url('../../files/schneimifoto/font/icons.eot?81804324');
  src: url('../../files/schneimifoto/font/icons.eot?81804324#iefix') format('embedded-opentype'),
       url('../../files/schneimifoto/font/icons.woff2?81804324') format('woff2'),
       url('../../files/schneimifoto/font/icons.woff?81804324') format('woff'),
       url('../../files/schneimifoto/font/icons.ttf?81804324') format('truetype'),
       url('../../files/schneimifoto/font/icons.svg?81804324#icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'icons';
    src: url('../../files/schneimifoto/font/icons.svg?81804324#icons') format('svg');
  }
}
*/
 
 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-glass:before { content: '\e800'; } /* '' */
.icon-note:before { content: '\e801'; } /* '' */
.icon-note-beamed:before { content: '\e802'; } /* '' */
.icon-music-1:before { content: '\e803'; } /* '' */
.icon-music:before { content: '\e804'; } /* '' */
.icon-search:before { content: '\e805'; } /* '' */
.icon-mail:before { content: '\e806'; } /* '' */
.icon-heart:before { content: '\e807'; } /* '' */
.icon-heart-empty:before { content: '\e808'; } /* '' */
.icon-star:before { content: '\e809'; } /* '' */
.icon-star-empty:before { content: '\e80a'; } /* '' */
.icon-star-half:before { content: '\e80b'; } /* '' */
.icon-user:before { content: '\e80c'; } /* '' */
.icon-users:before { content: '\e80d'; } /* '' */
.icon-video:before { content: '\e80e'; } /* '' */
.icon-videocam:before { content: '\e80f'; } /* '' */
.icon-picture:before { content: '\e810'; } /* '' */
.icon-camera:before { content: '\e811'; } /* '' */
.icon-camera-alt:before { content: '\e812'; } /* '' */
.icon-search-1:before { content: '\e813'; } /* '' */
.icon-th-large:before { content: '\e814'; } /* '' */
.icon-th:before { content: '\e815'; } /* '' */
.icon-th-list:before { content: '\e816'; } /* '' */
.icon-ok:before { content: '\e817'; } /* '' */
.icon-ok-circled:before { content: '\e818'; } /* '' */
.icon-ok-circled2:before { content: '\e819'; } /* '' */
.icon-cancel:before { content: '\e81a'; } /* '' */
.icon-cancel-circled:before { content: '\e81b'; } /* '' */
.icon-cancel-circled2:before { content: '\e81c'; } /* '' */
.icon-plus:before { content: '\e81d'; } /* '' */
.icon-plus-circled:before { content: '\e81e'; } /* '' */
.icon-minus:before { content: '\e81f'; } /* '' */
.icon-minus-circled:before { content: '\e820'; } /* '' */
.icon-help-circled:before { content: '\e821'; } /* '' */
.icon-info-circled:before { content: '\e822'; } /* '' */
.icon-home:before { content: '\e823'; } /* '' */
.icon-link:before { content: '\e824'; } /* '' */
.icon-attach:before { content: '\e825'; } /* '' */
.icon-lock:before { content: '\e826'; } /* '' */
.icon-lock-open:before { content: '\e827'; } /* '' */
.icon-pin:before { content: '\e828'; } /* '' */
.icon-eye:before { content: '\e829'; } /* '' */
.icon-eye-off:before { content: '\e82a'; } /* '' */
.icon-tag:before { content: '\e82b'; } /* '' */
.icon-tags:before { content: '\e82c'; } /* '' */
.icon-bookmark:before { content: '\e82d'; } /* '' */
.icon-flag:before { content: '\e82e'; } /* '' */
.icon-thumbs-up:before { content: '\e82f'; } /* '' */
.icon-thumbs-down:before { content: '\e830'; } /* '' */
.icon-flashlight:before { content: '\e831'; } /* '' */
.icon-mail-1:before { content: '\e832'; } /* '' */
.icon-download:before { content: '\e833'; } /* '' */
.icon-heart-1:before { content: '\e834'; } /* '' */
.icon-upload:before { content: '\e835'; } /* '' */
.icon-forward:before { content: '\e836'; } /* '' */
.icon-export:before { content: '\e837'; } /* '' */
.icon-heart-empty-1:before { content: '\e838'; } /* '' */
.icon-pencil:before { content: '\e839'; } /* '' */
.icon-edit:before { content: '\e83a'; } /* '' */
.icon-print:before { content: '\e83b'; } /* '' */
.icon-retweet:before { content: '\e83c'; } /* '' */
.icon-comment:before { content: '\e83d'; } /* '' */
.icon-chat:before { content: '\e83e'; } /* '' */
.icon-bell:before { content: '\e83f'; } /* '' */
.icon-attention:before { content: '\e840'; } /* '' */
.icon-attention-circled:before { content: '\e841'; } /* '' */
.icon-location:before { content: '\e842'; } /* '' */
.icon-trash-empty:before { content: '\e843'; } /* '' */
.icon-doc:before { content: '\e844'; } /* '' */
.icon-folder:before { content: '\e845'; } /* '' */
.icon-folder-open:before { content: '\e846'; } /* '' */
.icon-phone:before { content: '\e847'; } /* '' */
.icon-cog:before { content: '\e848'; } /* '' */
.icon-cog-alt:before { content: '\e849'; } /* '' */
.icon-wrench:before { content: '\e84a'; } /* '' */
.icon-basket:before { content: '\e84b'; } /* '' */
.icon-calendar:before { content: '\e84c'; } /* '' */
.icon-login:before { content: '\e84d'; } /* '' */
.icon-logout:before { content: '\e84e'; } /* '' */
.icon-volume-off:before { content: '\e84f'; } /* '' */
.icon-volume-down:before { content: '\e850'; } /* '' */
.icon-volume-up:before { content: '\e851'; } /* '' */
.icon-headphones:before { content: '\e852'; } /* '' */
.icon-clock:before { content: '\e853'; } /* '' */
.icon-block:before { content: '\e854'; } /* '' */
.icon-resize-full:before { content: '\e855'; } /* '' */
.icon-resize-small:before { content: '\e856'; } /* '' */
.icon-resize-vertical:before { content: '\e857'; } /* '' */
.icon-resize-horizontal:before { content: '\e858'; } /* '' */
.icon-zoom-in:before { content: '\e859'; } /* '' */
.icon-zoom-out:before { content: '\e85a'; } /* '' */
.icon-down-circled2:before { content: '\e85b'; } /* '' */
.icon-up-circled2:before { content: '\e85c'; } /* '' */
.icon-down-dir:before { content: '\e85d'; } /* '' */
.icon-up-dir:before { content: '\e85e'; } /* '' */
.icon-left-dir:before { content: '\e85f'; } /* '' */
.icon-right-dir:before { content: '\e860'; } /* '' */
.icon-down-open:before { content: '\e861'; } /* '' */
.icon-left-open:before { content: '\e862'; } /* '' */
.icon-right-open:before { content: '\e863'; } /* '' */
.icon-up-open:before { content: '\e864'; } /* '' */
.icon-down-big:before { content: '\e865'; } /* '' */
.icon-left-big:before { content: '\e866'; } /* '' */
.icon-right-big:before { content: '\e867'; } /* '' */
.icon-up-big:before { content: '\e868'; } /* '' */
.icon-right-hand:before { content: '\e869'; } /* '' */
.icon-left-hand:before { content: '\e86a'; } /* '' */
.icon-up-hand:before { content: '\e86b'; } /* '' */
.icon-down-hand:before { content: '\e86c'; } /* '' */
.icon-cw:before { content: '\e86d'; } /* '' */
.icon-ccw:before { content: '\e86e'; } /* '' */
.icon-arrows-cw:before { content: '\e86f'; } /* '' */
.icon-shuffle:before { content: '\e870'; } /* '' */
.icon-play:before { content: '\e871'; } /* '' */
.icon-play-circled2:before { content: '\e872'; } /* '' */
.icon-stop:before { content: '\e873'; } /* '' */
.icon-pause:before { content: '\e874'; } /* '' */
.icon-to-end:before { content: '\e875'; } /* '' */
.icon-to-end-alt:before { content: '\e876'; } /* '' */
.icon-to-start:before { content: '\e877'; } /* '' */
.icon-to-start-alt:before { content: '\e878'; } /* '' */
.icon-fast-fw:before { content: '\e879'; } /* '' */
.icon-fast-bw:before { content: '\e87a'; } /* '' */
.icon-eject:before { content: '\e87b'; } /* '' */
.icon-target:before { content: '\e87c'; } /* '' */
.icon-signal:before { content: '\e87d'; } /* '' */
.icon-award:before { content: '\e87e'; } /* '' */
.icon-inbox:before { content: '\e87f'; } /* '' */
.icon-globe:before { content: '\e880'; } /* '' */
.icon-cloud:before { content: '\e881'; } /* '' */
.icon-flash:before { content: '\e882'; } /* '' */
.icon-umbrella:before { content: '\e883'; } /* '' */
.icon-flight:before { content: '\e884'; } /* '' */
.icon-leaf:before { content: '\e885'; } /* '' */
.icon-scissors:before { content: '\e892'; } /* '' */
.icon-briefcase:before { content: '\e893'; } /* '' */
.icon-off:before { content: '\e894'; } /* '' */
.icon-road:before { content: '\e895'; } /* '' */
.icon-list-alt:before { content: '\e896'; } /* '' */
.icon-barcode:before { content: '\e898'; } /* '' */
.icon-book:before { content: '\e899'; } /* '' */
.icon-adjust:before { content: '\e89a'; } /* '' */
.icon-tint:before { content: '\e89b'; } /* '' */
.icon-check:before { content: '\e89c'; } /* '' */
.icon-asterisk:before { content: '\e89d'; } /* '' */
.icon-gift:before { content: '\e89e'; } /* '' */
.icon-fire:before { content: '\e89f'; } /* '' */
.icon-magnet:before { content: '\e8a0'; } /* '' */
.icon-chart-bar:before { content: '\e8a1'; } /* '' */
.icon-credit-card:before { content: '\e8a2'; } /* '' */
.icon-floppy:before { content: '\e8a3'; } /* '' */
.icon-megaphone:before { content: '\e8a4'; } /* '' */
.icon-key:before { content: '\e8a5'; } /* '' */
.icon-truck:before { content: '\e8a6'; } /* '' */
.icon-hammer:before { content: '\e8a7'; } /* '' */
.icon-lemon:before { content: '\e8a8'; } /* '' */
.icon-star-1:before { content: '\e8a9'; } /* '' */
.icon-star-empty-1:before { content: '\e8aa'; } /* '' */
.icon-user-1:before { content: '\e8ab'; } /* '' */
.icon-users-1:before { content: '\e8ac'; } /* '' */
.icon-user-add:before { content: '\e8ad'; } /* '' */
.icon-video-1:before { content: '\e8ae'; } /* '' */
.icon-picture-1:before { content: '\e8af'; } /* '' */
.icon-camera-1:before { content: '\e8b0'; } /* '' */
.icon-layout:before { content: '\e8b1'; } /* '' */
.icon-menu-1:before { content: '\e8b2'; } /* '' */
.icon-check-1:before { content: '\e8b3'; } /* '' */
.icon-cancel-circled-1:before { content: '\e8b4'; } /* '' */
.icon-cancel-squared:before { content: '\e8b5'; } /* '' */
.icon-plus-1:before { content: '\e8b6'; } /* '' */
.icon-plus-circled-1:before { content: '\e8b7'; } /* '' */
.icon-plus-squared-1:before { content: '\e8b8'; } /* '' */
.icon-minus-1:before { content: '\e8b9'; } /* '' */
.icon-minus-circled-1:before { content: '\e8ba'; } /* '' */
.icon-minus-squared-1:before { content: '\e8bb'; } /* '' */
.icon-help-1:before { content: '\e8bc'; } /* '' */
.icon-help-circled-1:before { content: '\e8bd'; } /* '' */
.icon-info-1:before { content: '\e8be'; } /* '' */
.icon-info-circled-1:before { content: '\e8bf'; } /* '' */
.icon-back:before { content: '\e8c0'; } /* '' */
.icon-home-1:before { content: '\e8c1'; } /* '' */
.icon-link-1:before { content: '\e8c2'; } /* '' */
.icon-attach-1:before { content: '\e8c3'; } /* '' */
.icon-lock-1:before { content: '\e8c4'; } /* '' */
.icon-lock-open-1:before { content: '\e8c5'; } /* '' */
.icon-eye-1:before { content: '\e8c6'; } /* '' */
.icon-bookmark-1:before { content: '\e8c7'; } /* '' */
.icon-bookmarks:before { content: '\e8c8'; } /* '' */
.icon-flag-1:before { content: '\e8c9'; } /* '' */
.icon-thumbs-up-1:before { content: '\e8ca'; } /* '' */
.icon-thumbs-down-1:before { content: '\e8cb'; } /* '' */
.icon-download-1:before { content: '\e8cc'; } /* '' */
.icon-upload-1:before { content: '\e8cd'; } /* '' */
.icon-upload-cloud-1:before { content: '\e8ce'; } /* '' */
.icon-reply-1:before { content: '\e8cf'; } /* '' */
.icon-reply-all-1:before { content: '\e8d0'; } /* '' */
.icon-forward-1:before { content: '\e8d1'; } /* '' */
.icon-quote:before { content: '\e8d2'; } /* '' */
.icon-code-1:before { content: '\e8d3'; } /* '' */
.icon-export-1:before { content: '\e8d4'; } /* '' */
.icon-pencil-1:before { content: '\e8d5'; } /* '' */
.icon-feather:before { content: '\e8d6'; } /* '' */
.icon-print-1:before { content: '\e8d7'; } /* '' */
.icon-retweet-1:before { content: '\e8d8'; } /* '' */
.icon-keyboard-1:before { content: '\e8d9'; } /* '' */
.icon-chat-1:before { content: '\e8da'; } /* '' */
.icon-bell-1:before { content: '\e8db'; } /* '' */
.icon-attention-1:before { content: '\e8dc'; } /* '' */
.icon-alert:before { content: '\e8dd'; } /* '' */
.icon-vcard:before { content: '\e8de'; } /* '' */
.icon-address:before { content: '\e8df'; } /* '' */
.icon-location-1:before { content: '\e8e0'; } /* '' */
.icon-map-1:before { content: '\e8e1'; } /* '' */
.icon-direction-1:before { content: '\e8e2'; } /* '' */
.icon-compass-1:before { content: '\e8e3'; } /* '' */
.icon-cup:before { content: '\e8e4'; } /* '' */
.icon-trash-1:before { content: '\e8e5'; } /* '' */
.icon-doc-1:before { content: '\e8e6'; } /* '' */
.icon-docs-1:before { content: '\e8e7'; } /* '' */
.icon-doc-landscape:before { content: '\e8e8'; } /* '' */
.icon-doc-text-1:before { content: '\e8e9'; } /* '' */
.icon-doc-text-inv-1:before { content: '\e8ea'; } /* '' */
.icon-newspaper-1:before { content: '\e8eb'; } /* '' */
.icon-book-open:before { content: '\e8ec'; } /* '' */
.icon-folder-1:before { content: '\e8ed'; } /* '' */
.icon-archive:before { content: '\e8ee'; } /* '' */
.icon-box-1:before { content: '\e8ef'; } /* '' */
.icon-rss-1:before { content: '\e8f0'; } /* '' */
.icon-phone-1:before { content: '\e8f1'; } /* '' */
.icon-cog-1:before { content: '\e8f2'; } /* '' */
.icon-tools:before { content: '\e8f3'; } /* '' */
.icon-share-1:before { content: '\e8f4'; } /* '' */
.icon-shareable:before { content: '\e8f5'; } /* '' */
.icon-basket-1:before { content: '\e8f6'; } /* '' */
.icon-bag:before { content: '\e8f7'; } /* '' */
.icon-calendar-1:before { content: '\e8f8'; } /* '' */
.icon-login-1:before { content: '\e8f9'; } /* '' */
.icon-logout-1:before { content: '\e8fa'; } /* '' */
.icon-mic-1:before { content: '\e8fb'; } /* '' */
.icon-mute-1:before { content: '\e8fc'; } /* '' */
.icon-sound:before { content: '\e8fd'; } /* '' */
.icon-volume:before { content: '\e8fe'; } /* '' */
.icon-clock-1:before { content: '\e8ff'; } /* '' */
.icon-lamp:before { content: '\e900'; } /* '' */
.icon-light-down:before { content: '\e901'; } /* '' */
.icon-light-up:before { content: '\e902'; } /* '' */
.icon-adjust-1:before { content: '\e903'; } /* '' */
.icon-block-1:before { content: '\e904'; } /* '' */
.icon-resize-full-1:before { content: '\e905'; } /* '' */
.icon-resize-small-1:before { content: '\e906'; } /* '' */
.icon-popup:before { content: '\e907'; } /* '' */
.icon-publish:before { content: '\e908'; } /* '' */
.icon-window:before { content: '\e909'; } /* '' */
.icon-arrow-combo:before { content: '\e90a'; } /* '' */
.icon-down-circled-1:before { content: '\e90b'; } /* '' */
.icon-left-circled-1:before { content: '\e90c'; } /* '' */
.icon-right-circled-1:before { content: '\e90d'; } /* '' */
.icon-up-circled-1:before { content: '\e90e'; } /* '' */
.icon-down-open-1:before { content: '\e90f'; } /* '' */
.icon-left-open-1:before { content: '\e910'; } /* '' */
.icon-right-open-1:before { content: '\e911'; } /* '' */
.icon-up-open-1:before { content: '\e912'; } /* '' */
.icon-left-open-mini:before { content: '\e913'; } /* '' */
.icon-right-open-mini:before { content: '\e914'; } /* '' */
.icon-up-open-mini:before { content: '\e915'; } /* '' */
.icon-down-open-big:before { content: '\e916'; } /* '' */
.icon-left-open-big:before { content: '\e917'; } /* '' */
.icon-right-open-big:before { content: '\e918'; } /* '' */
.icon-up-open-big:before { content: '\e919'; } /* '' */
.icon-down-1:before { content: '\e91a'; } /* '' */
.icon-left-1:before { content: '\e91b'; } /* '' */
.icon-right-1:before { content: '\e91c'; } /* '' */
.icon-up-1:before { content: '\e91d'; } /* '' */
.icon-down-dir-1:before { content: '\e91e'; } /* '' */
.icon-left-dir-1:before { content: '\e91f'; } /* '' */
.icon-right-dir-1:before { content: '\e920'; } /* '' */
.icon-up-dir-1:before { content: '\e921'; } /* '' */
.icon-down-bold:before { content: '\e922'; } /* '' */
.icon-left-bold:before { content: '\e923'; } /* '' */
.icon-right-bold:before { content: '\e924'; } /* '' */
.icon-up-bold:before { content: '\e925'; } /* '' */
.icon-left-thin:before { content: '\e926'; } /* '' */
.icon-right-thin:before { content: '\e927'; } /* '' */
.icon-up-thin:before { content: '\e928'; } /* '' */
.icon-ccw-1:before { content: '\e929'; } /* '' */
.icon-cw-1:before { content: '\e92a'; } /* '' */
.icon-arrows-ccw:before { content: '\e92b'; } /* '' */
.icon-level-down-1:before { content: '\e92c'; } /* '' */
.icon-level-up-1:before { content: '\e92d'; } /* '' */
.icon-shuffle-1:before { content: '\e92e'; } /* '' */
.icon-loop:before { content: '\e92f'; } /* '' */
.icon-switch:before { content: '\e930'; } /* '' */
.icon-play-1:before { content: '\e931'; } /* '' */
.icon-stop-1:before { content: '\e932'; } /* '' */
.icon-pause-1:before { content: '\e933'; } /* '' */
.icon-record:before { content: '\e934'; } /* '' */
.icon-to-end-1:before { content: '\e935'; } /* '' */
.icon-to-start-1:before { content: '\e936'; } /* '' */
.icon-fast-forward:before { content: '\e937'; } /* '' */
.icon-fast-backward:before { content: '\e938'; } /* '' */
.icon-progress-1:before { content: '\e939'; } /* '' */
.icon-progress-2:before { content: '\e93a'; } /* '' */
.icon-progress-3:before { content: '\e93b'; } /* '' */
.icon-target-1:before { content: '\e93c'; } /* '' */
.icon-palette:before { content: '\e93d'; } /* '' */
.icon-list-1:before { content: '\e93e'; } /* '' */
.icon-list-add:before { content: '\e93f'; } /* '' */
.icon-signal-1:before { content: '\e940'; } /* '' */
.icon-trophy:before { content: '\e941'; } /* '' */
.icon-battery:before { content: '\e942'; } /* '' */
.icon-back-in-time:before { content: '\e943'; } /* '' */
.icon-monitor:before { content: '\e944'; } /* '' */
.icon-mobile-1:before { content: '\e945'; } /* '' */
.icon-network:before { content: '\e946'; } /* '' */
.icon-cd:before { content: '\e947'; } /* '' */
.icon-inbox-1:before { content: '\e948'; } /* '' */
.icon-install:before { content: '\e949'; } /* '' */
.icon-globe-1:before { content: '\e94a'; } /* '' */
.icon-cloud-1:before { content: '\e94b'; } /* '' */
.icon-flash-1:before { content: '\e94c'; } /* '' */
.icon-moon-1:before { content: '\e94d'; } /* '' */
.icon-flight-1:before { content: '\e94e'; } /* '' */
.icon-paper-plane-1:before { content: '\e94f'; } /* '' */
.icon-leaf-1:before { content: '\e950'; } /* '' */
.icon-lifebuoy-1:before { content: '\e951'; } /* '' */
.icon-mouse:before { content: '\e952'; } /* '' */
.icon-briefcase-1:before { content: '\e953'; } /* '' */
.icon-suitcase-1:before { content: '\e954'; } /* '' */
.icon-dot:before { content: '\e955'; } /* '' */
.icon-dot-2:before { content: '\e956'; } /* '' */
.icon-dot-3:before { content: '\e957'; } /* '' */
.icon-brush-1:before { content: '\e958'; } /* '' */
.icon-magnet-1:before { content: '\e959'; } /* '' */
.icon-infinity:before { content: '\e95a'; } /* '' */
.icon-erase:before { content: '\e95b'; } /* '' */
.icon-chart-pie-1:before { content: '\e95c'; } /* '' */
.icon-chart-line-1:before { content: '\e95d'; } /* '' */
.icon-chart-bar-1:before { content: '\e95e'; } /* '' */
.icon-tape:before { content: '\e95f'; } /* '' */
.icon-graduation-cap-1:before { content: '\e960'; } /* '' */
.icon-language-1:before { content: '\e961'; } /* '' */
.icon-ticket-1:before { content: '\e962'; } /* '' */
.icon-water:before { content: '\e963'; } /* '' */
.icon-droplet:before { content: '\e964'; } /* '' */
.icon-air:before { content: '\e965'; } /* '' */
.icon-credit-card-1:before { content: '\e966'; } /* '' */
.icon-floppy-1:before { content: '\e967'; } /* '' */
.icon-clipboard:before { content: '\e968'; } /* '' */
.icon-megaphone-1:before { content: '\e969'; } /* '' */
.icon-database-1:before { content: '\e96a'; } /* '' */
.icon-drive:before { content: '\e96b'; } /* '' */
.icon-bucket:before { content: '\e96c'; } /* '' */
.icon-thermometer:before { content: '\e96d'; } /* '' */
.icon-key-1:before { content: '\e96e'; } /* '' */
.icon-flow-cascade:before { content: '\e96f'; } /* '' */
.icon-flow-branch:before { content: '\e970'; } /* '' */
.icon-flow-tree:before { content: '\e971'; } /* '' */
.icon-flow-parallel:before { content: '\e972'; } /* '' */
.icon-rocket-1:before { content: '\e973'; } /* '' */
.icon-gauge-1:before { content: '\e974'; } /* '' */
.icon-traffic-cone:before { content: '\e975'; } /* '' */
.icon-cc-1:before { content: '\e976'; } /* '' */
.icon-cc-by:before { content: '\e977'; } /* '' */
.icon-cc-nc:before { content: '\e978'; } /* '' */
.icon-cc-nc-eu:before { content: '\e979'; } /* '' */
.icon-cc-nc-jp:before { content: '\e97a'; } /* '' */
.icon-cc-sa:before { content: '\e97b'; } /* '' */
.icon-cc-nd:before { content: '\e97c'; } /* '' */
.icon-cc-pd:before { content: '\e97d'; } /* '' */
.icon-cc-zero:before { content: '\e97e'; } /* '' */
.icon-cc-share:before { content: '\e97f'; } /* '' */
.icon-cc-remix:before { content: '\e980'; } /* '' */
.icon-cancel-1:before { content: '\e984'; } /* '' */
.icon-tag-1:before { content: '\e985'; } /* '' */
.icon-comment-1:before { content: '\e986'; } /* '' */
.icon-book-1:before { content: '\e987'; } /* '' */
.icon-hourglass-4:before { content: '\e988'; } /* '' */
.icon-down-open-mini:before { content: '\e989'; } /* '' */
.icon-down-thin:before { content: '\e98a'; } /* '' */
.icon-progress-0:before { content: '\e98b'; } /* '' */
.icon-cloud-thunder:before { content: '\e98c'; } /* '' */
.icon-chart-area-1:before { content: '\e98d'; } /* '' */
.icon-flow-line:before { content: '\e98e'; } /* '' */
.icon-acrobat:before { content: '\eb20'; } /* '' */
.icon-move:before { content: '\f047'; } /* '' */
.icon-link-ext:before { content: '\f08e'; } /* '' */
.icon-check-empty:before { content: '\f096'; } /* '' */
.icon-bookmark-empty:before { content: '\f097'; } /* '' */
.icon-phone-squared:before { content: '\f098'; } /* '' */
.icon-twitter:before { content: '\f099'; } /* '' */
.icon-facebook:before { content: '\f09a'; } /* '' */
.icon-github-circled:before { content: '\f09b'; } /* '' */
.icon-rss:before { content: '\f09e'; } /* '' */
.icon-hdd:before { content: '\f0a0'; } /* '' */
.icon-certificate:before { content: '\f0a3'; } /* '' */
.icon-left-circled:before { content: '\f0a8'; } /* '' */
.icon-right-circled:before { content: '\f0a9'; } /* '' */
.icon-up-circled:before { content: '\f0aa'; } /* '' */
.icon-down-circled:before { content: '\f0ab'; } /* '' */
.icon-tasks:before { content: '\f0ae'; } /* '' */
.icon-filter:before { content: '\f0b0'; } /* '' */
.icon-resize-full-alt:before { content: '\f0b2'; } /* '' */
.icon-beaker:before { content: '\f0c3'; } /* '' */
.icon-docs:before { content: '\f0c5'; } /* '' */
.icon-blank:before { content: '\f0c8'; } /* '' */
.icon-menu:before { content: '\f0c9'; } /* '' */
.icon-table:before { content: '\f0ce'; } /* '' */
.icon-magic:before { content: '\f0d0'; } /* '' */
.icon-pinterest-circled:before { content: '\f0d2'; } /* '' */
.icon-pinterest-squared:before { content: '\f0d3'; } /* '' */
.icon-gplus-squared:before { content: '\f0d4'; } /* '' */
.icon-gplus:before { content: '\f0d5'; } /* '' */
.icon-money:before { content: '\f0d6'; } /* '' */
.icon-columns:before { content: '\f0db'; } /* '' */
.icon-sort:before { content: '\f0dc'; } /* '' */
.icon-sort-down:before { content: '\f0dd'; } /* '' */
.icon-sort-up:before { content: '\f0de'; } /* '' */
.icon-mail-alt:before { content: '\f0e0'; } /* '' */
.icon-linkedin:before { content: '\f0e1'; } /* '' */
.icon-gauge:before { content: '\f0e4'; } /* '' */
.icon-comment-empty:before { content: '\f0e5'; } /* '' */
.icon-chat-empty:before { content: '\f0e6'; } /* '' */
.icon-sitemap:before { content: '\f0e8'; } /* '' */
.icon-paste:before { content: '\f0ea'; } /* '' */
.icon-lightbulb:before { content: '\f0eb'; } /* '' */
.icon-exchange:before { content: '\f0ec'; } /* '' */
.icon-download-cloud:before { content: '\f0ed'; } /* '' */
.icon-upload-cloud:before { content: '\f0ee'; } /* '' */
.icon-user-md:before { content: '\f0f0'; } /* '' */
.icon-stethoscope:before { content: '\f0f1'; } /* '' */
.icon-suitcase:before { content: '\f0f2'; } /* '' */
.icon-bell-alt:before { content: '\f0f3'; } /* '' */
.icon-coffee:before { content: '\f0f4'; } /* '' */
.icon-food:before { content: '\f0f5'; } /* '' */
.icon-doc-text:before { content: '\f0f6'; } /* '' */
.icon-ambulance:before { content: '\f0f9'; } /* '' */
.icon-medkit:before { content: '\f0fa'; } /* '' */
.icon-fighter-jet:before { content: '\f0fb'; } /* '' */
.icon-beer:before { content: '\f0fc'; } /* '' */
.icon-h-sigh:before { content: '\f0fd'; } /* '' */
.icon-plus-squared:before { content: '\f0fe'; } /* '' */
.icon-angle-double-left:before { content: '\f100'; } /* '' */
.icon-angle-double-right:before { content: '\f101'; } /* '' */
.icon-angle-double-up:before { content: '\f102'; } /* '' */
.icon-angle-double-down:before { content: '\f103'; } /* '' */
.icon-angle-left:before { content: '\f104'; } /* '' */
.icon-angle-right:before { content: '\f105'; } /* '' */
.icon-angle-up:before { content: '\f106'; } /* '' */
.icon-angle-down:before { content: '\f107'; } /* '' */
.icon-desktop:before { content: '\f108'; } /* '' */
.icon-laptop:before { content: '\f109'; } /* '' */
.icon-tablet:before { content: '\f10a'; } /* '' */
.icon-mobile:before { content: '\f10b'; } /* '' */
.icon-circle-empty:before { content: '\f10c'; } /* '' */
.icon-quote-left:before { content: '\f10d'; } /* '' */
.icon-quote-right:before { content: '\f10e'; } /* '' */
.icon-circle:before { content: '\f111'; } /* '' */
.icon-reply:before { content: '\f112'; } /* '' */
.icon-github:before { content: '\f113'; } /* '' */
.icon-folder-empty:before { content: '\f114'; } /* '' */
.icon-folder-open-empty:before { content: '\f115'; } /* '' */
.icon-smile:before { content: '\f118'; } /* '' */
.icon-frown:before { content: '\f119'; } /* '' */
.icon-meh:before { content: '\f11a'; } /* '' */
.icon-flag-empty:before { content: '\f11d'; } /* '' */
.icon-code:before { content: '\f121'; } /* '' */
.icon-reply-all:before { content: '\f122'; } /* '' */
.icon-star-half-alt:before { content: '\f123'; } /* '' */
.icon-direction:before { content: '\f124'; } /* '' */
.icon-crop:before { content: '\f125'; } /* '' */
.icon-fork:before { content: '\f126'; } /* '' */
.icon-unlink:before { content: '\f127'; } /* '' */
.icon-help:before { content: '\f128'; } /* '' */
.icon-info:before { content: '\f129'; } /* '' */
.icon-attention-alt:before { content: '\f12a'; } /* '' */
.icon-eraser:before { content: '\f12d'; } /* '' */
.icon-puzzle:before { content: '\f12e'; } /* '' */
.icon-mic:before { content: '\f130'; } /* '' */
.icon-mute:before { content: '\f131'; } /* '' */
.icon-shield:before { content: '\f132'; } /* '' */
.icon-calendar-empty:before { content: '\f133'; } /* '' */
.icon-extinguisher:before { content: '\f134'; } /* '' */
.icon-rocket:before { content: '\f135'; } /* '' */
.icon-angle-circled-left:before { content: '\f137'; } /* '' */
.icon-angle-circled-right:before { content: '\f138'; } /* '' */
.icon-angle-circled-up:before { content: '\f139'; } /* '' */
.icon-angle-circled-down:before { content: '\f13a'; } /* '' */
.icon-html5:before { content: '\f13b'; } /* '' */
.icon-anchor:before { content: '\f13d'; } /* '' */
.icon-lock-open-alt:before { content: '\f13e'; } /* '' */
.icon-bullseye:before { content: '\f140'; } /* '' */
.icon-rss-squared:before { content: '\f143'; } /* '' */
.icon-play-circled:before { content: '\f144'; } /* '' */
.icon-ticket:before { content: '\f145'; } /* '' */
.icon-minus-squared:before { content: '\f146'; } /* '' */
.icon-minus-squared-alt:before { content: '\f147'; } /* '' */
.icon-level-up:before { content: '\f148'; } /* '' */
.icon-level-down:before { content: '\f149'; } /* '' */
.icon-ok-squared:before { content: '\f14a'; } /* '' */
.icon-pencil-squared:before { content: '\f14b'; } /* '' */
.icon-link-ext-alt:before { content: '\f14c'; } /* '' */
.icon-export-alt:before { content: '\f14d'; } /* '' */
.icon-compass:before { content: '\f14e'; } /* '' */
.icon-expand:before { content: '\f150'; } /* '' */
.icon-collapse:before { content: '\f151'; } /* '' */
.icon-expand-right:before { content: '\f152'; } /* '' */
.icon-euro:before { content: '\f153'; } /* '' */
.icon-pound:before { content: '\f154'; } /* '' */
.icon-dollar:before { content: '\f155'; } /* '' */
.icon-doc-inv:before { content: '\f15b'; } /* '' */
.icon-doc-text-inv:before { content: '\f15c'; } /* '' */
.icon-thumbs-up-alt:before { content: '\f164'; } /* '' */
.icon-thumbs-down-alt:before { content: '\f165'; } /* '' */
.icon-youtube-squared:before { content: '\f166'; } /* '' */
.icon-youtube:before { content: '\f167'; } /* '' */
.icon-youtube-play:before { content: '\f16a'; } /* '' */
.icon-dropbox:before { content: '\f16b'; } /* '' */
.icon-stackoverflow:before { content: '\f16c'; } /* '' */
.icon-instagram:before { content: '\f16d'; } /* '' */
.icon-flickr:before { content: '\f16e'; } /* '' */
.icon-bitbucket:before { content: '\f171'; } /* '' */
.icon-bitbucket-squared:before { content: '\f172'; } /* '' */
.icon-tumblr:before { content: '\f173'; } /* '' */
.icon-tumblr-squared:before { content: '\f174'; } /* '' */
.icon-down:before { content: '\f175'; } /* '' */
.icon-up:before { content: '\f176'; } /* '' */
.icon-left:before { content: '\f177'; } /* '' */
.icon-right:before { content: '\f178'; } /* '' */
.icon-apple:before { content: '\f179'; } /* '' */
.icon-windows:before { content: '\f17a'; } /* '' */
.icon-android:before { content: '\f17b'; } /* '' */
.icon-linux:before { content: '\f17c'; } /* '' */
.icon-dribbble:before { content: '\f17d'; } /* '' */
.icon-skype:before { content: '\f17e'; } /* '' */
.icon-trello:before { content: '\f181'; } /* '' */
.icon-female:before { content: '\f182'; } /* '' */
.icon-male:before { content: '\f183'; } /* '' */
.icon-sun:before { content: '\f185'; } /* '' */
.icon-moon:before { content: '\f186'; } /* '' */
.icon-box:before { content: '\f187'; } /* '' */
.icon-bug:before { content: '\f188'; } /* '' */
.icon-pagelines:before { content: '\f18c'; } /* '' */
.icon-stackexchange:before { content: '\f18d'; } /* '' */
.icon-right-circled2:before { content: '\f18e'; } /* '' */
.icon-left-circled2:before { content: '\f190'; } /* '' */
.icon-collapse-left:before { content: '\f191'; } /* '' */
.icon-dot-circled:before { content: '\f192'; } /* '' */
.icon-wheelchair:before { content: '\f193'; } /* '' */
.icon-vimeo-squared:before { content: '\f194'; } /* '' */
.icon-plus-squared-alt:before { content: '\f196'; } /* '' */
.icon-space-shuttle:before { content: '\f197'; } /* '' */
.icon-mail-squared:before { content: '\f199'; } /* '' */
.icon-graduation-cap:before { content: '\f19d'; } /* '' */
.icon-yahoo:before { content: '\f19e'; } /* '' */
.icon-google:before { content: '\f1a0'; } /* '' */
.icon-stumbleupon-circled:before { content: '\f1a3'; } /* '' */
.icon-stumbleupon:before { content: '\f1a4'; } /* '' */
.icon-delicious:before { content: '\f1a5'; } /* '' */
.icon-digg:before { content: '\f1a6'; } /* '' */
.icon-child:before { content: '\f1ae'; } /* '' */
.icon-paw:before { content: '\f1b0'; } /* '' */
.icon-spoon:before { content: '\f1b1'; } /* '' */
.icon-cube:before { content: '\f1b2'; } /* '' */
.icon-cubes:before { content: '\f1b3'; } /* '' */
.icon-behance:before { content: '\f1b4'; } /* '' */
.icon-behance-squared:before { content: '\f1b5'; } /* '' */
.icon-recycle:before { content: '\f1b8'; } /* '' */
.icon-cab:before { content: '\f1b9'; } /* '' */
.icon-taxi:before { content: '\f1ba'; } /* '' */
.icon-tree:before { content: '\f1bb'; } /* '' */
.icon-spotify:before { content: '\f1bc'; } /* '' */
.icon-soundcloud:before { content: '\f1be'; } /* '' */
.icon-database:before { content: '\f1c0'; } /* '' */
.icon-file-pdf:before { content: '\f1c1'; } /* '' */
.icon-file-word:before { content: '\f1c2'; } /* '' */
.icon-file-excel:before { content: '\f1c3'; } /* '' */
.icon-file-powerpoint:before { content: '\f1c4'; } /* '' */
.icon-file-image:before { content: '\f1c5'; } /* '' */
.icon-file-archive:before { content: '\f1c6'; } /* '' */
.icon-file-audio:before { content: '\f1c7'; } /* '' */
.icon-file-video:before { content: '\f1c8'; } /* '' */
.icon-file-code:before { content: '\f1c9'; } /* '' */
.icon-codeopen:before { content: '\f1cb'; } /* '' */
.icon-lifebuoy:before { content: '\f1cd'; } /* '' */
.icon-circle-notch:before { content: '\f1ce'; } /* '' */
.icon-git-squared:before { content: '\f1d2'; } /* '' */
.icon-git:before { content: '\f1d3'; } /* '' */
.icon-hacker-news:before { content: '\f1d4'; } /* '' */
.icon-qq:before { content: '\f1d6'; } /* '' */
.icon-paper-plane:before { content: '\f1d8'; } /* '' */
.icon-paper-plane-empty:before { content: '\f1d9'; } /* '' */
.icon-history:before { content: '\f1da'; } /* '' */
.icon-circle-thin:before { content: '\f1db'; } /* '' */
.icon-sliders:before { content: '\f1de'; } /* '' */
.icon-share:before { content: '\f1e0'; } /* '' */
.icon-share-squared:before { content: '\f1e1'; } /* '' */
.icon-soccer-ball:before { content: '\f1e3'; } /* '' */
.icon-tty:before { content: '\f1e4'; } /* '' */
.icon-binoculars:before { content: '\f1e5'; } /* '' */
.icon-plug:before { content: '\f1e6'; } /* '' */
.icon-slideshare:before { content: '\f1e7'; } /* '' */
.icon-newspaper:before { content: '\f1ea'; } /* '' */
.icon-wifi:before { content: '\f1eb'; } /* '' */
.icon-calc:before { content: '\f1ec'; } /* '' */
.icon-paypal:before { content: '\f1ed'; } /* '' */
.icon-bell-off:before { content: '\f1f6'; } /* '' */
.icon-bell-off-empty:before { content: '\f1f7'; } /* '' */
.icon-trash:before { content: '\f1f8'; } /* '' */
.icon-copyright:before { content: '\f1f9'; } /* '' */
.icon-at:before { content: '\f1fa'; } /* '' */
.icon-eyedropper:before { content: '\f1fb'; } /* '' */
.icon-brush:before { content: '\f1fc'; } /* '' */
.icon-birthday:before { content: '\f1fd'; } /* '' */
.icon-chart-area:before { content: '\f1fe'; } /* '' */
.icon-chart-pie:before { content: '\f200'; } /* '' */
.icon-chart-line:before { content: '\f201'; } /* '' */
.icon-toggle-off:before { content: '\f204'; } /* '' */
.icon-toggle-on:before { content: '\f205'; } /* '' */
.icon-bicycle:before { content: '\f206'; } /* '' */
.icon-bus:before { content: '\f207'; } /* '' */
.icon-angellist:before { content: '\f209'; } /* '' */
.icon-cc:before { content: '\f20a'; } /* '' */
.icon-meanpath:before { content: '\f20c'; } /* '' */
.icon-leanpub:before { content: '\f212'; } /* '' */
.icon-cart-plus:before { content: '\f217'; } /* '' */
.icon-cart-arrow-down:before { content: '\f218'; } /* '' */
.icon-diamond:before { content: '\f219'; } /* '' */
.icon-ship:before { content: '\f21a'; } /* '' */
.icon-motorcycle:before { content: '\f21c'; } /* '' */
.icon-street-view:before { content: '\f21d'; } /* '' */
.icon-heartbeat:before { content: '\f21e'; } /* '' */
.icon-genderless:before { content: '\f22d'; } /* '' */
.icon-facebook-official:before { content: '\f230'; } /* '' */
.icon-pinterest:before { content: '\f231'; } /* '' */
.icon-whatsapp:before { content: '\f232'; } /* '' */
.icon-server:before { content: '\f233'; } /* '' */
.icon-user-plus:before { content: '\f234'; } /* '' */
.icon-user-times:before { content: '\f235'; } /* '' */
.icon-bed:before { content: '\f236'; } /* '' */
.icon-train:before { content: '\f238'; } /* '' */
.icon-subway:before { content: '\f239'; } /* '' */
.icon-expeditedssl:before { content: '\f23e'; } /* '' */
.icon-mouse-pointer:before { content: '\f245'; } /* '' */
.icon-i-cursor:before { content: '\f246'; } /* '' */
.icon-sticky-note:before { content: '\f249'; } /* '' */
.icon-sticky-note-o:before { content: '\f24a'; } /* '' */
.icon-clone:before { content: '\f24d'; } /* '' */
.icon-balance-scale:before { content: '\f24e'; } /* '' */
.icon-hourglass-o:before { content: '\f250'; } /* '' */
.icon-hourglass-1:before { content: '\f251'; } /* '' */
.icon-hourglass-2:before { content: '\f252'; } /* '' */
.icon-hourglass-3:before { content: '\f253'; } /* '' */
.icon-hourglass:before { content: '\f254'; } /* '' */
.icon-hand-grab-o:before { content: '\f255'; } /* '' */
.icon-hand-paper-o:before { content: '\f256'; } /* '' */
.icon-hand-scissors-o:before { content: '\f257'; } /* '' */
.icon-hand-lizard-o:before { content: '\f258'; } /* '' */
.icon-hand-spock-o:before { content: '\f259'; } /* '' */
.icon-hand-pointer-o:before { content: '\f25a'; } /* '' */
.icon-hand-peace-o:before { content: '\f25b'; } /* '' */
.icon-trademark:before { content: '\f25c'; } /* '' */
.icon-registered:before { content: '\f25d'; } /* '' */
.icon-creative-commons:before { content: '\f25e'; } /* '' */
.icon-get-pocket:before { content: '\f265'; } /* '' */
.icon-safari:before { content: '\f267'; } /* '' */
.icon-chrome:before { content: '\f268'; } /* '' */
.icon-firefox:before { content: '\f269'; } /* '' */
.icon-opera:before { content: '\f26a'; } /* '' */
.icon-internet-explorer:before { content: '\f26b'; } /* '' */
.icon-television:before { content: '\f26c'; } /* '' */
.icon-contao:before { content: '\f26d'; } /* '' */
.icon-amazon:before { content: '\f270'; } /* '' */
.icon-calendar-plus-o:before { content: '\f271'; } /* '' */
.icon-calendar-minus-o:before { content: '\f272'; } /* '' */
.icon-calendar-times-o:before { content: '\f273'; } /* '' */
.icon-calendar-check-o:before { content: '\f274'; } /* '' */
.icon-industry:before { content: '\f275'; } /* '' */
.icon-map-pin:before { content: '\f276'; } /* '' */
.icon-map-signs:before { content: '\f277'; } /* '' */
.icon-map-o:before { content: '\f278'; } /* '' */
.icon-map:before { content: '\f279'; } /* '' */
.icon-commenting:before { content: '\f27a'; } /* '' */
.icon-commenting-o:before { content: '\f27b'; } /* '' */
.icon-vimeo:before { content: '\f27d'; } /* '' */
.icon-reddit-alien:before { content: '\f281'; } /* '' */
.icon-edge:before { content: '\f282'; } /* '' */
.icon-credit-card-alt:before { content: '\f283'; } /* '' */
.icon-usb:before { content: '\f287'; } /* '' */
.icon-pause-circle:before { content: '\f28b'; } /* '' */
.icon-pause-circle-o:before { content: '\f28c'; } /* '' */
.icon-stop-circle:before { content: '\f28d'; } /* '' */
.icon-stop-circle-o:before { content: '\f28e'; } /* '' */
.icon-shopping-bag:before { content: '\f290'; } /* '' */
.icon-shopping-basket:before { content: '\f291'; } /* '' */
.icon-hashtag:before { content: '\f292'; } /* '' */
.icon-percent:before { content: '\f295'; } /* '' */
.icon-wpforms:before { content: '\f298'; } /* '' */
.icon-envira:before { content: '\f299'; } /* '' */
.icon-universal-access:before { content: '\f29a'; } /* '' */
.icon-wheelchair-alt:before { content: '\f29b'; } /* '' */
.icon-question-circle-o:before { content: '\f29c'; } /* '' */
.icon-blind:before { content: '\f29d'; } /* '' */
.icon-volume-control-phone:before { content: '\f2a0'; } /* '' */
.icon-braille:before { content: '\f2a1'; } /* '' */
.icon-assistive-listening-systems:before { content: '\f2a2'; } /* '' */
.icon-asl-interpreting:before { content: '\f2a4'; } /* '' */
.icon-sign-language:before { content: '\f2a7'; } /* '' */
.icon-low-vision:before { content: '\f2a8'; } /* '' */
.icon-snapchat:before { content: '\f2ab'; } /* '' */
.icon-snapchat-ghost:before { content: '\f2ac'; } /* '' */
.icon-snapchat-square:before { content: '\f2ad'; } /* '' */
.icon-google-plus-circle:before { content: '\f2b3'; } /* '' */
.icon-font-awesome:before { content: '\f2b4'; } /* '' */
.icon-github-squared:before { content: '\f300'; } /* '' */
.icon-twitter-squared:before { content: '\f304'; } /* '' */
.icon-facebook-squared:before { content: '\f308'; } /* '' */
.icon-linkedin-squared:before { content: '\f30c'; } /* '' */
.icon-gplus-1:before { content: '\f30f'; } /* '' */
.icon-evernote:before { content: '\f333'; } /* '' */
