
.alert-pop {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  background-color: rgba(114, 117, 126, 0.7);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  place-content: center;
  -webkit-box-pack: center;
  z-index: 2000;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup .close {
  padding: 10px;
  color: #251955;
}

.popup-inner{
    background-color: #fff;
    padding: 2rem 2rem 1.5rem;
    border: 2px solid #ad9af1;
}

@media (max-width:768px) {
  .popup {
    width: 80%;
  }
}