.page-template-page-thank-you {
  position: relative;
 background: linear-gradient(
  230deg,
  #e1cee8 0%,
  #f7d6db 28%,
  #ffdcb4 58%,
  #d1eed6 100%
);
  overflow-x: auto;
  overflow-y: auto;
  min-height: 100vh;
}

.page-template-page-thank-you::before {
  content: "";
  position: fixed;
  inset: -0%;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(
      230deg,
      rgba(225, 206, 232, 0.00) 0%,
      rgba(225, 206, 232, 0.40) 12%,
      rgba(247, 214, 219, 0.48) 24%,
      rgba(255, 220, 180, 0.48) 38%,
      rgba(209, 238, 214, 0.42) 52%,
      rgba(247, 214, 219, 0.42) 66%,
      rgba(255, 220, 180, 0.36) 80%,
      rgba(225, 206, 232, 0.00) 100%
    );

  background-size: 260% 260%;
  background-position: 100% 0%;

  animation: thank-you-radiance 10s ease-in-out infinite alternate;
  transform-origin: 50% 42%;
}

@keyframes thank-you-radiance {
  0% {
    background-position: 100% 0%;
    opacity: 0.75;
  }

  50% {
    background-position: 50% 50%;
    opacity: 1;
  }

  100% {
    background-position: 0% 100%;
    opacity: 0.75;
  }
}

.thank-you-page {
  position: relative;
  z-index: 1;
  max-width: 980px;
  min-width: 980px;
  margin: 0 auto;
  padding: 44px 0 62px;
  color: #0f5a35;
  background: transparent;
  text-align: center;
}


.thank-you-top-caption {
  margin: 0 auto 44px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  color: #0f5a35;
}

.thank-you-top-caption p {
  margin: 0;
}

.thank-you-image-wrap {
  width: 280px;
  margin: 0 auto;
}

.thank-you-image {
  width: 100%;
  height: auto;
  display: block;
}

.thank-you-bottom-caption {
  margin: 16px auto 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  color: #0f5a35;
}

.thank-you-bottom-caption p {
  margin: 0;
}

.learn-disclaimer {
  max-width: 460px;
  margin: 22px auto 0;
  text-align: center;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: #0f5a35;
}

.learn-disclaimer p {
  margin: 0;
}

.page-template-page-thank-you .site-footer {
  position: relative;
  z-index: 2;
  background: #d7dccd;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-template-page-thank-you {
    overflow-x: hidden;
  }

  .thank-you-page {
    min-width: 0;
    max-width: none;
    padding: 36px 22px 48px;
  }

  .thank-you-top-caption {
    margin-bottom: 32px;
    font-size: 21px;
  }

  .thank-you-image-wrap {
   width: 280px;
  max-width: 80%;
  }

  .thank-you-bottom-caption {
    font-size: 20px;
  }

  .learn-disclaimer {
    margin-top: 24px;
    font-size: 17px;
  }
}