@charset "UTF-8";
:root {
  --clr-primary: #a61678;
  --clr-primary-lighter: #c63a99;
  --clr-secondary: #1b8096;
  --clr-white: #fff;
  --clr-text: #2f3740;
  --clr-dark: #1f2933;
  --clr-gray400: #f4f6f8;
  --clr-gray600: #eef3f5;
  --clr-gray700: #cfd8df;
  --section-padding: 3rem;
  --header-height: 118px;
}

html:root {
  --clr-primary: #a61678;
  --clr-primary-lighter: #c63a99;
  --clr-secondary: #1b8096;
  --clr-secondary-dark: #146779;
  --clr-success: #71bf44;
  --clr-white: #fff;
  --clr-text: #2f3740;
  --clr-dark: #1f2933;
  --clr-gray400: #f4f6f8;
  --clr-gray600: #eef3f5;
  --clr-gray700: #cfd8df;
  --clr-gray800: #969998;
  --clr-gray900: #495057;
  --form-control-color: var(--clr-primary);
  --form-accent-color: var(--clr-primary);
  --form-accent-hover: var(--clr-primary-lighter);
  --form-focus-ring: rgba(166, 22, 120, .22);
}

.white-color {
  color: var(--clr-white);
}

header {
  padding: 0;
}
header .header-logo {
  display: flex;
}
header .header-logo img {
  max-width: 125px;
}
@media (min-width: 576px) {
  header .header-logo img {
    max-width: 165px;
  }
}
header nav:not(.collapsed) .navigation > li a {
  padding: 1.5rem 0.75rem;
}
@media (min-width: 1240px) {
  header nav:not(.collapsed) .navigation > li a {
    padding: 1.75rem 0.75rem;
  }
}
header nav:not(.collapsed) .navigation > li a, header nav:not(.collapsed) .navigation > li a[aria-current=page] {
  color: var(--clr-text);
}
header nav:not(.collapsed) .navigation > li a:hover, header nav:not(.collapsed) .navigation > li a.active, header nav:not(.collapsed) .navigation > li a[aria-current=location] {
  color: var(--clr-primary);
}
header nav .nav-buttons .nav-btn {
  border-radius: 999px;
  color: var(--clr-white);
  border: 2px solid var(--clr-primary);
  background-color: var(--clr-primary);
  background-image: var(--clr-primary);
}
header nav .nav-buttons .nav-btn:hover {
  filter: brightness(105%);
}
@media (min-width: 993px) {
  header > .container {
    max-width: 1680px;
    min-height: clamp(4.125rem, 5vw, 4.75rem);
  }
  header .header-logo img {
    width: 195px;
    max-width: 195px;
    height: auto;
  }
  header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    flex-wrap: nowrap;
  }
  header nav .navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: clamp(0.4rem, 0.8vw, 1rem);
  }
  header nav:not(.collapsed) .navigation > li a {
    padding: 1.35rem clamp(0.15rem, 0.35vw, 0.4rem);
    font-size: clamp(0.78rem, 0.72vw, 0.9rem);
    line-height: 1.2;
    white-space: nowrap;
  }
  header nav .nav-buttons {
    margin-left: clamp(0.35rem, 0.8vw, 1rem);
  }
  header nav .nav-buttons .nav-btn {
    padding-inline: clamp(1rem, 1.5vw, 1.6rem);
    min-height: 3rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
header:not(.header-shrink) nav .nav-buttons .nav-btn:hover {
  filter: brightness(105%);
}
header .header-google {
  padding: 0.5rem 0 0.25rem;
  background: var(--clr-gray600);
}
header .header-google .ti-widget {
  display: flex !important;
  align-items: center;
}
@media (min-width: 768px) {
  header .header-google {
    padding: 0.5rem 0 0.35rem;
  }
}
header .nav-collapse {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
header .nav-collapse span {
  position: absolute;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: var(--clr-text);
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: top 0.25s ease, width 0.25s ease, transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
}
header .nav-collapse span:nth-child(1) {
  top: 35%;
}
header .nav-collapse span:nth-child(2) {
  top: 50%;
}
header .nav-collapse span:nth-child(3) {
  top: 65%;
}
header .nav-collapse:hover span {
  background-color: var(--clr-primary);
}
header .nav-collapse:focus {
  outline: none;
}
header .nav-collapse:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}
header .nav-collapse.collapsed span {
  top: 50% !important;
  width: 50%;
}
header .nav-collapse.collapsed span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
header .nav-collapse.collapsed span:nth-child(2) {
  opacity: 0;
}
header .nav-collapse.collapsed span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hamburger zmienia się w X, gdy menu nav jest otwarte */
header:has(nav.collapsed) .nav-collapse span {
  top: 50% !important;
  width: 50%;
}
header:has(nav.collapsed) .nav-collapse span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}
header:has(nav.collapsed) .nav-collapse span:nth-child(2) {
  opacity: 0 !important;
}
header:has(nav.collapsed) .nav-collapse span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.site-footer {
  width: 100%;
  padding: clamp(30px, 4vw, 54px) 0;
  background: #000;
  color: #fff;
}
.site-footer .container {
  display: block;
}
.site-footer .footer-logo {
  display: inline-flex;
  max-width: 175px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-footer .footer-logo {
    margin: 0;
  }
}
.site-footer .footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-footer .footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: clamp(16px, 2vw, 22px);
  max-width: 860px;
}
@media (min-width: 576px) {
  .site-footer .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 48px);
  }
}
.site-footer .footer-column {
  min-width: 0;
  padding: 0;
}
.site-footer .footer-column .section-heading {
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.35;
  text-align: inherit;
}
.site-footer .footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-column li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.site-footer .footer-column li:last-child {
  margin-bottom: 0;
}
.site-footer .footer-column a,
.site-footer .footer-column span {
  display: block;
  padding: 9px 0;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.35;
  text-decoration: none;
}
.site-footer .footer-column a:hover {
  color: var(--clr-primary-lighter);
}
.site-footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: clamp(20px, 2.25vw, 18px);
}
@media (min-width: 992px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.site-footer .footer-bottom-text {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.4;
}
.site-footer .logo-natural {
  flex: 0 0 auto;
  width: min(200px, 55vw);
  height: auto;
}

html {
  scroll-padding-top: var(--header-height, 104px);
}

body {
  color: var(--clr-text);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

[hidden] {
  display: none !important;
}

#wrapper {
  padding-top: var(--header-height, 104px);
}

.page-content:not(.w-hero) {
  padding-top: 3rem;
}

section:not(.hero-slider) {
  padding: var(--section-padding) 0;
}
section:not(.hero-slider) .section-heading {
  max-width: unset;
  color: var(--clr-secondary);
}
section:not(.hero-slider) .row:not(.form-group) + .row:not(.form-group) {
  margin-top: 1.5rem;
}
section:not(.hero-slider) .row:not(.form-group) > .col > * + * {
  margin-top: 1rem;
}

.container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

*[id] {
  scroll-margin-top: calc(var(--header-height, 104px) + 16px);
}

@media (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.875;
  }
  .page-content:not(.w-hero) {
    padding-top: 4rem;
  }
}
.section-heading,
.fpk-stats__header {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .section-heading,
  .fpk-stats__header {
    font-size: 2rem;
  }
}

hr {
  margin: 1.5rem 0;
}

/* =========================================================
   Local form and layout utilities
   ========================================================= */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1240px) {
  .container {
    max-width: 1240px;
  }
}

.row,
.form-row,
.form-group.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

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

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

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

.form-row > [class*=col],
.form-group.row > [class*=col] {
  min-width: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 1rem;
}

.form-check-input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--clr-secondary);
}

.form-check-label {
  margin: 0;
}

.wpcf7-form .optional-consent {
  --consent-button-width: clamp(76px, 20vw, 100px);
  --consent-button-height: clamp(40px, 8vw, 44px);
  --consent-button-active: #b51678;
  display: grid;
  grid-template-columns: var(--consent-button-width) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(8px, 1.5vw, 12px);
  width: 100%;
}
.wpcf7-form .optional-consent .btn-agreement {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--consent-button-width);
  max-width: none;
  min-height: var(--consent-button-height);
  margin: 0;
  padding: 8px 14px;
  border: 1px solid #969998;
  border-radius: 3px;
  background: #eee;
  color: #111;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.wpcf7-form .optional-consent .btn-agreement input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.wpcf7-form .optional-consent .btn-agreement:has(input:checked) {
  color: #fff;
  border-color: var(--consent-button-active);
  background: var(--consent-button-active);
}
.wpcf7-form .optional-consent .btn-agreement:has(input:focus-visible) {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
}
.wpcf7-form .optional-consent__text {
  display: block;
  min-width: 0;
  color: var(--clr-text);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  line-height: 1.45;
}
@media (max-width: 420px) {
  .wpcf7-form .optional-consent {
    grid-template-columns: 76px minmax(0, 1fr);
    column-gap: 8px;
  }
}

.form-control {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--clr-gray700);
  background-color: var(--clr-white);
  color: var(--clr-text);
  font: inherit;
  line-height: 1.25;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control::placeholder {
  color: rgba(47, 55, 64, 0.62);
  opacity: 1;
}
.form-control:focus {
  border-color: var(--clr-secondary);
  outline: 2px solid rgba(27, 128, 150, 0.18);
  outline-offset: 2px;
}
.form-control:disabled {
  color: #969696;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
  cursor: not-allowed;
  opacity: 1;
}

.wpcf7-form,
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form fieldset.hidden-fields-container {
  display: none;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form .form-check.agree-form-check,
.wpcf7-form .form-check:has(> .wpcf7-form-control-wrap[data-name=agree]) {
  cursor: pointer;
}
.wpcf7-form .form-check.agree-form-check a,
.wpcf7-form .form-check:has(> .wpcf7-form-control-wrap[data-name=agree]) a {
  cursor: pointer;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.np-label {
  font-size: 1rem;
}

.is-valid {
  border-color: #2f8a4b !important;
  background-image: none;
}

.is-invalid {
  border-color: #d72322 !important;
  background-image: none;
}

.invalid-feedback,
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.35rem;
  color: #d72322;
  font-size: 0.9rem;
  line-height: 1.35;
}

.wpcf7-form #gender-error,
.wpcf7-form .gender-error {
  margin-left: 0.5rem;
}

.wpcf7-form .form-group:has(> .agreement-agree) {
  margin-inline: 0.5rem;
}

.wpcf7-form .form-check-one.agreement-agree {
  --checkbox-size: var(--form-control-size, clamp(16px, 1.05em, 18px));
  --checkbox-gap: var(--form-control-gap, clamp(10px, 1.5vw, 14px));
  position: relative;
  display: block;
  padding-left: calc(var(--checkbox-size) + var(--checkbox-gap));
  color: var(--clr-text);
  font-size: 1rem;
  line-height: 1.55;
}
.wpcf7-form .form-check-one.agreement-agree input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.wpcf7-form .form-check-one.agreement-agree a {
  color: var(--clr-primary);
  font-weight: inherit;
  text-decoration: none;
}
.wpcf7-form .form-check-one.agreement-agree a:hover, .wpcf7-form .form-check-one.agreement-agree a:focus-visible {
  text-decoration: underline;
}

.legal-more {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
}

.field-disabled {
  background-color: #e9ecef;
  opacity: 1;
}

.np-select-wrap {
  position: relative;
}
.np-select-wrap::before {
  content: attr(data-placeholder);
  position: absolute;
  top: -7px;
  left: 14px;
  z-index: 2;
  padding: 0 6px;
  background: var(--clr-white);
  color: var(--clr-primary);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}
.np-select-wrap select.form-control {
  min-height: 50px;
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  box-shadow: none;
  outline: none;
}

.wpcf7-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.wpcf7-form select {
  padding: 10px 14px;
  font-size: 16px;
  line-height: 1.25;
}
.wpcf7-form textarea {
  width: 100%;
  min-height: 110px;
  padding: 10px 14px;
  font-size: 16px;
  line-height: 1.4;
  resize: vertical;
}
.wpcf7-form input:not(:disabled):hover,
.wpcf7-form select:not(:disabled):hover {
  border-color: var(--clr-primary);
}
.wpcf7-form #y_flat:disabled,
.wpcf7-form #y_flat.field-disabled {
  color: #969696;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
  cursor: not-allowed;
  opacity: 1;
}

.morecontent span,
.morecontenta span,
.wpcf7-not-valid-tip,
.screen-reader-response,
.wpcf7 .ajax-loader,
.wpcf7 .wpcf7-form .wpcf7-mail-sent-ok,
div.wpcf7-response-output,
div.wpcf7-validation-errors {
  display: none !important;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.autocomplete {
  position: absolute;
  z-index: 10000;
  max-height: 18rem;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  border: 1px solid var(--clr-gray700);
  background: var(--clr-white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.autocomplete li {
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}
.autocomplete li:hover {
  background: rgba(27, 128, 150, 0.08);
}

.gap-5 {
  gap: 3rem;
}

.gap-6 {
  gap: 3.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.img-fluid {
  max-width: 100%;
  height: auto;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.btn-full {
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
    max-width: 100%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-6 {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
  .d-md-block {
    display: block !important;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
}
@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .text-lg-right {
    text-align: right !important;
  }
}
.order-wrapper .page-content {
  padding-top: clamp(2rem, var(--header-height) - 1rem, 2rem) !important;
  padding-bottom: 0 !important;
}
.order-wrapper section {
  padding-top: 0;
}
.order-wrapper .order-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 390px;
  margin: 0 auto;
}
.order-wrapper .np-order-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.order-wrapper .np-order-layout .order-form {
  order: 1;
}
.order-wrapper .np-order-layout .np-order-aside {
  order: 2;
}
@media (min-width: 992px) {
  .order-wrapper .np-order-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
  .order-wrapper .np-order-layout .np-order-aside {
    order: 1;
  }
  .order-wrapper .np-order-layout .order-form {
    order: 2;
  }
}
.order-wrapper .np-order-aside,
.order-wrapper .order-form {
  min-width: 0;
}
.order-wrapper .form-info {
  position: relative;
  padding-left: 35px;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  font-size: 1rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.order-wrapper .product-order-check {
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 18C11.3869 18 13.6761 17.0518 15.364 15.364C17.0518 13.6761 18 11.3869 18 9C18 6.61305 17.0518 4.32387 15.364 2.63604C13.6761 0.948212 11.3869 0 9 0C6.61305 0 4.32387 0.948212 2.63604 2.63604C0.948212 4.32387 0 6.61305 0 9C0 11.3869 0.948212 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM12.9727 7.34766L8.47266 11.8477C8.14219 12.1781 7.60781 12.1781 7.28086 11.8477L5.03086 9.59766C4.70039 9.26719 4.70039 8.73281 5.03086 8.40586C5.36133 8.07891 5.8957 8.07539 6.22266 8.40586L7.875 10.0582L11.7773 6.15234C12.1078 5.82188 12.6422 5.82188 12.9691 6.15234C13.2961 6.48281 13.2996 7.01719 12.9691 7.34414L12.9727 7.34766Z" fill="%23A61678"/></svg>') no-repeat;
}
.order-wrapper .product-order-check::after {
  content: none;
}

.np-flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  --np-flexbox-gap: 1.5rem;
  --np-flexbox-els-in-row: 1;
  gap: var(--np-flexbox-gap);
}
.np-flexbox-1 {
  --np-flexbox-els-in-row: 1;
}
@media (min-width: 576px) {
  .np-flexbox-sm-1 {
    --np-flexbox-els-in-row: 1;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-1 {
    --np-flexbox-els-in-row: 1;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-1 {
    --np-flexbox-els-in-row: 1;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-1 {
    --np-flexbox-els-in-row: 1;
  }
}
.np-flexbox-2 {
  --np-flexbox-els-in-row: 2;
}
@media (min-width: 576px) {
  .np-flexbox-sm-2 {
    --np-flexbox-els-in-row: 2;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-2 {
    --np-flexbox-els-in-row: 2;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-2 {
    --np-flexbox-els-in-row: 2;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-2 {
    --np-flexbox-els-in-row: 2;
  }
}
.np-flexbox-3 {
  --np-flexbox-els-in-row: 3;
}
@media (min-width: 576px) {
  .np-flexbox-sm-3 {
    --np-flexbox-els-in-row: 3;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-3 {
    --np-flexbox-els-in-row: 3;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-3 {
    --np-flexbox-els-in-row: 3;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-3 {
    --np-flexbox-els-in-row: 3;
  }
}
.np-flexbox-4 {
  --np-flexbox-els-in-row: 4;
}
@media (min-width: 576px) {
  .np-flexbox-sm-4 {
    --np-flexbox-els-in-row: 4;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-4 {
    --np-flexbox-els-in-row: 4;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-4 {
    --np-flexbox-els-in-row: 4;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-4 {
    --np-flexbox-els-in-row: 4;
  }
}
.np-flexbox-5 {
  --np-flexbox-els-in-row: 5;
}
@media (min-width: 576px) {
  .np-flexbox-sm-5 {
    --np-flexbox-els-in-row: 5;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-5 {
    --np-flexbox-els-in-row: 5;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-5 {
    --np-flexbox-els-in-row: 5;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-5 {
    --np-flexbox-els-in-row: 5;
  }
}
.np-flexbox-6 {
  --np-flexbox-els-in-row: 6;
}
@media (min-width: 576px) {
  .np-flexbox-sm-6 {
    --np-flexbox-els-in-row: 6;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-6 {
    --np-flexbox-els-in-row: 6;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-6 {
    --np-flexbox-els-in-row: 6;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-6 {
    --np-flexbox-els-in-row: 6;
  }
}
.np-flexbox-7 {
  --np-flexbox-els-in-row: 7;
}
@media (min-width: 576px) {
  .np-flexbox-sm-7 {
    --np-flexbox-els-in-row: 7;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-7 {
    --np-flexbox-els-in-row: 7;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-7 {
    --np-flexbox-els-in-row: 7;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-7 {
    --np-flexbox-els-in-row: 7;
  }
}
.np-flexbox-8 {
  --np-flexbox-els-in-row: 8;
}
@media (min-width: 576px) {
  .np-flexbox-sm-8 {
    --np-flexbox-els-in-row: 8;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-8 {
    --np-flexbox-els-in-row: 8;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-8 {
    --np-flexbox-els-in-row: 8;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-8 {
    --np-flexbox-els-in-row: 8;
  }
}
.np-flexbox-9 {
  --np-flexbox-els-in-row: 9;
}
@media (min-width: 576px) {
  .np-flexbox-sm-9 {
    --np-flexbox-els-in-row: 9;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-9 {
    --np-flexbox-els-in-row: 9;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-9 {
    --np-flexbox-els-in-row: 9;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-9 {
    --np-flexbox-els-in-row: 9;
  }
}
.np-flexbox-10 {
  --np-flexbox-els-in-row: 10;
}
@media (min-width: 576px) {
  .np-flexbox-sm-10 {
    --np-flexbox-els-in-row: 10;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-10 {
    --np-flexbox-els-in-row: 10;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-10 {
    --np-flexbox-els-in-row: 10;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-10 {
    --np-flexbox-els-in-row: 10;
  }
}
.np-flexbox-11 {
  --np-flexbox-els-in-row: 11;
}
@media (min-width: 576px) {
  .np-flexbox-sm-11 {
    --np-flexbox-els-in-row: 11;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-11 {
    --np-flexbox-els-in-row: 11;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-11 {
    --np-flexbox-els-in-row: 11;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-11 {
    --np-flexbox-els-in-row: 11;
  }
}
.np-flexbox-12 {
  --np-flexbox-els-in-row: 12;
}
@media (min-width: 576px) {
  .np-flexbox-sm-12 {
    --np-flexbox-els-in-row: 12;
  }
}
@media (min-width: 768px) {
  .np-flexbox-md-12 {
    --np-flexbox-els-in-row: 12;
  }
}
@media (min-width: 992px) {
  .np-flexbox-lg-12 {
    --np-flexbox-els-in-row: 12;
  }
}
@media (min-width: 1240px) {
  .np-flexbox-xl-12 {
    --np-flexbox-els-in-row: 12;
  }
}
.np-flexbox .np-flexbox-el {
  flex: 0 0 calc(100% / var(--np-flexbox-els-in-row) - var(--np-flexbox-gap) * (var(--np-flexbox-els-in-row) - 1) / var(--np-flexbox-els-in-row));
}

.accordion {
  width: 100%;
}

.accordion .accordion-item {
  width: 100%;
  overflow: clip;
}

.accordion .accordion-item + .accordion-item {
  margin-top: 10px;
}

.accordion .accordion-item .accordion-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 19px 54px 19px 27px;
  border: 0;
  border-left: 3px solid var(--clr-primary);
  border-radius: 0;
  color: var(--clr-primary);
  background: var(--clr-gray400);
  font: inherit;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.accordion .accordion-item .accordion-button .accordion-button-icon {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.accordion .accordion-item .accordion-button .accordion-button-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--clr-primary);
  border-bottom: 2px solid var(--clr-primary);
  transform: rotate(45deg);
  transition: transform 0.35s ease, border-color 0.25s ease;
}

.accordion .accordion-collapse {
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: height 0.52s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease, visibility 0s linear 0.52s;
  will-change: height, opacity;
}

.accordion .accordion-collapse-inner {
  padding: 24px 20px;
}

.accordion .accordion-collapse-inner p:last-child {
  margin-bottom: 0;
}

.accordion .accordion-collapse-inner a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.accordion .accordion-collapse-inner table {
  width: 100%;
  margin: 0 0 1rem;
  border-collapse: collapse;
  font-size: 0.875rem;
  line-height: 1.35;
}

.accordion .accordion-collapse-inner th,
.accordion .accordion-collapse-inner td {
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--clr-gray700);
  vertical-align: top;
}

.accordion .accordion-collapse-inner th {
  color: var(--clr-white);
  background: var(--clr-primary);
  font-weight: 700;
}

.accordion .accordion-item.active .accordion-button,
.accordion .accordion-item .accordion-button:hover {
  color: var(--clr-white);
  border-color: var(--clr-primary);
  border-left-color: var(--clr-primary);
  background: var(--clr-primary);
}

.accordion .accordion-item.active .accordion-button .accordion-button-icon::before {
  border-color: var(--clr-white);
  transform: rotate(225deg);
}

.accordion .accordion-item.active .accordion-collapse,
.accordion .accordion-item.is-closing .accordion-collapse {
  visibility: visible;
  transition-delay: 0s;
}

.accordion .accordion-item.active .accordion-collapse {
  opacity: 1;
}

.accordion .accordion-item.is-closing .accordion-collapse {
  opacity: 0;
}

@media (min-width: 768px) {
  .accordion .accordion-item .accordion-button {
    font-size: 18px;
  }
}
.btn {
  position: relative;
  appearance: none;
  display: inline-block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
  background-color: var(--clr-primary);
  border-radius: 25px;
  padding: 14px 25px;
  overflow-anchor: none;
  cursor: pointer;
}
.btn:hover {
  color: var(--clr-primary);
  background-color: transparent;
  border-color: var(--clr-primary);
}
.btn.btn-light {
  color: var(--clr-primary);
  background-color: var(--clr-white);
  border-color: var(--clr-white);
}
.btn.btn-light:hover {
  color: var(--clr-white);
  background-color: transparent;
  border-color: var(--clr-white);
}
.btn.btn-light-outlined {
  color: var(--clr-white);
  background-color: transparent;
  border-color: var(--clr-white);
}
.btn.btn-light-outlined:hover {
  color: var(--clr-primary);
  background-color: var(--clr-white);
}

.btn-big {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 1.25rem 4.5rem;
  border-radius: 20rem;
  font-size: 1.125rem;
}
.btn-with-shadow {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.btn-centered {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.btn-centered.btn-with-shadow {
  min-width: clamp(190px, 16vw, 220px);
  padding: clamp(15px, 1.15vw, 17px) clamp(28px, 2.4vw, 36px);
  border-radius: 999px;
  font-size: clamp(15px, 1vw, 17px);
}

/* Exit-intent popup: structure and proportions follow FlexiMed Active PL. */
.exit_popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.exit_popup.exit_popup--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.exit_popup_inner {
  position: relative;
  width: calc(100% - 2rem);
  max-width: 560px;
  padding: 20px;
  border: 20px solid var(--clr-primary);
  background: var(--clr-white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
.exit_popup_inner--close {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 3;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.exit_popup_inner--close::before, .exit_popup_inner--close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: var(--clr-white);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background-color 0.3s ease;
}
.exit_popup_inner--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.exit_popup_inner--close:hover::before, .exit_popup_inner--close:hover::after, .exit_popup_inner--close:focus-visible::before, .exit_popup_inner--close:focus-visible::after {
  background: #ff6464;
}
.exit_popup_inner--close:focus-visible {
  outline: 2px solid var(--clr-white);
  outline-offset: -5px;
}
.exit_popup_inner--corner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0;
  height: 0;
  color: var(--clr-white);
  border-style: solid;
  border-width: 0 200px 200px 0;
  border-color: transparent var(--clr-primary) transparent transparent;
}
.exit_popup_inner--corner-text {
  position: absolute;
  top: clamp(22px, 3vw, 30px);
  right: -216px;
  display: grid;
  place-items: center;
  width: 145px;
  color: inherit;
  font-size: clamp(0.82rem, 1.35vw, 1.05rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}
.exit_popup_inner--corner-text span {
  display: block;
  width: 100%;
  white-space: nowrap;
}
.exit_popup_inner--offer {
  text-align: center;
}
.exit_popup_inner--offer img {
  display: block;
  width: auto;
  max-width: min(100%, 450px);
  height: auto;
  max-height: 350px;
  margin-inline: auto;
  object-fit: contain;
}
.exit_popup_inner--offer h3 {
  margin: 6px 0 12px;
  padding-inline: clamp(0.25rem, 2vw, 1rem);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.1;
}
.exit_popup_inner--offer h3 strong {
  display: inline-block;
  color: var(--clr-primary);
}
.exit_popup_inner--offer .btn-order-default {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 84px;
  padding: 14px 20px;
  border: 1px solid #f16b00;
  border-radius: 14px;
  color: #000;
  background: linear-gradient(180deg, #ffc400 0%, #f47900 100%);
  white-space: normal;
}
.exit_popup_inner--offer .btn-order-default .small {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .exit_popup {
    display: none !important;
  }
}

/* Bootstrap-compatible legal/PDF modals used by the order forms and FAQ. */
.np-rules-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000 !important;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(16, 35, 47, 0.72);
}
.np-rules-modal.show {
  display: block !important;
  opacity: 1 !important;
}
.np-rules-modal .modal-dialog {
  display: flex;
  align-items: center;
  width: calc(100% - 2rem);
  max-width: 760px;
  height: calc(100dvh - 2rem);
  max-height: 760px;
  min-height: 0;
  margin: 1rem auto;
}
.np-rules-modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 760px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 14px;
  background: var(--clr-white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
.np-rules-modal .modal-header {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--clr-gray700);
}
.np-rules-modal .modal-title {
  margin: 0;
}
.np-rules-modal .modal-body {
  flex: 1 1 0;
  height: 0;
  min-height: 0;
  padding: 1.5rem;
  overflow-x: hidden;
  overflow-y: auto !important;
  scrollbar-gutter: stable;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.np-rules-modal .modal-body > * + * {
  margin-top: 1rem;
}
.np-rules-modal .btn-close {
  flex: 0 0 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  opacity: 1;
  cursor: pointer;
  touch-action: manipulation;
}
.np-rules-modal .btn-close::before {
  content: "×";
  font-size: 1.8rem;
  line-height: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147482999 !important;
  background: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .np-rules-modal {
    overflow: hidden;
    padding: 0;
  }
  .np-rules-modal .modal-dialog {
    align-items: stretch;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 0;
    transform: none;
  }
  .np-rules-modal .modal-content {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }
  .np-rules-modal .modal-header {
    min-height: 3.75rem;
    padding: max(0.5rem, env(safe-area-inset-top)) 0.75rem 0.5rem;
    background: var(--clr-white);
  }
  .np-rules-modal .modal-title {
    min-width: 0;
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    line-height: 1.25;
  }
  .np-rules-modal .btn-close {
    position: relative;
    z-index: 3;
    flex-basis: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
  }
  .np-rules-modal .modal-body {
    padding: 1rem max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    overscroll-behavior: contain;
  }
}
.google-slider {
  background-color: #ECECEC;
  padding: 32px 0;
}
.google-slider [data-tooltip] {
  position: relative;
}
.google-slider [data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 0;
  left: 1rem;
  width: min(300px, 100% - 40px);
  padding: 6px 12px;
  color: var(--clr-text);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.google-slider [data-tooltip].tooltip_visible::after {
  visibility: visible;
  opacity: 1;
}
.google-slider .tooltip_indicator {
  position: relative;
}
.google-slider .tooltip_indicator::before {
  content: "i";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  color: var(--clr-text);
  border: 1px solid var(--clr-text);
  border-radius: 50%;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  transform: translate(20%, 70%);
  cursor: pointer;
}
.google-slider .ti-widget .ti-widget-container {
  margin-bottom: 0 !important;
}
.google-slider .ti-widget .ti-widget-container .ti-reviews-container-wrapper .ti-review-item .ti-inner {
  background-color: transparent !important;
}

@keyframes npHeroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes npHeroProductIn {
  from {
    opacity: 0;
    transform: translate3d(34px, 16px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.hero-slider {
  background: var(--clr-primary);
}
.hero-slider .splide__arrows {
  display: none !important;
}
.hero-slider .splide__slide {
  --hero-padding: 2rem;
  padding: var(--hero-padding) 0;
}
@media (min-width: 992px) {
  .hero-slider .splide__slide {
    --hero-padding: 3rem;
    display: flex;
    align-items: center;
    min-height: min(830px, 100svh - var(--header-height, 104px));
  }
}
.hero-slider .splide__slide.with-bg-img {
  background-image: url("../img/hero-slider-bg-knee.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-slider .splide__slide .row > .col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-slider .splide__slide h1,
.hero-slider .splide__slide .text,
.hero-slider .splide__slide .slide-buttons,
.hero-slider .splide__slide .img-holder,
.hero-slider .splide__slide .hero-icons,
.hero-slider .splide__slide .hero-icon {
  opacity: 0;
  will-change: opacity, transform;
}
.hero-slider .splide__slide h1,
.hero-slider .splide__slide .text,
.hero-slider .splide__slide .slide-buttons {
  animation: npHeroFadeUp 0.68s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.hero-slider .splide__slide h1 {
  margin: 0;
  color: var(--clr-white);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  animation-delay: 0.05s;
}
@media (min-width: 992px) {
  .hero-slider .splide__slide h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1240px) {
  .hero-slider .splide__slide h1 {
    font-size: 3.25rem;
  }
}
@media (min-width: 1440px) {
  .hero-slider .splide__slide h1 {
    font-size: 3.75rem;
  }
}
.hero-slider .splide__slide h1 + .text {
  margin-top: 1rem;
}
.hero-slider .splide__slide .text {
  color: var(--clr-white);
  font-size: 1.15rem;
  line-height: 1.55;
  animation-delay: 0.16s;
}
@media (min-width: 992px) {
  .hero-slider .splide__slide .text {
    font-size: 1.25rem;
  }
}
.hero-slider .splide__slide .slide-buttons {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
  animation-delay: 0.27s;
}
.hero-slider .splide__slide .slide-buttons .btn {
  margin-right: unset !important;
}
.hero-slider .splide__slide .floated-images {
  position: relative;
  z-index: 2;
}
@media (min-width: 1240px) {
  .hero-slider .splide__slide .floated-images {
    margin-top: -2rem;
  }
  .hero-slider .splide__slide .floated-images.hero-icons {
    margin-top: clamp(0.75rem, 1.4vw, 1.5rem);
  }
}
.hero-slider .splide__slide .floated-images img.product-img {
  position: relative;
  display: block;
  width: 100%;
  max-width: clamp(440px, 35vw, 620px);
  height: auto;
  margin: 0 auto;
  left: unset;
  top: unset;
  transform: none;
}
.hero-slider .splide__slide .img-holder {
  animation: npHeroProductIn 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s both;
}
.hero-slider .hero-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  font-size: 0.75rem;
  animation: npHeroFadeUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.34s both;
}
@media (min-width: 576px) {
  .hero-slider .hero-icons {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .hero-slider .hero-icons {
    position: absolute;
    width: 95%;
    transform: translateX(-50%);
    font-size: 0.75rem;
  }
}
@media (min-width: 992px) {
  .hero-slider .hero-icons {
    flex-wrap: nowrap;
    width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 1240px) {
  .hero-slider .hero-icons {
    width: 80%;
  }
}
.hero-slider .hero-icons .hero-icon {
  flex: 1 0 calc(50% - 0.5rem);
  text-align: center;
  animation: npHeroFadeUp 0.48s ease both;
}
.hero-slider .hero-icons .hero-icon:nth-child(1) {
  animation-delay: 0.42s;
}
.hero-slider .hero-icons .hero-icon:nth-child(2) {
  animation-delay: 0.49s;
}
.hero-slider .hero-icons .hero-icon:nth-child(3) {
  animation-delay: 0.56s;
}
.hero-slider .hero-icons .hero-icon:nth-child(4) {
  animation-delay: 0.63s;
}
@media (min-width: 576px) {
  .hero-slider .hero-icons .hero-icon {
    flex: 1 0 25%;
  }
}
@media (min-width: 992px) {
  .hero-slider .hero-icons .hero-icon {
    flex: 1 0 25%;
  }
}
.hero-slider .hero-icons .hero-icon .hero-icon-img > img {
  position: relative;
  display: block;
  width: auto;
  max-width: 50px;
  height: auto;
  margin: 0 auto;
  left: unset;
  top: unset;
  transform: translate(0, 0);
}
.hero-slider .hero-icons .hero-icon .hero-icon-text {
  margin-top: 0.5rem;
  color: var(--clr-white);
}
.hero-slider .hero-icons .hero-icon .hero-icon-text p {
  margin: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider .splide__slide h1,
  .hero-slider .splide__slide .text,
  .hero-slider .splide__slide .slide-buttons,
  .hero-slider .splide__slide .img-holder,
  .hero-slider .splide__slide .hero-icons,
  .hero-slider .splide__slide .hero-icon {
    opacity: 1;
    animation: none !important;
    transform: none !important;
  }
}
.section-testimonials {
  background: var(--clr-gray400);
}
.section-testimonials .section-heading {
  margin-bottom: 2.5rem;
}
.section-testimonials .testimonials_item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--clr-white);
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  line-height: 1.4;
}
.section-testimonials .testimonials_item .testimonials_item--img {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.5rem;
}
.section-testimonials .testimonials_item .testimonials_item--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-testimonials .testimonials_item .testimonials_item--stars {
  font-size: 2rem;
  line-height: 1;
  color: var(--clr-primary);
}
.section-testimonials .testimonials_item .testimonials_item--author {
  margin-top: 1rem;
}
.section-testimonials .testimonials_item .testimonials_item--author p:nth-child(2) {
  font-size: 0.875rem;
}
.section-testimonials .testimonials_item .testimonials_item--heading {
  font-weight: 700;
  color: var(--clr-text);
}
.section-testimonials .testimonials-notes {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 2.5rem;
}

.testimonials-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.section-testimonials .testimonials-slider__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  transition: transform 0.38s ease;
  will-change: transform;
}
.section-testimonials .testimonials-slider__track > .col {
  flex: 0 0 calc((100% - 3rem) / 3);
  max-width: none;
  padding: 0;
}

.testimonials-slider__controls {
  display: none;
}

.testimonials-slider__arrow {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0 0 0.15rem;
  border: 1px solid var(--clr-primary);
  border-radius: 50%;
  color: var(--clr-primary);
  background: var(--clr-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.testimonials-slider__dots {
  display: flex;
  gap: 0.5rem;
}
.testimonials-slider__dots button {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--clr-gray700);
  cursor: pointer;
}
.testimonials-slider__dots button.active {
  background: var(--clr-primary);
}

@media (max-width: 767px) {
  .testimonials-slider__viewport {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }
  .section-testimonials .testimonials-slider__track > .col {
    flex-basis: 100%;
  }
}
.section-fpk {
  padding: 3rem 0 1.5rem;
  background-color: var(--clr-white);
  color: var(--clr-text);
  text-align: center;
}
.section-fpk .fpk-stats__header {
  color: var(--clr-secondary);
}
.section-fpk .fpk-stats__container {
  background: none;
}
.section-fpk .fpk-stats__container .fpk-stats__ring-border {
  stroke: var(--clr-primary) !important;
}
.section-fpk .fpk-stats__container .fpk-stats__ring-text {
  fill: var(--clr-dark) !important;
}
.section-fpk .fpk-stats__container .fpk-stats__underring-text {
  color: var(--clr-dark) !important;
}
.section-fpk .fpk-stats__explain {
  color: var(--clr-dark);
}
.section-fpk .row {
  justify-content: center;
  gap: 1.5rem;
}
.section-fpk .fpk-stats-row .col-12 {
  flex: 1 1 260px;
  max-width: 360px;
}
.section-fpk .fpk-source-row {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
}
.section-fpk .fpk-source-col {
  width: 100%;
  max-width: none;
}
.section-fpk .fpk-source-col p {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  white-space: normal;
}
@media (min-width: 992px) {
  .section-fpk .fpk-source-col p {
    white-space: nowrap;
  }
}
.section-fpk .np-progressbar {
  --size: 200px;
  display: grid;
  place-items: center;
  width: var(--size);
  height: var(--size);
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: conic-gradient(var(--clr-primary) calc(var(--progress) * 1%), #eef1f4 0);
  color: var(--clr-primary);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}
.section-fpk .np-progressbar::before {
  content: attr(data-progress) "%";
  display: grid;
  place-items: center;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: var(--clr-white);
}
.section-fpk h5 {
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.section-fpk p {
  color: var(--clr-text);
  font-size: 0.875rem;
}

.section-formula .section-heading {
  max-width: 700px;
  margin: 0 auto;
}
.section-formula .row .col img {
  width: 100%;
}

.section-cards {
  background: var(--clr-gray400);
}
.section-cards .cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  --cards-row-gap: 1.5rem;
  gap: var(--cards-row-gap);
}
.section-cards .cards-row + .cards-row {
  margin-top: var(--cards-row-gap) !important;
}
.section-cards .cards-row .card {
  --cards-count-in-row: 1;
  background: var(--clr-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  flex: 0 0 calc(100% / var(--cards-count-in-row) - var(--cards-row-gap) * (var(--cards-count-in-row) - 1) / var(--cards-count-in-row));
}
.section-cards .cards-row .card .card-content {
  padding: 1.5rem;
}
.section-cards .cards-row .card .card-content > * + * {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .section-cards .cards-row .card.card-big {
    --cards-count-in-row: 2;
  }
}
.section-cards .cards-row .card.card-big .card-header {
  display: flex;
  align-items: end;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  padding: 1rem;
  overflow: hidden;
}
.section-cards .cards-row .card.card-big .card-header .card-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-cards .cards-row .card.card-big .card-header .card-heading {
  position: relative;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--clr-white);
}
@media (min-width: 576px) {
  .section-cards .cards-row .card.card-big .card-header .card-heading {
    font-size: 2.5rem;
  }
}
.section-cards .cards-row .card.card-big .card-logo {
  max-width: 12rem;
}
@media (min-width: 576px) {
  .section-cards .cards-row .card.card-small {
    --cards-count-in-row: 2;
  }
}
@media (min-width: 992px) {
  .section-cards .cards-row .card.card-small {
    --cards-count-in-row: 3;
  }
}
.section-cards .cards-row .card.card-small .card-header {
  display: flex;
  justify-content: left;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 576px) {
  .section-cards .cards-row .card.card-small .card-header {
    gap: 1rem;
  }
}
@media (min-width: 576px) {
  .section-cards .cards-row .card.card-small .card-header {
    gap: 1.5rem;
  }
}
.section-cards .cards-row .card.card-small .card-header .card-heading {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--clr-secondary);
}
@media (min-width: 576px) {
  .section-cards .cards-row .card.card-small .card-header .card-heading {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .section-cards .cards-row .card.card-small .card-header .card-heading {
    font-size: 1.25rem;
  }
}
@media (min-width: 1240px) {
  .section-cards .cards-row .card.card-small .card-header .card-heading {
    font-size: 1.5rem;
  }
}
.section-cards .cards-row .card.card-small .card-header img {
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 100%;
}
@media (min-width: 1240px) {
  .section-cards .cards-row .card.card-small .card-header img {
    width: 6rem;
  }
}

.section-stats {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: clamp(48px, 6vw, 86px) 0;
}
.section-stats .parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.92;
  overflow: hidden;
}
.section-stats .parallax-bg img {
  position: relative;
  top: -10%;
  display: block;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .section-stats .parallax-bg img {
    transform: none;
    will-change: auto;
  }
}
.section-stats .section-heading {
  color: var(--clr-white) !important;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.section-stats .container {
  position: relative;
  z-index: 1;
}
.section-stats .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(28px, 4vw, 52px);
}
@media (min-width: 992px) {
  .section-stats .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.section-stats .row > .col {
  max-width: none;
  flex: none;
}
.section-stats .container > .row > .col:first-child img {
  display: block;
  width: min(100%, 470px);
  margin: 0 auto;
}
.section-stats .container > .row > .col:nth-child(2) img {
  display: block;
  width: min(100%, 500px);
  margin: clamp(18px, 3vw, 30px) auto;
  border-radius: 0.5rem;
}
.section-stats .stats-copy {
  font-weight: 500;
}
.section-stats .stats-lead,
.section-stats .stats-description {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.section-stats .stats-lead {
  margin-block: 0;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
}
.section-stats .stats-description {
  margin-block: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.section-offer {
  text-align: center;
}
.section-offer .section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-offer .product-img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1rem;
}
@media (min-width: 992px) {
  .section-offer .product-img {
    max-width: 650px;
  }
}
@media (min-width: 1440px) {
  .section-offer .product-img {
    max-width: 800px;
  }
}
.section-offer .offer-icons {
  align-items: flex-start;
  margin-top: 1rem;
}
.section-offer .offer-icons .offer-icons--item {
  text-align: center;
  color: var(--clr-secondary);
}
.section-offer .offer-icons .offer-icons--item img {
  width: 100%;
  max-width: 80px;
  aspect-ratio: 1/1;
}
.section-offer .offer-icons .offer-icons--item p {
  font-weight: bold;
  margin-top: 0.25rem;
  line-height: 1.25;
}

.section-composition .table-holder {
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.section-composition .table-holder table {
  border-radius: 0.5rem;
  overflow: hidden;
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .section-composition .table-holder table {
    font-size: 0.875rem;
  }
}
.section-composition .table-holder table tr:not(.hide-border) + tr {
  border-top: 1px solid var(--clr-gray700);
}
.section-composition .table-holder table td, .section-composition .table-holder table th {
  border: 0;
}
.section-composition .table-holder p {
  font-size: 0.75rem;
}
.section-composition .table-holder table + p {
  margin-top: 1rem;
}
.section-composition .table-holder img {
  display: block;
  margin: 0 auto;
}

.section-bibliography {
  background: var(--clr-gray400);
}
.section-bibliography ol li {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.section-bibliography ol li + li {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .section-bibliography ol li + li {
    margin-top: 0.25rem;
  }
}

.section-origin {
  background: var(--clr-secondary);
}

.order-wrapper .order-image img {
  width: auto;
  max-height: 430px;
}
.order-wrapper .order-page-text > * + * {
  margin-top: 1rem;
}
.order-wrapper .order-form .order-text {
  margin-bottom: 1rem;
}
.order-wrapper .order-form .order-text::before {
  background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 18C11.3869 18 13.6761 17.0518 15.364 15.364C17.0518 13.6761 18 11.3869 18 9C18 6.61305 17.0518 4.32387 15.364 2.63604C13.6761 0.948212 11.3869 0 9 0C6.61305 0 4.32387 0.948212 2.63604 2.63604C0.948212 4.32387 0 6.61305 0 9C0 11.3869 0.948212 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM12.9727 7.34766L8.47266 11.8477C8.14219 12.1781 7.60781 12.1781 7.28086 11.8477L5.03086 9.59766C4.70039 9.26719 4.70039 8.73281 5.03086 8.40586C5.36133 8.07891 5.8957 8.07539 6.22266 8.40586L7.875 10.0582L11.7773 6.15234C12.1078 5.82188 12.6422 5.82188 12.9691 6.15234C13.2961 6.48281 13.2996 7.01719 12.9691 7.34414L12.9727 7.34766Z" fill="%23A61678"/></svg>') no-repeat;
}
.order-wrapper .order-form form #checkoutBtn {
  background-color: var(--clr-primary);
  background-image: none;
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.order-wrapper del {
  position: relative;
  text-decoration: none;
}
.order-wrapper del::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 12px;
  border-top: 2px solid rgba(255, 0, 0, 0.8);
  transform: rotate(-7deg);
}

/* Keep every summary element on one responsive vertical axis. */
.wpcf7-form .summary {
  --summary-inline-indent: clamp(16px, 3vw, 32px);
  box-sizing: border-box;
  width: 100%;
  padding-inline: var(--summary-inline-indent);
}
.wpcf7-form .summary > :is(h4, p, span, .form-group, .d-flex) {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  box-sizing: border-box;
}
.wpcf7-form .summary .distributor-options {
  padding-inline: 0;
}
.wpcf7-form .summary #checkoutBtnEdit,
.wpcf7-form .summary #checkoutBtnSend {
  width: 100%;
}
.wpcf7-form .summary {
  /* The edit action must share the same outer edges as the final submit. */
}
.wpcf7-form .summary .order-summary-question + .d-flex {
  width: calc(100% + 2 * var(--summary-inline-indent));
  max-width: none;
  margin-inline: calc(-1 * var(--summary-inline-indent));
}
.wpcf7-form .summary #checkoutBtnEdit {
  width: 100% !important;
  max-width: none !important;
}

.telli-content {
  padding-top: calc(var(--header-height, 90px) + var(--google-bar-height, 0px) + 2rem);
}

/* =========================================================
   Contact Form 7 — order form
   ========================================================= */
.wpcf7 .ajax-loader {
  display: none !important;
}
.wpcf7 .wpcf7-mail-sent-ok {
  display: none !important;
}

div.wpcf7-response-output,
div.wpcf7-validation-errors,
span.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-form .form-group.row:not(.checkboxes) {
  margin-bottom: 0.7rem;
}
.wpcf7-form label {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  color: #212529;
  font-weight: 400;
  cursor: pointer;
}
.wpcf7-form label sup {
  color: #d81835;
}
.wpcf7-form label a {
  color: #d81835;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.wpcf7-form label a:hover {
  color: #ba142d;
  text-decoration: underline;
}
.wpcf7-form label .form-check-input-thp ~ .wpcf7-list-item-label {
  color: #212529;
}
.wpcf7-form label .form-check-input-thp ~ .wpcf7-list-item-label a {
  color: #212529;
  font-weight: 500;
  text-decoration: underline;
}
.wpcf7-form label .form-check-input-thp ~ .wpcf7-list-item-label a:hover {
  color: #ba142d;
}
.wpcf7-form {
  /* =====================================================
     Inputs and select
     ===================================================== */
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=number],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=date],
.wpcf7-form select {
  appearance: none;
  width: 100%;
  min-height: 54px;
  padding: 8px 12px;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.wpcf7-form input[type=text]:hover, .wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=number]:hover,
.wpcf7-form input[type=number]:focus,
.wpcf7-form input[type=email]:hover,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:hover,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form input[type=date]:hover,
.wpcf7-form input[type=date]:focus,
.wpcf7-form select:hover,
.wpcf7-form select:focus {
  outline: none;
  border-color: #71bf44;
  box-shadow: none;
}
.wpcf7-form select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik0xOSA5LjVsLTcgNy03LTd6Ii8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 12px;
  cursor: pointer;
}
.wpcf7-form {
  /* =====================================================
     Floating labels
     ===================================================== */
}
.wpcf7-form .np-label-container {
  position: relative;
  display: block;
  width: 100%;
}
.wpcf7-form .np-label-container input[type=text],
.wpcf7-form .np-label-container input[type=number],
.wpcf7-form .np-label-container input[type=email],
.wpcf7-form .np-label-container input[type=tel],
.wpcf7-form .np-label-container input[type=date] {
  padding: 14px 8px;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.wpcf7-form .np-label-container input[type=text]::placeholder,
.wpcf7-form .np-label-container input[type=number]::placeholder,
.wpcf7-form .np-label-container input[type=email]::placeholder,
.wpcf7-form .np-label-container input[type=tel]::placeholder,
.wpcf7-form .np-label-container input[type=date]::placeholder {
  opacity: 0;
}
.wpcf7-form .np-label-container input[type=text]:focus ~ label, .wpcf7-form .np-label-container input[type=text]:not(:placeholder-shown) ~ label,
.wpcf7-form .np-label-container input[type=number]:focus ~ label,
.wpcf7-form .np-label-container input[type=number]:not(:placeholder-shown) ~ label,
.wpcf7-form .np-label-container input[type=email]:focus ~ label,
.wpcf7-form .np-label-container input[type=email]:not(:placeholder-shown) ~ label,
.wpcf7-form .np-label-container input[type=tel]:focus ~ label,
.wpcf7-form .np-label-container input[type=tel]:not(:placeholder-shown) ~ label,
.wpcf7-form .np-label-container input[type=date]:focus ~ label,
.wpcf7-form .np-label-container input[type=date]:not(:placeholder-shown) ~ label {
  top: 0;
  left: 4px;
  padding: 0 4px;
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 1;
  background: linear-gradient(180deg, transparent 50%, #fff 50%);
  transform: translateY(-50%);
}
.wpcf7-form .np-label-container input[type=date]::before {
  display: none;
}
.wpcf7-form .np-label-container label {
  position: absolute;
  top: 0;
  left: 8px;
  z-index: 1;
  display: inline-block;
  width: auto;
  max-width: calc(100% - 16px);
  margin: 0;
  padding: 14px 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 24px;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 0.9;
  background: transparent;
  border-radius: 4px;
  cursor: text;
  user-select: none;
  transition: top 0.3s ease, left 0.3s ease, padding 0.3s ease, font-size 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.wpcf7-form {
  /* =====================================================
     County select — Maakond
     ===================================================== */
}
.wpcf7-form .np-select-wrap {
  position: relative;
}
.wpcf7-form .np-select-wrap::before {
  content: attr(data-placeholder);
  position: absolute;
  top: -7px;
  left: 14px;
  z-index: 2;
  padding: 0 4px;
  background-color: #fff;
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}
.wpcf7-form .np-select-wrap select.form-control {
  height: 54px;
  border-color: #ced4da;
}
.wpcf7-form .np-select-wrap select.form-control:hover, .wpcf7-form .np-select-wrap select.form-control:focus {
  border-color: #ced4da;
}
.wpcf7-form .np-select-wrap .np-label-container label {
  display: none !important;
}
.wpcf7-form {
  /* =====================================================
     Radio fields
     ===================================================== */
}
.wpcf7-form .form-check-inline {
  display: inline-flex;
  align-items: center;
  width: auto;
  gap: 0.45rem;
}
.wpcf7-form .form-check-inline:not(:first-child) {
  margin-left: 1rem !important;
}
.wpcf7-form .form-check-inline input[type=radio] {
  appearance: auto;
  flex: 0 0 20px;
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #1e2882;
  border-radius: 50%;
  box-shadow: none !important;
  accent-color: #583eaa;
}
.wpcf7-form .form-check-inline label {
  display: inline-block;
  width: auto;
  margin: 0;
  line-height: 1.2;
}

.form-group .form-check-one a {
  color: #d81835;
}

.wpcf7-form .np-select-wrap select.form-control {
  height: 54px;
  padding-right: 40px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23212529' d='M3.2 5.5 8 10.3l4.8-4.8 1.1 1.1L8 12.5 2.1 6.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  appearance: none;
  cursor: pointer;
}

.telli-content .icon-check,
.telli-content .list-checkbox li::before {
  background-image: none;
  background-color: #583eaa;
  -webkit-mask: url("../../assets/img/check.svg") left top/28px 24px no-repeat;
  mask: url("../../assets/img/check.svg") left top/28px 24px no-repeat;
}

.wpcf7-form #y_flat:disabled,
.wpcf7-form #y_flat.field-disabled {
  color: #969696;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
  cursor: not-allowed;
  opacity: 1;
}

.page-pytania-i-odpowiedzi .page-content,
.faq-wrapper .page-content {
  padding-bottom: 5rem;
}
.page-pytania-i-odpowiedzi .row > .col,
.faq-wrapper .row > .col {
  min-width: 0;
}
.page-pytania-i-odpowiedzi .faq-packshot,
.faq-wrapper .faq-packshot {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}
.page-pytania-i-odpowiedzi .faq-packshot .packshot-order,
.faq-wrapper .faq-packshot .packshot-order {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
}
.page-pytania-i-odpowiedzi .faq-packshot .btn,
.faq-wrapper .faq-packshot .btn {
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .page-pytania-i-odpowiedzi .page-content .row,
  .faq-wrapper .page-content .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: start;
  }
  .page-pytania-i-odpowiedzi .page-content .row > .col,
  .faq-wrapper .page-content .row > .col {
    width: auto;
    max-width: none;
    flex: none;
  }
  .page-pytania-i-odpowiedzi .faq-packshot-col,
  .faq-wrapper .faq-packshot-col {
    align-self: stretch;
  }
  .page-pytania-i-odpowiedzi .faq-packshot,
  .faq-wrapper .faq-packshot {
    position: sticky;
    top: calc(var(--header-height, 104px) + 1rem);
    max-height: calc(100vh - var(--header-height, 104px) - 2rem);
  }
  .page-pytania-i-odpowiedzi .faq-packshot .packshot-order,
  .faq-wrapper .faq-packshot .packshot-order {
    max-height: calc(100vh - var(--header-height, 104px) - 8rem);
    object-fit: contain;
  }
}

.thp-wrapper .thp-confirmation {
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(2rem, 5vw, 4.5rem);
}
.thp-wrapper .np-thp-content {
  max-width: 960px;
  margin-inline: auto;
}
.thp-wrapper .np-thp-content h3 {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.thp-wrapper .np-thp-content p {
  max-width: 900px;
  margin-inline: auto;
}
.thp-wrapper .row + .row {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.thp-wrapper .row .col > * + * {
  margin-top: 1rem;
}
.thp-wrapper .thp_image {
  display: flex;
  justify-content: center;
}
.thp-wrapper .thp_image .packshot {
  display: block;
  width: min(100%, 700px);
  height: auto;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: clamp(90px, 10vw, 145px);
}
