#checkoutModal{
  display: none;
  /* overflow: auto; */
}


/* Modal Content */
.modal-container {
  position: fixed;
  top: 40%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  z-index: 10000; /* Ensure the modal is on top of the overlay */
  font-size: 12px;
  margin-top: 50px;
}

 /* Style for the dark overlay */
 .overlayCheckout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (last value) as needed */
  z-index: 9999; /* Ensure the overlay is on top of other content */
  display: none; /* Hide the overlay by default */
}


/* Modal Header */
modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background-color: #4b8c91;
  padding: 10px;
  /* border-top-left-radius: 2rem;
  border-top-right-radius: 2rem; */
}

/* Modal Title */
.modal-title {
  flex-grow: 1; /* Let the title take up remaining space */
}

/* Close Button */
.close-btn {
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal-contain {
  display: flex;
  margin: 15px;
}
.details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.dateCalcDiv input[type="text"] {
  min-width: 90%;
  padding: 12px 20px;
  margin: 8px 0;
  /* display: inline-block; */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
}


.dateCalcDiv input[type="tel"] {
  min-width: 90%;
  padding: 12px 20px;
  margin: 8px 0;
  /* display: inline-block; */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
}

.dateCalcDiv input[type="integer"] {
  min-width: 90%;
  padding: 12px 20px;
  margin: 8px 0;
  /* display: inline-block; */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
}

button {
  background-color: #04aa6d;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}
.promoBtn:hover {
  transition: transform 0.2s;
}
.promoBtn:active,
.promoBtn:focus {
  box-shadow: 2px 2px 6px --neu-2, -2px -2px 6px var(--white);
  transform: scale(0.97);
  transition: 0.25s;
  box-shadow: 8px 8px 16px var(--neu-2), -8px -8px 16px var(--white);
}
button:hover {
  opacity: 1;
}

input[type="text"] {
  min-width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  /* display: inline-block; */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
}

input[type="tel"] {
  min-width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  /* display: inline-block; */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
}

input[type="integer"] {
  min-width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  /* display: inline-block; */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
}

/* Extra styles for the cancel button */
.cancelbtn {
  padding: 14px 20px;
  background-color: #f44336;
}


@media screen and (max-width: 300px) {
  .cancelbtn,
  .confirmbtn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  /* Modal Content */
  .modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    background-color: rgba(255, 255, 255);
    z-index: 9998; /* Ensure the modal is on top of the overlay */
    padding: 20px; /* Add padding as necessary */
    overflow-y: auto; /* Add scroll bar if content overflows vertically */
    transform: translate(0%, 0%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

   /* Style for the dark overlay */
 .overlayCheckout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (last value) as needed */
  z-index: 0; /* Ensure the overlay is on top of other content */
  display: none; /* Hide the overlay by default */
}

}
