
.appscom-modal {
  display: none; 
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}


.appscom-modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  /* max-width: 500px; */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  transform: scale(0.7);
  opacity: 0;
  min-height: calc(100vh - 5%);
}

.appscom-modal-open{
  overflow: hidden!important;
}


.appscom-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.appscom-modal-close:hover {
  color: #000;
}

.appscom-modal-content > div {
    margin-top: 30px;
}

/* Animasi */
@keyframes scaleIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes scaleOut {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(0.7); opacity: 0; }
}