@charset "UTF-8";
.visual {
  position: relative;
}
.visual.rw-wellness {
  margin-bottom: -7vh;
  z-index: 20;
}
@media (max-width: 767px) {
  .visual.rw-wellness {
    margin-bottom: 0;
  }
}

.visual-desk img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .visual-desk img {
    display: none;
  }
}

.visual-mobile {
  background: linear-gradient(#036242 0%, #88cc7a 100%);
}
.visual-mobile img {
  display: none;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .visual-mobile img {
    display: block;
  }
}

.rw-container {
  padding: 3.13rem 0;
}
.rw-container input {
  border-color: var(--green);
  color: #575757;
}
.rw-container #edit-submit {
  color: #ffffff;
}

.title-wrap {
  position: absolute;
  top: 40%;
  left: 55%;
  color: #FFF;
  width: 40%;
  max-width: 28.75rem;
}
@media (max-width: 767px) {
  .title-wrap {
    position: initial;
    width: 100%;
    max-width: 100%;
    background-color: var(--green);
    padding-top: 2.81rem;
    padding-bottom: 2.81rem;
  }
}

.title {
  font-size: 3.31rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
}
@media (max-width: 767px) {
  .title {
    font-size: 2.5rem;
  }
}

.subtitle {
  font-size: 1rem;
}

.form-title {
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 700;
  color: var(--green);
  margin-top: 4.06rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .form-title {
    font-size: 1.56rem;
    margin-top: 3rem;
  }
}

.form-subtitle {
  font-size: 1.56rem;
  text-align: center;
  margin-bottom: 3.44rem;
}
@media (max-width: 767px) {
  .form-subtitle {
    font-size: 1.25rem;
  }
}

.ridays-chalet {
  margin-bottom: 3.75rem;
}

.form-wrapper-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 100px;
}

.form-type-checkbox .form-item--label {
  font-size: 1.13rem;
  font-style: normal;
  padding-left: 4.06rem;
  text-transform: none;
}
@media (max-width: 767px) {
  .form-type-checkbox .form-item--label {
    padding-left: 3.13rem;
  }
}

/* Nasconde l'input radio di default */
.form-type-checkbox input[type=checkbox] {
  display: none;
}

/* Stile per la checkbox personalizzata (usando l'etichetta esistente) */
.form-type-checkbox input[type=checkbox] + label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  position: relative;
}

/* Creazione della checkbox personalizzata */
.form-type-checkbox input[type=checkbox] + label::before {
  content: "";
  width: 40px;
  height: 40px;
  border: 2px solid var(--green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  transition: background-color 0.3s;
}

/* Creazione della chevron */
.form-type-checkbox input[type=checkbox]:checked + label::after {
  content: ""; /* Non aggiungiamo contenuto di testo */
  position: absolute;
  left: 16px; /* Posizione relativa alla checkbox */
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.3s;
  background-image: url("../../images/ico-arrow-green-2x.png");
  background-size: contain; /* Adatta l'immagine mantenendo le proporzioni */
  background-repeat: no-repeat; /* Evita la ripetizione dell'immagine */
  width: 16px; /* Imposta la larghezza desiderata */
  height: 16px;
}

/* Nascondi la chevron se non è selezionata */
.form-type-checkbox input[type=checkbox]:not(:checked) + label::after {
  opacity: 0;
}

.form-type-checkbox input[type=checkbox]:checked + label {
  font-weight: bold;
}

#edit-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 1.88rem;
}

.custom-bkg {
  background: url("../../images/bg.jpg") no-repeat fixed;
  background-size: cover;
  color: #FFF;
  padding-top: 10.63rem;
  text-align: center;
  padding-bottom: 9.38rem;
  min-height: 80vh;
}
.custom-bkg .title {
  font-size: 4.38rem;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.88rem;
}
@media (max-width: 767px) {
  .custom-bkg .title {
    font-size: 2.5rem;
  }
}
.custom-bkg .subtitle {
  font-size: 1.56rem;
  font-style: italic;
  margin-top: 2.38rem;
  margin-bottom: 2.06rem;
}
@media (max-width: 767px) {
  .custom-bkg .subtitle {
    font-size: 1.56rem;
  }
}
.custom-bkg .text {
  font-size: 1rem;
  margin-bottom: 2.69rem;
}
@media (max-width: 767px) {
  .custom-bkg .text {
    margin-bottom: 5.25rem;
  }
}