.modal {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.modal__inner {
  position: relative;
  padding: 32px 32px 32px 32px;
  margin: 120px 32px 32px 32px;
  border-radius: 0 44px;
  background: #E50A80;
}
.modal__inner--close__icon {
  width: 16px;
  height: 16px;
  background-image: url("close.svg");
  display: inline-block;
  position: absolute;
  right: 32px;
  cursor: pointer;
}
.modal__inner--img img {
  border: solid white 17px;
  border-radius: 0 32px;
}
.modal__inner--cta {
  margin-top: 24px;
}
.modal__inner--cta .elementor-button {
  background-color: #009FEB !important;
}
.modal strong {
  font-weight: bold;
}
.modal p,
.modal a,
.modal h1,
.modal h2,
.modal h3,
.modal h4,
.modal h5,
.modal h6 {
  color: #fff !important;
  text-transform: none !important;
}

.modal-show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}/*# sourceMappingURL=style.css.map */