.vlcy-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  height: auto !important;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.cta-button {
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.cta-button:hover {
  /* background-color: #4d413b; */
}

.thankYouModal {
  display: none;
  justify-content: center;
  text-align: center;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  height: 100%;
}
.thankYouModal .modal-content {
  height: 150px !important;
}

#orderModal .modal-content form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#orderModal input {
  padding: 10px;
  border-radius: 12px;
  outline: none;
}

@media screen and (min-width: 1024px) {
  .thankYouModal {
    font-size: 28px;
  }

  .thankYouModal .modal-content {
    height: 200px !important;
  }
}
