*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

button {
  -webkit-appearance: none;
  all: unset;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  all: unset;
  cursor: pointer;
}

html {
  font-size: var(--font-size);
  font-family: var(--font-text);
  color: #515666;
}

.aqu__link {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  line-height: var(--line-height-m);
  transition: 0.2s;
  color: var(--color-primary);
  cursor: pointer;
}
.aqu__link:hover {
  color: var(--color-primary-link-hover);
}
.aqu__link:hover span + svg {
  transform: translateX(3px);
}
.aqu__link:hover path {
  stroke: var(--color-primary-link-hover);
}
.aqu__link--hover_svg_fill:hover path {
  stroke: unset;
  fill: var(--color-primary-link-hover);
}
.aqu__link span + svg {
  margin-top: 0.1rem;
  transition: 0.2s;
}
.aqu__link svg {
  width: 0.7rem;
  height: 0.7rem;
}
.aqu__link--light {
  color: var(--color-text-light);
}
.aqu__link--category {
  text-transform: uppercase;
}
.aqu__link--underline {
  text-decoration: underline;
}
.aqu__link--secondary {
  color: var(--color-secondary);
  text-decoration: underline;
}
.aqu__link--secondary:hover {
  color: var(--color-primary);
}
.aqu__link--s {
  font-size: var(--font-size-s);
}
.aqu__link img {
  width: 0.9rem;
  height: 0.9rem;
}
.aqu__link--invert {
  color: var(--color-text-invert);
}
.aqu__link--invert:hover {
  color: var(--color-primary);
}
.aqu__link--padding {
  padding: 0.5rem;
  margin: -0.5rem;
}

.aqu__round_button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-button-terciary);
  border-radius: 50%;
  width: 37px;
  height: 37px;
  transition: 0.2s;
  flex-shrink: 0;
}
.aqu__round_button:hover {
  background: var(--color-button-terciary-hover);
}
.aqu__round_button img {
  width: 16px;
}
@media (min-width: 640px) {
  .aqu__round_button {
    width: 45px;
    height: 45px;
  }
  .aqu__round_button img {
    width: 20px;
  }
}

.aqu__svg_button {
  display: block;
  padding: 0.5rem;
  margin: -0.5rem;
  width: 1rem;
}
.aqu__svg_button svg {
  width: 0.9rem;
  transition: 0.2s;
}
.aqu__svg_button--fill svg {
  fill: var(--color-text-light);
}
.aqu__svg_button--fill:hover svg {
  fill: var(--color-primary);
}

.aqu__button {
  position: relative;
  background: var(--color-primary);
  color: var(--color-background);
  transition: 0.2s;
  border-radius: var(--box-radius-m);
  padding: 0.7rem 2rem;
  line-height: 1.2;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}
.aqu__button:hover {
  background: var(--color-primary-hover);
}
.aqu__button:disabled {
  background: var(--color-border);
  color: var(--color-text-light);
  cursor: not-allowed;
  pointer-events: none;
}
.aqu__button--terciary {
  background: var(--color-button-terciary);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.aqu__button--terciary:hover {
  color: var(--color-text);
  background: var(--color-border);
}
.aqu__button--secondary {
  background: var(--color-secondary);
}
.aqu__button--secondary:hover {
  background: var(--color-secondary-hover);
}
.aqu__button--nude {
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}
.aqu__button--nude:hover {
  background: var(--color-primary);
  color: var(--color-background);
}
.aqu__button--nude.aqu__button--secondary {
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.aqu__button--nude.aqu__button--secondary:hover {
  background: var(--color-border);
  color: var(--color-text);
}
.aqu__button--s {
  font-size: 0.9rem;
  padding: 0.4rem 0.7rem;
}
.aqu__button--l {
  font-size: var(--font-size-l);
  padding: 0.8rem 2rem 1rem 2rem;
}
.aqu__button--narrow {
  padding: 0.6rem 0.8rem;
}
.aqu__button--align_left {
  align-self: flex-start;
}

.aqu__button--loading, .wpcf7-form.submitting .aqu__button {
  pointer-events: none;
}
.aqu__button--loading span, .wpcf7-form.submitting .aqu__button span {
  opacity: 0;
}
.aqu__button--loading::after, .wpcf7-form.submitting .aqu__button::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: button-dots-animation 1s infinite linear;
  background: no-repeat radial-gradient(circle closest-side, var(--color-background) 90%, rgba(0, 0, 0, 0)) 0% 50%, no-repeat radial-gradient(circle closest-side, var(--color-background) 90%, rgba(0, 0, 0, 0)) 50% 50%, no-repeat radial-gradient(circle closest-side, var(--color-background) 90%, rgba(0, 0, 0, 0)) 100% 50%;
  background-size: 33.33% 33.33%, 33.33% 33.33%, 33.33% 33.33%;
}
@keyframes button-dots-animation {
  0% {
    background-size: 33.3333333333% 0%, 33.3333333333% 0%, 33.3333333333% 0%;
  }
  12.5% {
    background-size: 33.3333333333% 33%, 33.3333333333% 0%, 33.3333333333% 0%;
  }
  25% {
    background-size: 33.3333333333% 66%, 33.3333333333% 33%, 33.3333333333% 0%;
  }
  37.5% {
    background-size: 33.3333333333% 100%, 33.3333333333% 66%, 33.3333333333% 33%;
  }
  50% {
    background-size: 33.3333333333% 66%, 33.3333333333% 100%, 33.3333333333% 66%;
  }
  62.5% {
    background-size: 33.3333333333% 33%, 33.3333333333% 66%, 33.3333333333% 100%;
  }
  75% {
    background-size: 33.3333333333% 0%, 33.3333333333% 33%, 33.3333333333% 66%;
  }
  87.5% {
    background-size: 33.3333333333% 0%, 33.3333333333% 0%, 33.3333333333% 33%;
  }
  100% {
    background-size: 33.3333333333% 0%, 33.3333333333% 0%, 33.3333333333% 0%;
  }
}

.wp-block-button__link {
  background: var(--color-primary);
  color: var(--color-background) !important;
  text-decoration: none !important;
  transition: 0.2s;
  border-radius: var(--box-radius-m);
  padding: 0.6rem 2rem;
}
.wp-block-button__link:hover {
  background: var(--color-primary-hover);
}

.aqu__button_wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.7rem;
  justify-content: center;
}
.aqu__button_wrap--end {
  justify-content: end;
}
.aqu__button_wrap--full_width .aqu__button {
  width: 100%;
}
.aqu__button_wrap--space_between {
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 640px) {
  .aqu__button_wrap--space_between {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 639px) {
  .aqu__button_wrap--space_between .aqu__button {
    width: 100%;
  }
}
.aqu__button_wrap--top_margin {
  margin-top: 1rem;
}

.nav-links, ul.page-numbers {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .nav-links, ul.page-numbers {
    gap: 1rem;
    margin-top: 1rem;
  }
}

.page-numbers {
  padding: 0.4rem 0.6rem;
  border-radius: var(--box-radius-m);
  transition: 0.2s;
  align-items: center;
}
.page-numbers.current {
  margin: 0 0.6rem;
  color: var(--color-background);
  background: var(--color-secondary);
}

a.page-numbers, button.page-numbers {
  cursor: pointer;
}
a.page-numbers:hover, button.page-numbers:hover {
  color: var(--color-primary);
}

.woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  column-gap: 0.7rem;
  flex-wrap: wrap;
}

.aqu-popup {
  background: var(--color-popup-background);
  padding: 3rem;
  justify-content: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.2s ease-out;
  border: var(--border-popup);
}
.aqu-popup__overlay--show .aqu-popup {
  transform: scale(1);
}

.aqu-popup__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-overlay);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}
.aqu-popup__overlay--show {
  opacity: 1;
  pointer-events: auto;
}
.aqu-popup__wrap {
  padding: 1.5rem;
}
.aqu-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.aqu-popup__close:hover svg {
  fill: var(--color-secondary);
}
.aqu-popup__close svg {
  transition: 0.2s;
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--color-text-lightest);
}

.aqu-popup {
  border-top: 8px solid var(--color-primary);
}
.aqu-popup--fail {
  border-top-color: var(--color-wrong);
}
.aqu-popup--success {
  border-top-color: var(--color-correct);
}

.aqu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.aqu-gallery-grid__item {
  width: 100%;
}
.aqu-gallery-grid__item:first-child {
  grid-column: span 6;
}
.aqu-gallery-grid__image {
  width: 100%;
}
.aqu-gallery-lightbox {
  display: flex;
  align-items: normal;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  z-index: 4;
}
.aqu-gallery-lightbox__nav {
  position: absolute;
  bottom: 1.5rem;
  left: calc(50% - 32px);
  transform: translateX(-50%);
}
.aqu-gallery-lightbox__nav--next {
  left: calc(50% - 12px);
  transform: translateX(50%);
}
.aqu-gallery-lightbox__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  max-width: 1348px;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.aqu-gallery-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.aqu-gallery-lightbox__img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.aqu-form__input_button_wrap {
  display: flex;
  gap: 0.5rem;
}
.aqu-form__input_button_wrap--w_button {
  border-radius: calc(var(--box-radius-m) + 2px);
  outline: none;
  background: var(--color-background);
}
.aqu-form__input_button_wrap .aqu__button {
  margin: 0.2rem;
  border: 0;
}
.aqu-form__optional {
  display: inline !important;
  font-size: var(--font-size-s);
}
.aqu-form__label--flex {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
.aqu-form__label--required::after {
  content: "*";
  color: var(--color-primary);
}
.aqu-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.aqu-form__field--l_gaps {
  gap: 0.5rem;
}
.aqu-form__field--checkbox {
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}
.aqu-form__field--checkbox a {
  text-decoration: underline;
}
.aqu-form__fields--invert .aqu-form__field {
  color: var(--color-background);
}

.aqu-form__description {
  font-size: var(--font-size-s);
  color: var(--color-text-light);
}
.aqu-form__checkbox {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-secondary);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.aqu-form__radio {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-secondary);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.aqu-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .aqu-form__fields--l_gaps {
    gap: 1.5rem;
  }
}
.aqu-form__fields--conditional {
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.aqu-checkout__create_account .aqu-form__fields--conditional {
  border-bottom: 0;
}

.aqu-form__input {
  border-radius: var(--box-radius-m);
  outline: none;
  border: 1px solid var(--color-border-input);
  background: var(--color-background);
  padding: 0.6rem 0.8rem;
  color: var(--color-text);
  font-size: var(--font-size);
  font-family: var(--font-text);
  width: 100%;
}
.aqu-form__input:focus {
  border: 1px solid var(--color-secondary);
}
.aqu-form__input::placeholder {
  color: var(--color-text-light);
}
.aqu-form__input_button_wrap--w_button .aqu-form__input {
  border: 0;
  padding-right: 0;
}

.aqu-form__input--select {
  cursor: pointer;
  width: max-content;
}
.aqu-form__input--icon {
  padding-left: 42px;
}
.aqu-form__input_wrap {
  position: relative;
}
.aqu-form__input_wrap svg {
  position: absolute;
  height: 22px;
  width: 22px;
  padding-right: 9px;
  top: calc(50% - 11px);
  left: 12px;
  border-right: 1px solid var(--color-border-input);
  transition: 0.1s;
}
.aqu-form__input_wrap:has(input:focus) svg path {
  fill: var(--color-border-input);
  fill-opacity: 1;
}
.aqu-form__message {
  color: var(--color-wrong);
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.aqu-form__message--success {
  color: var(--color-correct);
}
.aqu-form-password_strength {
  margin-top: -0.2rem;
  display: grid;
  column-gap: 1rem;
  row-gap: 0;
  grid-template-columns: 1fr max-content;
  align-items: center;
}
.aqu-form-password_strength--0 {
  display: none;
}
.aqu-form-password_strength__bar {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 1rem;
  background: var(--color-border);
}
.aqu-form-password_strength__bar::after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  transition: 0.3s ease-out;
  border-radius: 1rem;
}
.aqu-form-password_strength--1 .aqu-form-password_strength__bar::after {
  background: var(--color-wrong);
  width: 30%;
}

.aqu-form-password_strength--2 .aqu-form-password_strength__bar::after {
  background: var(--color-alert);
  width: 60%;
}

.aqu-form-password_strength--3 .aqu-form-password_strength__bar::after {
  background: var(--color-correct);
  width: 100%;
}

.aqu-form-password_strength__strength {
  text-align: right;
  height: 1rem;
}
.aqu-form-password_strength--1 .aqu-form-password_strength__strength {
  color: var(--color-wrong);
}

.aqu-form-password_strength--2 .aqu-form-password_strength__strength {
  color: var(--color-alert);
}

.aqu-form-password_strength--3 .aqu-form-password_strength__strength {
  color: var(--color-correct);
  width: 100%;
}

.aqu-form-password_strength__hint {
  margin-top: 0.1rem;
  grid-column: span 2;
  color: var(--color-text-light);
  font-size: var(--font-size-s);
}
@media (min-width: 640px) {
  .aqu-form-password_strength__hint {
    font-size: var(--font-size);
  }
}

.select2-selection {
  height: 41px !important;
  border: 1px solid var(--color-border-input) !important;
  border-radius: var(--box-radius-m) !important;
}
.select2-selection__rendered {
  padding: 0.6rem 0.8rem;
  line-height: 1.3 !important;
}
.select2-selection__arrow {
  top: 0.5rem !important;
  right: 0.3rem !important;
}

.aqu-form__input#billing_phone {
  max-width: 250px;
}

.aqu-form__input#billing_postcode, .aqu-form__input#shipping_postcode {
  max-width: 150px;
}

.aqu-form__input#billing_city, .aqu-form__input#shipping_city {
  max-width: 250px;
}

.aqu-form__input#aqu_billing_company_id, .aqu-form__input#aqu_billing_company_tax, .aqu-form__input#aqu_billing_company_vat {
  max-width: 200px;
}

.select2-container {
  max-width: 350px;
}

.unhide {
  opacity: 0;
  height: 0;
  pointer-events: none;
}

.unhide.hide {
  opacity: 1;
  height: auto;
  pointer-events: all;
}

.screen-reader-response {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: var(--color-wrong);
  margin-top: 0.2rem;
}

.hidden-fields-container {
  position: absolute;
}

[x-cloak] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
}

strong, b {
  font-weight: var(--font-weight-bold);
}

.aqu__grid_list {
  display: grid;
  gap: 1rem;
}
.aqu__grid_list--6 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .aqu__grid_list--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .aqu__grid_list--6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.aqu__grid_list--4 {
  grid-template-columns: repeat(4, 1fr);
}
.aqu__grid_list--s_gaps {
  gap: 0.5rem;
}

.aqu__contents {
  display: contents;
}

.aqu-section {
  width: 100%;
  overflow: hidden;
}
.aqu-section--no_overflow {
  overflow: unset;
}
.aqu-section--page {
  padding: 1.5rem 0 3rem 0;
}
@media (min-width: 640px) {
  .aqu-section--page {
    padding: 2rem 0 3rem 0;
  }
}
.aqu-section--padding_bottom_0 {
  padding-bottom: 0 !important;
  margin-bottom: -1.5rem;
}
.aqu-section--invert {
  background: var(--color-secondary);
}
.aqu-section--last {
  margin-bottom: -3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .aqu-section--last {
    margin-bottom: -1.5rem;
  }
}
.aqu-section--account {
  background: var(--color-secondary-lightest);
}
.aqu-section--blog {
  background: var(--color-background-secondary);
}

.aqu__hr {
  border-top: 1px solid var(--color-border);
  width: 100%;
}

.aqu-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1348px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
.aqu-container--14_width {
  max-width: 1179.5px;
}
.aqu-container--12_width {
  max-width: 1011px;
}
.aqu-container--10_width {
  max-width: 842.5px;
}
.aqu-container--8_width {
  max-width: 674px;
}
.aqu-container--6_width {
  max-width: 505.5px;
}
.aqu-container--gaps_l {
  gap: 3rem;
}
.aqu-container--padding {
  padding: 3rem 1.5rem 3.5rem 1.5rem;
}
.aqu-container--last_footer {
  padding-bottom: 6rem;
  margin-bottom: -3.5rem;
}
.aqu-container--center {
  align-items: center;
}
.aqu-container__symbol {
  position: absolute;
  width: 135px;
  right: -150px;
  top: -2.1rem;
}

.text {
  line-height: 1.5;
}
.text--light {
  color: var(--color-text-light);
}
.text--invert {
  color: var(--color-text-invert);
}
.text--invert.text--light {
  color: var(--color-text-invert-light);
}
.aqu-section--invert .text {
  color: var(--color-text-invert);
}
.aqu-section--invert .text.text--light {
  color: var(--color-text-invert-light);
}

.text--l {
  font-size: var(--font-size-l);
}
.text--center {
  text-align: center;
}
.text--styled p {
  margin-bottom: 1rem;
}
.text--styled p:last-child {
  margin-bottom: 0;
}
.text--styled a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: 0.2s;
}
.text--styled a:hover {
  color: var(--color-primary-link-hover);
}
.text--styled h2 {
  font-size: var(--headline-size-h2);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}
.text--styled h3 {
  font-size: var(--headline-size-h3);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}
.text--styled h4 {
  font-size: var(--headline-size-h4);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}
.text--styled ul {
  list-style-type: disc;
  padding-left: 2rem;
  padding-bottom: 1rem;
}
.text--styled ol {
  list-style-type: decimal;
  padding-left: 2.4rem;
  padding-bottom: 1rem;
}
.text--styled blockquote {
  background: var(--color-background-secondary);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.text--styled figure {
  padding-bottom: 1rem;
}
.text--styled hr {
  border-color: var(--color-border);
  margin: 1rem 0;
}

.aqu__headline_wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.aqu__headline_wrap--m {
  gap: 0.2rem;
}
.aqu__headline_wrap--l {
  gap: 1rem;
}
.aqu__headline_wrap--xl {
  gap: 1rem;
}
@media (min-width: 768px) {
  .aqu__headline_wrap--xl {
    gap: 1.5rem;
  }
}

.aqu__navigation {
  display: flex;
  gap: 2rem;
}

.aqu__headline {
  font-size: var(--headline-size-h1);
  color: var(--headline-color);
  font-weight: var(--headline-font-weight);
  font-family: var(--headline-font-family);
  line-height: var(--headline-line-height);
}
.aqu__headline--h2 {
  font-size: var(--headline-size-h2);
}
.aqu__headline--h3 {
  font-size: var(--headline-size-h3);
}
.aqu__headline--h4 {
  font-size: var(--headline-size-h4);
}
.aqu__headline--h5 {
  font-size: var(--headline-size-h5);
  line-height: 1.1;
}
.aqu__headline--invert {
  color: var(--color-text-invert);
}
.aqu__headline--margin_bottom {
  margin-bottom: 1rem;
}
.aqu__headline--center {
  text-align: center;
}
.aqu-section--invert .aqu__headline {
  color: var(--color-text-invert);
}

.aqu__block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.aqu__block--end {
  align-items: end;
}
.aqu__block--m {
  gap: 1.5rem;
}
.aqu__block--s {
  gap: 1rem;
}
.aqu__block--xs {
  gap: 0.5rem;
}
.aqu__block--xxs {
  gap: 0.2rem;
}
.aqu__block--l {
  gap: 2rem;
}
@media (min-width: 768px) {
  .aqu__block--l {
    gap: 3rem;
  }
}
.aqu__block--center {
  align-items: center;
}
@media (min-width: 768px) {
  .aqu__block--columns {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.aqu__label {
  display: block;
  color: var(--color-text-light);
}
.aqu__label--margin_bottom {
  margin-bottom: 0.6rem;
}
.aqu__label--border {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--color-border);
}
.aqu__label--small {
  font-size: var(--font-size-s);
}
.aqu__label--center {
  text-align: center;
}
.aqu__label--invert {
  color: var(--color-text-invert-light);
  border-bottom: 1px solid var(--color-border-invert);
}
.aqu__label--simple {
  border-bottom: none;
}

.aqu-ad_header {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  flex: 1;
}
@container ad-header-container (min-width: 800px) {
  .aqu-ad_header {
    flex-direction: row;
  }
}
.aqu-ad_header__wrap {
  display: flex;
  flex: 1;
  container-type: inline-size;
  container-name: ad-header-container;
}
.aqu-ad_header__button {
  margin-top: 1rem;
}
.aqu-ad_header__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--color-secondary);
  padding: 1.5rem;
  justify-content: start;
  align-items: flex-start;
  order: 2;
  flex: 1;
}
.aqu-ad_header__wrap--carousel .aqu-ad_header__content {
  padding: 1.5rem 1.5rem 3rem 1.5rem;
}

@container ad-header-container (min-width: 800px) {
  .aqu-ad_header__content {
    justify-content: center;
    order: unset;
    padding: 2rem;
    min-height: 380px;
  }
  .aqu-ad_header__wrap--carousel .aqu-ad_header__content {
    padding: 2rem 1.5rem 3rem 2.5rem;
  }
  .aqu-ad_header__wrap--no_image .aqu-ad_header__content {
    min-height: auto;
  }
}
.aqu-ad_header__image {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
@container ad-header-container (min-width: 800px) {
  .aqu-ad_header__image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.aqu-ad_header__image_wrap {
  position: relative;
  width: 100%;
  display: contents;
}
@container ad-header-container (min-width: 800px) {
  .aqu-ad_header__image_wrap {
    display: block;
    width: 50%;
  }
}
@container ad-header-container (min-width: 900px) {
  .aqu-ad_header__image_wrap {
    width: 60%;
  }
}

.aqu-notice {
  border-top: 4px solid var(--color-secondary);
  background: var(--color-background-secondary);
  color: var(--color-secondary);
  padding: 1.5rem;
  line-height: 1.3;
  opacity: 1;
  transition: transform 0.2s ease-out;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aqu-notice--s {
  padding: 1rem;
}
.aqu-notice--animated {
  animation: aqu_notice_animation 0.2 ease;
}
@keyframes aqu_notice_animation {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
.aqu-notice--wrong {
  border-top: 4px solid var(--color-wrong);
  background: var(--color-wrong-background);
  color: var(--color-wrong);
}
.wpcf7 form.sent .aqu-notice--wrong {
  border-top-color: var(--color-correct);
  color: var(--color-correct);
  background: var(--color-correct-background);
}

.wpcf7 form.init .aqu-notice, .wpcf7 form.resetting .aqu-notice, .wpcf7 form.submitting .aqu-notice {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

.aqu-notice--tight {
  padding: 1rem;
}

.aqu__newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aqu__content_loader_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.aqu__content_loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5px solid var(--color-text);
  opacity: 0.2;
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.aqu__text_loading {
  overflow: hidden;
  position: relative;
}
.aqu__text_loading span, .aqu__text_loading svg {
  opacity: 0;
}
.aqu__text_loading::before, .aqu__text_loading::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.aqu__text_loading::before {
  left: 0;
  background: rgba(0, 0, 0, 0.15);
}
.aqu__text_loading::after {
  left: -100%;
  background: linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.3) 50%, transparent 75%);
  animation: aqu-stock-loading 1.2s infinite;
}
@keyframes aqu-stock-loading {
  100% {
    left: 100%;
  }
}
.aqu__text_loading--show {
  overflow: unset;
}
.aqu__text_loading--show::before, .aqu__text_loading--show::after {
  display: none;
}
.aqu__text_loading--show span, .aqu__text_loading--show svg {
  opacity: 1;
}

.fake_hide {
  opacity: 0;
  height: 0;
  pointer-events: none;
  margin: 0 !important;
  padding: 0 !important;
}

.hidden {
  display: none;
}

.aqu__image_banner {
  flex: 1;
  transition: 0.2s;
}
.aqu__image_banner:hover {
  box-shadow: var(--box-shadow-hover);
}
.aqu__image_banner img {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
}

.aqu__grid_table {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
@media (min-width: 768px) {
  .aqu__grid_table {
    width: auto;
    grid-template-columns: minmax(0, max-content) minmax(0, max-content);
  }
}
.aqu__grid_table__row {
  display: contents;
}
.aqu__grid_table__cell {
  padding: 0.5rem 0;
}
.aqu__grid_table__row:first-child .aqu__grid_table__cell {
  padding-top: 0;
}

.aqu__grid_table__row:last-child .aqu__grid_table__cell {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .aqu__grid_table__cell:first-child {
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .aqu__grid_table__cell:last-child {
    padding-left: 1rem;
  }
}
.aqu__grid_table__cell--value {
  font-weight: var(--font-weight-bold);
  padding-top: 0;
}
@media (min-width: 768px) {
  .aqu__grid_table__cell--value {
    padding-top: 0.5rem;
  }
}