/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.dashboard {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
}
.dashboard__bannerAdv {
  margin: 0.5rem 0;
  overflow: hidden;
  height: 125px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 1rem;
  background-color: var(--primary-light);
  padding-block: 0.5rem;
}
@media (max-width: 1536px) {
  .dashboard__bannerAdv > .bannerAdv:nth-child(5) {
    display: none;
  }
}
@media (max-width: 1280px) {
  .dashboard__bannerAdv > .bannerAdv:nth-child(4) {
    display: none;
  }
}
@media (max-width: 768px) {
  .dashboard__bannerAdv > .bannerAdv:nth-child(3) {
    display: none;
  }
}
@media (max-width: 425px) {
  .dashboard__bannerAdv > .bannerAdv:nth-child(2) {
    display: none;
  }
}
.dashboard__bannerAdv:last-child {
  margin-bottom: 0px;
}
.dashboard__bannerAdv img {
  border-radius: 1rem;
  transition: transform 0.2s ease;
  will-change: transform;
  height: 100%;
  max-width: 220px;
}
@media (max-width: 640px) {
  .dashboard__bannerAdv img {
    height: auto;
    max-width: 180px;
  }
}
.dashboard__bannerAdv img:hover {
  transform: scale(1.05);
}
.dashboard .swiper {
  --swiper-btn-offset: 60px;
}

.cardAccommodationRow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.cardAccommodationRow__title {
  font-weight: bold;
  opacity: 0.8;
  color: var(--fg-dark);
}

/*# sourceMappingURL=Home.css.map */
