body {
  font-family: "Exo";
}

.contenitore {
  width: 86%;
  margin-left: 7%;
}

.contenitore-piccolo {
  width: 50%;
  margin-left: 25%;
}

.only-sm {
  display: none;
}

.only-pc {
  display: block;
}

.sezione-colore {
  background-color: rgb(208, 59, 59);
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  font-size: 1.5rem;
}

.sezione-white {
  background-color: white;
  padding-top: 20px;
  padding-bottom: 20px;
  color: black;
  font-size: 1.5rem;
}

.sezione-gray {
  background-color: #f1f1f1;
  padding-top: 20px;
  padding-bottom: 20px;
  color: black;
  font-size: 1.5rem;
}

.titolo-sezione {
  font-weight: 300;
  color: rgb(55, 96, 130);
  font-size: 2rem;
}

.contenitore-flex-due-colonne {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.contenitore-flex-due-colonne div {
  width: 50%;
}

.contenitore-flex-due-colonne div:last-child {
  text-align: right;
}

.contenitore-flex-tre-colonne {
  display: flex;
  align-items: stretch;
  align-content: center;
  justify-content: center;
  gap: 60px;
}

.contenitore-flex-tre-colonne div {
  flex: 0 1 auto;
  width: 33%;
}

.testo-colonna {
  font-size: 0.8rem;
  color: #666;
}

.titolo-colonna {
  color: rgb(176, 207, 103);
  font-size: 1.3rem;
}

.icona-grande {
  background-color: rgb(176, 207, 103);
  height: 100px;
  width: 100px;
  aspect-ratio: 1/1;
  position: relative;
  left: 50%;
  margin-left: -50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: white;
}

.icona-grande .material-symbols-outlined {
  font-size: 3rem;
}

.btn-pers {
  -webkit-appearance: none;
  appearance: none;
  border: solid thin rgb(55, 96, 130);
  background-color: rgb(55, 96, 130);
  color: white;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  transition: all ease 0.3s;
  font-size: 1rem;
}

.btn-pers:hover {
  letter-spacing: 1px;
}

.btn-trasparente {
  background-color: rgba(0, 0, 0, 0.3);
  border: solid thin transparent;
}

.btn-verde {
  background-color: rgb(176, 207, 103);
  border: solid thin rgb(176, 207, 103);
}

.btn-rosso {
  background-color: rgb(208, 59, 59);
  border: solid thin rgb(208, 59, 59);
}

.btn-bianco {
  background-color: white;
  border: solid thin white;
  color: rgb(55, 96, 130);
}

.car-item-reg {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.cont-table {
  width: 100%;
  border: solid thin #d1d1d1;
  border-radius: 20px;
}

.cont-table table {
  width: 100%;
  text-align: left;
}

.cont-table table tr td {
  padding: 20px;
}

.cont-table table tr:first-child td:first-child {
  border-top-left-radius: 20px;
}

.cont-table table tr:first-child td:last-child {
  border-top-right-radius: 20px;
}

.cont-table table tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

.cont-table table tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

.cont-table table tr:nth-child(odd) td {
  background-color: #f1f1f1;
}


@media screen and (max-width: 768px) {
  .only-sm {
    display: block;
  }
  .only-pc {
    display: none;
  }
  .contenitore-flex-due-colonne {
    flex-direction: column;
    gap: 20px;
  }
  .contenitore-flex-due-colonne div {
    width: 100%;
    text-align: center;
  }
  .contenitore-flex-due-colonne div:last-child {
    text-align: center;
  }
  .contenitore-flex-tre-colonne {
    flex-direction: column;
  }
  .contenitore-flex-tre-colonne div {
    width: 100%;
  }
  .contenitore-piccolo {
    width: 80%;
    margin-left: 10%;
  }
}
.topper {
  width: 100%;
  height: 40px;
  background-color: #f1f1f1;
}

.topper-contenitore {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  gap: 10px;
}

.topper-contenitore button {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(55, 96, 130);
  border: none;
  color: white;
  font-size: 0.8rem;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all ease 0.3s;
}

.topper-contenitore button:first-child {
  background-color: rgb(208, 59, 59);
}

.topper-contenitore .btn-topper-lang {
  background-color: #6f6f6f;
}

.topper-contenitore button:hover {
  background-color: darkorange;
}

.topper-contenitore .btn-topper-lang:hover {
  background-color: #5f5f5f;
}

.header {
  width: 100%;
  background-color: white;
  position: sticky;
  top: 0;
  height: 70px;
  z-index: 5;
}

.header-contenitore {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.header-logo {
  height: 70px;
  width: 250px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}

.header-logo > img {
  height: 50px;
}

.header-menu {
  height: 70px;
  width: calc(100% - 300px);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  text-align: right;
  gap: 10px;
}

.header-right {
  width: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  text-align: right;
}

.header-menu button,
.header-right button {
  -webkit-appearance: none;
  appearance: none;
  font-size: 0.8rem;
  background-color: white;
  border: solid thin transparent;
  text-transform: uppercase;
  transition: all ease 0.3s;
  height: 30px;
  color: black;
}

.header-btn-testo {
  background-color: rgb(208, 59, 59);
  border: none;
  color: white;
  font-size: 0.8rem;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all ease 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  height: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.header-btn-testo-verde {
  background-color: rgb(176, 207, 103);
}

.header-btn-testo:hover {
  background-color: darkorange;
}

.btn-menu-verde {
  background-color: rgb(176, 207, 103);
}

.header-menu button:hover {
  color: rgb(208, 59, 59);
}

.header-menu .btn-app-menu {
  background-color: rgb(176, 207, 103);
  border: solid thin rgb(176, 207, 103);
  border-radius: 20px;
  color: white;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 500;
}

.header-menu .btn-app-menu:hover {
  background-color: rgb(147, 174, 85);
  border-color: rgb(147, 174, 85);
  color: white;
}

.btn-menu-active {
  color: rgb(208, 59, 59);
}

.header-btn-icona {
  background-color: rgb(176, 207, 103);
  width: 30px !important;
  height: 30px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: all ease 0.3s;
  cursor: pointer;
}

.header-btn-icona .material-symbols-outlined {
  font-size: 1rem;
}

.header-btn-icona:hover {
  background-color: darkorange;
}

.close-button-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgb(55, 96, 130);
}

.dd-sm {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .topper-contenitore {
    justify-content: center;
  }
  .header-logo {
    width: 50%;
  }
  .header-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }
  .header-menu {
    position: fixed;
    width: 250px;
    background-color: #f1f1f1;
    top: 0;
    right: -250px;
    height: 100%;
    overflow-y: hidden;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    transition: all ease-out 0.3s;
  }
  .header-menu button {
    width: 80%;
    background-color: transparent;
    text-align: left;
    color: rgb(55, 96, 130);
  }
  .header-menu .btn-app-menu {
    width: 80%;
    background-color: rgb(176, 207, 103);
    border: solid thin rgb(176, 207, 103);
    border-radius: 20px;
    color: white;
  }
  .header-menu .btn-app-menu:hover {
    background-color: rgb(147, 174, 85);
    border-color: rgb(147, 174, 85);
  }
  .dd-sm {
    width: 80%;
    text-align: left;
  }

  .header-right .dd-sm {
    width: auto;
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
}
.banner {
  width: 100%;
  aspect-ratio: 16/7;
  background-color: aliceblue;
  position: relative;
  display: flex;
  align-items: flex-end;
  align-content: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.carousel {
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

.box-banner {
  width: 250px;
  height: 250px;
  background-color: rgba(176, 207, 103, 0.7);
  margin-bottom: 20px;
  padding: 20px;
  color: white;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all ease 0.3s;
  z-index: 2;
}

.box-banner:hover {
  box-shadow: 0px 0px 10px #d1d1d1;
}

.box-banner:nth-child(2) {
  background-color: rgba(147, 174, 85, 0.7);
}

.box-banner:nth-child(3) {
  background-color: rgba(107, 126, 62, 0.7);
}

.titolo-box-banner {
  font-weight: 200;
  font-size: 1.5rem;
}

.banner-di-pagina {
  width: 100%;
  height: 300px;
  background-color: aliceblue;
  position: relative;
  gap: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
}

.banner-di-pagina > img {
  width: 100%;
  object-fit: cover;
}

.titolo-banner-di-pagina {
  position: absolute;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  letter-spacing: 20px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .box-banner {
    width: 100%;
    height: auto;
    background-color: rgba(132, 170, 64, 0.86);
    margin-bottom: 0px;
    padding: 20px;
    color: white;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all ease 0.3s;
    z-index: 2;
  }
  .box-banner:nth-child(2) {
    background-color: rgba(103, 143, 40, 0.9);
    margin-top: 100%;
  }
  .box-banner:nth-child(4) {
    background-color: rgba(103, 143, 40, 0.9);
  }
  .banner {
    aspect-ratio: 1/1;
    flex-direction: column;
    gap: 10px;
  }
  .carousel-inner {
    aspect-ratio: 1/1;
  }
  .carousel-item {
    aspect-ratio: 1/1;
  }
  .carousel-item > img {
    height: 100%;
    object-fit: cover;
  }
}
.footer {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: rgb(55, 96, 130);
  color: white;
  font-size: 0.7rem;
}

.logo-f {
  height: 50px;
}

.footer a:link {
  color: white;
}

.footer a:active {
  color: white;
}

.footer a:visited {
  color: white;
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

label {
  font-size: 0.8rem;
}

.input-pers {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px;
  border-radius: 20px;
  border: solid thin #d1d1d1;
  font-family: "Exo";
  width: 80%;
  font-size: 14px;
}

.cont-tariffario {
  display: flex;
  width: 100%;
  gap: 15px;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
  position: relative;
}

.box-tariffario {
  width: 25%;
  border-radius: 10px;
  border: solid thin rgb(55, 96, 130);
  color: rgb(55, 96, 130);
  overflow: hidden;
}

.box-funzioni {
  border: solid thin transparent;
}

.h-box-tariffario {
  width: 100%;
  background-color: #d1d1d1;
  padding: 20px;
  background-color: rgb(55, 96, 130);
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  height: 80px;
}

.riga-tariffario {
  height: 50px;
  padding: 10px;
  border-bottom: dotted thin #d1d1d1;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.riga-tariffario .material-symbols-outlined {
  font-size: 20px;
}

.riga-tariffario:last-child {
  border: none;
}

.box-funzioni .h-box-tariffario {
  background-color: transparent;
}

.box-funzioni .riga-tariffario {
  justify-content: flex-end;
}

.box-premium {
  border-color: goldenrod;
  box-shadow: 0px 0px 4px #aaaaaa;
}

.box-premium .h-box-tariffario {
  background-color: goldenrod;
}

.btn-pers-premium {
  background-color: rgb(255, 255, 255);
  color: goldenrod;
  border-color: goldenrod;
}

.box-vip {
  border-color: rgb(178, 32, 218);
  box-shadow: 0px 0px 4px #aaaaaa;
}

.box-vip .h-box-tariffario {
  background-color: rgb(178, 32, 218);
}

.btn-pers-vip {
  background-color: white;
  color:  rgb(178, 32, 218);
  border-color:  rgb(178, 32, 218);
}

.h-box-tariffario-riga {
  height: auto;
  flex-direction: column;
}

.box-funzioni .h-box-tariffario {
  color: black;
}

.cont-dash-areariservata {
  display: flex;
  align-items: flex-start;
  align-content: center;
  justify-content: flex-start;
}

.menu-areariservata {
  border-right: solid thin #d1d1d1;
  width: 200px;
  min-height: 350px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.pagina-areariservata {
  margin-left: 20px;
  width: 100%;
}

.btn-menu-areariservata {
  -webkit-appearance: none;
  appearance: none;
  font-size: 12px;
  width: 90%;
  margin-left: 5%;
  text-align: left;
  border: none;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  gap: 5px;
  text-transform: uppercase;
  background-color: white;
  transition: all ease 0.3s;
}

.btn-menu-areariservata > img {
  height: 20px;
}

.btn-menu-areariservata .material-symbols-outlined {
  color: rgb(176, 207, 103);
}

.btn-menu-areariservata:hover {
  background-color: rgba(107, 126, 62, 0.7);
  color: white;
}

.btn-menu-areariservata-attivo {
  background-color: rgba(107, 126, 62, 0.7);
  color: white;
}

.btn-menu-areariservata-attivo .material-symbols-outlined {
  color: white;
}

.btn-menu-areariservata:hover .material-symbols-outlined {
  color: white;
}

.btn-menu-areariservata-special {
  width: 90%;
  margin-left: 5%;
  background-color: rgb(208, 59, 59);
  color: white;
  font-weight: 500;
  justify-content: center;
}

.titolo-areariservata {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.sottotitolo-areariservata {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgb(55, 96, 130);
}

.chip-areariservata {
  background-color: #d1d1d1;
  display: inline-block;
  font-size: 14px;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.box-areariservata {
  width: 100%;
  border: solid thin #d1d1d1;
  border-radius: 10px;
  padding: 10px;
}

.box-areariservata table {
  width: 100%;
  font-size: 14px;
}

.box-areariservata table td,
th {
  padding: 10px;
}

.box-areariservata table th {
  background-color: rgba(176, 207, 103, 0.7);
  color: rgb(55, 96, 130);
}

.box-areariservata table th:first-child {
  border-top-left-radius: 5px;
}

.box-areariservata table th:last-child {
  border-top-right-radius: 5px;
}

.box-areariservata table tr:nth-child(odd) {
  background-color: #f1f1f1;
}

.cont-box-areariservata {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.positivo {
  color: rgb(55, 96, 130);
  font-weight: bold;
}

.negativo {
  color: rgb(208, 59, 59);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .contenitore {
    width: 92%;
    margin-left: 4%;
  }

  .sezione-colore,
  .sezione-white,
  .sezione-gray {
    font-size: 1.15rem;
  }

  .titolo-sezione {
    font-size: 1.6rem;
  }

  .topper {
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .topper-contenitore {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topper-contenitore button {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .header-logo > img {
    height: auto;
    max-width: 180px;
  }

  .titolo-banner-di-pagina {
    font-size: 1.5rem;
    letter-spacing: 6px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cont-table {
    overflow-x: auto;
    border-radius: 12px;
  }

  .cont-table table {
    min-width: 560px;
  }

  .cont-table table tr td {
    padding: 12px;
  }

  .cont-tariffario {
    flex-direction: column;
    align-items: stretch;
  }

  .box-tariffario {
    width: 100%;
  }

  .box-funzioni .riga-tariffario {
    justify-content: center;
  }

  .cont-dash-areariservata {
    flex-direction: column;
    gap: 20px;
  }

  .menu-areariservata {
    width: 100%;
    min-height: auto;
    border-right: none;
    border-bottom: solid thin #d1d1d1;
    padding-bottom: 10px;
  }

  .btn-menu-areariservata,
  .btn-menu-areariservata-special {
    width: 100%;
    margin-left: 0;
  }

  .pagina-areariservata {
    margin-left: 0;
  }

  .cont-box-areariservata {
    flex-direction: column;
  }

  .box-areariservata {
    overflow-x: auto;
  }

  .box-areariservata table {
    min-width: 620px;
  }

  .input-pers {
    width: 100%;
  }
}
