/* Modal styling */
.modal-content {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: none;
}

.modal-header {
  background-color: #f8f9fa;
  border-bottom: none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 20px;
}

.modal-title {
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.modal-body {
  padding: 30px;
}

/* Form styling */
.form-label {
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Search button styling */
#online_payment_form_search_button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

#online_payment_form_search_button:hover {
  background-color: #0056b3;
}

/* Input group styling */
.input-group-text {
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-right: none;
  color: #555;
}

/* Submit button styling */
#online_payment_form_submit_button {
  background-color: #28a745;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#online_payment_form_submit_button:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Cute animations */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.modal.show .modal-dialog {
  animation: bounce 0.5s;
}

/* Additional touches for elegance */
.btn-close {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }
  .modal-body {
    padding: 20px;
  }
}
#selected_student_for_online_payment_card {
  max-width: 200px;
  font-size: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

#selected_student_for_online_payment_card .card-img-top {
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

#selected_student_for_online_payment_card .badge {
  font-size: 8px;
  padding: 2px 4px;
}

#selected_student_for_online_payment_card .card-body {
  padding: 8px;
}

#selected_student_for_online_payment_card .card-title {
  font-size: 10px;
  margin-bottom: 4px;
}

#selected_student_for_online_payment_card .card-text {
  font-size: 9px;
  margin-bottom: 4px;
}

#selected_student_for_online_payment_card i {
  font-size: 8px;
}

@keyframes blinkingColors {
  0% {
    background-color: rgba(255, 0, 255, 0.7);
  }
  20% {
    background-color: rgba(0, 255, 255, 0.7);
  }
  40% {
    background-color: rgba(255, 255, 0, 0.7);
  }
  60% {
    background-color: #000000;
    color: white;
  }
  80% {
    background-color: #000000;
    color: #0000FF;
  }
  100% {
    background-color: #FF0000;
    color: white;
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  }
}
.fixed-top-wrapper {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-top-wrapper .pay-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-top-wrapper .pay-button-wrapper .btn-pink {
  background-color: rgba(25, 5, 5, 0.137254902);
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  animation: blinkingColors 6s infinite, pulseGlow 3s infinite;
}
.fixed-top-wrapper .pay-button-wrapper .btn-pink:hover {
  background-color: #0b0410;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  animation-play-state: paused;
}
.fixed-top-wrapper .pay-button-wrapper .btn-pink i {
  margin-right: 4px;
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .fixed-top-wrapper {
    top: 7rem;
    left: 0;
    right: auto;
    justify-content: flex-start;
    padding-left: 10px;
  }
  .fixed-top-wrapper .pay-button-wrapper .btn-pink {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}/*# sourceMappingURL=AE_PAYMENT.css.map */