﻿@charset "UTF-8";
/*-------- MAIN --------*/
.m-container {
  margin: 0;
  padding: 0;
}

.m-left-section {
  width: 240px;
  margin: 0;
  padding: 0;
}

.m-right-section {
  width: calc(100vw - 240px);
  margin: 0;
  padding-left: 16px;
}

.w-container {
  display: flex;
  height: calc(100vh - 80px); /* L'altezza occupa tutta la finestra */
  margin: 0;
  padding: 0;
}

.w-left-section {
  width: 240px;
  margin: 0;
  padding: 0;
}

.w-mid-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 48px;
  border-right: 1px solid lightgray;
  overflow: hidden;
  height: 100vh;
}

.w-right-section {
  width: calc(100vw - 284px);
  margin: 0;
  padding-left: 16px;
}

@media (max-width: 1000px) {
  .w-left-section {
    display: none; /* Nascondi la sezione di sinistra */
  }
  .w-right-section {
    flex: 1; /* Assicurati che la sezione di destra occupi tutto lo spazio */
  }
}
@media (max-width: 1000px) {
  .m-left-section {
    display: none; /* Nascondi la sezione di sinistra */
  }
  .m-right-section {
    flex: 1; /* Assicurati che la sezione di destra occupi tutto lo spazio */
  }
}
.main-container {
  display: flex;
  height: calc(100vh - 40px);
  margin-top: -32px;
}

.main-first-section {
  width: 24px;
}

.main-left-section {
  width: 240px;
}

.main-mid-section {
  width: 56px;
  border-right: 1px solid lightgray;
  padding-top: 36px;
  padding-left: 16px;
}

.main-right-section {
  width: calc(100vw - 380px);
  padding-top: 36px;
  padding-left: 16px;
}

@media (max-width: 1000px) {
  .main-left-section {
    display: none;
  }
}
@media (min-width: 1001px) {
  .main-left-section {
    display: normal; /* Nasconde la sezione di sinistra */
  }
}
.mid-container {
  writing-mode: vertical-rl;
}

.mid-box {
  width: auto;
  height: calc(100vh - 64px);
  margin: 0px;
  transform: rotate(180deg) translateY(124px);
}

.mid-text {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 4px;
  padding-right: 4px;
  width: auto;
  height: 240px;
  background-color: transparent;
  text-align: left;
  color: black;
  margin-bottom: 16px;
}

.mid-square-text {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 4px;
  padding-right: 4px;
  width: auto;
  height: 64px;
  background-color: transparent;
  text-align: left;
  color: black;
  margin-bottom: 16px;
}

.mid-text.active {
  background-color: #F0F0F0;
}

.mid-text:hover {
  cursor: pointer;
  background-color: #E0E0E0;
}

.mid-square-text.active {
  background-color: #F0F0F0;
}

.mid-square-text:hover {
  cursor: pointer;
  background-color: #E0E0E0;
}

/*-------- CON 3 SEZIONI --------*/
.k-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.k-menu {
  height: 56px;
  margin: 0px;
  padding: 0px;
}

.k-data {
  flex-grow: 1;
  margin: 0px;
  padding: 0px;
  display: flex;
  height: calc(100vh - 56px);
  overflow: hidden;
}

.k-left, .k-center, .k-right {
  height: 100%; /* Rendi le sezioni alte quanto la k-data */
  overflow: auto;
}

.k-left {
  width: 240px;
}

.k-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 48px;
  border-right: 1px solid lightgray;
  overflow: hidden;
}

.k-right {
  width: calc(100vw - 288px);
  padding-left: 32px;
}

@media (max-width: 1000px) {
  .k-left {
    display: none;
  }
  .k-center {
    border-right: 1px solid lightgray; /* Mantiene il bordo sul centro anche senza k-left */
    width: 48px;
  }
  .k-right {
    width: calc(100vw - 48px);
  }
}
@media (min-width: 1001px) {
  .k-left {
    display: block;
  }
  .k-center {
    border-right: 1px solid lightgray; /* Mantiene il bordo sul centro anche senza k-left */
    width: 48px;
  }
  .k-right {
    width: calc(100vw - 288px);
  }
}
.a-container {
  display: flex; /* Imposta il layout a flex */
  flex-direction: column; /* Disposizione verticale */
  align-items: flex-start; /* Allinea gli elementi all'inizio */
  height: 100%; /* Imposta l'altezza per occupare tutto lo spazio */
  padding-top: 16px; /* Rimuovi il padding se necessario */
  padding-left: 10px;
  margin: 0; /* Rimuovi il margine se necessario */
}

.a-box {
  writing-mode: vertical-rl; /* Imposta la modalità di scrittura verticale */
  transform: rotate(180deg); /* Ruota il testo di 180 gradi per farlo leggere dall'alto verso il basso */
  margin: 5px 0; /* Margine verticale tra le caselle */
  white-space: nowrap; /* Evita il wrap del testo */
  text-align: center; /* Centra il testo all'interno di ogni a-box */
  width: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 4px;
  padding-right: 4px;
  cursor: pointer;
}

.a-box:hover {
  background-color: #e0e0e0;
}

.a-box.active {
  background-color: #efefef;
}

.a-box.active:hover {
  background-color: #e0e0e0;
}

.a-icon {
  margin-top: 6px; /* Margine verticale tra le caselle */
  text-align: center; /* Centra il testo all'interno di ogni a-box */
  width: 100%;
  height: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px;
  cursor: pointer;
  color: darkgray;
}

.a-icon:hover {
  color: black;
}

.a-icon.disabled {
  color: lightgray;
  cursor: default; /* Cambia il puntatore */
  pointer-events: none; /* Disabilita eventi come hover e click */
}

/* Non applica lo stile hover se il div è disabilitato */
.a-icon:not(.disabled):hover {
  color: black;
}

/*-------- CON 4 SEZIONI --------*/
.q-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.q-menu {
  height: 56px;
  margin: 0px;
  padding: 0px;
}

.q-data {
  flex-grow: 1;
  margin: 0px;
  padding: 0px;
  display: flex;
  height: calc(100vh - 64px);
  overflow: hidden;
}

.q-left, .q-center, .q-right, q-extra {
  height: 100%; /* Rendi le sezioni alte quanto la k-data */
  overflow: auto;
}

.q-left {
  width: 240px;
}

.q-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 48px;
  border-right: 1px solid lightgray;
  overflow: hidden;
  padding-right: 32px;
}

.q-right {
  width: calc(100vw - 700px);
  padding-left: 32px;
}

.q-extra {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 412px;
  border-right: 1px solid lightgray;
  overflow: hidden;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 1000px) {
  .q-left {
    display: none;
  }
  .q-center {
    border-right: 1px solid lightgray; /* Mantiene il bordo sul centro anche senza k-left */
    width: 48px;
  }
  .q-right {
    width: calc(100vw - 48px);
  }
  .q-extra {
    display: none;
  }
}
@media (min-width: 1001px) {
  .q-left {
    display: block;
  }
  .q-center {
    border-right: 1px solid lightgray; /* Mantiene il bordo sul centro anche senza k-left */
    width: 48px;
  }
  .q-right {
    width: calc(100vw - 700px);
  }
  .q-extra {
    display: block;
  }
}
/*-------- TOGGLER --------*/
.navbar-toggler {
  width: 24px;
  height: 24px;
  position: relative;
  transition: 0.5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0px;
}

.navbar-toggler span {
  margin: 0px;
  padding: 0px;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #808080;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.middle-bar {
  margin-top: 0px;
  height: 1px;
}

.navbar-toggler .top-bar {
  margin-top: 0px;
  transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  margin-top: 0px;
  transform: rotate(-135deg);
}

.navbar-toggler.collapsed .top-bar {
  margin-top: -20px;
  transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  margin-top: 20px;
  transform: rotate(0deg);
}

/*-------- FONTS --------*/
.font-1 {
  font-size: 10px;
}

.font-2 {
  font-size: 12px;
}

.font-3 {
  font-size: 14px;
}

.font-4 {
  font-size: 16px;
}

.font-5 {
  font-size: 18px;
}

.font-6 {
  font-size: 20px;
}

.font-7 {
  font-size: 22px;
}

.font-8 {
  font-size: 24px;
}

.font-9 {
  font-size: 28px;
}

.font-10 {
  font-size: 32px;
}

.font-11 {
  font-size: 48px;
}

.font-12 {
  font-size: 64px;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "RalewayItalic";
  src: url("../fonts/Raleway-Italic-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "MontserratItalic";
  src: url("../fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
}
.raleway {
  font-weight: 300;
  font-family: Raleway;
}

.raleway-thin {
  font-weight: 100;
  font-family: Raleway;
  color: lightgray;
}

.raleway-bold {
  font-weight: 600;
  font-family: Raleway;
}

.raleway-italic {
  font-weight: 300;
  font-family: RalewayItalic;
  font-style: italic;
}

.montserrat {
  font-weight: 300;
  font-family: Montserrat;
}

.montserrat-bold {
  font-weight: 600;
  font-family: Montserrat;
}

.montserrat-italic {
  font-weight: 300;
  font-family: MontserratItalic;
  font-style: italic;
}

.font-extra {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.font-thin {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.font-bold {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.font-std {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-brand {
  font-family: "Montserrat", system-ui;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 16px;
}

.font-italic {
  font-family: "MontserratItalic";
  font-optical-sizing: auto;
  font-style: italic;
}

.font-footer {
  font-family: "Montserrat", system-ui;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: #808080;
}

.font-side {
  font-family: "Montserrat", system-ui;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.map-company {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 18px;
  text-shadow: 0px 0px 8px lightgray;
}

.map-data {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 9px;
  text-shadow: 0px 0px 8px lightgray;
}

.map-title {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 9px;
  text-shadow: 0px 0px 8px lightgray;
}

.where-extra {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-shadow: 0px 0px 8px lightgray;
}

.where-thin {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 320;
  font-style: normal;
  text-shadow: 0px 0px 8px lightgray;
}

/*-------- INTRO --------*/
.animated-text {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: calc(82vh - 32px);
  padding-left: 32px;
  padding-bottom: 32px;
}

.animated-text p {
  margin: 0;
  line-height: 0.9;
  opacity: 0;
  animation: slideIn 1s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated-text p:nth-child(1) {
  animation-delay: 0.1s;
  font-size: min(6vh, 4vw);
  letter-spacing: 4px;
}

.animated-text p:nth-child(2) {
  animation-delay: 0.2s;
  font-size: min(6vh, 4vw);
  letter-spacing: 4px;
}

.animated-text p:nth-child(3) {
  animation-delay: 0.3s;
  font-size: min(6vh, 4vw);
  letter-spacing: 2px;
}

.animated-text p:nth-child(4) {
  animation-delay: 0.4s;
  font-size: min(6vh, 4vw);
  letter-spacing: 2px;
}

.animated-text p:nth-child(5) {
  animation-delay: 0.4s;
  font-size: min(4vh, 2vw);
  letter-spacing: 2px;
}

.animated-text p:nth-child(6) {
  animation-delay: 0.4s;
  font-size: min(4vh, 2vw);
  letter-spacing: 2px;
}

.animated-text p:nth-child(7) {
  animation-delay: 0.4s;
  font-size: min(4vh, 2vw);
  letter-spacing: 2px;
}

.animated-text p:nth-child(8) {
  animation-delay: 0.4s;
  font-size: min(4vh, 2vw);
  letter-spacing: 2px;
}

.animated-text p:nth-child(9) {
  animation-delay: 0.4s;
  font-size: min(4vh, 2vw);
  letter-spacing: 2px;
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
.hidden {
  animation: slideOut 1s forwards;
}

@media (min-width: 461px) {
  .animated-text p:nth-child(1) {
    animation-delay: 0.1s;
    font-size: 16vh;
    letter-spacing: 4px;
  }
  .animated-text p:nth-child(2) {
    animation-delay: 0.2s;
    font-size: 16vh;
    letter-spacing: 4px;
  }
  .animated-text p:nth-child(3) {
    animation-delay: 0.3s;
    font-size: 16vh;
    letter-spacing: 2px;
  }
  .animated-text p:nth-child(4) {
    animation-delay: 0.4s;
    font-size: 16vh;
    letter-spacing: 2px;
  }
  .animated-text p:nth-child(5) {
    animation-delay: 0.4s;
    font-size: 6vh;
    letter-spacing: 2px;
  }
  .animated-text p:nth-child(6) {
    animation-delay: 0.4s;
    font-size: 6vh;
    letter-spacing: 2px;
  }
  .animated-text p:nth-child(7) {
    animation-delay: 0.4s;
    font-size: 6vh;
    letter-spacing: 2px;
  }
}
@media (max-width: 500px) {
  .animated-text p:nth-child(1) {
    animation-delay: 0.1s;
    font-size: 10vh;
    letter-spacing: 4px;
  }
  .animated-text p:nth-child(2) {
    animation-delay: 0.2s;
    font-size: 10vh;
    letter-spacing: 4px;
  }
  .animated-text p:nth-child(3) {
    animation-delay: 0.3s;
    font-size: 10vh;
    letter-spacing: 2px;
  }
  .animated-text p:nth-child(4) {
    animation-delay: 0.4s;
    font-size: 10vh;
    letter-spacing: 2px;
  }
  .animated-text p:nth-child(5) {
    animation-delay: 0.4s;
    font-size: 3vh;
    letter-spacing: 2px;
  }
  .animated-text p:nth-child(6) {
    animation-delay: 0.4s;
    font-size: 3vh;
    letter-spacing: 2px;
  }
  .animated-text p:nth-child(7) {
    animation-delay: 0.4s;
    font-size: 3vh;
    letter-spacing: 2px;
  }
}
/*-------- MAPS --------*/
.mapSize {
  height: calc(100vh - 164px);
  width: 100%;
}

/*-------- WHERE --------*/
.section-container {
  display: flex;
  width: calc(100vw - 320px);
}

.section-fixed {
  width: 320px;
  padding: 10px;
}

.section-flexible {
  flex-grow: 1;
  padding: 10px;
}

@media (min-width: 961px) {
  .section-container {
    width: calc(100vw - 320px);
  }
}
@media (max-width: 960px) {
  .section-container {
    width: calc(100vw - 8px);
  }
}
.animated-bar {
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 320px;
  padding: 12px;
  width: 320px;
}

.animated-bar p {
  margin: 0;
  line-height: 1;
  opacity: 0;
  animation: slideInBar 1s forwards;
}

@keyframes slideInBar {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated-bar p:nth-child(1) {
  animation-delay: 0.1s;
  font-size: 12px;
  letter-spacing: 4px;
}

.animated-bar p:nth-child(2) {
  animation-delay: 0.2s;
  font-size: 32px;
  letter-spacing: 4px;
}

.animated-bar p:nth-child(3) {
  animation-delay: 0.3s;
  font-size: 12px;
  letter-spacing: 2px;
}

.animated-bar p:nth-child(4) {
  animation-delay: 0.4s;
  font-size: 32px;
  letter-spacing: 2px;
}

.animated-bar p:nth-child(5) {
  animation-delay: 0.4s;
  font-size: 32px;
  letter-spacing: 2px;
}

.animated-bar p:nth-child(6) {
  animation-delay: 0.4s;
  font-size: 32px;
  letter-spacing: 2px;
}

.animated-bar p:nth-child(7) {
  animation-delay: 0.4s;
  font-size: 8px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(8) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(9) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(10) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(11) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(12) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(13) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(14) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(15) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(16) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(17) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(18) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(19) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.animated-bar p:nth-child(20) {
  animation-delay: 0.4s;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.4;
}

.barcode {
  width: 164px;
  height: auto;
}

@media (min-width: 601px) {
  .section-flexible {
    display: normal;
  }
}
@media (max-width: 600px) {
  .section-flexible {
    display: none;
  }
}
/*-------- PRIVACY --------*/
.ul-privacy {
  list-style: none; /* Rimuove i punti elenco predefiniti */
  padding-left: 0; /* Rimuove il padding predefinito */
  margin-left: 24px; /* Allinea con il resto del testo */
}

.li-privacy {
  position: relative; /* Permette di posizionare manualmente il puntino */
  padding-left: 24px; /* Spazio tra il puntino e il testo */
  margin-bottom: 8px;
}

.li-privacy::before {
  content: "•"; /* Aggiunge il puntino */
  position: absolute; /* Posiziona il puntino a sinistra */
  left: -8px; /* Sposta il puntino verso sinistra in modo da allinearsi con il testo normale */
  top: 0;
  font-size: 1.5em; /* Aumenta la dimensione del puntino */
  color: black; /* Puoi cambiare il colore del puntino, se desiderato */
  line-height: 1; /* Assicura che il puntino rimanga allineato correttamente */
}

/*-------- FOOTER --------*/
.footer {
  border-top: 1px solid lightgray;
  color: darkgray;
}

/*-------- SIDE --------*/
.thumbnail {
  display: flex;
  border: 1px solid lightgray;
  justify-content: center;
  align-items: center;
  width: 256px;
  height: 336px;
  padding: 4px;
  margin: 8px;
  box-shadow: 0px 0px 0px 2px rgba(128, 128, 128, 0.15);
}

.sideBanner {
  height: 100vh;
  width: 240px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0px;
  border-left: 1px solid lightgray;
  border-right: 1px solid lightgray;
}

.sideRotate {
  transform: rotate(45deg) translateX(80px) translateY(96px);
  width: 240px;
}

.sideTitle {
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 900;
  margin: 4px;
  padding: 4px;
  z-index: 4;
  line-height: 40px;
  text-shadow: 0px 0px 8px lightgray;
  width: 200px;
  line-height: 1;
}

.sideSubtitle {
  font-family: Montserrat;
  font-weight: 200;
  font-size: 20px;
  margin: 12px;
  padding: 4px;
  z-index: 4;
  line-height: 24px;
  text-shadow: 0px 0px 8px lightgray;
  border-top: 1px solid lightgray;
  width: 200px;
  line-height: 1;
}

.sideImage {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 360px;
  z-index: -10;
  height: 490px;
}

.sideForm {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

@media (min-width: 961px) {
  .sideBanner {
    display: normal;
  }
  .sideCommand {
    display: normal;
  }
  .sideForm {
    width: calc(100vw - 300px);
    transform: translateX(280px);
  }
  .sideHide {
    display: none;
  }
  .sideBlank > .sideTitle {
    display: none;
  }
  .sideBlank {
    background-color: white;
  }
}
@media (max-width: 960px) {
  .sideBanner {
    display: none;
  }
  .sideCommand {
    display: none;
  }
  .sideForm {
    width: calc(100vw - 2px);
    transform: translateX(0pX);
  }
  .sideHide {
    display: normal;
  }
  .sideBlank > .sideTitle {
    display: normal;
  }
  .sideBlank {
    background-color: white;
  }
}
.sideRotateImage {
  transform: rotate(-45deg) translateX(28px) translateY(90px);
  transform-origin: 120px 320px;
}

.dataSpace {
  height: 32px;
}

.btn-other {
  background-color: white;
}

.section-container {
  display: flex;
  width: calc(100vw - 320px);
}

.section-fixed {
  width: 320px;
  padding: 10px;
}

.section-flexible {
  flex-grow: 1;
  padding: 10px;
}

@media (min-width: 961px) {
  .section-container {
    width: calc(100vw - 320px);
  }
}
@media (max-width: 960px) {
  .section-container {
    width: calc(100vw - 8px);
  }
}
.left-border-banner {
  border-left: 1px solid darkgray;
}

/*-------- BAR --------*/
.bar-text {
  position: absolute;
  top: 0px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 32px;
  padding-bottom: 16px;
}

.bar-text p {
  margin: 0;
  line-height: 0.9;
  opacity: 0;
  animation: slideIn 1s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bar-text p:nth-child(1) {
  animation-delay: 0.1s;
  font-size: min(8vh, 6vw);
  letter-spacing: 4px;
}

.bar-text p:nth-child(2) {
  animation-delay: 0.2s;
  font-size: min(8vh, 6vw);
  letter-spacing: 4px;
}

.bar-text p:nth-child(3) {
  animation-delay: 0.3s;
  font-size: min(8vh, 6vw);
  letter-spacing: 2px;
}

.bar-text p:nth-child(4) {
  animation-delay: 0.4s;
  font-size: min(8vh, 6vw);
  letter-spacing: 2px;
}

.bar-text p:nth-child(5) {
  animation-delay: 0.4s;
  font-size: min(3vh, 2vw);
  letter-spacing: 2px;
}

.bar-text p:nth-child(6) {
  animation-delay: 0.4s;
  font-size: min(3vh, 2vw);
  letter-spacing: 2px;
}

.bar-text p:nth-child(7) {
  animation-delay: 0.4s;
  font-size: min(3vh, 2vw);
  letter-spacing: 2px;
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
.hidden {
  animation: slideOut 1s forwards;
}

@media (min-width: 801px) {
  .bar-text p:nth-child(5) {
    display: normal;
  }
  .bar-text p:nth-child(6) {
    display: normal;
  }
  .bar-text p:nth-child(7) {
    display: normal;
  }
}
@media (max-width: 800px) {
  .bar-text p:nth-child(5) {
    display: none;
  }
  .bar-text p:nth-child(6) {
    display: none;
  }
  .bar-text p:nth-child(7) {
    display: none;
  }
}
/*-------- BOX --------*/
.iconBox {
  font-size: 32px;
  --fa-primary-color: #888888;
  --fa-secondary-color: #888888;
  cursor: pointer;
}

.box-fade-container {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.box-fade-out {
  opacity: 0;
}

.box-fade-in {
  opacity: 1;
}

.iconBox:hover {
  --fa-primary-color: black;
  --fa-secondary-color: black;
}

.slide-in-left {
  transform: translateX(0); /* Entra in posizione */
  opacity: 1; /* Completa l'ingresso */
}

.slide-out-left {
  transform: translateX(-200%); /* Esce verso sinistra */
  opacity: 0; /* Dissolvenza */
}

.slide-in-right {
  transform: translateX(0); /* Entra in posizione */
  opacity: 1; /* Completa l'ingresso */
}

.slide-out-right {
  transform: translateX(200%); /* Esce verso destra */
  opacity: 0; /* Dissolvenza */
}

.content-left {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.content-right {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

/*-------- INFO RED --------*/
.red-info-box {
  width: 48px;
  height: 48px;
  background-color: rgb(226, 0, 10);
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 48px;
  float: left;
  margin-right: 16px;
  border-radius: 0px;
}

.red-paragraph {
  overflow: hidden; /* Garantisce che il testo non si sovrapponga */
}

.yellow-info-box {
  width: 48px;
  height: 48px;
  background-color: rgb(255, 220, 0);
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 48px;
  float: left;
  margin-right: 16px;
  border-radius: 0px;
}

.yellow-paragraph {
  overflow: hidden; /* Garantisce che il testo non si sovrapponga */
}

/*-------- LINK --------*/
.link-text {
  position: relative;
  top: 0px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  cursor: pointer;
}

.link-text p {
  margin: 0px;
  line-height: 0.9;
  opacity: 0;
  animation: linkSlideIn 1s forwards;
  color: black;
}

@keyframes linkSlideIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.link-text p:nth-child(1) {
  animation-delay: 0.4s;
  font-size: max(min(48px, 3vw), 32px);
  letter-spacing: 4px;
}

.link-text p:nth-child(2) {
  animation-delay: 0.4s;
  font-size: max(min(48px, 3vw), 32px);
  letter-spacing: 4px;
}

.link-text p:nth-child(3) {
  animation-delay: 0.4s;
  font-size: max(min(28px, 2vw), 24px);
  letter-spacing: 2px;
}

.link-text p:nth-child(4) {
  animation-delay: 0.4s;
  font-size: max(min(28px, 2vw), 24px);
  letter-spacing: 2px;
}

.link-text p:nth-child(5) {
  animation-delay: 0.4s;
  font-size: max(min(28px, 2vw), 24px);
  letter-spacing: 2px;
}

@keyframes linkSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
.linkHidden {
  animation: linkSlideOut 1s forwards;
}

.link-text:hover {
  background-color: #F4F4F4;
}

/*-------- BLOCK --------*/
.block-footer {
  background-color: #444; /* Sfondo grigio */
  color: white;
  width: 100%; /* Occupare tutta la larghezza */
  padding: 20px; /* Spazio interno */
}

.block-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Colonne responsive */
  gap: 20px; /* Spazio tra le colonne */
}

.block-footer-links,
.block-footer-contact,
.block-footer-social {
  padding: 10px; /* Spazio interno per le sezioni */
}

.block-footer h4 {
  margin-bottom: 10px; /* Spazio sotto i titoli */
}

.block-footer a {
  font-weight: 200;
  color: white; /* Colore link */
}

.block-footer a:hover {
  font-weight: 600;
  color: white;
}

.block-footer-bottom {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9em;
}

/*-------- COOKIE BAR --------*/
.cookie-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 48px;
  padding-right: 48px;
  background-color: white;
  border-top: 1px solid darkgray;
  position: fixed;
  bottom: 0px;
  top: auto;
  width: 100%;
  text-align: left;
  color: black;
  transition: transform 1.5s ease, opacity 1.5s ease;
  z-index: 1000;
}

.cookie-text {
  display: flex;
  flex-direction: column;
}

.cookie-btn {
  display: flex; /* Allinea i pulsanti in orizzontale */
  gap: 8px; /* Spaziatura tra i pulsanti */
}

.cookie-hidden {
  transform: translateY(100%);
  opacity: 0;
}

.darker-border-checkbox {
  appearance: none; /* Rimuove lo stile predefinito del checkbox */
  width: 16px; /* Larghezza del checkbox */
  height: 16px; /* Altezza del checkbox */
  background-color: white; /* Colore di sfondo quando è disattivato */
  border: 2px solid darkgray; /* Bordo del checkbox */
  border-radius: 0px; /* Angoli arrotondati */
  outline: none; /* Rimuove il contorno al focus */
  cursor: pointer; /* Cambia il cursore quando si passa sopra */
  transition: background-color 0.3s, border-color 0.3s; /* Transizione per il colore di sfondo e bordo */
}

.darker-border-checkbox:checked {
  background-color: black; /* Colore di sfondo quando è selezionato */
  border-color: black; /* Colore del bordo quando è selezionato */
}

/*-------- BTTTON LINK --------*/
.blink-spacing {
  display: flex;
  align-items: center;
  justify-content: start;
  box-sizing: border-box;
}

.blink-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 2px;
}

.blink-icon {
  font-size: 28px;
  color: white;
}

.blink-text-container {
  font-family: "Montserrat";
  border-left: 1px solid white;
  padding-left: 6px;
  line-height: 0.94;
  display: flex; /* Aggiunge flexbox */
  flex-direction: column; /* Allinea gli elementi verticalmente */
  align-items: flex-start; /* Centra gli elementi a sinistra */
  justify-content: center; /* Centra gli elementi verticalmente */
  text-align: left; /* Centra il testo in ogni riga */
}

.blink-text-container .blink-main-text {
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  text-align: left; /* Assicurati che il testo sia centrato */
}

.blink-text-container .blink-sub-text {
  font-size: 0.85rem;
  color: #dcdcdc;
  text-align: left; /* Assicurati che il testo sia centrato */
}

.blink-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

/*-------- FORMULA --------*/
.formula-container {
  display: flex;
  justify-content: center;
}

.formula-box {
  background-color: white;
  border: 1px solid lightgray;
  padding: 12px;
  border-radius: 0px;
  max-width: 600px;
  text-align: center;
}

.formula-box.light {
  background-color: #FAFAFA;
  border: 1px solid lightgray;
}

.formula-box.white {
  background-color: white;
  border: 1px solid lightgray;
}

/*-------- MENU --------*/
.dropdown-menu {
  border-radius: 0 !important;
  background-color: #343a40;
  color: white;
}

.dropdown-item {
  color: white;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 8px;
  padding-right: 8px;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.dropdown-item {
  border-radius: 0 !important;
}

.dropdown-divider {
  background-color: white;
}

.dropdown-menu .dropdown-toggle::after {
  transform: rotate(-90deg);
}

.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -5px;
}

.dropdown-menu.custom-width {
  width: 320px;
  padding-right: 8px;
}

/*-------- TABLE --------*/
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: "Montserrat";
  margin-top: 16px;
}

.styled-table thead tr {
  background-color: darkgray;
  color: #ffffff;
  text-align: left;
}

.styled-table th, .styled-table td {
  padding: 6px 10px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 1px solid darkgray;
}

.styled-table tbody tr:hover {
  background-color: #f1f1f1;
  transform: scale(1.01);
  transition: transform 0.2s ease-in-out;
}

.styled-table tbody tr.min-row {
  background-color: #d4edda !important; /* Verde chiaro */
  color: #155724 !important; /* Verde scuro */
}

.styled-table tbody tr.max-row {
  background-color: #f8d7da !important; /* Rosso chiaro */
  color: #721c24 !important; /* Rosso scuro */
}

/*-------- SLOT --------*/
.slot-box {
  padding: 12px;
}

.slot-box p {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.slot-box strong {
  color: black;
}

.slot-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #343a40;
}

.slot-box p:nth-child(1) {
  border-left: 5px solid darkgray;
  padding-left: 10px;
}

.slot-box p:nth-child(2) {
  border-left: 5px solid darkorange;
  padding-left: 10px;
}

.slot-box p:nth-child(3) {
  border-left: 5px solid cornflowerblue;
  padding-left: 10px;
}

.slot-box p:nth-child(4) {
  border-left: 5px solid forestgreen;
  padding-left: 10px;
}

.slot-box p:last-child {
  margin-bottom: 0;
}

/*-------- LOADING --------*/
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
  justify-content: center;
  align-items: center;
}

.loading-overlay.show {
  display: flex;
}

/*-------- WHATS --------*/
.whats-date-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.whats-icon {
  font-size: 3rem; /* Grande dimensione per il giorno */
}

.whats-day {
  font-size: 3rem; /* Grande dimensione per il giorno */
  font-weight: bold;
}

.whats-divider {
  width: 1px;
  height: 100%; /* Altezza dinamica */
  background-color: #ccc; /* Colore della linea verticale */
  margin: 0 10px;
}

.whats-date-details {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.whats-month,
.whats-year,
.whats-weekday {
  font-size: 1rem; /* Dimensione normale per mese, anno e giorno della settimana */
  text-align: left;
  padding: 0.2rem 0;
  line-height: 0.9;
}

.whats-card {
  min-width: 172px;
  max-width: 360px;
  width: 100%;
  margin: 0.5rem;
  background-color: #FCFCFC;
  transition: all 0.3s ease;
  font-size: 14px;
}

.whats-card:hover {
  transform: scale(1.05); /* Aumenta la dimensione della card del 5% */
  background-color: #e0e0e0; /* Cambia il colore di sfondo quando il mouse è sopra */
}

/*-------- COMING --------*/
@keyframes coming-slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes coming-slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes coming-slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.coming-title {
  animation: coming-slideDown 0.75s ease-out;
}

.coming-mid-box {
  animation: coming-slideLeft 0, 75s ease-out 0.2s; /* Inizia con 0.5s di ritardo */
  animation-fill-mode: both; /* Mantiene lo stato finale dell'animazione */
  line-height: 1;
}

.coming-button-container {
  animation: coming-slideUp 1s ease-out 1s; /* Inizia con 1s di ritardo */
  animation-fill-mode: both;
}

/*-------- SERVICE --------*/
.service-card {
  height: 216px;
  border: 1px solid darkgray;
  padding: 4px;
  margin: 4px;
  background-color: #FAFAFA;
  transition: background-color 0.3s ease, transform 0.5s ease, color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.service-card:hover {
  background-color: #040404; /* Sfondo nero al passaggio del mouse */
  color: white; /* Testo bianco al passaggio del mouse */
  transform: scale(1.05) rotate(1deg);
}

service-card:active {
  transform: scale(0.95); /* Effetto "clic" */
}

.service-card:hover .service-vertical-line {
  background-color: white; /* La linea verticale diventa bianca durante hover */
}

.service-card:hover .service-hr {
  border-top: 1px solid white; /* La riga orizzontale diventa bianca durante hover */
}

.service-card:hover hr {
  border-top: 1px solid white; /* La riga orizzontale diventa bianca durante hover */
}

.card-header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.icon-container {
  font-size: 40px; /* Dimensione dell'icona */
  color: inherit; /* Colore dell'icona */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.vertical-line {
  width: 1px;
  background-color: lightgray; /* Colore della linea verticale */
  height: 48px; /* Altezza della linea verticale uguale all'icona */
  margin: 0 8px; /* Spaziatura tra l'icona e il titolo */
}

.service-name {
  font-size: 18px;
  text-align: left;
  color: inherit;
  line-height: 0.95;
  margin: 8px;
}

.service-description {
  font-size: 14px;
  text-align: justify;
  color: inherit;
  margin: 8px;
}

.service-hr {
  width: 90%;
  border: 0;
  border-top: 1px solid darkgray; /* Colore della linea */
  margin: 10px 0;
}

/*---- FINANCIAL ----*/
.fin-custom-box {
  display: flex;
  align-items: center;
  background-color: #fafafa;
  border: 1px solid #ccc;
  padding: 8px;
  margin: 8px;
  border-radius: 0px;
  box-shadow: none;
  height: 136px;
}

.fin-custom-box:hover {
  background-color: #FAFAFA;
}

.fin-box-icon {
  font-size: 48px;
  color: #333;
  margin-right: 8px;
  padding: 8px;
  width: 72px;
  display: flex; /* Imposta il contenitore come flexbox */
  justify-content: center; /* Centra il contenuto orizzontalmente */
  align-items: center; /* Centra il contenuto verticalmente */
}

.fin-box-separator {
  width: 1px;
  background-color: #ccc;
  height: auto;
  margin-right: 8px;
  align-self: stretch;
}

.fin-box-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.fin-box-title {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 750;
  font-style: normal;
  font-size: 22px;
  color: #333;
}

.fin-box-subtitle {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 26px;
  color: #666;
}

.fin-box-description {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  color: #222;
}

/*-------- SOLUTIONS --------*/
.solutions-custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr)); /* Griglia con larghezza minima 224px */
  gap: 8px; /* Spaziatura tra le card */
  padding: 12px; /* Margine interno opzionale del contenitore */
}

.solutions-card {
  height: 216px;
  border-bottom: 1px solid darkgray;
  padding: 4px;
  margin: 4px;
  background-color: #FDFDFD;
  transition: background-color 0.3s ease, transform 0.5s ease, color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.solutions-card:hover {
  transform: scale(1.05) rotate(1deg);
}

.solutions-card:active {
  transform: scale(0.95); /* Effetto "clic" */
}

.solutions-card-header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.solutions-icon-container {
  font-size: 40px; /* Dimensione dell'icona */
  color: inherit; /* Colore dell'icona */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.solutions-vertical-line {
  width: 1px;
  background-color: darkgray; /* Colore della linea verticale */
  height: 48px; /* Altezza della linea verticale uguale all'icona */
  margin: 0 8px; /* Spaziatura tra l'icona e il titolo */
}

.solutions-name {
  font-size: 18px;
  text-align: left;
  color: inherit;
  line-height: 0.95;
  margin: 8px;
}

.solutions-description {
  font-size: 14px;
  text-align: left;
  color: inherit;
  margin: 8px;
}

.solutions-hr {
  width: 90%;
  border: 0;
  border-top: 1px solid darkgray; /* Colore della linea */
  margin: 10px 0;
}

/*---- VIDEO ----*/
.video-custom-box {
  display: flex;
  align-items: center;
  background-color: #fcfcfc;
  border: 1px solid #ccc;
  padding: 8px;
  margin: 8px;
  border-radius: 0px;
  box-shadow: none;
  height: 120px;
}

.video-custom-box:hover {
  background-color: #F2F2F2;
}

.video-box-icon {
  font-size: 32px;
  color: #333;
  margin-right: 8px;
  padding: 8px;
  width: 64px;
  min-width: 64px;
  display: flex; /* Imposta il contenitore come flexbox */
  justify-content: center; /* Centra il contenuto orizzontalmente */
  align-items: center; /* Centra il contenuto verticalmente */
}

.video-box-separator {
  width: 1px;
  background-color: #ccc;
  height: auto;
  margin-right: 8px;
  align-self: stretch;
}

.video-box-text {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  line-height: 1.2;
}

.video-box-title {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 18px;
  color: black;
}

.video-box-subtitle {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 22px;
  color: #222;
}

.video-box-description {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #222;
}

/*-------- LIST --------*/
.red-numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: list-counter;
}

.red-numbered-list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 10px;
}

.red-numbered-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: rgb(226, 0, 10);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
}

.yellow-numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: list-counter;
}

.yellow-numbered-list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 10px;
}

.yellow-numbered-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: rgb(255, 220, 0);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
}

/*-------- RENOVATE --------*/
.renovate-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.renovate-intro {
  font-size: 1.2em;
  text-align: justify;
  margin-bottom: 30px;
}

.renovate-ul {
  padding-left: 20px;
  list-style-type: disc;
}

.renovate-ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/*-------- TEXT_IN_BOX --------*/
.text-box-line {
  line-height: 0.85;
}

.text-box-text {
  position: relative;
  top: 0px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 0px;
  padding-bottom: 2px;
  cursor: pointer;
}

.text-box-text p {
  margin: 0;
  line-height: 0.85;
  opacity: 0;
  animation: text-box-slide-in 1s forwards;
  color: black;
}

@keyframes text-box-slide-in {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-box-text p:nth-child(1) {
  line-height: 0.85;
  animation-delay: 0.4s;
  font-size: 36px;
  letter-spacing: 4px;
}

.text-box-text p:nth-child(2) {
  line-height: 0.85;
  animation-delay: 0.4s;
  font-size: 26px;
  letter-spacing: 2px;
}

@media (max-width: 600px) {
  .text-box-text p:nth-child(1) {
    font-size: 28px;
  }
  .text-box-text p:nth-child(2) {
    font-size: 20px;
  }
}
@keyframes text-box-slide-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
.text-box-hidden {
  animation: text-box-slide-out 1s forwards;
}

.btn {
  border-radius: 0 !important;
}

input,
select,
textarea {
  border-radius: 0 !important;
}

.no-radius {
  border-radius: 0 !important;
}

/*-------- GLOBAL --------*/
body, html {
  font-family: "Raleway";
  padding: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
}

/*-------- MIXINS --------*/
/*-------- SPACE --------*/
.space {
  display: block;
  width: 36px;
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.lineSpace {
  display: block;
  height: 24px;
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.layoutSpace {
  height: 192px;
}

.icon-space {
  padding-right: 8px;
}

.white-space {
  padding-left: 8px;
}

.lightgray {
  color: lightgray;
}

.darkgray {
  color: darkgray;
}

/*-------- ROW TOP --------*/
.rowTop {
  display: flex;
  align-items: center;
  justify-content: left;
  top: 56px;
  width: 100%;
  flex: 1 0 100%;
  height: 120px;
  background-color: lightgray;
  position: fixed;
  padding-left: 16px;
}

/*-------- IMAGE TOP --------*/
.imageTop {
  width: 100%;
  height: auto;
  padding: 0px;
  border: 0px;
  margin: 0px;
}

/*-------- TEXT CENTER --------*/
.center {
  text-align: center;
}

/*-------- ROW BOTTOM --------*/
.rowBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0px;
  overflow: hidden;
  width: 100%;
  flex: 1 0 100%;
  height: 64px;
  background-color: white;
  position: fixed;
  padding-left: 16px;
  border-top: 1px solid lightgray;
}

/*-------- NO DECORATION PER LINK --------*/
.noDecoration {
  text-decoration: none;
  color: #000000;
}

.noDecoration:hover {
  text-decoration: none;
  font-weight: bold;
  color: #000000;
}

/*-------- HOME --------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 1.2s forwards;
}

.vertical-border {
  height: 100vw;
  border-left: 1px solid lightgray;
  width: 2px;
}

.left-border {
  border-left: 1px solid lightgray;
}

.right-space {
  border-right: 16px solid white;
}

.right-space-12px {
  padding-right: 12px;
}

.right-space-14px {
  padding-right: 14px;
}

.right-space-16px {
  padding-right: 16px;
}

.right-space-18px {
  padding-right: 18px;
}

.right-space-20px {
  padding-right: 20px;
}

.right-space-24px {
  padding-right: 24px;
}

.right-space-28px {
  padding-right: 28px;
}

.right-space-32px {
  padding-right: 32px;
}

.right-space-36px {
  padding-right: 36px;
}

.right-space-42px {
  padding-right: 42px;
}

.right-space-48px {
  padding-right: 48px;
}

.right-space-64px {
  padding-right: 64px;
}

.right-space-48 {
  padding-right: 48px;
}

.left-space {
  border-left: 16px solid white;
}

.back-gray {
  background-color: #fbfbfb;
}

.back-darkgray {
  background-color: darkgray;
  margin: 16px;
}

.btn-spacing {
  margin: 8px 8px 0px 0px !important; /* top, right, bottom, left */
}

/*-------- TITLE WITH ICON --------*/
.title-icon {
  width: 48px;
  text-align: left;
  vertical-align: top;
  font-size: 32px;
}

.title-text {
  width: calc(100% - 48px);
  word-wrap: break-word;
}

.title-text span {
  display: block;
}

/*-------- MENU --------*/
.dropdown-menu.dropdown-dark {
  background-color: #000000 !important; /* Nero per lo sfondo del menu a tendina */
  border: none; /* Rimuovi il bordo se necessario */
}

.dropdown-menu.dropdown-dark .dropdown-item {
  color: #ffffff !important; /* Testo bianco */
}

.dropdown-menu.dropdown-dark .dropdown-item:hover,
.dropdown-menu.dropdown-dark .dropdown-item:focus {
  background-color: #333333 !important; /* Grigio scuro per hover o focus */
  color: #ffcc00 !important; /* Testo giallo per hover o focus */
}

.image-with-text {
  position: relative;
  width: 100%;
  overflow: hidden; /* Per evitare che l'immagine esca dai bordi */
}

.image-with-text img {
  width: 100%;
  height: auto; /* Mantiene le proporzioni */
}

.overlay-text {
  position: absolute;
  top: 48px; /* Allineato a 16 pixel dal bordo superiore */
  left: 16px; /* Spazio dal bordo sinistro */
  color: white; /* Colore del testo */
  white-space: nowrap; /* Evita che il testo vada a capo */
}

.-scrollable-container {
  width: 100%;
  overflow: hidden; /* Nascondi la barra di scorrimento */
}

.-block-container {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Transizione fluida dello scorrimento */
}

.-block {
  flex: 0 0 auto; /* Non allarga i blocchi */
  width: 300px; /* Larghezza fissa per ogni blocco */
  padding: 20px;
  margin: 10px;
  background-color: lightgray;
  text-align: center;
  box-sizing: border-box; /* Include padding e margine nel calcolo della larghezza */
}

/* Stile per i pulsanti di controllo */
.-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.-button {
  padding: 10px;
  margin: 0 10px;
  font-size: 16px;
}

/*-------- UNDER --------*/
.under-text {
  font-size: min(8vh, 6vw);
}

.text-around-box {
  width: 400px;
  height: 120px;
  padding: 12px;
  float: left; /* Fa fluttuare il box a sinistra */
  margin-right: 16px; /* Distanza tra il box e il testo */
  margin-bottom: 16px; /* Distanza tra il box e gli altri elementi sottostanti */
}

.text-around-content {
  /* Nessuna modifica necessaria */
}

.text-around-content p {
  text-align: justify;
  margin-bottom: 8px;
}

/*-------- ELEMENT --------*/
.element-left {
  float: left;
  shape-outside: inset(0px 0px 0px 0px);
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  border-right: 1px solid darkgray;
  width: 96px;
}

.element-right {
  float: right;
  shape-outside: inset(0px 0px 0px 0px);
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  border-left: 1px solid darkgray;
  width: 96px;
}

.element-number {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 72px;
}

.back-light {
  margin: 8px;
  padding: 8px;
  background-color: #FAFAFA;
}

.back-white {
  margin: 8px;
  padding: 8px;
  background-color: white;
  overflow: hidden;
}

.navbar-nav .nav-item {
  margin-right: 8px; /* Aggiungi spazio bianco a destra di ogni voce */
}

.navbar-nav .nav-item:last-child {
  margin-right: 0; /* Rimuovi il margine dall'ultima voce */
}

.title-left {
  float: left;
  shape-outside: inset(0px 0px 4px 0px);
  margin-right: 16px;
  padding-right: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  border-right: 1px solid darkgray;
  width: auto;
  height: auto;
}

.title-left-noborder {
  float: left;
  shape-outside: inset(0px 0px 4px 0px);
  margin-right: 16px;
  padding-right: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: auto;
  height: auto;
}

.title-right {
  float: right;
  shape-outside: inset(0px 0px 4px 0px);
  margin-left: 16px;
  padding-left: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: right;
  border-left: 1px solid darkgray;
  width: auto;
  height: auto;
}

/*-------- BUTTON BOX --------*/
.button-box {
  width: 296px;
  height: auto;
  color: white;
  line-height: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  text-decoration: none;
}

.button-box.w256 {
  width: 256px;
}

.button-box.w288 {
  width: 288px;
}

.button-box.w320 {
  width: 320px;
}

.button-box.w352 {
  width: 352px;
}

.button-box.w384 {
  width: 384px;
}

.button-box.w416 {
  width: 416px;
}

.button-box.w448 {
  width: 448px;
}

.button-box.w480 {
  width: 4808px;
}

.button-box-wide {
  width: 98%;
  min-width: 256px;
  height: auto;
  color: white;
  line-height: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  text-decoration: none;
}

.button-item {
  transition: text-shadow 0.3s;
}

.button-box-wide:hover .button-item {
  text-decoration: none;
  text-shadow: 0px 0px 24px rgba(255, 255, 255, 0.7);
}

.button-box:hover .button-item {
  text-decoration: none;
  text-shadow: 0px 0px 24px rgba(255, 255, 255, 0.7);
}

.button-box-wide-black {
  width: 98%;
  min-width: 256px;
  height: auto;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  text-decoration: none;
  background-color: black;
  color: white;
}

.button-box-wide-black:hover {
  text-decoration: none;
  text-shadow: 0px 0px 32px rgba(255, 255, 255, 0.8);
}

.button-box-wide-white {
  width: 98%;
  min-width: 256px;
  height: auto;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  text-decoration: none;
  background-color: white;
  color: black;
}

.button-box-wide-white:hover {
  text-decoration: none;
  text-shadow: 0px 0px 32px rgba(0, 0, 0, 0.2);
}

.button-box-wide-dark {
  width: 98%;
  min-width: 256px;
  height: auto;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  text-decoration: none;
  background-color: darkgray;
  color: white;
}

.button-box-wide-dark:hover {
  text-decoration: none;
  text-shadow: 0px 0px 32px rgba(255, 255, 255, 0.8);
}

.button-box-wide-gray {
  width: 98%;
  min-width: 256px;
  height: auto;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  text-decoration: none;
  background-color: #5D5D5D;
  color: white;
}

.button-box-wide-gray:hover {
  text-decoration: none;
  text-shadow: 0px 0px 32px rgba(255, 255, 255, 0.8);
}

.full-height-border {
  top: 0px;
  height: 100vh;
}

.height-border {
  top: 0px;
  height: auto;
}

@media (min-width: 1201px) {
  .full-height-border {
    border-left: 1px solid lightgray;
    padding: 16px;
  }
}
@media (max-width: 1200px) {
  .full-height-border {
    border-left: 0px;
    padding: 0px;
  }
}
.button-text-columns {
  column-count: 4; /* Numero di colonne */
  column-gap: 36px; /* Spazio tra le colonne */
  column-width: 360px;
  text-align: justify; /* Giustifica il testo */
  width: 100%; /* Assicurati che occupi tutto lo spazio disponibile */
  column-rule-width: 1px;
  column-rule-style: solid;
  column-rule-color: lightgray;
}

/*-------- ICON BUTTON --------*/
.square-button {
  width: 96px;
  height: 96px;
  border: 1px solid black;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
  border-radius: 0px;
  margin: 8px;
  cursor: pointer;
}

.square-button i {
  font-size: 36px;
  color: darkgray;
}

.square-button:hover {
  background-color: #f0f0f0;
}

.example {
  color: darkgrey;
  font-weight: 300;
  font-family: RalewayItalic;
  font-style: italic;
  font-size: 14px;
  padding-left: 8px;
}

.edit-back {
  background-color: #F4F4F4;
}

.left-192 {
  float: left;
  width: 100%;
  max-width: 192px;
  height: auto;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
  padding: 8px;
}

.right-192 {
  float: right;
  width: 100%;
  max-width: 192px;
  height: auto;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
  padding: 8px;
}

.left-256 {
  float: left;
  width: 100%;
  max-width: 256px;
  height: auto;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
  padding: 8px;
}

.box-left-256 {
  float: left;
  width: 100%;
  max-width: 256px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
  padding: 8px;
}

.box-left-256.white {
  background-color: white;
}

.box-right-192 {
  float: right;
  width: 100%;
  max-width: 192px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
  padding: 8px;
}

.box-right-192.white {
  background-color: white;
}

.box-left-192 {
  float: left;
  width: 100%;
  max-width: 192px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
  padding: 8px;
}

.box-left-192.white {
  background-color: white;
}

.box-right-256 {
  float: right;
  width: 100%;
  max-width: 256px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px !important;
  font-size: 14px;
  margin: 16px !important;
  padding: 8px !important;
}

.box-right-256.white {
  background-color: white;
}

.box-left-384 {
  float: left;
  width: 100%;
  max-width: 384px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
  padding: 8px;
}

.box-left-384 .content {
  padding: 8px; /* Spazio bianco dentro il div, separato dal bordo */
}

.box-left-384.white {
  background-color: white;
}

.box-right-384 {
  float: right;
  width: 100%;
  max-width: 384px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.box-right-384.white {
  background-color: white;
}

.box-right-480 {
  float: right;
  width: 100%;
  max-width: 480px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.box-right-480.white {
  background-color: white;
}

.box-left-480 {
  float: left;
  width: 100%;
  max-width: 480px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.box-left-480.white {
  background-color: white;
}

.box-left-512 {
  float: left;
  width: 100%;
  max-width: 512px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.box-left-512.white {
  background-color: white;
}

.box-right-512 {
  float: right;
  width: 100%;
  max-width: 512px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.box-right-512.white {
  background-color: white;
}

.box-right-600 {
  float: right;
  width: 100%;
  max-width: 600px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.box-right-600.white {
  background-color: white;
}

.box-full {
  float: right;
  width: 100%;
  max-width: 256px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
  box-sizing: border-box;
}

.box-full.white {
  background-color: white;
}

.box-multicolumn {
  break-inside: avoid;
}

.text-two-columns {
  column-count: 2; /* Numero di colonne */
  column-gap: 36px; /* Spazio tra le colonne */
  column-width: 320px;
  text-align: justify; /* Giustifica il testo */
  width: 100%; /* Assicurati che occupi tutto lo spazio disponibile */
  column-rule-width: 1px;
  column-rule-style: solid;
  column-rule-color: lightgray;
}

.text-three-columns {
  column-count: 3; /* Numero di colonne */
  column-gap: 36px; /* Spazio tra le colonne */
  column-width: 320px;
  text-align: justify; /* Giustifica il testo */
  width: 100%; /* Assicurati che occupi tutto lo spazio disponibile */
  column-rule-width: 1px;
  column-rule-style: solid;
  column-rule-color: lightgray;
}

.three-columns {
  column-count: 3; /* Numero di colonne */
  column-gap: 36px; /* Spazio tra le colonne */
  column-width: 320px;
  text-align: justify; /* Giustifica il testo */
  width: 100%; /* Assicurati che occupi tutto lo spazio disponibile */
}

.new-column {
  break-after: column; /* Forza l'interruzione di colonna dopo questo div */
  margin-top: 20px; /* Opzionale: margine superiore per separare visivamente il contenuto */
}

.text-four-columns {
  column-count: 4; /* Numero di colonne */
  column-gap: 36px; /* Spazio tra le colonne */
  column-width: 360px;
  text-align: justify; /* Giustifica il testo */
  width: 100%; /* Assicurati che occupi tutto lo spazio disponibile */
  column-rule-width: 1px;
  column-rule-style: solid;
  column-rule-color: lightgray;
}

.text-three-columns {
  column-count: 3; /* Numero di colonne */
  column-gap: 36px; /* Spazio tra le colonne */
  column-width: 380px;
  text-align: justify; /* Giustifica il testo */
  width: 100%; /* Assicurati che occupi tutto lo spazio disponibile */
  column-rule-width: 1px;
  column-rule-style: solid;
  column-rule-color: lightgray;
}

.text-two-columns {
  column-count: 2; /* Numero di colonne */
  column-gap: 36px; /* Spazio tra le colonne */
  column-width: 392px;
  text-align: justify; /* Giustifica il testo */
  width: 100%; /* Assicurati che occupi tutto lo spazio disponibile */
  column-rule-width: 1px;
  column-rule-style: solid;
  column-rule-color: lightgray;
}

.text-left {
  text-align: left;
  column-span: all;
}

.full-right {
  top: 0px;
  height: 100%;
  border-right: 1px solid lightgray;
  margin-right: 16px;
}

.full-left {
  top: 0px;
  height: 100%;
  border-left: 1px solid lightgray;
  margin-left: 8px;
}

li {
  margin-bottom: 8px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

p img {
  display: block;
  margin: auto;
}

.custom-image {
  width: 90%;
  max-width: 480px;
  border: 1px solid lightgray;
  padding: 2px; /* Spazio tra bordo e immagine */
  box-sizing: border-box; /* Include il padding nel calcolo delle dimensioni totali */
  background-color: white;
  margin: auto; /* Centra l'elemento orizzontalmente */
  display: block; /* Necessario per permettere il centramento con `margin: auto` */
}

.custom-image-small {
  width: 75%;
  max-width: 480px;
  border: 1px solid lightgray;
  padding: 2px; /* Spazio tra bordo e immagine */
  box-sizing: border-box; /* Include il padding nel calcolo delle dimensioni totali */
  background-color: white;
}

.custom-image-large {
  width: 90%;
  border: 1px solid lightgray;
  padding: 2px; /* Spazio tra bordo e immagine */
  box-sizing: border-box; /* Include il padding nel calcolo delle dimensioni totali */
  background-color: white;
}

.custom-navbar .navbar-nav .nav-link {
  font-size: 16px !important; /* Cambia dimensione del font */
}

.custom-navbar .navbar-brand {
  font-size: 16px !important; /* Cambia dimensione del brand */
}

.truncated-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

::-webkit-scrollbar {
  width: 4px; /* Spessore sottile */
  background-color: transparent; /* Sfondo della scrollbar */
}

/* Colore del thumb (maniglia della scrollbar) */
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4); /* Colore semi-trasparente */
  border-radius: 0px; /* Angoli arrotondati */
  transition: all 0.3s ease; /* Transizione per l'animazione */
}

/* Espansione quando il mouse è sopra */
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Più scuro */
}

/* Per i bordi opzionali */
::-webkit-scrollbar-track {
  background: transparent; /* Sfondo invisibile */
}

.custom-scrollable {
  scrollbar-width: thin; /* Per Firefox: definisce una scrollbar sottile */
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent; /* Colori personalizzati */
}

/* Animazione di entrata da sinistra */
@keyframes enterFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Animazione di entrata da destra */
@keyframes enterFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Animazione di entrata dal basso */
@keyframes enterFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Applicare l'animazione agli elementi */
.enter-left {
  animation: enterFromLeft 0.6s ease-out forwards;
}

.enter-right {
  animation: enterFromRight 0.6s ease-out forwards;
}

.enter-bottom {
  animation: enterFromBottom 0.6s ease-out forwards;
}

.image-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  max-width: 25%;
  transition: opacity 1s ease-in-out;
  padding-right: 24px;
}

.pointer {
  cursor: pointer;
}

.bkfa {
  background-color: #FAFAFA;
}

.fa-custom-icon {
  font-size: 32px;
  margin-bottom: 8px;
  display: inline-block;
}

.active-section {
  background-color: rgba(255, 255, 255, 0.1);
}

.next-section {
  background-color: rgba(255, 255, 255, 0.25);
}

.table-auto-width {
  table-layout: auto;
  width: auto;
}

.div-left {
  border-left: 1px solid grey; /* Linea verticale */
  padding-top: 12px; /* Spaziatura interna */
  padding-bottom: 12px; /* Spaziatura interna */
  padding-left: 12px; /* Spaziatura interna */
  padding-right: 32px; /* Spaziatura interna */
  margin-left: 16px; /* Spaziatura esterna */
  margin-right: 64px; /* Spaziatura esterna */
  height: auto; /* Altezza del div */
}

.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #343a40; /* Bordo grigio scuro */
  border-radius: 0px;
  background-color: white;
  display: inline-block;
  cursor: pointer;
  appearance: none; /* Rimuove lo stile predefinito del browser */
  -webkit-appearance: none; /* Rimuove lo stile su Safari */
  position: relative;
}

.custom-checkbox:checked {
  background-color: #343a40; /* Sfondo grigio scuro quando selezionato */
  border-color: #343a40;
}

.custom-checkbox:checked::after {
  content: "X"; /* Checkmark */
  font-size: 12px;
  color: white; /* Colore del checkmark */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centra il checkmark */
}

.back-financial {
  margin-top: 16px !important;
  margin-left: 2px !important;
  margin-right: 2px !important;
  padding-top: 16px !important;
  padding-top: 2px !important;
  padding-top: 2px !important;
  background-color: #FAFAFA;
}

.features-list {
  margin-top: 10px;
}

.feature {
  margin-bottom: 15px;
}

.feature-strong {
  color: #333;
  font-weight: bold;
}

.feature p {
  margin: 5px 0 0 20px;
  color: #666;
}

.feature ul {
  margin-left: 10px;
}

.description {
  margin-bottom: 15px;
  color: #666;
}

.technical-details {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 24px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 24px;
  background-color: #FAFAFA;
  border-left: 4px solid darkgray;
  border-radius: 0px;
}

.btn-icon {
  background: none; /* Nessun colore di sfondo */
  border: none; /* Rimuove il bordo */
  padding: 0; /* Rimuove il padding */
  cursor: pointer; /* Cambia il cursore al passaggio */
  color: #555; /* Colore leggermente più scuro */
}

/* Cambia colore al passaggio del mouse */
.btn-icon:hover .icon-space {
  color: #333; /* Colore leggermente più scuro */
}

.word {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  margin: 5px;
  cursor: pointer;
  background-color: white;
  border-radius: 0px;
  transition: background-color 0.3s ease;
}

/* Stile quando il mouse passa sopra */
.word:hover {
  background-color: #e0e0e0;
}

/* Stile per la parola selezionata */
.word.selected {
  background-color: #efefef;
}

/* FLOAT IMAGE */
.float-image-right {
  float: right; /* Posiziona l'immagine a destra */
  margin-right: 15px; /* Spazio tra l'immagine e il testo */
  margin-left: 15px; /* Spazio tra l'immagine e il testo */
  margin-top: 15px; /* Spazio tra l'immagine e il testo */
  margin-bottom: 15px; /* Spazio tra l'immagine e il testo */
  height: auto; /* Mantiene le proporzioni */
}

.float-image-left {
  float: left; /* Posiziona l'immagine a sinistra */
  margin-right: 15px; /* Spazio tra l'immagine e il testo */
  margin-left: 15px; /* Spazio tra l'immagine e il testo */
  margin-top: 15px; /* Spazio tra l'immagine e il testo */
  margin-bottom: 15px; /* Spazio tra l'immagine e il testo */
  height: auto; /* Mantiene le proporzioni */
}

/* SIZE */
.width64px {
  width: 64px;
}

.width72px {
  width: 72px;
}

.width96px {
  width: 96px;
}

.width100px {
  width: 100px;
}

.width128px {
  width: 128px;
}

.width164px {
  width: 164px;
}

.width192px {
  width: 192px;
}

.width256px {
  width: 256px;
}

.width320px {
  width: 320px;
}

.width384px {
  width: 384px;
}

.width480px {
  width: 480px;
}

.width512px {
  width: 512px;
}

.width640px {
  width: 640px;
}

.width800px {
  width: 800px;
}

.width960px {
  width: 960px;
}

.width1024px {
  width: 1024px;
}

.backlt {
  background-color: #F0F0F0;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
}

.four-image-container {
  display: flex;
  flex-wrap: wrap; /* Permette di andare su più righe se necessario */
  justify-content: center; /* Centra gli elementi orizzontalmente */
  gap: 12px; /* Spazio tra le immagini */
  padding: 12px;
}

.four-image-container img {
  flex: 1 1 360px; /* Le immagini occupano almeno 360px e si ridimensionano */
  max-width: 360px; /* Non si allargano oltre 360px */
  height: auto; /* Mantiene le proporzioni */
  object-fit: cover;
}

@keyframes slideShow {
  0%, 30% {
    opacity: 1;
  }
  35%, 100% {
    opacity: 0;
  }
}
@keyframes slideShow2 {
  0%, 30% {
    opacity: 0;
  }
  35%, 65% {
    opacity: 1;
  }
  70%, 100% {
    opacity: 0;
  }
}
@keyframes slideShow3 {
  0%, 65% {
    opacity: 0;
  }
  70%, 100% {
    opacity: 1;
  }
}
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 341/100;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}

/* Stile per il testo */
.slide .text {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  color: white;
  background: rgba(0, 0, 0, 0.25);
  padding: 4px 8px;
  border-radius: 0px;
  opacity: 0;
  transition: opacity 6s ease-in-out;
}

/* Animazioni per immagini e testo */
.slider .slide:nth-child(1) img,
.slider .slide:nth-child(1) .text {
  animation: slideShow 18s infinite ease-in-out;
}

.slider .slide:nth-child(2) img,
.slider .slide:nth-child(2) .text {
  animation: slideShow2 18s infinite ease-in-out;
}

.slider .slide:nth-child(3) img,
.slider .slide:nth-child(3) .text {
  animation: slideShow3 18s infinite ease-in-out;
}

.btn-toggle {
  background-color: #0078D4;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-toggle:hover {
  background-color: #005A9E;
}

.highlight-column {
  background-color: #E8E8E8 !important;
  font-weight: bold;
}

/* IMAGE */
.image-left-64px {
  float: left;
  width: 100%;
  max-width: 64px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-64px.white {
  background-color: white;
}

.image-width-64px {
  max-width: 64px !important;
  width: 64px !important;
  height: auto !important;
}

.image-left-72px {
  float: left;
  width: 100%;
  max-width: 72px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-72px.white {
  background-color: white;
}

.image-width-72px {
  max-width: 72px !important;
  width: 72px !important;
  height: auto !important;
}

.image-left-96px {
  float: left;
  width: 100%;
  max-width: 96px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-96px.white {
  background-color: white;
}

.image-width-96px {
  max-width: 96px !important;
  width: 96px !important;
  height: auto !important;
}

.image-left-100px {
  float: left;
  width: 100%;
  max-width: 100px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-100px.white {
  background-color: white;
}

.image-width-100px {
  max-width: 100px !important;
  width: 100px !important;
  height: auto !important;
}

.image-left-128px {
  float: left;
  width: 100%;
  max-width: 128px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-128px.white {
  background-color: white;
}

.image-width-128px {
  max-width: 128px !important;
  width: 128px !important;
  height: auto !important;
}

.image-left-164px {
  float: left;
  width: 100%;
  max-width: 164px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-164px.white {
  background-color: white;
}

.image-width-164px {
  max-width: 164px !important;
  width: 164px !important;
  height: auto !important;
}

.image-left-192px {
  float: left;
  width: 100%;
  max-width: 192px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-192px.white {
  background-color: white;
}

.image-width-192px {
  max-width: 192px !important;
  width: 192px !important;
  height: auto !important;
}

.image-left-256px {
  float: left;
  width: 100%;
  max-width: 256px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-256px.white {
  background-color: white;
}

.image-width-256px {
  max-width: 256px !important;
  width: 256px !important;
  height: auto !important;
}

.image-left-320px {
  float: left;
  width: 100%;
  max-width: 320px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-320px.white {
  background-color: white;
}

.image-width-320px {
  max-width: 320px !important;
  width: 320px !important;
  height: auto !important;
}

.image-left-384px {
  float: left;
  width: 100%;
  max-width: 384px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-384px.white {
  background-color: white;
}

.image-width-384px {
  max-width: 384px !important;
  width: 384px !important;
  height: auto !important;
}

.image-left-480px {
  float: left;
  width: 100%;
  max-width: 480px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-480px.white {
  background-color: white;
}

.image-width-480px {
  max-width: 480px !important;
  width: 480px !important;
  height: auto !important;
}

.image-left-512px {
  float: left;
  width: 100%;
  max-width: 512px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-512px.white {
  background-color: white;
}

.image-width-512px {
  max-width: 512px !important;
  width: 512px !important;
  height: auto !important;
}

.image-left-640px {
  float: left;
  width: 100%;
  max-width: 640px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-640px.white {
  background-color: white;
}

.image-width-640px {
  max-width: 640px !important;
  width: 640px !important;
  height: auto !important;
}

.image-left-800px {
  float: left;
  width: 100%;
  max-width: 800px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-800px.white {
  background-color: white;
}

.image-width-800px {
  max-width: 800px !important;
  width: 800px !important;
  height: auto !important;
}

.image-left-960px {
  float: left;
  width: 100%;
  max-width: 960px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-960px.white {
  background-color: white;
}

.image-width-960px {
  max-width: 960px !important;
  width: 960px !important;
  height: auto !important;
}

.image-left-1024px {
  float: left;
  width: 100%;
  max-width: 1024px;
  height: auto;
  background-color: #f8f8f8;
  padding: 16px;
  font-size: 14px;
  margin: 16px;
}

.image-left-1024px.white {
  background-color: white;
}

.image-width-1024px {
  max-width: 1024px !important;
  width: 1024px !important;
  height: auto !important;
}
