<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wrapper {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.box {
  background-position: center center;
  background-size: cover;
  min-height: auto;
  display: flex;
  cursor: pointer;
}

.box:nth-child(3),
.box:nth-child(6) {
  grid-column: auto / span 2;
}

.fotorama {
  display: none;
}

.scrollphone {
  display: none;
}

.box:last-child {
  position: relative;
}

.box:last-child::before {
  content: "Vedi galleria completa";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 35, 35, 0.3);
  z-index: 1;
  color: azure;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.extra-square {
  width: flex;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.extra-info {
  width: 100%;
  padding: 10px;
}

.extra-name {
  font-weight: bold;
}

.scroll-extra-container {
  position: relative;
  overflow: hidden;
}

.scroll-extra-section {
  display: flex;
  white-space: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.scroll-extra-section::-webkit-scrollbar {
  display: none;
}

.scroll-button.col {
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  color: #5bbfd1;
  font-weight: bold;
  text-align: center;
  flex: 0 1 auto;
  min-width: 30px;
}

.scroll-button.col &gt; div {
  cursor: pointer;
  font-size: 30px;
  color: #5bbfd1;
  font-weight: bold;
  text-align: center;
  flex: 0 1 auto;
  min-width: 30px;
}

@media (max-width: 720px) {
  .fotorama {
    display: block;
}

.wrapper {
    display: none;
}

.scrollphone {
    display: block;
}

.scrollpc {
    display: none;
}
}
</pre></body></html>