.et-popup {
  box-sizing: border-box;
  position: fixed !important;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  background-color: #2a2a2a;
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  width: calc(100% - 40px);
  font-family: inherit;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  z-index: 99999;
  display: none;
  opacity: 0;
  visibility: hidden;
}
.et-popup[open] {
  display: block;
  animation: slide-in 700ms forwards;
}
.et-popup[closing] {
  animation: fade-out 350ms forwards;
}
.et-popup__container {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.et-popup__close {
  transition: background-color 250ms ease-in-out;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.15) url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg' transform='rotate(45)'%3E%3Cpath d='M0.5 8H16.5M8.5 0L8.5 16' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A") no-repeat center;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  background-size: 60%;
}
.et-popup__close:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.et-popup__headline * {
  margin: 0;
  line-height: 1em !important;
  color: inherit !important;
  font-size: inherit !important;
}
.et-popup__content p {
  color: inherit !important;
  line-height: 1.65em !important;
  margin-bottom: 0.3em !important;
}
.et-popup__link {
  transition: color 250ms ease-in-out;
  box-sizing: border-box;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #d83758;
  padding: 15px 30px;
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.et-popup__link:hover {
  color: #2a2a2a;
}

.et-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99998;
  display: none;
  opacity: 0;
  visibility: hidden;
}
.et-backdrop[open] {
  display: block;
  animation: fade-in 700ms forwards;
}
.et-backdrop[closing] {
  animation: fade-out 350ms forwards;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translate(-50%, -25%);
  }
  75% {
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}