@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/apex-new");
@import url("https://fonts.cdnfonts.com/css/apex-new");
* {
  font-family: "Apex New Book";
}
label, h6 {
  font-family: "Apex New Medium";
}
p strong {
  font-family: "Apex New Medium";
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  body.menu-open {
    overflow: hidden;
  }
}
header.header-default {
  position: relative;
  width: 100%;
  z-index: 999;
}
header.header-default .upper-header {
  color: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header.header-default .upper-header .navbar-brand {
  display: flex;
  justify-content: space-between;
}
header.header-default .upper-header .haburger-button-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header.header-default .upper-header .navbar-brand img {
  max-width: 200px;
  height: auto;
}
@media (max-width: 520px) {
  header.header-default .upper-header .navbar-brand img {
    max-width: 150px;
  }
}
@media (max-width: 375px) {
  header.header-default .upper-header .navbar-brand img {
    max-width: 100px;
  }
}
header.header-default .upper-header .hamburger-button {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
header.header-default .upper-header .hamburger-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header.header-default .upper-header .hamburger-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}
header.header-default .upper-header .hamburger-button .hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}
header.header-default .upper-header .hamburger-button.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
header.header-default .upper-header .hamburger-button.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
header.header-default .upper-header .hamburger-button.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
header.header-default .lower-header {
  background-color: #003761;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
header.header-default .lower-header .navigation-container {
  position: relative;
}
@media (max-width: 991.98px) {
  header.header-default .lower-header .navigation-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #003761;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }
  header.header-default .lower-header .navigation-menu.show {
    max-height: 100vh;
    height: 100vh;
  }
}
header.header-default .lower-header .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  header.header-default .lower-header .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 0;
  }
}
header.header-default .lower-header .nav-list .nav-item {
  margin: 0;
}
@media (min-width: 992px) {
  header.header-default .lower-header .nav-list .nav-item {
    margin: 0 10px;
  }
}
header.header-default .lower-header .nav-list .nav-item .nav-link {
  display: block;
  padding: 20px 25px;
  padding-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  font-family: "Apex New Medium", sans-serif;
}
@media (max-width: 991.98px) {
  header.header-default .lower-header .nav-list .nav-item .nav-link {
    padding: 20px 25px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-size: 18px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header.header-default .lower-header .nav-list .nav-item .nav-link:last-child {
    border-bottom: none;
  }
}
header.header-default .lower-header .nav-list .nav-item .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}
header.header-default .lower-header .nav-list .nav-item .nav-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  header.header-default .lower-header .nav-list .nav-item .nav-link:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
header.header-default .lower-header .nav-list .nav-item .nav-link.active {
  color: #ffffff;
  font-weight: 600;
}
header.header-default .lower-header .nav-list .nav-item .nav-link.active::after {
  display: none;
}
header.header-default .lower-header .nav-list .nav-item .nav-link.disabled {
  color: rgba(255, 255, 255, 0.3) !important;
  pointer-events: none;
  cursor: not-allowed;
}
header.header-default .lower-header .nav-list .nav-item .nav-link.disabled:hover {
  background-color: transparent !important;
  transform: none !important;
}
header.header-default .lower-header .nav-list .nav-item .nav-link.disabled i {
  opacity: 0.3;
}
header.header-default .lower-header .nav-list .nav-item .nav-link.loading {
  opacity: 0.6;
  pointer-events: none;
}
header.header-default .lower-header .nav-list .nav-item .nav-link.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.step-link {
  transition: all 0.3s ease;
}
/* Stili per il contenitore principale */
#confermapresenza-step {
  /* Font Awesome */
  /* Dimensione testo paragrafo */
  /* Layout immagini */
  /* Responsive: impilare testo e immagine su mobile */
  /* Banner con titolo allineato a sinistra */
}
#confermapresenza-step #animazione {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 9999;
  background: #000;
  opacity: 1;
  transition: opacity 2s ease-out;
}
#confermapresenza-step #animazione.fade-out {
  opacity: 0;
}
#confermapresenza-step #animazione.hidden {
  display: none;
}
#confermapresenza-step .fab, #confermapresenza-step .fa-brands {
  font-family: "Font Awesome 6 Brands";
}
#confermapresenza-step .fas, #confermapresenza-step .fa-classic, #confermapresenza-step .fa-solid, #confermapresenza-step .far, #confermapresenza-step .fa-regular {
  font-family: "Font Awesome 6 Free";
}
#confermapresenza-step .paragraph-size-small {
  font-size: 0.8rem;
  line-height: 1.5;
}
#confermapresenza-step .paragraph-size-standard {
  font-size: 1rem;
  line-height: 1.6;
}
#confermapresenza-step .paragraph-size-medium {
  font-size: 1.5rem;
  line-height: 1.7;
}
#confermapresenza-step .paragraph-size-large {
  font-size: 1.8rem;
  line-height: 1.75;
}
#confermapresenza-step .paragraph-wrapper p, #confermapresenza-step .paragraph-wrapper ul, #confermapresenza-step .paragraph-wrapper ol, #confermapresenza-step .paragraph-wrapper li {
  font-size: inherit !important;
  line-height: inherit;
}
#confermapresenza-step .paragraph-wrapper a {
  text-decoration: none;
  color: #ffffff;
}
#confermapresenza-step .end-message-container {
  margin-bottom: 20px;
}
#confermapresenza-step .end-message-container .end-message {
  color: #ffffff;
}
#confermapresenza-step .end-message-container .end-message p {
  margin: 0;
}
#confermapresenza-step .image-layout-full img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}
#confermapresenza-step .image-layout-left, #confermapresenza-step .image-layout-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
#confermapresenza-step .image-layout-left img, #confermapresenza-step .image-layout-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  flex-shrink: 0;
}
#confermapresenza-step .image-layout-left .text, #confermapresenza-step .image-layout-right .text {
  flex: 1;
}
#confermapresenza-step .image-layout-left {
  flex-direction: row;
}
#confermapresenza-step .image-layout-right {
  flex-direction: row-reverse;
}
#confermapresenza-step .image-layout-only img {
  width: 100%;
  height: auto;
  display: block;
}
#confermapresenza-step .message-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #confermapresenza-step .image-layout-left, #confermapresenza-step .image-layout-right {
    flex-direction: column !important;
  }
  #confermapresenza-step .image-layout-left img, #confermapresenza-step .image-layout-left .text, #confermapresenza-step .image-layout-right img, #confermapresenza-step .image-layout-right .text {
    max-width: 100%;
  }
}
#confermapresenza-step .content-wrapper {
  min-height: calc(100vh - 245px);
}
#confermapresenza-step .section-banner-fullwidth.align-left {
  text-align: left;
  padding-left: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  /* fallback per piccoli schermi */
  padding-right: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  /* opzionale per simmetria */
  max-width: 100%;
}
@media (min-width: 576px) {
  #confermapresenza-step .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  #confermapresenza-step .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  #confermapresenza-step .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  #confermapresenza-step .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 1400px) {
  #confermapresenza-step .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 1320px) / 2);
  }
}
#confermapresenza-step .section-banner-fullwidth.align-left {
  text-align: left;
  padding-left: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  padding-right: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  max-width: 100%;
}
#confermapresenza-step .section-banner-fullwidth.align-right {
  text-align: right;
  padding-left: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  padding-right: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  max-width: 100%;
}
@media (min-width: 576px) {
  #confermapresenza-step .section-banner-fullwidth.align-left, #confermapresenza-step .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 540px) / 2);
    padding-right: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  #confermapresenza-step .section-banner-fullwidth.align-left, #confermapresenza-step .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 720px) / 2);
    padding-right: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  #confermapresenza-step .section-banner-fullwidth.align-left, #confermapresenza-step .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 960px) / 2);
    padding-right: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  #confermapresenza-step .section-banner-fullwidth.align-left, #confermapresenza-step .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 1140px) / 2);
    padding-right: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 1400px) {
  #confermapresenza-step .section-banner-fullwidth.align-left, #confermapresenza-step .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 1320px) / 2);
    padding-right: calc((100vw - 1320px) / 2);
  }
}
.section-container {
  position: relative;
  min-height: 200px;
}
.section-container.loading {
  opacity: 0.6;
  pointer-events: none;
}
.section-container.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.section-single {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
  position: relative;
  overflow: hidden;
}
.section-single img {
  z-index: -1;
  position: absolute;
  bottom: -450px;
  right: -300px;
  max-width: 1000px;
}
@media (max-width: 425px) {
  .section-single img {
    bottom: -395px;
    right: -170px;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-prosegui {
  background-color: #003761;
  border-color: #003761;
  color: white;
  padding: 12px 30px;
  padding-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.btn-prosegui:hover {
  background-color: #1b4474;
  border-color: #003761;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-prosegui:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn-prosegui:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.btn-prosegui i {
  transition: transform 0.3s ease;
}
.btn-prosegui:hover i {
  transform: translateX(3px);
}
.btn-search-form {
  background-color: #003761;
  border-color: #003761;
  color: white;
  padding: 12px 30px;
  padding-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.btn-search-form:hover {
  background-color: #1b4474;
  border-color: #003761;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-search-form:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn-search-form:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.btn-search-form i {
  transition: transform 0.3s ease;
}
.btn-search-form:hover i {
  transform: translateX(3px);
}
@media (max-width: 767.98px) {
  .btn-prosegui {
    padding: 10px 25px;
    font-size: 1rem;
  }
}
.green-box {
  padding-top: 4px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.green-box label {
  color: #ffffff;
}
#ticket-layout * {
  font-family: "Apex New Book";
}
#ticket-layout .fw-bold {
  font-family: "Apex New Medium";
}
#ticket-layout strong {
  font-family: "Apex New Medium";
}
#ticket-layout h1, #ticket-layout h2, #ticket-layout h3, #ticket-layout h4, #ticket-layout h5, #ticket-layout h6 {
  font-family: "Apex New Medium";
}
#ticket-layout h4 {
  font-size: 30px;
}
#ticket-layout .container {
  border-radius: 5px;
}
#ticket-layout .container p {
  line-height: 28px;
  margin: 0;
  font-size: 24px;
}
#ticket-layout .container .qrcode {
  width: 400px;
}
#ticket-layout .container .img-testata img {
  width: 100%;
  object-position: center;
  object-fit: contain;
}
#ticket-layout .container .pianta-container img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
#ticket-layout .container .btn-stampa {
  background-color: #003761;
  border-color: #003761;
  color: white;
  padding: 12px 30px;
  padding-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
#ticket-layout .container .btn-stampa:hover {
  background-color: #1b4474;
  border-color: #003761;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
#ticket-layout .container .btn-stampa:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#ticket-layout .container .btn-stampa:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
#ticket-layout .container .btn-stampa i {
  transition: transform 0.3s ease;
}
#ticket-layout .container .btn-stampa:hover i {
  transform: translateX(3px);
}
#rifiuta .boxed {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  max-width: 800px;
  max-height: 400px;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.46);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.6px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: -1px 5px 15px 5px rgba(0, 0, 0, 0.2);
}
#rifiuta .boxed .succes-confirmed {
  border-radius: 16px;
  border: 1px solid #16375c;
  padding: 20px;
  margin: 20px 0;
}
#rifiuta .boxed .succes-confirmed p {
  color: #16375c;
  font-size: 1rem;
  text-align: justify;
  margin: 0;
}
#rifiuta .boxed form {
  border-radius: 5px;
}
#rifiuta .boxed form input {
  padding-bottom: 10px;
}
#rifiuta .boxed form label, #rifiuta .boxed form input[type="checkbox"] {
  cursor: pointer;
}
#rifiuta .boxed form label {
  display: block;
}
#rifiuta .boxed form input[type="text"], #rifiuta .boxed form input[type="email"], #rifiuta .boxed form input[readonly] {
  border: none !important;
  border-bottom: 1px solid #16375c !important;
  border-radius: 0 !important;
  background: transparent !important;
}
#rifiuta .boxed form input[type="text"]:focus, #rifiuta .boxed form input[type="email"]:focus, #rifiuta .boxed form select:focus {
  border: none;
  outline: none;
  box-shadow: 0 0;
}
#rifiuta .boxed form input[type="checkbox"], #rifiuta .boxed form input[type="radio"] {
  margin-right: 0.5rem;
}
#rifiuta .boxed form .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
#rifiuta .boxed form .input-wrapper {
  margin-bottom: 1rem;
}
#rifiuta .boxed form #invia {
  border: 1px solid #16375c;
  color: #16375c;
  background-color: transparent;
  font-weight: bold;
}
#rifiuta .boxed form #invia:hover {
  color: #ffffff;
  background-color: #16375c;
}
/* Stili per il contenitore principale */
#documenti {
  overflow: hidden;
  min-height: calc(100vh - 185px);
  /* Font Awesome */
  /* Dimensione testo paragrafo */
  /* Layout immagini */
  /* Responsive: impilare testo e immagine su mobile */
  /* Banner con titolo allineato a sinistra */
}
#documenti .bg-blue {
  background-color: #16375c;
}
#documenti .msg-confirmed {
  background-color: #003761;
  color: #ffffff;
}
#documenti .msg-confirmed a {
  color: #ffffff;
}
#documenti .main-image {
  z-index: -1;
  position: absolute;
  bottom: -450px;
  right: -300px;
  max-width: 1000px;
}
#documenti .fab, #documenti .fa-brands {
  font-family: "Font Awesome 6 Brands";
}
#documenti .fas, #documenti .fa-classic, #documenti .fa-solid, #documenti .far, #documenti .fa-regular {
  font-family: "Font Awesome 6 Free";
}
#documenti .paragraph-size-small {
  font-size: 0.8rem;
  line-height: 1.5;
}
#documenti .paragraph-size-standard {
  font-size: 1rem;
  line-height: 1.6;
}
#documenti .paragraph-size-medium {
  font-size: 1.5rem;
  line-height: 1.7;
}
#documenti .paragraph-size-large {
  font-size: 1.8rem;
  line-height: 1.75;
}
#documenti .paragraph-wrapper p, #documenti .paragraph-wrapper ul, #documenti .paragraph-wrapper ol, #documenti .paragraph-wrapper li {
  font-size: inherit !important;
  line-height: inherit;
}
#documenti .paragraph-wrapper a {
  text-decoration: none;
  color: #ffffff;
}
#documenti .end-message-container {
  margin-bottom: 20px;
}
#documenti .end-message-container .end-message {
  color: #ffffff;
}
#documenti .end-message-container .end-message p {
  margin: 0;
}
#documenti .image-layout-full img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}
#documenti .image-layout-left, #documenti .image-layout-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
#documenti .image-layout-left img, #documenti .image-layout-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  flex-shrink: 0;
}
#documenti .image-layout-left .text, #documenti .image-layout-right .text {
  flex: 1;
}
#documenti .image-layout-left {
  flex-direction: row;
}
#documenti .image-layout-right {
  flex-direction: row-reverse;
}
#documenti .image-layout-only img {
  width: 100%;
  height: auto;
  display: block;
}
#documenti .message-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #documenti .image-layout-left, #documenti .image-layout-right {
    flex-direction: column !important;
  }
  #documenti .image-layout-left img, #documenti .image-layout-left .text, #documenti .image-layout-right img, #documenti .image-layout-right .text {
    max-width: 100%;
  }
}
#documenti .content-wrapper {
  min-height: calc(100vh - 245px);
}
#documenti .section-banner-fullwidth.align-left {
  text-align: left;
  padding-left: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  /* fallback per piccoli schermi */
  padding-right: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  /* opzionale per simmetria */
  max-width: 100%;
}
@media (min-width: 576px) {
  #documenti .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  #documenti .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  #documenti .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  #documenti .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 1400px) {
  #documenti .section-banner-fullwidth.align-left {
    padding-left: calc((100vw - 1320px) / 2);
  }
}
#documenti .section-banner-fullwidth.align-left {
  text-align: left;
  padding-left: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  padding-right: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  max-width: 100%;
}
#documenti .section-banner-fullwidth.align-right {
  text-align: right;
  padding-left: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  padding-right: calc(var(--bs-gutter-x) * 0.5 + 1.5rem);
  max-width: 100%;
}
@media (min-width: 576px) {
  #documenti .section-banner-fullwidth.align-left, #documenti .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 540px) / 2);
    padding-right: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  #documenti .section-banner-fullwidth.align-left, #documenti .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 720px) / 2);
    padding-right: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  #documenti .section-banner-fullwidth.align-left, #documenti .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 960px) / 2);
    padding-right: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  #documenti .section-banner-fullwidth.align-left, #documenti .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 1140px) / 2);
    padding-right: calc((100vw - 1140px) / 2);
  }
}
@media (min-width: 1400px) {
  #documenti .section-banner-fullwidth.align-left, #documenti .section-banner-fullwidth.align-right {
    padding-left: calc((100vw - 1320px) / 2);
    padding-right: calc((100vw - 1320px) / 2);
  }
}
.section-container {
  position: relative;
  min-height: 200px;
}
.section-container.loading {
  opacity: 0.6;
  pointer-events: none;
}
.section-container.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.section-single {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
  position: relative;
  overflow: hidden;
}
.section-single img {
  z-index: -1;
  position: absolute;
  bottom: -450px;
  right: -300px;
  max-width: 1000px;
}
@media (max-width: 425px) {
  .section-single img {
    bottom: -395px;
    right: -170px;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-prosegui {
  background-color: #003761;
  border-color: #003761;
  color: white;
  padding: 12px 30px;
  padding-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.btn-prosegui:hover {
  background-color: #1b4474;
  border-color: #003761;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-prosegui:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn-prosegui:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.btn-prosegui i {
  transition: transform 0.3s ease;
}
.btn-prosegui:hover i {
  transform: translateX(3px);
}
.btn-search-form {
  background-color: #003761;
  border-color: #003761;
  color: white;
  padding: 12px 30px;
  padding-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.btn-search-form:hover {
  background-color: #1b4474;
  border-color: #003761;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-search-form:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn-search-form:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}
.btn-search-form i {
  transition: transform 0.3s ease;
}
.btn-search-form:hover i {
  transform: translateX(3px);
}
@media (max-width: 767.98px) {
  .btn-prosegui {
    padding: 10px 25px;
    font-size: 1rem;
  }
}
.green-box {
  padding-top: 4px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.green-box label {
  color: #ffffff;
}
.step-form {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Stili per gli input di testo */
  /* Stili per il pulsante di invio */
  /* Animazione per la scelta delle esigenze alimentari */
  /* Animazione per la selezione delle scelte alimentari */
  /* Animazione per la sezione privacy sensibile */
  /* Animazione per la sezione privacy immagini */
}
.step-form input {
  padding-bottom: 10px;
}
.step-form label, .step-form input[type="checkbox"] {
  cursor: pointer;
}
.step-form label {
  display: block;
}
.step-form input[type="text"], .step-form input[type="email"], .step-form input[type="tel"], .step-form input[type="date"], .step-form input[readonly] {
  border: none !important;
  border-bottom: 1px solid #16375c !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding-left: 0;
}
.step-form input[readonly], .step-form input[disabled] {
  cursor: not-allowed;
}
.step-form input[type="text"]:focus, .step-form input[type="email"]:focus, .step-form input[type="tel"]:focus, .step-form select:focus {
  border: none;
  outline: none;
  box-shadow: 0 0;
}
.step-form input[type="checkbox"], .step-form input[type="radio"] {
  margin-right: 0.5rem;
}
.step-form .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.step-form .input-wrapper {
  margin-bottom: 1rem;
}
.step-form #invia {
  border: 1px solid #16375c;
  color: #16375c;
  background-color: transparent;
  font-weight: bold;
}
.step-form #invia:hover {
  color: #ffffff;
  background-color: #16375c;
}
.step-form .food-needs-container {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form .food-needs-container.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form .food-choices-container {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form .food-choices-container.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form #privacy-sensibile {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form #privacy-sensibile.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form #privacy-sensibile label {
  font-size: 12px;
}
.step-form #noteContainerStelle {
  overflow: hidden;
  height: 0;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form #noteContainerStelle.active {
  height: auto;
  opacity: 1 !important;
  overflow: visible;
}
.step-form #privacy-immagini {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form #privacy-immagini.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form #privacy-immagini label {
  font-size: 12px;
}
.step-form #companionsSection {
  height: 0;
  opacity: 0 !important;
  transition: height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form #companionsSection.active {
  height: auto;
  opacity: 1 !important;
}
.step-form #privacy-general-companions {
  overflow: hidden !important;
  height: 0 !important;
  opacity: 0 !important;
  transition: height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form #privacy-general-companions.active {
  height: auto !important;
  opacity: 1 !important;
  overflow: visible;
}
.step-form #privacy-general-companions label {
  font-size: 12px;
}
.step-form #privacy-sensibile-companions {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form #privacy-sensibile-companions.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form #privacy-sensibile-companions label {
  font-size: 12px;
}
.step-form #hidden-label {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form #hidden-label.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form .companions-number-container {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form .companions-number-container.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form .companions-data-container {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form .companions-data-container.active {
  max-height: 2000px !important;
  opacity: 1 !important;
}
.step-form .companion-food-needs {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form .companion-food-needs.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form .companion-food-choices {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}
.step-form .companion-food-choices.active {
  max-height: 500px !important;
  opacity: 1 !important;
}
.step-form .companion-section {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f8f9fa;
}
.step-form .companion-section .companion-title {
  font-weight: bold;
  color: #16375c;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #16375c;
}
.step-form .companions-number-container, .step-form .companions-data-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.step-form .companions-number-container.active, .step-form .companions-data-container.active {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
}
.step-form .companion-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 1.5rem;
  background-color: #f8f9fa;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.step-form .companion-card.active {
  opacity: 1;
  transform: translateY(0);
}
.step-form .companion-card .companion-header {
  font-weight: 600;
  color: #16375C;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}
.step-form .companion-card .companion-header h5 {
  font-size: 16px;
}
.step-form .food-needs-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.step-form .food-needs-container.active {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
.step-form .email-validation-message {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.step-form .email-validation-message.valid {
  color: #28a745;
}
.step-form .email-validation-message.invalid {
  color: #dc3545;
}
.step-form .email-validation-message.warning {
  color: #ff6600;
}
.step-form .mobile-validation-message {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.step-form .mobile-validation-message.valid {
  color: #28a745;
}
.step-form .mobile-validation-message.invalid {
  color: #dc3545;
}
.step-form .accommodation-options-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.step-form .accommodation-options-container.active {
  opacity: 1;
  transform: translateY(0);
}
.step-form .room-combinations-container .room-option {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.step-form .room-combinations-container .room-option:hover {
  border-color: #16375C;
  background-color: #f0f4f8;
}
.step-form .room-combinations-container .room-option.selected {
  border-color: #16375C;
  background-color: #e8f1fc;
}
.step-form .room-combinations-container .room-option.selected::after {
  content: "✓";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #16375C;
  font-weight: bold;
  font-size: 1.2rem;
}
.step-form .room-combinations-container .room-option .room-title {
  font-weight: 600;
  color: #16375C;
  margin-bottom: 0.5rem;
}
.step-form .room-combinations-container .room-option .room-description {
  color: #6c757d;
  font-size: 0.9rem;
}
.step-form .room-combinations-container .room-option .room-details {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.step-form .room-combinations-container .room-option .room-details .detail-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #495057;
}
.step-form .room-combinations-container .room-option .room-details .detail-item i {
  color: #16375C;
}
.step-form .room-combinations-container .room-option-radio {
  display: none;
}
.step-form .room-info-card {
  border-left: 4px solid #16375C;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}
.step-form .room-info-card .info-title {
  font-weight: 600;
  color: #16375C;
  margin-bottom: 0.5rem;
}
.step-form .room-info-card .info-text {
  color: #6c757d;
  font-size: 0.9rem;
}
.step-form .room-assignments-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.step-form .room-assignments-container.active {
  max-height: 5000px;
  opacity: 1;
  transform: translateY(0);
}
.step-form .room-assignment-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f8f9fa;
}
.step-form .room-assignment-card .assignment-header {
  font-weight: 600;
  color: #16375C;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}
.step-form .room-assignment-card .assignment-header i {
  color: #16375C;
}
.step-form .room-assignment-card .person-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.step-form .room-assignment-card .person-item:hover {
  border-color: #16375C;
  box-shadow: 0 2px 4px rgba(22, 55, 92, 0.1);
}
.step-form .room-assignment-card .person-item.selected {
  border-color: #16375C;
  background-color: #e8f1fc;
}
.step-form .room-assignment-card .person-item .person-info {
  flex: 1;
}
.step-form .room-assignment-card .person-item .person-info .person-name {
  font-weight: 500;
  color: #16375C;
}
.step-form .room-assignment-card .person-item .person-info .person-type {
  font-size: 0.8rem;
  color: #6c757d;
}
.step-form .room-assignment-card .person-item .person-actions {
  display: flex;
  gap: 0.5rem;
}
.step-form .room-assignment-card .person-item .person-actions .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
.step-form .room-notes-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.step-form .room-notes-container.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}
.step-form .room-notes-container textarea {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  resize: vertical;
  min-height: 100px;
}
.step-form .room-notes-container textarea:focus {
  border-color: #16375C;
  box-shadow: 0 0 0 0.2rem rgba(22, 55, 92, 0.25);
}
.step-form .room-people-container {
  min-height: 50px;
  border: 2px dashed #e0e0e0;
  border-radius: 6px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background-color: #fafafa;
  transition: all 0.3s ease-in-out;
}
.step-form .room-people-container:empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-style: italic;
}
.step-form .room-people-container:empty::after {
  content: "Nessuna persona assegnata a questa camera";
}
.step-form .room-people-container.has-assignments {
  border-color: #16375C;
  background-color: #f8f9fa;
}
.step-form .person-selector {
  margin-top: 0.5rem;
}
.step-form .person-selector .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.5rem;
}
.step-form .person-selector .form-select:focus {
  border-color: #16375C;
  box-shadow: 0 0 0 0.2rem rgba(22, 55, 92, 0.25);
}
.step-form .assignment-header .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}
.step-form .person-item {
  animation: slideIn 0.3s ease-in-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-form .accommodation-options-container.active, .step-form .room-assignments-container.active, .step-form .room-notes-container.active {
  animation: expandHeight 0.3s ease-in-out forwards;
}
@keyframes expandHeight {
  0% {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    max-height: none;
    opacity: 1;
    transform: translateY(0);
  }
}
.step-form .capacity-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #6c757d;
  margin-left: auto;
}
.step-form .capacity-indicator.full {
  color: #dc3545;
  font-weight: bold;
}
.step-form .capacity-indicator.available {
  color: #28a745;
}
.step-form .transport-options-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.step-form .transport-options-container.active {
  max-height: none;
  opacity: 1;
  transform: translateY(0);
}
.step-form .transport-section-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.step-form .transport-section-card .transport-section-title {
  font-weight: 600;
  color: #16375C;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
  display: flex;
  align-items: center;
}
.step-form .transport-section-card .transport-section-title i {
  color: #16375C;
  font-size: 1.2rem;
}
.step-form .transport-section-card select.form-control {
  border: none !important;
  border-bottom: 1px solid #16375c !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0.5rem 0;
  font-size: 1rem;
}
.step-form .transport-section-card select.form-control:focus {
  border: none;
  outline: none;
  box-shadow: 0 0;
  border-bottom: 2px solid #16375c !important;
}
.step-form .transport-section-card select.form-control option {
  padding: 0.5rem;
  background-color: #ffffff;
  color: #495057;
}
.step-form .transport-section-card select.form-control option:hover, .step-form .transport-section-card select.form-control option:focus {
  background-color: #f8f9fa;
}
.step-form .outbound-confirmation-container, .step-form .return-confirmation-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  margin-top: 1rem;
}
.step-form .outbound-confirmation-container.active, .step-form .return-confirmation-container.active {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}
.step-form .outbound-confirmation-container .alert, .step-form .return-confirmation-container .alert {
  border-left: 4px solid #ffc107;
  background-color: #fff3cd;
  border-color: #ffeaa7;
}
.step-form .outbound-confirmation-container .alert i, .step-form .return-confirmation-container .alert i {
  color: #856404;
}
.step-form .transport-notes-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.step-form .transport-notes-container.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}
.step-form .transport-notes-container textarea {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  resize: vertical;
  min-height: 100px;
}
.step-form .transport-notes-container textarea:focus {
  border-color: #16375C;
  box-shadow: 0 0 0 0.2rem rgba(22, 55, 92, 0.25);
}
.step-form .transport-section-card {
  animation: slideInTransport 0.3s ease-in-out;
}
@keyframes slideInTransport {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-form .form-check-input.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}
.step-form .text-danger.small {
  font-size: 0.875rem !important;
  margin-top: 0.25rem !important;
  padding: 0.25rem 0.5rem !important;
  background-color: rgba(220, 53, 69, 0.1) !important;
  border: 1px solid rgba(220, 53, 69, 0.2) !important;
  border-radius: 4px !important;
}
.step-form .food-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.step-form .food-option-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.step-form .food-option-card:hover {
  border-color: #16375C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 55, 92, 0.15);
}
.step-form .food-option-card:has(input:checked) {
  border-color: #28a745;
  background: linear-gradient(135deg, #d4edda 0%, #f8f9fa 100%);
}
.step-form .food-option-card:has(input:checked)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-top: 30px solid #28a745;
}
.step-form .food-option-card:has(input:checked)::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 2px;
  right: 2px;
  color: white;
  font-size: 10px;
}
.step-form .food-option-card:has(input:checked) .form-check-label {
  color: #155724;
  font-weight: 600;
}
.step-form .food-option-card .form-check {
  margin-bottom: 0;
}
.step-form .food-option-card .form-check .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.step-form .food-option-card .form-check .form-check-label {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  color: #495057;
  font-weight: 500;
  transition: color 0.3s ease;
}
.step-form .food-option-card .form-check .form-check-label i {
  font-size: 1.2rem;
  color: #16375C;
  transition: color 0.3s ease;
}
.step-form .food-option-card .form-check .form-check-label span {
  flex: 1;
}
.step-form .other-food-option {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #ced4da;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.step-form .other-food-option:hover {
  border-color: #16375C;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.step-form .other-food-option .form-label {
  color: #16375C;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.step-form .other-food-option .form-label i {
  color: #6c757d;
}
.step-form .other-food-option .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.step-form .other-food-option .form-control:focus {
  border-color: #16375C;
  box-shadow: 0 0 0 0.2rem rgba(22, 55, 92, 0.15);
}
@media (max-width: 768px) {
  .step-form .food-options-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .step-form .food-option-card {
    padding: 0.875rem;
  }
  .step-form .food-option-card .form-check-label {
    font-size: 0.9rem;
  }
  .step-form .food-option-card .form-check-label i {
    font-size: 1.1rem;
  }
}
.step-form .companions-transport-container {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
}
.step-form .companions-transport-container.active {
  opacity: 1;
  transform: translateY(0);
  max-height: 2000px;
  animation: slideInUp 0.6s ease-out;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-form .companion-transport-section {
  background: linear-gradient(135deg, rgba(22, 55, 92, 0.02) 0%, rgba(139, 75, 155, 0.02) 100%);
  border: 1px solid rgba(22, 55, 92, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
  animation: fadeInSlide 0.5s ease-out forwards;
}
.step-form .companion-transport-section:nth-child(2) {
  animation-delay: 0.1s;
}
.step-form .companion-transport-section:nth-child(3) {
  animation-delay: 0.2s;
}
.step-form .companion-transport-section:nth-child(4) {
  animation-delay: 0.3s;
}
.step-form .companion-transport-section:hover {
  border-color: rgba(22, 55, 92, 0.2);
  box-shadow: 0 8px 25px rgba(22, 55, 92, 0.15);
  transform: translateY(-2px);
}
.step-form .companion-transport-section .section-subtitle {
  color: #16375C;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(22, 55, 92, 0.1);
  padding-bottom: 0.75rem;
  position: relative;
}
.step-form .companion-transport-section .section-subtitle:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #8B4B9B, #16375C);
  border-radius: 1px;
}
.step-form .companion-transport-section .section-subtitle i {
  color: #8B4B9B;
  margin-right: 0.5rem;
}
.step-form .companion-transport-section .transport-section-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 55, 92, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.step-form .companion-transport-section .transport-section-card:hover {
  background: white;
  border-color: rgba(139, 75, 155, 0.2);
  box-shadow: 0 4px 15px rgba(139, 75, 155, 0.1);
}
.step-form .companion-transport-section .transport-section-card .transport-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #16375C;
  margin-bottom: 1rem;
}
.step-form .companion-transport-section .transport-section-card .transport-section-title i {
  color: #8B4B9B;
  margin-right: 0.5rem;
}
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-form .companion-outbound-confirmation-container, .step-form .companion-return-confirmation-container {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
  margin-top: 1rem;
}
.step-form .companion-outbound-confirmation-container.active, .step-form .companion-return-confirmation-container.active {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
  animation: expandIn 0.4s ease-out;
}
.step-form .companion-outbound-confirmation-container .alert, .step-form .companion-return-confirmation-container .alert {
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #e17055;
  margin-bottom: 1rem;
}
.step-form .companion-outbound-confirmation-container .alert .fas, .step-form .companion-return-confirmation-container .alert .fas {
  color: #e17055;
}
.step-form .companion-outbound-confirmation-container .form-check, .step-form .companion-return-confirmation-container .form-check {
  margin-top: 1rem;
}
.step-form .companion-outbound-confirmation-container .form-check .form-check-input, .step-form .companion-return-confirmation-container .form-check .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 4px;
  border: 2px solid #ddd;
  transition: all 0.2s ease;
}
.step-form .companion-outbound-confirmation-container .form-check .form-check-input:checked, .step-form .companion-return-confirmation-container .form-check .form-check-input:checked {
  background-color: #8B4B9B;
  border-color: #8B4B9B;
  transform: scale(1.05);
}
.step-form .companion-outbound-confirmation-container .form-check .form-check-input:focus, .step-form .companion-return-confirmation-container .form-check .form-check-input:focus {
  border-color: #8B4B9B;
  box-shadow: 0 0 0 0.2rem rgba(139, 75, 155, 0.25);
}
.step-form .companion-outbound-confirmation-container .form-check .form-check-input:hover, .step-form .companion-return-confirmation-container .form-check .form-check-input:hover {
  border-color: #8B4B9B;
  transform: scale(1.02);
}
.step-form .companion-outbound-confirmation-container .form-check .form-check-label, .step-form .companion-return-confirmation-container .form-check .form-check-label {
  font-weight: 500;
  color: #16375C;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.step-form .companion-outbound-confirmation-container .form-check .form-check-label:hover, .step-form .companion-return-confirmation-container .form-check .form-check-label:hover {
  color: #8B4B9B;
}
@keyframes expandIn {
  from {
    opacity: 0;
    max-height: 0;
    transform: scaleY(0.8);
  }
  to {
    opacity: 1;
    max-height: 200px;
    transform: scaleY(1);
  }
}
.step-form .existing-assignments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.step-form .person-item.existing {
  background-color: #f8f9fa;
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 0.75rem;
}
.step-form .person-item.existing .person-info .person-name {
  font-weight: 600;
  color: #495057;
}
.step-form .person-item.existing .person-info .person-email {
  font-size: 0.85rem;
  color: #6c757d;
}
.step-form .person-item.existing .person-info .person-type {
  font-size: 0.8rem;
  color: #28a745;
  font-weight: 500;
}
.step-form .room-option.selected {
  border-color: #28a745;
  background-color: #f8f9fa;
}
.step-form .room-option.selected::before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
  margin-right: 0.5rem;
}
.step-form #foodChoices {
  padding-top: 20px;
}
.step-form .bg-unisalute {
  background-color: #16375C;
  color: #ffffff;
}
.step-form .book {
  font-family: "Apex New Book";
}
.step-form label.book {
  font-size: 12px !important;
}
footer.footer-default {
  padding: 20px 0;
  text-align: center;
  text-align: right;
  display: none;
}
footer.footer-default img {
  max-width: 150px;
}
.container-fluid {
  padding: 0 5%;
}
.mh-0 {
  height: 0;
  overflow: hidden;
  margin-bottom: 0;
}
