.tour-form-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;             /* hidden by default */
  align-items: center;       /* center vertically */
  justify-content: center;   /* center horizontally */
  z-index: 9999;
}

/* Modal box */
.tour-form-modal {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When active */
.tour-form-overlay.active {
  display: flex;
}
.tour-form-overlay.active .tour-form-modal {
  transform: scale(1);
  opacity: 1;
}

.custom-form-single .form-group {
    background-color: var(--gray-color);
    margin-top: 2px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 5px;
}
label {
    display: block;
    margin-bottom: 8px;
    margin-top: 10px;
    margin-right: 10px;
    text-align: right;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: bold;
}
input[type="text"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  font-family: var(--font-main);
  font-size: 12px;
  border-radius: 0px;
  border: 0px solid var(--gray-color);
  box-sizing: border-box;
  background-color: var(--gray-color);
}
textarea {
  resize: vertical;
}
.submit-form-button {
    margin-top: 20px;
    background-color: var(--red-color);
    color: var(--background-color);
    padding: 12px 30px;
    border: none;
    width: 100%;
    border-radius: 25px;
    font-family: var(--font-main);
    font-size: 16px;
    cursor: pointer;
    height: 50px;
    font-weight: bold;
}
.form-group-whatsapp-single{
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
}
.form-group-whatsapp-single-icon{
    margin: 10px;
    width: 50px;
    height: 50px;
}
.form-group-whatsapp-single-text{
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--black-color);
}
.option-list {
  display: flex;
  flex-direction: column;
}
.option-item {
  flex: 1;
  min-width: 100px;
  padding: 10px 15px;
  text-align: right;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 14px;
  transition: 0.3s;
}
.option-item:hover,
.option-item.selected {
  border-color: var(--red-color);
  background-color: var(--red-color);
  color: var(--background-color);
}
.title_label{
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  color: var(--green-color);
}
.subtitle_label{
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}
.message-group{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.success_icon{
  width: 120px;
  height: 120px;
}
