body .wpgb-facet.wpgb-loading {
  opacity: 1 !important;
}
body .wpgb-facet-title {
  font-weight: 700;
  font-size: var(--text-l) !important;
}
body .wpgb-facet .wpgb-range-facet .wpgb-range-slider {
  background-color: var(--base-light);
}
body .wpgb-facet .wpgb-range-facet .wpgb-range-slider .wpgb-range-thumb {
  border-color: var(--primary);
  background-color: var(--primary);
}
body .wpgb-facet .wpgb-range-facet .wpgb-range-clear {
  background-color: var(--action);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-s);
  padding-inline: var(--space-xs);
}
body .wpgb-facet select.wpgb-select {
  border-radius: var(--radius-s);
  border-color: var(--base-light);
  color: var(--base) !important;
  transition: 0.2s all ease-in-out;
}
body .wpgb-facet select.wpgb-select:hover {
  border-color: var(--primary);
}
body .wpgb-facet .wpgb-selection-facet .wpgb-button {
  border-color: transparent;
  background-color: var(--primary-trans-20);
  border-radius: var(--radius-s);
  transition: 0.2s all ease-in-out;
}
body .wpgb-facet .wpgb-selection-facet .wpgb-button span {
  color: var(--primary);
  font-weight: 700;
  transition: 0.2s all ease-in-out;
}
body .wpgb-facet .wpgb-selection-facet .wpgb-button span::before, body .wpgb-facet .wpgb-selection-facet .wpgb-button span::after {
  background-color: var(--primary);
  transition: 0.2s all ease-in-out;
}
body .wpgb-facet .wpgb-selection-facet .wpgb-button:hover {
  background-color: var(--primary);
}
body .wpgb-facet .wpgb-selection-facet .wpgb-button:hover span {
  color: var(--white);
}
body .wpgb-facet .wpgb-selection-facet .wpgb-button:hover span::before, body .wpgb-facet .wpgb-selection-facet .wpgb-button:hover span::after {
  background-color: var(--white);
}
body .wpgb-facet button.wpgb-reset {
  background-color: var(--action);
  border-radius: var(--radius-s);
  transition: 0.2s all ease-in-out;
}
body .wpgb-facet button.wpgb-reset:hover {
  background-color: var(--action-hover);
}

body .wa-load-more {
  display: flex;
  border: 1px solid var(--primary);
  background-color: var(--white);
  padding: calc(var(--space-xs) * 1.3) var(--space-s);
  transition: 0.2s all ease-in-out;
  color: var(--base);
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  body .wa-load-more {
    margin-inline: auto;
  }
}
@media (min-width: 1281px) {
  body .wa-load-more:hover {
    background-color: var(--primary);
    color: var(--white);
  }
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  animation: pulse-error 2s infinite;
  box-shadow: 0 0 0 rgba(255, 233, 233, 0.95);
  background: #ffe9e9 !important;
  color: #a92f2f;
  margin-bottom: var(--space-m) !important;
  border-radius: var(--radius-s);
  border: none !important;
  padding: 1.2em 2em 1.2em 1.2em;
  margin: 1.6rem 0rem;
  position: relative;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}

.wpcf7 form.sent .wpcf7-response-output {
  animation: pulse-message 2s infinite;
  box-shadow: 0 0 0 rgba(242, 250, 228, 0.95);
  background: #f7ffea !important;
  color: #7fa92f;
  margin-bottom: var(--space-m) !important;
  border-radius: var(--radius-s);
  border: none !important;
  padding: 1.2em 2em 1.2em 1.2em;
  margin: 1.6rem 0rem;
  position: relative;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}

label.screen-reader-text {
  display: none;
}

span.required {
  color: #a92f2f;
}

@-webkit-keyframes pulse-error {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 233, 233, 0.95);
  }
  70% {
    -webkit-box-shadow: 0 0 0 12px rgba(255, 233, 233, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 233, 233, 0);
  }
}
@keyframes pulse-error {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 233, 233, 0.95);
    box-shadow: 0 0 0 0 rgba(255, 233, 233, 0.95);
  }
  70% {
    -moz-box-shadow: 0 0 0 12px rgba(255, 233, 233, 0);
    box-shadow: 0 0 0 12px rgba(255, 233, 233, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 233, 233, 0);
    box-shadow: 0 0 0 0 rgba(255, 233, 233, 0);
  }
}
@-webkit-keyframes pulse-message {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 250, 228, 0.95);
  }
  70% {
    -webkit-box-shadow: 0 0 0 12px rgba(242, 250, 228, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 250, 228, 0);
  }
}
@keyframes pulse-message {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(242, 250, 228, 0.95);
    box-shadow: 0 0 0 0 rgba(242, 250, 228, 0.95);
  }
  70% {
    -moz-box-shadow: 0 0 0 12px rgba(242, 250, 228, 0);
    box-shadow: 0 0 0 12px rgba(242, 250, 228, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(242, 250, 228, 0);
    box-shadow: 0 0 0 0 rgba(242, 250, 228, 0);
  }
}
@-webkit-keyframes pulse-info {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 249, 237, 0.95);
  }
  70% {
    -webkit-box-shadow: 0 0 0 12px rgba(255, 249, 237, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 249, 237, 0);
  }
}
@keyframes pulse-info {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 249, 237, 0.95);
    box-shadow: 0 0 0 0 rgba(255, 249, 237, 0.95);
  }
  70% {
    -moz-box-shadow: 0 0 0 12px rgba(255, 249, 237, 0);
    box-shadow: 0 0 0 12px rgba(255, 249, 237, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 249, 237, 0);
    box-shadow: 0 0 0 0 rgba(255, 249, 237, 0);
  }
}
.wpcf7-response-output {
  position: fixed !important;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

@media (max-width: 767px) {
  .wpcf7-response-output {
    width: 80% !important;
  }
}
@keyframes wa-button-spinner {
  to {
    transform: rotate(360deg);
  }
}
.wa-button--primary {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--primary:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.wa-button--primary:active {
  transform: translateY(1px);
}
.wa-button--primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  border-color: var(--primary);
}
.wa-button--primary.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--primary.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--outline-primary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-primary:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.wa-button--outline-primary:active {
  transform: translateY(1px);
}
.wa-button--outline-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  border-color: var(--primary);
}
.wa-button--outline-primary.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-primary.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--primary);
}

.wa-button--secondary {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--secondary:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.wa-button--secondary:active {
  transform: translateY(1px);
}
.wa-button--secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--white);
  border-color: var(--secondary);
}
.wa-button--secondary.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--secondary.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--outline-secondary {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-secondary:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.wa-button--outline-secondary:active {
  transform: translateY(1px);
}
.wa-button--outline-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--white);
  border-color: var(--secondary);
}
.wa-button--outline-secondary.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-secondary.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--secondary);
}

.wa-button--conversion {
  background-color: var(--action);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--conversion:focus {
  outline: 2px solid var(--action);
  outline-offset: 2px;
}
.wa-button--conversion:active {
  transform: translateY(1px);
}
.wa-button--conversion:hover {
  background-color: var(--action-hover);
  color: var(--white);
  border-color: var(--action);
}
.wa-button--conversion.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--conversion.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--outline-conversion {
  background-color: transparent;
  color: var(--action);
  border: 2px solid var(--action);
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-conversion:focus {
  outline: 2px solid var(--action);
  outline-offset: 2px;
}
.wa-button--outline-conversion:active {
  transform: translateY(1px);
}
.wa-button--outline-conversion:hover {
  background-color: var(--action-hover);
  color: var(--white);
  border-color: var(--action);
}
.wa-button--outline-conversion.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-conversion.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--action);
}

.wa-button--success {
  background-color: #28a745;
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--success:focus {
  outline: 2px solid #28a745;
  outline-offset: 2px;
}
.wa-button--success:active {
  transform: translateY(1px);
}
.wa-button--success:hover {
  background-color: #1e7e34;
  color: var(--white);
  border-color: #28a745;
}
.wa-button--success.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--success.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--outline-success {
  background-color: transparent;
  color: #28a745;
  border: 2px solid #28a745;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-success:focus {
  outline: 2px solid #28a745;
  outline-offset: 2px;
}
.wa-button--outline-success:active {
  transform: translateY(1px);
}
.wa-button--outline-success:hover {
  background-color: #1e7e34;
  color: var(--white);
  border-color: #28a745;
}
.wa-button--outline-success.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-success.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: #28a745;
}

.wa-button--danger {
  background-color: #dc3545;
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--danger:focus {
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}
.wa-button--danger:active {
  transform: translateY(1px);
}
.wa-button--danger:hover {
  background-color: #bd2130;
  color: var(--white);
  border-color: #dc3545;
}
.wa-button--danger.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--danger.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--outline-danger {
  background-color: transparent;
  color: #dc3545;
  border: 2px solid #dc3545;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-danger:focus {
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}
.wa-button--outline-danger:active {
  transform: translateY(1px);
}
.wa-button--outline-danger:hover {
  background-color: #bd2130;
  color: var(--white);
  border-color: #dc3545;
}
.wa-button--outline-danger.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-danger.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: #dc3545;
}

.wa-button--warning {
  background-color: #ffc107;
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--warning:focus {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}
.wa-button--warning:active {
  transform: translateY(1px);
}
.wa-button--warning:hover {
  background-color: #d39e00;
  color: var(--white);
  border-color: #ffc107;
}
.wa-button--warning.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--warning.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--outline-warning {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-warning:focus {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}
.wa-button--outline-warning:active {
  transform: translateY(1px);
}
.wa-button--outline-warning:hover {
  background-color: #d39e00;
  color: var(--white);
  border-color: #ffc107;
}
.wa-button--outline-warning.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-warning.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: #ffc107;
}

.wa-button--info {
  background-color: #17a2b8;
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--info:focus {
  outline: 2px solid #17a2b8;
  outline-offset: 2px;
}
.wa-button--info:active {
  transform: translateY(1px);
}
.wa-button--info:hover {
  background-color: #117a8b;
  color: var(--white);
  border-color: #17a2b8;
}
.wa-button--info.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--info.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--outline-info {
  background-color: transparent;
  color: #17a2b8;
  border: 2px solid #17a2b8;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-info:focus {
  outline: 2px solid #17a2b8;
  outline-offset: 2px;
}
.wa-button--outline-info:active {
  transform: translateY(1px);
}
.wa-button--outline-info:hover {
  background-color: #117a8b;
  color: var(--white);
  border-color: #17a2b8;
}
.wa-button--outline-info.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-info.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: #17a2b8;
}

.wa-button--light {
  background-color: var(--white);
  color: var(--black);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--light:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.wa-button--light:active {
  transform: translateY(1px);
}
.wa-button--light:hover {
  background-color: #f0f0f0;
  color: var(--black);
  border-color: var(--white);
}
.wa-button--light.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--light.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--black);
}

.wa-button--outline-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-light:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.wa-button--outline-light:active {
  transform: translateY(1px);
}
.wa-button--outline-light:hover {
  background-color: #f0f0f0;
  color: var(--black);
  border-color: var(--white);
}
.wa-button--outline-light.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-light.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--dark {
  background-color: var(--black);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--dark:focus {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}
.wa-button--dark:active {
  transform: translateY(1px);
}
.wa-button--dark:hover {
  background-color: #333333;
  color: var(--white);
  border-color: var(--black);
}
.wa-button--dark.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--dark.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--white);
}

.wa-button--outline-dark {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 0;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-dark:focus {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}
.wa-button--outline-dark:active {
  transform: translateY(1px);
}
.wa-button--outline-dark:hover {
  background-color: #333333;
  color: var(--white);
  border-color: var(--black);
}
.wa-button--outline-dark.wa-button--loading {
  position: relative;
  color: transparent;
}
.wa-button--outline-dark.wa-button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: wa-button-spinner 0.75s linear infinite;
  color: var(--black);
}

.wa-button--sm {
  padding: var(--space-xs) var(--space-s);
  font-size: var(--text-s);
}
@media (max-width: 479px) {
  .wa-button--sm {
    padding: var(--space-xs) var(--space-s);
    font-size: var(--text-s);
  }
}

.wa-button--md {
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-m);
}
@media (max-width: 479px) {
  .wa-button--md {
    padding: var(--space-xs) var(--space-s);
    font-size: var(--text-s);
  }
}

.wa-button--lg {
  padding: var(--space-s) var(--space-l);
  font-size: var(--text-l);
}
@media (max-width: 479px) {
  .wa-button--lg {
    padding: var(--space-xs) var(--space-s);
    font-size: var(--text-s);
  }
}

.wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  outline: none;
  line-height: 1;
  width: fit-content;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.wa-button--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.wa-button--full {
  width: 100%;
}
.wa-button--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.wa-button--icon svg {
  width: 1em;
  height: 1em;
}

.wa-spec-table {
  padding: var(--space-l);
  width: 100%;
  background-color: var(--secondary);
}
.wa-spec-table--double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-l);
}
@media (max-width: 991px) {
  .wa-spec-table--double {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .wa-spec-table--double .wa-spec-table__content:last-of-type .wa-spec-table__row:first-of-type {
    border-top: 1px solid var(--primary-light);
  }
}
.wa-spec-table__content {
  display: flex;
  flex-direction: column;
}
.wa-spec-table__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  padding-block: var(--space-s);
  border-top: 1px solid var(--secondary-light);
}
@media (max-width: 991px) {
  .wa-spec-table__row {
    padding-block: var(--space-xs);
  }
}
.wa-spec-table__row:first-of-type {
  border-top: none;
  padding-top: 0;
}
.wa-spec-table__row:last-of-type {
  padding-bottom: 0;
}
.wa-spec-table__text--strong {
  font-weight: 700;
  text-align: right;
}

.wa-system-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-s);
  aspect-ratio: 1;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.wa-system-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.wa-system-box * {
  transition: 0.2s all ease-in-out;
}
.wa-system-box__content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 3;
  gap: calc(var(--space-xs) * 0.5);
}
.wa-system-box__subheading {
  color: var(--white);
  font-weight: 500;
  font-size: var(--text-m);
  z-index: 3;
  font-family: "Anybody";
}
.wa-system-box__heading {
  font-size: calc(var(--text-m) * 1.2);
  color: var(--white);
  font-weight: 700;
  z-index: 3;
  font-family: "Anybody";
}
.wa-system-box .wa-button {
  transform: translateY(-150%);
  z-index: 3;
}
@media (max-width: 991px) {
  .wa-system-box .wa-button {
    display: none;
  }
}
.wa-system-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 37, 0.5) 0%, rgba(8, 9, 37, 0.5) 100%);
  z-index: 2;
  opacity: 40%;
  transition: 0.2s all ease-in-out;
}
@media (min-width: 1281px) {
  .wa-system-box:hover:after {
    opacity: 100%;
  }
  .wa-system-box:hover .wa-button {
    transform: translateY(0);
  }
}

.wa-product-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  height: 100%;
  position: relative;
}
.wa-product-card * {
  transition: 0.2s all ease-in-out;
}
.wa-product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
}
.wa-product-card__img img {
  aspect-ratio: 1;
  object-fit: contain;
}
.wa-product-card__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-xs);
  padding: var(--space-s);
  background-color: var(--secondary);
  flex: 1;
}
.wa-product-card__content {
  display: flex;
  flex-direction: column;
}
.wa-product-card__text {
  font-weight: 700;
  font-family: "Anybody";
  font-size: var(--text-l);
}
.wa-product-card__text:empty {
  display: none;
}
.wa-product-card__text--small {
  font-size: var(--text-m);
  font-weight: 400;
  font-family: inherit;
}
.wa-product-card__arrow {
  width: 5.6rem;
  height: 5.6rem;
  min-height: 5.6rem;
  min-width: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--action);
}
.wa-product-card__arrow svg path {
  stroke: var(--white);
}
@media (max-width: 479px) {
  .wa-product-card__arrow {
    display: none;
  }
}
.wa-product-card__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: calc(var(--space-xs) * 0.75) var(--space-xs);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--space-xs) * 0.5);
  border: 1px solid;
  font-size: var(--text-m);
  line-height: 1;
}
.wa-product-card__label--notice {
  background-color: var(--white);
  color: var(--action);
  border-color: var(--action);
  font-weight: 500;
}
.wa-product-card__label--new {
  color: var(--white);
  font-weight: 700;
  background-color: #31B600;
  border-color: #31B600;
}
.wa-product-card__label--popular {
  color: var(--white);
  font-weight: 700;
  background-color: #DC3B00;
  border-color: #DC3B00;
}
@media (min-width: 1281px) {
  .wa-product-card:hover .wa-product-card img {
    transform: scale(1.1);
  }
  .wa-product-card:hover .wa-product-card__bottom {
    background-color: var(--action-ultra-light);
  }
  .wa-product-card:hover .wa-product-card__arrow svg {
    transform: rotate(45deg);
  }
}

.wa-term-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  aspect-ratio: 2/1.2;
  padding: var(--space-m);
  background-size: cover;
  gap: var(--space-xs);
  z-index: 1;
}
.wa-term-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 37, 0.5) 0%, rgba(8, 9, 37, 0.5) 100%);
  z-index: 2;
  opacity: 50%;
  transition: 0.2s all ease-in-out;
}
.wa-term-box * {
  transition: 0.2s all ease-in-out;
}
.wa-term-box__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  max-width: 60%;
  width: 100%;
  z-index: 3;
}
.wa-term-box__desc {
  color: var(--white);
  font-size: calc(var(--text-m) * 1.2);
  line-height: 1.3;
  z-index: 3;
}
.wa-term-box__desc:empty {
  display: none;
}
.wa-term-box__heading {
  color: var(--white);
  font-size: var(--text-xxl);
  font-weight: 700;
  z-index: 3;
}
.wa-term-box__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  width: 5.6rem;
  height: 5.6rem;
  z-index: 3;
}
.wa-term-box__icon svg {
  transition: 0.2s all ease-in-out;
}
.wa-term-box--small {
  height: 100%;
}
.wa-term-box--small .wa-term-box__heading {
  font-size: var(--text-l);
}
@media (max-width: 767px) {
  .wa-term-box--small {
    aspect-ratio: 2/1.5;
  }
  .wa-term-box--small .wa-term-box__icon {
    display: none;
  }
}
@media (min-width: 1281px) {
  .wa-term-box:hover svg {
    transform: rotate(45deg);
  }
  .wa-term-box:hover:after {
    opacity: 1;
  }
}

.wa-benefit-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  justify-content: center;
  align-items: center;
  padding: var(--space-s);
  background-color: var(--secondary);
}
.wa-benefit-box-content {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-xs) * 0.5);
}
.wa-benefit-box__icon {
  width: 4.8rem;
  height: 4.8rem;
}
.wa-benefit-box__text {
  text-align: center;
  line-height: 1.2;
}
.wa-benefit-box__text:empty {
  display: none;
}
.wa-benefit-box__text--strong {
  font-weight: 600;
}

.wa-reference-card * {
  transition: 0.2s all ease-in-out;
}
.wa-reference-card__img {
  overflow: hidden;
  object-fit: cover;
}
.wa-reference-card__body {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-xs) * 0.5);
}
.wa-reference-card__heading {
  font-size: var(--text-l);
  font-weight: 700;
}
.wa-reference-card--horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.wa-reference-card--horizontal .wa-reference-card__img {
  aspect-ratio: 369/304;
  height: 100%;
}
.wa-reference-card--horizontal .wa-reference-card__img img {
  aspect-ratio: 369/304;
  height: 100%;
}
.wa-reference-card--horizontal .wa-reference-card__body {
  background-color: var(--secondary);
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--space-m) * 0.9);
}
@media (min-width: 1281px) {
  .wa-reference-card--horizontal:hover .wa-reference-card__body {
    background-color: var(--secondary-light);
  }
}
.wa-reference-card--vertical {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.wa-reference-card--vertical .wa-reference-card__img {
  aspect-ratio: 1;
}
.wa-reference-card--vertical .wa-reference-card__img img {
  aspect-ratio: 1;
}
@media (min-width: 1281px) {
  .wa-reference-card:hover img {
    transform: scale(1.05);
  }
}

.wa-faq-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--secondary);
  padding: var(--space-m);
  gap: var(--space-xs);
  transition: 0.2s all ease-in-out;
}
.wa-faq-card__body {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-xs) * 0.5);
  width: fit-content;
}
.wa-faq-card__heading {
  font-size: var(--text-l);
  font-weight: 700;
}
.wa-faq-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 25ch;
}
@media (min-width: 1281px) {
  .wa-faq-card:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
  }
  .wa-faq-card:hover .wa-button {
    background-color: var(--action-hover);
  }
}

@media (max-width: 767px) {
  .wa-term-box {
    padding: var(--space-xs);
  }
  .wa-benefit-box__icon {
    height: 3.2rem;
    width: 3.2rem;
  }
  .wa-reference-card--horizontal {
    display: flex;
    flex-direction: column;
  }
  .wa-reference-card--horizontal .wa-reference-card__img {
    height: unset;
  }
  .wa-reference-card--horizontal .wa-reference-card__img img {
    height: unset;
  }
  .wa-reference-card--horizontal .wa-reference-card__body {
    justify-content: space-between;
    flex: 1;
    padding: var(--space-xs);
  }
  .wa-reference-card--horizontal .wa-reference-card__heading {
    font-size: var(--text-m);
    line-height: 1.2;
  }
  .wa-reference-card--horizontal .wa-reference-card__text {
    font-size: var(--text-s);
  }
  .wa-faq-card {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-s);
  }
  .wa-faq-card .wa-button {
    width: 100%;
  }
}
.wa-prefooter {
  padding-bottom: var(--space-l);
}
.wa-prefooter .wa-logo-card {
  display: flex;
  object-fit: contain;
  height: 4.7rem !important;
  width: auto !important;
}
.wa-prefooter .wa-logo-card img {
  height: 4.7rem !important;
  object-fit: contain;
}

.wa-footer-section {
  padding-block: var(--space-xl);
  background-color: var(--primary);
}
.wa-footer__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.wa-footer__text {
  font-size: var(--text-l);
  font-weight: 700;
  line-height: 130%;
  color: var(--white);
}
.wa-footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
}
.wa-footer-social__icon {
  width: fit-content;
  transition: 0.2s all ease-in-out;
}
.wa-footer-social__icon img {
  transition: 0.2s all ease-in-out;
}
@media (min-width: 1281px) {
  .wa-footer-social__icon:hover {
    transform: scale(1.1);
  }
  .wa-footer-social__icon:hover img {
    filter: brightness(100);
  }
}
.wa-footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.wa-footer-column__heading {
  font-weight: 700;
  color: var(--white);
}
.wa-footer-column__content {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-xs) * 1);
}
.wa-footer-column__text {
  color: var(--white);
  font-size: calc(var(--text-m) * 0.9);
}
.wa-footer-column a.wa-footer-column__text {
  position: relative;
  color: var(--white);
  transition: 0.2s all ease-in-out;
  width: fit-content;
}
.wa-footer-column a.wa-footer-column__text:after {
  display: block;
  position: absolute;
  top: 95%;
  left: 0;
  width: 100%;
  border-bottom: 0.2rem solid var(--action);
  content: "";
  transition: transform 0.6s cubic-bezier(0.28, 0.75, 0.22, 0.95);
  transform: scaleX(0);
  transform-origin: right center;
}
.wa-footer-column a.wa-footer-column__text:hover {
  color: var(--white);
}
@media (min-width: 1281px) {
  .wa-footer-column a.wa-footer-column__text:hover:after {
    transform: scale(1);
    transform-origin: left center;
  }
}
.wa-footer-column__menu ul {
  flex-direction: column;
  gap: calc(var(--space-xs) * 1);
}
.wa-footer-column__menu ul li {
  margin: 0;
  transition: 0.2s all ease-in-out;
}
.wa-footer-column__menu ul li a {
  position: relative;
  font-size: calc(var(--text-m) * 0.9);
  color: var(--white);
  transition: 0.2s all ease-in-out;
  width: fit-content;
}
.wa-footer-column__menu ul li a:after {
  display: block;
  position: absolute;
  top: 95%;
  left: 0;
  width: 100%;
  border-bottom: 0.2rem solid var(--action);
  content: "";
  transition: transform 0.6s cubic-bezier(0.28, 0.75, 0.22, 0.95);
  transform: scaleX(0);
  transform-origin: right center;
}
@media (min-width: 1281px) {
  .wa-footer-column__menu ul li a:hover:after {
    transform: scale(1);
    transform-origin: left center;
  }
}
.wa-footer-copy {
  display: flex;
  flex-direction: row;
  padding-block: var(--space-xs);
  background-color: var(--primary-ultra-dark);
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-inline: var(--gutter);
  text-align: center;
}
.wa-footer-copy__text {
  align-items: center;
  font-size: var(--text-s);
  color: var(--primary-medium);
  gap: 0.5ch;
}
.wa-footer-copy a {
  color: var(--primary-medium);
  transition: 0.2s all ease-in-out;
}
@media (min-width: 1281px) {
  .wa-footer-copy a:hover {
    color: var(--white);
  }
}
.wa-footer-backtop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.6rem;
  height: 5.6rem;
  min-width: 5.6rem;
  min-height: 5.6rem;
  bottom: 130px;
  color: var(--base);
}
.wa-footer-backtop #brxe-wqroet {
  color: var(--base);
}
@media (max-width: 767px) {
  .wa-footer-backtop {
    bottom: 110px;
    right: 8px;
  }
}

.wa-contact-box {
  background-color: var(--action);
  padding: var(--space-s) var(--space-m);
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.2s all ease-in-out;
  z-index: 99;
}
@media (max-width: 767px) {
  .wa-contact-box {
    right: 8px;
  }
}
.wa-contact-box__text {
  color: var(--white);
  line-height: 1.2;
  font-size: var(--text-m);
}
.wa-contact-box__text--strong {
  font-weight: 700;
  font-size: calc(var(--text-m) * 1.1);
}
@media (min-width: 1281px) {
  .wa-contact-box:hover {
    background-color: var(--action-hover);
  }
}

.wa-contact-form {
  background-color: var(--primary);
  padding: var(--space-l);
  align-items: stretch;
}
@media (max-width: 992px) {
  .wa-contact-form {
    padding: var(--space-m) var(--space-s);
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}
.wa-contact-form-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
  padding: var(--space-xs);
  color: var(--white);
}
@media (max-width: 992px) {
  .wa-contact-form-left {
    padding: 0;
  }
}
.wa-contact-form__title {
  font-family: "Anybody";
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.5;
}
.wa-contact-form-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  color: var(--white);
  transition: 0.2s all ease-in-out;
  width: fit-content;
}
.wa-contact-form-item span {
  position: relative;
}
.wa-contact-form-item span:after {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: 0.2rem solid var(--action);
  content: "";
  transition: transform 0.6s cubic-bezier(0.28, 0.75, 0.22, 0.95);
  transform: scaleX(0);
  transform-origin: right center;
}
.wa-contact-form-item:hover {
  color: var(--white);
}
@media (min-width: 1281px) {
  .wa-contact-form-item:hover span:after {
    transform: scale(1);
    transform-origin: left center;
  }
}
.wa-contact-form-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.wa-contact-form-social {
  display: flex;
  padding: var(--space-xs);
  background-color: var(--white);
  transition: 0.2s all ease-in-out;
}
.wa-contact-form-social svg path {
  fill: var(--base);
}
.wa-contact-form-social-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: auto;
  gap: var(--space-xs);
}
@media (min-width: 1281px) {
  .wa-contact-form-social:hover {
    transform: scale(1.1);
  }
}
.wa-contact-form-right {
  background-color: var(--white);
  padding: var(--space-l);
}
.wa-contact-form-right .wa-form__heading {
  font-family: "Anybody";
  font-size: var(--text-l);
  font-weight: 700;
}
@media (max-width: 992px) {
  .wa-contact-form-right {
    padding: var(--space-s);
  }
}

.wa-form {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-s);
}
.wa-form__shortcode {
  padding: var(--space-l);
  background-color: var(--accent);
  border-radius: var(--radius-m);
}
.wa-form__single-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-s);
}
.wa-form__half-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-s);
}
@media (max-width: 767px) {
  .wa-form__half-row {
    grid-template-columns: 1fr !important;
  }
}
.wa-form a {
  color: var(--base);
  position: relative;
  transition: 0.2s all ease-in-out;
  text-wrap: nowrap;
}
.wa-form a:before {
  display: block;
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
  width: 100%;
  border-bottom: 0.1rem solid var(--base);
  content: "";
  transition: transform 0.4s cubic-bezier(0.28, 0.75, 0.22, 0.95);
  transform: scaleX(1);
  transform-origin: right center;
}
.wa-form a:after {
  display: block;
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
  width: 100%;
  border-bottom: 0.1rem solid var(--accent);
  content: "";
  transition: transform 0.4s cubic-bezier(0.28, 0.75, 0.22, 0.95);
  transform: scaleX(0);
  transform-origin: right center;
}
.wa-form a:hover {
  color: var(--accent);
}
.wa-form a:hover:after {
  transform: scale(1);
  transform-origin: left center;
}

body.bricks-is-frontend input[type=text],
body.bricks-is-frontend textarea,
body.bricks-is-frontend input[type=email],
body.bricks-is-frontend input[type=tel],
body.bricks-is-frontend input[type=number],
body.bricks-is-frontend input[type=password] {
  border-radius: 0;
  border: 1px solid var(--primary-light);
  background-color: var(--white);
  outline: none !important;
  color: var(--base);
  transition: 0.2s all ease-in-out;
  padding-left: var(--space-s);
  padding-right: var(--space-s);
}
body.bricks-is-frontend input[type=text]::placeholder,
body.bricks-is-frontend textarea::placeholder,
body.bricks-is-frontend input[type=email]::placeholder,
body.bricks-is-frontend input[type=tel]::placeholder,
body.bricks-is-frontend input[type=number]::placeholder,
body.bricks-is-frontend input[type=password]::placeholder {
  color: var(--primary-medium);
  opacity: 1;
  transition: 0.2s all ease-in-out;
}
body.bricks-is-frontend input[type=text]:focus, body.bricks-is-frontend input[type=text]:focus-visible,
body.bricks-is-frontend textarea:focus,
body.bricks-is-frontend textarea:focus-visible,
body.bricks-is-frontend input[type=email]:focus,
body.bricks-is-frontend input[type=email]:focus-visible,
body.bricks-is-frontend input[type=tel]:focus,
body.bricks-is-frontend input[type=tel]:focus-visible,
body.bricks-is-frontend input[type=number]:focus,
body.bricks-is-frontend input[type=number]:focus-visible,
body.bricks-is-frontend input[type=password]:focus,
body.bricks-is-frontend input[type=password]:focus-visible {
  border-color: var(--primary-medium);
}
body.bricks-is-frontend input[type=text]:hover,
body.bricks-is-frontend textarea:hover,
body.bricks-is-frontend input[type=email]:hover,
body.bricks-is-frontend input[type=tel]:hover,
body.bricks-is-frontend input[type=number]:hover,
body.bricks-is-frontend input[type=password]:hover {
  border-color: var(--primary-medium);
}
body.bricks-is-frontend label {
  font-size: calc(var(--text-m) * 0.85) !important;
  color: var(--base) !important;
  margin-bottom: calc(var(--space-xs) * 0.5) !important;
  font-weight: 700;
}
body.bricks-is-frontend .woocommerce-input-wrapper .field-label {
  font-size: calc(var(--text-m) * 0.85) !important;
  color: var(--base) !important;
  margin-bottom: calc(var(--space-xs) * 0.5) !important;
}
body.bricks-is-frontend input[type=text],
body.bricks-is-frontend input[type=email],
body.bricks-is-frontend input[type=tel],
body.bricks-is-frontend input[type=number],
body.bricks-is-frontend input[type=password] {
  height: 5rem;
  min-height: 5rem;
}
body.bricks-is-frontend textarea {
  max-height: 15rem;
  resize: none;
}
body.bricks-is-frontend input[type=checkbox] {
  opacity: 0;
  margin-right: calc(var(--space-xs) * 0.5);
  position: relative;
  z-index: 1;
  cursor: pointer;
  min-height: 1.5rem;
  height: 1.9rem;
  min-width: 1.5rem;
  width: 1.9rem;
}
body.bricks-is-frontend input[type=checkbox] ~ span {
  display: inline-block;
  line-height: 1;
}
body.bricks-is-frontend input[type=checkbox] ~ span:before {
  content: "";
  min-height: 1.5rem;
  height: 1.9rem;
  min-width: 1.5rem;
  width: 1.9rem;
  position: absolute;
  left: 0;
  margin-top: -3px;
  border: 2px solid var(--base-light);
  background-color: transparent;
  border-radius: calc(var(--radius-xs) * 0.5);
  transition: 0.2s all ease-in-out;
  background: "";
  background-size: 1.2rem;
  background-repeat: no-repeat;
  background-position: center center;
}
body.bricks-is-frontend input[type=checkbox]:hover ~ span:before {
  border-color: var(--primary);
}
body.bricks-is-frontend input[type=checkbox]:checked ~ span:before {
  background: url(/wp-content/uploads/checked-1.svg);
  background-size: 1.2rem;
  background-repeat: no-repeat;
  background-position: center center;
  border-color: var(--primary);
}
body.bricks-is-frontend input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  margin-right: calc(var(--space-xs) * 0.5);
  min-height: 1.5rem;
  height: 1.9rem;
  min-width: 1.5rem;
  width: 1.9rem;
  padding: 0.7rem;
  outline: none;
  cursor: pointer;
  border-radius: 100%;
  border: 2px solid var(--base-light);
  background: transparent;
  transition: 0.2s all ease-in-out;
}
body.bricks-is-frontend input[type=radio]:hover {
  border-color: var(--primary);
}
body.bricks-is-frontend input[type=radio] ~ span {
  line-height: 1;
}
body.bricks-is-frontend input[type=radio] ~ span:before {
  display: none;
}
body.bricks-is-frontend input[type=radio]:checked {
  border-color: var(--primary);
  background: var(--base);
  box-shadow: inset 0 0 0 3px var(--white), 0 0 0px var(--base);
}
body.bricks-is-frontend .woocommerce .quantity {
  --border-size: 0.165rem;
  --border-radius: var(--radius-s);
  --border-color: var(--accent-ultra-dark-trans-20);
  display: flex;
  overflow: hidden;
  height: 4rem;
  margin: auto;
}
body.bricks-is-frontend .woocommerce .quantity .qty {
  margin-right: 0;
  background: none;
}
body.bricks-is-frontend .quantity input::-webkit-outer-spin-button,
body.bricks-is-frontend .quantity input::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
body.bricks-is-frontend input.qty_button {
  height: 100%;
  background: none;
  padding: 0.6rem;
  text-align: center;
  width: 3.6rem;
  font-size: var(--text-m);
  border: 1px solid var(--border-color);
  outline: none;
  font-family: inherit;
  resize: none;
  cursor: pointer;
  border-radius: var(--border-radius);
}
body.bricks-is-frontend input.qty_button:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}
body.bricks-is-frontend input.qty_button.plus, body.bricks-is-frontend input.qty_button.minus {
  line-height: 1;
  padding: 0;
  color: var(--base);
}
body.bricks-is-frontend input.qty_button.minus {
  border-left: var(--border-size) solid var(--border-color);
  border-top: var(--border-size) solid var(--border-color);
  border-bottom: var(--border-size) solid var(--border-color);
  border-right: none;
}
body.bricks-is-frontend input.qty_button.plus {
  border-left: none;
  border-top: var(--border-size) solid var(--border-color);
  border-bottom: var(--border-size) solid var(--border-color);
  border-right: var(--border-size) solid var(--border-color);
}
body.bricks-is-frontend input[type=submit] {
  background-color: var(--action);
  transition: 0.2s all ease-in-out;
  border-radius: 0;
  padding-inline: var(--space-m);
  padding-block: calc(var(--space-xs) * 1.3);
  border: 1px solid;
  border-color: var(--action);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  line-height: 1;
}
body.bricks-is-frontend input[type=submit]:hover {
  background-color: var(--action-hover);
  border-color: var(--action-hover);
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0;
}

@media (max-width: 479px) {
  input[type=submit] {
    width: 100%;
  }
}
.wa-breadcrumbs {
  overflow: auto;
  flex-wrap: nowrap;
  padding-bottom: var(--space-xs);
  margin-bottom: calc(var(--space-xs) * -1);
  z-index: 100;
  line-height: 1;
}
.wa-breadcrumbs-section {
  padding-block: 0 !important;
}
.wa-breadcrumbs-wrapper {
  position: absolute;
  width: fit-content;
  top: var(--space-l);
}
.wa-breadcrumbs span {
  font-size: calc(var(--text-s) * 1.25);
  color: var(--primary);
  font-weight: 400;
  white-space: nowrap;
}
.wa-breadcrumbs span:last-child {
  margin-right: calc(2 * var(--gutter));
}
.wa-breadcrumbs svg path {
  stroke: var(--primary-medium);
}
.wa-breadcrumbs a {
  color: var(--primary-medium);
  font-size: calc(var(--text-s) * 1.25);
  white-space: nowrap;
  position: relative;
  transition: 0.2s all ease-in-out;
}
.wa-breadcrumbs a:hover {
  color: var(--primary);
}
.wa-breadcrumbs a:first-child {
  display: flex;
  align-items: center;
  font-size: 0 !important;
}
.wa-breadcrumbs a:first-child:before {
  content: "";
  -webkit-mask: url(/wp-content/uploads/2026/01/breadcrumbs_home.svg) no-repeat center;
  mask: url(/wp-content/uploads/2026/01/breadcrumbs_home.svg) no-repeat center;
  mask-size: contain;
  background-color: var(--primary-medium);
  width: 2rem;
  height: 2rem;
  display: inline-block;
  transition: 0.2s all ease-in-out;
}
.wa-breadcrumbs a:first-child:hover:before {
  background-color: var(--primary);
  transform: scale(1.05);
}

.wa-header {
  padding-block: var(--space-m);
  padding-inline: var(--gutter);
  background-color: var(--white);
}
.wa-header__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
}
@media (max-width: 1281px) {
  .wa-header__content > .wa-button {
    display: none;
  }
}
.wa-header__logo {
  max-width: 170px;
  width: 100%;
  height: auto;
}
@media (max-width: 1281px) {
  .wa-header__menu {
    display: none;
  }
}
.wa-header__menu .brx-submenu-toggle.icon-right button {
  transition: 0.2s all ease-in-out;
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.wa-header__menu ul {
  gap: calc(var(--space-l) * 1);
}
.wa-header__menu ul button[aria-expanded=true] {
  transform: rotate(180deg);
}
.wa-header__menu ul li {
  position: relative;
  margin: 0;
  transition: 0.2s all ease-in-out;
}
.wa-header__menu ul li > a {
  font-size: calc(var(--text-m) * 1);
  color: var(--base);
  transition: 0.2s all ease-in-out;
  width: fit-content;
}
.wa-header__menu ul li:after {
  display: block;
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  border-bottom: 0.1rem solid var(--base);
  content: "";
  transition: transform 0.6s cubic-bezier(0.28, 0.75, 0.22, 0.95);
  transform: scaleX(0);
  transform-origin: right center;
}
@media (min-width: 1281px) {
  .wa-header__menu ul li:hover:after {
    transform: scale(1);
    transform-origin: left center;
  }
}
.wa-header__menu ul .sub-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  background-color: var(--white);
  padding: var(--space-m);
  box-shadow: 0px 0px 20px var(--base-trans-10);
  top: 130%;
}
.wa-header__menu ul .sub-menu li {
  width: fit-content;
}
.wa-header__menu ul .sub-menu li a {
  padding: 0;
  width: fit-content;
}

.brx-megamenu {
  top: var(--space-xl);
}

.wa-megamenu-section {
  background-color: var(--white);
  padding-bottom: var(--space-l);
  padding-top: 0;
  position: relative;
  box-shadow: 0 550px 300px 300px rgba(51, 51, 51, 0.4392156863);
}
.wa-megamenu-section .wa-system-box {
  height: 100%;
  justify-content: end;
}
.wa-megamenu-section .wa-system-box .wa-button {
  display: none;
}

.wa-offcanvas__trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  background-color: var(--primary);
  cursor: pointer;
}
@media (min-width: 1281px) {
  .wa-offcanvas__trigger {
    display: none;
  }
}
.wa-offcanvas__trigger svg {
  height: 2.4rem;
  width: 2.4rem;
}

.wa-header-offcanvas .x-offcanvas_inner {
  padding: 0 !important;
}
.wa-header-offcanvas .x-offcanvas_inner:focus {
  outline: none !important;
}
.wa-header-offcanvas__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
  justify-content: space-between;
  padding: var(--space-s);
}
.wa-header-offcanvas__logo {
  max-width: 170px;
  height: auto;
}
.wa-header-offcanvas-main .x-slide-menu_list > .menu-item > a {
  font-weight: 500;
  font-size: var(--text-m);
  color: var(--base);
  padding-inline: var(--space-s) 0;
  padding-block: calc(var(--space-xs) * 0.7);
  position: relative;
  transition: 0.2s all ease-in-out;
}
.wa-header-offcanvas-main .x-slide-menu_list > .menu-item > a:before {
  content: "-";
  color: var(--action);
  font-size: 0;
  position: absolute;
  transition: 0.2s all ease-in-out;
}
.wa-header-offcanvas-main .x-slide-menu_list > .menu-item > a button svg {
  stroke: var(--base);
}
.wa-header-offcanvas-main .x-slide-menu_list > .menu-item:has([aria-expanded=true]) > a {
  padding-left: var(--space-l);
}
.wa-header-offcanvas-main .x-slide-menu_list > .menu-item:has([aria-expanded=true]) > a:before {
  font-size: var(--text-xl);
  left: var(--space-s);
}
.wa-header-offcanvas-main .sub-menu > .menu-item > a {
  padding: var(--space-s);
  font-size: calc(var(--text-m) * 1);
  color: var(--primary-medium);
  padding-block: calc(var(--space-xs) * 0.7);
}
.wa-header-offcanvas-main button {
  width: 4rem;
}
.wa-header-offcanvas-main button svg {
  height: 2rem !important;
  width: 2rem !important;
  stroke: var(--base-light);
}
.wa-header-offcanvas__bottom {
  padding: var(--space-s);
  margin-top: auto;
}
.wa-header-offcanvas__bottom .wa-button {
  width: 100%;
}

:root {
  --wa-page-container-width: 1500px;
}

#brx-content {
  display: flex;
  flex-direction: column;
}

body.bricks-is-frontend *:focus,
body.bricks-is-frontend button:focus {
  outline: unset;
}

body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: var(--secondary);
}
body::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.wa-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--space-xs) * 1);
}
.wa-heading__icon {
  width: 4rem;
  height: 4rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  aspect-ratio: 1;
  margin-bottom: 5px;
}
.wa-heading__text {
  font-size: var(--text-xl);
  line-height: 100%;
}
@media (max-width: 767px) {
  .wa-heading {
    align-items: flex-start;
  }
  .wa-heading .wa-heading__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.wa-faq-section {
  padding-top: var(--space-l);
  padding-bottom: 0;
}

.wa-hero {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
}
.wa-hero-section {
  padding-block: var(--space-l);
  z-index: 1;
  position: relative;
  height: 100vh;
  max-height: 90rem;
  justify-content: end;
}
.wa-hero-section::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(8, 9, 37, 0) 0%, rgba(8, 9, 37, 0.6) 100%);
  inset: 0;
  z-index: 2;
}
@media (max-width: 992px) {
  .wa-hero-section {
    max-height: 60rem;
  }
}
.wa-hero-container {
  height: 100%;
  justify-content: space-between;
}
.wa-hero-left {
  display: flex;
  flex-direction: column;
  color: var(--white);
  z-index: 3;
  line-height: 1.3;
}
.wa-hero__subtitle {
  font-size: var(--text-xl);
}
.wa-hero__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background-color: var(--white);
  padding: calc(var(--space-xs) * 0.8);
  cursor: pointer;
  transition: 0.2s all ease-in-out;
}
@media (min-width: 1281px) {
  .wa-hero__scroll:hover {
    transform: scale(1.1);
  }
}

.wa-references-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.wa-references-list-section {
  padding-top: 0;
}
.wa-references-list > .wa-button {
  margin-inline: auto;
}
@media (max-width: 767px) {
  .wa-references-list > .wa-button {
    width: 100%;
  }
}

.wa-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.wa-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.wa-nav .wa-term-box__heading {
  font-size: var(--text-xl);
}
@media (max-width: 479px) {
  .wa-nav .wa-term-box__heading {
    font-size: var(--text-l);
  }
}
.wa-nav-section {
  padding-top: var(--space-l);
  padding-bottom: 0;
}
