.thanks-popup {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;

  padding: 14px 18px;
  border-radius: 12px;
  background: rgb(34, 182, 48);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 99999;

  transition:
    transform 220ms ease,
    opacity 220ms ease;
  pointer-events: none;
}

.thanks-popup.show {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
