@charset "UTF-8";
/* Konfiguration */
/* TABELLEN */
/* BASSCSS - Komponenten */
/* Basscss Type Scale */
.h1 {
  font-size: 25px;
}

.h2 {
  font-size: 15px;
}

.h3 {
  font-size: 13px;
}

.h4 {
  font-size: 13px;
}

.h5 {
  font-size: 13px;
}

.h6 {
  font-size: 13px;
}

/* Basscss Typography */
.font-family-inherit {
  font-family: inherit;
}

.font-size-inherit {
  font-size: inherit;
}

.text-decoration-none {
  text-decoration: none;
}

.bold {
  font-weight: bold;
}

.regular {
  font-weight: normal;
}

.italic {
  font-style: italic;
}

.caps {
  text-transform: uppercase;
  letter-spacing: normal;
}

.left-align {
  text-align: left;
}

.center {
  text-align: center;
}

.right-align {
  text-align: right;
}

.justify {
  text-align: justify;
}

.nowrap {
  white-space: nowrap;
}

.break-word {
  word-wrap: break-word;
}

.line-height-1 {
  line-height: 1;
}

.line-height-2 {
  line-height: 1.125;
}

.line-height-3 {
  line-height: 1.25;
}

.line-height-4 {
  line-height: 1.5;
}

.list-style-none {
  list-style: none;
}

.underline {
  text-decoration: underline;
}

.truncate {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-reset {
  list-style: none;
  padding-left: 0;
}

/* Basscss Layout */
.inline {
  display: inline;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.fit {
  max-width: 100%;
}

.max-width-1 {
  max-width: 200px;
}

.max-width-2 {
  max-width: 320px;
}

.max-width-3 {
  max-width: 680px;
}

.max-width-4 {
  max-width: 960px;
}

.border-box {
  box-sizing: border-box;
}

/* Basscss Align */
.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

/* Basscss Margin */
.m0 {
  margin: 0;
}

.mt0 {
  margin-top: 0;
}

.mr0 {
  margin-right: 0;
}

.mb0 {
  margin-bottom: 0;
}

.ml0 {
  margin-left: 0;
}

.mx0 {
  margin-left: 0;
  margin-right: 0;
}

.my0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m05 {
  margin: 5px;
}

.mt05 {
  margin-top: 5px;
}

.mr05 {
  margin-right: 5px;
}

.mb05 {
  margin-bottom: 5px;
}

.ml05 {
  margin-left: 5px;
}

.mx05 {
  margin-left: 5px;
  margin-right: 5px;
}

.my05 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.m1 {
  margin: 10px;
}

.mt1 {
  margin-top: 10px;
}

.mr1 {
  margin-right: 10px;
}

.mb1 {
  margin-bottom: 10px;
}

.ml1 {
  margin-left: 10px;
}

.mx1 {
  margin-left: 10px;
  margin-right: 10px;
}

.my1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.m2 {
  margin: 20px;
}

.mt2 {
  margin-top: 20px;
}

.mr2 {
  margin-right: 20px;
}

.mb2 {
  margin-bottom: 20px;
}

.ml2 {
  margin-left: 20px;
}

.mx2 {
  margin-left: 20px;
  margin-right: 20px;
}

.my2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.m3 {
  margin: 40px;
}

.mt3 {
  margin-top: 40px;
}

.mr3 {
  margin-right: 40px;
}

.mb3 {
  margin-bottom: 40px;
}

.ml3 {
  margin-left: 40px;
}

.mx3 {
  margin-left: 40px;
  margin-right: 40px;
}

.my3 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.m4 {
  margin: 60px;
}

.mt4 {
  margin-top: 60px;
}

.mr4 {
  margin-right: 60px;
}

.mb4 {
  margin-bottom: 60px;
}

.ml4 {
  margin-left: 60px;
}

.mx4 {
  margin-left: 60px;
  margin-right: 60px;
}

.my4 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mxn1 {
  margin-left: -10px;
  margin-right: -10px;
}

.mxn2 {
  margin-left: -20px;
  margin-right: -20px;
}

.mxn3 {
  margin-left: -40px;
  margin-right: -40px;
}

.mxn4 {
  margin-left: -60px;
  margin-right: -60px;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Basscss Padding */
.p0 {
  padding: 0;
}

.pt0 {
  padding-top: 0;
}

.pr0 {
  padding-right: 0;
}

.pb0 {
  padding-bottom: 0;
}

.pl0 {
  padding-left: 0;
}

.px0 {
  padding-left: 0;
  padding-right: 0;
}

.py0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p05 {
  padding: 5px;
}

.pt05 {
  padding-top: 5px;
}

.pr05 {
  padding-right: 5px;
}

.pb05 {
  padding-bottom: 5px;
}

.pl05 {
  padding-left: 5px;
}

.py05 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.px05 {
  padding-left: 5px;
  padding-right: 5px;
}

.p1 {
  padding: 10px;
}

.pt1 {
  padding-top: 10px;
}

.pr1 {
  padding-right: 10px;
}

.pb1 {
  padding-bottom: 10px;
}

.pl1 {
  padding-left: 10px;
}

.py1 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px1 {
  padding-left: 10px;
  padding-right: 10px;
}

.p2 {
  padding: 20px;
}

.pt2 {
  padding-top: 20px;
}

.pr2 {
  padding-right: 20px;
}

.pb2 {
  padding-bottom: 20px;
}

.pl2 {
  padding-left: 20px;
}

.py2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px2 {
  padding-left: 20px;
  padding-right: 20px;
}

.p3 {
  padding: 40px;
}

.pt3 {
  padding-top: 40px;
}

.pr3 {
  padding-right: 40px;
}

.pb3 {
  padding-bottom: 40px;
}

.pl3 {
  padding-left: 40px;
}

.py3 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px3 {
  padding-left: 40px;
  padding-right: 40px;
}

.p4 {
  padding: 60px;
}

.pt4 {
  padding-top: 60px;
}

.pr4 {
  padding-right: 60px;
}

.pb4 {
  padding-bottom: 60px;
}

.pl4 {
  padding-left: 60px;
}

.py4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.px4 {
  padding-left: 60px;
  padding-right: 60px;
}

.pb5 {
  padding-bottom: 30px;
}

.px5 {
  padding-left: 30px;
  padding-right: 30px;
}

.pb6 {
  padding-bottom: 31px;
}

.px6 {
  padding-left: 31px;
  padding-right: 31px;
}

.pt7 {
  padding-top: 25px;
}

/* Basscss Grid */
.col {
  float: left;
  box-sizing: border-box;
}

.col-right {
  float: right;
  box-sizing: border-box;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 560px) {
  .sm-col {
    float: left;
    box-sizing: border-box;
  }

  .sm-col-right {
    float: right;
    box-sizing: border-box;
  }

  .sm-col-1 {
    width: 8.3333333333%;
  }

  .sm-col-2 {
    width: 16.6666666667%;
  }

  .sm-col-3 {
    width: 25%;
  }

  .sm-col-4 {
    width: 33.3333333333%;
  }

  .sm-col-5 {
    width: 41.6666666667%;
  }

  .sm-col-6 {
    width: 50%;
  }

  .sm-col-7 {
    width: 58.3333333333%;
  }

  .sm-col-8 {
    width: 66.6666666667%;
  }

  .sm-col-9 {
    width: 75%;
  }

  .sm-col-10 {
    width: 83.3333333333%;
  }

  .sm-col-11 {
    width: 91.6666666667%;
  }

  .sm-col-12 {
    width: 100%;
  }
}
@media (min-width: 740px) {
  .md-col {
    float: left;
    box-sizing: border-box;
  }

  .md-col-right {
    float: right;
    box-sizing: border-box;
  }

  .md-col-1 {
    width: 8.3333333333%;
  }

  .md-col-2 {
    width: 16.6666666667%;
  }

  .md-col-3 {
    width: 25%;
  }

  .md-col-4 {
    width: 33.3333333333%;
  }

  .md-col-5 {
    width: 41.6666666667%;
  }

  .md-col-6 {
    width: 50%;
  }

  .md-col-7 {
    width: 58.3333333333%;
  }

  .md-col-8 {
    width: 66.6666666667%;
  }

  .md-col-9 {
    width: 75%;
  }

  .md-col-10 {
    width: 83.3333333333%;
  }

  .md-col-11 {
    width: 91.6666666667%;
  }

  .md-col-12 {
    width: 100%;
  }
}
@media (min-width: 980px) {
  .lg-col {
    float: left;
    box-sizing: border-box;
  }

  .lg-col-right {
    float: right;
    box-sizing: border-box;
  }

  .lg-col-1 {
    width: 8.3333333333%;
  }

  .lg-col-2 {
    width: 16.6666666667%;
  }

  .lg-col-3 {
    width: 25%;
  }

  .lg-col-4 {
    width: 33.3333333333%;
  }

  .lg-col-5 {
    width: 41.6666666667%;
  }

  .lg-col-6 {
    width: 50%;
  }

  .lg-col-7 {
    width: 58.3333333333%;
  }

  .lg-col-8 {
    width: 66.6666666667%;
  }

  .lg-col-9 {
    width: 75%;
  }

  .lg-col-10 {
    width: 83.3333333333%;
  }

  .lg-col-11 {
    width: 91.6666666667%;
  }

  .lg-col-12 {
    width: 100%;
  }
}
.flex {
  display: flex;
}

@media (min-width: 560px) {
  .sm-flex {
    display: flex;
  }
}
@media (min-width: 740px) {
  .md-flex {
    display: flex;
  }
}
@media (min-width: 980px) {
  .lg-flex {
    display: flex;
  }
}
.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-baseline {
  align-self: baseline;
}

.self-stretch {
  align-self: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-center {
  align-content: center;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-stretch {
  align-content: stretch;
}

/* 1. Fix for Chrome 44 bug. https://code.google.com/p/chromium/issues/detail?id=506893 */
.flex-auto {
  flex: 1 1 auto;
  min-width: 0;
  /* 1 */
  min-height: 0;
  /* 1 */
  width: 100%;
  /* Fix IE */
}

.flex-none {
  flex: none;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-last {
  order: 99999;
}

.flex > div {
  box-sizing: border-box;
}

/* Basscss Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-1 {
  top: 10px;
}

.right-1 {
  right: 10px;
}

.bottom-1 {
  bottom: 10px;
}

.left-1 {
  left: 10px;
}

.top-2 {
  top: 20px;
}

.right-2 {
  right: 20px;
}

.bottom-2 {
  bottom: 20px;
}

.left-2 {
  left: 20px;
}

.top-3 {
  top: 40px;
}

.right-3 {
  right: 40px;
}

.bottom-3 {
  bottom: 40px;
}

.left-3 {
  left: 40px;
}

.top-4 {
  top: 60px;
}

.right-4 {
  right: 60px;
}

.bottom-4 {
  bottom: 60px;
}

.left-4 {
  left: 60px;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

/* Basscss Border */
.border {
  border-style: solid;
  border-width: 1px;
}

.border-top {
  border-top-style: solid;
  border-top-width: 1px;
}

.border-right {
  border-right-style: solid;
  border-right-width: 1px;
}

.border-bottom {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.border-left {
  border-left-style: solid;
  border-left-width: 1px;
}

.border-none {
  border: 0;
}

.rounded {
  border-radius: 0;
}

.circle {
  border-radius: 50%;
}

.rounded-top {
  border-radius: 0 0 0 0;
}

.rounded-right {
  border-radius: 0 0 0 0;
}

.rounded-bottom {
  border-radius: 0 0 0 0;
}

.rounded-left {
  border-radius: 0 0 0 0;
}

.not-rounded {
  border-radius: 0;
}

/* Basscss Hide */
.hide {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

@media (max-width: 559px) {
  .xs-hide {
    display: none !important;
  }
}
@media (min-width: 560px) and (max-width: 740px) {
  .sm-hide {
    display: none !important;
  }
}
@media (min-width: 740px) and (max-width: 980px) {
  .md-hide {
    display: none !important;
  }
}
@media (min-width: 980px) {
  .lg-hide {
    display: none !important;
  }
}
.display-none {
  display: none !important;
}

/* Basscss All */
.all-initial {
  all: initial;
}

.all-unset {
  all: unset;
}

.all-inherit {
  all: inherit;
}

/* Basscss Background Colors */
/*

   COLOR VARIABLES

   - Cool
   - Warm
   - Gray Scale

*/
.bg-black {
  background-color: #111;
}

.bg-gray {
  background-color: #706f6f;
}

.bg-silver {
  background-color: #ddd;
}

.bg-white {
  background-color: #fff;
}

.bg-aqua {
  background-color: #d4edfc;
}

.bg-blue {
  background-color: #5bc5f2;
}

.bg-navy {
  background-color: #001f3f;
}

.bg-teal {
  background-color: #39cccc;
}

.bg-green {
  background-color: #23ae84;
}

.bg-olive {
  background-color: #3d9970;
}

.bg-lime {
  background-color: #01ff70;
}

.bg-yellow {
  background-color: #f6c023;
}

.bg-orange {
  background-color: #ff851b;
}

.bg-red {
  background-color: #009fdf;
}

.bg-fuchsia {
  background-color: #f012be;
}

.bg-purple {
  background-color: #b10dc9;
}

.bg-maroon {
  background-color: #85144b;
}

/* Basscss Background Images */
.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-center {
  background-position: center;
}

.bg-top {
  background-position: top;
}

.bg-right {
  background-position: right;
}

.bg-bottom {
  background-position: bottom;
}

.bg-left {
  background-position: left;
}

/* Basscss Border Colors */
/*

   COLOR VARIABLES

   - Cool
   - Warm
   - Gray Scale

*/
.border-black {
  border-color: #111;
}

.border-gray {
  border-color: #706f6f;
}

.border-silver {
  border-color: #ddd;
}

.border-white {
  border-color: #fff;
}

.border-aqua {
  border-color: #d4edfc;
}

.border-blue {
  border-color: #5bc5f2;
}

.border-navy {
  border-color: #001f3f;
}

.border-teal {
  border-color: #39cccc;
}

.border-green {
  border-color: #23ae84;
}

.border-olive {
  border-color: #3d9970;
}

.border-lime {
  border-color: #01ff70;
}

.border-yellow {
  border-color: #f6c023;
}

.border-orange {
  border-color: #ff851b;
}

.border-red {
  border-color: #009fdf;
}

.border-fuchsia {
  border-color: #f012be;
}

.border-purple {
  border-color: #b10dc9;
}

.border-maroon {
  border-color: #85144b;
}

/* Basscss Btn */
.btn {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  line-height: 1.125rem;
  padding: 0.5rem 1rem;
  margin: 0;
  height: auto;
  border: 1px solid transparent;
  vertical-align: middle;
  -webkit-appearance: none;
  color: inherit;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Basscss Btn Outline */
.btn-outline,
.btn-outline:hover {
  border-color: currentcolor;
}

.btn-outline {
  border-radius: 0;
}

.btn-outline:hover {
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.0625);
}

.btn-outline:active {
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.125), inset 0 3px 4px 0 rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.125);
}

.btn-outline:disabled,
.btn-outline.is-disabled {
  opacity: .5;
}

/* Basscss Btn Primary */
.btn-primary {
  color: #fff;
  background-color: #706f6f;
  border-radius: 0;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.0625);
}

.btn-primary:active {
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.125), inset 0 3px 4px 0 rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.125);
}

.btn-primary:disabled,
.btn-primary.is-disabled {
  opacity: .5;
}

/* Basscss Colors */
/*

   COLOR VARIABLES

   - Cool
   - Warm
   - Gray Scale

*/
.black {
  color: #111;
}

.gray {
  color: #706f6f;
}

.silver {
  color: #ddd;
}

.white {
  color: #fff;
}

.aqua {
  color: #d4edfc;
}

.blue {
  color: #5bc5f2;
}

.navy {
  color: #001f3f;
}

.teal {
  color: #39cccc;
}

.green {
  color: #23ae84;
}

.olive {
  color: #3d9970;
}

.lime {
  color: #01ff70;
}

.yellow {
  color: #f6c023;
}

.orange {
  color: #ff851b;
}

.red {
  color: #009fdf;
}

.fuchsia {
  color: #f012be;
}

.purple {
  color: #b10dc9;
}

.maroon {
  color: #85144b;
}

.color-inherit {
  color: inherit;
}

.muted {
  opacity: 0.5;
}

/* Basscss Darken */
.bg-darken-1 {
  background-color: rgba(0, 0, 0, 0.0625);
}

.bg-darken-2 {
  background-color: rgba(0, 0, 0, 0.125);
}

.bg-darken-3 {
  background-color: rgba(0, 0, 0, 0.25);
}

.bg-darken-4 {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Basscss Forms */
.label {
  font-size: .875rem;
  font-weight: bold;
  display: block;
  margin-bottom: .5rem;
}

.input {
  font-family: inherit;
  font-size: inherit;
  display: block;
  width: 100%;
  height: 2.5rem;
  padding: .5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.select {
  font-family: inherit;
  font-size: inherit;
  display: block;
  width: 100%;
  height: 2.5rem;
  padding: .5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.textarea {
  font-family: inherit;
  font-size: inherit;
  display: block;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* Basscss Highlight */
/*

   COLOR VARIABLES

   - Cool
   - Warm
   - Gray Scale

*/
.hljs {
  -webkit-text-size-adjust: none;
}

.hljs-comment,
.diff .hljs-header,
.hljs-javadoc {
  color: #706f6f;
  font-style: italic;
}

.hljs-keyword,
.css .rule .hljs-keyword,
.hljs-winutils,
.nginx .hljs-title,
.hljs-subst,
.hljs-request,
.hljs-status {
  color: #111;
  font-weight: bold;
}

.hljs-number,
.hljs-hexcolor,
.ruby .hljs-constant {
  color: #3d9970;
}

.hljs-string,
.hljs-tag .hljs-value,
.hljs-phpdoc,
.hljs-dartdoc,
.tex .hljs-formula {
  color: #5bc5f2;
}

.hljs-title,
.hljs-id,
.scss .hljs-preprocessor {
  color: #5bc5f2;
  font-weight: bold;
}

.hljs-list .hljs-keyword,
.hljs-subst {
  font-weight: normal;
}

.hljs-class .hljs-title,
.hljs-type,
.vhdl .hljs-literal,
.tex .hljs-command {
  color: #001f3f;
  font-weight: bold;
}

.hljs-tag,
.hljs-tag .hljs-title,
.hljs-rules .hljs-property,
.django .hljs-tag .hljs-keyword {
  color: #001f3f;
  font-weight: normal;
}

.hljs-attribute,
.hljs-variable,
.lisp .hljs-body {
  color: #3d9970;
}

.hljs-regexp {
  color: #3d9970;
}

.hljs-symbol,
.ruby .hljs-symbol .hljs-string,
.lisp .hljs-keyword,
.clojure .hljs-keyword,
.scheme .hljs-keyword,
.tex .hljs-special,
.hljs-prompt {
  color: #b10dc9;
}

.hljs-built_in {
  color: #001f3f;
}

.hljs-preprocessor,
.hljs-pragma,
.hljs-pi,
.hljs-doctype,
.hljs-shebang,
.hljs-cdata {
  color: #706f6f;
  font-weight: bold;
}

.hljs-deletion {
  background: #f012be;
}

.hljs-addition {
  background: #01ff70;
}

.diff .hljs-change {
  background: #001f3f;
}

.hljs-chunk {
  color: #ddd;
}

/* Mapped colors */
/* Basscss Highlight */
/*

   COLOR VARIABLES

   - Cool
   - Warm
   - Gray Scale

*/
.highlight-dark .hljs {
  color: white;
  -webkit-text-size-adjust: none;
}

.highlight-dark .hljs-comment,
.highlight-dark .diff .hljs-header,
.highlight-dark .hljs-javadoc {
  color: #706f6f;
  font-style: italic;
}

.highlight-dark .hljs-keyword,
.highlight-dark .css .rule .hljs-keyword,
.highlight-dark .hljs-winutils,
.highlight-dark .nginx .hljs-title,
.highlight-dark .hljs-subst,
.highlight-dark .hljs-request,
.highlight-dark .hljs-status {
  color: #111;
  font-weight: bold;
}

.highlight-dark .hljs-number,
.highlight-dark .hljs-hexcolor,
.highlight-dark .ruby .hljs-constant {
  color: #3d9970;
}

.highlight-dark .hljs-string,
.highlight-dark .hljs-tag .hljs-value,
.highlight-dark .hljs-phpdoc,
.highlight-dark .hljs-dartdoc,
.highlight-dark .tex .hljs-formula {
  color: #5bc5f2;
}

.hljs-title,
.hljs-id,
.scss .hljs-preprocessor {
  color: #5bc5f2;
  font-weight: bold;
}

.highlight-dark .hljs-list .hljs-keyword,
.highlight-dark .hljs-subst {
  font-weight: normal;
}

.highlight-dark .hljs-class .hljs-title,
.highlight-dark .hljs-type,
.highlight-dark .vhdl .hljs-literal,
.highlight-dark .tex .hljs-command {
  color: #001f3f;
  font-weight: bold;
}

.highlight-dark .hljs-tag,
.highlight-dark .hljs-tag .hljs-title,
.highlight-dark .hljs-rules .hljs-property,
.highlight-dark .django .hljs-tag .hljs-keyword {
  color: #001f3f;
  font-weight: normal;
}

.highlight-dark .hljs-attribute,
.highlight-dark .hljs-variable,
.highlight-dark .lisp .hljs-body {
  color: #3d9970;
}

.highlight-dark .hljs-regexp {
  color: #3d9970;
}

.highlight-dark .hljs-symbol,
.highlight-dark .ruby .hljs-symbol .hljs-string,
.highlight-dark .lisp .hljs-keyword,
.highlight-dark .clojure .hljs-keyword,
.highlight-dark .scheme .hljs-keyword,
.highlight-dark .tex .hljs-special,
.highlight-dark .hljs-prompt {
  color: #b10dc9;
}

.highlight-dark .hljs-built_in {
  color: #001f3f;
}

.highlight-dark .hljs-preprocessor,
.highlight-dark .hljs-pragma,
.highlight-dark .hljs-pi,
.highlight-dark .hljs-doctype,
.highlight-dark .hljs-shebang,
.highlight-dark .hljs-cdata {
  color: #706f6f;
  font-weight: bold;
}

.highlight-dark .hljs-deletion {
  background: #f012be;
}

.highlight-dark .hljs-addition {
  background: #01ff70;
}

.highlight-dark .diff .hljs-change {
  background: #001f3f;
}

.highlight-dark .hljs-chunk {
  color: #ddd;
}

/* Basscss Input Range */
.input-range {
  vertical-align: middle;
  background-color: transparent;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
}

.input-range::-webkit-slider-thumb {
  position: relative;
  width: 0.5rem;
  height: 1.25rem;
  cursor: pointer;
  margin-top: -0.5rem;
  border-radius: 0;
  background-color: currentcolor;
  -webkit-appearance: none;
}

/* Touch screen friendly pseudo element */
.input-range::-webkit-slider-thumb:before {
  content: '';
  display: block;
  position: absolute;
  top: -0.5rem;
  left: -0.875rem;
  width: 2.25rem;
  height: 2.25rem;
  opacity: 0;
}

.input-range::-moz-range-thumb {
  width: 0.5rem;
  height: 1.25rem;
  cursor: pointer;
  border-radius: 0;
  border-color: transparent;
  border-width: 0;
  background-color: currentcolor;
}

.input-range::-webkit-slider-runnable-track {
  height: 0.25rem;
  cursor: pointer;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.input-range::-moz-range-track {
  height: 0.25rem;
  cursor: pointer;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.input-range:focus {
  outline: none;
}

/* Basscss Lighten */
.bg-lighten-1 {
  background-color: rgba(255, 255, 255, 0.0625);
}

.bg-lighten-2 {
  background-color: rgba(255, 255, 255, 0.125);
}

.bg-lighten-3 {
  background-color: rgba(255, 255, 255, 0.25);
}

.bg-lighten-4 {
  background-color: rgba(255, 255, 255, 0.5);
}

/* Basscss Media Object */
.media,
.sm-media,
.md-media,
.lg-media {
  margin-left: -20px;
  margin-right: -20px;
}

.media {
  display: flex;
}

.media-center {
  align-items: center;
}

.media-bottom {
  align-items: flex-end;
}

.media-img,
.media-body {
  padding-left: 20px;
  padding-right: 20px;
}

.media-body {
  flex: 1 1 auto;
}

@media (min-width: 560px) {
  .sm-media {
    display: flex;
  }
}
@media (min-width: 740px) {
  .md-media {
    display: flex;
  }
}
@media (min-width: 980px) {
  .lg-media {
    display: flex;
  }
}
/* Basscss Progress */
.progress {
  display: block;
  width: 100%;
  height: 0.5625rem;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.125);
  border: 0;
  border-radius: 10000px;
  -webkit-appearance: none;
}

.progress::-webkit-progress-bar {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.125);
}

.progress::-webkit-progress-value {
  -webkit-appearance: none;
  background-color: currentcolor;
}

.progress::-moz-progress-bar {
  background-color: currentcolor;
}

/* Basscss Responsive Margin */
@media (min-width: 560px) {
  .sm-m0 {
    margin: 0;
  }

  .sm-mt0 {
    margin-top: 0;
  }

  .sm-mr0 {
    margin-right: 0;
  }

  .sm-mb0 {
    margin-bottom: 0;
  }

  .sm-ml0 {
    margin-left: 0;
  }

  .sm-mx0 {
    margin-left: 0;
    margin-right: 0;
  }

  .sm-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm-m1 {
    margin: 10px;
  }

  .sm-mt1 {
    margin-top: 10px;
  }

  .sm-mr1 {
    margin-right: 10px;
  }

  .sm-mb1 {
    margin-bottom: 10px;
  }

  .sm-ml1 {
    margin-left: 10px;
  }

  .sm-mx1 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .sm-my1 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .sm-m2 {
    margin: 20px;
  }

  .sm-mt2 {
    margin-top: 20px;
  }

  .sm-mr2 {
    margin-right: 20px;
  }

  .sm-mb2 {
    margin-bottom: 20px;
  }

  .sm-ml2 {
    margin-left: 20px;
  }

  .sm-mx2 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .sm-my2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .sm-m3 {
    margin: 40px;
  }

  .sm-mt3 {
    margin-top: 40px;
  }

  .sm-mr3 {
    margin-right: 40px;
  }

  .sm-mb3 {
    margin-bottom: 40px;
  }

  .sm-ml3 {
    margin-left: 40px;
  }

  .sm-mx3 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .sm-my3 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .sm-m4 {
    margin: 60px;
  }

  .sm-mt4 {
    margin-top: 60px;
  }

  .sm-mr4 {
    margin-right: 60px;
  }

  .sm-mb4 {
    margin-bottom: 60px;
  }

  .sm-ml4 {
    margin-left: 60px;
  }

  .sm-mx4 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .sm-my4 {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .sm-mxn1 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .sm-mxn2 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .sm-mxn3 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .sm-mxn4 {
    margin-left: -60px;
    margin-right: -60px;
  }

  .sm-ml-auto {
    margin-left: auto;
  }

  .sm-mr-auto {
    margin-right: auto;
  }

  .sm-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 740px) {
  .md-m0 {
    margin: 0;
  }

  .md-mt0 {
    margin-top: 0;
  }

  .md-mr0 {
    margin-right: 0;
  }

  .md-mb0 {
    margin-bottom: 0;
  }

  .md-ml0 {
    margin-left: 0;
  }

  .md-mx0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .md-m1 {
    margin: 10px;
  }

  .md-mt1 {
    margin-top: 10px;
  }

  .md-mr1 {
    margin-right: 10px;
  }

  .md-mb1 {
    margin-bottom: 10px;
  }

  .md-ml1 {
    margin-left: 10px;
  }

  .md-mx1 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .md-my1 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .md-m2 {
    margin: 20px;
  }

  .md-mt2 {
    margin-top: 20px;
  }

  .md-mr2 {
    margin-right: 20px;
  }

  .md-mb2 {
    margin-bottom: 20px;
  }

  .md-ml2 {
    margin-left: 20px;
  }

  .md-mx2 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .md-my2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .md-m3 {
    margin: 40px;
  }

  .md-mt3 {
    margin-top: 40px;
  }

  .md-mr3 {
    margin-right: 40px;
  }

  .md-mb3 {
    margin-bottom: 40px;
  }

  .md-ml3 {
    margin-left: 40px;
  }

  .md-mx3 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .md-my3 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .md-m4 {
    margin: 60px;
  }

  .md-mt4 {
    margin-top: 60px;
  }

  .md-mr4 {
    margin-right: 60px;
  }

  .md-mb4 {
    margin-bottom: 60px;
  }

  .md-ml4 {
    margin-left: 60px;
  }

  .md-mx4 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .md-my4 {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .md-mxn1 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .md-mxn2 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .md-mxn3 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .md-mxn4 {
    margin-left: -60px;
    margin-right: -60px;
  }

  .md-ml-auto {
    margin-left: auto;
  }

  .md-mr-auto {
    margin-right: auto;
  }

  .md-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 980px) {
  .lg-m0 {
    margin: 0;
  }

  .lg-mt0 {
    margin-top: 0;
  }

  .lg-mr0 {
    margin-right: 0;
  }

  .lg-mb0 {
    margin-bottom: 0;
  }

  .lg-ml0 {
    margin-left: 0;
  }

  .lg-mx0 {
    margin-left: 0;
    margin-right: 0;
  }

  .lg-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg-m1 {
    margin: 10px;
  }

  .lg-mt1 {
    margin-top: 10px;
  }

  .lg-mr1 {
    margin-right: 10px;
  }

  .lg-mb1 {
    margin-bottom: 10px;
  }

  .lg-ml1 {
    margin-left: 10px;
  }

  .lg-mx1 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .lg-my1 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lg-m2 {
    margin: 20px;
  }

  .lg-mt2 {
    margin-top: 20px;
  }

  .lg-mr2 {
    margin-right: 20px;
  }

  .lg-mb2 {
    margin-bottom: 20px;
  }

  .lg-ml2 {
    margin-left: 20px;
  }

  .lg-mx2 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .lg-my2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .lg-m3 {
    margin: 40px;
  }

  .lg-mt3 {
    margin-top: 40px;
  }

  .lg-mr3 {
    margin-right: 40px;
  }

  .lg-mb3 {
    margin-bottom: 40px;
  }

  .lg-ml3 {
    margin-left: 40px;
  }

  .lg-mx3 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .lg-my3 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .lg-m4 {
    margin: 60px;
  }

  .lg-mt4 {
    margin-top: 60px;
  }

  .lg-mr4 {
    margin-right: 60px;
  }

  .lg-mb4 {
    margin-bottom: 60px;
  }

  .lg-ml4 {
    margin-left: 60px;
  }

  .lg-mx4 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .lg-my4 {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .lg-mxn1 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .lg-mxn2 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .lg-mxn3 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .lg-mxn4 {
    margin-left: -60px;
    margin-right: -60px;
  }

  .lg-ml-auto {
    margin-left: auto;
  }

  .lg-mr-auto {
    margin-right: auto;
  }

  .lg-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
}
/* Basscss Responsive Padding */
@media (min-width: 560px) {
  .sm-p0 {
    padding: 0;
  }

  .sm-pt0 {
    padding-top: 0;
  }

  .sm-pr0 {
    padding-right: 0;
  }

  .sm-pb0 {
    padding-bottom: 0;
  }

  .sm-pl0 {
    padding-left: 0;
  }

  .sm-px0 {
    padding-left: 0;
    padding-right: 0;
  }

  .sm-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm-p1 {
    padding: 10px;
  }

  .sm-pt1 {
    padding-top: 10px;
  }

  .sm-pr1 {
    padding-right: 10px;
  }

  .sm-pb1 {
    padding-bottom: 10px;
  }

  .sm-pl1 {
    padding-left: 10px;
  }

  .sm-px1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sm-py1 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sm-p2 {
    padding: 20px;
  }

  .sm-pt2 {
    padding-top: 20px;
  }

  .sm-pr2 {
    padding-right: 20px;
  }

  .sm-pb2 {
    padding-bottom: 20px;
  }

  .sm-pl2 {
    padding-left: 20px;
  }

  .sm-px2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sm-py2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sm-p3 {
    padding: 40px;
  }

  .sm-pt3 {
    padding-top: 40px;
  }

  .sm-pr3 {
    padding-right: 40px;
  }

  .sm-pb3 {
    padding-bottom: 40px;
  }

  .sm-pl3 {
    padding-left: 40px;
  }

  .sm-px3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sm-py3 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sm-p4 {
    padding: 60px;
  }

  .sm-pt4 {
    padding-top: 60px;
  }

  .sm-pr4 {
    padding-right: 60px;
  }

  .sm-pb4 {
    padding-bottom: 60px;
  }

  .sm-pl4 {
    padding-left: 60px;
  }

  .sm-px4 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .sm-py4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 740px) {
  .md-p0 {
    padding: 0;
  }

  .md-pt0 {
    padding-top: 0;
  }

  .md-pr0 {
    padding-right: 0;
  }

  .md-pb0 {
    padding-bottom: 0;
  }

  .md-pl0 {
    padding-left: 0;
  }

  .md-px0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .md-p1 {
    padding: 10px;
  }

  .md-pt1 {
    padding-top: 10px;
  }

  .md-pr1 {
    padding-right: 10px;
  }

  .md-pb1 {
    padding-bottom: 10px;
  }

  .md-pl1 {
    padding-left: 10px;
  }

  .md-px1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .md-py1 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .md-p2 {
    padding: 20px;
  }

  .md-pt2 {
    padding-top: 20px;
  }

  .md-pr2 {
    padding-right: 20px;
  }

  .md-pb2 {
    padding-bottom: 20px;
  }

  .md-pl2 {
    padding-left: 20px;
  }

  .md-px2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .md-py2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .md-p3 {
    padding: 40px;
  }

  .md-pt3 {
    padding-top: 40px;
  }

  .md-pr3 {
    padding-right: 40px;
  }

  .md-pb3 {
    padding-bottom: 40px;
  }

  .md-pl3 {
    padding-left: 40px;
  }

  .md-px3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .md-py3 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .md-p4 {
    padding: 60px;
  }

  .md-pt4 {
    padding-top: 60px;
  }

  .md-pr4 {
    padding-right: 60px;
  }

  .md-pb4 {
    padding-bottom: 60px;
  }

  .md-pl4 {
    padding-left: 60px;
  }

  .md-px4 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .md-py4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 980px) {
  .lg-p0 {
    padding: 0;
  }

  .lg-pt0 {
    padding-top: 0;
  }

  .lg-pr0 {
    padding-right: 0;
  }

  .lg-pb0 {
    padding-bottom: 0;
  }

  .lg-pl0 {
    padding-left: 0;
  }

  .lg-px0 {
    padding-left: 0;
    padding-right: 0;
  }

  .lg-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg-p1 {
    padding: 10px;
  }

  .lg-pt1 {
    padding-top: 10px;
  }

  .lg-pr1 {
    padding-right: 10px;
  }

  .lg-pb1 {
    padding-bottom: 10px;
  }

  .lg-pl1 {
    padding-left: 10px;
  }

  .lg-px1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .lg-py1 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .lg-p2 {
    padding: 20px;
  }

  .lg-pt2 {
    padding-top: 20px;
  }

  .lg-pr2 {
    padding-right: 20px;
  }

  .lg-pb2 {
    padding-bottom: 20px;
  }

  .lg-pl2 {
    padding-left: 20px;
  }

  .lg-px2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lg-py2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lg-p3 {
    padding: 40px;
  }

  .lg-pt3 {
    padding-top: 40px;
  }

  .lg-pr3 {
    padding-right: 40px;
  }

  .lg-pb3 {
    padding-bottom: 40px;
  }

  .lg-pl3 {
    padding-left: 40px;
  }

  .lg-px3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .lg-py3 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lg-p4 {
    padding: 60px;
  }

  .lg-pt4 {
    padding-top: 60px;
  }

  .lg-pr4 {
    padding-right: 60px;
  }

  .lg-pb4 {
    padding-bottom: 60px;
  }

  .lg-pl4 {
    padding-left: 60px;
  }

  .lg-px4 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .lg-py4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* Erweiterungen der BASSCSS-Klassen */
.mtn1 {
  margin-top: -10px;
}

.mrn1 {
  margin-right: -10px;
}

.mbn1 {
  margin-bottom: -10px;
}

.mln1 {
  margin-left: -10px;
}

.mtn2 {
  margin-top: -20px;
}

.mrn2 {
  margin-right: -20px;
}

.mbn2 {
  margin-bottom: -20px;
}

.mln2 {
  margin-left: -20px;
}

.mtn3 {
  margin-top: -40px;
}

.mrn3 {
  margin-right: -40px;
}

.mbn3 {
  margin-bottom: -40px;
}

.mln3 {
  margin-left: -40px;
}

.mtn4 {
  margin-top: -60px;
}

.mrn4 {
  margin-right: -60px;
}

.mbn4 {
  margin-bottom: -60px;
}

.mln4 {
  margin-left: -60px;
}

@media (max-width: 979px) {
  .xg-hide {
    display: none !important;
  }
}
/*
.sm-show, .md-show, .lg-show {
  display: none !important
}

@media (min-width: 560px) {
  .sm-show { display: block !important }
}

@media (min-width: 740px) {
  .md-show { display: block !important }
}

@media (min-width: 980px) {
  .lg-show { display: block !important }
}*/
@media (min-width: 560px) {
  .sm-inline {
    display: inline;
  }

  .sm-block {
    display: block;
  }

  .sm-inline-block {
    display: inline-block;
  }
}
@media (min-width: 740px) {
  .md-inline {
    display: inline;
  }

  .md-block {
    display: block;
  }

  .md-inline-block {
    display: inline-block;
  }
}
@media (min-width: 980px) {
  .lg-inline {
    display: inline;
  }

  .lg-block {
    display: block;
  }

  .lg-inline-block {
    display: inline-block;
  }
}
/* FontAwesome */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../Fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../Fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../Fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../Fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../Fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../Fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

/* Layout Styles */
* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, Verdana, sans-serif;
}

html {
  font-size: 13px;
}

body {
  min-height: 100vh;
}
body .main-form {
  margin-top: 164px;
  transition: margin-top 0.5s;
}
@media (max-width: 979px) {
  body .main-form {
    margin-top: 88px;
  }
}
body .main-form.debug {
  background-image: url("/Images/content_bkg_debug.png");
  background-position: 50% 0px;
  background-repeat: repeat-y;
}

header {
  height: 164px;
  background: url(/Images/header-shadow.png) no-repeat;
  background-position-y: bottom;
  width: 100%;
  transition: height 0.5s;
}
@media (max-width: 979px) {
  header {
    height: 119px;
  }
}
header .header-logo {
  width: 105px;
  height: 105px;
  transition: width 0.5s;
}
@media (max-width: 979px) {
  header .header-logo {
    width: 70px;
    height: 70px;
    vertical-align: middle;
  }
}

.logo-container {
  padding-bottom: 31px;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 979px) {
  .logo-container {
    padding-bottom: 29px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

aside {
  flex: 1 0 0%;
}

/* Subnavigation */
.aside-menu {
  background-color: #706f6f;
  color: white;
}
.aside-menu .aside-menu-container .aside-menu-item, .aside-menu .aside-menu-container a {
  color: white;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
  padding: 15px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid white;
}
.aside-menu .aside-menu-container .aside-menu-item-head, .aside-menu .aside-menu-container a-head {
  padding-bottom: 0;
  border-bottom: none;
}
.aside-menu .aside-menu-container a:hover {
  background-color: #009fdf;
}
.aside-menu .aside-menu-container a.active {
  background-color: #009fdf;
}
.aside-menu .aside-menu-container:last-child .aside-menu-item, .aside-menu .aside-menu-container:last-child a {
  border-bottom: none;
}

nav .menuItems a {
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
  color: #706f6f;
}
nav .menuItems a:hover, nav .menuItems a.active {
  text-decoration: underline;
}

.breadCrumbBox {
  display: none;
}

/* Mobile */
.mobile-menu-toggle {
  font-size: 30px;
  background-color: #706f6f;
  color: white;
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: 50px;
  margin-bottom: 29px;
  padding-top: 4px;
}

.mobile-menu {
  background-color: #706f6f;
  padding-top: 200px;
  color: white;
  min-height: 100%;
}
.mobile-menu a, .mobile-menu-item {
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  width: 100%;
  height: 100%;
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid white;
  box-sizing: border-box;
}
.mobile-menu a.level2, .mobile-menu-item.level2 {
  padding-left: 40px;
}
.mobile-menu a.level2.active, .mobile-menu-item.level2.active {
  background-color: white;
  color: #009fdf;
}
.mobile-menu a.active, .mobile-menu-item.active {
  background-color: #5bc5f2;
}
.mobile-menu a.toggle, .mobile-menu-item.toggle {
  cursor: pointer;
  padding-right: 52px;
  display: block;
}
.mobile-menu a.toggle.toggled:after, .mobile-menu-item.toggle.toggled:after {
  content: "\f106";
}
.mobile-menu a.toggle:after, .mobile-menu-item.toggle:after {
  content: "\f107";
  font-family: 'FontAwesome';
  font-weight: bold;
  width: 40px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 40px;
  margin-right: 12px;
}

/* SU-Mode */
.su-switchback {
  cursor: pointer;
  height: 100%;
  width: auto;
  word-break: normal;
  white-space: normal;
}
.su-switchback:hover {
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.125);
}

footer {
  position: relative;
  height: 126px;
  color: White;
  font-size: .85em;
  text-align: right;
  background-color: #009fdf;
}
footer .footer-claim {
  margin-bottom: 0;
}
footer .footerNav {
  position: absolute;
  right: 0;
  bottom: 35px;
  font-family: GillSansStd, sans-serif;
  font-size: 1.375rem;
}
footer .footer-menu-items {
  color: #fff;
  padding-left: 20px;
  padding-right: 10px;
}
footer .footer-menu-item {
  float: left;
  list-style-type: none;
  margin-right: 10px;
  margin-top: 5px;
  font-size: 12px;
}
footer .footer-menu-anchor {
  color: #fff;
  text-decoration: none;
}
footer .footer-menu-anchor:hover {
  color: #fff;
  text-decoration: underline;
}
footer ul li:first-of-type:after {
  content: "|";
  margin-left: 10px;
}
footer ul li:nth-last-of-type(n+2):after {
  content: "|";
  margin-left: 10px;
}

.expandable {
  box-sizing: content-box;
}
.expandable .toogle-text {
  position: relative;
}
.expandable h2 {
  margin: 0;
  cursor: pointer;
  padding: 10px 0;
  background: transparent;
  display: block;
  width: calc(100% - 30px);
}
.expandable h2.selected:after {
  content: "\f106";
}
.expandable h2:after {
  content: "\f107";
  font-family: 'FontAwesome';
  font-weight: normal;
  width: 30px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 25px;
}
.expandable .text {
  padding-bottom: 10px;
  background: transparent;
  width: calc(100% - 30px);
}

.content {
  /* Listen */
}
.content ul {
  list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAGCAYAAADkOT91AAAAIElEQVQImWNgYGBgWKzL/X+xLvd/BmQOXBBDAEMLQQAA4eUWOX2MOloAAAAASUVORK5CYII=");
  margin: 1rem 0 1rem 1rem;
}
.content ul li {
  margin-bottom: 0.75rem;
}
.content ul li:last-of-type {
  margin-bottom: 0;
}

/* Textstyles */
/* p-tags */
p {
  margin-bottom: 1rem;
}
p:last-of-type {
  margin-bottom: 0;
}

/* -- Headlines -- */
h1, h2, h3, h4 {
  color: #009fdf;
  font: 100%/1.4 Arial, Helvetica, Verdana, sans-serif;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  font-weight: normal;
}

h1 {
  font-size: 25px;
}

h2 {
  font-size: 15px;
  margin: 0 0 10px 0;
}

h3 {
  text-transform: none;
  font-size: 13px;
  margin: 0 0 1rem 0;
}

/* Tabellen-Styles */
table {
  border-collapse: separate;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
  /* Responsive Darstellung funktioniert nur sinnvoll mit zweispaltigen Tabellen und ohne Header */
}
table.va-middle th, table.va-middle td {
  vertical-align: middle;
}
@media (max-width: 559px) {
  table.responsive th {
    display: none;
  }
  table.responsive td {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  table.responsive td:first-of-type {
    padding-bottom: 0;
  }
  table.responsive td:last-of-type {
    padding-bottom: 1rem;
  }
}

th {
  text-align: left;
  font-weight: bold;
  vertical-align: bottom;
}

td {
  vertical-align: top;
}

th, td {
  padding: 0.5rem 10px;
  line-height: inherit;
}
th:first-of-type, td:first-of-type {
  padding-left: 0;
}
th:last-of-type, td:last-of-type {
  padding-right: 0;
}

.table-container {
  overflow-x: auto;
}
.table-container th, .table-container td {
  padding: 0.5rem 10px;
  border-bottom: none;
}
.table-container th:first-of-type, .table-container td:first-of-type {
  padding: 0.5rem 10px;
}
.table-container th:last-of-type, .table-container td:last-of-type {
  padding: 0.5rem 10px;
}
.table-container tr {
  background-color: #eeeeee;
}
.table-container tr a {
  color: #009fdf;
}
.table-container tr:nth-of-type(2n+2) {
  background-color: #fff;
}
.table-container .va-middle th, .table-container .va-middle td {
  vertical-align: middle;
}
.table-container .grid-head {
  background-color: white;
}

/* Legacy-Styles */
.grid-head {
  background-color: #E6EFF3;
  font-weight: bold;
  text-align: left;
  height: 20px;
}

.grid-even {
  background-color: #F3F2F1;
}

.grid-odd {
  background-color: #EAEBEB;
}
.grid-odd a {
  color: #fff;
}

.grid-green {
  background-color: #B8C93A;
}

/* a-tags */
a {
  color: #009fdf;
}

.valueMinus {
  color: #c93f27;
}

.valuePlus {
  color: #23ae84;
}

.success-message,
.error-message,
.info-message {
  display: block;
  border: 1px dotted #23ae84;
  padding: 5px 10px;
  margin-bottom: 20px;
}

.info-message.basket {
  margin-bottom: 4px;
}

.info-message.basket:last-child {
  margin-bottom: 0;
}

.success-message {
  color: #23ae84;
}

.error-list {
  padding: 0;
  margin-left: 0 !important;
  list-style: none;
}
.error-list .error-message {
  margin-bottom: 4px !important;
}
.error-list .error-message:first-of-type {
  margin-top: 20px !important;
}
.error-list .error-message:last-of-type {
  margin-bottom: 0 !important;
}

.error-message {
  border-color: #c93f27;
  color: #c93f27;
}

.info-message {
  border-color: #6B3550;
  color: #6B3550;
}

/* Flat-Icons */
.flaticon-16 {
    width: 16px;
    opacity: 0.6;
}

.flaticon-24 {
    width: 24px;
    opacity: 0.6;
}

.flaticon-24 + .flaticon-24 {
    margin-left: 4px;
}

.flaticon-16, .flaticon-24, .flaticon-32 {
    outline: none;
}

.flaticon-16 + .flaticon-16 {
    margin-left: 4px;
}

.flaticon-32 {
    width: 32px;
    opacity: 0.6;
}

.flaticon-32 + .flaticon-32 {
    margin-left: 8px;
}

a .flaticon-16:hover,
a .flaticon-24:hover,
a .flaticon-32:hover,
input.flaticon-16:hover,
input.flaticon-24:hover,
input.flaticon-32:hover {
    opacity: 0.8;
}

/* Spezifische Styles */
input:focus {
  outline: none;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.dropdown {
  border-radius: 0;
  border: 1px solid #706f6f;
  padding: 3px;
  min-height: 15px;
  vertical-align: middle;
}

label + .inputtext,
label + .StandardTextbox {
  margin-top: 0.3rem;
}

.inputtext,
.StandardTextbox {
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #706f6f;
  padding: 5px;
  border-radius: 0;
  min-height: 18px;
  box-sizing: border-box;
}
.inputtext.invalid,
.StandardTextbox.invalid {
  border-color: #009fdf;
}
.inputtext:disabled, .inputtext.is-disabled,
.StandardTextbox:disabled,
.StandardTextbox.is-disabled {
  opacity: .8;
  pointer-events: none;
  cursor: default;
}

.button,
.StandardButton {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  line-height: 1.125rem;
  padding: 0.5rem 1rem;
  height: auto;
  border: 1px solid transparent;
  color: #fff;
  background-color: #706f6f;
  border-radius: 0;
  min-height: 30px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.button:hover,
.StandardButton:hover {
  text-decoration: none;
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.0625);
}
.button:disabled, .button.is-disabled,
.StandardButton:disabled,
.StandardButton.is-disabled {
  opacity: .5;
  pointer-events: none;
  cursor: default;
}

/* �berschreibung der inline-Styles von .Net-Validatoren */
.validation-message[style*="inline"] {
  margin-top: 0.3rem;
  color: #009fdf !important;
  display: inline-block !important;
}

/* ALTER Slider */
.slider {
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
}

.slide-container {
  min-height: 240px;
}

.productImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #aeaeae;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.productImage.zoom {
  background-position: 50% 50%;
  background-size: auto;
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
.productImage.zoom img {
  border-width: 0px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #aeaeae;
}

.productTitle {
  width: 100%;
  font-weight: bold;
  color: #009fdf;
}

.productItem {
  color: white;
}

.productText {
  color: black;
  flex: 0 1 100%;
}

.productPriceInfo {
  font-weight: bold;
}
.productPriceInfo .productPackageUnit {
  overflow: hidden;
  text-overflow: ellipsis;
}

.productInfoContainer {
  width: 100%;
  height: 100%;
  background-color: #706f6f;
  color: white;
  font-size: 11px;
}

.negative {
  background-color: #c93f27 !important;
}

.productPointsInfo,
.productPriceInfo,
.productVariantInfo {
  background-color: #23ae84;
  color: white;
  font-size: 9px;
  text-align: center;
  flex: 1 1 100%;
  align-items: center;
  font-weight: bold;
  font-size: 11px;
}

.productVariantInfo {
  background-color: transparent;
  font-weight: inherit;
}

/* Veranstaltungen */
.workshopInfoContainer {
  gap: 10px;
}
.workshopInfoContainer .workshopInfoText {
  padding: 8px 0;
  font-weight: bold;
  font-size: 11px;
}
.workshopInfoContainer .productPriceInfo, .workshopInfoContainer .productPointsInfo {
  flex: 0 0 auto;
  padding: 8px 10px;
}

.productLink {
  max-width: 252px;
}
.productLink:hover .productPriceInfo, .productLink:hover .productPointsInfo {
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.0625);
}

.productInfobar {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}
.productInfobar:hover .productEdit {
  display: flex;
}

.productEdit {
  background-color: #009fdf;
  text-decoration: none;
  display: none;
}
.productEdit:hover {
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.0625);
}
.productEdit span {
  font-size: 33px;
  color: white;
}

.productStopper {
  margin-left: -12px;
  margin-top: 45px;
  width: 70px;
  z-index: 1;
}

/* Detailseite */
.productDetailImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #aeaeae;
  height: 240px !important;
}

.orderPanel {
  gap: 40px;
}

.productVariants {
  flex: 1 1 100%;
}

.productOrderContainer {
  background-color: #009fdf;
  flex: 1 1 100%;
  min-height: 58px;
  color: white;
  text-decoration: none;
}
.productOrderContainer a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 74px;
}
.productOrderContainer input {
  width: 40px;
  border-color: transparent;
  border-radius: 0;
  font-size: inherit;
  height: 30px;
  font-weight: bold;
  width: 50px;
}

.productOrderCartContainer:hover {
  box-shadow: inset 0 0 0 20rem rgba(0, 0, 0, 0.0625);
}

.productOrderShippingCostInfo {
  box-sizing: border-box;
  width: calc(50% - 20px);
  background-color: #009fdf;
  padding: 10px;
  margin-left: auto;
  color: white;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .productOrderShippingCostInfo {
    width: 100%;
  }
}

.product-sortable-placeholder {
  background-color: #aeaeae;
  height: 240px;
}

@media (min-width: 560px) {
  .introText {
    column-count: 2;
    column-gap: 40px;
  }
}

.news-container .newsImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #aeaeae;
  height: 240px;
}
.news-container .newsTitle {
  background-color: #d4edfc;
  width: 100%;
  font-weight: bold;
  text-transform: uppercase;
}
.news-container .newsShortText {
  color: black;
}
.news-container .newsLink {
  color: #009fdf;
}

/* Styles für den Bereich Mein Club / Mein Konto */
.importInvoicePopup {
  position: absolute;
  width: calc(100% - 2px);
  height: auto;
  border: 1px solid #009fdf;
  background-color: White;
  margin-top: 20px;
  left: 0;
  overflow-x: overlay;
}

.ui-autocomplete {
  list-style-type: none;
  border-radius: 0;
  z-index: 4;
  position: absolute !important;
}
.ui-autocomplete .ui-menu-item {
  padding: 5px 8px;
  border: 1px solid #cccccc;
  background-color: #dddddd;
  overflow: hidden;
}
.ui-autocomplete .ui-menu-item:hover {
  background-color: #ffffff;
  cursor: pointer;
}
.ui-autocomplete .ui-menu-item a {
  display: block;
  max-height: 100%;
  vertical-align: top;
  color: black;
  overflow: hidden;
}

.sbx-custom {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  box-sizing: border-box;
  font-size: 13px;
}
.sbx-custom__wrapper {
  width: 100%;
  height: 32px;
}
.sbx-custom__input {
  display: inline-block;
  transition: box-shadow .4s ease, background .4s ease;
  border: 0;
  border-radius: 0px;
  box-shadow: inset 0 0 0 1px #444444;
  background: #F5F8FA;
  padding: 0;
  padding-right: 54px;
  padding-left: 8px;
  width: 100%;
  height: 32px;
  vertical-align: middle;
  white-space: normal;
  font-size: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.sbx-custom__input::-webkit-search-decoration, .sbx-custom__input::-webkit-search-cancel-button, .sbx-custom__input::-webkit-search-results-button, .sbx-custom__input::-webkit-search-results-decoration {
  display: none;
}
.sbx-custom__input:hover {
  box-shadow: inset 0 0 0 1px #2b2b2b;
}
.sbx-custom__input:focus, .sbx-custom__input:active {
  outline: 0;
  box-shadow: inset 0 0 0 1px #009FDF;
  background: #FFFFFF;
}
.sbx-custom__input::placeholder {
  color: #BBBBBB;
}
.sbx-custom__submit {
  position: absolute;
  top: 0;
  right: 0;
  left: inherit;
  margin: 0;
  border: 0;
  border-radius: 0 0 0 0;
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
  width: 32px;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: inherit;
  user-select: none;
}
.sbx-custom__submit::before {
  display: inline-block;
  margin-right: -4px;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.sbx-custom__submit:hover, .sbx-custom__submit:active {
  cursor: pointer;
}
.sbx-custom__submit:focus {
  outline: 0;
}
.sbx-custom__submit svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: #505050;
}
.sbx-custom__reset {
  display: none;
  position: absolute;
  top: 5px;
  right: 32px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  user-select: none;
  fill: rgba(0, 0, 0, 0.5);
}
.sbx-custom__reset:focus {
  outline: 0;
}
.sbx-custom__reset svg {
  display: block;
  margin: 14px 4px 14px 0px;
  width: 14px;
  height: 14px;
}
.sbx-custom__input:valid ~ .sbx-custom__reset {
  display: block;
  animation-name: sbx-reset-in;
  animation-duration: .15s;
}
@keyframes sbx-reset-in {
  0% {
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
/* Styles für den Admin-Bereich */
.panel.stammdaten .fieldKey {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 5px;
  width: 100px;
}
.panel.stammdaten .fieldValue {
  display: inline-block;
  width: calc(100% - 100px);
}
