.modal-custom {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-custom.active {
  display: flex;
  background: rgba(0,0,0,0.5);
}

.modal-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: transparent;
}

.modal-content {
  position: relative;
  background: white;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  z-index: 10;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 36px;
    cursor: pointer;
    color: #9a9a9a;
}

.modal-custom .success {
    font-size: 18px;
    font-weight: 600;
}