@charset "UTF-8";
/**
 * in_list — Checks if a value exists in a list
 *
 * @param  $value the needle
 * @param  $list  the haystack
 * @return boolen TRUE if $value is found in the $list, FALSE otherwise.   
 */
:root {
  --color-white-wine: #5a96aa;
  --color-red-wine: #961e32;
  --color-rose-wine: #d2646e;
  --color-sparkling-wine: #b0995c;
  --color-riesling-wine: #a09632;
  --color-bordeaux-red: #6d0e36;
  --color-ecru-white: #f2f2e8;
  --color-moss-green: #867e2f;
  --color-black: #1e1e1e;
  --color-grey: #d3d3d3;
  --color-white: #fff;
  --product-color: #a09632;
}

.container, .popup__content,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --tc-gutter-x: 0.75rem;
  --tc-gutter-y: 0;
  width: 100%;
  padding-right: calc(0.75rem * 0.5);
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(0.75rem * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container, .popup__content {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container, .popup__content {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container, .popup__content {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .popup__content {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container, .popup__content {
    max-width: 1320px;
  }
}
.row {
  --tc-gutter-x: 1.5rem;
  --tc-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * 0);
  margin-top: calc(-1 * var(--tc-gutter-y));
  margin-right: calc(-0.5 * 1.5rem);
  margin-right: calc(-0.5 * var(--tc-gutter-x));
  margin-left: calc(-0.5 * 1.5rem);
  margin-left: calc(-0.5 * var(--tc-gutter-x));
}
.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

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

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

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

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

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

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

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          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 {
  --tc-gutter-x: 0;
}

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

.g-1,
.gx-1 {
  --tc-gutter-x: 0.375rem;
}

.g-1,
.gy-1 {
  --tc-gutter-y: 0.375rem;
}

.g-2,
.gx-2 {
  --tc-gutter-x: 0.75rem;
}

.g-2,
.gy-2 {
  --tc-gutter-y: 0.75rem;
}

.g-3,
.gx-3 {
  --tc-gutter-x: 1.5rem;
}

.g-3,
.gy-3 {
  --tc-gutter-y: 1.5rem;
}

.g-4,
.gx-4 {
  --tc-gutter-x: 2.25rem;
}

.g-4,
.gy-4 {
  --tc-gutter-y: 2.25rem;
}

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

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

.g-6,
.gx-6 {
  --tc-gutter-x: 4.5rem;
}

.g-6,
.gy-6 {
  --tc-gutter-y: 4.5rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --tc-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --tc-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --tc-gutter-x: 0.375rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --tc-gutter-y: 0.375rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --tc-gutter-x: 0.75rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --tc-gutter-y: 0.75rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --tc-gutter-x: 1.5rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --tc-gutter-y: 1.5rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --tc-gutter-x: 2.25rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --tc-gutter-y: 2.25rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --tc-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --tc-gutter-y: 3rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --tc-gutter-x: 4.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --tc-gutter-y: 4.5rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    --tc-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --tc-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --tc-gutter-x: 0.375rem;
  }
  .g-md-1,
  .gy-md-1 {
    --tc-gutter-y: 0.375rem;
  }
  .g-md-2,
  .gx-md-2 {
    --tc-gutter-x: 0.75rem;
  }
  .g-md-2,
  .gy-md-2 {
    --tc-gutter-y: 0.75rem;
  }
  .g-md-3,
  .gx-md-3 {
    --tc-gutter-x: 1.5rem;
  }
  .g-md-3,
  .gy-md-3 {
    --tc-gutter-y: 1.5rem;
  }
  .g-md-4,
  .gx-md-4 {
    --tc-gutter-x: 2.25rem;
  }
  .g-md-4,
  .gy-md-4 {
    --tc-gutter-y: 2.25rem;
  }
  .g-md-5,
  .gx-md-5 {
    --tc-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --tc-gutter-y: 3rem;
  }
  .g-md-6,
  .gx-md-6 {
    --tc-gutter-x: 4.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --tc-gutter-y: 4.5rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    --tc-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --tc-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --tc-gutter-x: 0.375rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --tc-gutter-y: 0.375rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --tc-gutter-x: 0.75rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --tc-gutter-y: 0.75rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --tc-gutter-x: 1.5rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --tc-gutter-y: 1.5rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --tc-gutter-x: 2.25rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --tc-gutter-y: 2.25rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --tc-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --tc-gutter-y: 3rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --tc-gutter-x: 4.5rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --tc-gutter-y: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    --tc-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --tc-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --tc-gutter-x: 0.375rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --tc-gutter-y: 0.375rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --tc-gutter-x: 0.75rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --tc-gutter-y: 0.75rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --tc-gutter-x: 1.5rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --tc-gutter-y: 1.5rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --tc-gutter-x: 2.25rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --tc-gutter-y: 2.25rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --tc-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --tc-gutter-y: 3rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --tc-gutter-x: 4.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --tc-gutter-y: 4.5rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --tc-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --tc-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --tc-gutter-x: 0.375rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --tc-gutter-y: 0.375rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --tc-gutter-x: 0.75rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --tc-gutter-y: 0.75rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --tc-gutter-x: 1.5rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --tc-gutter-y: 1.5rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --tc-gutter-x: 2.25rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --tc-gutter-y: 2.25rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --tc-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --tc-gutter-y: 3rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --tc-gutter-x: 4.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --tc-gutter-y: 4.5rem;
  }
}
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
          animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
          animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(1 * 2);
          animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
          animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(1 * 3);
          animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
          animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
          animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-delay: calc(1s * 2);
          animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
          animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-delay: calc(1s * 3);
          animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
          animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-delay: calc(1s * 4);
          animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
          animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-delay: calc(1s * 5);
          animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
          animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-duration: calc(1s / 2);
          animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
          animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-duration: calc(1s * 0.8);
          animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
          animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-duration: calc(1s * 2);
          animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
          animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-duration: calc(1s * 3);
          animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
          animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
         -o-transition-duration: 1ms !important;
            transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  0%, 20%, 53%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
            transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
            transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
            transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
            transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
            transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
            transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
            transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
            transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
            transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
            transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
            transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
            transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
          animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

@keyframes shakeX {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
          animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
}

@keyframes shakeY {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
          animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
          animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
          animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  0%, 11.1%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
          animation-name: jello;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
          animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-duration: calc(1s * 1.3);
          animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
          animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
            transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
            transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
            transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
          animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
            transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
            transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
            transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
          animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
            transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
            transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
            transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
          animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
            transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
            transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
            transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
          animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
            transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
            transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
            transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
          animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
            transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
            transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
            transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
          animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
            transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
            transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
            transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
          animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
            transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
            transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
            transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
            transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
          animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-duration: calc(1s * 0.75);
          animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
          animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
            transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
            transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
            transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
            transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
            transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
            transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
            transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
            transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
            transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
            transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
            transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
            transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
          animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
            transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
            transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
            transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
            transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
            transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
            transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
            transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
            transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
            transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
            transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
            transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
            transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
            transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
            transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
            transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
            transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
            transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
            transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
            transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
            transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
            transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
            transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
            transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
            transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
            transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
            transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
            transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
            transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
            transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
            transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
            transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
            transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
            transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
            transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
            transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
            transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-duration: calc(1s * 0.75);
          animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
          animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
            transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
            transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
            transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
            transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
            transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
            transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
            transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
            transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
            transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
            transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
            transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
            transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
            transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
            transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
            transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
            transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
            transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
            transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
            transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
            transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
            transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
          animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
            transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
            transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
            transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
            transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
            transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
            transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
            transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
            transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
            transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
          animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
          animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
            transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
            transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
            transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
          animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
            transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
            transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
            transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
          animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
          animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
            transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
            transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
            transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
          animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
          animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
          animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
            transform: translate3d(-100%, -100%, 0);
  }
}

@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
            transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
            transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
          animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
            transform: translate3d(100%, -100%, 0);
  }
}

@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
            transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
            transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
          animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
            transform: translate3d(100%, 100%, 0);
  }
}

@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
            transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
            transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
          animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }
}

@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
          animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  -webkit-animation-name: flip;
          animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-duration: calc(1s * 0.75);
          animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
          animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-duration: calc(1s * 0.75);
          animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
          animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
          animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
            transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
            transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
            transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
          animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
          animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
            transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
            transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
            transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
          animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
          animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-duration: calc(1s * 2);
          animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
          animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
          animation-name: hinge;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
          animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
          animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
          animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
            transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
            transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
            transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
          animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
            transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
            transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
            transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
          animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
          animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}

.animate__animated {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

[class*=fadeIn] {
  opacity: 0;
}

.-start-animation {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.animate__animated.animate__delay-0-5s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-delay: calc(1s * 0.5);
          animation-delay: calc(1s * 0.5);
  -webkit-animation-delay: calc(var(--animate-delay) * 0.5);
          animation-delay: calc(var(--animate-delay) * 0.5);
  animation-delay: calc(var(--animate-delay) * 0.5);
}

.animate__animated.animate__delay-1-5s {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-delay: calc(1s * 1.5);
          animation-delay: calc(1s * 1.5);
  -webkit-animation-delay: calc(var(--animate-delay) * 1.5);
          animation-delay: calc(var(--animate-delay) * 1.5);
  animation-delay: calc(var(--animate-delay) * 1.5);
}

.animate__animated.animate__delay-2-5s {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-delay: calc(1s * 2.5);
          animation-delay: calc(1s * 2.5);
  -webkit-animation-delay: calc(var(--animate-delay) * 2.5);
          animation-delay: calc(var(--animate-delay) * 2.5);
  animation-delay: calc(var(--animate-delay) * 2.5);
}

/*******************************************************************************
 * reboot.scss
 * @author Tobias Braner
 * Based on Bootstrap reboot.scss
 * The purpose is to reset the browser styles, this is a trimmed down version
 * that resets only stuff that is commonly needed when creating real websites.
 * Note that some elements are kind of reset in the spaces.scss (e.g. p).
*******************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Fira Sans", system-ui, -apple-system, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: #1e1e1e;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

blockquote {
  margin: 1rem 0 0;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.9375rem;
}

sub,
sup {
  position: relative;
  font-size: 0.9375rem;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #1e1e1e;
  text-decoration: underline;
}
a:hover {
  color: #1e1e1e;
  text-decoration: none;
}

a:not([href], [class]), a:not([href], [class]):hover {
  color: inherit;
  text-decoration: none;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date],
[type=datetime-local],
[type=month],
[type=week],
[type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
          appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

[hidden] {
  display: none !important;
}

.triggercode #BorlabsCookieBox .cookie-box > div > div > div > div._brlbs-flex-center,
.triggercode #BorlabsCookieBox .cookie-preference > div > div > div > div > div > div._brlbs-flex-center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.triggercode #BorlabsCookieBox .cookie-box > div > div > div > div._brlbs-flex-center .cookie-logo,
.triggercode #BorlabsCookieBox .cookie-preference > div > div > div > div > div > div._brlbs-flex-center .cookie-logo {
  max-width: 100px;
  margin: 0.75rem;
}
.triggercode #BorlabsCookieBox ._brlbs-btn,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
  color: #fff !important;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:hover,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:hover {
  text-decoration: none;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:disabled,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:disabled {
  opacity: 0.5;
}
.triggercode #BorlabsCookieBox ._brlbs-btn svg,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:hover svg,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:hover svg {
  fill: #fff;
  color: #fff;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:focus,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:focus {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:focus:hover,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:focus:hover {
  text-decoration: none;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:focus:disabled,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:focus:disabled {
  opacity: 0.5;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:focus svg,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:focus svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.triggercode #BorlabsCookieBox .brlbs-btn-accept-all {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background-color: #a09632 !important;
  border-color: #a09632 !important;
  color: #fff !important;
}
.triggercode #BorlabsCookieBox .brlbs-btn-accept-all:hover {
  text-decoration: none;
}
.triggercode #BorlabsCookieBox .brlbs-btn-accept-all:disabled {
  opacity: 0.5;
}
.triggercode #BorlabsCookieBox .brlbs-btn-accept-all svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.triggercode #BorlabsCookieBox .brlbs-btn-accept-all:hover {
  background-color: #797226 !important;
  border-color: #797226 !important;
  color: #fff !important;
}
.triggercode #BorlabsCookieBox .brlbs-btn-accept-all svg {
  fill: #fff;
  color: #fff;
}

.triggercode #BorlabsCookieBox .cookie-logo {
  max-width: none;
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.triggercode #BorlabsCookieBox ._brlbs-flex-center,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-dialog-box-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.triggercode .BorlabsCookie .col-sm-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.triggercode #BorlabsCookieBox .bcac-item p {
  font-size: 0.9375rem;
}

.triggercode #BorlabsCookieBox .brlbs-cmpnt-tab-active,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-tab-inactive:hover {
  background-color: #a09632 !important;
  color: #fff;
  border-color: #a09632 !important;
}

.triggercode #BorlabsCookieBox .brlbs-cmpnt-link.brlbs-cmpnt-back-button,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-link.brlbs-cmpnt-back-button {
  color: #a09632;
}

.triggercode #BorlabsCookieBox .brlbs-cmpnt-card .brlbs-cmpnt-accordion-toggle,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-card .brlbs-cmpnt-accordion-toggle *,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-card .brlbs-cmpnt-accordion-toggle,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-card .brlbs-cmpnt-accordion-toggle *,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-dialog-entrance-description a,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-dialog-entrance-description a,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-link:hover,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-link:hover {
  color: #a09632 !important;
}

.triggercode #BorlabsCookieBox .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}
.triggercode #BorlabsCookieBox .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm:hover,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm:hover {
  text-decoration: none;
}
.triggercode #BorlabsCookieBox .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm:disabled,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm:disabled {
  opacity: 0.5;
}
.triggercode #BorlabsCookieBox .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm svg,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.triggercode #BorlabsCookieBox .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm svg,
.triggercode .brlbs-cmpnt-container .brlbs-cmpnt-link.brlbs-cmpnt-btn-sm svg {
  fill: #fff;
}

.triggercode #BorlabsCookieBox ._brlbs-btn svg,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn svg {
  fill: #fff;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:hover svg,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:hover svg {
  fill: #fff;
}
.triggercode #BorlabsCookieBox ._brlbs-btn:focus svg,
.triggercode #BorlabsCookieBox .brlbs-cmpnt-btn:focus svg {
  fill: #fff;
}

body {
  -ms-hyphens: auto;
      hyphens: auto;
  /* stylelint-disable-next-line */
  -webkit-hyphens: auto;
  -webkit-font-smoothing: antialiased;
  margin-top: 4.5rem;
  overflow-x: hidden;
}
@media (max-width: 991.98px) {
  body {
    margin-top: 4rem;
  }
}

main {
  overflow-x: clip;
}

@media (max-width: 991.98px) {
  .container, .popup__content,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    --tc-gutter-x: 2rem;
  }
}

img,
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.row:not(.main__content > .row) {
  margin-right: calc(-0.5 * var(--tc-gutter-x)) !important;
  margin-left: calc(-0.5 * var(--tc-gutter-x)) !important;
}

@font-face {
  font-family: "Example Headline Font";
  src: url("../fonts/Example-Headline-Font.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Example Body Font";
  src: url("../fonts/Example-Body-Font.woff2") format("woff2"), url("../fonts/Example-Body-Font.woff") format("woff"), url("../fonts/Example-Body-Font.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
  font-style: normal;
}
.wp-block-group.is-position-sticky {
  position: sticky !important;
  top: calc(4.5rem + 1.5rem);
}
.admin-bar .wp-block-group.is-position-sticky {
  top: calc(4.5rem + 1.5rem + 32px);
}

@media (max-width: 991.98px) {
  .wp-block-image img {
    max-height: 50vh;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left;
       object-position: left;
  }
}

.has-primary-background-color {
  position: relative;
  background-color: #a09632;
  color: #1e1e1e;
}
.has-primary-background-color a:not(.btn) {
  color: #1e1e1e;
}
.has-primary-background-color.has-transparent-background-color, .editor-styles-wrapper .has-primary-background-color.has-transparent-background-color {
  background-color: rgba(160, 150, 50, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-primary-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-primary-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #a09632;
  }
}

.main__content > .wp-block-group.has-primary-background-color,
.product__content > .wp-block-group.has-primary-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-primary-background-color::before,
.product__content > .wp-block-group.has-primary-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #a09632;
  z-index: -2;
}

.has-primary-color {
  color: #a09632;
}

.block__icon--color-primary svg {
  fill: #a09632;
  color: #a09632;
}

.has-secondary-background-color {
  position: relative;
  background-color: #1e1e1e;
  color: #fff;
}
.has-secondary-background-color a:not(.btn) {
  color: #fff;
}
.has-secondary-background-color.has-transparent-background-color, .editor-styles-wrapper .has-secondary-background-color.has-transparent-background-color {
  background-color: rgba(30, 30, 30, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-secondary-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-secondary-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #1e1e1e;
  }
}

.main__content > .wp-block-group.has-secondary-background-color,
.product__content > .wp-block-group.has-secondary-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-secondary-background-color::before,
.product__content > .wp-block-group.has-secondary-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #1e1e1e;
  z-index: -2;
}

.has-secondary-color {
  color: #1e1e1e;
}

.block__icon--color-secondary svg {
  fill: #1e1e1e;
  color: #1e1e1e;
}

.has-white-background-color {
  position: relative;
  background-color: #fff;
  color: #1e1e1e;
}
.has-white-background-color a:not(.btn) {
  color: #1e1e1e;
}
.has-white-background-color.has-transparent-background-color, .editor-styles-wrapper .has-white-background-color.has-transparent-background-color {
  background-color: rgba(255, 255, 255, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-white-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-white-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #fff;
  }
}

.main__content > .wp-block-group.has-white-background-color,
.product__content > .wp-block-group.has-white-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-white-background-color::before,
.product__content > .wp-block-group.has-white-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #fff;
  z-index: -2;
}

.has-white-color {
  color: #fff;
}

.block__icon--color-white svg {
  fill: #fff;
  color: #fff;
}

.has-black-background-color {
  position: relative;
  background-color: #1e1e1e;
  color: #fff;
}
.has-black-background-color a:not(.btn) {
  color: #fff;
}
.has-black-background-color.has-transparent-background-color, .editor-styles-wrapper .has-black-background-color.has-transparent-background-color {
  background-color: rgba(30, 30, 30, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-black-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-black-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #1e1e1e;
  }
}

.main__content > .wp-block-group.has-black-background-color,
.product__content > .wp-block-group.has-black-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-black-background-color::before,
.product__content > .wp-block-group.has-black-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #1e1e1e;
  z-index: -2;
}

.has-black-color {
  color: #1e1e1e;
}

.block__icon--color-black svg {
  fill: #1e1e1e;
  color: #1e1e1e;
}

.has-grey-background-color {
  position: relative;
  background-color: #d3d3d3;
  color: #1e1e1e;
}
.has-grey-background-color a:not(.btn) {
  color: #1e1e1e;
}
.has-grey-background-color.has-transparent-background-color, .editor-styles-wrapper .has-grey-background-color.has-transparent-background-color {
  background-color: rgba(211, 211, 211, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-grey-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-grey-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #d3d3d3;
  }
}

.main__content > .wp-block-group.has-grey-background-color,
.product__content > .wp-block-group.has-grey-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-grey-background-color::before,
.product__content > .wp-block-group.has-grey-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #d3d3d3;
  z-index: -2;
}

.has-grey-color {
  color: #d3d3d3;
}

.block__icon--color-grey svg {
  fill: #d3d3d3;
  color: #d3d3d3;
}

.has-riesling-wine-background-color {
  position: relative;
  background-color: #a09632;
  color: #1e1e1e;
}
.has-riesling-wine-background-color a:not(.btn) {
  color: #1e1e1e;
}
.has-riesling-wine-background-color.has-transparent-background-color, .editor-styles-wrapper .has-riesling-wine-background-color.has-transparent-background-color {
  background-color: rgba(160, 150, 50, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-riesling-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-riesling-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #a09632;
  }
}

.main__content > .wp-block-group.has-riesling-wine-background-color,
.product__content > .wp-block-group.has-riesling-wine-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-riesling-wine-background-color::before,
.product__content > .wp-block-group.has-riesling-wine-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #a09632;
  z-index: -2;
}

.has-riesling-wine-color {
  color: #a09632;
}

.block__icon--color-riesling-wine svg {
  fill: #a09632;
  color: #a09632;
}

.has-white-wine-background-color {
  position: relative;
  background-color: #5a96aa;
  color: #1e1e1e;
}
.has-white-wine-background-color a:not(.btn) {
  color: #1e1e1e;
}
.has-white-wine-background-color.has-transparent-background-color, .editor-styles-wrapper .has-white-wine-background-color.has-transparent-background-color {
  background-color: rgba(90, 150, 170, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-white-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-white-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #5a96aa;
  }
}

.main__content > .wp-block-group.has-white-wine-background-color,
.product__content > .wp-block-group.has-white-wine-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-white-wine-background-color::before,
.product__content > .wp-block-group.has-white-wine-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #5a96aa;
  z-index: -2;
}

.has-white-wine-color {
  color: #5a96aa;
}

.block__icon--color-white-wine svg {
  fill: #5a96aa;
  color: #5a96aa;
}

.has-red-wine-background-color {
  position: relative;
  background-color: #961e32;
  color: #fff;
}
.has-red-wine-background-color a:not(.btn) {
  color: #fff;
}
.has-red-wine-background-color.has-transparent-background-color, .editor-styles-wrapper .has-red-wine-background-color.has-transparent-background-color {
  background-color: rgba(150, 30, 50, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-red-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-red-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #961e32;
  }
}

.main__content > .wp-block-group.has-red-wine-background-color,
.product__content > .wp-block-group.has-red-wine-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-red-wine-background-color::before,
.product__content > .wp-block-group.has-red-wine-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #961e32;
  z-index: -2;
}

.has-red-wine-color {
  color: #961e32;
}

.block__icon--color-red-wine svg {
  fill: #961e32;
  color: #961e32;
}

.has-rose-wine-background-color {
  position: relative;
  background-color: #d2646e;
  color: #1e1e1e;
}
.has-rose-wine-background-color a:not(.btn) {
  color: #1e1e1e;
}
.has-rose-wine-background-color.has-transparent-background-color, .editor-styles-wrapper .has-rose-wine-background-color.has-transparent-background-color {
  background-color: rgba(210, 100, 110, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-rose-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-rose-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #d2646e;
  }
}

.main__content > .wp-block-group.has-rose-wine-background-color,
.product__content > .wp-block-group.has-rose-wine-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-rose-wine-background-color::before,
.product__content > .wp-block-group.has-rose-wine-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #d2646e;
  z-index: -2;
}

.has-rose-wine-color {
  color: #d2646e;
}

.block__icon--color-rose-wine svg {
  fill: #d2646e;
  color: #d2646e;
}

.has-sparkling-wine-background-color {
  position: relative;
  background-color: #b0995c;
  color: #1e1e1e;
}
.has-sparkling-wine-background-color a:not(.btn) {
  color: #1e1e1e;
}
.has-sparkling-wine-background-color.has-transparent-background-color, .editor-styles-wrapper .has-sparkling-wine-background-color.has-transparent-background-color {
  background-color: rgba(176, 153, 92, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-sparkling-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-sparkling-wine-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #b0995c;
  }
}

.main__content > .wp-block-group.has-sparkling-wine-background-color,
.product__content > .wp-block-group.has-sparkling-wine-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-sparkling-wine-background-color::before,
.product__content > .wp-block-group.has-sparkling-wine-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #b0995c;
  z-index: -2;
}

.has-sparkling-wine-color {
  color: #b0995c;
}

.block__icon--color-sparkling-wine svg {
  fill: #b0995c;
  color: #b0995c;
}

.has-moss-green-background-color {
  position: relative;
  background-color: #867e2f;
  color: #fff;
}
.has-moss-green-background-color a:not(.btn) {
  color: #fff;
}
.has-moss-green-background-color.has-transparent-background-color, .editor-styles-wrapper .has-moss-green-background-color.has-transparent-background-color {
  background-color: rgba(134, 126, 47, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-moss-green-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-moss-green-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #867e2f;
  }
}

.main__content > .wp-block-group.has-moss-green-background-color,
.product__content > .wp-block-group.has-moss-green-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-moss-green-background-color::before,
.product__content > .wp-block-group.has-moss-green-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #867e2f;
  z-index: -2;
}

.has-moss-green-color {
  color: #867e2f;
}

.block__icon--color-moss-green svg {
  fill: #867e2f;
  color: #867e2f;
}

.has-bordeaux-red-background-color {
  position: relative;
  background-color: #6d0e36;
  color: #fff;
}
.has-bordeaux-red-background-color a:not(.btn) {
  color: #fff;
}
.has-bordeaux-red-background-color.has-transparent-background-color, .editor-styles-wrapper .has-bordeaux-red-background-color.has-transparent-background-color {
  background-color: rgba(109, 14, 54, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-bordeaux-red-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-bordeaux-red-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #6d0e36;
  }
}

.main__content > .wp-block-group.has-bordeaux-red-background-color,
.product__content > .wp-block-group.has-bordeaux-red-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-bordeaux-red-background-color::before,
.product__content > .wp-block-group.has-bordeaux-red-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #6d0e36;
  z-index: -2;
}

.has-bordeaux-red-color {
  color: #6d0e36;
}

.block__icon--color-bordeaux-red svg {
  fill: #6d0e36;
  color: #6d0e36;
}

.has-ecru-white-background-color {
  position: relative;
  background-color: #f2f2e8;
  color: #1e1e1e;
}
.has-ecru-white-background-color a:not(.btn) {
  color: #1e1e1e;
}
.has-ecru-white-background-color.has-transparent-background-color, .editor-styles-wrapper .has-ecru-white-background-color.has-transparent-background-color {
  background-color: rgba(242, 242, 232, 0.55) !important;
}
@media (max-width: 767.98px) {
  .has-ecru-white-background-color.has-transparent-background-color.remove-transparent-background-mobile, .editor-styles-wrapper .has-ecru-white-background-color.has-transparent-background-color.remove-transparent-background-mobile {
    background-color: #f2f2e8;
  }
}

.main__content > .wp-block-group.has-ecru-white-background-color,
.product__content > .wp-block-group.has-ecru-white-background-color {
  background-color: transparent;
}
.main__content > .wp-block-group.has-ecru-white-background-color::before,
.product__content > .wp-block-group.has-ecru-white-background-color::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  left: -100vw;
  right: -100vw;
  background-color: #f2f2e8;
  z-index: -2;
}

.has-ecru-white-color {
  color: #f2f2e8;
}

.block__icon--color-ecru-white svg {
  fill: #f2f2e8;
  color: #f2f2e8;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
.wp-block-image figcaption {
  margin-bottom: 0;
}

.wp-block-columns {
  margin-bottom: 0;
}

.main__content {
  padding-top: calc(1.575rem + 3.9vw);
  padding-bottom: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .main__content {
    padding-top: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .main__content {
    padding-bottom: 4.5rem;
  }
}
.main__content > * {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .main__content > * {
    width: 100%;
  }
}
.main__content > .row {
  width: calc(80% + var(--tc-gutter-x));
}
@media (max-width: 991.98px) {
  .main__content > .row {
    margin-left: calc(-0.5 * var(--tc-gutter-x));
    margin-right: calc(-0.5 * var(--tc-gutter-x));
    width: calc(100% + var(--tc-gutter-x));
  }
}
.main__content > .alignwide {
  width: 100%;
}
.main__content > .alignwide > * {
  max-width: none;
  max-width: initial;
}
.main__content > .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: auto;
  max-width: 100vw;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.main__content p,
.main__content ul,
.main__content ol,
.main__content blockquote,
.product__content p,
.product__content ul,
.product__content ol,
.product__content blockquote {
  position: relative;
  margin-top: 1rem;
}
.main__content .wp-block-image figcaption,
.product__content .wp-block-image figcaption {
  position: relative;
  margin-top: 0.75rem;
}
.main__content p:first-child,
.main__content ul:first-child,
.main__content ol:first-child,
.main__content blockquote,
.product__content p:first-child,
.product__content ul:first-child,
.product__content ol:first-child,
.product__content blockquote {
  margin-top: 0;
}
.main__content > * + h2,
.product__content > * + h2 {
  position: relative;
  margin-top: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .main__content > * + h2,
  .product__content > * + h2 {
    margin-top: 4.5rem;
  }
}
.main__content h2:first-child,
.product__content h2:first-child {
  margin-top: 0;
}
.main__content > * + h3,
.product__content > * + h3 {
  position: relative;
  margin-top: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .main__content > * + h3,
  .product__content > * + h3 {
    margin-top: 2.25rem;
  }
}
.main__content h3:first-child,
.product__content h3:first-child {
  margin-top: 0;
}
.main__content > * + h4,
.product__content > * + h4 {
  position: relative;
  margin-top: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .main__content > * + h4,
  .product__content > * + h4 {
    margin-top: 1.5rem;
  }
}
.main__content h4:first-child,
.product__content h4:first-child {
  margin-top: 0;
}
.main__content > h2 + h3,
.product__content > h2 + h3 {
  margin-top: 0;
}
.main__content > h3 + h4,
.product__content > h3 + h4 {
  margin-top: 0;
}
.main__content > h4 + h3,
.product__content > h4 + h3 {
  margin-top: 0;
}
.main__content > h3 + h2,
.product__content > h3 + h2 {
  margin-top: 0;
}
.main__content .wp-block-column,
.main__content .wp-bootstrap-blocks-row [class^=col],
.product__content .wp-block-column,
.product__content .wp-bootstrap-blocks-row [class^=col] {
  position: relative;
  margin-top: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .main__content .wp-block-column,
  .main__content .wp-bootstrap-blocks-row [class^=col],
  .product__content .wp-block-column,
  .product__content .wp-bootstrap-blocks-row [class^=col] {
    margin-top: 2.25rem;
  }
}
.main__content > * + div,
.product__content > * + div {
  position: relative;
  margin-top: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .main__content > * + div,
  .product__content > * + div {
    margin-top: 2.25rem;
  }
}
.main__content > * + .wp-block-group:not(.has-background),
.product__content > * + .wp-block-group:not(.has-background) {
  position: relative;
  margin-top: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .main__content > * + .wp-block-group:not(.has-background),
  .product__content > * + .wp-block-group:not(.has-background) {
    margin-top: 4.5rem;
  }
}
.main__content > * + .wp-block-group.has-background,
.product__content > * + .wp-block-group.has-background {
  position: relative;
  margin-top: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .main__content > * + .wp-block-group.has-background,
  .product__content > * + .wp-block-group.has-background {
    margin-top: 4.5rem;
  }
}
.main__content > * + .wp-block-columns,
.main__content > * + .wp-bootstrap-blocks-row,
.product__content > * + .wp-block-columns,
.product__content > * + .wp-bootstrap-blocks-row {
  margin-top: 0;
}
.main__content figure.wp-block-image,
.main__content div.wp-block-image,
.product__content figure.wp-block-image,
.product__content div.wp-block-image {
  position: relative;
  margin-top: 1rem;
}
.main__content figure.wp-block-image:first-child,
.main__content div.wp-block-image:first-child,
.product__content figure.wp-block-image:first-child,
.product__content div.wp-block-image:first-child {
  margin-top: 0;
}
.main__content > :last-child,
.product__content > :last-child {
  margin-bottom: 0;
}
.main__content > .has-background:last-child,
.product__content > .has-background:last-child {
  margin-bottom: -4.5rem;
}
.main__content > .block__keyvisual:first-child,
.main__content > .block__banner:first-child,
.main__content > .has-background:first-child,
.product__content > .block__keyvisual:first-child,
.product__content > .block__banner:first-child,
.product__content > .has-background:first-child {
  margin-top: -4.5rem;
}

.wp-block-column > * + h2,
.main__content [class*=col-] > * + h2,
.inner-blocks > * + h2,
.wp-block-group > * + h2 {
  position: relative;
  margin-top: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .wp-block-column > * + h2,
  .main__content [class*=col-] > * + h2,
  .inner-blocks > * + h2,
  .wp-block-group > * + h2 {
    margin-top: 2.25rem;
  }
}
.wp-block-column h2:first-child,
.main__content [class*=col-] h2:first-child,
.inner-blocks h2:first-child,
.wp-block-group h2:first-child {
  margin-top: 0;
}
.wp-block-column > * + h3,
.main__content [class*=col-] > * + h3,
.inner-blocks > * + h3,
.wp-block-group > * + h3 {
  position: relative;
  margin-top: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .wp-block-column > * + h3,
  .main__content [class*=col-] > * + h3,
  .inner-blocks > * + h3,
  .wp-block-group > * + h3 {
    margin-top: 1.5rem;
  }
}
.wp-block-column h3:first-child,
.main__content [class*=col-] h3:first-child,
.inner-blocks h3:first-child,
.wp-block-group h3:first-child {
  margin-top: 0;
}
.wp-block-column > * + h4,
.main__content [class*=col-] > * + h4,
.inner-blocks > * + h4,
.wp-block-group > * + h4 {
  position: relative;
  margin-top: 1rem;
}
.wp-block-column h4:first-child,
.main__content [class*=col-] h4:first-child,
.inner-blocks h4:first-child,
.wp-block-group h4:first-child {
  margin-top: 0;
}
.wp-block-column > h2 + h3,
.main__content [class*=col-] > h2 + h3,
.inner-blocks > h2 + h3,
.wp-block-group > h2 + h3 {
  margin-top: 0;
}
.wp-block-column > h3 + h4,
.main__content [class*=col-] > h3 + h4,
.inner-blocks > h3 + h4,
.wp-block-group > h3 + h4 {
  margin-top: 0;
}
.wp-block-column > h4 + h3,
.main__content [class*=col-] > h4 + h3,
.inner-blocks > h4 + h3,
.wp-block-group > h4 + h3 {
  margin-top: 0;
}
.wp-block-column > h3 + h2,
.main__content [class*=col-] > h3 + h2,
.inner-blocks > h3 + h2,
.wp-block-group > h3 + h2 {
  margin-top: 0;
}
.wp-block-column > * + div,
.main__content [class*=col-] > * + div,
.inner-blocks > * + div,
.wp-block-group > * + div {
  position: relative;
  margin-top: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .wp-block-column > * + div,
  .main__content [class*=col-] > * + div,
  .inner-blocks > * + div,
  .wp-block-group > * + div {
    margin-top: 1.5rem;
  }
}
.wp-block-column > * + .wp-block-group:not(.has-background),
.main__content [class*=col-] > * + .wp-block-group:not(.has-background),
.inner-blocks > * + .wp-block-group:not(.has-background),
.wp-block-group > * + .wp-block-group:not(.has-background) {
  position: relative;
  margin-top: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .wp-block-column > * + .wp-block-group:not(.has-background),
  .main__content [class*=col-] > * + .wp-block-group:not(.has-background),
  .inner-blocks > * + .wp-block-group:not(.has-background),
  .wp-block-group > * + .wp-block-group:not(.has-background) {
    margin-top: 2.25rem;
  }
}
.wp-block-column > * + .wp-block-group.has-background,
.main__content [class*=col-] > * + .wp-block-group.has-background,
.inner-blocks > * + .wp-block-group.has-background,
.wp-block-group > * + .wp-block-group.has-background {
  position: relative;
  margin-top: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .wp-block-column > * + .wp-block-group.has-background,
  .main__content [class*=col-] > * + .wp-block-group.has-background,
  .inner-blocks > * + .wp-block-group.has-background,
  .wp-block-group > * + .wp-block-group.has-background {
    margin-top: 2.25rem;
  }
}
.wp-block-column > * + .wp-block-columns,
.wp-block-column > * + .wp-bootstrap-blocks-row,
.main__content [class*=col-] > * + .wp-block-columns,
.main__content [class*=col-] > * + .wp-bootstrap-blocks-row,
.inner-blocks > * + .wp-block-columns,
.inner-blocks > * + .wp-bootstrap-blocks-row,
.wp-block-group > * + .wp-block-columns,
.wp-block-group > * + .wp-bootstrap-blocks-row {
  margin-top: 0;
}
.wp-block-column figure.wp-block-image,
.wp-block-column div.wp-block-image,
.main__content [class*=col-] figure.wp-block-image,
.main__content [class*=col-] div.wp-block-image,
.inner-blocks figure.wp-block-image,
.inner-blocks div.wp-block-image,
.wp-block-group figure.wp-block-image,
.wp-block-group div.wp-block-image {
  position: relative;
  margin-top: 1rem;
}
.wp-block-column figure.wp-block-image:first-child,
.wp-block-column div.wp-block-image:first-child,
.main__content [class*=col-] figure.wp-block-image:first-child,
.main__content [class*=col-] div.wp-block-image:first-child,
.inner-blocks figure.wp-block-image:first-child,
.inner-blocks div.wp-block-image:first-child,
.wp-block-group figure.wp-block-image:first-child,
.wp-block-group div.wp-block-image:first-child {
  margin-top: 0;
}
.wp-block-column > :last-child,
.main__content [class*=col-] > :last-child,
.inner-blocks > :last-child,
.wp-block-group > :last-child {
  margin-bottom: 0;
}

.main__content > .wp-block-group.has-background + .wp-block-group.has-background {
  margin-top: 0;
}

.main__content > .block__keyvisual + .wp-block-group.has-background {
  margin-top: 0;
}

h6,
.h6, h5,
.h5, h4,
.h4, h3,
.h3, h2,
.h2, h1,
.h1 {
  margin: 0;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
h6 em,
.h6 em, h5 em,
.h5 em, h4 em,
.h4 em, h3 em,
.h3 em, h2 em,
.h2 em, h1 em,
.h1 em {
  font-family: "PlayFair Display";
  font-weight: 400;
  font-style: normal;
}
h6.has-x-large-font-size,
.has-x-large-font-size.h6, h5.has-x-large-font-size,
.has-x-large-font-size.h5, h4.has-x-large-font-size,
.has-x-large-font-size.h4, h3.has-x-large-font-size,
.has-x-large-font-size.h3, h2.has-x-large-font-size,
.has-x-large-font-size.h2, h1.has-x-large-font-size,
.has-x-large-font-size.h1 {
  font-size: calc(1.6875rem + 5.25vw);
}
@media (min-width: 1200px) {
  h6.has-x-large-font-size,
  .has-x-large-font-size.h6, h5.has-x-large-font-size,
  .has-x-large-font-size.h5, h4.has-x-large-font-size,
  .has-x-large-font-size.h4, h3.has-x-large-font-size,
  .has-x-large-font-size.h3, h2.has-x-large-font-size,
  .has-x-large-font-size.h2, h1.has-x-large-font-size,
  .has-x-large-font-size.h1 {
    font-size: 5.625rem;
  }
}
h6.has-large-font-size,
.has-large-font-size.h6, h5.has-large-font-size,
.has-large-font-size.h5, h4.has-large-font-size,
.has-large-font-size.h4, h3.has-large-font-size,
.has-large-font-size.h3, h2.has-large-font-size,
.has-large-font-size.h2, h1.has-large-font-size,
.has-large-font-size.h1 {
  font-size: calc(1.6875rem + 5.25vw);
}
@media (min-width: 1200px) {
  h6.has-large-font-size,
  .has-large-font-size.h6, h5.has-large-font-size,
  .has-large-font-size.h5, h4.has-large-font-size,
  .has-large-font-size.h4, h3.has-large-font-size,
  .has-large-font-size.h3, h2.has-large-font-size,
  .has-large-font-size.h2, h1.has-large-font-size,
  .has-large-font-size.h1 {
    font-size: 5.625rem;
  }
}

h1,
.h1 {
  font-size: calc(1.5825rem + 3.99vw);
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 4.575rem;
  }
}

h2,
.h2 {
  font-size: calc(1.43rem + 2.16vw);
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 3.05rem;
  }
}

h3,
.h3 {
  font-size: calc(1.29125rem + 0.495vw);
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 1.6625rem;
  }
}

h4,
.h4 {
  font-size: 1.25rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 0.9375rem;
}

figcaption {
  font-size: 0.9375rem !important;
}

p.has-small-font-size {
  font-size: 0.9375rem !important;
}

p.has-medium-font-size {
  font-size: 1.25rem !important;
}

p.has-large-font-size {
  font-size: 1.6625rem !important;
}

p.has-x-large-font-size {
  font-size: 3.05rem !important;
}

.balanced-text {
  text-wrap: balance;
}

input,
textarea {
  border-radius: 0px;
}

select {
  color: #1e1e1e;
  border-radius: 0;
  width: 100%;
}

.triggercode,
.frm_style_formidable-style.with_frm_style {
  --form-width: 100%;
  --form-align: left;
  --direction: ltr;
  --fieldset: 0px;
  --fieldset-color: #1e1e1e;
  --fieldset-padding: 0 0 15px 0;
  --fieldset-bg-color: transparent;
  --title-size: 40px;
  --title-color: #1e1e1e;
  --title-margin-top: 10px;
  --title-margin-bottom: 60px;
  --form-desc-size: 1.25rem;
  --form-desc-color: #1e1e1e;
  --form-desc-margin-top: 10px;
  --form-desc-margin-bottom: 25px;
  --form-desc-padding: 0;
  --font-size: 1.25rem;
  --label-color: #1e1e1e;
  --weight: 300;
  --position: none;
  --align: left;
  --width: 150px;
  --required-color: #a09632;
  --required-weight: bold;
  --label-padding: 0 0 3px 0;
  --description-font-size: 12px;
  --description-color: #1e1e1e;
  --description-weight: normal;
  --description-style: normal;
  --description-align: left;
  --description-margin: 0;
  --field-font-size: 1.25rem;
  --field-height: 2.625rem;
  --line-height: 1.5;
  --field-width: 100%;
  --auto-width: 100%;
  --field-pad: 0.75rem;
  --field-margin: 20px;
  --field-weight: lighter;
  --text-color: #1e1e1e;
  --border-color: #acacac;
  --field-border-width: 1px;
  --field-border-style: solid;
  --bg-color: #fff;
  --bg-color-active: #fff;
  --border-color-active: #a09632;
  --text-color-error: #444;
  --bg-color-error: #fff;
  --border-color-error: #b94a48;
  --border-width-error: 1px;
  --border-style-error: solid;
  --bg-color-disabled: #fff;
  --border-color-disabled: #e5e5e5;
  --text-color-disabled: #a1a1a1;
  --radio-align: block;
  --check-align: block;
  --check-font-size: 1.25rem;
  --check-label-color: #1e1e1e;
  --check-weight: 300;
  --section-font-size: 18px;
  --section-color: #444;
  --section-weight: bold;
  --section-pad: 15px 0 3px 0;
  --section-mar-top: 15px;
  --section-mar-bottom: 30px;
  --section-bg-color: transparent;
  --section-border-color: #e8e8e8;
  --section-border-width: 2px;
  --section-border-style: solid;
  --section-border-loc: -top;
  --collapse-pos: after;
  --repeat-icon-color: #fff;
  --submit-font-size: 15px;
  --submit-width: auto;
  --submit-height: auto;
  --submit-bg-color: #1e1e1e;
  --submit-border-color: #a09632;
  --submit-border-width: 1px;
  --submit-text-color: #fff;
  --submit-weight: normal;
  --submit-border-radius: 0;
  --submit-margin: 10px;
  --submit-padding: 10px 20px;
  --submit-shadow-color: #eee;
  --submit-hover-bg-color: #efefef;
  --submit-hover-color: #444;
  --submit-hover-border-color: #ccc;
  --submit-active-bg-color: #efefef;
  --submit-active-color: #444;
  --submit-active-border-color: #ccc;
  --border-radius: 0;
  --error-bg: rgba(210, 100, 110, 0.1);
  --error-border: #d2646e;
  --error-text: #1e1e1e;
  --error-font-size: 14px;
  --success-bg-color: rgba(134, 126, 47, 0.2);
  --success-border-color: #867e2f;
  --success-text-color: #1e1e1e;
  --success-font-size: 14px;
  --progress-bg-color: #eaeaea;
  --progress-active-color: #fff;
  --progress-active-bg-color: #5a96aa;
  --progress-color: #3f4b5b;
  --progress-border-color: #e5e5e5;
  --progress-border-size: 2px;
  --progress-size: 24px;
  --box-shadow: none;
}
.triggercode div.frm_description,
.frm_style_formidable-style.with_frm_style div.frm_description {
  color: var(--form-desc-color);
}
.triggercode div.frm_submit button,
.frm_style_formidable-style.with_frm_style div.frm_submit button {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background: #1e1e1e;
  border-color: #1e1e1e;
  font-size: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.triggercode div.frm_submit button:hover,
.frm_style_formidable-style.with_frm_style div.frm_submit button:hover {
  text-decoration: none;
}
.triggercode div.frm_submit button:disabled,
.frm_style_formidable-style.with_frm_style div.frm_submit button:disabled {
  opacity: 0.5;
}
.triggercode div.frm_submit button svg,
.frm_style_formidable-style.with_frm_style div.frm_submit button svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.triggercode div.frm_submit button:hover,
.frm_style_formidable-style.with_frm_style div.frm_submit button:hover {
  background: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.triggercode div.frm_submit button:focus, .triggercode div.frm_submit button:active,
.frm_style_formidable-style.with_frm_style div.frm_submit button:focus,
.frm_style_formidable-style.with_frm_style div.frm_submit button:active {
  background: #a09632 !important;
  border-color: #a09632 !important;
}
.triggercode div.highlighted_select select,
.frm_style_formidable-style.with_frm_style div.highlighted_select select {
  background-color: #f2f2e8 !important;
  color: #1e1e1e !important;
  font-weight: 400 !important;
}
.triggercode .form-field select,
.frm_style_formidable-style.with_frm_style .form-field select {
  background-repeat: no-repeat;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* stylelint-disable */
  background-image: url('data:image/svg+xml,%3csvg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M7.47469 12.5737C7.04694 12.5737 6.68025 12.3904 6.43575 12.0848L0.385629 5.3013C0.0189417 4.81236 0.0800667 4.07899 0.568942 3.71236C1.05782 3.34568 1.73007 3.34568 2.09675 3.83455L7.35251 9.82361C7.41357 9.88474 7.47469 9.88474 7.59694 9.82361L12.8526 3.83455C13.2804 3.34568 13.9527 3.28455 14.4416 3.71236C14.9304 4.14018 14.9916 4.81236 14.5638 5.3013L14.5027 5.36236L8.51363 12.1459C8.26919 12.3904 7.84138 12.5737 7.47469 12.5737Z" fill="%23A09632"/%3e%3c/svg%3e');
  /* stylelint-enable */
  background-position: calc(100% - 1rem) 1em;
  background-size: 1rem 1rem;
}
.triggercode .form-field input:not([type=file], [type=range], [readonly]):focus,
.triggercode .form-field select:focus,
.triggercode .form-field textarea:focus,
.frm_style_formidable-style.with_frm_style .form-field input:not([type=file], [type=range], [readonly]):focus,
.frm_style_formidable-style.with_frm_style .form-field select:focus,
.frm_style_formidable-style.with_frm_style .form-field textarea:focus {
  border-color: #a09632;
  -webkit-box-shadow: 0 0 5px 0 rgba(160, 150, 50, 0.6);
          box-shadow: 0 0 5px 0 rgba(160, 150, 50, 0.6);
}
.triggercode div.personal_message textarea,
.frm_style_formidable-style.with_frm_style div.personal_message textarea {
  height: 100%;
}
.triggercode .frm_error_style,
.frm_style_formidable-style.with_frm_style .frm_error_style {
  border-radius: 0 !important;
  background-color: rgba(210, 100, 110, 0.1);
  border-color: #d2646e;
  color: #1e1e1e;
}
.triggercode .frm_form_field *:invalid,
.triggercode .frm_form_field *[aria-invalid=true],
.frm_style_formidable-style.with_frm_style .frm_form_field *:invalid,
.frm_style_formidable-style.with_frm_style .frm_form_field *[aria-invalid=true] {
  border-color: #d2646e !important;
}

.alignright,
.alignleft {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}
@media (max-width: 991.98px) {
  .alignright,
  .alignleft {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .alignright,
  .alignleft {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}

.alignright {
  float: right;
  margin-left: var(--tc-gutter-x);
}

.alignleft {
  float: left;
  margin-right: var(--tc-gutter-x);
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.block__button.aligncenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #1e1e1e;
  z-index: 10;
  height: 4.5rem;
}
@media (max-width: 991.98px) {
  header {
    height: 4rem;
  }
}
.admin-bar header {
  top: 32px;
}
@media (max-width: 767.98px) {
  .admin-bar header {
    top: 46px;
  }
}
header > .container, header > .popup__content,
header > .container-fluid,
header > .container-xxl,
header > .container-xl,
header > .container-lg,
header > .container-md,
header > .container-sm {
  height: 100%;
}
header > .container > .row, header > .popup__content > .row,
header > .container-fluid > .row,
header > .container-xxl > .row,
header > .container-xl > .row,
header > .container-lg > .row,
header > .container-md > .row,
header > .container-sm > .row {
  height: 100%;
}

.header__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  padding: 0.75rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  height: 100%;
}

.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.header__logo a img {
  max-height: calc(4.5rem - 1.5rem);
  width: auto;
  height: 100%;
}
@media (max-width: 991.98px) {
  .header__logo a img {
    max-height: calc(4rem - 1.5rem);
  }
}

.header__claim {
  font-size: 1.25rem;
  font-family: "Playfair Display";
  color: #fff;
  margin-top: 5px;
  display: none;
}
@media (min-width: 1400px) {
  .header__claim {
    margin-top: 10px;
    display: block;
  }
}

.header__col__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header__col__right #nav-main__toggle {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (max-width: 991.98px) {
  .header__col__right #nav-main__toggle {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.header__account {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 1.5rem;
  margin-right: 0.5rem;
}
@media (max-width: 991.98px) {
  .header__account {
    margin-left: 0.5rem;
  }
}

.header__account__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem 0;
}
.header__account__icon svg {
  width: 2rem;
  height: 2rem;
  color: #a09632;
  fill: #a09632;
}

.header__cart {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 1.5rem;
  margin-right: 0.5rem;
}
@media (max-width: 991.98px) {
  .header__cart {
    margin-left: 0.5rem;
  }
}

.header__cart__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem 0;
}
.header__cart__icon svg {
  width: 2rem;
  height: 2rem;
  color: #a09632;
  fill: #a09632;
}
.header__cart__icon .cart__indicator {
  position: absolute;
  right: -5px;
  bottom: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9375rem;
  color: #1e1e1e;
  line-height: 1.3;
  background-color: #fff;
  border-radius: 50rem;
  padding: 0 4px;
  width: 1.25rem;
  height: 1.25rem;
}

.admin-bar header #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 {
  top: calc(4.5rem + 32px);
}
@media (max-width: 991.98px) {
  .admin-bar header #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 {
    height: auto;
  }
}
.admin-bar header #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .sub-menu.sub-menu--depth-1 {
  top: 0px;
}

#nav-main {
  position: relative;
  z-index: 10;
  height: 100%;
  /* stylelint-disable-next-line no-descending-specificity */
  /* stylelint-disable-next-line no-descending-specificity */
  /*******************************************************************************************************************
    * MOBILE NAV
    *******************************************************************************************************************/
}
#nav-main ul {
  list-style: none;
}
#nav-main ul,
#nav-main ul li {
  margin: 0;
  padding: 0;
}
#nav-main .menu,
#nav-main .menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nav-main a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
}
#nav-main a:hover {
  text-decoration: none;
  color: #867e2f;
}
#nav-main .current-menu-item > a {
  color: #a09632;
  background: transparent;
  font-weight: 500;
}
#nav-main .current-menu-item > a:hover {
  color: #867e2f;
  background: transparent;
  font-weight: 500;
}
#nav-main .current-menu-ancestor > a {
  color: #a09632;
  background: transparent;
  font-weight: 500;
}
#nav-main .current-menu-ancestor > a:hover {
  color: #867e2f;
  background: transparent;
  font-weight: 500;
}
#nav-main .menu {
  height: 100%;
}
#nav-main .menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  white-space: nowrap;
}
#nav-main .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  min-width: 100%;
  background-color: #fff;
}
#nav-main .sub-menu.sub-menu--depth-0::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  width: 300vw;
  height: 100%;
  background-color: #fff;
}
#nav-main .sub-menu a {
  color: #1e1e1e;
}
#nav-main .sub-menu .sub-menu {
  top: 0%;
  left: 100%;
}
#nav-main .menu-item-anchor {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.75rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
#nav-main .menu-item-has-children > .menu-item-anchor {
  padding-right: 0;
}
#nav-main .menu-item-has-children > .nav-main__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
#nav-main .menu-item-has-children > .nav-main__more::before {
  content: "";
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  /* stylelint-disable */
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 27.8.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='15px' height='10px' viewBox='0 0 15 10' style='enable-background:new 0 0 15 10;' xml:space='preserve'%3E%3Cpath d='M7.5,9.6c-0.4,0-0.8-0.2-1-0.5l-6-6.8C0,1.8,0.1,1,0.6,0.7C1,0.3,1.7,0.3,2.1,0.8l5.3,6c0.1,0.1,0.1,0.1,0.2,0l5.3-6 c0.4-0.5,1.2-0.5,1.6-0.1c0.4,0.4,0.5,1.1,0.1,1.6l-6,6.8C8.3,9.4,7.9,9.6,7.5,9.6z'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 27.8.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='15px' height='10px' viewBox='0 0 15 10' style='enable-background:new 0 0 15 10;' xml:space='preserve'%3E%3Cpath d='M7.5,9.6c-0.4,0-0.8-0.2-1-0.5l-6-6.8C0,1.8,0.1,1,0.6,0.7C1,0.3,1.7,0.3,2.1,0.8l5.3,6c0.1,0.1,0.1,0.1,0.2,0l5.3-6 c0.4-0.5,1.2-0.5,1.6-0.1c0.4,0.4,0.5,1.1,0.1,1.6l-6,6.8C8.3,9.4,7.9,9.6,7.5,9.6z'/%3E%3C/svg%3E%0A");
  /* stylelint-enable */
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #a09632;
}
#nav-main .menu > .menu-item > .menu-item-anchor {
  font-weight: 500;
}
#nav-main a.nav-main__more {
  display: none;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
}
@media (min-width: 992px) {
  #nav-main .sub-menu .menu-item-has-children > .nav-main__more::before {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@media (min-width: 992px) {
  #nav-main {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
#nav-main ul {
  list-style: none;
}
#nav-main ul,
#nav-main ul li {
  margin: 0;
  padding: 0;
}
#nav-main .menu,
#nav-main .menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nav-main a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
}
#nav-main a:hover {
  text-decoration: none;
  color: #867e2f;
}
#nav-main .current-menu-item > a {
  color: #a09632;
  background: transparent;
  font-weight: 500;
}
#nav-main .current-menu-item > a:hover {
  color: #867e2f;
  background: transparent;
  font-weight: 500;
}
#nav-main .current-menu-ancestor > a {
  color: #a09632;
  background: transparent;
  font-weight: 500;
}
#nav-main .current-menu-ancestor > a:hover {
  color: #867e2f;
  background: transparent;
  font-weight: 500;
}
#nav-main .menu {
  height: 100%;
}
#nav-main .shop-submenu.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu.menu-item {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
#nav-main .shop-submenu.menu-item > .menu-item-anchor {
  font-weight: 500;
}
@media (min-width: 992px) {
  #nav-main .shop-submenu.menu-item > .menu-item-anchor::after {
    content: "";
    height: 1.5rem;
    width: 1px;
    border-left: 1px solid #1e1e1e;
    margin-left: 0.75rem;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
}
#nav-main .shop-submenu.menu-item > .menu-item-anchor,
#nav-main .shop-submenu.menu-item > .nav-main__more {
  background-color: #fff;
  color: #1e1e1e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 66.6%;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  padding-left: 0.75rem !important;
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu.menu-item > .menu-item-anchor,
  #nav-main .shop-submenu.menu-item > .nav-main__more {
    padding-left: 1.5rem !important;
  }
}
#nav-main .shop-submenu.menu-item > .menu-item-anchor {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu.menu-item > .menu-item-anchor {
    color: #fff;
    background-color: #1e1e1e;
  }
}
#nav-main .shop-submenu.menu-item > .nav-main__more {
  padding-left: 1rem;
  padding-right: 0.75rem !important;
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu.menu-item > .nav-main__more {
    padding-right: 1.5rem !important;
  }
}
#nav-main .shop-submenu.menu-item > .nav-main__more::before {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu.menu-item > .nav-main__more {
    height: auto;
    background-color: #1e1e1e;
  }
  #nav-main .shop-submenu.menu-item > .nav-main__more::before {
    background: #fff !important;
  }
}
@media (min-width: 992px) {
  #nav-main .shop-submenu.menu-item:hover > .menu-item-anchor,
  #nav-main .shop-submenu.menu-item:hover > .nav-main__more {
    background-color: #a09632;
    color: #fff;
  }
  #nav-main .shop-submenu.menu-item:hover > .menu-item-anchor::before,
  #nav-main .shop-submenu.menu-item:hover > .nav-main__more::before {
    background: #fff !important;
  }
  #nav-main .shop-submenu.menu-item:hover > .menu-item-anchor::after,
  #nav-main .shop-submenu.menu-item:hover > .nav-main__more::after {
    border-color: #fff;
  }
}
#nav-main .shop-submenu .sub-menu {
  display: none;
}
#nav-main .shop-submenu .sub-menu .sub-menu {
  top: 0;
  left: 0;
  position: relative;
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 {
  position: fixed;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 100%;
  width: 100%;
  top: 4.5rem;
  background-color: #fff;
  border-top: 1px solid #1e1e1e;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 {
    border-top: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.25rem;
  max-height: 100vh;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-areas: "overview-block overview-title" "overview-block overview-submenu";
  grid-template-rows: auto 1fr;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: calc(((100% - (calc(3 - 1) * 2.25rem))) / 3);
}
@media (max-width: 1199.98px) {
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item {
    width: calc(((100% - (calc(2 - 1) * 2.25rem))) / 2);
  }
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item .sub-menu.sub-menu--depth-1 {
  height: 100%;
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item:has(.sub-menu.sub-menu--depth-1 .menu-item:nth-child(6)) {
  width: calc(66.6% - 1.125rem);
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item:has(.sub-menu.sub-menu--depth-1 .menu-item:nth-child(6)) {
    width: calc(66.6% - 1.125rem);
  }
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item:has(.sub-menu.sub-menu--depth-1 .menu-item:nth-child(6)) {
    width: 100%;
  }
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item:has(.sub-menu.sub-menu--depth-1 .menu-item:nth-child(11)) {
  width: 100%;
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item > .menu-item-anchor {
  grid-area: overview-title;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 1.25rem;
  font-weight: 500;
  padding-top: calc(0.75rem + 3px);
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item > .menu-item-anchor {
    padding-top: 0.75rem;
  }
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item a.nav-main__more {
  display: none;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item .overview-block {
  grid-area: overview-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 0.75rem;
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item .overview-block span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item .overview-image {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  margin-top: 0.75rem;
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item .overview-image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 > .container-lg > .menu-item svg {
  margin-top: 0.75rem;
  width: auto; /* Breite automatisch */
  height: auto; /* Höhe automatisch */
  max-width: 40px; /* Maximale Breite anpassen */
  max-height: 40px; /* Maximale Höhe anpassen, gleiche wie max-width */
  fill: #1e1e1e;
  -webkit-box-flex: 0; /* Deaktiviert die Flexbox-Wachstumsregel */
  -ms-flex: 0 0 auto; /* Deaktiviert Flex-Wachstum für IE */
  flex: 0 0 auto; /* Standardgröße basierend auf der max-width und max-height */
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .sub-menu.sub-menu--depth-1 {
  grid-area: overview-submenu;
  display: grid;
  grid-template-rows: repeat(5, -webkit-min-content);
  grid-template-rows: repeat(5, min-content);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 0.75rem;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .sub-menu.sub-menu--depth-1 {
    display: grid !important;
    opacity: 1 !important;
    max-height: 1000px !important;
  }
}
@media (max-width: 991.98px) {
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .sub-menu.sub-menu--depth-1 {
    grid-template-rows: repeat(8, -webkit-min-content);
    grid-template-rows: repeat(8, min-content);
  }
}
#nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .sub-menu.sub-menu--depth-1 > .menu-item .menu-item-anchor {
  font-weight: 300;
  padding: 0.375rem 0.75rem;
}
#nav-main .shop-submenu .menu-item-has-children > .menu-item-anchor {
  font-weight: 500;
}
@media (max-width: 991.98px) {
  #nav-main {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
            box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
  }
  #nav-main .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  #nav-main .sub-menu {
    padding-left: 0.75rem;
    position: static;
  }
  #nav-main .sub-menu:before {
    display: none;
  }
  #nav-main .sub-menu .sub-menu {
    padding-left: 1rem;
  }
  #nav-main .menu-item {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #nav-main .menu-item .container-lg {
    padding-left: 0;
    padding-right: 0;
  }
  #nav-main .menu-item .menu-item-anchor {
    color: #1e1e1e;
  }
  #nav-main .menu-item .nav-main__more::before {
    background: #1e1e1e;
  }
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 {
    position: relative;
    top: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    padding-left: 2.25rem;
  }
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .container-lg {
    gap: 0;
    max-height: none;
    max-height: initial;
  }
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .container-lg .menu-item {
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .container-lg .menu-item .nav-main__more {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .container-lg .menu-item .overview-image {
    display: none;
  }
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .container-lg .menu-item svg {
    margin-top: 0;
    width: 2.25rem;
    height: 2.25rem;
  }
  #nav-main .shop-submenu .sub-menu.sub-menu--depth-0 .container-lg .menu-item .sub-menu.sub-menu--depth-1 {
    padding-left: 2.25rem;
    display: none;
    max-height: none;
    max-height: initial;
  }
}

/***********************************************************************************************************************
* NAV TOGGLE
***********************************************************************************************************************/
#nav-main__toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0.75rem 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 991.98px) {
  #nav-main__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav-main__toggle__bar {
  height: 0.125rem;
  background-color: #fff;
  width: 100%;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.-nav-toggled .nav-main__toggle__bar:first-child {
  -webkit-transform: translateY(0.75rem) rotate(-45deg);
      -ms-transform: translateY(0.75rem) rotate(-45deg);
          transform: translateY(0.75rem) rotate(-45deg);
}
.-nav-toggled .nav-main__toggle__bar:nth-child(2) {
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}
.-nav-toggled .nav-main__toggle__bar:last-child {
  -webkit-transform: translateY(calc(0.75rem * -1 + 0.125rem)) rotate(45deg);
      -ms-transform: translateY(calc(0.75rem * -1 + 0.125rem)) rotate(45deg);
          transform: translateY(calc(0.75rem * -1 + 0.125rem)) rotate(45deg);
}

footer {
  overflow: hidden;
  font-size: 0.9375rem;
  background-color: #1e1e1e;
  color: #fff;
}

.footer__wrapper {
  padding-top: 0.75rem;
  padding-bottom: calc(1.35rem + 1.2vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.5rem;
}
@media (min-width: 1200px) {
  .footer__wrapper {
    padding-bottom: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .footer__wrapper {
    width: 100%;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 75%;
}
.footer__content .footer__info {
  width: 40%;
  padding-right: 0.75rem;
}
.footer__content .footer__info > p {
  margin-top: 0;
}
.footer__content .footer__info a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.footer__content .footer__info a:hover {
  color: #a09632;
}
@media (max-width: 767.98px) {
  .footer__content .footer__info {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .footer__content .footer__info {
    width: 100%;
  }
}
.footer__content .footer__socials {
  width: 60%;
}
.footer__content .footer__socials .social-media-presence {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.75rem;
}
@media (max-width: 767.98px) {
  .footer__content .footer__socials {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .footer__content .footer__socials {
    width: 100%;
    margin-top: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .footer__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.5rem;
  }
}

.footer__logo {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__logo img {
  height: 8rem;
  width: auto;
}
@media (max-width: 767.98px) {
  .footer__logo {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer__nav {
  /* stylelint-disable-next-line no-descending-specificity */
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.footer__nav ul {
  list-style: none;
}
.footer__nav ul,
.footer__nav ul li {
  margin: 0;
  padding: 0;
}
.footer__nav .menu,
.footer__nav .menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__nav a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
}
.footer__nav a:hover {
  text-decoration: none;
  color: #867e2f;
}
.footer__nav .current-menu-item > a {
  color: #a09632;
  background: transparent;
  font-weight: 500;
}
.footer__nav .current-menu-item > a:hover {
  color: #867e2f;
  background: transparent;
  font-weight: 500;
}
.footer__nav .current-menu-ancestor > a {
  color: #a09632;
  background: transparent;
  font-weight: 500;
}
.footer__nav .current-menu-ancestor > a:hover {
  color: #867e2f;
  background: transparent;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .footer__nav {
    margin-left: 0;
    margin-right: 0;
  }
}
.footer__nav .menu,
.footer__nav .menu ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .footer__nav .menu,
  .footer__nav .menu ul {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}
.footer__nav a {
  padding: 0.75rem;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (max-width: 991.98px) {
  .footer__nav a {
    padding: 0.375rem 0;
  }
}

html {
  min-height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100vh - 4.5rem);
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.social-media-presence__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  background: #a09632;
  border-radius: 50%;
  padding: 0.375rem;
  margin-bottom: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .social-media-presence__item {
    margin-bottom: 1.5rem;
  }
}
.social-media-presence__item svg {
  width: 25px;
  height: 25px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .social-media-presence__item svg {
    width: 18px;
    height: 18px;
  }
}

.arrow-scroll-up {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem;
  color: #fff;
  text-decoration: none;
  background: #1e1e1e;
  border: 2px solid #1e1e1e;
  border-radius: 50%;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
}
.-is-scrolled .arrow-scroll-up {
  opacity: 1;
}
.arrow-scroll-up .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.arrow-scroll-up:hover {
  color: #a09632 !important;
}
.arrow-scroll-up .icon svg {
  aspect-ratio: 1/1;
  height: 2rem;
  margin-right: 0;
  color: #fff;
  fill: #fff;
}
@media (max-width: 767.98px) {
  .arrow-scroll-up {
    right: 0.5rem;
  }
}

.aside__disruptor {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(calc(100% - 43px));
      -ms-transform: translateY(-50%) translateX(calc(100% - 43px));
          transform: translateY(-50%) translateX(calc(100% - 43px));
  background: #a09632;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9;
  color: #fff;
}
.aside__disruptor.-open {
  -webkit-transform: translateY(-50%) translateX(0);
      -ms-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
}

.aside__disruptor__title {
  cursor: pointer;
  padding: 0.75rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aside__disruptor__title .aside__disruptor__title__text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
}
.aside__disruptor__title svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: #fff;
}

.aside__disruptor__content {
  font-size: 0.9375rem;
  font-weight: normal;
  padding: 0.75rem;
  max-width: 300px;
  border-left: 1px solid #fff;
}
.aside__disruptor__content p:first-child {
  margin-top: 0;
}

.search__search__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.header__search {
  position: relative;
}

.search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.search__form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

header .search__form {
  display: none;
  position: absolute;
  right: 0;
}

.header__search__icon {
  display: block;
  padding: 0.75rem 1.5rem;
}

.search__form__button {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.header__search__icon svg,
.search__form__button svg {
  width: 24px;
  height: 24px;
}

.search__form__clear svg {
  width: 16px;
  height: 16px;
}

.blog__container {
  --tc-gutter-x: 0.75rem;
  --tc-gutter-y: 0;
  width: 100%;
  padding-right: calc(0.75rem * 0.5);
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(0.75rem * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.blog__row {
  --tc-gutter-x: 1.5rem;
  --tc-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * 0);
  margin-top: calc(-1 * var(--tc-gutter-y));
  margin-right: calc(-0.5 * 1.5rem);
  margin-right: calc(-0.5 * var(--tc-gutter-x));
  margin-left: calc(-0.5 * 1.5rem);
  margin-left: calc(-0.5 * var(--tc-gutter-x));
  width: 100%;
}

.blog__title__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.blog__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
  margin-top: 1.5rem;
}
@media (max-width: 767.98px) {
  .blog__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .blog__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}

.blog__pagination__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  margin-top: 2.25rem;
}

.blog .block__keyvisual .wp-block-group,
.archive .block__keyvisual .wp-block-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog-category-selection__container__categories {
  padding-top: 0.75rem;
}
.blog-category-selection__container__categories .desktop-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .blog-category-selection__container__categories .desktop-categories {
    display: none;
  }
}
.blog-category-selection__container__categories .mobile-categories {
  display: none;
}
@media (max-width: 767.98px) {
  .blog-category-selection__container__categories .mobile-categories {
    display: block;
  }
}

.btn__rubriken {
  border-radius: 0.375rem;
  padding: 0.75rem 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.btn__rubriken--primary {
  border: 1px solid #a09632;
  background-color: #a09632;
  color: #fff;
}
.btn__rubriken--primary:hover {
  background-color: #797226;
  border: 1px solid #797226;
  color: #fff;
}
.btn__rubriken--ghost {
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
}
.btn__rubriken--ghost:hover {
  background-color: #797226;
  border: 1px solid #797226;
  color: #fff;
}

.blog__pagination__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog__pagination__col #pagination-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.blog__pagination__col #pagination-bottom .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog__pagination__col #pagination-bottom .page-numbers.current {
  font-weight: 500;
}
.blog__pagination__col #pagination-bottom .page-numbers.disabled {
  opacity: 0.5;
}
.blog__pagination__col .pagination-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog__pagination__col .pagination-item svg {
  color: #a09632;
  fill: #a09632;
  height: 1.5rem;
}

.dropdown > div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.dropdown-menu-container {
  position: relative;
}
.dropdown-menu-container .dropdown-menu {
  border-radius: 0.375rem;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
}
.dropdown-menu-container .dropdown-menu.hidden {
  display: none;
}

.dropdown-toggle {
  border-radius: 0.375rem;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  border: 1px solid #1e1e1e;
  background-color: #fff;
  color: #1e1e1e;
}
.dropdown-toggle-primary {
  background-color: #a09632;
  color: #fff;
}
.dropdown-toggle .icon {
  width: 0.75rem;
}
.dropdown-toggle .icon svg {
  height: auto;
}
.dropdown-toggle-active .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.single .single-post__container .post__lead {
  color: #a09632;
  font-size: 1.25rem;
  font-weight: 500;
}
.single .single-post__container .block__posts-showcase {
  padding-top: 1.5rem;
}
.single .single-post__image__wrapper {
  margin-top: 1.5rem;
}
.single .single-post__image__wrapper img {
  width: 100%;
  height: 100%;
}
.single .single-post__image__wrapper:not(:has(> img)) {
  background-color: #a09632;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.post__event-details {
  font-weight: 500;
  font-size: 1.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  margin-top: 1.5rem;
}
.post__event-details .event__date-time,
.post__event-details .event__location {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post__event-details svg {
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 0.375rem;
  color: #a09632;
  fill: #a09632;
}

.archive__row {
  --tc-gutter-x: 1.5rem;
  --tc-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * 0);
  margin-top: calc(-1 * var(--tc-gutter-y));
  margin-right: calc(-0.5 * 1.5rem);
  margin-right: calc(-0.5 * var(--tc-gutter-x));
  margin-left: calc(-0.5 * 1.5rem);
  margin-left: calc(-0.5 * var(--tc-gutter-x));
  width: 100%;
}

.archive__title__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.archive__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
  margin-top: 1.5rem;
}

.archive__pagination__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  margin-top: 2.25rem;
}

.popup {
  position: fixed;
  z-index: 5;
  inset: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.popup__content {
  overflow: visible;
  position: relative;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
  max-width: min(1040px, 100vw);
  max-height: calc(100vh - 3rem);
  padding: 2.25rem;
  background-color: white;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(30, 30, 30, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(30, 30, 30, 0.15);
  max-width: 90%;
}

.popup__buttons {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 575.98px) {
  .popup__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.popup__buttons a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block__accordion__item__wrapper {
  padding: 1rem;
  background-color: #fff;
}
.block__accordion--frame-box-shadow .block__accordion__item__wrapper {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
}
.block__accordion--frame-border .block__accordion__item__wrapper {
  border-top: 1px solid #a09632;
  border-color: rgba(30, 30, 30, 0.1);
}

.block__accordion__item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.block__accordion__item__header h2,
.block__accordion__item__header h3,
.block__accordion__item__header h4,
.block__accordion__item__header h5,
.block__accordion__item__header h6 {
  margin: 0;
}

.block__accordion__item-icon {
  display: block;
  width: 30px;
  height: 30px;
  /* stylelint-disable */
  background: url('data:image/svg+xml;utf8,%3csvg aria-hidden="true" focusable="false" data-prefix="fal" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"%3e%3cpath fill="currentColor" d="M443.5 162.6l-7.1-7.1c-4.7-4.7-12.3-4.7-17 0L224 351 28.5 155.5c-4.7-4.7-12.3-4.7-17 0l-7.1 7.1c-4.7 4.7-4.7 12.3 0 17l211 211.1c4.7 4.7 12.3 4.7 17 0l211-211.1c4.8-4.7 4.8-12.3.1-17z"%3e%3c/path%3e%3c/svg%3e') no-repeat center;
  /* stylelint-enable */
  background-size: contain;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.-active .block__accordion__item-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.block__accordion__item__body {
  display: none;
  overflow: hidden;
}
.block__accordion__item__body .block__accordion__item__content {
  padding-top: 1rem;
}

.block__accordion-item + .block__accordion-item {
  margin-top: 1rem;
}
.block__accordion--frame-border .block__accordion-item + .block__accordion-item {
  margin-top: 0;
}

.wp-block-group.has-background {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.wp-block-group.is-layout-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wp-block-group.is-layout-flex.is-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.wp-block-group.is-layout-flex:not(.is-vertical) {
  gap: var(--tc-gutter-x);
}
@media (max-width: 767.98px) {
  .wp-block-group.is-layout-flex:not(.is-vertical) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wp-block-group.is-layout-flex:not(.is-vertical) > * {
  margin-top: 0;
}

.icon {
  display: inline-block;
  margin: 0.5rem 0.25rem;
}

.icon--img,
.icon--svg svg {
  width: auto;
  height: 2.5rem;
}

.block__keyvisual {
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: auto;
  max-width: 100vw !important;
  min-height: min(100vh - 4.5rem - 4.575rem, 32vw + 18vh - 4.575rem, 20vw + 42vh - 4.575rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .block__keyvisual {
    height: min(100vh - 4rem, 15vw + 40vh);
  }
}
.wp-admin .block__keyvisual .block-editor-inner-blocks,
.wp-admin .block__keyvisual .block-editor-block-list__layout,
.wp-admin .block__keyvisual .wp-block-group {
  height: 100%;
}
.block__keyvisual + .block__keyvisual {
  margin-top: 0;
}

.keyvisual__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.keyvisual__wrapper {
  padding-top: calc(1.575rem + 3.9vw);
  padding-bottom: calc(1.575rem + 3.9vw);
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .keyvisual__wrapper {
    padding-top: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .keyvisual__wrapper {
    padding-bottom: 4.5rem;
  }
}
.keyvisual__wrapper,
.keyvisual__wrapper .container-lg,
.keyvisual__wrapper .container-lg > .wp-block-group {
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wp-block-acf-banner {
  overflow: hidden;
}

.keyvisual__background {
  position: relative;
  background-color: #f2f2e8;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.wp-admin .keyvisual__background {
  z-index: 0;
}
.keyvisual__background img,
.keyvisual__background video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.-asset-position--top .keyvisual__background img,
.-asset-position--top .keyvisual__background video {
  -o-object-position: top;
     object-position: top;
}
.-asset-position--bottom .keyvisual__background img,
.-asset-position--bottom .keyvisual__background video {
  -o-object-position: bottom;
     object-position: bottom;
}

.keyvisual__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block__responsive-embed__description {
  margin-top: 0.75rem;
}

/**
 * Swiper 9.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 10, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: initial;
       -o-transition-timing-function: initial;
          transition-timing-function: initial;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
       -o-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  top: auto;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: 0.2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  left: auto;
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: inherit;
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(44px / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: 44px;
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - 44px / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #007aff;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  -webkit-font-feature-settings: ;
          font-feature-settings: ;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

p + .block__slider {
  margin-top: 1.5rem;
}

.swiper.slider--show-dots {
  margin-bottom: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .swiper.slider--show-dots {
    margin-bottom: 2.25rem;
  }
}
.swiper.slider--show-dots .swiper-button-next,
.swiper.slider--show-dots .swiper-button-prev {
  top: calc(50% - 1.5rem);
}

.swiper-slide {
  height: auto;
}

.swiper-container {
  padding-bottom: 1.5rem;
}

.swiper-pagination-bullet {
  overflow: hidden;
  margin: 0.375rem;
  text-indent: 1000px;
  white-space: nowrap;
  border-radius: 100%;
  border: 0 solid transparent;
  border-width: 1px;
  border-color: #1e1e1e;
  background-color: transparent;
  opacity: 1;
  height: 0.75rem;
  width: 0.75rem;
}
.swiper-pagination-bullet:hover {
  background-color: #1e1e1e;
  opacity: 1;
}

.swiper-pagination-bullet.current {
  background-color: #a09632;
  opacity: 1;
  border-color: #a09632;
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  padding-top: 2.25rem;
}
.swiper-pagination.hide-pagination {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 2.25rem;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  height: calc(1.275rem + 0.3vw);
  aspect-ratio: 16/20;
}
@media (min-width: 1200px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    height: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .swiper-button-next {
    right: 0;
  }
  .swiper-button-prev {
    left: 0;
  }
}
.swiper-button-next::after {
  /* stylelint-disable */
  -webkit-mask-image: url('data:image/svg+xml,%3csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M9.58991 7.47739C9.58991 7.90502 9.4066 8.27158 9.10116 8.51596L2.25885 14.564C1.7701 14.9917 1.03703 14.9306 0.67047 14.4418C0.303908 13.9531 0.303908 13.2811 0.792658 12.8535L6.77966 7.59958C6.84072 7.53846 6.84072 7.47739 6.77966 7.35521L0.792658 2.10127C0.303908 1.67364 0.303908 0.940519 0.731533 0.512894C1.15922 0.0852685 1.83122 0.0241435 2.31997 0.390706L9.16222 6.37771C9.4066 6.68321 9.58991 7.04971 9.58991 7.47739Z" fill="%23A09632"/%3e%3c/svg%3e');
          mask-image: url('data:image/svg+xml,%3csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M9.58991 7.47739C9.58991 7.90502 9.4066 8.27158 9.10116 8.51596L2.25885 14.564C1.7701 14.9917 1.03703 14.9306 0.67047 14.4418C0.303908 13.9531 0.303908 13.2811 0.792658 12.8535L6.77966 7.59958C6.84072 7.53846 6.84072 7.47739 6.77966 7.35521L0.792658 2.10127C0.303908 1.67364 0.303908 0.940519 0.731533 0.512894C1.15922 0.0852685 1.83122 0.0241435 2.31997 0.390706L9.16222 6.37771C9.4066 6.68321 9.58991 7.04971 9.58991 7.47739Z" fill="%23A09632"/%3e%3c/svg%3e');
  /* stylelint-enable */
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #a09632;
}

.swiper-button-prev::after {
  /* stylelint-disable */
  -webkit-mask-image: url('data:image/svg+xml,%3csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M0.3125 7.49997C0.3125 7.06247 0.5 6.68747 0.8125 6.43747L7.8125 0.312468C8.3125 -0.125032 9 -0.0625322 9.4375 0.437468C9.8125 0.937468 9.8125 1.62497 9.3125 1.99997L3.1875 7.37497C3.125 7.43747 3.125 7.49997 3.1875 7.56247L9.3125 12.9375C9.8125 13.375 9.875 14.0625 9.4375 14.5625C9 15.0625 8.3125 15.125 7.8125 14.6875L7.75 14.625L0.8125 8.56247C0.5 8.31247 0.3125 7.87497 0.3125 7.49997Z" fill="%23A09632"/%3e%3c/svg%3e');
          mask-image: url('data:image/svg+xml,%3csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M0.3125 7.49997C0.3125 7.06247 0.5 6.68747 0.8125 6.43747L7.8125 0.312468C8.3125 -0.125032 9 -0.0625322 9.4375 0.437468C9.8125 0.937468 9.8125 1.62497 9.3125 1.99997L3.1875 7.37497C3.125 7.43747 3.125 7.49997 3.1875 7.56247L9.3125 12.9375C9.8125 13.375 9.875 14.0625 9.4375 14.5625C9 15.0625 8.3125 15.125 7.8125 14.6875L7.75 14.625L0.8125 8.56247C0.5 8.31247 0.3125 7.87497 0.3125 7.49997Z" fill="%23A09632"/%3e%3c/svg%3e');
  /* stylelint-enable */
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #a09632;
}

.--arrow-color-white .swiper-button-prev::after,
.--arrow-color-white .swiper-button-next::after {
  background: #fff;
}
.--arrow-color-black .swiper-button-prev::after,
.--arrow-color-black .swiper-button-next::after {
  background: #1e1e1e;
}

.swiper-slide .wp-block-image img {
  width: 100%;
}

.block__slider:not(.on-site-page-slider) .swiper.slider--show-arrows.slider--arrow-position-bottom .swiper-wrapper {
  height: auto;
}
.block__slider:not(.on-site-page-slider) .swiper.slider--show-arrows.slider--arrow-position-bottom .swiper-controls-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
  gap: 2.25rem;
}
.block__slider:not(.on-site-page-slider) .swiper.slider--show-arrows.slider--arrow-position-bottom .swiper-button-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.block__slider:not(.on-site-page-slider) .swiper.slider--show-arrows.slider--arrow-position-bottom .swiper-pagination {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  top: 0 !important;
  bottom: 0 !important;
  padding-top: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.block__slider:not(.on-site-page-slider) .swiper.slider--show-arrows.slider--arrow-position-bottom .swiper-button-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.block__slider:not(.on-site-page-slider) .swiper.slider--show-arrows.slider--arrow-position-bottom .swiper-button-prev,
.block__slider:not(.on-site-page-slider) .swiper.slider--show-arrows.slider--arrow-position-bottom .swiper-button-next,
.block__slider:not(.on-site-page-slider) .swiper.slider--show-arrows.slider--arrow-position-bottom .swiper-pagination {
  position: relative;
  margin: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.swiper-wrapper.center-slides {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block__slider .block__card,
.block__slider .block__card__wrapper {
  height: 100%;
}
.block__slider .block__card__content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.block__spacer {
  margin: 0 !important;
  width: 100% !important;
}
.block__spacer.block__spacer--small {
  height: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .block__spacer.block__spacer--small {
    height: 1.5rem;
  }
}
.block__spacer.block__spacer--medium {
  height: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .block__spacer.block__spacer--medium {
    height: 2.25rem;
  }
}
.block__spacer.block__spacer--large {
  height: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .block__spacer.block__spacer--large {
    height: 3rem;
  }
}
.block__spacer.block__spacer--extra-large {
  height: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .block__spacer.block__spacer--extra-large {
    height: 4.5rem;
  }
}

.block__text-columns .inner-blocks {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: var(--tc-gutter-x);
     -moz-column-gap: var(--tc-gutter-x);
          column-gap: var(--tc-gutter-x);
}
@media (max-width: 767.98px) {
  .block__text-columns .inner-blocks {
    -webkit-column-count: 2 !important;
       -moz-column-count: 2 !important;
            column-count: 2 !important;
  }
}
@media (max-width: 767.98px) {
  .block__text-columns .inner-blocks {
    -webkit-column-count: 1 !important;
       -moz-column-count: 1 !important;
            column-count: 1 !important;
  }
}

.block__card__wrapper,
.block__teaser__wrapper {
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (max-width: 767.98px) {
  .block__card__wrapper,
  .block__teaser__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@container product-content (max-width: 752px) {
  .block__card__wrapper,
  .block__teaser__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@container product-content (max-width: 600px) {
  .block__card__wrapper,
  .block__teaser__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block__card__content:not(.block__card--image-top) {
  padding: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .block__card__content:not(.block__card--image-top) {
    padding: 4.5rem;
  }
}

.block__card__content,
.block__teaser__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .block__card__content,
  .block__teaser__content {
    padding: calc(1.275rem + 0.3vw);
  }
}
@media (max-width: 767.98px) and (min-width: 1200px) {
  .block__card__content,
  .block__teaser__content {
    padding: 1.5rem;
  }
}

.block__card,
.block__teaser {
  position: relative;
}
.wp-bootstrap-blocks-row .block__card,
.wp-bootstrap-blocks-row .block__teaser {
  height: 100%;
}
.block__card.block__card--image-top .block__card__image,
.block__card.block__card--image-top .block__teaser__image, .block__card.block__teaser--image-top .block__card__image,
.block__card.block__teaser--image-top .block__teaser__image,
.block__teaser.block__card--image-top .block__card__image,
.block__teaser.block__card--image-top .block__teaser__image,
.block__teaser.block__teaser--image-top .block__card__image,
.block__teaser.block__teaser--image-top .block__teaser__image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block__card.block__card--image-top .block__card__image img,
.block__card.block__card--image-top .block__teaser__image img, .block__card.block__teaser--image-top .block__card__image img,
.block__card.block__teaser--image-top .block__teaser__image img,
.block__teaser.block__card--image-top .block__card__image img,
.block__teaser.block__card--image-top .block__teaser__image img,
.block__teaser.block__teaser--image-top .block__card__image img,
.block__teaser.block__teaser--image-top .block__teaser__image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.block__card.block__card--image-top .block__card__wrapper,
.block__card.block__card--image-top .block__teaser__wrapper, .block__card.block__teaser--image-top .block__card__wrapper,
.block__card.block__teaser--image-top .block__teaser__wrapper,
.block__teaser.block__card--image-top .block__card__wrapper,
.block__teaser.block__card--image-top .block__teaser__wrapper,
.block__teaser.block__teaser--image-top .block__card__wrapper,
.block__teaser.block__teaser--image-top .block__teaser__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.block__card.block__card--image-top .block__card__content,
.block__card.block__card--image-top .block__teaser__content, .block__card.block__teaser--image-top .block__card__content,
.block__card.block__teaser--image-top .block__teaser__content,
.block__teaser.block__card--image-top .block__card__content,
.block__teaser.block__card--image-top .block__teaser__content,
.block__teaser.block__teaser--image-top .block__card__content,
.block__teaser.block__teaser--image-top .block__teaser__content {
  padding: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .block__card.block__card--image-top .block__card__content,
  .block__card.block__card--image-top .block__teaser__content, .block__card.block__teaser--image-top .block__card__content,
  .block__card.block__teaser--image-top .block__teaser__content,
  .block__teaser.block__card--image-top .block__card__content,
  .block__teaser.block__card--image-top .block__teaser__content,
  .block__teaser.block__teaser--image-top .block__card__content,
  .block__teaser.block__teaser--image-top .block__teaser__content {
    padding: 1.5rem;
  }
}
.block__card.block__card--image-left .block__card__image,
.block__card.block__card--image-left .block__teaser__image, .block__card.block__teaser--image-left .block__card__image,
.block__card.block__teaser--image-left .block__teaser__image,
.block__teaser.block__card--image-left .block__card__image,
.block__teaser.block__card--image-left .block__teaser__image,
.block__teaser.block__teaser--image-left .block__card__image,
.block__teaser.block__teaser--image-left .block__teaser__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block__card.block__card--image-left .block__card__image img,
.block__card.block__card--image-left .block__teaser__image img, .block__card.block__teaser--image-left .block__card__image img,
.block__card.block__teaser--image-left .block__teaser__image img,
.block__teaser.block__card--image-left .block__card__image img,
.block__teaser.block__card--image-left .block__teaser__image img,
.block__teaser.block__teaser--image-left .block__card__image img,
.block__teaser.block__teaser--image-left .block__teaser__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .block__card.block__card--image-left .block__card__image, .block__card.block__teaser--image-left .block__card__image,
  .block__teaser.block__card--image-left .block__card__image,
  .block__teaser.block__teaser--image-left .block__card__image {
    width: 50%;
  }
}
@container product-content (max-width: 600px) {
  .block__card.block__card--image-left .block__card__image, .block__card.block__teaser--image-left .block__card__image,
  .block__teaser.block__card--image-left .block__card__image,
  .block__teaser.block__teaser--image-left .block__card__image {
    width: 100%;
  }
}
.block__card.block__card--image-left .block__card__image img, .block__card.block__teaser--image-left .block__card__image img,
.block__teaser.block__card--image-left .block__card__image img,
.block__teaser.block__teaser--image-left .block__card__image img {
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .block__card.block__card--image-left .block__card__content, .block__card.block__teaser--image-left .block__card__content,
  .block__teaser.block__card--image-left .block__card__content,
  .block__teaser.block__teaser--image-left .block__card__content {
    width: 50%;
  }
}
@container product-content (max-width: 600px) {
  .block__card.block__card--image-left .block__card__content, .block__card.block__teaser--image-left .block__card__content,
  .block__teaser.block__card--image-left .block__card__content,
  .block__teaser.block__teaser--image-left .block__card__content {
    width: 100%;
  }
}
.block__card .block__card__wrapper,
.block__card .block__teaser__wrapper,
.block__teaser .block__card__wrapper,
.block__teaser .block__teaser__wrapper {
  overflow: hidden;
}
.block__card.block__card--image-right .block__card__image,
.block__card.block__card--image-right .block__teaser__image, .block__card.block__teaser--image-right .block__card__image,
.block__card.block__teaser--image-right .block__teaser__image,
.block__teaser.block__card--image-right .block__card__image,
.block__teaser.block__card--image-right .block__teaser__image,
.block__teaser.block__teaser--image-right .block__card__image,
.block__teaser.block__teaser--image-right .block__teaser__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block__card.block__card--image-right .block__card__image img,
.block__card.block__card--image-right .block__teaser__image img, .block__card.block__teaser--image-right .block__card__image img,
.block__card.block__teaser--image-right .block__teaser__image img,
.block__teaser.block__card--image-right .block__card__image img,
.block__teaser.block__card--image-right .block__teaser__image img,
.block__teaser.block__teaser--image-right .block__card__image img,
.block__teaser.block__teaser--image-right .block__teaser__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .block__card.block__card--image-right .block__card__image, .block__card.block__teaser--image-right .block__card__image,
  .block__teaser.block__card--image-right .block__card__image,
  .block__teaser.block__teaser--image-right .block__card__image {
    width: 50%;
  }
}
@container product-content (max-width: 752px) {
  .block__card.block__card--image-right .block__card__image, .block__card.block__teaser--image-right .block__card__image,
  .block__teaser.block__card--image-right .block__card__image,
  .block__teaser.block__teaser--image-right .block__card__image {
    width: 35%;
  }
}
@container product-content (max-width: 600px) {
  .block__card.block__card--image-right .block__card__image, .block__card.block__teaser--image-right .block__card__image,
  .block__teaser.block__card--image-right .block__card__image,
  .block__teaser.block__teaser--image-right .block__card__image {
    width: 100%;
  }
}
.block__card.block__card--image-right .block__card__image img, .block__card.block__teaser--image-right .block__card__image img,
.block__teaser.block__card--image-right .block__card__image img,
.block__teaser.block__teaser--image-right .block__card__image img {
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .block__card.block__card--image-right .block__card__content, .block__card.block__teaser--image-right .block__card__content,
  .block__teaser.block__card--image-right .block__card__content,
  .block__teaser.block__teaser--image-right .block__card__content {
    width: 50%;
  }
}
@container product-content (max-width: 752px) {
  .block__card.block__card--image-right .block__card__content, .block__card.block__teaser--image-right .block__card__content,
  .block__teaser.block__card--image-right .block__card__content,
  .block__teaser.block__teaser--image-right .block__card__content {
    width: 65%;
  }
}
@container product-content (max-width: 600px) {
  .block__card.block__card--image-right .block__card__content, .block__card.block__teaser--image-right .block__card__content,
  .block__teaser.block__card--image-right .block__card__content,
  .block__teaser.block__teaser--image-right .block__card__content {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .block__card .block__card__image,
  .block__card .block__teaser__image,
  .block__teaser .block__card__image,
  .block__teaser .block__teaser__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .block__card .block__card__content,
  .block__card .block__teaser__content,
  .block__teaser .block__card__content,
  .block__teaser .block__teaser__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@container product-content (max-width: 600px) {
  .block__card .block__card__image,
  .block__card .block__teaser__image,
  .block__teaser .block__card__image,
  .block__teaser .block__teaser__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .block__card .block__card__content,
  .block__card .block__teaser__content,
  .block__teaser .block__card__content,
  .block__teaser .block__teaser__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.block__card .block__card__wrapper,
.block__card .block__teaser__wrapper,
.block__teaser .block__card__wrapper,
.block__teaser .block__teaser__wrapper {
  overflow: hidden;
}
.block__card.block__card--image-behind-right, .block__card.block__card--image-behind-left,
.block__teaser.block__card--image-behind-right,
.block__teaser.block__card--image-behind-left {
  background: none;
}
.block__card.block__card--image-behind-right .block__card__image, .block__card.block__card--image-behind-left .block__card__image,
.block__teaser.block__card--image-behind-right .block__card__image,
.block__teaser.block__card--image-behind-left .block__card__image {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block__card.block__card--image-behind-right .block__card__image img, .block__card.block__card--image-behind-left .block__card__image img,
.block__teaser.block__card--image-behind-right .block__card__image img,
.block__teaser.block__card--image-behind-left .block__card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 2/1 !important;
  height: 100%;
  width: 100%;
  position: absolute;
  margin: auto;
  inset: 0;
}
@media (max-width: 767.98px) {
  .block__card.block__card--image-behind-right .block__card__image, .block__card.block__card--image-behind-left .block__card__image,
  .block__teaser.block__card--image-behind-right .block__card__image,
  .block__teaser.block__card--image-behind-left .block__card__image {
    margin-bottom: 20rem;
  }
}
.block__card.block__card--image-behind-right .block__card__content, .block__card.block__card--image-behind-left .block__card__content,
.block__teaser.block__card--image-behind-right .block__card__content,
.block__teaser.block__card--image-behind-left .block__card__content {
  backdrop-filter: blur(5px);
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
@media (min-width: 768px) {
  .block__card.block__card--image-behind-right .block__card__content, .block__card.block__card--image-behind-left .block__card__content,
  .block__teaser.block__card--image-behind-right .block__card__content,
  .block__teaser.block__card--image-behind-left .block__card__content {
    min-height: 500px;
  }
}
@media (min-width: 768px) {
  .block__card.block__card--image-behind-right .block__card__image,
  .block__teaser.block__card--image-behind-right .block__card__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.block__card.block__card--image-contain .block__card__content,
.block__teaser.block__card--image-contain .block__card__content {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media (min-width: 768px) {
  .block__card.block__card--image-contain .block__card__content,
  .block__teaser.block__card--image-contain .block__card__content {
    width: 70%;
  }
}
@container product-content (max-width: 600px) {
  .block__card.block__card--image-contain .block__card__content,
  .block__teaser.block__card--image-contain .block__card__content {
    width: 100%;
  }
}
.block__card.block__card--image-contain .block__card__image,
.block__teaser.block__card--image-contain .block__card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .block__card.block__card--image-contain .block__card__image,
  .block__teaser.block__card--image-contain .block__card__image {
    width: 30%;
  }
}
@container product-content (max-width: 600px) {
  .block__card.block__card--image-contain .block__card__image,
  .block__teaser.block__card--image-contain .block__card__image {
    width: 100%;
  }
}
.block__card.block__card--image-contain .block__card__image img,
.block__teaser.block__card--image-contain .block__card__image img {
  padding-top: calc(1.275rem + 0.3vw);
  width: auto;
  height: 100%;
  aspect-ratio: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 1200px) {
  .block__card.block__card--image-contain .block__card__image img,
  .block__teaser.block__card--image-contain .block__card__image img {
    padding-top: 1.5rem;
  }
}
@container product-content (max-width: 721px) {
  .block__card.block__card--image-contain .block__card__image img,
  .block__teaser.block__card--image-contain .block__card__image img {
    padding-left: calc(1.575rem + 3.9vw);
    max-height: 20rem;
  }
  @media (min-width: 1200px) {
    .block__card.block__card--image-contain .block__card__image img,
    .block__teaser.block__card--image-contain .block__card__image img {
      padding-left: 4.5rem;
    }
  }
}
@container product-content (min-width: 600px) {
  .block__card.block__card--image-contain .block__card__image img,
  .block__teaser.block__card--image-contain .block__card__image img {
    padding-bottom: calc(1.275rem + 0.3vw);
  }
  @media (min-width: 1200px) {
    .block__card.block__card--image-contain .block__card__image img,
    .block__teaser.block__card--image-contain .block__card__image img {
      padding-bottom: 1.5rem;
    }
  }
}
@container product-content (max-width: 600px) {
  .block__card.block__card--image-contain .block__card__image img,
  .block__teaser.block__card--image-contain .block__card__image img {
    padding-left: 0;
  }
}
@container product-content (min-width: 721px) {
  .block__card.block__card--image-contain.block__card--image-left .block__card__image img,
  .block__teaser.block__card--image-contain.block__card--image-left .block__card__image img {
    padding-left: calc(1.575rem + 3.9vw);
  }
  @media (min-width: 1200px) {
    .block__card.block__card--image-contain.block__card--image-left .block__card__image img,
    .block__teaser.block__card--image-contain.block__card--image-left .block__card__image img {
      padding-left: 4.5rem;
    }
  }
}
@container product-content (min-width: 721px) {
  .block__card.block__card--image-contain.block__card--image-right .block__card__image img,
  .block__teaser.block__card--image-contain.block__card--image-right .block__card__image img {
    padding-right: calc(1.575rem + 3.9vw);
  }
  @media (min-width: 1200px) {
    .block__card.block__card--image-contain.block__card--image-right .block__card__image img,
    .block__teaser.block__card--image-contain.block__card--image-right .block__card__image img {
      padding-right: 4.5rem;
    }
  }
}
.block__card.block__card--style-clean .block__card__wrapper.has-white-background-color,
.block__card.block__card--style-clean .block__teaser__wrapper.has-white-background-color, .block__card.block__teaser--style-clean .block__card__wrapper.has-white-background-color,
.block__card.block__teaser--style-clean .block__teaser__wrapper.has-white-background-color,
.block__teaser.block__card--style-clean .block__card__wrapper.has-white-background-color,
.block__teaser.block__card--style-clean .block__teaser__wrapper.has-white-background-color,
.block__teaser.block__teaser--style-clean .block__card__wrapper.has-white-background-color,
.block__teaser.block__teaser--style-clean .block__teaser__wrapper.has-white-background-color {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
}
.block__card.block__card--style-border .block__card__wrapper,
.block__card.block__card--style-border .block__teaser__wrapper, .block__card.block__teaser--style-border .block__card__wrapper,
.block__card.block__teaser--style-border .block__teaser__wrapper,
.block__teaser.block__card--style-border .block__card__wrapper,
.block__teaser.block__card--style-border .block__teaser__wrapper,
.block__teaser.block__teaser--style-border .block__card__wrapper,
.block__teaser.block__teaser--style-border .block__teaser__wrapper {
  border: 1px solid #a09632;
}
.block__card.block__card--style-box-shadow .block__card__wrapper,
.block__card.block__card--style-box-shadow .block__teaser__wrapper, .block__card.block__teaser--style-box-shadow .block__card__wrapper,
.block__card.block__teaser--style-box-shadow .block__teaser__wrapper,
.block__teaser.block__card--style-box-shadow .block__card__wrapper,
.block__teaser.block__card--style-box-shadow .block__teaser__wrapper,
.block__teaser.block__teaser--style-box-shadow .block__card__wrapper,
.block__teaser.block__teaser--style-box-shadow .block__teaser__wrapper {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(30, 30, 30, 0.075);
}

.block__card--image-behind-right.alignfull .block__card__content,
.alignfull .block__card--image-behind-right .block__card__content,
.block__card--image-behind-left.alignfull .block__card__content,
.alignfull .block__card--image-behind-left .block__card__content {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (max-width: 1800px) {
  .block__card--image-behind-right.alignfull .block__card__content,
  .alignfull .block__card--image-behind-right .block__card__content,
  .block__card--image-behind-left.alignfull .block__card__content,
  .alignfull .block__card--image-behind-left .block__card__content {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}

body:not(.wp-admin) .block__card--image-behind-right.alignfull .block__card__content,
body:not(.wp-admin) .alignfull .block__card--image-behind-right .block__card__content {
  padding-left: calc(50vw - 660px + 6px);
}
@media (max-width: 1400px) {
  body:not(.wp-admin) .block__card--image-behind-right.alignfull .block__card__content,
  body:not(.wp-admin) .alignfull .block__card--image-behind-right .block__card__content {
    padding-left: calc(50vw - 570px + 6px);
  }
}
@media (max-width: 1200px) {
  body:not(.wp-admin) .block__card--image-behind-right.alignfull .block__card__content,
  body:not(.wp-admin) .alignfull .block__card--image-behind-right .block__card__content {
    padding-left: calc(1.575rem + 3.9vw);
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
}
@media (max-width: 1200px) and (min-width: 1200px) {
  body:not(.wp-admin) .block__card--image-behind-right.alignfull .block__card__content,
  body:not(.wp-admin) .alignfull .block__card--image-behind-right .block__card__content {
    padding-left: 4.5rem;
  }
}
body:not(.wp-admin) .block__card--image-behind-left.alignfull .block__card__content,
body:not(.wp-admin) .alignfull .block__card--image-behind-left .block__card__content {
  padding-right: calc(50vw - 660px + 6px);
}
@media (max-width: 1400px) {
  body:not(.wp-admin) .block__card--image-behind-left.alignfull .block__card__content,
  body:not(.wp-admin) .alignfull .block__card--image-behind-left .block__card__content {
    padding-right: calc(50vw - 570px + 6px);
  }
}
@media (max-width: 1200px) {
  body:not(.wp-admin) .block__card--image-behind-left.alignfull .block__card__content,
  body:not(.wp-admin) .alignfull .block__card--image-behind-left .block__card__content {
    padding-right: calc(1.575rem + 3.9vw);
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
}
@media (max-width: 1200px) and (min-width: 1200px) {
  body:not(.wp-admin) .block__card--image-behind-left.alignfull .block__card__content,
  body:not(.wp-admin) .alignfull .block__card--image-behind-left .block__card__content {
    padding-right: 4.5rem;
  }
}

.block__teaser__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block__teaser__image img {
  border-radius: 100%;
  aspect-ratio: 1/1 !important;
  max-width: 15rem !important;
  max-height: 15rem !important;
}

.block__teaser__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block__teaser:not(.block__teaser--image-top) .block__teaser__wrapper {
  gap: 1.5rem;
}
.block__teaser:not(.block__teaser--image-top) .block__teaser__image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block__teaser:not(.block__teaser--image-top) .block__teaser__content {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}

.block__teaser.has-background:not(.block__teaser--image-top) .block__teaser__wrapper {
  gap: 0;
}
@media (min-width: 768px) {
  .block__teaser.has-background:not(.block__teaser--image-top) {
    padding: calc(1.425rem + 2.1vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .block__teaser.has-background:not(.block__teaser--image-top) {
    padding: 3rem;
  }
}
@media (min-width: 768px) {
  .block__teaser.has-background:not(.block__teaser--image-top) .block__teaser__wrapper {
    gap: 3rem;
  }
}
@media (max-width: 767.98px) {
  .block__teaser.has-background:not(.block__teaser--image-top) {
    padding-top: calc(1.275rem + 0.3vw);
  }
}
@media (max-width: 767.98px) and (min-width: 1200px) {
  .block__teaser.has-background:not(.block__teaser--image-top) {
    padding-top: 1.5rem;
  }
}

.block__teaser.block__teaser--image-top:not(.has-background) .block__teaser__content {
  padding-bottom: 0 !important;
}

.block__teaser.block__teaser--image-top.has-background {
  padding-top: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .block__teaser.block__teaser--image-top.has-background {
    padding-top: 1.5rem;
  }
}

.event__teaser .block__teaser__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.event__teaser .block__teaser__content h3 {
  text-align: center;
}
.event__teaser .block__teaser__content .event__base-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.event__teaser .block__teaser__content .event__base-data .event__base-data__dates,
.event__teaser .block__teaser__content .event__base-data .event__base-data__location {
  font-weight: 400;
}
.event__teaser .block__teaser__content .event__excerpt {
  text-align: center;
}

.event__teaser .block__teaser__content .block__button,
.event__teaser .block__teaser__content .block__link,
.team-member__teaser .block__button,
.team-member__teaser .block__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
}

.team-member__teaser .teaser__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper .block__teaser,
.wp-bootstrap-blocks-row .block__teaser {
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.swiper .teaser,
.wp-bootstrap-blocks-row .teaser {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.swiper .teaser__content,
.wp-bootstrap-blocks-row .teaser__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

button {
  color: #1e1e1e;
}

.btn {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}
.btn:hover {
  text-decoration: none;
}
.btn:disabled {
  opacity: 0.5;
}
.btn svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}

.btn--primary {
  background-color: #a09632 !important;
  border-color: #a09632 !important;
  color: #fff !important;
}
.btn--primary:hover {
  background-color: #797226 !important;
  border-color: #797226 !important;
  color: #fff !important;
}
.btn--primary svg {
  fill: #fff;
  color: #fff;
}
.btn--primary.btn--ghost {
  border-color: #fff !important;
  color: #1e1e1e !important;
  background-color: #fff !important;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.btn--primary.btn--ghost svg {
  fill: #a09632;
  color: #a09632;
}
.btn--primary.btn--ghost:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1e1e1e;
}
.btn--primary.btn--ghost:hover svg {
  fill: #797226;
  color: #797226;
}

.btn--secondary {
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
  color: #fff !important;
}
.btn--secondary:hover svg {
  fill: #fff;
  color: #fff;
}
.btn--secondary.btn--ghost {
  border-color: #fff !important;
  color: #1e1e1e !important;
  background-color: #fff !important;
}
.btn--secondary.btn--ghost:hover {
  background-color: #f2f2e8 !important;
  border-color: #f2f2e8 !important;
  color: #1e1e1e !important;
}
.btn--secondary.btn--ghost:hover svg {
  fill: #797226;
  color: #797226;
}

.block__geschmackspunkte {
  background-color: #f2f2e8;
  padding: 2.25rem;
}
.block__geschmackspunkte .all-taste-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  margin-top: 0.75rem;
}
.block__geschmackspunkte .single-taste-point {
  margin: 0;
  padding: 0;
}
.block__geschmackspunkte .single-taste-point .single-taste-point__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.75rem 0;
  margin: 0;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block__geschmackspunkte .single-taste-point .single-taste-point__content .single-taste-point__left-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
.block__geschmackspunkte .single-taste-point .single-taste-point__content .single-taste-point__right-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
@media (max-width: 575.98px) {
  .block__geschmackspunkte .single-taste-point .single-taste-point__content .single-taste-point__left-col,
  .block__geschmackspunkte .single-taste-point .single-taste-point__content .single-taste-point__right-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
  }
}
.block__geschmackspunkte .single-taste-point .single-taste-point__content .single-taste-point__range {
  background-color: #fff;
  border-radius: 0.5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem;
  height: 1.25rem;
}
@media (max-width: 991.98px) {
  .block__geschmackspunkte .single-taste-point .single-taste-point__content .single-taste-point__range {
    width: 65%;
  }
}
.block__geschmackspunkte .single-taste-point .single-taste-point__content .single-taste-point__range .single-taste-point__range__bar {
  background-color: #a09632;
  border-radius: 0.5rem;
  height: 100%;
}

.block__short-fact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block__short-fact.short-fact__layout--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}
.block__short-fact .short-fact__left-col .block__icon .icon__icon .icon {
  margin: 0;
}
@media (max-width: 575.98px) {
  .block__short-fact {
    gap: 1rem;
  }
}

.short-fact__layout--vertical .short-fact__right-col {
  text-align: center;
}

.short-fact__big-number {
  font-size: calc(1.625rem + 4.5vw);
  line-height: calc(1.625rem + 4.5vw);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.75rem;
  font-family: "Fira Sans";
  font-weight: 500;
  color: #a09632;
  word-break: keep-all;
}
@media (min-width: 1200px) {
  .short-fact__big-number {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  .short-fact__big-number {
    line-height: 5rem;
  }
}
.short-fact__layout--vertical .short-fact__big-number {
  margin-right: 0;
}

.short-fact__content {
  margin-top: 0.375rem;
  color: #1e1e1e;
}

.short-fact__headline {
  font-size: calc(1.29125rem + 0.495vw);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 500;
  line-height: 1.2;
  word-break: break-word;
}
@media (min-width: 1200px) {
  .short-fact__headline {
    font-size: 1.6625rem;
  }
}
.short-fact__layout--vertical .short-fact__headline {
  width: auto;
}

.short-fact__link {
  margin-top: 0.375rem;
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/google/fira-sans-v17-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/google/fira-sans-v17-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/google/playfair-display-v37-latin-regular.woff2") format("woff2");
}
.block__steckbrief,
.block__nutrition-table {
  background-color: #f2f2e8;
  padding: 2.25rem;
}

.profile__features,
.nutrition-table__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  margin-top: 0.75rem;
}
.profile__features .profile__feature__item,
.profile__features .nutrition-table__feature__item,
.nutrition-table__features .profile__feature__item,
.nutrition-table__features .nutrition-table__feature__item {
  margin: 0;
  padding: 0;
}
.profile__features .profile__feature__item .profile__feature__item__content,
.profile__features .profile__feature__item .nutrition-table__feature__item__content,
.profile__features .nutrition-table__feature__item .profile__feature__item__content,
.profile__features .nutrition-table__feature__item .nutrition-table__feature__item__content,
.nutrition-table__features .profile__feature__item .profile__feature__item__content,
.nutrition-table__features .profile__feature__item .nutrition-table__feature__item__content,
.nutrition-table__features .nutrition-table__feature__item .profile__feature__item__content,
.nutrition-table__features .nutrition-table__feature__item .nutrition-table__feature__item__content {
  display: grid;
  border-bottom: 1px solid #d3d3d3;
  padding: 0.75rem 0;
  margin: 0;
  grid-template-columns: 2fr 4fr;
  grid-template-areas: "label description";
}
@media (max-width: 991.98px) {
  .profile__features .profile__feature__item .profile__feature__item__content,
  .profile__features .profile__feature__item .nutrition-table__feature__item__content,
  .profile__features .nutrition-table__feature__item .profile__feature__item__content,
  .profile__features .nutrition-table__feature__item .nutrition-table__feature__item__content,
  .nutrition-table__features .profile__feature__item .profile__feature__item__content,
  .nutrition-table__features .profile__feature__item .nutrition-table__feature__item__content,
  .nutrition-table__features .nutrition-table__feature__item .profile__feature__item__content,
  .nutrition-table__features .nutrition-table__feature__item .nutrition-table__feature__item__content {
    grid-template-columns: 3fr 3fr;
  }
}
.profile__features .profile__feature__item .profile__feature__item__content .profile__feature__label,
.profile__features .profile__feature__item .profile__feature__item__content .nutrition-table__feature__label,
.profile__features .profile__feature__item .nutrition-table__feature__item__content .profile__feature__label,
.profile__features .profile__feature__item .nutrition-table__feature__item__content .nutrition-table__feature__label,
.profile__features .nutrition-table__feature__item .profile__feature__item__content .profile__feature__label,
.profile__features .nutrition-table__feature__item .profile__feature__item__content .nutrition-table__feature__label,
.profile__features .nutrition-table__feature__item .nutrition-table__feature__item__content .profile__feature__label,
.profile__features .nutrition-table__feature__item .nutrition-table__feature__item__content .nutrition-table__feature__label,
.nutrition-table__features .profile__feature__item .profile__feature__item__content .profile__feature__label,
.nutrition-table__features .profile__feature__item .profile__feature__item__content .nutrition-table__feature__label,
.nutrition-table__features .profile__feature__item .nutrition-table__feature__item__content .profile__feature__label,
.nutrition-table__features .profile__feature__item .nutrition-table__feature__item__content .nutrition-table__feature__label,
.nutrition-table__features .nutrition-table__feature__item .profile__feature__item__content .profile__feature__label,
.nutrition-table__features .nutrition-table__feature__item .profile__feature__item__content .nutrition-table__feature__label,
.nutrition-table__features .nutrition-table__feature__item .nutrition-table__feature__item__content .profile__feature__label,
.nutrition-table__features .nutrition-table__feature__item .nutrition-table__feature__item__content .nutrition-table__feature__label {
  grid-area: label;
}
.profile__features .profile__feature__item .profile__feature__item__content .profile__feature__description,
.profile__features .profile__feature__item .profile__feature__item__content .nutrition-table__feature__value,
.profile__features .profile__feature__item .nutrition-table__feature__item__content .profile__feature__description,
.profile__features .profile__feature__item .nutrition-table__feature__item__content .nutrition-table__feature__value,
.profile__features .nutrition-table__feature__item .profile__feature__item__content .profile__feature__description,
.profile__features .nutrition-table__feature__item .profile__feature__item__content .nutrition-table__feature__value,
.profile__features .nutrition-table__feature__item .nutrition-table__feature__item__content .profile__feature__description,
.profile__features .nutrition-table__feature__item .nutrition-table__feature__item__content .nutrition-table__feature__value,
.nutrition-table__features .profile__feature__item .profile__feature__item__content .profile__feature__description,
.nutrition-table__features .profile__feature__item .profile__feature__item__content .nutrition-table__feature__value,
.nutrition-table__features .profile__feature__item .nutrition-table__feature__item__content .profile__feature__description,
.nutrition-table__features .profile__feature__item .nutrition-table__feature__item__content .nutrition-table__feature__value,
.nutrition-table__features .nutrition-table__feature__item .profile__feature__item__content .profile__feature__description,
.nutrition-table__features .nutrition-table__feature__item .profile__feature__item__content .nutrition-table__feature__value,
.nutrition-table__features .nutrition-table__feature__item .nutrition-table__feature__item__content .profile__feature__description,
.nutrition-table__features .nutrition-table__feature__item .nutrition-table__feature__item__content .nutrition-table__feature__value {
  grid-area: description;
  font-weight: 500;
}

.option__show-filters {
  display: none;
  color: #a09632;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .option__show-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .option__show-filters::after {
    content: "";
    /* stylelint-disable */
    background: url('data:image/svg+xml;utf8,%3csvg aria-hidden="true" focusable="false" data-prefix="fal" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"%3e%3cpath fill="currentColor" d="M443.5 162.6l-7.1-7.1c-4.7-4.7-12.3-4.7-17 0L224 351 28.5 155.5c-4.7-4.7-12.3-4.7-17 0l-7.1 7.1c-4.7 4.7-4.7 12.3 0 17l211 211.1c4.7 4.7 12.3 4.7 17 0l211-211.1c4.8-4.7 4.8-12.3.1-17z"%3e%3c/path%3e%3c/svg%3e') no-repeat center;
    /* stylelint-enable */
    height: 0.75rem;
    width: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0.375rem;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  .option__show-filters:hover {
    text-decoration: underline;
  }
  .option__show-filters + .woocommerce-shop__filter-list {
    display: none !important;
  }
  .option__show-filters.-active + .woocommerce-shop__filter-list {
    display: grid !important;
  }
  .option__show-filters.-active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.facetwp-facet .facetwp-checkbox {
  background: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.facetwp-facet .facetwp-checkbox::before {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 0.25rem;
  outline: 1px solid #1e1e1e;
  content: "";
  margin-right: 0.75rem;
}
.facetwp-facet .facetwp-checkbox .facetwp-counter {
  display: none;
}
.facetwp-facet .facetwp-checkbox.checked {
  background: none;
}
.facetwp-facet .facetwp-checkbox.checked::before {
  background-color: #a09632;
  border: 2px solid #fff;
}
.facetwp-facet.facetwp-type-slider .facetwp-slider .noUi-handle {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 0.25rem;
  outline: 1px solid #1e1e1e;
  border: none;
  cursor: pointer;
}
.facetwp-facet.facetwp-type-slider .facetwp-slider[data-has-moved] .noUi-connect {
  background-color: #a09632;
}
.facetwp-facet.facetwp-type-slider .facetwp-slider-reset {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #a09632;
  padding: 0;
}
.facetwp-facet.facetwp-type-autocomplete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.facetwp-facet.facetwp-type-autocomplete input.facetwp-autocomplete {
  padding: calc(0.75rem - 1px) 0.75rem;
  border: 0.5px solid #1e1e1e;
  border-right: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.facetwp-facet.facetwp-type-autocomplete input.facetwp-autocomplete:focus-visible {
  padding: calc(0.75rem - 2px) calc(0.75rem - 1px);
  padding-right: 0.75rem;
  border: 2px solid #a09632;
  border-right: none;
  outline: none;
}
.facetwp-facet.facetwp-type-autocomplete input.facetwp-autocomplete-update {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background-color: #a09632 !important;
  border-color: #a09632 !important;
  color: #fff !important;
  /* stylelint-disable */
  background: url('data:image/svg+xml,%3csvg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cg clip-path="url%28%23clip0_3135_4230%29"%3e%3cpath d="M33.7764 29.6824L27.1529 23.1304C33.4055 13.7619 27.1716 1.13817 15.9321 0.407545C4.69239 -0.32308 -3.12326 11.3875 1.8638 21.4866C4.33057 26.4818 9.41986 29.6428 14.991 29.6397C17.8859 29.6426 20.7151 28.7774 23.1132 27.1559L29.7509 33.7936C30.8645 34.9005 32.6628 34.9005 33.7764 33.7936C34.9413 32.6708 34.9413 30.8053 33.7764 29.6824ZM14.991 4.57342C22.9577 4.57371 27.9371 13.1983 23.9533 20.0975C19.9696 26.9968 10.0112 26.9963 6.02807 20.0966C5.12245 18.5278 4.64441 16.7485 4.64193 14.9368C4.64178 9.21879 9.27301 4.5813 14.991 4.57342Z" fill="white"/%3e%3c/g%3e%3cdefs%3e%3cclipPath id="clip0_3135_4230"%3e%3crect width="35" height="35" fill="white"/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e') no-repeat center;
  /* stylelint-enable */
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-position: center;
  background-size: 30px;
}
.facetwp-facet.facetwp-type-autocomplete input.facetwp-autocomplete-update:hover {
  text-decoration: none;
}
.facetwp-facet.facetwp-type-autocomplete input.facetwp-autocomplete-update:disabled {
  opacity: 0.5;
}
.facetwp-facet.facetwp-type-autocomplete input.facetwp-autocomplete-update svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.facetwp-facet.facetwp-type-autocomplete input.facetwp-autocomplete-update:hover {
  background-color: #797226 !important;
  border-color: #797226 !important;
  color: #fff !important;
}
.facetwp-facet.facetwp-type-autocomplete input.facetwp-autocomplete-update svg {
  fill: #fff;
  color: #fff;
}
.facetwp-facet.facetwp-type-autocomplete .fcomplete-wrap {
  top: 100%;
  z-index: 10;
}

.filter:has(.facetwp-facet:not(.facetwp-facet-product_bundles):empty) {
  display: none !important;
}
.filter:has(:not(.facetwp-facet:empty)) {
  display: block;
}

.block__on-site-menu {
  max-width: 100%;
}

.on-site-menu-slider {
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
}
.on-site-menu-slider .on-site-menu__item {
  color: #1e1e1e;
  display: block;
  height: 100%;
  padding: 0.75rem 0;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-underline-offset: 0.4em;
  text-decoration-color: #1e1e1e;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
}
.on-site-menu-slider .on-site-menu__item:hover {
  text-decoration-thickness: 0.3rem;
  text-decoration-color: #a09632;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.on-site-menu-slider .swiper {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.on-site-menu-slider .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.on-site-menu-slider .swiper-wrapper .swiper-slide:first-child {
  margin-left: auto;
}
.on-site-menu-slider .swiper-wrapper .swiper-slide:last-child {
  margin-right: auto;
}
.on-site-menu-slider .swiper-wrapper .swiper-slide > * {
  max-width: 80%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.on-site-menu-slider .swiper-controls-wrapper .swiper-button-prev,
.on-site-menu-slider .swiper-controls-wrapper .swiper-button-next {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.on-site-menu-slider .swiper-controls-wrapper .swiper-button-prev {
  left: 0;
}
.on-site-menu-slider .swiper-controls-wrapper .swiper-button-next {
  right: 0;
}

.block__product-short-facts .shortfact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block__product-short-facts .shortfact__row .block__short-fact .short-fact__left-col .short-fact__icon .icon svg {
  fill: #a09632;
  fill: var(--product-color);
  color: #a09632;
  color: var(--product-color);
}

.product-teaser.product .product-teaser__image {
  padding: 1.5rem;
  background: #fff;
}
.product-teaser.product .product-teaser__image img {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 !important;
  width: 100%;
  height: auto;
  max-height: 25rem;
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.product-teaser.product .product-teaser__image.--change-bg-color {
  background-color: #f2f2e8;
}
.product-teaser.product a.product-teaser__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  text-align: center;
}
.product-teaser.product a.product-teaser__link .product-teaser__title {
  display: inline;
  padding: 0 0.75rem;
  margin-top: 1rem;
  font-size: 1.25rem;
}
.product-teaser.product a.product-teaser__link .product-teaser__title::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.75rem;
  /* stylelint-disable */
  background: url('data:image/svg+xml;utf8,%3csvg width="11" height="16" viewBox="0 0 11 16" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M10.0899 7.97739C10.0899 8.40502 9.9066 8.77158 9.60116 9.01595L2.75885 15.064C2.2701 15.4917 1.53703 15.4306 1.17047 14.9418C0.803908 14.4531 0.803908 13.7811 1.29266 13.3535L7.27966 8.09958C7.34072 8.03846 7.34072 7.97739 7.27966 7.85521L1.29266 2.60127C0.803908 2.17364 0.803908 1.44052 1.23153 1.01289C1.65922 0.585269 2.33122 0.524144 2.81997 0.890706L9.66222 6.87771C9.9066 7.18321 10.0899 7.54971 10.0899 7.97739Z" fill="%23A09632"/%3e%3c/svg%3e') no-repeat;
  /* stylelint-enable */
}
.product-teaser.product a.product-teaser__link .product-teaser__short-description p {
  margin-top: 0.75rem;
}
.product-teaser.product a.product-teaser__link .product-teaser__price {
  color: #a09632;
  font-weight: 400;
}
.product-teaser.product a.product-teaser__link .product-teaser__price del {
  opacity: 0.5;
}
.product-teaser.product a.product-teaser__link .product-teaser__price .woocommerce-Price-amount.amount {
  color: #1e1e1e;
}

.block__product-teaser .product-teaser.product .product-teaser__image img {
  max-height: 35rem;
}

.block__product-slider .product-teaser {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.block__product-slider .product-teaser .product-teaser__image img {
  max-height: 25rem;
}

.wp-admin .block__product-slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.wp-admin .block__product-slider .swiper-wrapper .swiper-slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wp-admin .block__product-slider .swiper-wrapper .swiper-slide:nth-child(n+4) {
  display: none;
}

.block__weintyp {
  background-color: #f2f2e8;
  padding: 2.25rem;
}
.block__weintyp .weintyp__row {
  --tc-gutter-x: 1.5rem;
  --tc-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * 0);
  margin-top: calc(-1 * var(--tc-gutter-y));
  margin-right: calc(-0.5 * 1.5rem);
  margin-right: calc(-0.5 * var(--tc-gutter-x));
  margin-left: calc(-0.5 * 1.5rem);
  margin-left: calc(-0.5 * var(--tc-gutter-x));
}
.block__weintyp .weintyp__row .weintyp__col-1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}
@container product-content (max-width: 752px) {
  .block__weintyp .weintyp__row .weintyp__col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.block__weintyp .weintyp__row .weintyp__col-1 .weintyp__img {
  position: relative;
  width: 100%;
  max-height: 270px;
}
.block__weintyp .weintyp__row .weintyp__col-1 .weintyp__img img {
  aspect-ratio: 1;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@container product-content (max-width: 752px) {
  .block__weintyp .weintyp__row .weintyp__col-1 .weintyp__img {
    max-height: 200px;
  }
  .block__weintyp .weintyp__row .weintyp__col-1 .weintyp__img img {
    max-height: 200px;
  }
}
.block__weintyp .weintyp__row .weintyp__col-2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}
@container product-content (max-width: 752px) {
  .block__weintyp .weintyp__row .weintyp__col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}

.block__link {
  margin-top: 0.75rem;
}

.link__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.link__link a svg {
  height: 1.25rem;
  width: 1.25rem;
  color: #a09632;
  fill: #a09632;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.link__link a:hover {
  color: #797226;
}
.link__link a:hover svg {
  color: #797226;
  fill: #797226;
}

.block__award {
  background-color: #f2f2e8;
  padding: 2.25rem;
}
.block__award .award__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.block__award .award__row ~ .award__row {
  margin-top: 0.75rem;
}
.block__award .award__row .award__icon svg {
  width: 3rem;
  height: 3rem;
}
.block__award .award__row .award__headline {
  font-family: "PlayFair Display";
  line-height: 1.2;
  font-size: calc(1.43rem + 2.16vw);
}
@media (min-width: 1200px) {
  .block__award .award__row .award__headline {
    font-size: 3.05rem;
  }
}
@media (max-width: 575.98px) {
  .block__award .award__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.375rem;
  }
  .block__award .award__row ~ .award__row {
    margin-top: 1.5rem;
  }
}

.block__year {
  background-color: #f2f2e8;
  padding: 2.25rem;
}
.block__year .year__headline {
  font-family: "PlayFair Display";
  line-height: 1.2;
  font-size: calc(1.43rem + 2.16vw);
}
@media (min-width: 1200px) {
  .block__year .year__headline {
    font-size: 3.05rem;
  }
}

.block__komplement {
  background-color: #f2f2e8;
  padding: 2.25rem;
}
.block__komplement .komplement-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.75rem;
}
.block__komplement .komplement-row .komplement-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  font-size: 1.25rem;
}
.block__komplement .komplement-row .komplement-item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block__timeline {
  --badge-size: 12rem;
  position: relative;
}

.timeline__entries {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  position: relative;
}

.timeline__line {
  position: absolute;
  border-left: 2px dashed #1e1e1e;
  height: 0;
  left: 50%;
}

.timeline__entry {
  padding-bottom: 4.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 991.98px) {
  .timeline__entry {
    display: grid;
    grid-template: "badge date" auto "badge content" auto/1fr auto;
  }
}
@media (max-width: 575.98px) {
  .timeline__entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.timeline__entry:last-child {
  padding-bottom: 0;
}
.timeline__entry:nth-child(odd) .timeline__entry__wrapper {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding-left: 3rem;
}
.timeline__entry:nth-child(odd) .timeline__entry__badge {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.timeline__entry:nth-child(odd) .timeline__entry__spacer {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-right: 3rem;
}
.timeline__entry:nth-child(odd) .timeline__entry__date {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.timeline__entry:nth-child(even) .timeline__entry__wrapper {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-right: 3rem;
  text-align: right;
}
.timeline__entry:nth-child(even) .timeline__entry__wrapper > * {
  text-align: right;
}
.timeline__entry:nth-child(even) .timeline__entry__badge {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.timeline__entry:nth-child(even) .timeline__entry__spacer {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding-left: 3rem;
}
.timeline__entry:nth-child(even) .timeline__entry__date {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .timeline__entry {
    margin-left: 0;
    width: 100%;
  }
  .timeline__entry .timeline__entry__wrapper {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    grid-area: content;
    padding-left: 3rem;
    padding-right: 0 !important;
  }
  .timeline__entry .timeline__entry__wrapper > * {
    text-align: left !important;
  }
  .timeline__entry .timeline__entry__spacer {
    padding: 0 !important;
  }
  .timeline__entry .timeline__entry__badge {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
    position: relative !important;
    aspect-ratio: 1;
    grid-area: badge;
  }
  .timeline__entry .timeline__entry__date {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
    grid-area: date;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}
@media (max-width: 575.98px) {
  .timeline__entry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .timeline__entry .timeline__entry__date {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .timeline__entry .timeline__entry__wrapper {
    margin-top: 1.5rem;
    background-color: #a09632;
    color: #fff;
    padding-left: 0 !important;
  }
  .timeline__entry .timeline__entry__wrapper .timeline__entry__content {
    padding: 1.5rem;
  }
}

.timeline__entry__wrapper {
  border-radius: 2px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.timeline__entry__badge {
  width: var(--badge-size);
  height: var(--badge-size);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background-color: #a09632;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.timeline__entry__badge img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.timeline__entry__spacer {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.timeline__entry__date {
  font-size: 1.25rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.timeline__entry__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #fff;
}

.timeline__entry__title {
  margin-top: 0;
  color: var(--theme-color-primary);
}

.block__product-bundle-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.block__product-bundle-display .bundle-product-teaser {
  background: #f2f2e8;
  padding: 1.5rem;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__image {
  padding: 1.5rem;
  background: #fff;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__image img {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 !important;
  width: 100%;
  height: auto;
  max-height: 25rem;
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__image img {
  height: 20rem;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__komplements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__komplements .komplement-item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__komplements .komplement-item .icon svg {
  height: 1.75rem;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__base-data__ap-nr {
  font-size: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__price {
  color: #a09632;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__price .bundle-product-teaser__price-value {
  font-weight: 400;
  font-size: 1.6625rem;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__price .bundle-product-teaser__price-value del {
  opacity: 0.5;
}
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__price b,
.block__product-bundle-display .bundle-product-teaser .bundle-product-teaser__price .woocommerce-Price-amount.amount {
  color: #1e1e1e;
}

.jobs-list__jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.woocommerce-shop__top-filter {
  background-color: #fff;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-bottom: 0 !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-shop__top-filter .woocommerce-shop__top-filter__singular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  text-decoration: none;
  font-weight: 400;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce-shop__top-filter .woocommerce-shop__top-filter__singular span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce-shop__top-filter .woocommerce-shop__top-filter__singular.--active {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
}
.woocommerce-shop__top-filter .woocommerce-shop__top-filter__singular:hover {
  color: #a09632;
}
@media (max-width: 767.98px) {
  .woocommerce-shop__top-filter .woocommerce-shop__top-filter__singular {
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .woocommerce-shop__top-filter {
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .woocommerce-shop__top-filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem 0.75rem;
    gap: 1rem 0.75rem;
    padding: 1rem 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .woocommerce-shop__top-filter {
    grid-template-columns: repeat(2, 1fr);
  }
}

.block__shop-navigation {
  border-bottom: 1px solid #d3d3d3;
}

.block__slider + .block__shop-navigation,
.block__card + .block__shop-navigation {
  margin-top: 0.75rem !important;
}

.block__review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .block__review {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.review__image {
  width: 12rem;
  min-width: 12rem;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.review__image img {
  height: 100%;
  width: auto;
}

.review__top-rating svg {
  height: 20px;
  width: 20px;
}

.review__top-date {
  font-size: 0.9375rem;
  font-weight: 200;
  color: rgba(30, 30, 30, 0.5);
}

.review__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

p.review__quote-author {
  margin: 0;
  font-size: 1.6625rem;
}

.review__quote-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.block__interactive-accordion__row {
  --tc-gutter-x: 1.5rem;
  --tc-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * 0);
  margin-top: calc(-1 * var(--tc-gutter-y));
  margin-right: calc(-0.5 * 1.5rem);
  margin-right: calc(-0.5 * var(--tc-gutter-x));
  margin-left: calc(-0.5 * 1.5rem);
  margin-left: calc(-0.5 * var(--tc-gutter-x));
}
.block__interactive-accordion__row .block__accordion {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}
.block__interactive-accordion__row .block__accordion .block__interactive-accordion__wine-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.block__interactive-accordion__row .block__accordion .block__interactive-accordion__wine-types .short-fact__icon {
  width: 2.25rem;
  height: 2.25rem;
}
.block__interactive-accordion__row .block__accordion .block__interactive-accordion__wine-types .short-fact__icon svg {
  color: inherit;
  fill: inherit;
}
.block__interactive-accordion__row .block__accordion .block__interactive-accordion__wine-types .short-fact__headline {
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
  .block__interactive-accordion__row .block__accordion {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.block__interactive-accordion__row .block__interactive-accordion__image-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--tc-gutter-x) * 0.5);
  padding-left: calc(var(--tc-gutter-x) * 0.5);
  margin-top: var(--tc-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  position: relative;
}
.block__interactive-accordion__row .block__interactive-accordion__image-wrapper .block__interactive-accordion__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 991.98px) {
  .block__interactive-accordion__row .block__interactive-accordion__image-wrapper .block__interactive-accordion__image {
    position: relative;
  }
}
.block__interactive-accordion__row .block__interactive-accordion__image-wrapper .block__interactive-accordion__image svg {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
@media (max-width: 991.98px) {
  .block__interactive-accordion__row .block__interactive-accordion__image-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-height: 300px;
  }
}
.block__interactive-accordion__row:not(:has(.block__interactive-accordion__image-wrapper)) .block__accordion {
  width: 100%;
}

.interactive-accordion__tooltip {
  -webkit-transform: all 0.35s ease;
      -ms-transform: all 0.35s ease;
          transform: all 0.35s ease;
  display: none;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-color: rgba(30, 30, 30, 0.9);
  color: white;
  max-width: 12rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
}
.interactive-accordion__tooltip::after {
  content: "";
  position: absolute;
  inset: auto auto -12px 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border: 6px solid #1e1e1e;
  border-color: #1e1e1e transparent transparent transparent;
}

#area-1 > path,
#area-1 > polygon {
  fill: #bfb56b !important;
}

#area-1:hover > path:not([fill="#ffffff"]),
#area-1:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-1 > path:not([fill="#ffffff"]),
#area-1 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-1.-active > path:not([fill="#ffffff"]),
#area-1.-highlighted > path:not([fill="#ffffff"]),
#area-1.-active > polygon:not([fill="#ffffff"]),
#area-1.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-1 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-1 > [fill="#ffffff"] {
  opacity: 0;
}

#area-2 > path,
#area-2 > polygon {
  fill: #bfb56b !important;
}

#area-2:hover > path:not([fill="#ffffff"]),
#area-2:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-2 > path:not([fill="#ffffff"]),
#area-2 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-2.-active > path:not([fill="#ffffff"]),
#area-2.-highlighted > path:not([fill="#ffffff"]),
#area-2.-active > polygon:not([fill="#ffffff"]),
#area-2.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-2 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-2 > [fill="#ffffff"] {
  opacity: 0;
}

#area-3 > path,
#area-3 > polygon {
  fill: #bfb56b !important;
}

#area-3:hover > path:not([fill="#ffffff"]),
#area-3:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-3 > path:not([fill="#ffffff"]),
#area-3 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-3.-active > path:not([fill="#ffffff"]),
#area-3.-highlighted > path:not([fill="#ffffff"]),
#area-3.-active > polygon:not([fill="#ffffff"]),
#area-3.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-3 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-3 > [fill="#ffffff"] {
  opacity: 0;
}

#area-4 > path,
#area-4 > polygon {
  fill: #bfb56b !important;
}

#area-4:hover > path:not([fill="#ffffff"]),
#area-4:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-4 > path:not([fill="#ffffff"]),
#area-4 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-4.-active > path:not([fill="#ffffff"]),
#area-4.-highlighted > path:not([fill="#ffffff"]),
#area-4.-active > polygon:not([fill="#ffffff"]),
#area-4.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-4 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-4 > [fill="#ffffff"] {
  opacity: 0;
}

#area-5 > path,
#area-5 > polygon {
  fill: #bfb56b !important;
}

#area-5:hover > path:not([fill="#ffffff"]),
#area-5:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-5 > path:not([fill="#ffffff"]),
#area-5 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-5.-active > path:not([fill="#ffffff"]),
#area-5.-highlighted > path:not([fill="#ffffff"]),
#area-5.-active > polygon:not([fill="#ffffff"]),
#area-5.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-5 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-5 > [fill="#ffffff"] {
  opacity: 0;
}

#area-6 > path,
#area-6 > polygon {
  fill: #bfb56b !important;
}

#area-6:hover > path:not([fill="#ffffff"]),
#area-6:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-6 > path:not([fill="#ffffff"]),
#area-6 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-6.-active > path:not([fill="#ffffff"]),
#area-6.-highlighted > path:not([fill="#ffffff"]),
#area-6.-active > polygon:not([fill="#ffffff"]),
#area-6.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-6 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-6 > [fill="#ffffff"] {
  opacity: 0;
}

#area-7 > path,
#area-7 > polygon {
  fill: #bfb56b !important;
}

#area-7:hover > path:not([fill="#ffffff"]),
#area-7:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-7 > path:not([fill="#ffffff"]),
#area-7 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-7.-active > path:not([fill="#ffffff"]),
#area-7.-highlighted > path:not([fill="#ffffff"]),
#area-7.-active > polygon:not([fill="#ffffff"]),
#area-7.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-7 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-7 > [fill="#ffffff"] {
  opacity: 0;
}

#area-8 > path,
#area-8 > polygon {
  fill: #bfb56b !important;
}

#area-8:hover > path:not([fill="#ffffff"]),
#area-8:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-8 > path:not([fill="#ffffff"]),
#area-8 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-8.-active > path:not([fill="#ffffff"]),
#area-8.-highlighted > path:not([fill="#ffffff"]),
#area-8.-active > polygon:not([fill="#ffffff"]),
#area-8.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-8 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-8 > [fill="#ffffff"] {
  opacity: 0;
}

#area-9 > path,
#area-9 > polygon {
  fill: #bfb56b !important;
}

#area-9:hover > path:not([fill="#ffffff"]),
#area-9:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-9 > path:not([fill="#ffffff"]),
#area-9 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-9.-active > path:not([fill="#ffffff"]),
#area-9.-highlighted > path:not([fill="#ffffff"]),
#area-9.-active > polygon:not([fill="#ffffff"]),
#area-9.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-9 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-9 > [fill="#ffffff"] {
  opacity: 0;
}

#area-10 > path,
#area-10 > polygon {
  fill: #bfb56b !important;
}

#area-10:hover > path:not([fill="#ffffff"]),
#area-10:hover > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
  cursor: pointer;
}

#area-10 > path:not([fill="#ffffff"]),
#area-10 > polygon:not([fill="#ffffff"]) {
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

#area-10.-active > path:not([fill="#ffffff"]),
#area-10.-highlighted > path:not([fill="#ffffff"]),
#area-10.-active > polygon:not([fill="#ffffff"]),
#area-10.-highlighted > polygon:not([fill="#ffffff"]) {
  fill: #867e2f !important;
}

#area-10 > [fill="#ffffff"] {
  opacity: 1;
  -webkit-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.-active #area-10 > [fill="#ffffff"] {
  opacity: 0;
}

.block__slim-title-banner {
  background-color: #1e1e1e;
  color: #fff;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem 0;
  max-width: 100vw !important;
  width: auto;
  text-align: center;
  word-break: break-word;
}
.block__slim-title-banner h2,
.block__slim-title-banner h3,
.block__slim-title-banner h4,
.block__slim-title-banner h5,
.block__slim-title-banner h6 {
  font-size: calc(1.5825rem + 3.99vw);
}
@media (min-width: 1200px) {
  .block__slim-title-banner h2,
  .block__slim-title-banner h3,
  .block__slim-title-banner h4,
  .block__slim-title-banner h5,
  .block__slim-title-banner h6 {
    font-size: 4.575rem;
  }
}
.block__slim-title-banner img {
  height: calc(1.5825rem + 3.99vw);
  margin: 0.75rem;
  width: auto;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (min-width: 1200px) {
  .block__slim-title-banner img {
    height: 4.575rem;
  }
}
@media (max-width: 575.98px) {
  .block__slim-title-banner img {
    margin: 0.375rem;
  }
}
.block__slim-title-banner + .block__slider, .block__slim-title-banner + .block__card, .block__slim-title-banner + .block__keyvisual, .block__slim-title-banner + .wp-block-group.has-background {
  margin-top: 0;
}

.main__content > .block__slim-title-banner:first-child,
.product__content > .block__slim-title-banner:first-child {
  margin-top: calc(-1.575rem - 3.9vw);
  border-top: 1px solid #fff;
}
@media (min-width: 1200px) {
  .main__content > .block__slim-title-banner:first-child,
  .product__content > .block__slim-title-banner:first-child {
    margin-top: -4.5rem;
  }
}

.has-background + .block__slim-title-banner {
  margin-top: 0;
}

.block__slim-title-banner + .block__slider .block__card.block__card--image-behind-right .block__card__content,
.block__slim-title-banner + .block__slider .block__card.block__card--image-behind-left .block__card__content,
.block__slim-title-banner + .block__card.block__card--image-behind-right .block__card__content,
.block__slim-title-banner + .block__card.block__card--image-behind-left .block__card__content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 992px) {
  .block__slim-title-banner + .block__slider .block__card.block__card--image-behind-right .block__card__content,
  .block__slim-title-banner + .block__slider .block__card.block__card--image-behind-left .block__card__content,
  .block__slim-title-banner + .block__card.block__card--image-behind-right .block__card__content,
  .block__slim-title-banner + .block__card.block__card--image-behind-left .block__card__content {
    min-height: min(100vh - 4.5rem - 4.575rem, 32vw + 18vh - 4.575rem);
  }
}
@media (min-width: 2000px) {
  .block__slim-title-banner + .block__slider .block__card.block__card--image-behind-right .block__card__content,
  .block__slim-title-banner + .block__slider .block__card.block__card--image-behind-left .block__card__content,
  .block__slim-title-banner + .block__card.block__card--image-behind-right .block__card__content,
  .block__slim-title-banner + .block__card.block__card--image-behind-left .block__card__content {
    min-height: 750px;
  }
}

.block__image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.75rem;
  gap: 0.75rem;
  grid-auto-flow: dense;
}
@media (max-width: 767.98px) {
  .block__image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.image-gallery__item {
  position: relative;
}
.image-gallery__item.-size_1_1 {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}
.image-gallery__item.-size_2_2 {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}
.image-gallery__item.-size_2_1 {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 2/1;
  width: 100%;
  height: 100%;
}
.image-gallery__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.block__event-slider {
  width: 100%;
}

.wp-admin .block__event-slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.wp-admin .block__event-slider .swiper-wrapper .swiper-slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wp-admin .block__event-slider .swiper-wrapper .swiper-slide:nth-child(n+4) {
  display: none;
}

.block__weintypen-slider,
.block__team-slider {
  width: 100%;
}
.block__weintypen-slider .teaser,
.block__team-slider .teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.block__weintypen-slider .teaser .teaser__head,
.block__team-slider .teaser .teaser__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block__weintypen-slider .teaser span,
.block__team-slider .teaser span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block__weintypen-slider .block__teaser__content,
.block__team-slider .block__teaser__content {
  container: teaser-content/inline-size;
}

@container teaser-content (max-width: 250px) {
  .block__weintypen-slider .teaser__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.wp-admin .block__weintypen-slider .swiper-wrapper,
.wp-admin .block__team-slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.wp-admin .block__weintypen-slider .swiper-wrapper .swiper-slide,
.wp-admin .block__team-slider .swiper-wrapper .swiper-slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wp-admin .block__weintypen-slider .swiper-wrapper .swiper-slide:nth-child(n+4),
.wp-admin .block__team-slider .swiper-wrapper .swiper-slide:nth-child(n+4) {
  display: none;
}

.block__icon--size-xs svg {
  height: 0.375rem;
  width: 0.375rem;
}

.block__icon--size-sm svg {
  height: 0.75rem;
  width: 0.75rem;
}

.block__icon--size-md svg {
  height: 1.5rem;
  width: 1.5rem;
}

.block__icon--size-lg svg {
  height: 2.25rem;
  width: 2.25rem;
}

.block__icon--size-xl svg {
  height: 3rem;
  width: 3rem;
}

.block__icon--size-xxl svg {
  height: 4.5rem;
  width: 4.5rem;
}

.wp-block-table {
  position: relative;
  margin-top: calc(1.35rem + 1.2vw);
  font-size: 0.9375rem;
}
@media (min-width: 1200px) {
  .wp-block-table {
    margin-top: 2.25rem;
  }
}
.wp-block-table table td {
  border: none;
  border-bottom: 1px solid #d3d3d3;
}
.wp-block-table table th {
  border: none;
}
.wp-block-table table th strong {
  font-weight: 400;
}
.wp-block-table table th:not(:last-child) {
  border-right: 1px solid #d3d3d3;
}
.wp-block-table table thead {
  border-bottom: 3px solid #a09632;
}
.wp-block-table table tfoot {
  border-top: 3px solid #a09632;
}

/*** ARCHIVE ***/
.presseartikel-card .block__card__content .presseartikel-date {
  font-size: 0.9375rem;
}
.presseartikel-card .block__card__content h4 {
  margin-top: 0.375rem;
  margin-bottom: 0.75rem;
}

/*** SINGLE ***/
.article-topline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.article__wrapper {
  margin-top: 2.25rem !important;
}
@media (min-width: 992px) {
  .article__wrapper h1 {
    text-align: center;
  }
}

.wg-kallstadt-woocommerce {
  padding-bottom: calc(1.575rem + 3.9vw);
  padding-top: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  .wg-kallstadt-woocommerce {
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .wg-kallstadt-woocommerce {
    padding-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .woocommerce-shop .wg-kallstadt-woocommerce {
    padding-top: calc(1.275rem + 0.3vw);
  }
}
@media (max-width: 767.98px) and (min-width: 1200px) {
  .woocommerce-shop .wg-kallstadt-woocommerce {
    padding-top: 1.5rem;
  }
}

.woocommerce .woocommerce-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  color: #1e1e1e !important;
  margin-top: 0;
  margin-bottom: 1rem;
  /* Change separator to arrow */
}
.woocommerce .woocommerce-breadcrumb::before {
  /* stylelint-disable */
  -webkit-mask-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" height="16" width="18" viewBox="0 0 576 512"%3e%3c!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license %28Commercial License%29 Copyright 2023 Fonticons, Inc.--%3e%3cpath class="" opacity=".4" d="M64 270.5L64.1 472c0 22.1 17.9 40 40 40H184c22.1 0 40-17.9 40-40V383.7c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32V472c0 22.1 17.9 40 40 40h80.5c22.1 0 40-18 40-40.1l-.4-201.3L288 74.5 64 270.5z"/%3e%3cpath class="fa-primary" d="M266.9 7.9C279-2.6 297-2.6 309.1 7.9l256 224c13.3 11.6 14.6 31.9 3 45.2s-31.9 14.6-45.2 3L288 74.5 53.1 280.1c-13.3 11.6-33.5 10.3-45.2-3s-10.3-33.5 3-45.2l256-224z"/%3e%3c/svg%3e');
          mask-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" height="16" width="18" viewBox="0 0 576 512"%3e%3c!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license %28Commercial License%29 Copyright 2023 Fonticons, Inc.--%3e%3cpath class="" opacity=".4" d="M64 270.5L64.1 472c0 22.1 17.9 40 40 40H184c22.1 0 40-17.9 40-40V383.7c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32V472c0 22.1 17.9 40 40 40h80.5c22.1 0 40-18 40-40.1l-.4-201.3L288 74.5 64 270.5z"/%3e%3cpath class="fa-primary" d="M266.9 7.9C279-2.6 297-2.6 309.1 7.9l256 224c13.3 11.6 14.6 31.9 3 45.2s-31.9 14.6-45.2 3L288 74.5 53.1 280.1c-13.3 11.6-33.5 10.3-45.2-3s-10.3-33.5 3-45.2l256-224z"/%3e%3c/svg%3e');
  /* stylelint-enable */
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.375rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #a09632;
}
.woocommerce .woocommerce-breadcrumb .breadcrumbs-separator::before {
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  position: relative;
  display: block;
  /* stylelint-disable */
  -webkit-mask-image: url('data:image/svg+xml,%3csvg width="11" height="10" viewBox="0 0 11 10" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M8.55994 4.98492C8.55994 5.27 8.43773 5.51438 8.23411 5.67729L3.67256 9.70934C3.34673 9.99446 2.85802 9.95371 2.61365 9.62788C2.36927 9.30209 2.36927 8.85404 2.69511 8.56896L6.68644 5.06638C6.72715 5.02563 6.72715 4.98492 6.68644 4.90346L2.69511 1.40084C2.36927 1.11575 2.36927 0.627002 2.65436 0.341919C2.93948 0.0568355 3.38748 0.0160855 3.71331 0.260461L8.27481 4.25179C8.43773 4.45546 8.55994 4.69979 8.55994 4.98492Z" fill="%2379701C"/%3e%3c/svg%3e');
          mask-image: url('data:image/svg+xml,%3csvg width="11" height="10" viewBox="0 0 11 10" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M8.55994 4.98492C8.55994 5.27 8.43773 5.51438 8.23411 5.67729L3.67256 9.70934C3.34673 9.99446 2.85802 9.95371 2.61365 9.62788C2.36927 9.30209 2.36927 8.85404 2.69511 8.56896L6.68644 5.06638C6.72715 5.02563 6.72715 4.98492 6.68644 4.90346L2.69511 1.40084C2.36927 1.11575 2.36927 0.627002 2.65436 0.341919C2.93948 0.0568355 3.38748 0.0160855 3.71331 0.260461L8.27481 4.25179C8.43773 4.45546 8.55994 4.69979 8.55994 4.98492Z" fill="%2379701C"/%3e%3c/svg%3e');
  /* stylelint-enable */
  margin: 0 5px;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #a09632;
}
.woocommerce .woocommerce-breadcrumb a {
  text-decoration: none;
  font-weight: 300;
}
@media (max-width: 991.98px) {
  .woocommerce .woocommerce-breadcrumb {
    display: none;
  }
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.woocommerce-info {
  border-top-color: #5a96aa;
}
.woocommerce-info::before {
  color: #5a96aa;
}

.woocommerce-error {
  border-top-color: #961e32;
}
.woocommerce-error::before {
  color: #961e32;
}

.woocommerce-message {
  border-top-color: #a09632;
}
.woocommerce-message::before {
  color: #a09632;
}
.woocommerce-message .shipping-notice {
  width: calc(100% - 15rem);
}
@media (max-width: 991.98px) {
  .woocommerce-message:has(.shipping-notice) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .woocommerce-message:has(.shipping-notice) .button {
    float: none;
    float: initial;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .woocommerce-message:has(.shipping-notice) .shipping-notice {
    width: 100%;
  }
  .woocommerce-message:has(.shipping-notice)::before {
    top: 1em;
  }
}

.woocommerce-notices-wrapper > div:has(a.button) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.woocommerce-notices-wrapper > div:has(a.button)::before {
  top: 1em;
}
.woocommerce-notices-wrapper > div:has(a.button)::after {
  display: none;
}
.woocommerce-notices-wrapper .button {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  border-color: #fff !important;
  color: #1e1e1e !important;
  background-color: #fff !important;
  transition: all 0.35s ease;
}
.woocommerce-notices-wrapper .button:hover {
  text-decoration: none;
}
.woocommerce-notices-wrapper .button:disabled {
  opacity: 0.5;
}
.woocommerce-notices-wrapper .button svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.woocommerce-notices-wrapper .button svg {
  fill: #a09632;
  color: #a09632;
}
.woocommerce-notices-wrapper .button:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1e1e1e;
}
.woocommerce-notices-wrapper .button:hover svg {
  fill: #797226;
  color: #797226;
}

.wc-block-components-validation-error,
[class*=wc-block-components].has-error * {
  color: #961e32 !important;
}

.wc-blocks-components-select .wc-blocks-components-select__container,
.wc-block-components-text-input input[type=text],
.wc-blocks-components-select .wc-blocks-components-select__select:focus {
  border-radius: 0 !important;
}

.woocommerce .woocommerce-shop__kallstadt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .woocommerce .woocommerce-shop__kallstadt .woocommerce-shop__intro-card .block__card__image {
    width: 30%;
  }
  .woocommerce .woocommerce-shop__kallstadt .woocommerce-shop__intro-card .block__card__content {
    width: 70%;
  }
}
@media (max-width: 767.98px) {
  .woocommerce .woocommerce-shop__kallstadt .woocommerce-shop__intro-card .block__card__image,
  .woocommerce .woocommerce-shop__kallstadt .woocommerce-shop__intro-card .block__card__content {
    width: 100%;
  }
}
.woocommerce .woocommerce-shop__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .woocommerce .woocommerce-shop__view {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.woocommerce .woocommerce-shop__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 991.98px) {
  .woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list .filter__Artikel .facetwp-expand {
  display: none;
}
.woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list .filter {
  background-color: #fff;
  padding: 1rem;
}
.woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list .filter span.filter-title {
  font-size: 1.25rem;
  font-family: "PlayFair Display";
  font-weight: 400;
  font-style: normal;
}
.woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list .filter .facetwp-facet {
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list .filter .facetwp-facet .facetwp-expand {
  margin-right: 0;
  margin-left: auto;
}
.woocommerce .woocommerce-shop__filter .woocommerce-shop__filter-list .filter .facetwp-facet.facetwp-facet-product_bundles {
  margin-top: 0;
}
.woocommerce .woocommerce-shop__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.woocommerce .woocommerce-shop__products .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
}
@media (max-width: 1199.98px) {
  .woocommerce .woocommerce-shop__products .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .woocommerce .woocommerce-shop__products .products {
    grid-template-columns: 1fr;
  }
}
.woocommerce .woocommerce-shop__products .products::before, .woocommerce .woocommerce-shop__products .products::after {
  display: none;
}
.woocommerce .woocommerce-shop__products ul.products li.product,
.woocommerce .woocommerce-shop__products .woocommerce-page ul.products li.product {
  margin-right: 0;
  margin-bottom: 0;
  width: auto;
}
.woocommerce .woocommerce-shop__products .facetwp-template {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.woocommerce .woocommerce-shop__products__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .woocommerce .woocommerce-shop__products__search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.woocommerce .woocommerce-shop__products__search-bar {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.woocommerce .woocommerce-shop__products__search-bar .facetwp-facet {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .woocommerce .woocommerce-shop__products__search-bar {
    width: 100%;
  }
}
.woocommerce .woocommerce-shop__products__clearsearch button {
  height: 100%;
}
.woocommerce .woocommerce-shop__products__clearsearch.hidden {
  display: none;
}
.woocommerce .woocommerce-shop__products__info {
  background-color: #fff;
  padding: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce .woocommerce-shop__products__info .woocommerce-shop__products__sorting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.9375rem;
}
.woocommerce .woocommerce-shop__products__info .woocommerce-shop__products__sorting .woocommerce-ordering .orderby {
  border: 0.5px solid #1e1e1e;
}
.woocommerce .woocommerce-shop__products__info .woocommerce-shop__products__sorting .woocommerce-ordering .orderby:focus-visible {
  outline: 0.5px solid #a09632;
  border: 0.5px solid #a09632;
}
@media (max-width: 575.98px) {
  .woocommerce .woocommerce-shop__products__info .woocommerce-shop__products__sorting {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}
.woocommerce .woocommerce-shop__products__info .woocommerce-shop__products__sorting p.woocommerce-result-count,
.woocommerce .woocommerce-shop__products__info .woocommerce-shop__products__sorting form.woocommerce-ordering {
  margin: 0 !important;
}
.woocommerce .woocommerce-shop__intro-card .block__card__content h1 {
  font-size: 3.05rem;
}

.woocommerce-shop,
.archive:has(.woocommerce-shop__kallstadt) {
  background-color: #f2f2e8;
}

.woocommerce-shop__kallstadt nav.woocommerce-pagination ul.page-numbers {
  border: none;
}
.woocommerce-shop__kallstadt nav.woocommerce-pagination ul.page-numbers li {
  border: none;
}
.woocommerce-shop__kallstadt nav.woocommerce-pagination ul.page-numbers li span.current {
  background: none;
  color: rgba(30, 30, 30, 0.65);
}
.woocommerce-shop__kallstadt nav.woocommerce-pagination ul.page-numbers li a {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce-shop__kallstadt nav.woocommerce-pagination ul.page-numbers li a:hover, .woocommerce-shop__kallstadt nav.woocommerce-pagination ul.page-numbers li a:focus {
  background: none;
  color: #a09632;
}
.woocommerce-shop__kallstadt nav.woocommerce-pagination ul.page-numbers li a.next {
  color: transparent;
  /* stylelint-disable */
  -webkit-mask-image: url('data:image/svg+xml,%3csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M9.58991 7.47739C9.58991 7.90502 9.4066 8.27158 9.10116 8.51596L2.25885 14.564C1.7701 14.9917 1.03703 14.9306 0.67047 14.4418C0.303908 13.9531 0.303908 13.2811 0.792658 12.8535L6.77966 7.59958C6.84072 7.53846 6.84072 7.47739 6.77966 7.35521L0.792658 2.10127C0.303908 1.67364 0.303908 0.940519 0.731533 0.512894C1.15922 0.0852685 1.83122 0.0241435 2.31997 0.390706L9.16222 6.37771C9.4066 6.68321 9.58991 7.04971 9.58991 7.47739Z" fill="%23A09632"/%3e%3c/svg%3e');
          mask-image: url('data:image/svg+xml,%3csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M9.58991 7.47739C9.58991 7.90502 9.4066 8.27158 9.10116 8.51596L2.25885 14.564C1.7701 14.9917 1.03703 14.9306 0.67047 14.4418C0.303908 13.9531 0.303908 13.2811 0.792658 12.8535L6.77966 7.59958C6.84072 7.53846 6.84072 7.47739 6.77966 7.35521L0.792658 2.10127C0.303908 1.67364 0.303908 0.940519 0.731533 0.512894C1.15922 0.0852685 1.83122 0.0241435 2.31997 0.390706L9.16222 6.37771C9.4066 6.68321 9.58991 7.04971 9.58991 7.47739Z" fill="%23A09632"/%3e%3c/svg%3e');
  /* stylelint-enable */
  -webkit-mask-size: auto 1.5rem;
          mask-size: auto 1.5rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #a09632;
}
.woocommerce-shop__kallstadt nav.woocommerce-pagination ul.page-numbers li a.prev {
  color: transparent;
  /* stylelint-disable */
  -webkit-mask-image: url('data:image/svg+xml,%3csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M0.3125 7.49997C0.3125 7.06247 0.5 6.68747 0.8125 6.43747L7.8125 0.312468C8.3125 -0.125032 9 -0.0625322 9.4375 0.437468C9.8125 0.937468 9.8125 1.62497 9.3125 1.99997L3.1875 7.37497C3.125 7.43747 3.125 7.49997 3.1875 7.56247L9.3125 12.9375C9.8125 13.375 9.875 14.0625 9.4375 14.5625C9 15.0625 8.3125 15.125 7.8125 14.6875L7.75 14.625L0.8125 8.56247C0.5 8.31247 0.3125 7.87497 0.3125 7.49997Z" fill="%23A09632"/%3e%3c/svg%3e');
          mask-image: url('data:image/svg+xml,%3csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M0.3125 7.49997C0.3125 7.06247 0.5 6.68747 0.8125 6.43747L7.8125 0.312468C8.3125 -0.125032 9 -0.0625322 9.4375 0.437468C9.8125 0.937468 9.8125 1.62497 9.3125 1.99997L3.1875 7.37497C3.125 7.43747 3.125 7.49997 3.1875 7.56247L9.3125 12.9375C9.8125 13.375 9.875 14.0625 9.4375 14.5625C9 15.0625 8.3125 15.125 7.8125 14.6875L7.75 14.625L0.8125 8.56247C0.5 8.31247 0.3125 7.87497 0.3125 7.49997Z" fill="%23A09632"/%3e%3c/svg%3e');
  /* stylelint-enable */
  -webkit-mask-size: auto 1.5rem;
          mask-size: auto 1.5rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #a09632;
}

.search-everything-banner {
  display: none;
  background-color: #1e1e1e;
  color: white;
  padding: 0.75rem;
}
.search-everything-banner > div {
  font-weight: bold;
}
.-is-active .search-everything-banner {
  display: block;
}
.search-everything-banner a {
  color: #fff;
}

.woocommerce-no-products-found .woocommerce-info {
  background-color: #1e1e1e;
  color: white;
  border-top: none;
}
.woocommerce-no-products-found .woocommerce-info::before {
  color: #fff;
}

.-is-active .woocommerce-no-products-found {
  display: none;
}

.woocommerce .product__wrapper {
  position: relative;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 4.5rem;
  display: grid;
  /* stylelint-disable */
  grid-template-columns: minmax(22rem, 1fr) minmax(10rem, 22rem);
  grid-template-rows: auto auto; /* Falls nötig */
  grid-template-areas: "product-wrapper-top base-information" "product-content base-information";
  /* stylelint-enable */
}
@media (max-width: 991.98px) {
  .woocommerce .product__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
.woocommerce .product__wrapper__top {
  grid-area: product-wrapper-top;
}
.woocommerce .product__content {
  container: product-content/inline-size;
  grid-area: product-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
.woocommerce .product__content .wp-block-group {
  width: 100%;
}
.woocommerce .product__content .wp-block-group.has-background {
  padding-left: 0;
  padding-right: 0;
}
.woocommerce .product__base-information {
  grid-area: base-information;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 22rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f2f2e8 !important;
  border: 2px solid white;
  position: sticky;
  top: 5.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 1.5rem;
}
@media (max-width: 991.98px) {
  .woocommerce .product__base-information {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    top: auto;
    top: initial;
  }
}
.woocommerce .product__base-information .product_title.entry-title {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}
.woocommerce .product__base-information .product_meta {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce .product__base-information .product_meta .sku_wrapper {
  font-size: 0.9375rem;
}
.woocommerce .product__base-information .product_meta .product-units {
  margin-top: 0.375rem;
  margin-bottom: 0;
}
.woocommerce .product__base-information .woocommerce-product-details__short-description p,
.woocommerce .product__base-information p.price {
  margin-top: 0.375rem;
}
.woocommerce .product__base-information .woocommerce-product-gallery__image {
  background: #fff;
  padding: 1.5rem;
}
.woocommerce .product__base-information .woocommerce-product-gallery__image img {
  height: 25rem !important;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce .product__base-information .price .woocommerce-Price-amount {
  font-size: calc(1.5825rem + 3.99vw);
  color: #1e1e1e;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .woocommerce .product__base-information .price .woocommerce-Price-amount {
    font-size: 4.575rem;
  }
}
@media (max-width: 1199.98px) {
  .woocommerce .product__base-information .price .woocommerce-Price-amount {
    font-size: calc(1.43rem + 2.16vw);
  }
}
@media (max-width: 1199.98px) and (min-width: 1200px) {
  .woocommerce .product__base-information .price .woocommerce-Price-amount {
    font-size: 3.05rem;
  }
}
.woocommerce .product__base-information .price .woocommerce-Price-amount bdi::after {
  content: "*";
}
.woocommerce .product__base-information .price del {
  width: 100%;
}
.woocommerce .product__base-information .price del .woocommerce-Price-amount {
  font-size: calc(1.29125rem + 0.495vw);
}
@media (min-width: 1200px) {
  .woocommerce .product__base-information .price del .woocommerce-Price-amount {
    font-size: 1.6625rem;
  }
}
.woocommerce .product__base-information .woocommerce-product-gallery,
.woocommerce .product__base-information .summary {
  width: 100% !important;
  margin-bottom: 0 !important;
}
.woocommerce .product__base-information .cart,
.woocommerce .product__base-information .bundle_wrap > .bundle_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce .product__base-information .cart .quantity,
.woocommerce .product__base-information .bundle_wrap > .bundle_button .quantity {
  margin-right: 0 !important;
}
.woocommerce .product__base-information .cart input[type=number].qty,
.woocommerce .product__base-information .bundle_wrap > .bundle_button input[type=number].qty {
  border: 1px solid #d3d3d3;
  height: 100%;
}
.woocommerce .product__base-information .cart input[type=number].qty::-webkit-inner-spin-button,
.woocommerce .product__base-information .bundle_wrap > .bundle_button input[type=number].qty::-webkit-inner-spin-button {
  opacity: 1;
  color: #a09632;
}
.woocommerce .product__base-information .cart .single_add_to_cart_button,
.woocommerce .product__base-information .bundle_wrap > .bundle_button .single_add_to_cart_button {
  font-size: 1.25rem;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #fff;
  color: #1e1e1e;
  border: 1px solid #d3d3d3;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  padding: 0.75rem 0.75rem;
  line-height: 1.2;
}
.woocommerce .product__base-information .cart .single_add_to_cart_button::after,
.woocommerce .product__base-information .bundle_wrap > .bundle_button .single_add_to_cart_button::after {
  content: "";
  display: block;
  position: relative;
  margin-left: 0.375rem;
  margin-top: -3px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: calc(1.275rem + 0.3vw);
  width: calc(1.275rem + 0.3vw);
  /* stylelint-disable */
  -webkit-mask-image: url('data:image/svg+xml,%3csvg width="35" height="35" viewBox="0 0 35 35" fill="%23A09632" xmlns="http://www.w3.org/2000/svg"%3e%3cg clip-path="url%28%23clip0_3128_6279%29"%3e%3cpath d="M32.8126 18.7836H2.1876C2.07925 18.7823 1.97198 18.8052 1.8736 18.8506C1.77521 18.896 1.68819 18.9628 1.61885 19.0461C1.55292 19.1322 1.50586 19.2313 1.48074 19.3368C1.45561 19.4423 1.45298 19.5519 1.47301 19.6586L4.15635 31.8065C4.28454 32.2707 4.56632 32.6777 4.95568 32.9611C5.34503 33.2445 5.81896 33.3876 6.3001 33.3669H28.7001C29.1812 33.3876 29.6552 33.2445 30.0445 32.9611C30.4339 32.6777 30.7157 32.2707 30.8438 31.8065L33.5418 19.6586C33.5618 19.5519 33.5592 19.4423 33.534 19.3368C33.5089 19.2313 33.4619 19.1322 33.3959 19.0461C33.325 18.9608 33.2357 18.8929 33.1346 18.8474C33.0335 18.8019 32.9234 18.7801 32.8126 18.7836ZM25.8855 23.1586V28.9919C25.8855 29.282 25.7703 29.5602 25.5652 29.7653C25.36 29.9704 25.0818 30.0856 24.7918 30.0856C24.5017 30.0856 24.2235 29.9704 24.0184 29.7653C23.8132 29.5602 23.698 29.282 23.698 28.9919V23.1586C23.698 22.8685 23.8132 22.5903 24.0184 22.3852C24.2235 22.18 24.5017 22.0648 24.7918 22.0648C25.0818 22.0648 25.36 22.18 25.5652 22.3852C25.7703 22.5903 25.8855 22.8685 25.8855 23.1586ZM18.5938 23.1586V28.9919C18.5938 29.282 18.4786 29.5602 18.2735 29.7653C18.0684 29.9704 17.7902 30.0856 17.5001 30.0856C17.21 30.0856 16.9318 29.9704 16.7267 29.7653C16.5216 29.5602 16.4063 29.282 16.4063 28.9919V23.1586C16.4063 22.8685 16.5216 22.5903 16.7267 22.3852C16.9318 22.18 17.21 22.0648 17.5001 22.0648C17.7902 22.0648 18.0684 22.18 18.2735 22.3852C18.4786 22.5903 18.5938 22.8685 18.5938 23.1586ZM12.0313 23.1586V28.9919C12.0313 29.282 11.9161 29.5602 11.711 29.7653C11.5059 29.9704 11.2277 30.0856 10.9376 30.0856C10.6475 30.0856 10.3693 29.9704 10.1642 29.7653C9.95908 29.5602 9.84385 29.282 9.84385 28.9919V23.1586C9.84385 22.8685 9.95908 22.5903 10.1642 22.3852C10.3693 22.18 10.6475 22.0648 10.9376 22.0648C11.2277 22.0648 11.5059 22.18 11.711 22.3852C11.9161 22.5903 12.0313 22.8685 12.0313 23.1586Z" fill="currentColor"/%3e%3cpath d="M32.8125 11.4917H30.625C30.5721 11.4912 30.5198 11.4793 30.472 11.4566C30.4241 11.4339 30.3818 11.4011 30.3479 11.3604L22.5312 2.27503C22.216 1.90759 21.7678 1.68043 21.285 1.6435C20.8023 1.60658 20.3247 1.76293 19.9573 2.07815C19.5899 2.39337 19.3627 2.84165 19.3258 3.32436C19.2888 3.80707 19.4452 4.28467 19.7604 4.65211L25.0979 10.8792C25.1356 10.9379 25.1556 11.0063 25.1556 11.0761C25.1556 11.1459 25.1356 11.2142 25.0979 11.2729C25.0695 11.3382 25.0225 11.3936 24.9629 11.4325C24.9033 11.4714 24.8337 11.4919 24.7625 11.4917H10.2083C10.1372 11.4919 10.0675 11.4714 10.0079 11.4325C9.9483 11.3936 9.90138 11.3382 9.87292 11.2729C9.83523 11.2142 9.81519 11.1459 9.81519 11.0761C9.81519 11.0063 9.83523 10.9379 9.87292 10.8792L15.2104 4.65211C15.5256 4.28467 15.682 3.80707 15.6451 3.32436C15.6081 2.84165 15.381 2.39337 15.0135 2.07815C14.6461 1.76293 14.1685 1.60658 13.6858 1.6435C13.2031 1.68043 12.7548 1.90759 12.4396 2.27503L4.68125 11.3604C4.64431 11.4051 4.59725 11.4403 4.544 11.4631C4.49074 11.4859 4.4328 11.4957 4.375 11.4917H2.1875C1.90023 11.4917 1.61578 11.5483 1.35038 11.6582C1.08498 11.7681 0.843832 11.9293 0.640704 12.1324C0.437576 12.3355 0.276446 12.5767 0.166514 12.8421C0.0565814 13.1075 0 13.3919 0 13.6792L0 15.1375C0 15.7177 0.230468 16.2741 0.640704 16.6843C1.05094 17.0946 1.60734 17.325 2.1875 17.325H32.8125C33.3927 17.325 33.9491 17.0946 34.3593 16.6843C34.7695 16.2741 35 15.7177 35 15.1375V13.6792C35 13.099 34.7695 12.5426 34.3593 12.1324C33.9491 11.7222 33.3927 11.4917 32.8125 11.4917Z" fill="%23A09632"/%3e%3c/g%3e%3cdefs%3e%3cclipPath id="clip0_3128_6279"%3e%3crect width="35" height="35" fill="white"/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e');
          mask-image: url('data:image/svg+xml,%3csvg width="35" height="35" viewBox="0 0 35 35" fill="%23A09632" xmlns="http://www.w3.org/2000/svg"%3e%3cg clip-path="url%28%23clip0_3128_6279%29"%3e%3cpath d="M32.8126 18.7836H2.1876C2.07925 18.7823 1.97198 18.8052 1.8736 18.8506C1.77521 18.896 1.68819 18.9628 1.61885 19.0461C1.55292 19.1322 1.50586 19.2313 1.48074 19.3368C1.45561 19.4423 1.45298 19.5519 1.47301 19.6586L4.15635 31.8065C4.28454 32.2707 4.56632 32.6777 4.95568 32.9611C5.34503 33.2445 5.81896 33.3876 6.3001 33.3669H28.7001C29.1812 33.3876 29.6552 33.2445 30.0445 32.9611C30.4339 32.6777 30.7157 32.2707 30.8438 31.8065L33.5418 19.6586C33.5618 19.5519 33.5592 19.4423 33.534 19.3368C33.5089 19.2313 33.4619 19.1322 33.3959 19.0461C33.325 18.9608 33.2357 18.8929 33.1346 18.8474C33.0335 18.8019 32.9234 18.7801 32.8126 18.7836ZM25.8855 23.1586V28.9919C25.8855 29.282 25.7703 29.5602 25.5652 29.7653C25.36 29.9704 25.0818 30.0856 24.7918 30.0856C24.5017 30.0856 24.2235 29.9704 24.0184 29.7653C23.8132 29.5602 23.698 29.282 23.698 28.9919V23.1586C23.698 22.8685 23.8132 22.5903 24.0184 22.3852C24.2235 22.18 24.5017 22.0648 24.7918 22.0648C25.0818 22.0648 25.36 22.18 25.5652 22.3852C25.7703 22.5903 25.8855 22.8685 25.8855 23.1586ZM18.5938 23.1586V28.9919C18.5938 29.282 18.4786 29.5602 18.2735 29.7653C18.0684 29.9704 17.7902 30.0856 17.5001 30.0856C17.21 30.0856 16.9318 29.9704 16.7267 29.7653C16.5216 29.5602 16.4063 29.282 16.4063 28.9919V23.1586C16.4063 22.8685 16.5216 22.5903 16.7267 22.3852C16.9318 22.18 17.21 22.0648 17.5001 22.0648C17.7902 22.0648 18.0684 22.18 18.2735 22.3852C18.4786 22.5903 18.5938 22.8685 18.5938 23.1586ZM12.0313 23.1586V28.9919C12.0313 29.282 11.9161 29.5602 11.711 29.7653C11.5059 29.9704 11.2277 30.0856 10.9376 30.0856C10.6475 30.0856 10.3693 29.9704 10.1642 29.7653C9.95908 29.5602 9.84385 29.282 9.84385 28.9919V23.1586C9.84385 22.8685 9.95908 22.5903 10.1642 22.3852C10.3693 22.18 10.6475 22.0648 10.9376 22.0648C11.2277 22.0648 11.5059 22.18 11.711 22.3852C11.9161 22.5903 12.0313 22.8685 12.0313 23.1586Z" fill="currentColor"/%3e%3cpath d="M32.8125 11.4917H30.625C30.5721 11.4912 30.5198 11.4793 30.472 11.4566C30.4241 11.4339 30.3818 11.4011 30.3479 11.3604L22.5312 2.27503C22.216 1.90759 21.7678 1.68043 21.285 1.6435C20.8023 1.60658 20.3247 1.76293 19.9573 2.07815C19.5899 2.39337 19.3627 2.84165 19.3258 3.32436C19.2888 3.80707 19.4452 4.28467 19.7604 4.65211L25.0979 10.8792C25.1356 10.9379 25.1556 11.0063 25.1556 11.0761C25.1556 11.1459 25.1356 11.2142 25.0979 11.2729C25.0695 11.3382 25.0225 11.3936 24.9629 11.4325C24.9033 11.4714 24.8337 11.4919 24.7625 11.4917H10.2083C10.1372 11.4919 10.0675 11.4714 10.0079 11.4325C9.9483 11.3936 9.90138 11.3382 9.87292 11.2729C9.83523 11.2142 9.81519 11.1459 9.81519 11.0761C9.81519 11.0063 9.83523 10.9379 9.87292 10.8792L15.2104 4.65211C15.5256 4.28467 15.682 3.80707 15.6451 3.32436C15.6081 2.84165 15.381 2.39337 15.0135 2.07815C14.6461 1.76293 14.1685 1.60658 13.6858 1.6435C13.2031 1.68043 12.7548 1.90759 12.4396 2.27503L4.68125 11.3604C4.64431 11.4051 4.59725 11.4403 4.544 11.4631C4.49074 11.4859 4.4328 11.4957 4.375 11.4917H2.1875C1.90023 11.4917 1.61578 11.5483 1.35038 11.6582C1.08498 11.7681 0.843832 11.9293 0.640704 12.1324C0.437576 12.3355 0.276446 12.5767 0.166514 12.8421C0.0565814 13.1075 0 13.3919 0 13.6792L0 15.1375C0 15.7177 0.230468 16.2741 0.640704 16.6843C1.05094 17.0946 1.60734 17.325 2.1875 17.325H32.8125C33.3927 17.325 33.9491 17.0946 34.3593 16.6843C34.7695 16.2741 35 15.7177 35 15.1375V13.6792C35 13.099 34.7695 12.5426 34.3593 12.1324C33.9491 11.7222 33.3927 11.4917 32.8125 11.4917Z" fill="%23A09632"/%3e%3c/g%3e%3cdefs%3e%3cclipPath id="clip0_3128_6279"%3e%3crect width="35" height="35" fill="white"/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e');
  /* stylelint-enable */
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #a09632;
}
@media (min-width: 1200px) {
  .woocommerce .product__base-information .cart .single_add_to_cart_button::after,
  .woocommerce .product__base-information .bundle_wrap > .bundle_button .single_add_to_cart_button::after {
    height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .woocommerce .product__base-information .cart .single_add_to_cart_button::after,
  .woocommerce .product__base-information .bundle_wrap > .bundle_button .single_add_to_cart_button::after {
    width: 1.5rem;
  }
}
.woocommerce .product__base-information .cart .single_add_to_cart_button:hover,
.woocommerce .product__base-information .bundle_wrap > .bundle_button .single_add_to_cart_button:hover {
  background-color: #a09632;
  color: #fff;
}
.woocommerce .product__base-information .cart .single_add_to_cart_button:hover:after,
.woocommerce .product__base-information .bundle_wrap > .bundle_button .single_add_to_cart_button:hover:after {
  background: #fff;
}
.woocommerce .product__base-information form.cart {
  margin-bottom: 0 !important;
}
@media (min-width: 992px) {
  .woocommerce .product__base-information.-is-scrolled .woocommerce-product-gallery__image img {
    height: 7.5rem !important;
  }
}
@media (min-width: 992px) {
  .woocommerce .product__base-information.-is-scrolled .woocommerce-Price-amount {
    font-size: calc(1.43rem + 2.16vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .woocommerce .product__base-information.-is-scrolled .woocommerce-Price-amount {
    font-size: 3.05rem;
  }
}
@media (min-width: 992px) {
  .woocommerce .product__base-information.-is-scrolled del .woocommerce-Price-amount {
    font-size: calc(1.29125rem + 0.495vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .woocommerce .product__base-information.-is-scrolled del .woocommerce-Price-amount {
    font-size: 1.6625rem;
  }
}
.woocommerce .product__base-information.-is-scrolled .woocommerce-product-details__short-description {
  display: none;
}
.woocommerce .additional-product-info {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
}
.woocommerce .additional-product-info > p {
  margin-top: 0;
}
.woocommerce .additional-product-info .price-per-litre,
.woocommerce .additional-product-info .price-per-litre .woocommerce-Price-amount {
  font-size: 0.9375rem;
}
.woocommerce .additional-product-info .stock_delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce .additional-product-info .stock_delivery p {
  margin-top: 0;
}
.woocommerce .additional-product-info .stock_delivery p.wc-gzd-additional-info {
  font-size: inherit;
  margin-bottom: 0;
}
.woocommerce .additional-product-info .stock_delivery p.wc-gzd-additional-info::before {
  content: "|";
  margin: 0 0.375rem;
}
.woocommerce .shortfact__row svg {
  color: #a09632;
  color: var(--product-color);
  fill: #a09632;
  fill: var(--product-color);
}

.product .related,
.product .upsells {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1200px) {
  .product .related,
  .product .upsells {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.product .related .heading,
.product .upsells .heading {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product .related .products-display,
.product .upsells .products-display {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  overflow: auto;
}
.product .related .products,
.product .upsells .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .related .products > .product,
.product .upsells .products > .product {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product .related .products > .product:not(:first-child),
.product .upsells .products > .product:not(:first-child) {
  margin-left: 1.5rem;
}

.upsells-group {
  margin-top: 2.25rem !important;
}

.single .woocommerce-notices-wrapper .woocommerce-message {
  margin-bottom: 4.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
.single .woocommerce-notices-wrapper .woocommerce-message:focus-within, .single .woocommerce-notices-wrapper .woocommerce-message:focus {
  outline: none;
}
@media (max-width: 767.98px) {
  .single .woocommerce-notices-wrapper .woocommerce-message {
    padding-left: 2em;
  }
  .single .woocommerce-notices-wrapper .woocommerce-message::before {
    display: none;
  }
}

.woocommerce-cart .wc-block-components-totals-wrapper .wc-block-formatted-money-amount {
  font-size: 1.25rem;
}
.woocommerce-cart .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item-tax-value {
  font-size: calc(1.29125rem + 0.495vw);
}
@media (min-width: 1200px) {
  .woocommerce-cart .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item-tax-value {
    font-size: 1.6625rem;
  }
}
.woocommerce-cart .wc-block-components-product-name,
.woocommerce-cart .wc-block-components-quantity-selector__input,
.woocommerce-cart .wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title,
.woocommerce-cart .wc-block-components-panel__button {
  font-size: 1.25rem !important;
}
.woocommerce-cart .wc-block-cart-items__header-image,
.woocommerce-cart .wc-block-cart-items__header-total,
.woocommerce-cart .wc-block-cart-item__prices,
.woocommerce-cart .wc-block-components-product-metadata__description p,
.woocommerce-cart .wc-block-components-product-details span,
.woocommerce-cart .wc-block-components-totals-item__description,
.woocommerce-cart .wc-block-components-product-badge.wc-block-components-sale-badge {
  font-size: 0.9375rem !important;
}
.woocommerce-cart .wc-block-components-totals-item__description {
  margin-top: 0.375rem;
}
.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block {
  margin-bottom: 0;
}
.woocommerce-cart .wc-block-components-totals-footer-item-tax {
  font-weight: 300;
}
.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block {
  background-color: #f2f2e8;
  padding: 1.5rem;
}
.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background-color: #a09632 !important;
  border-color: #a09632 !important;
  color: #fff !important;
  display: inline-flex;
}
.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button:hover {
  text-decoration: none;
}
.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button:disabled {
  opacity: 0.5;
}
.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button:hover {
  background-color: #797226 !important;
  border-color: #797226 !important;
  color: #fff !important;
}
.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button svg {
  fill: #fff;
  color: #fff;
}
.woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button.--disabled {
  background-color: #7f7f7f !important;
}
.woocommerce-cart .wc-block-cart-items .is-bundled {
  background: #f6f6f6;
}
.woocommerce-cart button.wc-block-components-button.wp-element-button.wc-block-components-shipping-calculator-address__button.contained {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  border-color: #fff !important;
  color: #1e1e1e !important;
  background-color: #fff !important;
}
.woocommerce-cart button.wc-block-components-button.wp-element-button.wc-block-components-shipping-calculator-address__button.contained:hover {
  text-decoration: none;
}
.woocommerce-cart button.wc-block-components-button.wp-element-button.wc-block-components-shipping-calculator-address__button.contained:disabled {
  opacity: 0.5;
}
.woocommerce-cart button.wc-block-components-button.wp-element-button.wc-block-components-shipping-calculator-address__button.contained svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.woocommerce-cart button.wc-block-components-button.wp-element-button.wc-block-components-shipping-calculator-address__button.contained:hover {
  background-color: #f2f2e8 !important;
  border-color: #f2f2e8 !important;
  color: #1e1e1e !important;
}
.woocommerce-cart button.wc-block-components-button.wp-element-button.wc-block-components-shipping-calculator-address__button.contained:hover svg {
  fill: #797226;
  color: #797226;
}
.woocommerce-cart .wc-block-components-product-badge {
  text-transform: none;
  background-color: #f2f2e8;
  border: none;
  border-radius: 0;
}
.woocommerce-cart .wc-block-cart-item__prices del.wc-block-components-product-price__regular {
  text-decoration-color: #a09632;
}
.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper .price.wc-block-components-product-price {
  font-size: calc(1.29125rem + 0.495vw);
  font-weight: 500;
  line-height: 1.2;
  padding-left: 0.75rem;
}
@media (min-width: 1200px) {
  .woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper .price.wc-block-components-product-price {
    font-size: 1.6625rem;
  }
}
.woocommerce-cart .wc-block-cart-item__prices .price::before {
  content: "Einzelpreis:";
  margin-right: 5px;
}
.woocommerce-cart .wc-block-components-quantity-selector button {
  border-radius: 0;
}
.woocommerce-cart .wc-block-components-notices__snackbar .wc-block-components-notice-snackbar.is-info.is-dismissible {
  display: none;
}
.woocommerce-cart .wc-block-components-totals-discount .wc-block-components-totals-item__value {
  color: #867e2f;
}
.woocommerce-cart .wc-block-components-chip.wc-block-components-chip--radius-large {
  background: white;
  border-color: white;
  margin-top: 0.375rem;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-weight: 500;
  text-decoration: none;
}

.woocommerce-checkout .wc-block-components-title.wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-order-confirmation-additional-fields-wrapper h2 {
  font-size: calc(1.29125rem + 0.495vw);
}
@media (min-width: 1200px) {
  .woocommerce-checkout .wc-block-components-title.wc-block-components-checkout-step__title,
  .woocommerce-checkout .wc-block-order-confirmation-additional-fields-wrapper h2 {
    font-size: 1.6625rem;
  }
}
.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-blocks-components-select__container input,
.woocommerce-checkout .wc-block-components-checkbox.wc-gzd-checkbox span,
.woocommerce-checkout .wc-block-components-checkout-step__description,
.woocommerce-checkout .wc-block-components-radio-control__option,
.woocommerce-checkout .wc-block-components-checkbox__label,
.woocommerce-checkout .wc-block-components-radio-control-accordion-content,
.woocommerce-checkout .wc-block-components-address-card address,
.woocommerce-checkout .wc-block-components-radio-control__label,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
.woocommerce-checkout .wc-block-components-radio-control__secondary-label,
.woocommerce-checkout a.wc-block-components-checkout-return-to-cart-button {
  font-size: 1.25rem !important;
}
.woocommerce-checkout .wc-block-components-address-form__address_2-toggle,
.woocommerce-checkout .wc-block-checkout__use-address-for-billing .wc-block-components-checkbox__label,
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-name,
.woocommerce-checkout .wc-block-components-order-summary span.price,
.woocommerce-checkout .wc-block-components-order-summary span.wc-block-components-order-summary-item__quantity,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-totals-block,
.woocommerce-checkout .wc-block-components-totals-item__description p {
  font-size: 0.9375rem !important;
}
.woocommerce-checkout .wc-blocks-components-select__container label {
  font-size: 0.9375rem !important;
}
.woocommerce-checkout .wc-blocks-components-select__select {
  height: 60px;
  border-radius: 0;
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input:-webkit-autofill,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=email],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=number],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=password],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=tel],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=text],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active input[type=url],
.woocommerce-checkout .wc-block-components-text-input input:-webkit-autofill,
.woocommerce-checkout .wc-block-components-text-input.is-active input[type=email],
.woocommerce-checkout .wc-block-components-text-input.is-active input[type=number],
.woocommerce-checkout .wc-block-components-text-input.is-active input[type=password],
.woocommerce-checkout .wc-block-components-text-input.is-active input[type=tel],
.woocommerce-checkout .wc-block-components-text-input.is-active input[type=text],
.woocommerce-checkout .wc-block-components-text-input.is-active input[type=url] {
  padding: 30px 9px 8px;
}
.woocommerce-checkout .woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input:-webkit-autofill + label,
.woocommerce-checkout .woocommerce-checkout .wc-block-components-form .wc-block-components-text-input.is-active label,
.woocommerce-checkout .woocommerce-checkout .wc-block-components-text-input input:-webkit-autofill + label,
.woocommerce-checkout .woocommerce-checkout .wc-block-components-text-input.is-active label {
  -webkit-transform: translateY(0.15em) scale(0.75);
          transform: translateY(0.15em) scale(0.75);
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input:not(.is-active) label,
.woocommerce-checkout .wc-block-components-text-input:not(.is-active) label {
  top: 30px;
}
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-footer-item-tax {
  font-weight: 300;
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-checkout-step {
  margin-bottom: 30px;
}
.woocommerce-checkout .wc-gzd-checkout .is-large .wc-gzd-checkout-submit .wc-block-checkout__actions {
  padding: 0;
}
.woocommerce-checkout .woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt {
  font-weight: 500;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.woocommerce-checkout .wc-block-components-totals-wrapper {
  border-radius: 0 !important;
}
@media (max-width: 1199.98px) {
  .woocommerce-checkout .wc-block-checkout__main {
    width: 100% !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1199.98px) {
  .woocommerce-checkout .wc-block-checkout__sidebar {
    width: 100% !important;
    padding-left: 0;
    position: relative;
  }
}
.woocommerce-checkout .wc-block-components-order-summary {
  background-color: #f2f2e8 !important;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-product-metadata__description {
  display: none;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__total-price {
  min-width: auto !important;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__image .wc-block-components-order-summary-item__quantity {
  position: relative;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 10px;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background-color: #a09632 !important;
  border-color: #a09632 !important;
  color: #fff !important;
  display: inline-flex;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  text-decoration: none;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button:disabled {
  opacity: 0.5;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  background-color: #797226 !important;
  border-color: #797226 !important;
  color: #fff !important;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button svg {
  fill: #fff;
  color: #fff;
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-form .components-flex-item input,
.woocommerce-checkout .wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__container,
.woocommerce-checkout .wc-block-components-form .wc-block-components-totals-coupon__input input,
.woocommerce-checkout .wc-block-components-totals-coupon__form .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-totals-coupon__form .components-flex-item input,
.woocommerce-checkout .wc-block-components-totals-coupon__form .wc-blocks-components-select .wc-blocks-components-select__container,
.woocommerce-checkout .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input input {
  height: 60px !important;
  font-weight: 300 !important;
  border-radius: 0 !important;
  border-color: #acacac !important;
}
.woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__option--checked-option-highlighted,
.woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border-radius: 0 !important;
  border: 1px solid #a09632 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.woocommerce-checkout .wc-block-components-radio-control--highlight-checked::after {
  border-radius: 0 !important;
}
.woocommerce-checkout .wc-block-components-notice-banner {
  border-radius: 0 !important;
}
.woocommerce-checkout .wc-block-components-notice-banner.is-error {
  background-color: rgba(210, 100, 110, 0.1);
  border-color: #d2646e;
}
.woocommerce-checkout .wc-block-components-notice-banner.is-error > svg {
  background-color: #961e32;
}
.woocommerce-checkout .wc-block-components-address-card {
  border-radius: 0;
}
.woocommerce-checkout .wc-block-components-validation-error > p {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.woocommerce-checkout .wc-block-components-validation-error svg {
  width: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.wc-block-components-totals-coupon__form button {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  border-color: #fff !important;
  color: #1e1e1e !important;
  background-color: #fff !important;
  transition: all 0.35s ease;
}
.wc-block-components-totals-coupon__form button:hover {
  text-decoration: none;
}
.wc-block-components-totals-coupon__form button:disabled {
  opacity: 0.5;
}
.wc-block-components-totals-coupon__form button svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.wc-block-components-totals-coupon__form button svg {
  fill: #a09632;
  color: #a09632;
}
.wc-block-components-totals-coupon__form button:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1e1e1e;
}
.wc-block-components-totals-coupon__form button:hover svg {
  fill: #797226;
  color: #797226;
}

.wc-block-components-address-form .wc-blocks-components-select__container,
.wc-block-components-address-form .wc-blocks-components-select,
.wc-block-components-text-input input,
.wc-block-components-totals-coupon__form .components-flex-item input,
.wc-block-components-totals-coupon__form .wc-blocks-components-select .wc-blocks-components-select__container,
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input input {
  height: 60px !important;
  font-weight: 300 !important;
  border-radius: 0 !important;
  border-color: #acacac !important;
}

.woocommerce ul.order_details {
  margin-top: 2.25rem !important;
  margin-bottom: 1.5rem !important;
  padding-left: 0 !important;
}
.woocommerce ul.order_details li {
  margin-bottom: 0.75rem;
  border-right: 1px solid #cfc8d8;
}

.woocommerce-order-details .button {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background-color: #a09632 !important;
  border-color: #a09632 !important;
  color: #fff !important;
}
.woocommerce-order-details .button:hover {
  text-decoration: none;
}
.woocommerce-order-details .button:disabled {
  opacity: 0.5;
}
.woocommerce-order-details .button svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.woocommerce-order-details .button:hover {
  background-color: #797226 !important;
  border-color: #797226 !important;
  color: #fff !important;
}
.woocommerce-order-details .button svg {
  fill: #fff;
  color: #fff;
}

.woocommerce-table--order-details {
  border-radius: 0 !important;
  background-color: #f2f2e8 !important;
}

@media (max-width: 767.98px) {
  .woocommerce-customer-details .woocommerce-columns .woocommerce-column:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.woocommerce .woocommerce-customer-details address {
  border: none;
  padding: 0;
}

h2.woocommerce-order-details__title,
h2.woocommerce-column__title {
  font-size: 1.6625rem;
}

.woocommerce-column--billing-address address,
.woocommerce-column--shipping-address address {
  border-radius: 0 !important;
}

@media (max-width: 575.98px) {
  ul.woocommerce-thankyou-order-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  ul.woocommerce-thankyou-order-details li {
    border-right: none !important;
  }
}

.woocommerce-order-details h2 + table.woocommerce-table--order-details,
.woocommerce-column--billing-address h2 + address,
.woocommerce-column--shipping-address h2 + address,
h2.woocommerce-shipments-list__title + table.woocommerce-shipments-table {
  margin-top: 1.5rem;
}

body .wc-block-checkout__payment-method .wc-block-components-radio-control__option,
body .wc-block-checkout__payment-method .wc-block-components-radio-control__option:first-child,
body .wc-block-checkout__payment-method .wc-block-components-radio-control__option:last-child {
  padding-bottom: 0;
}

body .wc-block-components-radio-control__label {
  font-weight: bold;
}

body .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
  margin-bottom: 0;
}

.wc-block-components-totals-shipping .wc-block-components-totals-item strong,
.wc-block-components-totals-item__value,
.is-large.wc-block-cart .wc-block-cart__totals-title,
body .wc-block-components-radio-control__label,
.wc-block-components-address-card address .wc-block-components-address-card__address-section:first-child,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-product-badge,
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input,
table.wc-block-cart-items .wc-block-cart-items__header th,
.wc-block-components-order-summary .wc-block-components-order-summary-item__total-price,
.woocommerce table.shop_table th,
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.wc-block-components-checkout-step__heading-content a {
  font-weight: 500 !important;
}

.is-large.wc-block-cart .wc-block-cart__totals-title,
.wc-block-cart-items__header-total,
.wc-block-cart-items__header-image,
.wc-block-cart-items__header-product {
  text-transform: none !important;
}

/* KEEP SHOPPING BUTTON */
.wp-block-woocommerce-cart:has(.wp-block-woocommerce-empty-cart-block) + .hide-if-cart-empty {
  display: none;
}

/* CART LAYOUT : CUSTOM CARDS */
.cart--shipping-reasons .block__card__content {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .cart--shipping-reasons .col-md-4 {
    margin-top: 0 !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cart--shipping-reasons .col-md-4:first-child {
  margin-top: 0;
}
.cart--shipping-reasons .wp-block-heading {
  margin-top: 0.75rem;
}
.cart--shipping-reasons .wp-block-group.is-vertical {
  gap: 0;
}

.woocommerce-cart .block__accordion__item__wrapper {
  padding: 1.5rem;
  background-color: #f2f2e8;
}

.wc-block-components-address-form__wgk-delivery-phone {
  display: none;
  margin-bottom: 1.5rem;
  margin-top: 16px !important;
}

.checkout-spedition-info p.wc-block-components-checkout-step__description {
  display: none;
}

.woocommerce-checkout .wc-block-components-notices {
  margin-top: 0;
}
.woocommerce-checkout .wc-block-components-notices .wc-block-components-notice-banner {
  margin-top: 0;
}

.woocommerce-account .woocommerce-Input,
.woocommerce-account .woocommerce-input-wrapper input {
  padding: 0.5em;
  font-weight: 300;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding-left: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li::marker {
  content: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  border-color: #fff !important;
  color: #1e1e1e !important;
  background-color: #fff !important;
  width: 100%;
  margin-bottom: 0.375rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a:hover {
  text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a:disabled {
  opacity: 0.5;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a:hover {
  background-color: #f2f2e8 !important;
  border-color: #f2f2e8 !important;
  color: #1e1e1e !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a:hover svg {
  fill: #797226;
  color: #797226;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a[aria-current=page] {
  background: #f2f2e8 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout a {
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
  color: #fff !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--customer-logout a:hover svg {
  fill: #fff;
  color: #fff;
}
@media (max-width: 991.98px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 1.5rem;
  }
}
.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-size: 1.6625rem;
}
.woocommerce-account .woocommerce-info {
  border-top-color: #a09632;
}
.woocommerce-account .woocommerce-info .wc-forward.button {
  margin-top: 0.75rem;
}
.woocommerce-account .woocommerce-info::before {
  color: #a09632;
}
.woocommerce-account .woocommerce header {
  position: static;
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  top: 0;
  height: auto;
}
.woocommerce-account .woocommerce-Address {
  margin-top: 0.75rem;
  width: 100% !important;
  background-color: #f2f2e8;
  padding: 0.75rem;
}
.woocommerce-account .woocommerce-Address address {
  margin-top: 0.75rem;
}
.woocommerce-account .addresses .title .edit {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  border-color: #fff !important;
  color: #1e1e1e !important;
  background-color: #fff !important;
  transition: all 0.35s ease;
  float: left;
  margin-top: 0.75rem;
}
.woocommerce-account .addresses .title .edit:hover {
  text-decoration: none;
}
.woocommerce-account .addresses .title .edit:disabled {
  opacity: 0.5;
}
.woocommerce-account .addresses .title .edit svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.woocommerce-account .addresses .title .edit svg {
  fill: #a09632;
  color: #a09632;
}
.woocommerce-account .addresses .title .edit:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1e1e1e;
}
.woocommerce-account .addresses .title .edit:hover svg {
  fill: #797226;
  color: #797226;
}
.woocommerce-account .woocommerce-order-details,
.woocommerce-account .woocommerce-shipment-details {
  margin-top: 1.5em;
}
.woocommerce-account .woocommerce-shipments-table {
  border-radius: 0 !important;
}
.woocommerce-account .woocommerce-shipments-table__cell a {
  -ms-hyphens: none;
      hyphens: none;
}
.woocommerce-account .woocommerce-shipments-table__cell.woocommerce-shipments-table__cell-shipment-tracking {
  min-height: 49px;
}
.woocommerce-account .woocommerce-input-wrapper select {
  font-weight: 300;
}
.woocommerce-account .select2-container--default .select2-results__option--highlighted[aria-selected],
.woocommerce-account .select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: #a09632;
}
.woocommerce-account .select2-container--default .select2-selection--single {
  border-color: rgb(118, 118, 118);
}
.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #1e1e1e;
}

.woocommerce-page.woocommerce-account .woocommerce-Button,
.woocommerce-page.woocommerce-account .button {
  padding: 0.75rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 solid transparent;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-transition: all 0.35s ease !important;
  -o-transition: all 0.35s ease !important;
  transition: all 0.35s ease !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  background-color: #a09632 !important;
  border-color: #a09632 !important;
  color: #fff !important;
}
.woocommerce-page.woocommerce-account .woocommerce-Button:hover,
.woocommerce-page.woocommerce-account .button:hover {
  text-decoration: none;
}
.woocommerce-page.woocommerce-account .woocommerce-Button:disabled,
.woocommerce-page.woocommerce-account .button:disabled {
  opacity: 0.5;
}
.woocommerce-page.woocommerce-account .woocommerce-Button svg,
.woocommerce-page.woocommerce-account .button svg {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 1.25rem;
  width: 1.25rem;
  fill: #a09632;
  color: #a09632;
}
.woocommerce-page.woocommerce-account .woocommerce-Button:hover,
.woocommerce-page.woocommerce-account .button:hover {
  background-color: #797226 !important;
  border-color: #797226 !important;
  color: #fff !important;
}
.woocommerce-page.woocommerce-account .woocommerce-Button svg,
.woocommerce-page.woocommerce-account .button svg {
  fill: #fff;
  color: #fff;
}

.woocommerce-account:has(.login) .u-column1 h2,
.woocommerce-account:has(.login) .u-column2 h2 {
  height: 3.5rem;
  font-size: 1.6625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .woocommerce-account:has(.login) .u-column2 {
    margin-top: 3rem;
  }
  .woocommerce-account:has(.login) .u-column2 h2 {
    height: auto;
  }
}

.woocommerce form.login,
.woocommerce form.register {
  margin-top: 1.5rem;
}

.nutrition-table__info {
  margin-top: 0.75rem;
}

.nutrition-table__intro {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nutrition-table__intro svg {
  height: auto;
  width: 20px;
  color: #a09632;
  padding: 5px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 575.98px) {
  .nutrition-table__intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@container product-content (max-width: 800px) {
  .nutrition-table__ingridients .nutrition-table__feature__item__content {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block__qualitaetsstufen-card {
  background-color: #f2f2e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block__qualitaetsstufe__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  width: 100%;
}
@container product-content (max-width: 752px) {
  .block__qualitaetsstufe__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.25rem;
  }
}

.block__qualitaetsstufe__pyramide {
  padding: 3rem;
  padding-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block__qualitaetsstufe__pyramide svg {
  height: 18rem;
  margin-right: -1rem;
}
@container product-content (max-width: 752px) {
  .block__qualitaetsstufe__pyramide {
    padding: 2.25rem;
    padding-right: 2.25rem;
    padding-bottom: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .block__qualitaetsstufe__pyramide svg {
    height: 15rem;
    margin-right: -2.5rem;
  }
}
@media (max-width: 575.98px) {
  .block__qualitaetsstufe__pyramide svg {
    height: 14rem;
  }
}

.block__qualitaetsstufe__info {
  padding: 3rem;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@container product-content (max-width: 752px) {
  .block__qualitaetsstufe__info {
    padding: 2.25rem;
    padding-left: 2.25rem;
    padding-top: 0;
  }
  .block__qualitaetsstufe__info h3,
  .block__qualitaetsstufe__info .h2 {
    text-align: center;
  }
}

.block__shipping-info {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6625rem;
}
@media (max-width: 575.98px) {
  .block__shipping-info {
    font-size: 1.25rem;
  }
}

.shipping-info__intro,
.shipping-info__outro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  text-align: center;
}
.shipping-info__intro svg,
.shipping-info__outro svg {
  width: 2rem;
  height: 2rem;
}

.shipping-info__intro svg {
  color: #961e32;
  fill: #961e32;
}

.shipping-info__outro {
  margin-top: 1.5rem;
}
.shipping-info__outro svg {
  color: #a09632;
  fill: #a09632;
}
@media (max-width: 575.98px) {
  .shipping-info__outro {
    margin-top: 1rem;
  }
}

.shipping-info__choice-wrapper {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.shipping-info__choice-span {
  font-weight: 500;
}

.shipping-info__choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  position: relative;
}
@media (max-width: 575.98px) {
  .shipping-info__choice {
    gap: 0;
  }
}

.connection-line {
  position: absolute;
  border-left: 2px solid #a09632;
  left: calc(50% - 1px);
  height: 6rem;
}

.shipping-info__choice-or {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 0;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shipping-info__choice-or .connection-line {
  top: 4rem;
}
.shipping-info__choice-or::before {
  display: block;
  content: "";
  border-top: 2px solid #a09632;
  width: 10rem;
}
@media (max-width: 767.98px) {
  .shipping-info__choice-or::before {
    width: 5rem;
  }
}
@media (max-width: 575.98px) {
  .shipping-info__choice-or::before {
    width: 3rem;
  }
}
.shipping-info__choice-or::after {
  display: block;
  content: "";
  border-top: 2px solid #a09632;
  width: 10rem;
}
@media (max-width: 767.98px) {
  .shipping-info__choice-or::after {
    width: 5rem;
  }
}
@media (max-width: 575.98px) {
  .shipping-info__choice-or::after {
    width: 3rem;
  }
}
@media (max-width: 575.98px) {
  .shipping-info__choice-or {
    gap: 0.75rem;
    padding: 0.375rem 0;
  }
  .shipping-info__choice-or .connection-line {
    top: 2.5rem;
  }
}

.shipping-info__atleast {
  display: none;
  font-weight: 500;
  height: 6rem;
  position: relative;
}
.shipping-info__atleast .connection-line {
  top: 3rem;
  height: 5rem;
}

.shipping-info__choice-less,
.shipping-info__choice-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5rem;
}

.shipping-info__choice-less--number,
.shipping-info__choice-more--number {
  font-size: 3.05rem;
  font-weight: 400;
  color: #a09632;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}

.shipping-info__choice-less--unit,
.shipping-info__choice-more--unit {
  width: 7.5rem;
  word-break: auto-phrase;
  text-align: center;
}
@media (max-width: 575.98px) {
  .shipping-info__choice-less--unit,
  .shipping-info__choice-more--unit {
    width: 5rem;
  }
}

@media (max-width: calc(0 - 1px)) {
  .order-xs-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xs-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xs-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xs-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media (max-width: calc(576px - 1px)) {
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media (max-width: calc(768px - 1px)) {
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media (max-width: calc(992px - 1px)) {
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media (max-width: calc(1200px - 1px)) {
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media (max-width: calc(1400px - 1px)) {
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}