.modal-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  transition: opacity 0.5s ease;
}
.modal-cta.is-shown {
  z-index: 10000;
  opacity: 1;
}
.modal-cta__container {
  position: relative;
  padding: 25px;
  background: #ddd;
}
.modal-cta__link {
  display: inline-block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.modal-cta__close {
  position: absolute;
  top: -1px;
  right: -1px;
  display: block;
  width: 30px;
  height: 30px;
  font-size: 10px;
  cursor: pointer;
}
.modal-cta__close::before, .modal-cta__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  background: #6d6d6d;
  width: 4px;
  height: 20px;
}
.modal-cta__close:hover::before, .modal-cta__close:hover::after {
  background: #333;
}
.modal-cta__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-cta__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-cta__closeLabel {
  display: none;
}