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

body {
  overflow-x: hidden;
}

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

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

.wa-breadcrumbs {
  padding-block: var(--space-xs);
  background-color: var(--primary);
}
.wa-breadcrumbs svg path {
  transition: 0.2s all ease-in-out;
}
.wa-breadcrumbs a:has(svg):hover svg path {
  fill: var(--primary-dark);
}

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

.wa-heading {
  font-weight: 700;
}
.wa-heading--l {
  font-size: calc(var(--text-l) + 4px);
  font-weight: 800;
}
.wa-heading--m {
  font-size: calc(var(--text-l) + 2px);
}
.wa-heading--s {
  font-size: var(--text-l);
}
.wa-heading-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: calc(var(--space-xs) * 0.5);
}

.wa-subheading {
  font-size: var(--text-l);
}

@keyframes wa-button-spinner {
  to {
    transform: rotate(360deg);
  }
}
.wa-button--primary {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--primary:focus-visible {
  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-hover);
}
.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: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-primary:focus-visible {
  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-hover);
}
.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: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--secondary:focus-visible {
  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-hover);
}
.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: var(--white);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-secondary:focus-visible {
  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-hover);
}
.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: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--conversion:focus-visible {
  outline: 2px solid var(--action);
  outline-offset: 2px;
}
.wa-button--conversion:active {
  transform: translateY(1px);
}
.wa-button--conversion:hover {
  background-color: var(--action-semi-dark);
  color: var(--white);
  border-color: var(--action-semi-dark);
}
.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: var(--white);
  color: var(--action);
  border: 2px solid var(--action);
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-conversion:focus-visible {
  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-semi-dark);
  color: var(--white);
  border-color: var(--action-semi-dark);
}
.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: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--success:focus-visible {
  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: #1e7e34;
}
.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: var(--white);
  color: #28a745;
  border: 2px solid #28a745;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-success:focus-visible {
  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: #1e7e34;
}
.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: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--danger:focus-visible {
  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: #bd2130;
}
.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: var(--white);
  color: #dc3545;
  border: 2px solid #dc3545;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-danger:focus-visible {
  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: #bd2130;
}
.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: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--warning:focus-visible {
  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: #d39e00;
}
.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: var(--white);
  color: #ffc107;
  border: 2px solid #ffc107;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-warning:focus-visible {
  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: #d39e00;
}
.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: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--info:focus-visible {
  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: #117a8b;
}
.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: var(--white);
  color: #17a2b8;
  border: 2px solid #17a2b8;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-info:focus-visible {
  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: #117a8b;
}
.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: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--light:focus-visible {
  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: #f0f0f0;
}
.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: var(--white);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-light:focus-visible {
  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: #f0f0f0;
}
.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: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--dark:focus-visible {
  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: #333333;
}
.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: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.wa-button--outline-dark:focus-visible {
  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: #333333;
}
.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);
  max-height: 3.5rem;
  height: 3.5rem;
  /*@media (max-width: map-get($wa-button-breakpoints, sm)) {
  	padding: map-get($wa-button-padding, sm);
  	font-size: map-get($wa-button-font-size, sm);
  }*/
}

.wa-button--md {
  padding: calc(var(--space-xs) * 0.9) var(--space-m);
  font-size: calc(var(--text-m) - 1px);
  max-height: 3.7rem;
  height: 3.7rem;
  /*@media (max-width: map-get($wa-button-breakpoints, sm)) {
  	padding: map-get($wa-button-padding, sm);
  	font-size: map-get($wa-button-font-size, sm);
  }*/
}

.wa-button--lg {
  padding: var(--space-s) var(--space-l);
  font-size: calc(var(--text-l) - 2px);
  max-height: 5.2rem;
  height: 5.2rem;
  /*@media (max-width: map-get($wa-button-breakpoints, sm)) {
  	padding: map-get($wa-button-padding, sm);
  	font-size: map-get($wa-button-font-size, sm);
  }*/
}

.wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  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-button--icon svg path {
  stroke: var(--primary);
  transition: all 0.2s ease-in-out;
}
.wa-button--icon:hover svg path {
  stroke: var(--white);
}

.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;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s all ease-in-out;
  /*&: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;
  }

  &: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);
  /*&: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: var(--radius-s) !important;
  border: 1px solid var(--secondary-light) !important;
  background-color: var(--white) !important;
  outline: none !important;
  color: var(--base) !important;
  transition: 0.2s all ease-in-out !important;
  padding-left: var(--space-xs);
  padding-right: var(--space-xs);
}
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(--base-light) !important;
  opacity: 1 !important;
  transition: 0.2s all ease-in-out !important;
}
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(--secondary) !important;
}
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(--secondary) !important;
}
body.bricks-is-frontend input[type=number]::-webkit-outer-spin-button,
body.bricks-is-frontend input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.bricks-is-frontend input[type=number] {
  -moz-appearance: textfield;
}
body.bricks-is-frontend label {
  font-size: calc(var(--text-m) * 1);
  color: var(--base);
  margin-bottom: calc(var(--space-xs) * 0.5);
  font-weight: 600;
}
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;
  font-weight: 600 !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: 5.5rem;
  min-height: 5.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: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  width: 2.2rem;
  border-radius: 2px;
}
body.bricks-is-frontend input[type=checkbox] ~ span {
  display: inline-block;
  position: relative;
}
body.bricks-is-frontend input[type=checkbox] ~ span:before {
  content: "";
  min-height: 2.3rem;
  height: 2.3rem;
  min-width: 2.3rem;
  width: 2.3rem;
  border-radius: 2px;
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--base);
  background-color: var(--white);
  transition: 0.2s all ease-in-out;
  background-repeat: no-repeat;
  background-position: center center;
}
body.bricks-is-frontend input[type=checkbox]:hover ~ span:before {
  border-color: var(--base);
}
body.bricks-is-frontend input[type=checkbox]:checked ~ span:before {
  background: url(/wp-content/uploads/2026/07/checked-white.svg);
  background-color: var(--base);
  background-repeat: no-repeat;
  background-position: center center;
  border-color: var(--base) !important;
}
body.bricks-is-frontend .ff-el-form-check input[type=checkbox] {
  opacity: 1 !important;
}
body.bricks-is-frontend .ff-el-form-check input[type=checkbox]:before {
  content: "";
  min-height: 2.3rem;
  height: 2.3rem;
  min-width: 2.3rem;
  width: 2.3rem;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid var(--secondary-light);
  background-color: var(--white);
  border-radius: 0;
  transition: 0.2s all ease-in-out;
  background-repeat: no-repeat;
  background-position: center center;
}
body.bricks-is-frontend .ff-el-form-check input[type=checkbox]:checked::before {
  background: url(/wp-content/uploads/2026/04/checked-white.svg);
  background-color: var(--action);
  background-repeat: no-repeat;
  background-position: center center;
  border-color: var(--action) !important;
}
body.bricks-is-frontend .ff-el-form-check p {
  margin-left: 3px;
  font-weight: 400;
}
body.bricks-is-frontend .ff-el-form-check p a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s all ease-in-out;
}
body.bricks-is-frontend .ff-el-form-check p a:hover {
  text-shadow: 0px 0px 0.5px var(--base), 0px 0px 0.5px var(--base);
}
body.bricks-is-frontend .ff-el-form-check:hover input[type=checkbox]:before {
  border-color: var(--base);
}
body.bricks-is-frontend input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  margin-right: calc(var(--space-xs) * 0.5);
  min-height: 2.3rem;
  height: 2.3rem;
  min-width: 2.3rem;
  width: 2.3rem;
  padding: 0.7rem;
  outline: none;
  cursor: pointer;
  border-radius: 100%;
  border: 2px solid var(--base-light);
  background: var(--white);
  transition: 0.2s all ease-in-out;
}
body.bricks-is-frontend input[type=radio]:hover {
  border-color: var(--base);
}
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(--base);
  background: var(--base);
  box-shadow: inset 0 0 0 3px var(--white), 0 0 0px var(--base);
}
body.bricks-is-frontend.woocommerce .quantity {
  display: flex;
  width: fit-content;
  height: 5.2rem;
}
body.bricks-is-frontend .minus {
  border-top-left-radius: var(--radius-s);
  border-bottom-left-radius: var(--radius-s);
  border-right: none;
  line-height: 1;
  padding: 0;
  color: var(--action);
  border: 2px solid var(--action);
  background-color: white;
  opacity: 1;
  font-size: 18px;
  font-weight: 700;
}
body.bricks-is-frontend .plus {
  border-top-right-radius: var(--radius-s);
  border-bottom-right-radius: var(--radius-s);
  border-left: none;
  line-height: 1;
  padding: 0;
  color: var(--action);
  border: 2px solid var(--action);
  background-color: white;
  opacity: 1;
  font-size: 18px;
  font-weight: 700;
}
body.bricks-is-frontend input.qty[type=number] {
  display: inline-block;
  height: unset;
  min-height: unset;
  border-radius: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  line-height: 1;
  font-size: var(--text-m);
  width: 5.2rem;
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  border-top: 2px solid var(--action) !important;
  border-bottom: 2px solid var(--action) !important;
  color: var(--base) !important;
  background-color: var(--white);
  font-weight: 700;
  border-left: 0 !important;
  border-right: 0 !important;
}
body.bricks-is-frontend input.qty[type=number]:focus-visible {
  outline: 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 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 38px;
  height: 100%;
  color: var(--action);
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  padding: 0;
  line-height: 1;
}
body.bricks-is-frontend input.qty_button:hover {
  background: var(--action) !important;
  color: var(--white) !important;
}
body.bricks-is-frontend input[type=submit],
body.bricks-is-frontend button[type=submit], body.bricks-is-frontend.woocommerce #respond input#submit, body.bricks-is-frontend.woocommerce a.button, body.bricks-is-frontend.woocommerce button.button, body.bricks-is-frontend.woocommerce input.button, body.bricks-is-frontend.woocommerce a.added_to_cart.wc-forward,
body.bricks-is-frontend .ff-default .ff_btn_style.ff-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  outline: none;
  line-height: 1.4;
  width: fit-content;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  padding: calc(var(--space-s) * 0.9) var(--space-m);
  font-size: calc(var(--text-l) - 2px);
  max-height: 5.2rem;
  height: 5.2rem;
  background: var(--action);
  color: var(--white);
  border: none;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  letter-spacing: inherit;
  text-transform: none;
}
body.bricks-is-frontend input[type=submit]:hover,
body.bricks-is-frontend button[type=submit]:hover, body.bricks-is-frontend.woocommerce #respond input#submit:hover, body.bricks-is-frontend.woocommerce a.button:hover, body.bricks-is-frontend.woocommerce button.button:hover, body.bricks-is-frontend.woocommerce input.button:hover, body.bricks-is-frontend.woocommerce a.added_to_cart.wc-forward:hover,
body.bricks-is-frontend .ff-default .ff_btn_style.ff-btn-submit:hover {
  background: var(--action-semi-dark);
  color: var(--white);
  border-color: var(--action);
}

.fluentform span.select2.select2-container:after {
  content: none !important;
}

.select2-container {
  min-height: 54px;
}

.select2-container--default .select2-selection--single {
  height: 54px;
  border: 1px solid var(--secondary-light);
  border-radius: var(--radius-s);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default:hover .select2-selection--single {
  border-color: var(--secondary);
  box-shadow: none;
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  padding-left: 16px;
  padding-right: 40px;
  color: var(--base);
  font-size: var(--text-m);
  font-weight: 700;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--base-medium);
  font-weight: 400;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  width: 28px;
  right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  width: 13px;
  height: 8px;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mask: url("/wp-content/plugins/wooptima-multistep-filter/assets/images/arrow.svg") no-repeat center center;
  mask-size: contain;
  background-color: var(--base-medium);
  transition: transform 0.2s;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: none;
  transform: translate(-50%, -50%) rotateX(180deg);
  background-color: var(--base);
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none;
  margin-right: 4px;
  color: var(--base-medium);
  font-size: 30px;
  font-weight: 400;
  transition: 0.2s all ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
  color: var(--action);
}

/* Disabled state */
.select2-container--default.select2-container--disabled .select2-selection--single {
  cursor: not-allowed;
  opacity: 0.8;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
  color: var(--base-medium);
}

/* Dropdown panel (appended to body by Select2) */
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: var(--secondary-light-trans-60) !important;
  font-weight: 400;
  color: var(--base);
  border-radius: var(--radius-s);
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
  background-color: transparent;
}

.select2-container--open .select2-dropdown {
  border: 1px solid var(--secondary);
  border-radius: var(--radius-s) !important;
  z-index: 990;
  overflow: hidden;
}

.select2-container--open .select2-dropdown--above {
  margin-top: calc(var(--space-xs) * -0.5);
}

.select2-container--open .select2-dropdown--below {
  margin-top: calc(var(--space-xs) * 0.5);
}

.select2-container--open .select2-results__option {
  padding: 10px 8px;
}

.select2-container .select2-results .select2-results__options {
  padding: 8px;
}

.select2-container .select2-results .select2-results__options::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: var(--primary);
}

.select2-container .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: var(--secondary);
}

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

.wpcf7-spinner {
  display: none !important;
}

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

@media (max-width: 479px) {
  input[type=submit] {
    width: 100%;
  }
}
.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 2em;
  margin: 1.6rem 0rem;
  position: relative;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}
.wpcf7 form.invalid .wpcf7-response-output::before, .wpcf7 form.unaccepted .wpcf7-response-output::before, .wpcf7 form.payment-required .wpcf7-response-output::before {
  content: "" !important;
  background-size: cover !important;
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  position: absolute;
  top: 1.2em;
  left: 1.5em;
}

.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 2em;
  margin: 1.6rem 0rem;
  position: relative;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}
.wpcf7 form.sent .wpcf7-response-output::before {
  content: "" !important;
  background-size: cover !important;
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  position: absolute;
  top: 1.2em;
  left: 1.5em;
}

.woocommerce div.woocommerce-error, .woocommerce div.woocommerce-message, .woocommerce div.woocommerce-info, .wpify-woo-form--withdrawal div.woocommerce-error, .wpify-woo-form--withdrawal div.woocommerce-message, .wpify-woo-form--withdrawal div.woocommerce-info {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: var(--space-xs);
}
.woocommerce .woocommerce-error, .woocommerce .woocommerce-message, .woocommerce .woocommerce-info, .wpify-woo-form--withdrawal .woocommerce-error, .wpify-woo-form--withdrawal .woocommerce-message, .wpify-woo-form--withdrawal .woocommerce-info {
  margin-bottom: var(--space-m) !important;
  border-radius: var(--radius-s);
  border: none !important;
  padding: 1.2em 2em 1.2em 2em;
  margin: 0 0 2em;
  position: relative;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}
.woocommerce .woocommerce-error > a, .woocommerce .woocommerce-message > a, .woocommerce .woocommerce-info > a, .wpify-woo-form--withdrawal .woocommerce-error > a, .wpify-woo-form--withdrawal .woocommerce-message > a, .wpify-woo-form--withdrawal .woocommerce-info > a {
  margin-left: 0.4rem;
  padding: 0 !important;
  color: inherit !important;
  background: none !important;
  text-transform: none !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.woocommerce .woocommerce-error > a:hover, .woocommerce .woocommerce-message > a:hover, .woocommerce .woocommerce-info > a:hover, .wpify-woo-form--withdrawal .woocommerce-error > a:hover, .wpify-woo-form--withdrawal .woocommerce-message > a:hover, .wpify-woo-form--withdrawal .woocommerce-info > a:hover {
  text-decoration: none !important;
  box-shadow: none !important;
}
.woocommerce .woocommerce-error::before, .woocommerce .woocommerce-message::before, .woocommerce .woocommerce-info::before, .wpify-woo-form--withdrawal .woocommerce-error::before, .wpify-woo-form--withdrawal .woocommerce-message::before, .wpify-woo-form--withdrawal .woocommerce-info::before {
  content: "" !important;
  background-size: cover !important;
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  position: absolute;
  top: 1.2em;
  left: 1.5em;
}
.woocommerce .woocommerce-error, .wpify-woo-form--withdrawal .woocommerce-error {
  animation: pulse-error 2s infinite;
  box-shadow: 0 0 0 rgba(255, 233, 233, 0.95);
  background: rgb(255, 233, 233) !important;
  color: #a92f2f;
}
.woocommerce .woocommerce-error a, .wpify-woo-form--withdrawal .woocommerce-error a {
  color: #a92f2f;
  font-weight: 700;
}
.woocommerce .woocommerce-error a:hover, .wpify-woo-form--withdrawal .woocommerce-error a:hover {
  color: #a92f2f;
  text-decoration: underline;
}
.woocommerce .woocommerce-message, .wpify-woo-form--withdrawal .woocommerce-message {
  animation: pulse-message 2s infinite;
  box-shadow: 0 0 0 rgba(242, 250, 228, 0.95);
  background: rgb(247, 255, 234) !important;
  color: #7fa92f;
}
.woocommerce .woocommerce-message a, .wpify-woo-form--withdrawal .woocommerce-message a {
  color: #7fa92f;
  font-weight: 700;
}
.woocommerce .woocommerce-message a:hover, .wpify-woo-form--withdrawal .woocommerce-message a:hover {
  color: #7fa92f;
  text-decoration: underline;
}
.woocommerce .woocommerce-info, .wpify-woo-form--withdrawal .woocommerce-info {
  animation: pulse-info 2s infinite;
  box-shadow: 0 0 0 rgba(255, 249, 237, 0.95);
  background: rgb(255, 249, 237) !important;
  color: #DCAD43;
}
.woocommerce .woocommerce-info a, .wpify-woo-form--withdrawal .woocommerce-info a {
  color: #DCAD43;
  font-weight: 700;
}
.woocommerce .woocommerce-info a:hover, .wpify-woo-form--withdrawal .woocommerce-info a:hover {
  color: #DCAD43;
  text-decoration: underline;
}
.woocommerce-invalid label, .wpify-woo-form--withdrawal-invalid label {
  color: #a92f2f !important;
}
.woocommerce-invalid label a, .wpify-woo-form--withdrawal-invalid label a {
  color: #a92f2f !important;
}

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;
  }
}
.wpify-woo-form--withdrawal {
  width: 100%;
  background-color: var(--primary);
  border-radius: var(--radius-m);
  max-width: 1052px;
  padding: var(--space-m);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea {
    //width: 100%;
    padding: 8px 12px;
    height: 40px;
    border: 2px solid var(--shade-light);
    border-radius: 4px;
    color: var(--base);
    transition: 200ms;
    margin-top: 5px;

    &:focus {
      border: 2px var(--primary) solid;
      outline: none;
    }
  }

  textarea {
    height: unset;
  }*/
  /*button[type="submit"] {
    border: 2px solid var(--primary);
    border-radius: 6px;
    background: var(--primary) !important;
    font-weight: 700;
    color: #fff;
    padding: 10px 16px;
    margin-top: var(--space-xs);
    cursor: pointer;
    transition: 0.2s all ease-in-out;

    &:hover {
      background-color: var(--primary-hover) !important;
      border: 2px solid var(--primary-hover);
      color: #fff !important;
    }
  }*/
}
.wpify-woo-form--withdrawal .woocommerce-form-withdrawal {
  width: 100%;
}
.wpify-woo-form--withdrawal fieldset {
  padding: var(--space-xs);
  border: 1px var(--secondary-light) solid;
  background-color: var(--white);
  border-radius: var(--radius-s);
  color: var(--base);
}
.wpify-woo-form--withdrawal fieldset label {
  display: flex;
  margin-bottom: 0 !important;
}
.wpify-woo-form--withdrawal fieldset legend {
  font-weight: 700;
  color: var(--base);
}
.wpify-woo-form--withdrawal input[type=checkbox] {
  opacity: 1 !important;
}
.wpify-woo-form--withdrawal input[type=checkbox]:before {
  content: "";
  min-height: 2.3rem;
  height: 2.3rem;
  min-width: 2.3rem;
  width: 2.3rem;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid var(--base-light);
  background-color: var(--white);
  border-radius: 0;
  transition: 0.2s all ease-in-out;
  background-repeat: no-repeat;
  background-position: center center;
}
.wpify-woo-form--withdrawal input[type=checkbox]:checked::before {
  background: url(/wp-content/uploads/2026/07/checked-white.svg);
  background-color: var(--base);
  background-repeat: no-repeat;
  background-position: center center;
  border-color: var(--base) !important;
}
.wpify-woo-form--withdrawal input[type=checkbox]:hover::before {
  border-color: var(--base);
}
.wpify-woo-form--withdrawal .form-row label {
  font-weight: 700;
}
.wpify-woo-form--withdrawal .form-row:has(.button-primary) {
  align-items: center;
}
.wpify-woo-form--withdrawal .wpify-woo-reason {
  margin-top: 1.2em;
}

body.woocommerce-cart .wa-order-breadcrumbs-box:first-child .wa-order-breadcrumbs-box__text {
  font-weight: 700;
  color: var(--secondary);
}

body.woocommerce-checkout .wa-order-breadcrumbs-box:nth-of-type(2) .wa-order-breadcrumbs-box__text {
  font-weight: 700;
  color: var(--secondary);
}

body.woocommerce-order-received.woocommerce-checkout .wa-order-breadcrumbs-box:nth-of-type(2) .wa-order-breadcrumbs-box__text {
  font-weight: 700;
  color: var(--secondary-trans-40);
}
body.woocommerce-order-received.woocommerce-checkout .wa-order-breadcrumbs-box:nth-of-type(3) .wa-order-breadcrumbs-box__text {
  font-weight: 700;
  color: var(--secondary);
}

.wa-order-breadcrumbs {
  display: flex;
  width: 100%;
  align-items: center;
  gap: var(--space-xl);
}
.wa-order-breadcrumbs-section {
  padding-block: var(--space-xs) !important;
  background-color: var(--primary);
}
.wa-order-breadcrumbs-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}
.wa-order-breadcrumbs-box__text {
  text-align: center;
  font-weight: 700;
  color: var(--secondary-trans-40);
}
.wa-order-breadcrumbs__divider {
  height: 15px;
  width: auto;
}
.wa-order-breadcrumbs__divider path {
  stroke: var(--secondary-trans-40);
}

.x-header_sticky-active .wa-header {
  box-shadow: 3px 3px 30px rgba(189, 213, 213, 0.4);
}

.wa-header {
  padding: var(--space-xs) var(--gutter);
  background-color: var(--white);
  transition: 0.2s all ease-in-out;
  justify-content: center;
  height: 9rem;
}
@media (max-width: 767px) {
  .wa-header {
    height: 7rem;
  }
  .wa-header .brxe-logo {
    height: 5rem;
  }
  .wa-header .brxe-logo img {
    height: 5rem;
  }
}
.wa-header__minicart a {
  background-color: var(--action);
  padding: var(--space-xs) var(--space-m);
  border-radius: var(--radius-m);
  height: 4.7rem;
  transition: 0.2s all ease-in-out;
}
.wa-header__minicart a:hover {
  background-color: var(--action-hover);
}
.wa-header__minicart a * {
  font-weight: 700;
}
.wa-header__minicart a .tax_label {
  display: none;
}
.wa-header__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-m);
  justify-content: space-between;
}
.wa-header__right {
  display: flex;
  flex-direction: row;
  gap: var(--space-l);
  align-items: center;
}
@media (max-width: 767px) {
  .wa-header__menu {
    display: none;
  }
}
.wa-header__menu ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-l);
}
.wa-header__menu ul li {
  margin: 0 !important;
}
.wa-header__menu ul li a {
  font-weight: 700;
  color: var(--base);
  position: relative;
}
.wa-header__menu ul li a:after {
  display: block;
  position: absolute;
  top: calc(100% + 0.1rem);
  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);
}
@media (min-width: 1281px) {
  .wa-header__menu ul li a:hover:after, .wa-header__menu ul li a[aria-current=page]:after {
    transform: scale(1);
    transform-origin: left center;
  }
}

.wa-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.wa-footer * {
  color: var(--base);
}
.wa-footer-top, .wa-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-m);
  width: 100%;
}
@media (max-width: 991px) {
  .wa-footer-top, .wa-footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.wa-footer-top .wa-footer__menu ul {
  flex-direction: column;
  gap: var(--space-s);
  margin-bottom: var(--space-s);
}
.wa-footer-top .wa-footer__menu ul li {
  margin: 0;
}
.wa-footer-top .wa-footer__menu ul li a {
  color: var(--base) !important;
}
@media (min-width: 768px) {
  .wa-footer-top .wa-footer__menu {
    display: none;
  }
}
.wa-footer-top__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.wa-footer-top__contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-l);
  row-gap: var(--space-s);
}
.wa-footer-top-iconbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
  transition: 0.2s all ease-in-out;
}
.wa-footer-top-iconbox__icon {
  transition: 0.2s all ease-in-out;
}
.wa-footer-top-iconbox__text {
  font-size: var(--text-l);
  color: var(--base);
  font-weight: 700;
  transition: 0.2s all ease-in-out;
  position: relative;
}
.wa-footer-top-iconbox__text:after {
  display: block;
  position: absolute;
  top: calc(100% + 0.1rem);
  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);
}
@media (min-width: 1281px) {
  .wa-footer-top-iconbox:hover .wa-footer-top-iconbox__text:after {
    transform: scale(1);
    transform-origin: left center;
  }
  .wa-footer-top-iconbox:hover .wa-footer-top-iconbox__icon {
    transform: scale(1.05);
  }
}
.wa-footer-bottom {
  align-items: flex-start;
}
@media (max-width: 991px) {
  .wa-footer-bottom {
    flex-direction: column-reverse;
  }
}
.wa-footer-bottom__left {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-xs) * 0.5);
}
.wa-footer-bottom__left a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.2s all ease-in-out;
}
.wa-footer-bottom__left a:hover {
  color: var(--action) !important;
}
.wa-footer-bottom__right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width: 479px) {
  .wa-footer-bottom__right {
    flex-direction: column;
    gap: var(--space-s);
  }
}
.wa-footer-bottom__right-wrapper {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-xs) * 0.5);
}
@media (max-width: 991px) {
  .wa-footer-bottom__right-wrapper {
    align-items: flex-start;
  }
}
@media (max-width: 479px) {
  .wa-footer-bottom__right-wrapper {
    gap: var(--space-s);
  }
}
.wa-footer-bottom__url:last-of-type:after {
  content: none;
}
@media (min-width: 480px) {
  .wa-footer-bottom__url:after {
    content: "|";
    margin-inline: 4px;
  }
}
.wa-footer-bottom__url a {
  position: relative;
}
.wa-footer-bottom__url a:after {
  display: block;
  position: absolute;
  top: calc(100% + 0.1rem);
  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);
}
.wa-footer-bottom__url a:hover:after, .wa-footer-bottom__url a[aria-current=page]:after {
  transform: scale(1);
  transform-origin: left center;
}
.wa-footer-bottom a {
  color: var(--base);
}
.wa-footer-bottom a:hover {
  color: var(--base-hover);
}
.wa-footer-section {
  padding-block: var(--space-l);
  background-color: var(--primary);
}

.wa-benefit-box {
  display: flex;
  flex-direction: row;
  gap: var(--space-s);
  padding: var(--space-m);
  background-color: var(--primary);
  border-radius: var(--radius-m);
  align-items: center;
  height: 100%;
}
.wa-benefit-box-wrapper {
  height: 100%;
}
.wa-benefit-box__icon {
  width: 7.5rem;
  height: 7.5rem;
  min-height: 7.5rem;
  min-width: 7.5rem;
}
@media (max-width: 1024px) {
  .wa-benefit-box__icon {
    min-height: 5rem;
    min-width: 5rem;
    height: 5rem;
    width: 5rem;
  }
}
.wa-benefit-box__text {
  font-size: calc(var(--text-m) * 1.1);
  font-weight: 600;
}

.wa-product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-s);
  border: 2px solid var(--secondary-ultra-light);
  padding: calc(var(--space-m) * 1.1);
  border-radius: var(--radius-m);
  position: relative;
  width: 100%;
  transition: 0.2s all ease-in-out;
}
@media (min-width: 1281px) {
  .wa-product-card:hover {
    border-color: var(--secondary);
  }
  .wa-product-card:hover img {
    transform: scale(1.02);
  }
  .wa-product-card__img img {
    transition: 0.2s all ease-in-out;
  }
}
.wa-product-card__labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  left: var(--space-xs);
  top: var(--space-xs);
  z-index: 999;
}
.wa-product-card__label {
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
  width: fit-content;
}
.wa-product-card__label--tag {
  background-color: #DBAF00;
  color: var(--white);
}
.wa-product-card__label--sale {
  background-color: var(--action);
  color: var(--white);
}
.wa-product-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
  width: 100%;
}
.wa-product-card__text {
  color: var(--base);
  text-align: center;
}
.wa-product-card__text--strong {
  font-weight: 700;
}
.wa-product-card__bottom {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-xs) * 0.5);
  margin-top: auto;
  width: 100%;
}
.wa-product-card__price {
  color: var(--secondary);
  font-weight: 700;
  text-align: center;
}
.wa-product-card .wa-button {
  width: 100%;
}
.wa-product-card-wrapper {
  height: 100%;
  width: 100%;
}

.wa-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wa-info-card__number {
  color: var(--secondary);
  font-size: var(--text-l);
  font-weight: 700;
  text-align: center;
}
.wa-info-card__heading {
  font-weight: 700;
  font-size: calc(var(--text-m) * 1.1);
  text-align: center;
}
.wa-info-card__content {
  margin-top: calc(var(--space-xs) * 1);
  text-align: center;
}
