/* General styling for the form */
body {
  background-color: #f4f7fb;
  font-family: "Arial", sans-serif;
}

.container {
  max-width: 800px;
  margin-top: 50px;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
}

h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* Styling for hidden elements */
.hidden {
  display: none;
}

/* Add space between each step */
.step {
  margin-bottom: 20px;
}

/* Styling for the navigation buttons */
.navigation {
  display: flex;
  justify-content: space-between;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

button#prevBtn {
  background-color: #ccc;
}

button#nextBtn {
  background-color: #007bff;
  color: #fff;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Progress bar styling */
.progress {
  height: 10px;
  margin-bottom: 20px;
}

.progress-bar {
  transition: width 0.3s ease-in-out;
}

/* Modal fade in animation */
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
  opacity: 1;
}

/* Custom modal styling */
.modal-content {
  border-radius: 8px;
}

.modal-header {
  background-color: #dc3545;
  color: #fff;
}

.modal-footer {
  display: flex;
  justify-content: center;
}

/* Custom Error Icon */
.modal-header .bi {
  margin-right: 10px;
}

/* Custom Error Message */
.modal-body {
  font-weight: bold;
  color: #fff;
}

#thankYouModal .modal-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.orig-price {
  text-decoration: line-through !important;
}
