/* Style untuk alert mengambang */
.snap-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  display: none;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
}

.snap-alert.show {
  opacity: 1;
  transform: translateX(0);
  display: flex;
}

.snap-alert.success {
  background: #4caf50;
  border-left: 5px solid #388e3c;
}

.snap-alert.pending {
  background: #ff9800;
  border-left: 5px solid #f57c00;
}

.snap-alert.error {
  background: #f44336;
  border-left: 5px solid #d32f2f;
}

.snap-alert .close-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  padding: 0 5px;
}/*# sourceMappingURL=payment.css.map */