.pma-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.pma-popup.active {
  opacity: 1;
  visibility: visible;
}

.pma-popup-content {
  background: #fff;
  max-width: 90%;
  width: auto;
  padding: 0;
  border-radius: 0;
  text-align: center;
  position: relative;
  animation: popupFade .4s ease;
}

@keyframes popupFade {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.pma-popup h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.pma-popup p {
  margin-bottom: 20px;
}

.pma-btn-close {
  position: absolute !important;
  top: -15px !important;
  right: -15px !important;
  background: black !important;
  color: #fff !important;
  font-size: 1.85rem !important;
  border: 1px solid black !important;
  border-radius: 70% !important;
  padding: 0 !important;
  line-height: 1em !important;
  width: 40px !important;
  height: 40px !important;
}

.pma-btn-close:hover {
  background: #aaa;
  color: #fff;
}
