/* ----- Animations ----- */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* ----- Fonts ----- */
/* ----- Mixins ----- */
.wpcf7 .screen-reader-response,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wpcf7-response-output {
  color: var(--color-white);
  border-radius: var(--border-radius);
  margin: 0 auto;
  padding: 1em;
  line-height: 1.2em;
  border: none;
  position: relative;
  width: 100%;
  text-align: center;
  transition: all 0.25s ease-in-out;
  font-family: "Poppins", sans-serif;
  font-weight: var(--semibold);
  font-optical-sizing: auto;
  font-size: var(--font-size-16);
  display: none;
}
.wpcf7-form.submitting .wpcf7-spinner {
  visibility: visible;
  opacity: 1;
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
  background-color: var(--color-red);
  display: block;
}
.wpcf7-form.sent .wpcf7-response-output {
  background-color: var(--color-green);
  display: block;
}
.wpcf7-spinner {
  --size: 1em;
  animation: spin 1s linear infinite;
  mask: var(--icon-loading) center / contain no-repeat;
  background: var(--color-secondary);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: calc(50% - var(--size) / 2);
  width: var(--size);
  height: var(--size);
  margin: 0;
  transition: all 0.25s ease-in-out;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control-wrap::after {
  content: "";
  width: 0.9em;
  height: 1.2em;
  position: absolute;
  right: 0.75em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.wpcf7-form-control-wrap.wpcf7-not-valid {
  --icon: var(--icon-warning);
  --color: var(--color-red);
}
.wpcf7-form-control-wrap.wpcf7-is-valid {
  --icon: var(--icon-ok);
  --color: var(--color-green);
}
.wpcf7-form-control-wrap.wpcf7-not-valid::after,
.wpcf7-form-control-wrap.wpcf7-is-valid::after {
  opacity: 1;
  visibility: visible;
  mask: var(--icon) center / contain no-repeat;
  background: var(--color);
}
.wpcf7-acceptance .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label,
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  margin: 0;
  justify-content: center;
}
.wpcf7-acceptance .wpcf7-list-item input,
.wpcf7-checkbox .wpcf7-list-item input,
.wpcf7-radio .wpcf7-list-item input {
  display: none;
}
.wpcf7-acceptance .wpcf7-list-item input:checked + .wpcf7-list-item-label::before,
.wpcf7-checkbox .wpcf7-list-item input:checked + .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}
.wpcf7-acceptance .wpcf7-list-item input:checked + .wpcf7-list-item-label::after,
.wpcf7-checkbox .wpcf7-list-item input:checked + .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  border-color: var(--form-border-color-hover, rgba(var(--color-primary-rgb), 0.1));
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 2.4em;
  font-size: var(--font-size-16);
  color: var(--color-text, var(--color-main));
  line-height: 1.2;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a,
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label a,
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label a {
  color: var(--color-secondary);
  text-decoration: none;
  display: inline-block;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a::after,
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label a::after,
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-text, var(--color-primary));
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a:hover::after,
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label a:hover::after,
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label a:hover::after {
  width: 100%;
  color: var(--color-secondary);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before,
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.1em;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  z-index: 2;
  border: 1px solid transparent;
  mask: var(--icon-ok) center / auto 40% no-repeat;
  background-color: var(--color-secondary);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after,
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after,
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: -0.1em;
  width: 1.2em;
  height: 1.2em;
  border: none;
  border-radius: var(--border-radius-smaller);
  transition: all 0.25s ease-in-out;
  background: var(--form-input-background-color, var(--color-white));
  border: 1px solid var(--form-border-color, rgba(var(--color-primary-rgb), 0.1));
  box-shadow: var(--shadow-lighter);
}
.wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item-label::after,
.wpcf7-checkbox.wpcf7-not-valid .wpcf7-list-item-label::after,
.wpcf7-radio.wpcf7-not-valid .wpcf7-list-item-label::after {
  border-color: var(--color-red);
}
