/* stylelint-disable declaration-no-important */
/* stylelint-disable */
.tippy-box {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 17px;
  color: #fff;
  text-transform: none;
  white-space: normal;
  pointer-events: none;
  background-color: #000;
  border-radius: 0.5rem;
}

/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
 */
.mdc-snackbar {
  z-index: 8;
  margin: 8px;
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  pointer-events: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mdc-snackbar__surface {
  background-color: #333333;
}

.mdc-snackbar__label {
  color: rgba(255, 255, 255, 0.87);
}

/* .mdc-snackbar__surface {
  min-width: 344px;
}
 */
@media (max-width: 480px), (max-width: 344px) {
  .mdc-snackbar__surface {
    min-width: 100%;
  }
}
.mdc-snackbar__surface {
  max-width: 672px;
}

.mdc-snackbar__surface {
  /* @alternate */
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.mdc-snackbar__surface {
  border-radius: 4px;
  /* @alternate */
  border-radius: var(--mdc-shape-small, 4px);
}

.mdc-snackbar--opening,
.mdc-snackbar--open,
.mdc-snackbar--closing {
  display: flex;
}

.mdc-snackbar--open .mdc-snackbar__label,
.mdc-snackbar--open .mdc-snackbar__actions {
  visibility: visible;
}

.mdc-snackbar--leading {
  justify-content: flex-start;
}

.mdc-snackbar--stacked .mdc-snackbar__label {
  /* @noflip */
  /*rtl:ignore*/
  padding-left: 16px;
  /* @noflip */
  /*rtl:ignore*/
  padding-right: 8px;
  padding-bottom: 12px;
}

[dir=rtl] .mdc-snackbar--stacked .mdc-snackbar__label,
.mdc-snackbar--stacked .mdc-snackbar__label[dir=rtl] {
  /*rtl:begin:ignore*/
  /* @noflip */
  /*rtl:ignore*/
  padding-left: 8px;
  /* @noflip */
  /*rtl:ignore*/
  padding-right: 16px;
  /*rtl:end:ignore*/
}

.mdc-snackbar--stacked .mdc-snackbar__surface {
  flex-direction: column;
  align-items: flex-start;
}

.mdc-snackbar--stacked .mdc-snackbar__actions {
  align-self: flex-end;
  margin-bottom: 8px;
}

.mdc-snackbar__surface {
  /* @noflip */
  /*rtl:ignore*/
  padding-left: 0;
  /* @noflip */
  /*rtl:ignore*/
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.mdc-snackbar__surface::before {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

@media screen and (forced-colors: active) {
  .mdc-snackbar__surface::before {
    border-color: CanvasText;
  }
}
[dir=rtl] .mdc-snackbar__surface,
.mdc-snackbar__surface[dir=rtl] {
  /*rtl:begin:ignore*/
  /* @noflip */
  /*rtl:ignore*/
  padding-left: 8px;
  /* @noflip */
  /*rtl:ignore*/
  padding-right: 0;
  /*rtl:end:ignore*/
}

.mdc-snackbar--open .mdc-snackbar__surface {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.mdc-snackbar--closing .mdc-snackbar__surface {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1);
}

.mdc-snackbar__label {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Roboto, sans-serif;
  /* @alternate */
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
  font-size: 0.875rem;
  /* @alternate */
  font-size: var(--mdc-typography-body2-font-size, 0.875rem);
  line-height: 1.25rem;
  /* @alternate */
  line-height: var(--mdc-typography-body2-line-height, 1.25rem);
  font-weight: 400;
  /* @alternate */
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: 0.0178571429em;
  /* @alternate */
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  text-decoration: inherit;
  /* @alternate */
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: inherit;
  /* @alternate */
  text-transform: var(--mdc-typography-body2-text-transform, inherit);
  /* @noflip */
  /*rtl:ignore*/
  padding-left: 16px;
  /* @noflip */
  /*rtl:ignore*/
  padding-right: 8px;
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  margin: 0;
  visibility: hidden;
  padding-top: 14px;
  padding-bottom: 14px;
}

[dir=rtl] .mdc-snackbar__label,
.mdc-snackbar__label[dir=rtl] {
  /*rtl:begin:ignore*/
  /* @noflip */
  /*rtl:ignore*/
  padding-left: 8px;
  /* @noflip */
  /*rtl:ignore*/
  padding-right: 16px;
  /*rtl:end:ignore*/
}

.mdc-snackbar__label::before {
  display: inline;
  content: attr(data-mdc-snackbar-label-text);
}

.mdc-snackbar__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  box-sizing: border-box;
  visibility: hidden;
}

.mdc-snackbar__action:not(:disabled) {
  color: #bb86fc;
}

.mdc-snackbar__action .mdc-button__ripple::before,
.mdc-snackbar__action .mdc-button__ripple::after {
  background-color: #bb86fc;
  /* @alternate */
  background-color: var(--mdc-ripple-color, #bb86fc);
}

.mdc-snackbar__action:hover .mdc-button__ripple::before,
.mdc-snackbar__action.mdc-ripple-surface--hover .mdc-button__ripple::before {
  opacity: 0.08;
  /* @alternate */
  opacity: var(--mdc-ripple-hover-opacity, 0.08);
}

.mdc-snackbar__action.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before,
.mdc-snackbar__action:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
  transition-duration: 75ms;
  opacity: 0.24;
  /* @alternate */
  opacity: var(--mdc-ripple-focus-opacity, 0.24);
}

.mdc-snackbar__action:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
  transition: opacity 150ms linear;
}

.mdc-snackbar__action:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
  transition-duration: 75ms;
  opacity: 0.24;
  /* @alternate */
  opacity: var(--mdc-ripple-press-opacity, 0.24);
}

.mdc-snackbar__action.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}

.mdc-snackbar__dismiss {
  color: rgba(255, 255, 255, 0.87);
}

.mdc-snackbar__dismiss .mdc-icon-button__ripple::before,
.mdc-snackbar__dismiss .mdc-icon-button__ripple::after {
  background-color: rgba(255, 255, 255, 0.87);
  /* @alternate */
  background-color: var(--mdc-ripple-color, rgba(255, 255, 255, 0.87));
}

.mdc-snackbar__dismiss:hover .mdc-icon-button__ripple::before,
.mdc-snackbar__dismiss.mdc-ripple-surface--hover .mdc-icon-button__ripple::before {
  opacity: 0.08;
  /* @alternate */
  opacity: var(--mdc-ripple-hover-opacity, 0.08);
}

.mdc-snackbar__dismiss.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,
.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before {
  transition-duration: 75ms;
  opacity: 0.24;
  /* @alternate */
  opacity: var(--mdc-ripple-focus-opacity, 0.24);
}

.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after {
  transition: opacity 150ms linear;
}

.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after {
  transition-duration: 75ms;
  opacity: 0.24;
  /* @alternate */
  opacity: var(--mdc-ripple-press-opacity, 0.24);
}

.mdc-snackbar__dismiss.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}

.mdc-snackbar__dismiss.mdc-snackbar__dismiss {
  width: 36px;
  height: 36px;
  padding: 6px;
  font-size: 18px;
}

.mdc-snackbar__dismiss.mdc-snackbar__dismiss .mdc-icon-button__focus-ring {
  display: none;
}

.mdc-snackbar__dismiss.mdc-snackbar__dismiss.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,
.mdc-snackbar__dismiss.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring {
  display: block;
  max-height: 36px;
  max-width: 36px;
}

@media screen and (forced-colors: active) {
  .mdc-snackbar__dismiss.mdc-snackbar__dismiss.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,
  .mdc-snackbar__dismiss.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring {
    pointer-events: none;
    border: 2px solid transparent;
    border-radius: 6px;
    box-sizing: content-box;
    position: absolute;
    top: 50%;
    /* @noflip */
    /*rtl:ignore*/
    left: 50%;
    /* @noflip */
    /*rtl:ignore*/
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
  }
}
@media screen and (forced-colors: active) and (forced-colors: active) {
  .mdc-snackbar__dismiss.mdc-snackbar__dismiss.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,
  .mdc-snackbar__dismiss.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring {
    border-color: CanvasText;
  }
}
@media screen and (forced-colors: active) {
  .mdc-snackbar__dismiss.mdc-snackbar__dismiss.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring::after,
  .mdc-snackbar__dismiss.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring::after {
    content: "";
    border: 2px solid transparent;
    border-radius: 8px;
    display: block;
    position: absolute;
    top: 50%;
    /* @noflip */
    /*rtl:ignore*/
    left: 50%;
    /* @noflip */
    /*rtl:ignore*/
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: calc(100% + 4px);
    width: calc(100% + 4px);
  }
}
@media screen and (forced-colors: active) and (forced-colors: active) {
  .mdc-snackbar__dismiss.mdc-snackbar__dismiss.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring::after,
  .mdc-snackbar__dismiss.mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring::after {
    border-color: CanvasText;
  }
}
.mdc-snackbar__dismiss.mdc-snackbar__dismiss.mdc-icon-button--reduced-size .mdc-icon-button__ripple {
  width: 36px;
  height: 36px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
  margin-left: 0px;
}

.mdc-snackbar__dismiss.mdc-snackbar__dismiss.mdc-icon-button--reduced-size.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,
.mdc-snackbar__dismiss.mdc-snackbar__dismiss.mdc-icon-button--reduced-size:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring {
  max-height: 36px;
  max-width: 36px;
}

.mdc-snackbar__dismiss.mdc-snackbar__dismiss .mdc-icon-button__touch {
  position: absolute;
  top: 50%;
  height: 36px;
  /* @noflip */
  /*rtl:ignore*/
  left: 50%;
  width: 36px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mdc-snackbar__action + .mdc-snackbar__dismiss {
  /* @noflip */
  /*rtl:ignore*/
  margin-left: 8px;
  /* @noflip */
  /*rtl:ignore*/
  margin-right: 0;
}

[dir=rtl] .mdc-snackbar__action + .mdc-snackbar__dismiss,
.mdc-snackbar__action + .mdc-snackbar__dismiss[dir=rtl] {
  /*rtl:begin:ignore*/
  /* @noflip */
  /*rtl:ignore*/
  margin-left: 0;
  /* @noflip */
  /*rtl:ignore*/
  margin-right: 8px;
  /*rtl:end:ignore*/
}


.cart {
  /* padding-top: 40px; */
  padding-right: 0;
  padding-bottom: 1rem;
  padding-left: 0;
}
@media screen and (min-width: 1200px) {
  .cart__table-product-group {
    max-width: 150px;
  }
}
@media screen and (min-width: 1366px) {
  .cart__table-product-group {
    max-width: 180px;
  }
}
@media screen and (min-width: 1500px) {
  .cart__table-product-group {
    max-width: 220px;
  }
}
.cart__row {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-right: -1rem;
  margin-left: -1rem;
}
.cart__left {
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 1200px) {
  .cart__left {
    width: 70%;
    flex-shrink: 0;
    flex-grow: 0;
    max-width: 70%;
  }
}
.cart__right {
  width: 100%;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 1200px) {
  .cart__right {
    width: 30%;
    max-width: 30%;
  }
}
.cart__title {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.cart .grid__item {
  padding-bottom: 0;
}
.cart input::-webkit-outer-spin-button,
.cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart input[type=number] {
  -moz-appearance: textfield;
}
.cart__table {
  width: 100%;
  max-width: 100%;
  font-size: 1.0625rem;
}
.cart__table th {
  padding-top: 1rem;
  padding-bottom: 1rem;
  white-space: nowrap;
  border-bottom: 2px solid #000;
}
@media screen and (min-width: 1200px) {
  .cart__table th {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (min-width: 1366px) {
  .cart__table th {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cart__table th span {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.cart__table td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  align-items: flex-start;
}
.cart__table tr th:last-child {
  padding-right: 0;
  text-align: right;
}
.cart__table tr td:last-child {
  text-align: right;
  vertical-align: middle;
}
.cart__table td:nth-of-type(4),
.cart__table td:nth-of-type(5) {
  vertical-align: middle;
}
.cart__table .checkout__sum {
  font-weight: 700;
  border: none;
}
.cart__table .checkout__sum td {
  padding-right: 0;
  padding-bottom: 0;
}
.cart__table .checkout__sum span {
  box-sizing: content-box;
  width: 140px;
  max-width: 200px;
  padding-right: 8px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .cart__table {
    min-width: initial;
    font-size: 1rem;
    display: block;
    /* stylelint-disable selector-no-qualifying-type */
  }
  .cart__table thead {
    display: none;
  }
  .cart__table tbody {
    display: block;
  }
  .cart__table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    margin-bottom: 8px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
  }
  .cart__table .checkout__sum td {
    padding-right: 0;
  }
  .cart__table .checkout__sum span {
    box-sizing: content-box;
    width: 140px;
    max-width: 200px;
    padding-right: 8px;
    font-weight: 400;
    text-align: left;
  }
  .cart__table td {
    display: flex;
    padding: 0;
    text-align: left;
    border: none;
  }
  .cart__table td[data-title]::before {
    display: inline-block;
    flex-shrink: 0;
    width: 121px;
    max-width: 200px;
    padding-right: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: left;
    content: attr(data-title);
  }
}
.cart__table .cart__quantity {
  width: 104px;
  padding-top: 11px;
  padding-bottom: 11px;
  text-align: center;
  background-color: #f3f3f3;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}
.cart__table tr.checkout__sum td {
  border-bottom: none;
}
.cart__product-group {
  padding: 0 6px;
  font-size: 11px;
  line-height: 20px;
  color: #949494;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid #949494;
  border-radius: 20px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.cart__product-group span:not(.tooltip) {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}
.cart__item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.25rem;
}
.cart__remove-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.cart__sidebox {
  height: 100%;
  padding: 40px 16px;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
}
.cart__sidebox-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.cart__sidebox-text {
  margin-bottom: 0.5rem;
}
.cart__sidebox-sum {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}
.cart__sidebox-sum span {
  font-weight: 400;
}
.cart__sidebox-tax {
  font-size: 12px;
  line-height: 18px;
  color: #999;
}
.cart__submit-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  margin-right: 1rem;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 24px;
  color: #fff;
  background-color: var(--color-primary-a-100);
  border: none;
  border-radius: 50px;
}
.cart__submit-btn:hover {
  color: #fff;
}
.cart__submit-btn svg {
  margin-left: 0.5rem;
}
.cart__submit-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.cart__submit-btn.disabled:hover {
  cursor: not-allowed;
}
@media screen and (min-width: 1200px) {
  .cart {
    /* padding-top: 80px; */
  }
  .cart .grid__item.col-9 {
    flex-basis: 70%;
    flex-grow: 0;
    max-width: 70%;
  }
  .cart .grid__item.col-3 {
    flex-basis: 30%;
    flex-grow: 0;
    max-width: 30%;
  }
  .cart__title {
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
    line-height: 3.25rem;
  }
  .cart__item-actions {
    justify-content: center;
    margin-top: 0;
  }
  .cart__table .cart__quantity {
    width: 56px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-right: 1.875rem;
  }
  .cart__table tr th:last-child {
    text-align: left;
  }
  .cart__table tr:last-child:not(.checkout__sum) td {
    border-bottom: 1px solid #000;
  }
  .cart .cart__item-actions {
    justify-content: flex-start;
  }
  .cart__sidebox {
    padding: 40px;
  }
  .cart__sidebox-sum {
    margin-bottom: 4px;
  }
  .cart__sidebox-text {
    margin-bottom: 1rem;
  }
}

.mdc-snackbar__surface {
  max-width: 420px;
}
.mdc-snackbar__label {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .mdc-snackbar__label {
    padding: 1.5rem;
    font-size: 1.0625rem;
  }
}
.mdc-snackbar a {
  color: var(--color-primary-a-100);
}

td.cart__product-price {
  white-space: nowrap;
}

@media screen and (min-width: 1200px) {
  .checkout__td-product-group {
    width: 300px !important;
  }
}

@media screen and (min-width: 1200px) {
  .checkout__td-quantity {
    width: 100px !important;
  }
}

@media screen and (min-width: 1200px) {
  .checkout__td-package {
    width: 100px !important;
  }
}

.checkout {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .checkout {
    max-width: 66.66%;
  }
}
.checkout .grid__row {
  margin-top: 0;
  margin-bottom: 0;
}
.checkout .grid__item {
  padding-top: 0;
  padding-bottom: 0;
}
.checkout input[type=text] {
  background-color: #f3f3f3;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
}
.checkout input[type=text]:focus {
  border-color: var(--color-primary-a-100);
}
.checkout__product-group {
  padding: 0 6px;
  font-size: 11px;
  line-height: 20px;
  color: #949494;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid #949494;
  border-radius: 20px;
}
.checkout__title {
  margin-bottom: 40px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.072px;
}
@media screen and (min-width: 992px) {
  .checkout__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.checkout__subtitle {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media screen and (min-width: 992px) {
  .checkout__subtitle {
    font-size: 22px;
    line-height: 28px;
  }
}
.checkout__user-details {
  margin-bottom: 40px;
}
.checkout__date {
  margin-bottom: 40px;
}
.checkout__location {
  margin-bottom: 1rem;
}
.checkout__location input {
  margin-bottom: 1.5rem;
}
.checkout__request {
  margin-bottom: 1rem;
}
.checkout__contact {
  margin-bottom: 1rem;
}
.checkout__contact input {
  margin-bottom: 1.5rem;
}
.checkout label + input {
  margin-top: 0.5rem;
}
.checkout .mb24 {
  margin-bottom: 24px;
}
.checkout .mb40 {
  margin-bottom: 40px;
}
.checkout .mb0 {
  margin-bottom: 0;
}
.checkout__submit-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  margin-right: 1rem;
  margin-bottom: 1.5rem;
  font-size: 17px;
  line-height: 24px;
  color: #fff;
  background-color: var(--color-primary-a-100);
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
.checkout__submit-btn svg {
  margin-left: 0.5rem;
}
.checkout__cancel {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  margin-bottom: 1.5rem;
  font-size: 17px;
  line-height: 24px;
  color: #000;
  background-color: transparent;
  border: none;
  border-radius: 50px;
}
.checkout__cancel svg {
  margin-right: 0.5rem;
}
.checkout__table {
  width: 100%;
  max-width: 100%;
  font-size: 1.0625rem;
  table-layout: fixed;
}
.checkout__table th {
  white-space: nowrap;
  border-bottom: 2px solid #000;
}
.checkout__table td {
  border-bottom: 1px solid #000;
  padding-top: 16px;
  padding-bottom: 16px;
}
.checkout__table tr th:last-child {
  padding-right: 0;
  text-align: right;
}
.checkout__table tr td:last-child {
  text-align: right;
}
.checkout__table .checkout__sum {
  margin-block-end: 0;
  font-weight: 700;
  border: none;
}
.checkout__table .checkout__sum td {
  padding-right: 0;
  padding-bottom: 0;
}
.checkout__table .checkout__sum span {
  box-sizing: content-box;
  width: 140px;
  max-width: 200px;
  padding-right: 8px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .checkout__table {
    min-width: initial;
    font-size: 1rem;
    /* stylelint-disable selector-no-qualifying-type */
  }
  .checkout__table thead {
    display: none;
  }
  .checkout__table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-block-start: 1rem;
    padding-inline: 1rem;
    margin-bottom: 8px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
  }
  .checkout__table .checkout__sum td {
    padding-right: 0;
  }
  .checkout__table .checkout__sum span {
    box-sizing: content-box;
    width: 140px;
    max-width: 200px;
    padding-right: 8px;
    font-weight: 400;
    text-align: left;
  }
  .checkout__table td {
    display: flex;
    padding: 0;
    text-align: left;
    border: none;
  }
  .checkout__table td[data-title]::before {
    display: inline-block;
    flex-shrink: 0;
    width: 140px;
    max-width: 200px;
    padding-right: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: left;
    content: attr(data-title);
  }
}
.checkout__buttons {
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}
@media screen and (max-width: 991px) {
  .checkout__buttons {
    flex-direction: column;
    justify-content: center;
  }
}
.checkout input[type=text].f3-form-error {
  border: 1px solid #d00;
}
.checkout__tax {
  padding-inline-start: 1rem;
  font-size: 12px;
  line-height: 18px;
  color: #999;
}
@media screen and (min-width: 992px) {
  .checkout__tax {
    padding-inline-start: 0;
    text-align: right;
  }
}

/**
 * ----------------------------------------------------------------------------
 * Primary colors
 */
/**
 * ----------------------------------------------------------------------------
 * Secondary colors
 */
/**
 * ----------------------------------------------------------------------------
 * Neutral colors
 */
/**
 * ----------------------------------------------------------------------------
 * Actions
 */
/**
 * ----------------------------------------------------------------------------
 * Feedback (forms, etc.)
 */
/**
 * ----------------------------------------------------------------------------
 * Border / Divider
 */
:root {
  --color-primary-a-10: #c1fff4;
  --color-primary-a-100: #00e6be;
  --color-primary-a-200: #00997f;
  --color-primary-a-300: #004d3f;
  --color-secondary-a-100: #f16f9a;
  --color-secondary-b-100: #a7d1ff;
  --color-secondary-c-100: #ffdf94;
  --color-secondary-d-100: #ac94ff;
  --color-secondary-e-100: #ffa97c;
  --color-neutrals-100: #000;
  --color-neutrals-90: #333;
  --color-neutrals-75: #949494;
  --color-neutrals-50: #e6e6e6;
  --color-neutrals-25: #f3f3f3;
  --color-neutrals-15: #f9f9f9;
  --color-neutrals-0: #fff;
  --color-action: #00997f;
  --color-action-act: #004d3f;
  --color-feedback-error: #ff583a;
  --color-feedback-success: #21b36a;
}

/* stylelint-disable */
/* stylelint-enable */
.color-primary-a-10 {
  color: var(--color-primary-a-10);
}
.color-primary-a-100 {
  color: var(--color-primary-a-100);
}
.color-primary-a-200 {
  color: var(--color-primary-a-200);
}
.color-primary-a-300 {
  color: var(--color-primary-a-300);
}
.color-secondary-a-100 {
  color: var(--color-secondary-a-100);
}
.color-secondary-b-100 {
  color: var(--color-secondary-b-100);
}
.color-secondary-c-100 {
  color: var(--color-secondary-c-100);
}
.color-secondary-d-100 {
  color: var(--color-secondary-d-100);
}
.color-secondary-e-100 {
  color: var(--color-secondary-e-100);
}
.color-neutrals-100 {
  color: var(--color-neutrals-100);
}
.color-neutrals-90 {
  color: var(--color-neutrals-90);
}
.color-neutrals-75 {
  color: var(--color-neutrals-75);
}
.color-neutrals-50 {
  color: var(--color-neutrals-50);
}
.color-neutrals-25 {
  color: var(--color-neutrals-25);
}
.color-neutrals-15 {
  color: var(--color-neutrals-15);
}
.color-neutrals-0 {
  color: var(--color-neutrals-0);
}
.color-action {
  color: var(--color-action);
}
.color-action-act {
  color: var(--color-action-act);
}
.color-feedback-error {
  color: var(--color-feedback-error);
}
.color-feedback-success {
  color: var(--color-feedback-success);
}

.bg-primary-a-10 {
  background-color: var(--color-primary-a-10);
}
.bg-primary-a-100 {
  background-color: var(--color-primary-a-100);
}
.bg-primary-a-200 {
  background-color: var(--color-primary-a-200);
}
.bg-primary-a-300 {
  background-color: var(--color-primary-a-300);
}
.bg-secondary-a-100 {
  background-color: var(--color-secondary-a-100);
}
.bg-secondary-b-100 {
  background-color: var(--color-secondary-b-100);
}
.bg-secondary-c-100 {
  background-color: var(--color-secondary-c-100);
}
.bg-secondary-d-100 {
  background-color: var(--color-secondary-d-100);
}
.bg-secondary-e-100 {
  background-color: var(--color-secondary-e-100);
}
.bg-neutrals-100 {
  background-color: var(--color-neutrals-100);
}
.bg-neutrals-90 {
  background-color: var(--color-neutrals-90);
}
.bg-neutrals-75 {
  background-color: var(--color-neutrals-75);
}
.bg-neutrals-50 {
  background-color: var(--color-neutrals-50);
}
.bg-neutrals-25 {
  background-color: var(--color-neutrals-25);
}
.bg-neutrals-15 {
  background-color: var(--color-neutrals-15);
}
.bg-neutrals-0 {
  background-color: var(--color-neutrals-0);
}
.bg-action {
  background-color: var(--color-action);
}
.bg-action-act {
  background-color: var(--color-action-act);
}
.bg-feedback-error {
  background-color: var(--color-feedback-error);
}
.bg-feedback-success {
  background-color: var(--color-feedback-success);
}

/**
 * ----------------------------------------------------------------------------
 * Fonts
 */
/**
 * ----------------------------------------------------------------------------
 * Media queries and screen sizes
 */
/**
 * ----------------------------------------------------------------------------
 * Spaces
 */
/**
 * ----------------------------------------------------------------------------
 * Animation
 */
/* stylelint-disable declaration-no-important */
/**
 * ----------------------------------------------------------------------------
 * Mixin for element elevation using drop shadows
 */
/**
 * ----------------------------------------------------------------------------
 * Mixin that adds elevation to element when hovering over
 */
/**
 * ----------------------------------------------------------------------------
 * Important font placeholders that define the whole typography.
 * Basic font classes will use these placeholders but you are encouraged to
 * also use them in your component classes to keep html clean.
 */
.header__primary-nav__sub-menu-level-1-columns > li.menu-item--parent {
  font-family: "Lubalin Graph Std", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: -0.003em;
}
@media screen and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-1-columns > li.menu-item--parent {
    font-size: 1.75rem;
    line-height: 2.25rem;
    letter-spacing: normal;
  }
}

/**
 * ----------------------------------------------------------------------------
 * Spacing placeholders
 */
/**
 * ----------------------------------------------------------------------------
 * Push-up placeholders (counterpart of spacing)
 */
/* stylelint-disable declaration-no-important, selector-no-qualifying-type, selector-max-type, selector-max-class, selector-max-compound-selectors */
:root {
  --color-primary-a-100: #00B9B4 !important;
  --color-action: var(--color-primary-a-100);
}

.header {
  position: relative;
  z-index: 1500;
  width: 100%;
  color: #000;
  background-color: #fff;
}
.header .container-fluid {
  padding: 0 1rem;
}
@media screen and (min-width: 992px) {
  .header .container-fluid {
    padding: 0 5rem;
  }
}
.header .header__primary-nav-logo {
  width: 0;
  overflow: hidden;
  transition: all 0.1s ease-out;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .header__wrapper {
    display: grid;
    grid-auto-flow: column;
  }
}
.header__mobile-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .header__mobile-wrapper {
    width: 100%;
  }
}
.header__container--primary {
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 992px) {
  .header__container--sticky-collapse {
    max-height: 150px;
    transition: all 0.1s ease-out;
  }
}
@media screen and (max-width: 991px) {
  .header__container--mobile .header__wrapper {
    flex-flow: column;
  }
}
.header__container--no-burger:last-child a {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .header__container--no-burger .header__mobile-wrapper {
    width: auto;
  }
}
.header--sticky {
  position: sticky;
  top: 0;
}
@media screen and (min-width: 992px) {
  .header--scrolled .header__primary-nav-logo {
    width: 24px;
    margin-right: 1rem;
  }
  .header--scrolled .header__container--sticky-collapse {
    max-height: 0;
    overflow: hidden;
  }
}
.header.flyout-open {
  color: #000;
  background-color: #fff;
}
.header.flyout-open--search {
  overflow: hidden;
}
.header.flyout-open .header__logo svg path {
  fill: var(--color-primary-a-100);
}
.header.flyout-open .header__burger span, .header.flyout-open .header__burger::before, .header.flyout-open .header__burger::after {
  background-color: #000;
}
.header .link:hover {
  color: #00997f;
  text-decoration-color: transparent !important;
}
.header .link:hover::before {
  display: none;
}
.header .link:focus:hover {
  text-decoration-color: transparent !important;
}
.header .link:focus::before {
  display: none;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 1rem 1rem 0;
}
@media screen and (min-width: 992px) {
  .header__logo {
    padding: 1.75rem 0.625rem 1rem 0;
  }
}
.header__logo img,
.header__logo svg {
  width: 120px;
  height: auto;
}
@media screen and (min-width: 992px) {
  .header__logo img,
  .header__logo svg {
    width: 240px;
  }
}
.header__menu-wrapper {
  display: flex;
  justify-content: stretch;
}
.header__primary-nav {
  display: none;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header__primary-nav {
    width: 100%;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .header__primary-nav {
    display: flex;
  }
}
.header__primary-nav > ul {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none outside;
}
@media screen and (min-width: 992px) {
  .header__primary-nav > ul {
    align-items: flex-start;
  }
}
@media screen and (max-width: 991px) {
  .header__primary-nav > ul > li {
    padding-bottom: 1.5rem;
  }
  .header__primary-nav > ul > li:last-child {
    padding-bottom: 0;
  }
}
.header__primary-nav > ul > li a {
  color: inherit;
}
.header__primary-nav > ul > li a:focus, .header__primary-nav > ul > li a:hover {
  text-decoration-color: transparent;
}
.header__primary-nav > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}
@media screen and (max-width: 1120px) and (min-width: 992px) {
  .header__primary-nav > ul > li > a {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
@media screen and (min-width: 992px) {
  .header__primary-nav > ul > li > a {
    padding: 0 0.75rem;
  }
}
.header__primary-nav > ul > li:first-child .header__primary-nav__sub-menu-level-1 {
  margin-left: 0;
}
.header__primary-nav > ul > li:first-child a {
  padding-left: 0;
}
@media screen and (min-width: 992px) {
  .header__primary-nav > ul > li.menu-item {
    flex: 1;
    max-width: max-content;
  }
}
.header__primary-nav li > ul.open {
  display: flex;
}
.header__primary-nav li.menu-item--current > a {
  color: #00997f;
  text-decoration-color: transparent;
}
.header__primary-nav .menu-item--sub-menu-heading {
  justify-content: space-between;
  width: 100%;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #000;
}
.header__primary-nav .menu-item--sub-menu-heading .link {
  font-weight: 700;
}
.header__primary-nav__sub-menu-level-1, .header__primary-nav__sub-menu-level-2 {
  position: fixed;
  display: none;
  flex-flow: column;
  width: 100%;
  padding: 1rem;
  margin: 0;
  list-style: none outside;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .header__primary-nav__sub-menu-level-1, .header__primary-nav__sub-menu-level-2 {
    top: 0;
    left: 0;
    z-index: 1;
    height: 100vh;
  }
}
@media screen and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-1, .header__primary-nav__sub-menu-level-2 {
    position: absolute;
    width: fit-content;
    min-width: 340px;
    padding: 1.75rem 2.5rem;
    box-shadow: 0 18px 28px rgba(9, 30, 66, 0.15), 0 0 1px rgba(9, 30, 66, 0.31);
  }
}
.header__primary-nav__sub-menu-level-1 > li, .header__primary-nav__sub-menu-level-2 > li {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.header__primary-nav__sub-menu-level-1 > li:not(.menu-item--sub-menu-heading), .header__primary-nav__sub-menu-level-2 > li:not(.menu-item--sub-menu-heading) {
  justify-content: flex-start;
}
.header__primary-nav__sub-menu-level-1 > li a, .header__primary-nav__sub-menu-level-2 > li a {
  padding: 0.75rem 0;
}
@media screen and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-1 {
    margin-top: 2.0625rem;
    margin-left: -1.25rem;
  }
  .header__primary-nav__sub-menu-level-1 > .menu-item--sub-menu-heading .link--js-close-sub-menu {
    display: none;
  }
}
.header__primary-nav__sub-menu-level-2 {
  top: 0;
}
@media screen and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-2 {
    left: calc(100% + 2.5rem);
  }
  .header__primary-nav__sub-menu-level-2 > .menu-item--sub-menu-heading .link--js-close-nav {
    display: none;
  }
}
.header__primary-nav__sub-menu-level-1-columns {
  position: fixed;
  display: none;
  width: 100%;
  padding: 1rem;
  margin: 0;
  list-style-type: none;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .header__primary-nav__sub-menu-level-1-columns {
    top: 0;
    left: 0;
    z-index: 1;
    flex-flow: column;
    height: 100vh;
  }
}
@media screen and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-1-columns {
    position: absolute;
    left: 1.25rem;
    padding: 5rem;
    margin: 1.5625rem -1.25rem 0;
  }
}
.header__primary-nav__sub-menu-level-1-columns > li {
  display: flex;
  flex-flow: row;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .header__primary-nav__sub-menu-level-1-columns > li a {
    padding: 0.75rem 0;
  }
}
@media screen and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-1-columns > li {
    flex-flow: column;
  }
  .header__primary-nav__sub-menu-level-1-columns > li:not(.menu-item--sub-menu-heading) {
    padding: 0 1.25rem;
  }
}
.header__primary-nav__sub-menu-level-1-columns > li.menu-item--sub-menu-heading ~ .menu-item--has-children, .header__primary-nav__sub-menu-level-1-columns > li.menu-item--parent {
  padding-left: 0;
}
.header__primary-nav__sub-menu-level-1-columns > li.menu-item--parent {
  position: absolute;
  top: 0.5rem;
  width: 100%;
  font-weight: 700;
}
.header__primary-nav__sub-menu-level-1-columns > li:last-child {
  padding-right: 0;
}
@media screen and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-1-columns .menu-item--has-children > .link {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-1-columns .menu-item--has-children > .link {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}
.header__primary-nav__sub-menu-level-2-columns {
  display: none;
  flex-flow: column;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media screen and (max-width: 991px) {
  .header__primary-nav__sub-menu-level-2-columns {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    flex-flow: column;
    width: 100%;
    height: 100vh;
    padding: 1rem;
    background-color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .header__primary-nav__sub-menu-level-2-columns {
    display: flex;
  }
}
.header__primary-nav__sub-menu-level-2-columns li {
  position: relative;
  display: flex;
  max-width: 100%;
  padding-bottom: 0.5rem;
}
.header__secondary-nav {
  display: none;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header__secondary-nav {
    width: 100%;
    margin-top: 4.6875rem;
  }
}
@media screen and (min-width: 992px) {
  .header__secondary-nav {
    display: flex;
  }
}
.header__secondary-nav > ul {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none outside;
}
@media screen and (min-width: 992px) {
  .header__secondary-nav > ul {
    align-items: flex-start;
    padding: 0 0 0 1rem;
  }
}
@media screen and (max-width: 991px) {
  .header__secondary-nav > ul > li {
    padding-bottom: 1.5rem;
  }
  .header__secondary-nav > ul > li:last-child {
    padding-bottom: 0;
  }
}
.header__secondary-nav > ul > li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  color: inherit;
}
@media screen and (max-width: 1120px) and (min-width: 992px) {
  .header__secondary-nav > ul > li a {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
@media screen and (min-width: 992px) {
  .header__secondary-nav > ul > li a {
    padding: 0 0.75rem;
  }
}
.header__secondary-nav > ul > li a i {
  padding-right: 10px;
  font-size: 20px;
}
@media screen and (max-width: 1270px) {
  .header__secondary-nav > ul > li a span {
    display: none;
  }
}
.header__secondary-nav > ul > li a .just-icon {
  padding-right: 0;
}
.header__secondary-nav > ul > li a:focus, .header__secondary-nav > ul > li a:hover {
  text-decoration-color: transparent;
}
.header__secondary-nav > ul > li:last-child a {
  padding-right: 0;
}
.header__search {
  position: relative;
  display: none;
  margin: 0 -1rem;
}
.header__search input {
  width: 100%;
  padding: 1rem 2.5rem;
  color: #949494;
  background-color: #f9f9f9;
  border-color: transparent;
  border-radius: 0;
  box-shadow: 0 1px 0 #f3f3f3;
}
@media screen and (max-width: 991px) {
  .header__search input {
    padding: 1rem;
  }
}
.header__search button {
  position: absolute;
  top: 50%;
  right: 16px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
  .header__search button {
    right: 40px;
  }
}
.header__search button i {
  color: #949494;
}
.header__tertiary-nav {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 0 1rem;
}
.header__tertiary-nav > ul {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none outside;
}
@media screen and (min-width: 992px) {
  .header__tertiary-nav > ul {
    margin: 0 -8px;
  }
}
.header__tertiary-nav > ul > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 8px;
  color: inherit;
}
.header__tertiary-nav > ul > li a i {
  margin-right: 0.5rem;
  font-size: 1rem;
}
.header__tertiary-nav > ul > li a:focus, .header__tertiary-nav > ul > li a:hover {
  text-decoration-color: transparent;
}
.header__tertiary-nav > ul > li.menu-item--has-children {
  position: relative;
}
.header__tertiary-nav > ul > li.menu-item--has-children .link {
  justify-content: flex-start;
}
.header__tertiary-nav > ul > li > ul.open {
  display: flex;
}
.header__tertiary-nav__sub-menu-level-1 {
  position: fixed;
  z-index: 1;
  display: none;
  flex-flow: column;
  width: 100%;
  padding: 1rem;
  margin: 0;
  list-style: none outside;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .header__tertiary-nav__sub-menu-level-1 {
    top: 0;
    left: 0;
    z-index: 1;
    height: 100vh;
  }
}
@media screen and (min-width: 992px) {
  .header__tertiary-nav__sub-menu-level-1 {
    position: absolute;
    padding: 1.75rem 2.5rem;
    margin-top: calc(1.5625rem + 2px);
    margin-left: 1.25rem;
    box-shadow: 0 18px 28px rgba(9, 30, 66, 0.15), 0 0 1px rgba(9, 30, 66, 0.31);
  }
}
.header__tertiary-nav__sub-menu-level-1 > li {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.header__tertiary-nav__sub-menu-level-1 > li:not(.menu-item--sub-menu-heading) {
  justify-content: flex-start;
}
.header__tertiary-nav__sub-menu-level-1 > li a {
  padding: 0.75rem 0;
}
@media screen and (min-width: 992px) {
  .header__container--secondary {
    padding: 1.5625rem 0;
  }
}
.header__mobile-content {
  height: auto;
}
@media screen and (max-width: 991px) {
  .header--mobile-nav-open .header__mobile-content {
    height: 100vh;
    overflow-y: auto;
  }
  .header--mobile-nav-open .header__mobile-content .header__wrapper {
    flex-flow: column;
    padding: 0 0 1.5rem;
  }
  .header--mobile-nav-open .header__mobile-content .header__primary-nav,
  .header--mobile-nav-open .header__mobile-content .header__secondary-nav {
    display: flex;
  }
  .header--mobile-nav-open .header__mobile-content .header__primary-nav > ul,
  .header--mobile-nav-open .header__mobile-content .header__secondary-nav > ul {
    flex-flow: column;
    width: 100%;
  }
  .header--mobile-nav-open .header__mobile-content .header__search {
    display: flex;
  }
}
.header__burger-wrapper > ul {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none outside;
}
.header__burger-wrapper > ul > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 8px;
  color: inherit;
}
.header__burger {
  position: relative;
  width: 18px;
  height: 12px;
  margin-right: -5px;
}
.header__burger span {
  position: absolute;
  top: 4px;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 2px;
  margin-top: 0;
  background-color: #000;
  transition: all 0.1s ease-out;
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .header__burger span {
    margin-top: 0;
  }
}
.header__burger::before, .header__burger::after {
  position: absolute;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #000;
  transition: all 0.1s ease-out;
  transform: translate(-50%, -50%);
}
.header__burger::before {
  top: 0;
}
.header__burger::after {
  bottom: 0;
}
.header .menu-item span {
  display: flex;
}
.header .menu-item--has-children > .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header .menu-item--has-children > .link:not(.link--with-icon-left) i {
  margin-left: 1rem;
}
.header .menu-item--has-children > .link.js-open-corporate-flyout i {
  transition: all 0.1s ease-out;
}
.header .menu-item--has-children > .link.js-open-corporate-flyout.link--active i {
  transform: rotate(180deg);
}
@media screen and (max-width: 991px) {
  .header .menu-item--mobile-bold {
    font-weight: 700;
  }
}
.header .menu-item--button:nth-child(2) {
  margin-left: 1rem;
}
.header .menu-item--button .button:not(.button--secondary) {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .header .menu-item--button .button:not(.button--just-icon) {
    padding: 0.5rem 1.5rem;
    font-size: 0.6875rem;
    line-height: 0.75rem;
  }
}
.header .menu-item--button .button.button--just-icon i {
  right: 0;
}
.header .link--js-open-nav.active,
.header .js-open-flyout.active {
  color: #000;
}
.header .link--js-open-nav.active .header__burger span,
.header .js-open-flyout.active .header__burger span {
  opacity: 0;
}
.header .link--js-open-nav.active .header__burger::before,
.header .js-open-flyout.active .header__burger::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .link--js-open-nav.active .header__burger::after,
.header .js-open-flyout.active .header__burger::after {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header.dark .header__container--secondary {
  color: #fff;
  background-color: #000;
}
.header.dark .header__primary-nav__sub-menu-level-1,
.header.dark .header__primary-nav__sub-menu-level-2 {
  background-color: #000;
}
.header.dark .header__primary-nav__sub-menu-level-1 > li.menu-item--current a,
.header.dark .header__primary-nav__sub-menu-level-2 > li.menu-item--current a {
  color: var(--color-primary-a-100) !important;
}
.header.dark .link:hover {
  color: var(--color-primary-a-100) !important;
}
.header.dark .link:focus {
  color: var(--color-primary-a-100) !important;
}
@media screen and (min-width: 992px) {
  .header.dark .link:hover {
    color: var(--color-primary-a-100) !important;
  }
  .header.dark .link:focus {
    color: var(--color-primary-a-100) !important;
  }
  .header.dark .link:focus:hover {
    color: var(--color-primary-a-100) !important;
  }
}

@media screen and (min-width: 992px) {
  .header__primary-nav > ul > li.menu-item--has-children {
    display: list-item;
  }
}

.header-vts {
  position: sticky;
  top: -110px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  font-family: "Red Hat Display", sans-serif;
  background: #fff;
  z-index: 10000;
}
.header-vts * {
  box-sizing: border-box;
}

@media screen and (min-width: 615px) {
  .header-vts {
    top: 0;
  }
}
.header-vts a[href*="www.airvac.com"] {
  display: none;
}

.header-vts__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-vts__suggestions--empty {
  color: #949494;
  font-size: 17px;
  line-height: 24px;
  padding: 8px 8px 8px 40px;
  display: block;
}

.header-vts__search {
  flex-grow: 1;
  display: none;
}
.header-vts__search .autocomplete-suggestions {
  position: static;
  /* display: block !important; */
  box-shadow: none;
  max-width: 100%;
  border: none;
}
.header-vts__search .autocomplete-suggestion {
  font-size: 1rem;
  border-radius: 8px;
  padding: 12px 16px 12px 16px;
  margin-bottom: 0;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.55645 2.35355L14.7929 13.59L14.09 14.2929L2.85355 3.05645L2 2.20289V3.41V9.5H1V0.5H10V1.5H3.91H2.70289L3.55645 2.35355Z' fill='%23949494' stroke='%23949494'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
  .header-vts__search .autocomplete-suggestion {
    font-size: 17px;
  }
}
.header-vts__search .autocomplete-suggestion b {
  font-weight: 400;
  color: #949494;
}
.header-vts__search .autocomplete-suggestion:hover {
  background-color: #f3f3f3;
}

.header-vts__search-btn {
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-vts__logo {
  width: 100%;
  height: 110px;
  padding: 1rem;
  border-bottom: 1px solid #f3f3f3;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 615px) {
  .header-vts__logo {
    width: initial;
    border: none;
  }
}
@media screen and (min-width: 992px) {
  .header-vts__logo {
    padding: 1rem 1rem 1rem 0;
    width: 16.66666667%;
  }
}

.header-vts__logo-link {
  display: flex;
  flex-direction: column;
}

.header-vts__logo-brand {
  width: 120px;
  height: auto;
}

.header-vts__logo-text {
  width: 76px;
  height: auto;
}

.header-vts__dot {
  position: absolute;
  top: 1px;
  left: 17px;
  display: block;
  min-width: 12px;
  height: 12px;
  padding: 0 2px;
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 12px;
  color: #fff;
  text-align: center;
  background-color: #ff3b30;
  border-radius: 6px;
}

.header-vts__svg-wrapper {
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (min-width: 992px) {
  .header-vts__svg-wrapper {
    margin-right: 0.5rem;
  }
}
.header-vts__menu-btn {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 0.5rem;
}
@media screen and (min-width: 992px) {
  .header-vts__menu-btn {
    margin-left: 0;
  }
}
.header-vts__menu-btn:hover {
  background-color: #f3f3f3;
}

@media screen and (min-width: 992px) {
  .header-vts__menu-btn svg {
    margin-right: 0.5rem;
  }
}
.header-vts__nav-item {
  position: relative;
}

.header-vts__right {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.header-vts__right ul {
  display: flex;
  padding-left: 0;
  list-style-type: none;
}
.header-vts__right li {
  display: flex;
  align-items: center;
}
.header-vts__right a:not(.button--primary),
.header-vts__right button {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0.5rem 1rem;
  margin-right: 10px;
  margin-left: 10px;
  font-size: 0.875rem;
  color: #949494;
  text-decoration: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
.header-vts__right a.button--primary {
  margin-right: 10px;
  margin-left: 10px;
}
@media screen and (min-width: 992px) {
  .header-vts__right .header-vts__menu-btn {
    margin-right: 0;
  }
}
.header-vts__right a svg path,
.header-vts__right button svg path {
  fill: #00B9B4;
}
.header-vts__right a:not(.button--primary):hover,
.header-vts__right button:hover {
  text-decoration: none;
  background-color: #f3f3f3;
}

@media screen and (min-width: 615px) {
  .header-vts__right {
    width: initial;
  }
}
@media screen and (min-width: 992px) {
  .header-vts__right a:not(.button--primary),
  .header-vts__right button {
    margin-left: 0.5rem;
    flex-direction: row;
    color: #000;
    margin-left: 0;
    margin-right: 0.5rem;
  }
  .header-vts__right a.button--primary {
    margin-right: 0.5rem;
  }
}
@media screen and (min-width: 992px) {
  .header-vts__right a svg path,
  .header-vts__right button svg path {
    fill: #000;
  }
}
.header-vts__nav-item--open > a:not(.button--primary),
.header-vts__nav-item--open > button {
  background-color: #f3f3f3;
}

.header-vts__subnav-wrapper {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0.5rem;
  z-index: 2;
  min-width: 288px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 28px 0 rgba(9, 30, 66, 0.15);
}
@media screen and (min-width: 992px) {
  .header-vts__subnav-wrapper {
    left: 0;
  }
}

.header-vts__subnav-wrapper--left {
  left: initial;
  right: 0.5rem;
}

.header-vts__subnav-wrapper a:not(.button--primary),
.header-vts__subnav-wrapper button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
}
.header-vts__subnav-wrapper hr {
  border: none;
  border-top: 1px solid #e6e6e6;
}
.header-vts__subnav-wrapper > div {
  width: 100%;
  padding: 24px 8px 8px;
  border-radius: 8px;
  box-shadow: 0 0 1px 0 rgba(9, 30, 66, 0.31);
}
.header-vts__subnav-wrapper > div .header-vts__svg-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.header-vts__subnav-wrapper > div .header-vts__svg-wrapper svg {
  margin: 0;
}
.header-vts__subnav-wrapper > div .header-vts__svg-wrapper svg path {
  fill: #000;
}
.header-vts__subnav-wrapper > div a {
  width: 100%;
  margin-bottom: 0.5rem;
}
.header-vts__subnav-wrapper > div a.mb0 {
  margin-bottom: 0;
}

.header-vts__nav-item--open .header-vts__subnav-wrapper {
  display: flex;
}

.header-vts__subnav-title {
  padding-left: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.44px;
}

.header-vts__subnav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header-vts__subnav a {
  margin-left: 0;
}

.header-vts__logout {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 8px;
}
.header-vts__logout:hover {
  background-color: #f3f3f3;
}

.header-vts input:placeholder-shown {
  text-overflow: ellipsis;
}

input#header-search:focus::placeholder {
  color: transparent;
}

.header-vts__search-close {
  display: none;
}

input.header-vts__search-input {
  padding-left: 50px;
}

@media screen and (min-width: 992px) {
  .header-vts__search {
    padding-right: 2rem;
    display: block;
  }
  .header-vts__search .header-vts__search-input {
    box-sizing: border-box;
    width: 100%;
    padding-left: 48px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    background-color: #f3f3f3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_1983_12004)'%3E%3Cpath d='M14.71 14.5H15.2926L19.7832 18.9996L18.9996 19.7832L14.5 15.2926V14.71V14.5082L14.3599 14.3629L14.2786 14.2786L14.3629 14.3599L14.5082 14.5H14.71ZM13.7519 13.7519L13.4041 14.0508C12.3512 14.956 10.9857 15.5 9.5 15.5C6.18614 15.5 3.5 12.8139 3.5 9.5C3.5 6.18614 6.18614 3.5 9.5 3.5C12.8139 3.5 15.5 6.18614 15.5 9.5C15.5 10.9857 14.956 12.3512 14.0508 13.4041L13.7519 13.7519ZM4.5 9.5C4.5 12.2661 6.73386 14.5 9.5 14.5C12.2661 14.5 14.5 12.2661 14.5 9.5C14.5 6.73386 12.2661 4.5 9.5 4.5C6.73386 4.5 4.5 6.73386 4.5 9.5Z' fill='%23949494' stroke='%23949494'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1983_12004'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    border: 1px solid #f3f3f3;
    border-radius: 32px;
  }
  .header-vts__search .header-vts__search-input:hover {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 0px 1px 0px rgba(9, 30, 66, 0.31), 0px 3px 5px 0px rgba(9, 30, 66, 0.2);
    cursor: pointer;
  }
  .header-vts__search .header-vts__search-input .header-vts__search-input::placeholder {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #949494;
  }
  .header-vts__search input[type=text]::placeholder {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #949494;
  }
  .header-vts__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 5rem;
    padding-left: 5rem;
  }
  .header-vts__logo-brand {
    width: 160px;
    margin-bottom: 0.5rem;
  }
  .header-vts__logo-text {
    width: 99px;
  }
}
.header-vts__groups {
  background-color: #f9f9f9;
  padding: 1rem 1.5rem 1.5rem;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  border-top: 1px solid #e6e6e6;
  max-height: calc(100vh - 100px);
  overflow: auto;
}
@media screen and (min-width: 992px) {
  .header-vts__groups {
    width: 50%;
    padding-top: 1.5rem;
    border-top: none;
    border-bottom-right-radius: 2rem;
  }
}
.header-vts__groups h4 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}
.header-vts__groups ul {
  padding-left: 0;
  list-style-type: none;
}
@media screen and (min-width: 992px) {
  .header-vts__groups li {
    margin-bottom: 0.25rem;
  }
}

@media screen and (max-width: 991px) {
  .header-vts__search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    z-index: 101;
    background-color: #fff;
  }
  .header-vts__search.header-vts__search--open {
    display: block;
  }
  .header-vts__search-input {
    width: 100%;
    height: 4rem;
    padding-right: 3rem;
    padding-left: 3rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    color: #000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_1983_12004)'%3E%3Cpath d=' M14.71 14.5H15.2926L19.7832 18.9996L18.9996 19.7832L14.5 15.2926V14.71V14.5082L14.3599 14.3629L14.2786 14.2786L14.3629 14.3599L14.5082 14.5H14.71ZM13.7519 13.7519L13.4041 14.0508C12.3512 14.956 10.9857 15.5 9.5 15.5C6.18614 15.5 3.5 12.8139 3.5 9.5C3.5 6.18614 6.18614 3.5 9.5 3.5C12.8139 3.5 15.5 6.18614 15.5 9.5C15.5 10.9857 14.956 12.3512 14.0508 13.4041L13.7519 13.7519ZM4.5 9.5C4.5 12.2661 6.73386 14.5 9.5 14.5C12.2661 14.5 14.5 12.2661 14.5 9.5C14.5 6.73386 12.2661 4.5 9.5 4.5C6.73386 4.5 4.5 6.73386 4.5 9.5Z' fill=' %23949494' stroke=' %23949494'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=' clip0_1983_12004'%3E%3Crect width=' 24' height=' 24' fill=' white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    border: 1px solid #E6E6E6;
    border-radius: 2rem;
  }
  .header-vts__search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    margin: 0;
    top: 48px;
    right: 17px;
    transform: translateY(-50%);
    border-radius: 0 76px 76px 0;
    height: 60px;
    width: 46px;
    background: #fff;
    border: none;
    cursor: pointer;
  }
  .header-vts__search-close:hover {
    background-color: #fff;
  }
  .header-vts__search-inner {
    width: 100%;
    box-shadow: 0px 0px 1px 0px rgba(9, 30, 66, 0.31), 0px 3px 5px 0px rgba(9, 30, 66, 0.2);
    border-radius: 32px 32px;
  }
}
@media screen and (min-width: 992px) {
  .header-vts__search-inner {
    position: relative;
  }
  .header-vts .header-vts__nav-search {
    display: none;
  }
}
.header-vts input:placeholder-shown {
  text-overflow: ellipsis;
}

input.header-vts__search-input:focus {
  border: 1px solid #e6e6e6;
}

.header-vts__nav-item--open .search-modal {
  display: block;
}

.header-vts__autocomplete {
  display: none;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  margin-top: -8px;
  border-top: 1px solid #e6e6e6;
}
@media screen and (min-width: 992px) {
  .header-vts__autocomplete {
    position: absolute;
    min-height: 256px;
  }
}

.header-vts__suggestions {
  padding: 0.5rem;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #949494;
}
@media screen and (min-width: 992px) {
  .header-vts__suggestions {
    width: 50%;
  }
}

.header-vts__search--active .header-vts__search-input {
  border-bottom: 1px solid #e6e6e6;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #fff;
}
.header-vts__search--active .header-vts__search-inner {
  border-radius: 32px 32px 8px 8px;
}
.header-vts__search--active .header-vts__autocomplete {
  display: block;
}
@media screen and (min-width: 992px) {
  .header-vts__search--active .header-vts__autocomplete {
    display: flex;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    box-shadow: 0px 3px 5px 0px rgba(9, 30, 66, 0.2);
  }
}

@media screen and (min-width: 992px) {
  .header-vts__search--active .header-vts__search-input {
    border: 1px solid #e6e6e6;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 1px 0px rgba(9, 30, 66, 0.31), 0px 3px 5px 0px rgba(9, 30, 66, 0.2);
  }
}
body:not(.tabUser) .header-vts *:focus-visible {
  outline: none;
}

.hidden {
  display: none;
}

.paragraph,
.tag,
label.control-label,
.footer__title,
.footer__copy,
.slider--gallery figure figcaption,
.tab-navigation__title,
.tab-navigation__list ul li span,
.vts__button,
.button,
form .form-navigation .next:not(.submit) .btn,
.file-group label,
.form-navigation .submit button,
body {
  font-family: "Red Hat Display", sans-serif;
}

.h1,
.brand-cards__header,
.h2,
.news__headline,
.header__primary-nav__sub-menu-level-1-columns > li.menu-item--parent,
.h3,
.fab .button,
.fab .form-navigation .submit button,
.form-navigation .submit .fab button,
.fab .file-group label,
.file-group .fab label,
.fab form .form-navigation .next:not(.submit) .btn,
form .form-navigation .next:not(.submit) .fab .btn,
.search__flyout input,
.navigation__flyout__main-menu > li a,
.navigation__flyout__level2-menu .js-close-submenu,
.navigation__flyout__level3-menu .js-close-submenu,
.slider-nav,
.brand-cards__subheader {
  font-family: ibrand, sans-serif;
}

div.contact-ribbon {
  background-color: var(--color-primary-a-100);
}

div.contact-teaser a {
  color: var(--color-primary-a-100);
}

.title,
.h1,
.h2,
.h3 {
  font-family: ibrand, sans-serif;
}

.button {
  font-family: "Red Hat Display", sans-serif;
}

.brand-cards__header,
.brand-cards__subheader {
  font-family: ibrand, sans-serif;
}

.header_primary-nav_sub-menu-level-1-columns > li.menu-item--parent {
  font-family: ibrand, sans-serif;
}

.product-detail {
  box-sizing: border-box;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.product-detail * {
  box-sizing: border-box;
}
.product-detail__name {
  margin-bottom: 0;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.14px;
}
@media screen and (min-width: 992px) {
  .product-detail__name {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .product-detail__name {
    font-size: 46px;
    line-height: 54px;
  }
}
.product-detail .product-detail__variant {
  margin-bottom: 1.5rem;
  font-family: "Lubalin Graph Std";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: -0.072px;
}
@media screen and (min-width: 992px) {
  .product-detail .product-detail__variant {
    margin-bottom: 0;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }
}
.product-detail__related-product {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #000;
  font-size: 17px;
  height: 50px;
  padding: 1rem 0;
}
.product-detail__related-product-id {
  color: var(--color-primary-a-100);
  width: 30%;
}
.product-detail__related-product-name {
  max-width: 70%;
}
.product-detail__related-product-link {
  display: flex;
  margin-top: 0;
  position: relative;
  color: black;
  background-color: #f3f3f3;
  padding: 0;
  width: 40px;
  height: 40px;
  align-self: center;
  margin-left: auto;
  border-radius: 50%;
  justify-content: center;
}
.product-detail__related-product-link .material-icons {
  align-self: center;
}
.product-detail__related-products {
  margin-bottom: 20px;
}
.product-detail__related-products-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-detail__top {
  display: grid;
}
@media screen and (min-width: 992px) {
  .product-detail__top {
    grid-gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "image names" "image desc";
  }
}
.product-detail__names {
  order: -1;
}
@media screen and (min-width: 992px) {
  .product-detail__names {
    grid-area: names;
  }
}
.product-detail .row {
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex-wrap: wrap;
}
.product-detail__image-half {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .product-detail__image-half {
    grid-area: image;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
  }
}
.product-detail__image {
  width: 100%;
  max-width: 618px;
  max-height: 466px;
  height: auto;
  object-fit: contain;
}
.product-detail__details {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 992px) {
  .product-detail__details {
    width: 50%;
    max-width: 50%;
    grid-area: desc;
  }
}
.product-detail__description {
  font-family: "Lubalin Graph Std";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.04px;
}
@media screen and (min-width: 992px) {
  .product-detail__description {
    margin-bottom: 0;
  }
}
.product-detail__price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 992px) {
  .product-detail__price-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.product-detail__price {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .product-detail__price {
    margin-bottom: 0;
  }
}
.product-detail__cart-btn {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
  font-family: "Roboto Slab";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  color: #fff;
  background-color: var(--color-primary-a-100);
  border: none;
  border-radius: 24px;
  cursor: pointer;
}
.product-detail__parts {
  padding-top: 5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .product-detail__parts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 2.5rem;
  }
}
.product-detail__parts-title {
  font-family: "Lubalin Graph Std";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.072px;
}
.product-detail__parts-description {
  font-family: "Roboto Slab";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.product-detail .cart__table {
  width: 100%;
  max-width: 100%;
  font-size: 1.0625rem;
}
.product-detail .cart__table th {
  padding-top: 1rem;
  padding-bottom: 1rem;
  white-space: nowrap;
  border-bottom: 2px solid #000;
}
.product-detail .cart__table th span {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.product-detail .cart__table td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 992px) {
  .product-detail .cart__table td {
    vertical-align: middle;
  }
}
.product-detail .cart__table tr th:last-child {
  padding-right: 0;
  text-align: left;
}
.product-detail .cart__table tr td:last-child {
  text-align: right;
}
@media screen and (max-width: 991px) {
  .product-detail .cart__table tr td:last-child {
    width: 100%;
  }
}
.product-detail .cart__table td:nth-of-type(3),
.product-detail .cart__table td:nth-of-type(4),
.product-detail .cart__table td:nth-of-type(5) {
  vertical-align: middle;
}
.product-detail .cart__table .checkout__sum {
  font-weight: 700;
  border: none;
}
.product-detail .cart__table .checkout__sum td {
  padding-right: 0;
  padding-bottom: 0;
}
.product-detail .cart__table .checkout__sum span {
  box-sizing: content-box;
  width: 140px;
  max-width: 200px;
  padding-right: 8px;
  font-weight: 400;
  text-align: left;
}
.product-detail .cart__table .cart__item-actions {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .product-detail .cart__table .cart__item-actions {
    display: block;
    white-space: nowrap;
  }
}
.product-detail .cart__table .cart__quantity {
  width: 104px;
  padding-top: 11px;
  margin-top: 1rem;
  padding-bottom: 11px;
  text-align: center;
  background-color: #f3f3f3;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}
@media screen and (min-width: 992px) {
  .product-detail .cart__table .cart__quantity {
    width: 56px;
    margin-top: 0;
    margin-right: 1rem;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
@media screen and (max-width: 991px) {
  .product-detail .cart__table {
    min-width: initial;
    font-size: 1rem;
    /* stylelint-disable selector-no-qualifying-type */
  }
  .product-detail .cart__table thead {
    display: none;
  }
  .product-detail .cart__table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    margin-bottom: 8px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
  }
  .product-detail .cart__table .checkout__sum td {
    padding-right: 0;
  }
  .product-detail .cart__table .checkout__sum span {
    box-sizing: content-box;
    width: 140px;
    max-width: 200px;
    padding-right: 8px;
    font-weight: 400;
    text-align: left;
  }
  .product-detail .cart__table td {
    display: flex;
    padding: 0;
    text-align: left;
    border: none;
  }
  .product-detail .cart__table td[data-title]::before {
    display: inline-block;
    flex-shrink: 0;
    width: 140px;
    max-width: 200px;
    padding-right: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: left;
    content: attr(data-title);
  }
}

body {
  margin: 0 auto !important;
  /* Lightbox wants to overwrite margin-right */
}

.fslightbox-source {
  max-height: 75vh;
  width: auto !important;
}

.fslightbox-toolbar div:first-child {
  display: none;
}

.products {
  background-color: #f9f9f9;
}
.products__container {
  margin-block-end: 1rem;
}
.products__container-header {
  padding-inline: 0.5rem;
}
.products * {
  box-sizing: border-box;
}
.products .container-fluid {
  padding-right: 1rem;
  padding-left: 1rem;
}
.products .grid__row {
  margin: 0 -0.5rem;
}
.products .grid__item {
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

.products-filter {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: auto;
  background-color: #fff;
}
.products-filter__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.products-filter__group .select-wrapper {
  display: flex;
  justify-content: space-between;
}
.products-filter__group .select-wrapper.hidden {
  display: none;
}
.products-filter__wrapper {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
}
.products-filter * {
  flex-shrink: 0;
}
.products-filter__options {
  display: flex;
}
.products-filter__label {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 1.375rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.3;
  transform: translateY(6px);
}
.products-filter__active {
  color: #000;
  opacity: 1;
}
.products-filter__divider {
  display: block;
  width: 1px;
  height: 40px;
  margin-right: 1rem;
  background-color: #e6e6e6;
}
.products-filter input:checked + label {
  opacity: 1;
}
.products-filter__select {
  width: 180px;
  height: 40px;
  padding: 8px;
  color: #000;
  border-color: #e6e6e6;
  border-radius: 8px;
}
@media screen and (min-width: 400px) {
  .products-filter__select {
    width: 20vw;
    min-width: 205px;
    max-width: 344px;
  }
}
.products-filter__select-label {
  align-content: center;
  margin-right: 1rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.products-filter__layouts {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .products-filter__layouts {
    display: none;
  }
}
.products-filter__layout-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.products-filter__layout-wrapper label {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.04px;
}
.products-filter__layout-wrapper label span {
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .products-filter__divider {
    margin-right: 2.5rem;
    margin-left: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .products-filter {
    overflow: visible;
  }
  .products-filter__options {
    position: relative;
    flex-direction: column;
    width: 100%;
  }
  .products-filter .select-wrapper {
    display: inline-flex;
    align-items: center;
    width: initial;
    max-width: 100%;
    margin-bottom: 48px;
  }
  .products-filter__select {
    flex-grow: 1;
  }
  .products-filter__divider {
    position: absolute;
    top: 64px;
    left: -20px;
    display: block;
    width: calc(100% + 36px);
    height: 1px;
    margin-right: 0;
    background-color: #e6e6e6;
  }
}
@media screen and (min-width: 992px) {
  .products-filter {
    padding-top: 2.5rem;
    padding-right: 4rem;
    padding-bottom: 2.5rem;
    padding-left: 4rem;
  }
  .products-filter__divider {
    margin-right: 2.5rem;
  }
  .products-filter__layout-wrapper label {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}

.products-list__item-wrapper {
  box-sizing: border-box;
  border-radius: 0.5rem;
  box-shadow: 0 0 1px 0 rgba(9, 30, 66, 0.31);
}

.products-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 80px;
}
.products-list__grid-item {
  width: 100%;
}
.products-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 5px 0 rgba(9, 30, 66, 0.2);
}
.products-list__item-left {
  display: flex;
  align-items: center;
  width: 70%;
}
.products-list__item-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-right: 1.5rem;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .products-list__item-badges {
    min-width: 200px;
  }
}
.products-list__item-badge {
  display: block;
  align-items: center;
  max-width: 100%;
  height: 22px;
  padding: 1px 6px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: default;
  border: 1px solid #000;
  border-radius: 20px;
}
.products-list__item-badge--black {
  margin-bottom: 2px;
  color: #fff;
  background-color: #000;
}
.products-list__item-badge--white {
  color: #949494;
  background-color: transparent;
  border-color: #949494;
}
.products-list__item-badge--grey {
  color: #949494;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.products-list__item-badge--num {
  min-width: 30px;
  padding-inline: 10px;
}
.products-list__item-badge-wrapper {
  display: flex;
  gap: 8px;
  max-width: 100%;
}
.products-list.products-list__list-layout .products__container {
  margin-block-end: 2rem;
}
.products-list.products-list__list-layout .products-list__productname-wrapper {
  min-width: 50%;
  max-width: 300px;
  margin-right: 24px;
}
@media screen and (min-width: 992px) {
  .products-list.products-list__list-layout .products-list__productname-wrapper {
    padding-left: 1rem;
  }
}
.products-list.products-list__grid-layout.products-list__grouped {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.products-list.products-list__grid-layout.products-list__grouped .products__container-content {
  display: flex;
  flex-wrap: wrap;
}
.products-list__productname {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.products-list__articlenumber {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #949494;
}
.products-list__detail-link {
  margin-right: 1rem;
  color: #000;
  text-decoration: none;
}
.products-list__cart-button {
  display: inline-flex;
  align-items: center;
  padding: 11px 23px;
  font-size: 17px;
  line-height: 24px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 40px;
}
.products-list__cart-button:hover {
  background-color: #f9f9f9;
}
.products-list__cart-button svg {
  margin-left: 0.5rem;
}
.products-list .products-list__item {
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 1rem;
}
.products-list .products-list__item > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .products-list.products-list__list-layout .products-list__item > div {
    flex-direction: row;
  }
}
.products-list .products-list__item-left {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.products-list .products-list__item-badges {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 100%;
  margin-right: 2px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .products-list.products-list__list-layout .products-list__item-badges {
    width: 30%;
  }
}
.products-list .products-list__price {
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
.products-list .products-list__item-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .products-list__grid-item {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    margin-bottom: 1rem;
  }
  .products-list .products-list__item-wrapper {
    flex-basis: 100%;
    flex-grow: 0;
    max-width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .products-list {
    padding-top: 2.5rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .products-list__grid-item {
    width: 33.33%;
    min-width: 33.33%;
    max-width: 33.33%;
  }
  .products-list__productname {
    margin-top: 0;
  }
  .products-list .products-list__list-layout .product-list__productname {
    width: 300px;
    margin-top: 0;
  }
  .products-list__articlenumber {
    margin-top: 0;
  }
  .products-list__item-badges {
    align-self: flex-start;
  }
  .products-list.products-list__list-layout {
    display: block;
    flex-wrap: wrap;
  }
  .products-list.products-list__list-layout .products-list__grid-item {
    width: 100%;
    max-width: 100%;
  }
  .products-list.products-list__list-layout .products-list__grid-item > div {
    width: 100%;
    max-width: 100%;
  }
  .products-list.products-list__list-layout .products-list__item-left {
    flex-direction: row;
    flex-shrink: 0;
    width: 70%;
    max-width: calc(100% - 220px);
  }
  .products-list.products-list__list-layout .products-list__item > div {
    display: flex;
  }
  .products-list.products-list__list-layout .products-list__item {
    padding: 2.5rem;
  }
  .products-list.products-list__list-layout .products-list__item-right {
    justify-content: flex-end;
  }
  .products-list.products-list__list-layout .products-list__price {
    align-self: center;
    margin-bottom: 0;
  }
}

.vts.container-fluid:has(.products) {
  padding-right: 0;
  padding-left: 0;
}
.vts.container-fluid:has(.products) .vts__content {
  margin-top: 0;
}

@media screen and (min-width: 992px) {
  .section--default:has(.products) {
    padding-right: 0;
    padding-left: 0;
  }
}

.tooltip {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 2;
  width: 188px;
  padding: 0.5rem;
  font-size: 12px;
  line-height: 17px;
  color: #fff;
  text-transform: none;
  white-space: normal;
  pointer-events: none;
  background-color: #000;
  border-radius: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}
.tooltip::before {
  position: absolute;
  top: -19px;
  left: 50%;
  content: "";
  border-color: transparent transparent #000 transparent;
  border-style: solid;
  border-width: 10px;
  transform: translateX(-50%);
}

.allow-tooltip:has(.tooltip),
.cart__product-group:has(.tooltip) {
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: visible;
}
.allow-tooltip:has(.tooltip):hover,
.cart__product-group:has(.tooltip):hover {
  color: #949494;
  border-color: #949494;
}
.allow-tooltip:has(.tooltip):hover .tooltip,
.cart__product-group:has(.tooltip):hover .tooltip {
  opacity: 1;
}

@media screen and (min-width: 992px) {
  .frame-type-aqseptence_base_text > .container-fluid > .section--default {
    padding-inline: 0;
  }
}