.a11y {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 9990;
  transform: translateY(-50%);
  font-family: var(--ff);
}

.a11y-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 60, 60, 0.18);
  transition: 0.15s ease;
}
.a11y-toggle .icon {
  width: 24px;
  height: 24px;
}
.a11y-toggle:hover {
  background: var(--brand-dark);
  width: 50px;
}
.a11y-toggle:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.a11y-panel {
  position: absolute;
  top: 50%;
  right: 52px;
  transform: translateY(-50%);
  width: 260px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(15, 60, 60, 0.16);
}
.a11y-panel[hidden] {
  display: none;
}

.a11y-title {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.a11y-list {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.a11y-list li + li {
  margin-top: 6px;
}

.a11y-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.a11y-option .icon {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--brand);
}
.a11y-option > span:first-of-type {
  flex: 1 1 auto;
}
.a11y-option:hover {
  border-color: var(--brand);
}
.a11y-option:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}
.a11y-option[aria-pressed=true] {
  border-color: var(--brand);
  background: var(--bg-soft);
  color: var(--brand);
}

.a11y-state {
  flex: none;
  width: 22px;
  height: 14px;
  border-radius: 20px;
  background: var(--line);
  position: relative;
}
.a11y-state::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transition: 0.15s ease;
}

.a11y-option[aria-pressed=true] .a11y-state {
  background: var(--brand);
}
.a11y-option[aria-pressed=true] .a11y-state::after {
  left: 10px;
}

.a11y-reset {
  width: 100%;
  padding: 8px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
}
.a11y-reset:hover {
  color: var(--brand);
}

@media (max-width: 560px) {
  .a11y-panel {
    right: 46px;
    width: calc(100vw - 70px);
    max-width: 260px;
  }
}
@media print {
  .a11y {
    display: none;
  }
}
html.a11y-text body {
  zoom: 1.18;
}

html.a11y-readable {
  --ff: system-ui, "Segoe UI", Arial, sans-serif;
  --ff-head: system-ui, "Segoe UI", Arial, sans-serif;
}
html.a11y-readable body {
  letter-spacing: 0.02em;
  line-height: 1.75;
}

html.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

html.a11y-dark {
  --ink: #f1f5f6;
  --muted: #b3c0c4;
  --line: #2c3a3f;
  --bg: #0f1417;
  --bg-soft: #171f22;
  --brand: #35d2d6;
  --brand-dark: #62e2e5;
  --brand-darker: #101a1d;
  --accent: #ff7a80;
  --star: #ffc55c;
  --note-bg: #1f1a10;
  --note-line: #f0a800;
}
html.a11y-dark body {
  background: #0f1417;
  color: #f1f5f6;
}
html.a11y-dark .topbar {
  background: #0f1417;
}
html.a11y-dark .header,
html.a11y-dark .nav,
html.a11y-dark .footer,
html.a11y-dark .drop,
html.a11y-dark .mega,
html.a11y-dark .rail,
html.a11y-dark .rail-panel,
html.a11y-dark .dropdown-menu,
html.a11y-dark .nav-mobile-panel,
html.a11y-dark form.search input,
html.a11y-dark .cm-flyout,
html.a11y-dark .cat-list,
html.a11y-dark .cat-list .cm-item > a,
html.a11y-dark .rail-panel .mega-col,
html.a11y-dark .rail-panel .mega-col > li > a,
html.a11y-dark .rail-panel .mega-group > a,
html.a11y-dark .rail-panel .mega-sub a,
html.a11y-dark .hero-banner,
html.a11y-dark .raty-pre,
html.a11y-dark .raty-points li,
html.a11y-dark .stock-out,
html.a11y-dark .product,
html.a11y-dark .cat-card,
html.a11y-dark .term-accordion,
html.a11y-dark .term-acc,
html.a11y-dark .term-description,
html.a11y-dark .nfz-box,
html.a11y-dark .raty-box,
html.a11y-dark .raty-calc,
html.a11y-dark .tp-main,
html.a11y-dark .tp-form,
html.a11y-dark .hf-usp,
html.a11y-dark .hf-form,
html.a11y-dark .tile-copy,
html.a11y-dark .ku-card,
html.a11y-dark .krok,
html.a11y-dark .post-card,
html.a11y-dark .post-navigation a,
html.a11y-dark .side-box,
html.a11y-dark .related-card,
html.a11y-dark .booking-modal,
html.a11y-dark .checker-copy .wpcf7,
html.a11y-dark .wcpa_type_content .wcpa_field,
html.a11y-dark .a11y-panel,
html.a11y-dark .a11y-option,
html.a11y-dark .a11y-reset {
  background: #171f22;
  color: #f1f5f6;
}
html.a11y-dark .woocommerce table.shop_table,
html.a11y-dark .woocommerce .cart_totals,
html.a11y-dark .woocommerce-billing-fields,
html.a11y-dark .woocommerce-shipping-fields,
html.a11y-dark .woocommerce-additional-fields,
html.a11y-dark .woocommerce-checkout #order_review,
html.a11y-dark .woocommerce-checkout #payment,
html.a11y-dark .woocommerce-checkout #payment ul.payment_methods li,
html.a11y-dark .woocommerce-checkout #payment div.payment_box,
html.a11y-dark .woocommerce-MyAccount-navigation,
html.a11y-dark .woocommerce-MyAccount-content,
html.a11y-dark .woocommerce-Address,
html.a11y-dark .woocommerce-order,
html.a11y-dark .subcat-card,
html.a11y-dark .kontakt-form,
html.a11y-dark .qty .qty-step {
  background: #171f22;
  color: #f1f5f6;
}
html.a11y-dark .por-table {
  background: #0f1417;
}
html.a11y-dark .por-table thead th,
html.a11y-dark .por-table thead td {
  background: var(--brand);
  color: #04191a;
}
@media (max-width: 767px) {
  html.a11y-dark .por-table tbody tr {
    background: #0f1417;
  }
  html.a11y-dark .por-table tbody th,
  html.a11y-dark .por-table tbody tr:nth-child(even) th {
    background: var(--brand);
    color: #04191a;
  }
}
html.a11y-dark .hp-eyebrow,
html.a11y-dark .post-cats a {
  background: #0f1417;
  border: 1px solid var(--brand);
  color: var(--brand);
}
html.a11y-dark .post-cats a:hover {
  background: var(--brand);
  color: #04191a;
}
html.a11y-dark .post-card:hover,
html.a11y-dark .post-navigation a:hover,
html.a11y-dark .related-card:hover,
html.a11y-dark .booking-modal {
  border-color: var(--brand);
}
html.a11y-dark .booking-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
}
html.a11y-dark .booking-close {
  background: #0f1417;
  border: 1px solid var(--line);
  color: #f1f5f6;
}
html.a11y-dark .booking-close:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #04191a;
}
html.a11y-dark blockquote > strong:first-child,
html.a11y-dark blockquote > p:first-child > strong:first-child {
  color: var(--brand-dark);
}
html.a11y-dark .product-page form.cart button.single_add_to_cart_button {
  color: #04191a;
}
html.a11y-dark .product-page .wcpa_form_outer .wcpa_radio label {
  background: #171f22;
  color: #f1f5f6;
}
html.a11y-dark .product-page .wcpa_form_outer .wcpa_radio.wcpa_selected label {
  background: var(--brand);
  color: #04191a;
  box-shadow: none;
}
html.a11y-dark .product-page form.cart .swatch-label {
  background: #171f22;
  color: #f1f5f6;
}
html.a11y-dark .product-page form.cart .swatch-label.is-selected {
  background: var(--brand);
  color: #04191a;
}
html.a11y-dark .product-page form.cart .swatch-color {
  box-shadow: inset 0 0 0 2px #171f22;
}
html.a11y-dark .product-page form.cart .swatch-color.is-selected {
  box-shadow: inset 0 0 0 2px #171f22, 0 0 0 2px var(--brand);
}
html.a11y-dark .nfz-codes a[data-tip]::after {
  background: #171f22;
  border: 1px solid var(--line);
  color: #f1f5f6;
}
html.a11y-dark .nfz-codes a[data-tip]::before {
  border-top-color: var(--line);
}
html.a11y-dark .woocommerce-message,
html.a11y-dark .woocommerce-info,
html.a11y-dark .woocommerce-error {
  background: #171f22;
  border-color: var(--line);
  color: #f1f5f6;
}
html.a11y-dark .woocommerce-error {
  border-color: var(--accent);
}
html.a11y-dark input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]),
html.a11y-dark select,
html.a11y-dark textarea,
html.a11y-dark .select2-container .select2-selection,
html.a11y-dark .select2-container .select2-selection__rendered,
html.a11y-dark .select2-dropdown {
  background-color: #171f22;
  color: #f1f5f6;
}
html.a11y-dark .woocommerce a.button:not(.alt):not(.checkout-button),
html.a11y-dark .woocommerce button.button:not(.alt),
html.a11y-dark .woocommerce input.button:not(.alt) {
  background: #171f22;
  border: 1px solid var(--line);
  color: #f1f5f6;
}
html.a11y-dark .woocommerce a.button:not(.alt):not(.checkout-button):hover,
html.a11y-dark .woocommerce button.button:not(.alt):hover,
html.a11y-dark .woocommerce input.button:not(.alt):hover {
  background: #171f22;
  border-color: var(--brand);
  color: var(--brand);
}
html.a11y-dark .btn-light,
html.a11y-dark .btn-light:hover {
  background: #fff;
  color: #0f1417;
}
html.a11y-dark .rail-item:hover > a,
html.a11y-dark .rail-item:focus-within > a {
  background: #0f1417;
}
html.a11y-dark .product .thumb,
html.a11y-dark .cat-card .thumb,
html.a11y-dark .lo-logo,
html.a11y-dark .gallery .main,
html.a11y-dark .gallery .thumbs .t {
  background: #fff;
}
html.a11y-dark .lo-logo span {
  color: #0f1417;
}
html.a11y-dark img.hero-photo {
  mix-blend-mode: normal;
}
html.a11y-dark .nav-cats,
html.a11y-dark .cat-list-head,
html.a11y-dark .trust-band,
html.a11y-dark .trust-item strong,
html.a11y-dark .trust-item span,
html.a11y-dark .trust-band .icon,
html.a11y-dark .newsletter,
html.a11y-dark .newsletter h2,
html.a11y-dark .newsletter p,
html.a11y-dark .newsletter label,
html.a11y-dark .newsletter .consent,
html.a11y-dark .newsletter a,
html.a11y-dark .tile-label,
html.a11y-dark .btn-primary,
html.a11y-dark .badge,
html.a11y-dark .a11y-toggle,
html.a11y-dark .a11y-toggle .icon,
html.a11y-dark .wpcf7-submit,
html.a11y-dark .kontakt-form input[type=submit],
html.a11y-dark .kontakt-form button[type=submit],
html.a11y-dark a.checkout-button,
html.a11y-dark button.single_add_to_cart_button,
html.a11y-dark .woocommerce a.button.alt,
html.a11y-dark .woocommerce button.button.alt,
html.a11y-dark .woocommerce-MyAccount-navigation .is-active a,
html.a11y-dark .entry-content .woocommerce-Button,
html.a11y-dark .entry-content .woocommerce-button,
html.a11y-dark .entry-content a.button,
html.a11y-dark .entry-content button.button,
html.a11y-dark .entry-content input.button,
html.a11y-dark .product-bottom-block a[role=button],
html.a11y-dark .add-cart,
html.a11y-dark .btn-outline:hover,
html.a11y-dark .pagination .current,
html.a11y-dark .krok-num,
html.a11y-dark .term-acc[open] > summary::before,
html.a11y-dark .nfz-btn,
html.a11y-dark .nfz-btn:hover,
html.a11y-dark .nfz-btn .icon {
  color: #04191a;
}

html.a11y-contrast {
  --ink: #fff;
  --muted: #ededed;
  --line: #7a7a7a;
  --bg: #000;
  --bg-soft: #121212;
  --brand: #ffdd00;
  --brand-dark: #fff06b;
  --brand-darker: #000;
  --accent: #ffdd00;
  --star: #ffdd00;
  --note-bg: #121212;
  --note-line: #ffdd00;
  --shadow: none;
  --shadow-sm: none;
}
html.a11y-contrast body {
  background: #000;
  color: #fff;
}
html.a11y-contrast .topbar {
  background: #000;
}
html.a11y-contrast .header,
html.a11y-contrast .nav,
html.a11y-contrast .footer,
html.a11y-contrast .drop,
html.a11y-contrast .mega,
html.a11y-contrast .rail,
html.a11y-contrast .rail-panel,
html.a11y-contrast .dropdown-menu,
html.a11y-contrast .nav-mobile-panel,
html.a11y-contrast form.search input,
html.a11y-contrast .cm-flyout,
html.a11y-contrast .cat-list,
html.a11y-contrast .cat-list .cm-item > a,
html.a11y-contrast .rail-panel .mega-col,
html.a11y-contrast .rail-panel .mega-col > li > a,
html.a11y-contrast .rail-panel .mega-group > a,
html.a11y-contrast .rail-panel .mega-sub a,
html.a11y-contrast .hero-banner,
html.a11y-contrast .raty-pre,
html.a11y-contrast .raty-points li,
html.a11y-contrast .stock-out,
html.a11y-contrast .product,
html.a11y-contrast .cat-card,
html.a11y-contrast .term-accordion,
html.a11y-contrast .term-acc,
html.a11y-contrast .term-description,
html.a11y-contrast .nfz-box,
html.a11y-contrast .raty-box,
html.a11y-contrast .raty-calc,
html.a11y-contrast .tp-main,
html.a11y-contrast .tp-form,
html.a11y-contrast .hf-usp,
html.a11y-contrast .hf-form,
html.a11y-contrast .tile-copy,
html.a11y-contrast .ku-card,
html.a11y-contrast .krok,
html.a11y-contrast .post-card,
html.a11y-contrast .post-navigation a,
html.a11y-contrast .side-box,
html.a11y-contrast .related-card,
html.a11y-contrast .booking-modal,
html.a11y-contrast .checker-copy .wpcf7,
html.a11y-contrast .wcpa_type_content .wcpa_field,
html.a11y-contrast .a11y-panel,
html.a11y-contrast .a11y-option,
html.a11y-contrast .a11y-reset {
  background: #000;
  color: #fff;
}
html.a11y-contrast .woocommerce table.shop_table,
html.a11y-contrast .woocommerce .cart_totals,
html.a11y-contrast .woocommerce-billing-fields,
html.a11y-contrast .woocommerce-shipping-fields,
html.a11y-contrast .woocommerce-additional-fields,
html.a11y-contrast .woocommerce-checkout #order_review,
html.a11y-contrast .woocommerce-checkout #payment,
html.a11y-contrast .woocommerce-checkout #payment ul.payment_methods li,
html.a11y-contrast .woocommerce-checkout #payment div.payment_box,
html.a11y-contrast .woocommerce-MyAccount-navigation,
html.a11y-contrast .woocommerce-MyAccount-content,
html.a11y-contrast .woocommerce-Address,
html.a11y-contrast .woocommerce-order,
html.a11y-contrast .subcat-card,
html.a11y-contrast .kontakt-form,
html.a11y-contrast .qty .qty-step {
  background: #000;
  color: #fff;
}
html.a11y-contrast .por-table {
  background: #000;
}
html.a11y-contrast .por-table thead th,
html.a11y-contrast .por-table thead td {
  background: var(--brand);
  color: #000;
}
@media (max-width: 767px) {
  html.a11y-contrast .por-table tbody tr {
    background: #000;
  }
  html.a11y-contrast .por-table tbody th,
  html.a11y-contrast .por-table tbody tr:nth-child(even) th {
    background: var(--brand);
    color: #000;
  }
}
html.a11y-contrast .hp-eyebrow,
html.a11y-contrast .post-cats a {
  background: #000;
  border: 1px solid var(--brand);
  color: var(--brand);
}
html.a11y-contrast .post-cats a:hover {
  background: var(--brand);
  color: #000;
}
html.a11y-contrast .post-card:hover,
html.a11y-contrast .post-navigation a:hover,
html.a11y-contrast .related-card:hover,
html.a11y-contrast .booking-modal {
  border-color: var(--brand);
}
html.a11y-contrast .booking-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
}
html.a11y-contrast .booking-close {
  background: #000;
  border: 1px solid var(--line);
  color: #fff;
}
html.a11y-contrast .booking-close:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #000;
}
html.a11y-contrast blockquote > strong:first-child,
html.a11y-contrast blockquote > p:first-child > strong:first-child {
  color: var(--brand-dark);
}
html.a11y-contrast .product-page form.cart button.single_add_to_cart_button {
  color: #000;
}
html.a11y-contrast .product-page .wcpa_form_outer .wcpa_radio label {
  background: #000;
  color: #fff;
}
html.a11y-contrast .product-page .wcpa_form_outer .wcpa_radio.wcpa_selected label {
  background: var(--brand);
  color: #000;
  box-shadow: none;
}
html.a11y-contrast .product-page form.cart .swatch-label {
  background: #000;
  color: #fff;
}
html.a11y-contrast .product-page form.cart .swatch-label.is-selected {
  background: var(--brand);
  color: #000;
}
html.a11y-contrast .product-page form.cart .swatch-color {
  box-shadow: inset 0 0 0 2px #000;
}
html.a11y-contrast .product-page form.cart .swatch-color.is-selected {
  box-shadow: inset 0 0 0 2px #000, 0 0 0 2px var(--brand);
}
html.a11y-contrast .nfz-codes a[data-tip]::after {
  background: #000;
  border: 1px solid var(--line);
  color: #fff;
}
html.a11y-contrast .nfz-codes a[data-tip]::before {
  border-top-color: var(--line);
}
html.a11y-contrast .woocommerce-message,
html.a11y-contrast .woocommerce-info,
html.a11y-contrast .woocommerce-error {
  background: #000;
  border-color: var(--line);
  color: #fff;
}
html.a11y-contrast .woocommerce-error {
  border-color: var(--accent);
}
html.a11y-contrast input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]),
html.a11y-contrast select,
html.a11y-contrast textarea,
html.a11y-contrast .select2-container .select2-selection,
html.a11y-contrast .select2-container .select2-selection__rendered,
html.a11y-contrast .select2-dropdown {
  background-color: #000;
  color: #fff;
}
html.a11y-contrast .woocommerce a.button:not(.alt):not(.checkout-button),
html.a11y-contrast .woocommerce button.button:not(.alt),
html.a11y-contrast .woocommerce input.button:not(.alt) {
  background: #000;
  border: 1px solid var(--line);
  color: #fff;
}
html.a11y-contrast .woocommerce a.button:not(.alt):not(.checkout-button):hover,
html.a11y-contrast .woocommerce button.button:not(.alt):hover,
html.a11y-contrast .woocommerce input.button:not(.alt):hover {
  background: #000;
  border-color: var(--brand);
  color: var(--brand);
}
html.a11y-contrast .btn-light,
html.a11y-contrast .btn-light:hover {
  background: #fff;
  color: #000;
}
html.a11y-contrast .rail-item:hover > a,
html.a11y-contrast .rail-item:focus-within > a {
  background: #000;
}
html.a11y-contrast .product .thumb,
html.a11y-contrast .cat-card .thumb,
html.a11y-contrast .lo-logo,
html.a11y-contrast .gallery .main,
html.a11y-contrast .gallery .thumbs .t {
  background: #fff;
}
html.a11y-contrast .lo-logo span {
  color: #000;
}
html.a11y-contrast img.hero-photo {
  mix-blend-mode: normal;
}
html.a11y-contrast .nav-cats,
html.a11y-contrast .cat-list-head,
html.a11y-contrast .trust-band,
html.a11y-contrast .trust-item strong,
html.a11y-contrast .trust-item span,
html.a11y-contrast .trust-band .icon,
html.a11y-contrast .newsletter,
html.a11y-contrast .newsletter h2,
html.a11y-contrast .newsletter p,
html.a11y-contrast .newsletter label,
html.a11y-contrast .newsletter .consent,
html.a11y-contrast .newsletter a,
html.a11y-contrast .tile-label,
html.a11y-contrast .btn-primary,
html.a11y-contrast .badge,
html.a11y-contrast .a11y-toggle,
html.a11y-contrast .a11y-toggle .icon,
html.a11y-contrast .wpcf7-submit,
html.a11y-contrast .kontakt-form input[type=submit],
html.a11y-contrast .kontakt-form button[type=submit],
html.a11y-contrast a.checkout-button,
html.a11y-contrast button.single_add_to_cart_button,
html.a11y-contrast .woocommerce a.button.alt,
html.a11y-contrast .woocommerce button.button.alt,
html.a11y-contrast .woocommerce-MyAccount-navigation .is-active a,
html.a11y-contrast .entry-content .woocommerce-Button,
html.a11y-contrast .entry-content .woocommerce-button,
html.a11y-contrast .entry-content a.button,
html.a11y-contrast .entry-content button.button,
html.a11y-contrast .entry-content input.button,
html.a11y-contrast .product-bottom-block a[role=button],
html.a11y-contrast .add-cart,
html.a11y-contrast .btn-outline:hover,
html.a11y-contrast .pagination .current,
html.a11y-contrast .krok-num,
html.a11y-contrast .term-acc[open] > summary::before,
html.a11y-contrast .nfz-btn,
html.a11y-contrast .nfz-btn:hover,
html.a11y-contrast .nfz-btn .icon {
  color: #000;
}
html.a11y-contrast img {
  filter: contrast(1.15);
}

/*# sourceMappingURL=accessibility.css.map */
