.contact2_component .w-form-done,
.contact2_component .w-form-fail {
  display: none;
  background: transparent !important;
  padding: 0;
  margin: 0;
}

.tava-form-feedback {
  display: none;
  opacity: 0;
  transform: translateY(1rem);
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 14rem;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  color: #fff;
}

.tava-form-feedback.is-visible {
  display: flex;
}

.tava-form-feedback__inner {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.tava-form-feedback__icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tava-form-feedback__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.35;
  animation: tava-feedback-pulse 2.4s ease-out infinite;
}

.tava-form-feedback--success .tava-form-feedback__icon {
  color: rgb(155, 118, 78);
  background: rgb(249, 246, 241);
  border: 1px solid rgb(122, 96, 71);
}

.tava-form-feedback--success .tava-form-feedback__icon::before {
  background: rgb(249, 246, 241);
}

.tava-form-feedback--error .tava-form-feedback__icon {
  color: rgb(249, 246, 241);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.tava-form-feedback--error .tava-form-feedback__icon::before {
  background: rgba(255, 255, 255, 0.2);
}

.tava-form-feedback__icon svg {
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 1;
}

.tava-form-feedback__title {
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  color: #fff;
  font-weight: 400;
}

.tava-form-feedback__text {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto 1.5rem;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.88);
}

.tava-form-feedback .animated-horizontal {
  margin-top: 0.5rem;
}

.contact2_form.is-leaving {
  pointer-events: none;
}

.contact2_form.is-submitting input[type="submit"] {
  opacity: 0.72;
  cursor: wait;
}

@keyframes tava-feedback-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.35;
  }

  70% {
    transform: scale(1.18);
    opacity: 0;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .tava-form-feedback {
    padding: 2rem 1rem;
    min-height: 12rem;
  }

  .tava-form-feedback__title {
    font-size: 1.2rem;
  }
}
