/**
 * Basic CSS
 *
 * 1.0.0    2014-12-10 MD
 *        - Implementierung, Versionierung
 */

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {

  .container-md,
  .container-sm,
  .container {
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 1008px) {

  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1008px;
  }
}

@media (min-width: 1200px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1380px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-right: -12px;
  margin-left: -12px;
}

.row .row {
  display: block;
}

.row>* {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-top: 0;
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto>* {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1>* {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2>* {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3>* {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4>* {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5>* {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6>* {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-md-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6>* {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1008px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-lg-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6>* {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3>* {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xl-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6>* {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-10 .col-xl-8.left {
    flex: 0 0 auto;
    width: 60%;
    margin-right: 12px;
  }

  .col-xl-10 .col-xl-8.right {
    flex: 0 0 auto;
    width: 60%;
    margin-left: 12px;
    margin-right: 0px;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-10 .col-xl-4.left {
    flex: 0 0 auto;
    width: 40%;
    margin-right: 12px;
  }

  .col-xl-10 .col-xl-4.right {
    flex: 0 0 auto;
    width: 40%;
    margin-left: 12px;
    margin-right: 0px;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

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

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

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

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

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

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

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

  .align-self-md-baseline {
    align-self: baseline !important;
  }

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

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

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

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

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

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

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

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

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

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-inline-grid {
    display: inline-grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-inline-grid {
    display: inline-grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}

@font-face {
  font-family: 'IBMPlexSerif';
  font-style: normal;
  font-weight: 400;
  src: local('IBMPlexSerif-Regular'),
    local('IBMPlexSerif-Regular'),
    url('/static/fonts-gsg/IBMPlexSerif-Regular.ttf') format('opentype'),
}
@font-face {
  font-family: 'IBMPlexSerif';
  font-style: bold;
  font-weight: 700;
  src: local('IBMPlexSerif-Bold'),
    local('IBMPlexSerif-Bold'),
    url('/static/fonts-gsg/IBMPlexSerif-Bold.ttf') format('opentype'),
}

* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
br {
  border: 0 none;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

:root {
  --font-family: Calibri;
  --font-family-special: IBMPlexSerif;
  --font-size:20px;
  --font-size-h1:32px;
  --font-size-h1-special:42px;
  --font-size-h2:26px;
  --font-size-h3: 21px;
  --font-color:#000;
  --link-font-color:#000;
  --bg-color-dark-blue:#272749;
  --bg-color-light-blue:#3d3c5b;
}
html {
  width: 100%;
}
body {
  background: none repeat scroll 0 0;
  margin: 0;
  padding: 0;
  vertical-align: top;
  width: 100%;
  color: var(--font-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: 150%;
}
.is-bg-blue-900,
.background-dark-blue {
  background:var(--bg-color-dark-blue);
}
.is-bg-blue-light,
.background-light-blue {
  background-color: #3d3c5b;
}
/**************CONTAINER**************/
header {
  margin: 0 auto;
  margin-top:30px;
}
header .header-border {
  float: left;
  width: 100%;
  border-bottom: 5px solid var(--bg-color-dark-blue);
}
header #navi {
  margin-top: -50px;
  margin-bottom: 30px;
}
main {
  margin: 0 auto;
}
footer {
  margin: 0 auto;
  background: #272749;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  text-transform: uppercase;
} 
/**************ENDE CONTAINER**************/
p {
  margin-top: 0;
}
a {
  color: var(--link-font-color);
}
a:link,
a:visited,
a:active,
a:focus {
  text-decoration: none;
}
.article a {
  text-decoration: underline !important;
}
.article a:hover, 
a:hover {
  text-decoration: none !important;
}
.kontakt a:hover,
#sprachwechsel a:hover,
#breadcrump a:hover,
.ansprechpartner a:hover,
#hersteller a:hover {
    text-decoration: underline !important;
}
ul {
  list-style: none outside none;
}
.clear {
  border: 0 none !important;
  clear: both;
}
h1,
h2,
h3,
h4,
.titel {
  font-family: var(--font-family-special);
  line-height: 150%;
  color: #272749;
}
h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 50px;
  text-align: center;
}
.startseite h1 {
  font-size: var(--font-size-h1-special);
  margin-bottom: 20px;
}
h2 {
   font-size: var(--font-size-h2);
    margin-bottom: 15px;
}
h3 {
  font-size: var(--font-size-h3);
}
.errors,
.error,
.fehler {
  color: red;
  font-weight: bold;
}
input.error,
select.error,
textarea.error {
  color: #000;
  font-weight: normal;
}
input[type="text"],
textarea {
  border: 1px solid;
  font-size:18px;
  outline:none !important;
}
input[type="submit"],
input.button,
input.submitbutton,
input#abschicken {
  cursor: pointer;
  font-size:18px;
  outline:none !important;
}

input:focus {
  outline:none !important;
}
/************PARSER**************/
strong {
  font-weight: bold;
}
i {
  font-style: italic;
}
big {
  font-size: 24px;
}
small {
  font-size: 16px;
}
ul.contentliste {
  list-style-position: outside;
  list-style-image: none;
}
ul.contentliste[type="disc"] {
  list-style-type: disc;
}
ul.contentliste[type="circle"] {
  list-style-type: circle;
}
ul.contentliste[type="square"] {
  list-style-type: square;
}
.contentliste {
  list-style-type: circle;
  margin-left: 0px;
  padding-left: 15px;
}
ol.contentliste,
ul.contentliste {
  margin: 10px 0px;
}
.contentliste li {
  margin: 0px 7px;
}
ol.contentliste.decimal {
  list-style-type: decimal;
}
ol.contentliste.lowerAlpha {
  list-style-type: lower-alpha;
}
ol.contentliste.upperAlpha {
  list-style-type: upper-alpha;
}
ol.contentliste.lowerRoman {
  list-style-type: lower-roman;
}
ol.contentliste.upperRoman {
  list-style-type: upper-roman;
}
.copyright,
.caption {
  font-style: normal;
  font-size: 14px;
  padding: 5px 0px;
  color: #97A3A3 !important;
  width: 100% !important;
  padding: 0 !important;
  line-height: 150%;
}
.stand {
  display: block;
  clear: both;
  /*float: left;*/
  font-style: normal;
  font-size: 12px;
  padding: 5px 0px 0px 0px;
  margin-bottom: -8px;
  color: #97A3A3;
  text-transform: uppercase;
  margin-right: 15px;
}
.day,
.datum,
.date {
  float: left;
  font-style: normal;
  font-size: 12px;
  padding: 5px 0px 0px 0px;
  margin-bottom: -8px;
  color: #bbb;
  text-transform: uppercase;
  margin-right: 15px;
}
.image {
  position: relative;
  line-height: 150%;
  margin-top: 6px;
  margin-bottom: 10px;
}
.image img {
    width:100% !important;
    height:auto  !important;
}

.image-ganz {
    width:100% !important;
}
.image-halb {
    width:50% !important;
}
.image-drittel {
    width:33% !important;
}

.image-left {
  float: left;
  margin-right: 25px;
}
.image-right {
  float: right;
  margin-left: 25px;
}
.image-center {
  float: none;
  margin: 25px auto;
}

a.imageZoom {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 28px;
  height: 30px;
  background: url("/static/img/image_icon_zoom_0.png") no-repeat scroll 0 6px rgba(0, 0, 0, 0);
  text-indent: -10000px;
}
a.imageDownload {
  position: absolute;
  right: 30px;
  top: 0px;
  width: 28px;
  height: 30px;
  background: url("/static/img/image_icon_download_0.png") no-repeat scroll 0 6px rgba(0, 0, 0, 0);
  text-indent: -10000px;
}
.accordion {
  padding-left: 0px !important;
  border-bottom: 1px solid #cbcbcb !important;
}
.ui-accordion .ui-accordion-icons {
  padding-left: 0px !important;
  border-top: 1px solid #cbcbcb;
}
.ui-accordion .element {
  margin-top: -10px;
  padding-left: 0px !important;
  line-height: 180%;
}
.accordion h3 {
  margin-left: 0px;
  padding-left: 0px;
  text-transform: uppercase;
}
.accordion h3 a:hover {
  text-decoration: none;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*****************LOGOTEMPLATE**************/
.logo-rechts {
  float: right;
  max-width: 100%;
  height: auto !important;
}
.logo-links {
  margin-top: 28px;
  max-width: 100%;
  height: auto !important;
}
/******************NAVIGATION*****************/
#hauptnavigation {
  position: relative;
  display: flex;
  align-items: center;
  margin-left:90px;
}
#hauptnavigation .hamburger-button {
  all: unset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  font-family: var(--font-family-special);
  padding: 0;
  margin: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0px;
  font-size:20px;
}
#hauptnavigation .hamburger-button span {
    display: inline-block;
    margin-top:-3px;
}
#hauptnavigation #hamburger-button .svg-icon {
  display: block;
  width: 45px;
  height: 45px;
  float: left;
  margin-right: 20px;
}
#hauptnavigation #hamburger-button .svg-icon svg {
  width: 45px;
  height: 45px;

}
#hauptnavigation #hamburger-button.active .svg-icon svg {
    width: 45px;
    height: 45px;
}
#hauptnavigation #hamburger-button.active .svg-icon,
#hauptnavigation .close,
#hauptnavigation-flyout {
  display: none;
}
#hauptnavigation #hamburger-button.active .close,
#hauptnavigation-flyout.open {
  display: block !important;
}
#hauptnavigation-flyout {
  position: absolute;
  top: 98px;
  left: 7px;
  padding: 10px;
  padding-top: 0px;
  background: #fff;
  border: 0px;
  border-left: 1px solid #272749;
  border-right: 1px solid #272749;
  border-bottom: 5px solid #272749;
  width: calc(100% + 150px);
  z-index:99;
}
#hauptnavigation-flyout ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* vertikal anordnen */
  gap: 0.5rem;           /* Abstand zwischen den Einträgen */
}
#hauptnavigation li a {
  text-decoration:none;
  width:100%;
  display:inline-block;
  padding-top:5px;
  padding-bottom:7px;
  padding-left:10px;
  padding-right:10px;
  font-family: var(--font-family-special);
}
#hauptnavigation li:hover a {
  color:#fff;
  background:var(--bg-color-dark-blue);
}
/******************SPRACHWECHEL*****************/
#sprachwechsel {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -50px;
}
#sprachwechsel button {
  all: unset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  font-family: var(--font-family-special);
  padding: 0;
  margin: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0px;
  font-size:20px;
}
#sprachwechsel button span{
    display: inline-block;
    margin-top:-3px;
}
#sprachwechsel-flyout {
  display: none !important;
}
#sprachwechsel-flyout.open {
  display: block !important;
}
#sprachwechsel-flyout {
  position: absolute;
  top: 98px;
  left: 10px;
  padding: 10px;
  padding-top: 0px;
  background: #fff;
  border: 0px;
  border-left: 1px solid #272749;
  border-right: 1px solid #272749;
  border-bottom: 5px solid #272749;
  width: calc(100% + 150px);
  z-index: 9;
}
#sprachwechsel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* vertikal anordnen */
  gap: 0.5rem;           /* Abstand zwischen den Einträgen */
}

#sprachwechsel ul li a {
  display: inline-flex;
  justify-content: space-between; /* Text links, Flagge rechts */
  align-items: center;
  text-decoration: none;
  padding-top:5px;
  padding-bottom:7px;
  padding-left:10px;
  padding-right:10px;
  width: 100%;
}
#sprachwechsel li:hover a {
  text-decoration:underline;
}
#sprachwechsel .flagge {
  display: inline-block;
  width: 34px;
  height: 22px;
  margin-left: 15px;
  margin-right: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid #272749;
}
#sprachwechsel .flagge.de {
  background-image: url('/static/svg/de.svg'); /* deutsches Icon */
}
#sprachwechsel .flagge.ar {
  background-image: url('/static/svg/ar.svg'); 
}
#sprachwechsel .flagge.fr {
  background-image: url('/static/svg/fr.svg'); 
}
#sprachwechsel .flagge.en {
  background-image: url('/static/svg/en.svg'); /* britisches Icon */
}
#sprachwechsel .flagge.zh {
  background-image: url('/static/svg/zh.svg'); /* britisches Icon */
}
#sprachwechsel .flagge.es {
  background-image: url('/static/svg/es.svg'); /* britisches Icon */
}
#sprachwechsel .flagge.ru {
  background-image: url('/static/svg/ru.svg'); /* britisches Icon */
}
#sprachwechsel .icon_pfeil {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  background-image: url('/static/svg/pfeil-runter.svg');
}
/***************SUCHTEASER**************/
.search-form {
  display: flex;
  margin-left: -30px;
}
.search-form label {
  text-indent: -999999999px;
}
.search-group {
  display: inline-flex;
  align-items: center;
  border: 2px solid #97A3A3;
  width: 85%;
}
.search-group input {
  border: none;
  padding: 10px 30px;
  font-size: 20px;
  width: calc(100% - 50px);
}
.search-group button {
  all: unset;
  cursor: pointer;
  padding: 10px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  /* WCAG-Minimum für Touch-Targets :contentReference[oaicite:6]{index=6} */
}
.search-button svg {
  width: 40px;
  height: 40px;
}
/***************BREADCRUMP**************/
#breadcrump {
  margin-top: 40px;
  margin-bottom: 30px;
}
#breadcrump a:hover{
    text-swcoration:underline !important;
}
/*********ARTIKEL******************/

/**********SITEMAP********/

/***********TEASER**************/
/***********teaser-double*/
.teaser-double {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  box-sizing: border-box;
}
.teaser-double h2 {
    font-size:42px;
    font-weight:bold;
}
.teaser-double .teaser-item {
  border: 10px solid #fff;
  width: 50%;
  float: left;
  position: relative;
}

.teaser-double .teaser-item a {
  display: block;
  width: 100%;
  height: 100%;
}


.teaser-double .teaser-item a span {
  display: block;
  width: calc(100% - 30px);
  padding: 70px 0;
  background: rgba(39, 39, 73, 0.75);
  position: absolute;
  left: 15px;
  bottom: 15px;
  text-align: center;

}

.teaser-double .teaser-item:hover a span {
    background: rgba(39, 39, 73, 0.9);
}

.teaser-double .teaser-item a span h2{
  color:#fff;
}
.teaser-double .teaser-item-left {
  border-right: 5px solid #fff;
}

.teaser-double .teaser-item-right {
  border-left: 5px solid #fff;
}

.teaser-double .img-wrap {
  width: 50%;
  aspect-ratio: 4096 / 2734;
  overflow: hidden;
  min-height:500px;
}

/***********teaser-ganz*/

.teaser-ganz {
  width: 100%;
  min-height: 100px;
  margin-top: 50px;
  margin-bottom: 50px;
  float: left;
}
.teaser-ganz * {
  color: #fff;
  text-align: left;
}
.teaser-ganz h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 40px;
}

.teaser-ganz p,
.teaser-ganz a {
  font-size: 24px;
}

.teaser-ganz a {
  display: inline-block;
  border: 2px solid #fff;
  margin-top: 50px;
  padding: 12px 22px;
  font-weight: bold;
}
.teaser-ganz a:hover {
    background:#272749;
}

.teaser-ganz .teaser-item {
  position: relative;
  float: left;
}

.teaser-ganz .img-wrap {
  width: 100%;
  aspect-ratio: 3 / 1.7;
  /* Höhe passt sich automatisch an */
  overflow: hidden;
}

.teaser-ganz .text-wrap {
  width: 25%;
  position: absolute;
  top: 150px;
  right: 100px;
}

.teaser-ganz .fade-right {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.teaser-ganz .fade-right img {
  display: block;
  width: 100%;
  height: auto;
}

.teaser-ganz .fade-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  /* wie weit der Fade gehen soll */
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(39, 39, 73, 0) 0%, #272749 75%);
}

/***********teaser-anmelden*/

.teaser-anmelden {
  position: relative;
  background-color: #3d3c5b;
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  /* vertikal zentrieren */
  justify-content: space-between;
  /* oder center, je nach Wunsch */
  flex-wrap: wrap;
}

.teaser-anmelden h2 {
  margin: 0;
  color: #fff;
  text-align: left;
  margin: 0;
  font-size:42px;
}
.teaser-anmelden .form {
    /*width:50%;*/
}
.teaser-anmelden .form-group {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: space-between;
  /* Abstand zwischen Input und Button */
  flex-wrap: wrap;
  /* bei kleiner Breite untereinander */
  padding:15px 20px;
}

.teaser-anmelden form label {
  text-indent: -999999999px;
  display: none;
} 
.teaser-anmelden .form-group button {
  all: unset;
  display: unset;
  cursor: unset;
  padding-top: unset;
  padding-right: unset;
  padding-bottom: unset;
  padding-left: unset;
  justify-content: unset;
  align-items: unset;
  min-height: unset;
  min-width: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: #272749;
  padding: 3px 32px 5px 32px;
  font-size:24px;
}
.teaser-anmelden .anmelde-button-neu {
  font-size: 24px;
  border: 2px solid #fff;
  padding: 12px 240px;
  font-weight: bold;
  background: no-repeat;
  color: #fff;
  background: #272749;
  cursor: pointer;
  font-family: Calibri;
}
 
.teaser-anmelden .anmelde-button-neu:hover {
    border-color:#272749;
    color: #272749;
    background:#fff;
    cursor:pointer;
}
.teaser-anmelden .form-group input {
  border: none;
  font-size:24px;
  min-width: 200px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: calc(100% - 180px);
}

/***********FUSSTEMPLATE*************/
body:not(.startseite) footer {
  margin-top: 50px;
}
footer *{
    font-size:18px;
}
footer .right {
  float:right;
}

footer a {
  color:#fff;
  margin-left:20px;
  text-decoration:underline !important;
}
footer a:hover {
 text-decoration:none;
}

/***********LISTE ALLGEMEIN*************/

/***********PAGINATION*************/
.pagination {
  width: 100%;
  float: left;
  text-align: center;
}

.pagination ul li {
  display:inline;
}

.pagination ul li span,
.pagination ul li a {
  font-family: var(--font-family-special);
  font-size: 26px;
  line-height: 26px;
  padding: 0 7px;
  color: #272749;
}
.pagination ul li span {
  color: #97A3A3;
}

/***********HERSTELLERVERZEICHNIS*/
/***********PRODUKTVERZEICHNIS*/
.liste-produktkategorien-index h2,
.liste-herstellerverzeichnis-index h2 {
  background: #272749;
  color: #fff;
  text-align: center;
  float: left;
  width: 100%;
  font-size: 26px;
  line-height: 26px;
  margin: 0;
  padding-top: 15px;
  padding-bottom: 18px;
  font-family: var(--font-family-special);
}
.liste-produktkategorien-index h2 {
    text-align:left;
    padding-left:20px;
}

.liste-produktkategorien-index,
.liste-herstellerverzeichnis-index {
  float: left;
  width: 100%;
  margin-top: 65px;
}
.liste-produktkategorien-index {
  margin-top: 0px;
}
.produktkategorien {
  margin-bottom: 40px;
}
#produktkategorien {
  margin-bottom: 80px;
}

.liste-produktkategorien-index + .liste-produktkategorien-index,
.liste-herstellerverzeichnis-index + .liste-herstellerverzeichnis-index {
  margin-top: 0px;
}
.liste-herstellerverzeichnis-items li {
  text-align: center;
  border-bottom: 1px solid #272749;
  padding-top: 15px;
  padding-bottom: 15px;
  float: left;
  width: 100%;
}

.liste-produktkategorien-items li:last-child,
.liste-herstellerverzeichnis-items li:last-child {
  border-bottom: none;
}

.liste-produktkategorien-items li a,
.liste-herstellerverzeichnis-items li a {
  color: #000;
  font-weight: bold;
  font-size: 20px; 
}
.liste-produktkategorien-items li a:hover,
.liste-herstellerverzeichnis-items li a:hover {
    text-decoration:underline !important;
}


.liste-produktkategorien-items {
  float: left;
  width: calc(100% - 80px);
  padding: 0;
  column-count: 3;
  column-gap: 40px;
  list-style: disc;
  margin: 20px 40px;
}

.liste-produktkategorien-items li {
    break-inside: avoid;   /* verhindert, dass Einträge gesplittet werden */
    margin-bottom: 0.5rem;
}
/***********hersteller detail*/
#hersteller h1,
#hersteller h2 {
  text-align: left;
}

#hersteller p + br {
    display:none;
}
.rechte-spalte,
.linke-spalte {
  width:50%;
  float:left;
}
#hersteller .linke-spalte img{
  margin-bottom:15px;
}

#hersteller .subueberschrift {
    font-size:var(--font-size-h2);
    display:inline-block;
    margin-bottom:30px;
}
.hersteller-text {
  margin-top:60px;
  margin-bottom:60px;
}
.ansprechpartner-ueberschrift,
.produktkategorien-ueberschrift {
  background:#272749;
  float: left;
  width: 100%;
}
.produktkategorien p {
    margin-bottom:20px;
}
.produktkategorien p:first-child {
    margin-top:50px;
}

.produktkategorien-teaser {
  background:#3d3d5b;
  float: left;
  width: 100%;
  color:#fff;
  margin-bottom:-50px;
  padding:35px 0px 25px 0;
}
.produktkategorien-teaser h2,
.produktkategorien-ueberschrift h2,
.ansprechpartner-ueberschrift h2 {
  text-align: left;
  color:#fff;
  font-size:26px;
  line-height:26px;
  margin:0;
  padding-top: 18px;
  padding-bottom: 26px;
  font-family:var(--font-family-special);;
}
.produktkategorien-teaser h2 {
  text-align:center;
  padding-bottom: 50px;
  color:#fff;
}
.card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin: 2rem auto 1rem auto;
}
.card img {
  width: 150px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.ansprechpartner {
  margin-bottom:45px;
}
.ansprechpartner .ansprechpartner-ueberschrift + div .row div:first-child {
  margin-top:25px;
}
.ansprechpartner-infos {
  flex: 1;
}
.ansprechpartner-infos p {
  margin: 0;
}
.ansprechpartner .card-1 {
  margin-top:50px;
}
.ansprechpartner .card img {
  margin-top: 7px;
}
/* Flaggen */
.ansprechpartner-infos .flagge  {
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-left: 4px;
  background-size: cover;
  background-position: center; 
  vertical-align: middle;
}
.ansprechpartner-infos .flagge.de {
  background-image: url('/static/svg/de.svg'); /* deutsches Icon */
}
.ansprechpartner-infos .flagge.ar {
  background-image: url('/static/svg/ar.svg'); 
}
.ansprechpartner-infos .flagge.fr {
  background-image: url('/static/svg/fr.svg'); 
}
.ansprechpartner-infos .flagge.en {
  background-image: url('/static/svg/gb.svg'); /* britisches Icon */
}
.ansprechpartner-infos .flagge.zh {
  background-image: url('/static/svg/zh.svg'); /* britisches Icon */
}
.ansprechpartner-infos .flagge.es {
  background-image: url('/static/svg/es.svg'); /* britisches Icon */
}
.ansprechpartner-infos .flagge.ru {
  background-image: url('/static/svg/ru.svg'); /* britisches Icon */
}
.produktkategorien-teaser a {
  color:#fff;
}
.produktkategorien-teaser .item {
    margin:20px;
    background:treansparent;
    color:#fff;
    text-align:left;
    font-weight:bold;
}
.produktkategorien-teaser .item img {
    margin-bottom:15px;
}

/*STAGE*/
#stage {
  position: relative;
  float: left;
  width: 100%;  
}
#stage * {
    box-sizing:border-box;
}
.stage-wrapper {
  position: relative; /* Referenzpunkt für absolute Positionierung */
}
.stage-wrapper, 
.stage-wrapper .slider, 
.stage-wrapper .slider div {
  height: calc(100vh - 180px);
}
#stage h1,
#stage p {
    color:#fff !important;
    text-align:center;
}
#stage h1 {
    margin-bottom:35px;
}
#stage p {
    font-weight:bold;
    font-size:26px;
}
#stage .overlay {
    padding-bottom: 60px;
    padding-top: 35px;
}
 
.stage-wrapper img {
  width: 100%;
  height: calc(100vh - 180px);
  object-fit: cover; /* Bild wird beschnitten, füllt aber immer den Bereich */
  display: block;
}

.slick-slide img {
  display: block;
  width:100%;
}

/*SEARCH*/
#herstellerverzeichnis form .search-group {
  width: 100%;
}
.search-container h2,
.search-container .liste-herstellerverzeichnis-items li {
    text-align:left !important;
}

.search-container h2,
.search-container .liste-herstellerverzeichnis-items {
    padding-left:20px;
    padding-right:20px;
}


li.ui-menu-item {
  padding: 10px 30px;
}
.search-container .showAllItems {
  cursor:pointer;
  background: #272749;
  border: 2px solid #272749;
  color: #fff;
  width:auto;
  margin:40px auto 0 auto;
  margin:40px auto 0 auto;
  display: block;
  border: 2px solid #fff;
  padding: 12px 22px;
  font-size: 24px;
  font-weight: bold;
  font-family:Calibri;
}
.search-container .showAllItems:hover {
  background: #ffffff;
  border: 2px solid #272749;
  color: #272749;
}

.search-container .last-visible {
  border-bottom: none;
}
.ui-helper-hidden-accessible {
  display: none;
}

/*MESSEGUIDE*/
/* Panel Styling */
.serviceSection .teaser-service {
  position: fixed;
  top: 20vh;
  right: -475px; /* standardmäßig versteckt */
  width: 475px;
  padding: 26px 35px;
  background: #fff;
  font-size: 14px;
  border:4px solid var(--bg-color-dark-blue);
  border-right:none;
  box-shadow: 0px 4px 4px 0px #00000040;
  z-index: 9999999;
  transition: right 0.5s ease-in-out;
}

/* Panel geöffnet */
.serviceSection .teaser-service.opened {
  right: 0;
}

/* Button linksseitig, volle Panel-Höhe */
.serviceSection .teaser-service .sevice-show {
  position: absolute;
  top: -4px;
  left: -60px;
  width: 60px;
  height: calc(100% + 8px);
  background: #272749;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10000;
  transition: opacity 0.3s ease;
  border-bottom-color: #272749;
  border-top-color: #272749;
}

/* Button ausblenden, wenn Panel geöffnet */
.serviceSection .teaser-service.opened .sevice-show {
  opacity: 0;
  pointer-events: none;
}

/* Inhalt */
.serviceSection .teaser-service h2 {
   text-align:left; 
   font-size:32px;
   color:#000;
   margin-bottom: 10px;
}
.serviceSection .teaser-service ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.serviceSection .teaser-service li {
  margin-bottom: 10px;
}
.serviceSection .teaser-service li > div {
    padding:20px 60px;
}
.serviceSection .teaser-service li h3 {
    color:#000;
    margin-top:25px;
    font-weight:bold;
    font-family:var(--font-family);
}
.serviceSection .teaser-service img {
  max-width: 150px;
  height: auto;
  margin:0 auto;
  border: 1px solid #97A3A3;
}
.serviceSection .teaser-service li h3 {
    
}
.serviceSection .teaser-service li .details {
    font-size:21px;
}
.serviceSection .teaser-service button.kontakt {
  all: unset;
  display:block;
  margin:25px auto 0 auto;
  min-width: 44px;
  min-height: 44px;
  background: #272749;
  border:2px solid #272749;
  padding: 3px 40px 5px 40px;
  font-size: 24px;
  color:#fff;
}
.serviceSection .teaser-service button.kontakt:hover {
    background: #fff;
    color:#272749;
    
}
.serviceSection .teaser-service a:hover,
.serviceSection .teaser-service a:focus {
  text-decoration: underline;
}
.serviceSection .slick-next,
.serviceSection .slick-prev {
    width:50px !important;
    height:50px !important;
    top: 100px !important;
    z-index:9999;
}
.serviceSection .slick-prev {
    left:0px !important;
}
.serviceSection .slick-next {
    right:0px !important;
}

.serviceSection .slick-prev::before {
  background-image: url("/static/svg/pfeil-links.svg");
  background-repeat: no-repeat;
  background-size: cover; /* or contain, or specific dimensions */
  background-position: center;
  
}

.serviceSection .slick-next::before {
  background-image: url("/static/svg/pfeil-rechts.svg");
  background-repeat: no-repeat;
  background-size: cover; /* or contain, or specific dimensions */
  background-position: center;

}


.serviceSection .slick-prev::before, 
.serviceSection .slick-next::before {
    width:50px;
    height:50px;
    display:block;
}
.serviceSection .teaser-service .slick-prev::before,
.serviceSection .teaser-service .slick-next::before {
  content: '';
}

/* Button auf Desktop ausblenden, Panel immer offen */

@media (max-width: 640px) {
    .serviceSection .teaser-service {
      position: fixed;
      top: 20vh;
      right: -320px; /* standardmäßig versteckt */
      width: 320px;
      padding: 15px 15px;
      background: #fff;
      font-size: 14px;
      border:4px solid var(--bg-color-dark-blue);
      border-right:none;
      box-shadow: 0px 4px 4px 0px #00000040;
      z-index: 9999;
      transition: right 0.5s ease-in-out;
    }
    .serviceSection .teaser-service li > div {
      padding: 10px 25px;
    }
}

/*PRODUKTBILDER*/
.produkt-bilder {
    background:#272749;
    padding-top:15px;
    padding-bottom:15px;
    margin-top: -70px;
}
.img-wrap {
    /*overflow:hidden;*/
}
.produkt-bilder .item {
    padding-top:12px;
    padding-bottom:12px; 
}
.produkt-bilder .item a:hover img {
    transition: transform 500ms cubic-bezier(.2,.8,.2,1), filter 350ms;
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.48);
    -webkit-box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.48);
    -moz-box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.48);
}
.produkt-bilder .item a:hover img {
    transform: scale(1.12);
}
#ladeDaten {
  all: unset;
    background-color: unset;
    background-image: unset;
    background-position-x: unset;
    background-position-y: unset;
    background-repeat: unset;
    background-attachment: unset;
    background-clip: unset;
    background-origin: unset;
    background-size: unset;
    display: unset;
    font-size: unset;
    cursor: unset;
    padding-top: unset;
    padding-right: unset;
    padding-bottom: unset;
    padding-left: unset;
    justify-content: unset;
    align-items: unset;
    min-height: unset;
    min-width: unset;
  display: unset;
  cursor: unset;
  padding-top: unset;
  padding-right: unset;
  padding-bottom: unset;
  padding-left: unset;
  justify-content: unset;
  align-items: unset;
  min-height: unset;
  min-width: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: #272749;
  padding: 3px 32px 5px 32px;
  font-size: 24px;
  color:#fff;
  margin:20px auto;
}
/************ARBABISCH************/
body.ar *:not(.produkt-bilder-slider):not(.produkt-bilder-slider *):not(.slider-messe):not(.slider-messe *) { 
    direction:rtl;
}
body.ar .slider-messe,
body.ar .produkt-bilder-slider,
body.ar .produkt-bilder-slider * {
    direction:ltr; 
    
}
body.ar .slider-messe .details {
  text-align:right;
   direction:rtl;
}

body.ar h2,
body.ar h3 {
    text-align:right !important;
}

body.ar .teaser-double h2 {
    text-align:center !important;
}
body.ar .logo-rechts {
  float: left;
}
body.ar #hauptnavigation #hamburger-button .svg-icon {
  margin-left: 20px;
  margin-right: 0px;
}
body.ar .offset-2 {
  margin-right: 16.66666667%;
  margin-left: 0;
}
body.ar .liste-produktkategorien-index h2 {
  padding-left: 0px;
  padding-right: 20px;
}
body.ar .liste-produktkategorien-items {
    float:right;
}
body.ar .hauptnavigation-flyout {
    left:unset !important;
}
@media (max-width: 1400px) {
    .teaser-anmelden .anmelde-button-neu {
        padding: 12px 170px;
    }
}
/* Responsive */
@media (max-width: 1199px) {
    header #navi {
        margin-top: -35px;
    }
    #hauptnavigation {
        min-width:168px;
    }
    #searchteaser {
        display: block;
        width: 100%;
        margin-top: 30px;
    }
    header .search-form,
    #hauptnavigation,
    #sprachwechsel    {
      margin-left: 0px;
    }
    header .search-form .search-group{
        width:100%;
    }
    .teaser-ganz h2,
    .teaser-double h2 {
      font-size: 36px;
    }
    .teaser-ganz h2 {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .teaser-ganz .text-wrap {
      width: 100%;
      position: static;
    }
    .teaser-ganz .fade-right::after {
        background: linear-gradient(to bottom, rgba(39, 39, 73, 0) 30%, #272749 95%);
        width: 100%;
    }
    .teaser-anmelden .form {
      width: 57%;
      margin-top: 25px;
    }
    .liste-produktkategorien-items {
      column-count: 2;
    }
    .teaser-anmelden .anmelde-button-neu {
        padding: 12px 100px;
    }
    #hauptnavigation-flyout {
      top: 75px;
      left: 10px;
    }
    #sprachwechsel-flyout {
      top: 75px;
      left: 10px;
    }
}   
@media (max-width: 980px) {
    .teaser-anmelden .form {
      width: 75%;
    }
}
/*
@media (max-width: 940px) {
    .logo-teil-links {
        width: 80%;
    }
    .logo-teil-rechts {
        width: 20%;
    }
}*/
@media (max-width: 920px) {
    .teaser-double .img-wrap {
        width: 100%;
    }
    .teaser-double .teaser-item-left {
        border-right: 10px solid #fff;
    }
    .teaser-double .teaser-item-right {
        border-left: 10px solid #fff;
    }
    .teaser-double h2{
        padding-left:15px;
        padding-right:15px;
    }
}
@media (max-width: 860px) {
    footer .right {
      float: none;
    }
    footer a {
      margin-left: 0px;
      margin-right:20px;
    }
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card img {
    width: 120px;
    margin-bottom: 1rem;
  }
  .teaser-anmelden .form {
    width: 100%;
  }
    .teaser-anmelden h2 {
    font-size: 32px !important;
  }
  .rechte-spalte {
    width: 100%;
    float: left;
  }
}
@media (max-width: 700px) {
    header #navi {
        margin-top: -20px;
    }
}
@media (max-width: 640px) {
    header #navi {
        margin-top: 0px;
    }
    .liste-produktkategorien-items {
      column-count: 1;
    }    
    .serviceSection .teaser-service .sevice-show {
        left: -32px;
        width: auto;
    }
}

@media (max-width: 580px) {
    #sprachwechsel-button span,
    #hamburger-button span {
        display:none !important;
    }
    #hauptnavigation {
        max-width: 60px;
        width: 60px;
        min-width: unset;
    }
    #hauptnavigation #hamburger-button.active .svg-icon svg,
    #hauptnavigation #hamburger-button .svg-icon svg {
        width: 36px;
        height: 36px;
    }
    #sprachwechsel .flagge {
        width: 42px;
        height: 28px;
    }
    #sprachwechsel {
      margin-top: -9px;
    }
    #searchteaser {
        margin-top:10px;
        margin-bottom:20px;
    }
    #navi {
        margin-bottom:0px !important;
    }
    .teaser-anmelden .form-group input {
      font-size: 20px;
    }
    #hauptnavigation-flyout {
      position: absolute;
      top: 55px;
    }
    #sprachwechsel-flyout {
      top: 64px;
      left: 10px;
      width: calc(100% + 50px);
    }

}
@media (max-width: 520px) {
  .teaser-ganz h2, .teaser-double h2 {
    font-size: 32px;
  }
    #logo .logo-teil-links {
        width:100%;

    }
    #logo .logo-teil-links img {
        margin-top:-10px;
        margin-bottom: 10px;
    }
    #logo .logo-teil-rechts {
        width: 100%; 
        margin-bottom:-66px;
    }
    #logo .logo-teil-rechts img{
        float:right;
        width: 120px;
    }
    #searchteaser {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #hauptnavigation-flyout {
      top: 65px;
      left: 10px;
    }
    #sprachwechsel-flyout {
      top: 74px;
      left: 10px;
       
    }
    body.ar #logo .logo-teil-rechts img {
        float: left;
        width: 120px;
      }
}
@media (max-width: 490px) {
    .teaser-anmelden .form-group {
      display: block;
      float: left;
    }
    .teaser-anmelden span {
        display:block;
    }
    .teaser-anmelden .form-group input {
        width: 100%;
        border: 2px solid #272749;
        margin-bottom: 10px;
    }
    .teaser-anmelden .form-group button {
        float:right;
        display: block;
    }
}
@media (max-width: 460px) {
    header #navi {
        margin-top: 10px;
    }
    .search-group button {
        padding:10px;
    }
    .search-group input {
      border: none;
      padding: 10px 10px;
      font-size: 20px;
      width: calc(100% - 20px);
      font-size: 18px;
    }
}
/**********FANCY_BOX*************/

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  border: 0 none;
  margin: 0;
  outline: medium none;
  padding: 0;
  vertical-align: top;
}

.fancybox-wrap {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 8020;
}

.fancybox-skin {
  background: none repeat scroll 0 0 #f9f9f9;
  border-radius: 4px;
  color: #444;
  position: relative;
  text-shadow: none;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer,
.fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.fancybox-image {
  max-height: 100%;
  max-width: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url("/static/img/fancybox_sprite.png") !important;
}

#fancybox-loading {
  background-position: 0 -108px;
  cursor: pointer;
  left: 50%;
  margin-left: -22px;
  margin-top: -22px;
  opacity: 0.8;
  position: fixed;
  top: 50%;
  z-index: 8060;
}

#fancybox-loading div {
  background: url("/static/img/fancybox_sprite.png") no-repeat scroll center 0px rgba(0, 0, 0, 0);
  height: 44px;
  width: 44px;
}

.fancybox-close {
  cursor: pointer;
  height: 36px;
  position: absolute;
  right: -18px;
  top: -18px;
  width: 36px;
  z-index: 8040;
  background: url("/static/img/fancybox_sprite.png") no-repeat scroll center 0px rgba(0, 0, 0, 0);
}

.fancybox-nav {
  background: url("/static/img/fancybox_sprite.png") repeat scroll 0 0px transparent;
  cursor: pointer;
  height: 100%;
  position: absolute;
  text-decoration: none;
  top: 0;
  width: 40%;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  cursor: pointer;
  height: 34px;
  margin-top: -18px;
  position: absolute;
  top: 50%;
  visibility: hidden;
  width: 36px;
  z-index: 8040;
}

.fancybox-prev span {
  background-position: 0 -36px;
  left: 10px;
}

.fancybox-next span {
  background-position: 0 -72px;
  right: 10px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  left: -99999px;
  max-height: 99999px;
  max-width: 99999px;
  overflow: visible !important;
  position: absolute;
  top: -99999px;
  visibility: hidden;
}

.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  background: url("/static/img/fancybox_overlay.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 8010;
}

.fancybox-overlay-fixed {
  bottom: 0;
  position: fixed;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow-x: auto;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.5);
}

.fancybox-title {
  font: 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  visibility: hidden;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  bottom: 0;
  margin-bottom: -35px;
  position: absolute;
  right: 50%;
  text-align: center;
  z-index: 8050;
}

.fancybox-title-float-wrap .child {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  line-height: 24px;
  margin-right: -100%;
  padding: 2px 20px;
  text-shadow: 0 1px 2px #222;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  color: #fff;
  margin-top: 10px;
  position: relative;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 10px;
  position: absolute;
}

@media not all,
only screen and (min--moz-device-pixel-ratio: 1.5),
not all {

  #fancybox-loading,
  .fancybox-close,
  .fancybox-prev span,
  .fancybox-next span {
    background-image: url("/static/img/fancybox_sprite@2x.png");
    background-size: 44px 152px;
  }

  #fancybox-loading div {
    background-image: url("/static/img/fancybox_loading@2x.gif");
    background-size: 24px 24px;
  }
}

.liste-produktkategorie-items li {
    padding-bottom:40px;
    margin-bottom:40px;
    border-bottom: 2px solid #97A3A3
}

.slick-dots {
    display: none !important;
}

.produktkategorien-teaser .slick-next,
.produkt-bilder-slider .slick-next,
.produktkategorien-teaser .slick-prev,
.produkt-bilder-slider .slick-prev {
    width:50px !important;
    height:50px !important;
    top: calc(50%);
    z-index:9999;
}
.produktkategorien-teaser .slick-prev,
.produkt-bilder-slider .slick-prev {
    left:0px !important;
}
.produktkategorien-teaser .slick-next,
.produkt-bilder-slider .slick-next {
    right:0px !important;
}

.produktkategorien-teaser .slick-prev::before,
.produkt-bilder-slider .slick-prev::before {
  background-image: url("/static/svg/pfeil-links.svg");
  background-repeat: no-repeat;
  background-size: cover; /* or contain, or specific dimensions */
  background-position: center;
  
}

.produktkategorien-teaser .slick-next::before,
.produkt-bilder-slider .slick-next::before {
  background-image: url("/static/svg/pfeil-rechts.svg");
  background-repeat: no-repeat;
  background-size: cover; /* or contain, or specific dimensions */
  background-position: center;

}


.produktkategorien-teaser .slick-prev::before, 
.produkt-bilder-slider .slick-prev::before, 
.produktkategorien-teaser .slick-next::before,
.produkt-bilder-slider .slick-next::before {
    width:50px;
    height:50px;
    display:block;
}
.produktkategorien-teaser .slick-prev::before,
.produkt-bilder-slider .slick-prev::before,
.produktkategorien-teaser .slick-next::before,
.produkt-bilder-slider .slick-next::before {
  content: '';
}

.produktkategorien-teaser .slick-prev {
  left: -50px !important;
  top: 140px !important;
}
.produktkategorien-teaser .slick-next {
  right: -50px !important;
  top: 140px !important;
}
@media (max-width: 1140px) {
    .produktkategorien-teaser .slick-prev {
        top: calc(50% - 20px) !important;
        left: 20px !important;
    }
    .produktkategorien-teaser .slick-next {
      right: 20px !important;
      top: calc(50% - 20px) !important;
    }
}
#produktseite .slider-header .col-12 {
    width:100%;
    max-width:100%;
    height:auto;
}
#produktseite .slider-header .col-12 .item img {
    max-width:100%;
    height:auto;
    margin:0 auto;
    display:block;
}
#produktseite .produkt-bilder-slider .container,
#produktseite .produkt-bilder-slider .container .row{
  padding-right: 0px;
  padding-left: 0px;
}
.gsg-suche #searchteaser .search-form,
.informationen-fuer-hersteller #sprachwechsel-button .icon_pfeil,
.informationen-fuer-hersteller #sprachwechsel-flyout { 
    display:none !important;
}
.informationen-fuer-hersteller .sprachwechsel-button {
    cursor:inherit !important;
}
.gsg-suche #searchteaser {
    height: 68px;
}

@media (max-width: 1199px) {
    .gsg-suche #searchteaser {
        display:none !important;
    }
}
@media (max-width: 520px) {
    .gsg-suche #searchteaser {
        display: block !important;
        height: 0px;
    }
}
.hersteller-text p {
    margin-bottom: 16px;
}

#produktseite .slick-slide img {
  display: block;
  max-height: 195px;
  object-fit: contain;
}
#produktseite .slider-header .col-12 .item img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  max-height: 450px;
  object-fit: contain;
}

#produktseite .slider-header .item { 
  position:relative;
}

.gsg-get-inspired .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 240px;
}
.teaser-ganz .teaser-item { 
  position: relative;
  float: left;
  width: 100%;
}

.gsg-get-inspired .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 240px;
  background: #fff;
}

.produktkategorien-teaser .item img {
  background: #fff;
}
.produktkategorien-teaser .item {
  margin: 20px;
  background: treansparent;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.produktkategorien-teaser .slick-slide img {
  display: block; 
  height: 235px;
  object-fit: contain;
}
/* Responsive */
@media (max-width: 920px) {
  .produktkategorien-teaser .slick-slide img {
    display: block;
    height: 200px;
    object-fit: contain;
  }
}
.fancybox-lock .fancybox-overlay {
  overflow-x: auto;
  overflow-y: scroll;
  background-color: rgba(39, 39, 73, 0.9);
  z-index:9999999999999;
}
.fancybox-title-float-wrap .child {
  width: 100%;
  white-space: unset;
  border-radius: unset;
  background-color: #fff;
  font-family: Calibri;
  font-size: 18px;
  padding-top: 25px;
  padding-bottom: 25px;
  text-shadow: unset;
  color: #000;
  font-weight: normal;
}
.fancybox-title-float-wrap {
  margin-bottom:0px;
  width:100%;
  white-space:unset;
  position: relative;
}
#produktseite .slider-header {
  margin-bottom:40px;
}
#produktseite .slick-list {
  padding: 0 !important;
}

#produktseite .slider .slick-next {
  right: -80px !important;
}
#produktseite .slider .slick-prev {
  left: -80px !important;
}
#produktseite  .slider-header .col-12 .item img {
  max-height:627px;
}
#produktseite a.imageZoom {
  position: absolute;
  right: 30px;
  bottom: 15px;
  top: unset;
  width: 40px;
  height: 40px;
  display: block;
  background: url("/static/img/icon-info.png") no-repeat;
    background-size: auto;
  background-size: auto;
  background-size: contain;
  text-indent: -10000px;
}
.fancybox-close {
  cursor: pointer;
  position: absolute;
  right: -18px;
  top: -18px;
  width: 28px;
  height: 30px;
  display:block;
  z-index: 8040;
  background: url("/static/img/icon-close.png")  no-repeat;
  background-image: url("/static/img/icon-close.png") !important;
  background-size: contain;
}
@media (max-width: 1199px) {
  #produktseite .slider-header .col-12 .item img {
    max-height:450px;
  }
}
@media (max-width: 767px) {
  #produktseite .slick-slide img {
    display: block;
    max-height: 170px;
    object-fit: contain;
  }
  #produktseite .slider-header .col-12 .item,
  #produktseite .slider-header .col-12 .item img {
    max-height: 300px;
  }
}  
@media (max-width: 560px) {
  #produktseite .slider-header .col-12 .item,
  #produktseite .slider-header .col-12 .item img {
    max-height: 250px;
  }
  #produktseite .slick-slide img {
    display: block;
    max-height: 100px;
    object-fit: contain;
  }
}

@media (max-width: 1023px) {
  .stage-wrapper, .stage-wrapper .slider, .stage-wrapper .slider div {
    height: auto !important;
  }
  .stage-wrapper img {
    width: 100%;
    height: auto !important;
    object-fit: cover;
    display: block;
  }
}
@media (max-width: 640px) {
  .stage-wrapper, .stage-wrapper .slider, .stage-wrapper .slider div {
    height: 230px !important;
  }
  .stage-wrapper img {
    width: 100%;
    height: 230px !important;
    object-fit: cover;
    display: block;
  }
}

.youtube-wrapper { 
  background: rgb(244, 244, 244) url("/static/img/play_icon.png") center center / 20% no-repeat !important;
  background-size: 100px 100px !important;
  
} 