.alertify-notifier {
  z-index: 999999 !important;
}

/* Targets the first child div inside #wlr-available-points */
#wlr-available-points > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.wlps-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.wlps-modal-content {
  background: #fff;
  max-width: 500px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}
.wlps-modal-content.wlps-alert-content {
  max-width: 400px;
  margin: 15% auto;
  text-align: center;
}

.wlps-close-modal,
.wlps-close-alert-modal {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #333;
  border: none;
  padding: 4px 8px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  outline: none;
  border-radius: 4px;
}

#wlps-transfer-form input,
#wlps-alert-input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border-radius: 7px 7px 7px 7px;
}

button.button.button-primary {
  background-color: #4F47EB;
  color: #ffffff;
  border-radius: 7px;
}

#wlps-transfer-points-error,
#wlps-alert-message {
  color: red;
  font-size: 13px;
  display: none;
}

.wlps-input-error {
  border: 2px solid red !important;
  outline: none !important;
}

.wlps-alert-buttons {
  margin-top: 15px;
}

/* Center modal content when visible */
.wlps-modal {
  align-items: center;
  justify-content: center;
}

/* Bounce animation */
@keyframes wlps-bounce-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.bounce-in {
  animation: wlps-bounce-in 0.4s ease-out;
}

/*# sourceMappingURL=transfer-modal.css.map */
