* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.checkout-container{
  margin-top: 60px;
}

.modal-header h5 {
  font-size: 1.75rem;
  font-weight: bold;
}

.modal-content {
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.modal-header button {
  font-size: 2.5rem;
  background-color: #fff;
  border: none;
}

.modal-body{
  font-size: 1.4rem;
  max-height: 400px;
  overflow-y: auto;
}

.modal-body h6{
  font-size: 1.5rem !important;
  font-weight: bold;
  margin-top: 20px;
}

.modla-body ul {
  list-style-type: disc;
  margin-left: 20px;
}

.form-check-label{
  font-size: 1rem;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-body p {
  font-size: 1.6rem !important;
}

.modal-footer {
  justify-content: center !important;
}

.modal-footer button {
  background-color: #ff6b6b;
  font-size: 1.75rem;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.breadcrumb {
  text-align: center;
  color: #888;
  margin-bottom: 30px;
}

.checkout-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.checkout-option {
  flex: 1;
  text-align: center;
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 5px;
  margin: 0 10px;
  place-content: center;
  font-size: 1.75rem;
  font-weight: bold;
}

.checkout-option a {
  text-decoration: none;
  color: #000;
}

.checkout-option img {
  width: 25px;
}

.checkout-option a i {
  color: #ff6b6b;
}

.checkout-option.active {
  background-color: #ff6b6b;
  color: white;
}

.checkout-option.active a {
  color: #fff;
}

.checkout-option.active a i {
  color: #fff;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

@media (max-width: 991px) {
  .main-content {
    grid-template-columns: 1fr;
  }
}

.pricing-options {
  flex: 1;
  min-width: 300px;
}

.pricing-option {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

.status-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5em;
  color: gray;
}

.selected .status-icon {
  color: green;
}

.selected .status-icon .bi {
  content: "\f084"; /* Icon for check-circle-fill */
}

.pricing-option:not(.selected) .status-icon .bi {
  content: "\f10c"; /* Icon for circle */
}

.pricing-option h3 {
  margin-bottom: 10px;
}

.pricing-option .price {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing-option .discount {
  color: #ff6b6b;
  font-size: 14px;
}

.pricing-option ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.pricing-option ul li {
  margin-bottom: 5px;
}

.pricing-option ul li::before {
  content: "✔"; /* Unicode for check mark */
  color: green; /* Change color if desired */
  margin-right: 8px; /* Spacing between tick and text */
}

.pricing-option button {
  width: 100%;
  padding: 10px;
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.checkout-form {
  flex: 2;
  min-width: 300px;
  padding: 2rem;
  border: 2px solid #ff6b6b;
  border-radius: 1rem;
}

.checkout-form hr {
  margin: 1rem 0;
  border: 1px solid #000;
  width: 100%;
}

form {
  & h2{
    font-weight: bold;
  }

  & h3 {
    margin-bottom: 20px;
    color: #333;
    margin-top: 30px;
  }

  & .input-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }

  & .input-container {
    position: relative;
    flex: 1;
  }

  & .custom-fieldset-input {
    padding: 1em 1em 0.5em;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    font-size: 1.5rem;
    box-sizing: border-box;
    padding-right: 2.5rem;
    background-color: #fff;
  }

  & .input-label {
    position: absolute;
    top: -0.7em;
    left: 1em;
    background-color: white;
    padding: 0 0.3em;
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
    pointer-events: none;
  }

  & .tick-icon {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    pointer-events: none;
  }

  & .custom-fieldset-input:focus, .custom-select:focus{
    border-color: #007bff;
    outline: none;
  }

  & #proButton {
    width: 100%;
    padding: 10px;
    font-size: 20px;
    border-radius: 35px;
    background: #ff6b6b;
    border-color: #ff6b6b;
  }
}

/* #proButton { */
/*     width: 100%; */
/*     padding: 10px; */
/*     font-size: 20px; */
/*     border-radius: 35px; */
/*     background: #ff6b6b; */
/*     border-color: #ff6b6b; */
/*   } */
/**/

.form-group {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.addon {
  display: flex;
  justify-content: space-between;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-option {
  flex: 1;
  min-width: 100px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

.payment-option img {
  max-width: 100%;
  height: 30px;
}

.terms {
  margin-bottom: 20px;
}

.checkout-button {
  width: 100%;
  padding: 15px;
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

.payment-method-group {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping to the next row */
  gap: 20px; /* Adds space between items */
  justify-content: space-between; /* Aligns items in rows evenly */
}

.payment-method {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: calc(50% - 10px); /* Ensures two items per row with space */
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.payment-method:hover {
  border-color: #007bff;
}

.payment-method input[type="radio"] {
  margin-right: 10px;
}

.payment-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.payment-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.payment-logo {
  width: 85px;
  height: 30px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }

  .checkout-form {
    padding-left: 0;
  }
}

.locked{
background-color: #c8cad0;
}

