@charset "UTF-8";
.visually-hidden {
  display: none;
}

.nascosto {
  display: none !important;
}

.legenda-contenitore {
  margin-top: 100px;
  margin-bottom: 10px;
  text-align: right;
}
.legenda-contenitore .legenda {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 10px;
}
.legenda-contenitore .legenda i {
  font-size: 18px;
}
.legenda-contenitore .legenda .approvato {
  color: green;
}
.legenda-contenitore .legenda .in-attesa {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: darkorange;
  color: #fff;
  border-radius: 50%;
  min-width: 22px;
  min-height: 22px;
  font-size: 12px;
}
.legenda-contenitore .legenda .rifiutato {
  color: darkred;
}

.ga-wealth-legenda .ga-wealth-legenda__voce {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #003781;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ga-wealth-legenda .ga-wealth-legenda__voce + .ga-wealth-legenda__voce {
  margin-left: 10px;
}
.ga-wealth-legenda .ga-wealth__badge-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  flex: 0 0 auto;
}
.ga-wealth-legenda .ga-wealth__stato--non-richiesto .ga-wealth__badge-r {
  background-color: #ffffff;
  border: 1px solid #003366;
  color: #003366;
}
.ga-wealth-legenda .ga-wealth__stato--attivo .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  border: none;
  padding: 0 6px;
  background-color: #22b573;
  color: #ffffff;
}
.ga-wealth-legenda .ga-wealth__stato--attivo .ga-wealth__badge-r::after {
  content: "✓";
  margin-left: 10px;
  font-size: 11px;
}
.ga-wealth-legenda .ga-wealth__stato--rifiutato .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  border: none;
  padding: 0 6px;
  background-color: #dc3545;
  color: #ffffff;
}
.ga-wealth-legenda .ga-wealth__stato--rifiutato .ga-wealth__badge-r::after {
  content: "✕";
  margin-left: 10px;
  font-size: 11px;
}
.ga-wealth-legenda .ga-wealth__stato--richiesto .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  border: none;
  padding: 0 6px;
  background-color: #f39c12;
  color: #ffffff;
}
.ga-wealth-legenda .ga-wealth__stato--richiesto .ga-wealth__badge-r i {
  margin-left: 10px;
  font-size: 11px;
}

.ga-frontend.ga-wealth {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  position: relative;
  margin-top: 25px;
  width: 100%; /* Aggiunto solo per garantire che prenda il 100% del contenitore padre da 1400px */
  box-sizing: border-box;
}
.ga-frontend.ga-wealth .ga-wealth__intestazione,
.ga-frontend.ga-wealth .ga-wealth__anteprima,
.ga-frontend.ga-wealth .ga-wealth__titolo {
  display: none;
}
.ga-frontend.ga-wealth {
  /* =========================================================
     MENU LATERALE (SX) — CSS ONLY, SEMPRE FERMO E DENTRO IL CONTENITORE
     ========================================================= */
}
.ga-frontend.ga-wealth .ga-wealth__carosello {
  position: fixed;
  top: 50%;
  /* MODIFICATO: agganciato al centro del contenitore padre da 1400px, con un margine minimo di 15px dai bordi su schermi medi */
  left: max(15px, (100vw - 1400px) / 2);
  transform: translateY(-50%);
  width: 320px;
  display: flex;
  align-items: center;
  z-index: 10; /* Aggiunto per essere sicuri che rimanga sempre sopra quando si scrolla */
  /* MODIFICATO: sotto i 1200px restringiamo leggermente il menu fisso per farlo stare fino a 959px */
}
@media (max-width: 1200px) {
  .ga-frontend.ga-wealth .ga-wealth__carosello {
    width: 280px;
  }
}
.ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetti-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 100%;
}
.ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #003366;
  font-size: 23px;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  padding: 0 40px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
  /* MODIFICATO: adattamento testo del menu per schermi fino a 959px */
}
@media (max-width: 1200px) {
  .ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce {
    font-size: 19px;
    padding: 0 30px;
  }
}
.ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce:focus-visible {
  outline: 2px solid #003366;
  outline-offset: 2px;
}
.ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce:hover, .ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce:focus-visible, .ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce[aria-pressed=true], .ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce.is-attivo {
  background-color: #13a0d3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-freccia {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce:hover:not(.is-attivo) .ga-wealth__pacchetto-freccia,
.ga-frontend.ga-wealth .ga-wealth__carosello .ga-wealth__pacchetto-voce:focus-visible:not(.is-attivo) .ga-wealth__pacchetto-freccia {
  opacity: 1;
}
.ga-frontend.ga-wealth {
  /* =========================================================
     CONTENUTO PRINCIPALE (DX) — MODIFICATO PER IL GAP E IL RESPONSIVE
     ========================================================= */
}
.ga-frontend.ga-wealth .ga-wealth__pannelli {
  flex: 1;
  min-width: 400px;
  /* MODIFICATO: 320px del menu fisso + 120px di gap pulito, con larghezza calcolata per non sovrapporsi mai */
  margin-left: 440px;
  width: calc(100% - 440px);
  box-sizing: border-box;
  /* MODIFICATO: per schermi da 1200px fino al limite di 959px, riduciamo il gap e il menu in proporzione */
}
@media (max-width: 1200px) {
  .ga-frontend.ga-wealth .ga-wealth__pannelli {
    margin-left: 340px; /* 280px del menu ristretto + 60px di gap */
    width: calc(100% - 340px);
    min-width: 350px;
  }
}
.ga-frontend.ga-wealth .ga-wealth__pannello {
  display: none;
}
.ga-frontend.ga-wealth .ga-wealth__pannello.is-attivo {
  display: block;
}
.ga-frontend.ga-wealth .ga-wealth__pannello-titolo {
  background-color: #13a0d3;
  color: #ffffff;
  border-radius: 40px;
  text-align: center;
  padding: 5px 24px;
  margin: 0 auto 60px auto;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  box-shadow: 0 8px 10px -2px rgba(0, 0, 0, 0.22);
}
.ga-frontend.ga-wealth .ga-wealth__pannello-titolo::before {
  content: "SERVIZI";
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 30px 0 8px;
  box-sizing: border-box;
  background-color: #13a0d3;
  border-radius: 0 0 20px 20px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #ffffff;
  z-index: -1;
}
.ga-frontend.ga-wealth .ga-wealth__indietro {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.ga-frontend.ga-wealth .ga-wealth__indietro:hover, .ga-frontend.ga-wealth .ga-wealth__indietro:focus-visible {
  background-color: #ffffff;
  color: #003366;
}
.ga-frontend.ga-wealth .ga-wealth__indietro:focus-visible {
  outline: 2px solid #003366;
  outline-offset: 2px;
}
.ga-frontend.ga-wealth {
  /* =========================================================
     STATO "MENU"
     ========================================================= */
}
.ga-frontend.ga-wealth[data-ga-stato=menu] {
  display: block;
  min-height: 60vh;
}
.ga-frontend.ga-wealth[data-ga-stato=menu] .ga-wealth__titolo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 0 40px 0;
  color: #003366;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ga-frontend.ga-wealth[data-ga-stato=menu] .ga-wealth__avatar {
  width: 72px;
  height: 72px;
}
.ga-frontend.ga-wealth[data-ga-stato=menu] .ga-wealth__carosello {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 0 auto;
}
.ga-frontend.ga-wealth[data-ga-stato=menu] .ga-wealth__pannelli {
  display: none;
}
.ga-frontend.ga-wealth {
  /* =========================================================
     ACCORDION LIVELLO 1 e LIVELLO 2
     ========================================================= */
}
.ga-frontend.ga-wealth .ga-wealth__servizi,
.ga-frontend.ga-wealth .ga-wealth__opzioni {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.ga-frontend.ga-wealth .ga-wealth__servizi {
  gap: 30px;
  margin: 100px 0 50px 0;
}
.ga-frontend.ga-wealth .ga-wealth__opzioni {
  margin-top: 15px;
  gap: 20px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio,
.ga-frontend.ga-wealth .ga-wealth__opzione {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-corpo {
  display: none;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-corpo:not([hidden]) {
  display: contents;
}
.ga-frontend.ga-wealth .ga-wealth__immagine,
.ga-frontend.ga-wealth .ga-wealth__immagine--opzione {
  order: 2;
}
.ga-frontend.ga-wealth .ga-wealth__immagine img,
.ga-frontend.ga-wealth .ga-wealth__immagine--opzione img {
  width: 100%;
  max-height: 230px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.18);
}
.ga-frontend.ga-wealth .ga-wealth__immagine--opzione img {
  border-radius: 20px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata {
  order: -1;
  background-color: #13a0d3;
  color: #ffffff;
  border: none;
  border-radius: 40px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 4;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-radius 0.2s ease;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata:hover {
  background-color: rgb(16.8934782609, 142.2608695652, 187.6065217391);
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata:focus-visible {
  outline: 2px solid #003366;
  outline-offset: 2px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata .ga-wealth__servizio-titolo {
  flex: 1;
  text-align: center;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata .ga-wealth__stato {
  display: none;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata .ga-wealth__badge-r,
.ga-frontend.ga-wealth .ga-wealth__servizio-testata .ga-wealth__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  font-size: 10px;
  flex: 0 0 auto;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata {
  /* Transizione per la rotazione della freccia */
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata .ga-wealth__chevron {
  transition: transform 0.3s ease;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata .ga-wealth__badge-r {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata {
  /* --- STATO APPROVATO / ATTIVO --- */
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata.ga-wealth__stato--attivo .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  background-color: #22b573;
  border: none;
  color: #ffffff;
  font-weight: bold;
  padding: 0 6px;
  gap: 3px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata.ga-wealth__stato--attivo .ga-wealth__badge-r::after {
  margin-left: 10px;
  content: "✓";
  font-size: 11px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata {
  /* --- STATO RESPINTA / RIFIUTATO --- */
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata.ga-wealth__stato--rifiutato .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  background-color: #dc3545;
  border: none;
  color: #ffffff;
  font-weight: bold;
  padding: 0 6px;
  gap: 3px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata.ga-wealth__stato--rifiutato .ga-wealth__badge-r::after {
  content: "✕";
  font-size: 11px;
  margin-left: 10px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata {
  /* --- STATO IN ATTESA / RICHIESTO --- */
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata.ga-wealth__stato--richiesto .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  background-color: #f39c12;
  border: none;
  color: #ffffff;
  font-weight: bold;
  padding: 0 6px;
  gap: 3px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata.ga-wealth__stato--richiesto .ga-wealth__badge-r i {
  font-size: 11px;
  margin-left: 10px;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata {
  /* Quando l'accordion è aperto */
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata[aria-expanded=true] {
  box-shadow: none;
  background-color: #13a0d3;
  width: 100%;
  align-self: center;
  border-radius: 0;
  /* Ruota la freccia */
}
.ga-frontend.ga-wealth .ga-wealth__servizio-testata[aria-expanded=true] .ga-wealth__chevron {
  transform: rotate(180deg);
}
.ga-frontend.ga-wealth .ga-wealth__testo {
  order: 3;
  background-color: #13a0d3;
  color: #ffffff;
  padding: 10px 20px 20px 20px;
  font-size: 14px;
  text-align: center;
  z-index: 1;
  width: 100%;
  align-self: center;
}
.ga-frontend.ga-wealth .ga-wealth__testo p {
  margin-bottom: 10px;
  line-height: 1.3;
}
.ga-frontend.ga-wealth .ga-wealth__testo ul {
  list-style: disc;
  margin: 0 0 10px 0;
  padding-left: 22px;
  text-align: left;
}
.ga-frontend.ga-wealth .ga-wealth__testo ul ul {
  list-style: circle;
  margin: 4px 0 0 0;
}
.ga-frontend.ga-wealth .ga-wealth__testo li {
  margin-bottom: 4px;
  line-height: 1.3;
}
.ga-frontend.ga-wealth .ga-wealth__testo :last-child {
  margin-bottom: 0;
}
.ga-frontend.ga-wealth .ga-wealth__richiedi {
  order: 4;
  background-color: #13a0d3;
  width: 100%;
  align-self: center;
  border-radius: 0 0 15px 15px;
  padding-bottom: 20px;
  text-align: center;
  z-index: 1;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-corpo > .ga-wealth__opzioni {
  order: 5;
}
.ga-frontend.ga-wealth .ga-wealth__avviso {
  order: 4;
  width: 100%;
  align-self: center;
  margin: 0;
  padding: 10px 20px;
  background-color: #13a0d3;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}
.ga-frontend.ga-wealth .ga-wealth__avviso--richiesto, .ga-frontend.ga-wealth .ga-wealth__avviso--attivo, .ga-frontend.ga-wealth .ga-wealth__avviso--rifiutato {
  color: #003366;
}
.ga-frontend.ga-wealth .ga-wealth__servizio-corpo > .ga-wealth__avviso:last-child {
  border-radius: 0 0 15px 15px;
  padding-bottom: 20px;
}
.ga-frontend.ga-wealth .ga-wealth__richiedi-btn {
  background-color: #ffffff;
  color: #13a0d3;
  border: none;
  padding: 6px 80px;
  border-radius: 0px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.ga-frontend.ga-wealth .ga-wealth__richiedi-btn:hover {
  filter: brightness(1.08);
}
.ga-frontend.ga-wealth .ga-wealth__richiedi-btn:focus-visible {
  outline: 2px solid #003366;
  outline-offset: 2px;
}
.ga-frontend.ga-wealth {
  /* =========================================================
     LIVELLO 2 (OPZIONI FIGLIE)
     ========================================================= */
}
.ga-frontend.ga-wealth .ga-wealth__opzione {
  padding-top: 15px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-corpo {
  display: contents !important;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__immagine--opzione {
  order: 1;
  display: block;
  z-index: 3;
  position: relative;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata {
  order: 2;
  width: 70%;
  align-self: center;
  margin-top: 0;
  border-radius: 0 0 20px 20px;
  z-index: 4;
  position: relative;
  background-color: #13a0d3;
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata .ga-wealth__opzione-titolo {
  flex: 1;
  text-align: center;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata .ga-wealth__stato {
  display: none;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata .ga-wealth__badge-r,
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata .ga-wealth__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  font-size: 10px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata {
  /* Transizione per la rotazione della freccia */
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata .ga-wealth__chevron {
  transition: transform 0.3s ease;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata {
  /* --- STATO DA RICHIEDERE --- */
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata.ga-wealth__stato--non-richiesto .ga-wealth__badge-r {
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  border: 1px solid #003366;
  color: #003366;
  font-weight: bold;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata {
  /* --- STATO APPROVATO / ATTIVO --- */
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata.ga-wealth__stato--attivo .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  background-color: #22b573;
  border: none;
  color: #ffffff;
  font-weight: bold;
  padding: 0 6px;
  gap: 3px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata.ga-wealth__stato--attivo .ga-wealth__badge-r::after {
  margin-left: 10px;
  content: "✓";
  font-size: 11px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata {
  /* --- STATO RESPINTA / RIFIUTATO --- */
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata.ga-wealth__stato--rifiutato .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  background-color: #dc3545;
  border: none;
  color: #ffffff;
  font-weight: bold;
  padding: 0 6px;
  gap: 3px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata.ga-wealth__stato--rifiutato .ga-wealth__badge-r::after {
  content: "✕";
  font-size: 11px;
  margin-left: 10px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata {
  /* --- STATO IN ATTESA / RICHIESTO --- */
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata.ga-wealth__stato--richiesto .ga-wealth__badge-r {
  width: auto;
  min-width: 38px;
  border-radius: 20px;
  background-color: #f39c12;
  border: none;
  color: #ffffff;
  font-weight: bold;
  padding: 0 6px;
  gap: 3px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata.ga-wealth__stato--richiesto .ga-wealth__badge-r i {
  font-size: 11px;
  margin-left: 10px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata {
  /* Quando l'accordion è aperto */
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata[aria-expanded=true] {
  border-radius: 0;
  margin-top: 0;
  width: 70%;
  background-color: #13a0d3;
  box-shadow: none;
  /* Ruota la freccia */
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-testata[aria-expanded=true] .ga-wealth__chevron {
  transform: rotate(180deg);
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__testo,
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__avviso,
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__richiedi {
  order: 3;
  width: 70%;
  align-self: center;
  margin-top: 0;
  z-index: 1;
  position: relative;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__richiedi {
  border-radius: 0 0 15px 15px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-corpo > .ga-wealth__avviso:last-child {
  border-radius: 0 0 15px 15px;
}
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-corpo > .ga-wealth__testo,
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-corpo > .ga-wealth__avviso,
.ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-corpo > .ga-wealth__richiedi {
  display: none;
}
.ga-frontend.ga-wealth .ga-wealth__opzione:has(.ga-wealth__opzione-testata[aria-expanded=true]) .ga-wealth__opzione-corpo > .ga-wealth__testo,
.ga-frontend.ga-wealth .ga-wealth__opzione:has(.ga-wealth__opzione-testata[aria-expanded=true]) .ga-wealth__opzione-corpo > .ga-wealth__avviso,
.ga-frontend.ga-wealth .ga-wealth__opzione:has(.ga-wealth__opzione-testata[aria-expanded=true]) .ga-wealth__opzione-corpo > .ga-wealth__richiedi {
  display: block;
}
@supports not selector(:has(*)) {
  .ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-corpo:not([hidden]) > .ga-wealth__testo,
  .ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-corpo:not([hidden]) > .ga-wealth__avviso,
  .ga-frontend.ga-wealth .ga-wealth__opzione .ga-wealth__opzione-corpo:not([hidden]) > .ga-wealth__richiedi {
    display: block;
  }
}
.ga-frontend.ga-wealth {
  /* =========================================================
     POPUP DI RICHIESTA ATTIVAZIONE
     ========================================================= */
}
.ga-frontend.ga-wealth .ga-wealth__dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: min(520px, 100vw - 32px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  border: none;
  border-radius: 15px;
  background-color: #ffffff;
  color: #003366;
  box-shadow: 0 18px 50px rgba(0, 51, 102, 0.28);
}
.ga-frontend.ga-wealth .ga-wealth__dialog::backdrop {
  background-color: rgba(0, 51, 102, 0.55);
  backdrop-filter: blur(2px);
}
.ga-frontend.ga-wealth .ga-wealth__dialog .ga-wealth__dialog-form {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-testata {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 15px 15px 0 0;
  background-color: #003366;
  color: #ffffff;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-titolo {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-chiudi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  color: #ffffff;
  font-size: 18px;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-chiudi:hover, .ga-frontend.ga-wealth .ga-wealth__dialog-chiudi:focus-visible {
  background-color: #ffffff;
  color: #003366;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-corpo {
  padding: 20px;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-intro {
  margin: 0 0 8px 0;
  font-size: 12px;
}
.ga-frontend.ga-wealth .ga-wealth__percorso {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 20px 0;
  padding: 10px 14px;
  border-radius: 10px;
  background-color: #13a0d3;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
}
.ga-frontend.ga-wealth .ga-wealth__nota-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ga-frontend.ga-wealth .ga-wealth__nota-testo {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #13a0d3;
  border-radius: 8px;
  background-color: #ffffff;
  color: #003366;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.4;
  resize: vertical;
}
.ga-frontend.ga-wealth .ga-wealth__nota-testo:focus-visible {
  outline: 2px solid #003366;
  outline-offset: 1px;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-messaggio {
  margin: 16px 0 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  background-color: rgb(138.4913043478, 216.347826087, 244.5086956522);
  color: #003366;
  font-size: 13px;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-messaggio.is-errore {
  background-color: #fdecec;
  color: #a12622;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-azioni {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 20px 20px 20px;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-btn {
  padding: 8px 22px;
  border-radius: 4px;
  border: 1px solid #003366;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-btn:hover {
  filter: brightness(1.08);
}
.ga-frontend.ga-wealth .ga-wealth__dialog-btn:focus-visible {
  outline: 2px solid #003366;
  outline-offset: 2px;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-btn--annulla {
  background-color: transparent;
  color: #003366;
}
.ga-frontend.ga-wealth .ga-wealth__dialog-btn--invia {
  background-color: #003366;
  color: #ffffff;
}
.ga-frontend.ga-wealth {
  /* =========================================================
     MODIFICATO: FALLBACK SICUREZZA PER SOTTO I 959PX
     ========================================================= */
}
@media (max-width: 959px) {
  .ga-frontend.ga-wealth {
    flex-direction: column;
    margin-top: 40px;
  }
  .ga-frontend.ga-wealth .ga-wealth__carosello {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-bottom: 40px;
  }
  .ga-frontend.ga-wealth .ga-wealth__pannelli {
    margin-left: 0;
    width: 100%;
    min-width: 100%;
  }
}
