@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #222;
  font-size: 1rem;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

figure {
  margin: 0;
}

/***TYPOGRAPHY***/
.font-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.font-sm {
  font-size: 0.825rem;
  line-height: 1.3;
}

.font-lg {
  font-size: 1rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .font-lg {
    font-size: 1.25rem;
  }
}

.font-xl {
  font-size: 1.5rem;
  line-height: 1.3;
}

/*Title*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1D1F21;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1,
.h1 {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 4rem;
  }
}

h2,
.h2 {
  font-size: 1.75rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}

h3,
.h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}

h4,
.h4 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 992px) {
  h4,
  .h4 {
    font-size: 1.75rem;
  }
}

h5,
.h5 {
  font-size: 1rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  h5,
  .h5 {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  h5,
  .h5 {
    font-size: 1.5rem;
  }
}

h6,
.h6 {
  font-size: 1.125rem;
  line-height: 1.3;
}

.section-title {
  margin-bottom: 4rem;
}

/***SPACES***/
.mt-6 {
  margin-top: 3.5rem !important;
}

.mb-6 {
  margin-bottom: 3.5rem !important;
}

.mt-10 {
  margin-top: 5.5rem !important;
}

.mb-9 {
  margin-bottom: 5rem !important;
}

.mb-10 {
  margin-bottom: 5.5rem !important;
}

.pt-8 {
  padding-top: 4.5rem !important;
}

.pt-10 {
  padding-top: 5.5rem !important;
}

.py-9 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pb-9 {
  padding-bottom: 5rem !important;
}

/*Color*/
.bg-white {
  background-color: #ededf3;
}

.bg-lgrey {
  background-color: #e9e9e9;
}

.bg-grey {
  background-color: #98989d;
  color: #ededf3;
}
.bg-grey h4 {
  color: #ededf3 !important;
}
.bg-grey a {
  color: #ededf3 !important;
}
.bg-grey a:hover {
  color: #ededf3 !important;
}

.bg-dark {
  background-color: #222;
  color: #e9e9e9;
}
.bg-dark a {
  color: #e9e9e9 !important;
}
.bg-dark a:hover {
  color: #ededf3 !important;
}
.bg-dark p {
  color: #e9e9e9 !important;
}

.immagine-testo-block {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
}
@media (max-width: 767.98px) {
  .immagine-testo-block {
    aspect-ratio: 1/1;
  }
}
.immagine-testo-block p {
  margin-bottom: 0 !important;
}
.immagine-testo-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.immagine-testo-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0) 100%);
}

.immagine-testo-block__overlay {
  left: 0;
  bottom: 0;
  z-index: 2;
}

@media (min-width: 992px) {
  .immagine-testo-section--zoom {
    position: relative;
    min-height: 90vh;
    z-index: 3;
  }
  .immagine-testo-block--zoom {
    position: sticky;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    aspect-ratio: auto;
    border-radius: 1rem;
    overflow: hidden;
    /* Maschera scroll-driven via JS: clip-path inset */
    will-change: clip-path;
  }
  .immagine-testo-block--zoom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
.bg-red {
  background-color: #fd0114;
  color: #fff !important;
}
.bg-red h4 {
  color: white !important;
}
.bg-red a {
  color: white !important;
}
.bg-red a:hover {
  color: #ededf3 !important;
}

.bg-black {
  background-color: #1D1F21;
  color: #fff;
}
.bg-black h4 {
  color: #ededf3 !important;
}
.bg-black a {
  color: #ededf3 !important;
}
.bg-black a:hover {
  color: #ededf3 !important;
}
.bg-black p {
  color: #ededf3 !important;
}

.bg-none {
  background-color: transparent !important;
}

.text-white {
  color: white !important;
}
.text-white h2 {
  color: white !important;
}

/***BASE ELEMENTS***/
dl,
ul {
  padding: 0 0 0 1rem;
  list-style: circle;
}

ol {
  padding: 0 0 0 1rem;
  list-style: decimal;
}

.container {
  width: 100%;
  max-width: 1600px;
}

.container-fluid {
  width: 100%;
  max-width: none;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.no-scroll {
  overflow: hidden;
}

.hide,
.hidden {
  display: none;
}

/* Accessibility: visually hidden but available to screen readers */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

section {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1200px) {
  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.drayer-model {
  padding-top: 0;
}

.full-bg {
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
}
.full-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.full-bg .position-absolute {
  z-index: 2;
  bottom: 4rem;
}
.full-bg .full-bg__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  display: block;
}
.full-bg video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.full-bg-vid {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 4rem;
}
.full-bg-vid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.full-bg-vid .position-absolute {
  z-index: 2;
  bottom: 4rem;
}
.full-bg-vid video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  z-index: -1;
}

.full-bg ~ section,
.full-bg-vid ~ section,
.half-bg ~ section {
  position: relative;
  z-index: 2;
}

.media-cover {
  overflow: hidden;
  display: flex;
  min-height: 100%;
}

.testo-immagine-card {
  border-radius: 1rem;
  overflow: hidden;
}

.media-cover__img, .rectangle-bg .rectangle-content .rectangle-image img, .half-bg .half-bg__image {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.object-fit-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 767.98px) {
  .object-fit-cover {
    height: auto;
    max-height: 70vh;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.half-bg {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
}
.half-bg .half-bg__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.half-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
  z-index: 0;
}
.half-bg .position-absolute {
  z-index: 2;
  bottom: 4rem;
}

.square {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.square .square-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.square .square-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0));
  z-index: -1;
}
.square .rotate {
  width: 2.25rem;
  height: 2.25rem;
  transition-duration: 0.8s;
  transition-property: transform;
  overflow: hidden;
}

.square:hover > .square-content > div > .rotate {
  transform: rotate(180deg);
}

.rect-v {
  width: 100%;
  padding-bottom: 130%;
  position: relative;
}
.rect-v .rect-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
}
.rect-v .rect-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0));
  z-index: -1;
  border-radius: 1.5rem;
}
.rect-v .rotate {
  width: 2.25rem;
  height: 2.25rem;
  transition-duration: 0.8s;
  transition-property: transform;
  overflow: hidden;
}

.rect-v:hover > .rect-content > div > .rotate {
  transform: rotate(180deg);
}

.rectangle-1 {
  width: 100%;
  position: relative;
  padding-bottom: 65%;
}
.rectangle-1-short {
  padding-bottom: 65%;
}
.rectangle-1 .rectangle-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.rectangle-1 .rectangle-content .rectangle-text img {
  width: 40px;
}
@media (min-width: 768px) {
  .rectangle-1 .rectangle-content .rectangle-text img {
    width: 68px;
  }
}

/* Single essiccatoio card block */
.technical-sheet {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.technical-sheet .h5 {
  margin-bottom: 0 !important;
}
.technical-sheet figure {
  margin: 0;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
}
.technical-sheet figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.technical-sheet hr {
  width: 100%;
  margin: auto 0 0;
  padding-top: 0.75rem;
  border: 0;
  border-top: 1px solid #98989d;
  opacity: 1;
}

.essiccatoi-carousel-section {
  background-color: #e9e9e9;
  overflow: hidden;
}
.essiccatoi-carousel-section .carousel {
  margin-top: 2rem;
  overflow: visible;
}
.essiccatoi-carousel-section .carousel-inner {
  overflow: visible;
}
.essiccatoi-carousel-section .carousel-item {
  padding: 0 clamp(1rem, 4vw, 4rem);
}
.essiccatoi-carousel-section .carousel-item .row {
  flex-wrap: nowrap;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.essiccatoi-carousel-section .carousel-item .col-6,
.essiccatoi-carousel-section .carousel-item .col-md-3 {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  flex: 0 0 75%;
  max-width: 75%;
}
@media (min-width: 768px) {
  .essiccatoi-carousel-section .carousel-item .col-6,
  .essiccatoi-carousel-section .carousel-item .col-md-3 {
    flex: 0 0 22.5%;
    max-width: 22.5%;
  }
}
.essiccatoi-carousel-section .essiccatoio-carousel-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 1rem 1.25rem;
  box-shadow: 0 0rem 0rem rgba(0, 0, 0, 0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.essiccatoi-carousel-section .essiccatoio-carousel-card a {
  display: block;
  color: #1D1F21;
  text-decoration: none;
}
.essiccatoi-carousel-section .essiccatoio-carousel-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.12);
}
.essiccatoi-carousel-section .essiccatoio-carousel-card figure {
  margin: 0;
}
.essiccatoi-carousel-section .essiccatoio-carousel-card figure img {
  width: 100%;
  height: auto;
  display: block;
}
.essiccatoi-carousel-section .essiccatoio-visualizer__controls {
  position: static;
}
.essiccatoi-carousel-section .essiccatoio-visualizer__nav {
  border: 0;
  background: #98989d;
  color: #1D1F21;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}
.essiccatoi-carousel-section .essiccatoio-visualizer__nav:hover {
  background: #1D1F21;
  color: #ededf3;
}
.essiccatoi-carousel-section .essiccatoio-visualizer__nav .essiccatoio-visualizer__chevron {
  width: 1rem;
  height: 1rem;
  display: block;
}
.essiccatoi-carousel-section .carousel-control-prev,
.essiccatoi-carousel-section .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  opacity: 1;
  pointer-events: auto;
}
.essiccatoi-carousel-section .carousel-control-prev {
  left: 1rem;
}
.essiccatoi-carousel-section .carousel-control-next {
  right: 1rem;
}
.essiccatoi-carousel-section .essiccatoio-visualizer__nav--prev {
  transform: rotate(180deg);
}

.rectangle-bg {
  width: 100%;
  padding-bottom: 65%;
  position: relative;
}
.rectangle-bg-short {
  padding-bottom: 65%;
}
.rectangle-bg .rectangle-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rectangle-bg .rectangle-content .rectangle-image {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: -2;
  overflow: hidden;
  border-radius: 1.5rem;
}
.rectangle-bg .rectangle-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0));
  z-index: -1;
  border-radius: 1.5rem;
}
.rectangle-bg .rotate {
  width: 2.25rem;
  height: 2.25rem;
  transition-duration: 0.8s;
  transition-property: transform;
  overflow: hidden;
}

.rectangle-bg:hover > .rectangle-content > div > .rotate {
  transform: rotate(180deg);
}

.bg-th {
  background-position: center;
  background-size: cover;
  position: relative;
}
.bg-th::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
  z-index: 0;
}
.bg-th div {
  z-index: 1;
}

.stiky {
  position: sticky;
  top: 0;
}
.stiky .context-nav ul {
  list-style: none !important;
}
.stiky .context-nav ul li a {
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  position: relative;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 300;
  background-color: white;
  display: none;
}
.lightbox .close-icon {
  color: black;
  position: absolute;
  z-index: 9999;
  right: 1rem;
  top: 1rem;
  font-size: 48px;
  line-height: 24px;
  cursor: pointer;
}
.lightbox .image-container {
  height: 100%;
}
.lightbox .image-container img {
  max-height: 90vh;
  width: auto;
  /*display: block;*/
  margin: 5vh auto auto auto;
  max-width: 100%;
  position: relative;
}
.lightbox .caption-container {
  position: absolute;
  bottom: 40px;
  width: 100%;
}
.lightbox .caption-container .caption {
  font-size: 16px;
}

/***LINK***/
a {
  color: #000;
  position: relative;
  text-decoration: none;
}
a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: #fd0114;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
a:hover {
  color: #1D1F21;
  text-decoration: none;
}
a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/***HEADER***/
.site-header {
  z-index: 10;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header .site-nav {
  flex: 1;
}
.site-header .site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-header .site-header__actions--desktop {
  display: none;
}
.site-header .language-switcher__toggle:focus-visible,
.site-header .hamburger-toggle:focus-visible {
  outline: 2px solid #fd0114;
  outline-offset: 2px;
}
@media (min-width: 992px) {
  .site-header.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .site-header .site-nav {
    justify-self: center;
    width: 100%;
    min-width: 0;
  }
  .site-header .site-header__actions {
    white-space: nowrap;
  }
  .site-header .site-header__actions--desktop {
    display: flex;
    justify-self: end;
  }
  .site-header .site-header__actions--mobile {
    display: none;
  }
}
.site-header .site-branding {
  margin: 1.25rem 0;
}
.site-header .site-branding .site-title {
  line-height: 1;
}
.site-header .site-branding a {
  color: white;
  text-decoration: none;
}
.site-header .site-branding a::before {
  content: none;
  text-decoration: none;
}
.site-header .site-branding img {
  width: 180px;
}
.site-header nav {
  display: flex;
  justify-content: center;
}
.site-header nav .side-menu {
  background: #fff;
  width: min(22rem, 85vw);
  display: flex;
  gap: 1.5rem;
  position: fixed;
  top: 0;
  right: -200%;
  height: 100vh;
  box-shadow: -75vw 0 0 rgba(0, 0, 0, 0.5);
  padding: 4rem 2rem;
  transition: all 0.7s ease-in;
}
@media (min-width: 992px) {
  .site-header nav .side-menu {
    display: block;
    background: none;
    width: 100%;
    position: relative;
    height: auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding: 0;
    right: 0;
    align-items: center;
  }
}
.site-header nav .side-menu .site-header__actions--desktop {
  display: none;
}
.site-header nav .side-menu {
  /*
   * Menu container: WordPress genera una classe diversa per ogni lingua WPML
   * (es. menu-main-menu-container per IT, menu-main-menu-en-container per EN…).
   * Usando il primo figlio diretto della side-menu che non è il blocco azioni
   * otteniamo lo stesso effetto senza dipendere dal nome della classe.
   */
}
.site-header nav .side-menu > div:not(.site-header__actions) {
  height: 100%;
}
@media (min-width: 992px) {
  .site-header nav .side-menu > div:not(.site-header__actions) {
    height: auto;
    display: flex;
    align-items: center;
  }
}
.site-header nav .side-menu .menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  padding: 0;
  margin: 0;
}
.site-header nav .side-menu .menu li {
  position: relative;
}
.site-header nav .side-menu .menu li a {
  color: white;
}
.site-header nav .side-menu .menu li a::before {
  background-color: white;
}
.site-header nav .side-menu .menu li .sub-menu {
  display: block;
  margin: 0 auto;
  position: absolute;
  background: #ffffff;
  left: -2rem;
  width: 300px;
  padding: 0;
  list-style: none;
  opacity: 0;
  transition: opacity 1s;
  height: 0;
  overflow: hidden;
  box-shadow: 0 0.15rem 3rem rgba(0, 0, 0, 0.1);
}
.site-header nav .side-menu .menu li .sub-menu li {
  margin-bottom: 0.75rem;
}
.site-header nav .side-menu .menu li .sub-menu li a {
  color: #1D1F21;
}
.site-header nav .side-menu .menu li .sub-menu li a::before {
  background-color: #fd0114;
}
.site-header nav .side-menu .menu li .sub-menu li .sub-menu {
  border-radius: 0;
  left: 0;
  position: relative;
  background: none;
  display: block;
  list-style: circle;
  padding: 0 0 0 0.5rem;
  margin: 1rem 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.site-header nav .side-menu .menu li .sub-menu li .sub-menu li {
  width: 100%;
}
.site-header nav .side-menu .menu li .sub-menu li .sub-menu li a {
  color: #1D1F21;
}
.site-header nav .side-menu .menu li .sub-menu li .sub-menu li a::before {
  background-color: #fd0114;
}
.site-header nav .side-menu .menu li:hover .sub-menu {
  opacity: 1;
  height: auto;
  overflow: hidden;
  padding: 2rem;
}
@media (max-width: 992px) {
  .site-header nav .side-menu .menu {
    height: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .site-header nav .side-menu .menu li {
    width: 100%;
    border-top: 1px solid #e3e3e3;
    margin-bottom: 1.25rem;
  }
  .site-header nav .side-menu .menu li a {
    font-weight: 600;
    color: #000000;
  }
  .site-header nav .side-menu .menu li a::before {
    background-color: #1D1F21;
  }
  .site-header nav .side-menu .menu li .sub-menu {
    display: block;
    margin: 0 auto;
    position: relative;
    background: none;
    left: 0;
    right: 0;
    max-width: 100%;
    opacity: 1;
    height: auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  .site-header nav .side-menu .menu li .sub-menu li {
    border-top: none;
    line-height: 1.8;
    width: 100%;
    margin-bottom: 0rem;
  }
  .site-header nav .side-menu .menu li .sub-menu li a {
    font-weight: 500;
    color: #1D1F21;
  }
  .site-header nav .side-menu .menu li .sub-menu li .sub-menu {
    left: 0.5rem;
    border-radius: 0;
    position: relative;
    background: none;
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .site-header nav .side-menu .menu li .sub-menu li .sub-menu li {
    border-top: none;
    width: 100%;
  }
  .site-header nav .side-menu .menu li .sub-menu li .sub-menu li a {
    font-weight: 500;
    color: #1D1F21;
  }
  .site-header nav .side-menu .menu li .sub-menu li .sub-menu li a::before {
    background-color: #fd0114;
  }
  .site-header nav .side-menu .menu li:hover .sub-menu {
    display: block;
    opacity: 1;
    height: auto;
    overflow: hidden;
    padding: 0;
  }
}
.site-header nav .sidebarshow {
  right: 0;
}
.site-header nav .hamburger-toggle {
  position: fixed !important;
  top: 0.55rem;
  right: 1rem;
  border: none;
  z-index: 9999;
  height: 3rem;
  width: 3rem;
  cursor: pointer;
  background-color: #fd0114;
  padding: 0;
  border-radius: 1.5rem;
  color: white;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .site-header nav .hamburger-toggle {
    display: none;
  }
}
.site-header nav .hamburger-toggle {
  /* Linea centrale: centrata nel cerchio via absolute */
}
.site-header nav .hamburger-toggle span:not(.screen-reader-text) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.25rem;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: background-color 0.3s ease;
}
.site-header nav .hamburger-toggle span:not(.screen-reader-text)::before, .site-header nav .hamburger-toggle span:not(.screen-reader-text)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: top 0.3s ease, transform 0.3s ease;
}
.site-header nav .hamburger-toggle span:not(.screen-reader-text)::before {
  top: -0.4rem;
}
.site-header nav .hamburger-toggle span:not(.screen-reader-text)::after {
  top: 0.4rem;
}
.site-header nav .hamburger-toggle {
  /* Stato X: JS aggiunge classe .toggle allo span */
}
.site-header nav .hamburger-toggle span.toggle:not(.screen-reader-text) {
  background-color: transparent;
}
.site-header nav .hamburger-toggle span.toggle:not(.screen-reader-text)::before {
  top: 0;
  transform: rotate(-45deg);
}
.site-header nav .hamburger-toggle span.toggle:not(.screen-reader-text)::after {
  top: 0;
  transform: rotate(45deg);
}
.site-header nav .site-header__actions--mobile {
  position: fixed;
  top: 0.9rem;
  right: 4.5rem;
  z-index: 9998;
}
@media (min-width: 992px) {
  .site-header nav {
    display: block;
    justify-content: flex-end;
  }
  .site-header nav .side-menu .site-header__actions--desktop {
    display: flex;
  }
}
.site-header .language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header .language-switcher__toggle {
  border: 2px solid transparent;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
  line-height: 1;
}
.site-header .language-switcher__toggle img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  filter: invert(1);
}
.site-header .language-switcher__toggle:hover {
  border: 2px solid #ededf3;
}
.site-header .language-switcher__toggle:hover img {
  filter: invert(0);
}
.site-header .language-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  z-index: 20;
  min-width: 6rem;
}
.site-header .language-switcher__dropdown.is-open {
  display: block;
}
.site-header .language-switcher__dropdown .language-switcher__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .language-switcher__dropdown .language-switcher__item {
  display: block;
  margin: 0;
  padding: 0;
}
.site-header .language-switcher__dropdown .language-switcher__item a {
  color: #1D1F21;
  padding: 0.4rem 0.5rem;
  display: block;
  text-decoration: none;
}
.site-header .language-switcher__dropdown .language-switcher__item.is-active a {
  border-bottom: 1px solid #fd0114;
}
.site-header.head-fixed {
  background-color: #e9e9e9;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}
.site-header.head-fixed .site-branding a {
  color: #1D1F21;
}
.site-header.head-fixed .language-switcher__toggle img {
  filter: invert(0);
}
.site-header.head-fixed nav .side-menu .menu li a {
  color: #1D1F21;
}
.site-header.head-fixed nav .side-menu .menu li a::before {
  background-color: #1D1F21;
}
.site-header.head-fixed .language-switcher__dropdown .language-switcher__item a {
  color: #1D1F21;
}

/* Templates without hero: keep header menu readable on light background */
body.page-template-page-assistenza .site-header .site-branding a,
body.page-template-page-contacts .site-header .site-branding a,
body.page-template-page-noimmage .site-header .site-branding a {
  color: #1D1F21;
}
body.page-template-page-assistenza .site-header nav .side-menu .menu li a,
body.page-template-page-contacts .site-header nav .side-menu .menu li a,
body.page-template-page-noimmage .site-header nav .side-menu .menu li a {
  color: #1D1F21;
}
body.page-template-page-assistenza .site-header nav .side-menu .menu li a::before,
body.page-template-page-contacts .site-header nav .side-menu .menu li a::before,
body.page-template-page-noimmage .site-header nav .side-menu .menu li a::before {
  background-color: #1D1F21;
}

#toggle {
  width: 48px !important;
}

/***FOOTER***/
footer {
  font-size: 0.875rem;
  color: #1D1F21;
  background-color: #ededf3;
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}
footer .banner--prefooter {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  min-height: 140px;
}
footer .banner--prefooter a,
footer .banner--prefooter a:hover,
footer .banner--prefooter a:focus,
footer .banner--prefooter a:active {
  text-decoration: none;
}
footer .banner--prefooter a::before, footer .banner--prefooter a::after,
footer .banner--prefooter a:hover::before,
footer .banner--prefooter a:hover::after,
footer .banner--prefooter a:focus::before,
footer .banner--prefooter a:focus::after,
footer .banner--prefooter a:active::before,
footer .banner--prefooter a:active::after {
  content: none !important;
}
footer h4,
footer .h4 {
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.8;
}
footer ul {
  padding-left: 0;
  list-style: none;
}
footer ul li {
  line-height: 1.8;
}
footer .social {
  display: flex;
  align-items: start;
  justify-content: end;
}
@media (max-width: 767.98px) {
  footer .social {
    justify-content: center;
  }
}
footer .social ul {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
footer .social a {
  text-decoration: none;
}
footer .social a::before {
  content: none !important;
}
footer .social a img {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: block;
}
footer .footer-main-logo {
  width: 250px;
  max-width: 100%;
  display: block;
}
@media (max-width: 767.98px) {
  footer .footer-main-logo {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  footer .footer-main-content {
    text-align: center;
  }
}

/***COMPONENT***/
/*form*/
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-modal .contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}
.contact-modal .contact-modal__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  max-width: 760px;
  min-width: 360px;
  height: 100%;
  overflow-y: auto;
  padding-top: 4.5rem;
  transform: translateX(100%);
  transition: transform 260ms ease;
}
.contact-modal.is-open .contact-modal__panel {
  transform: translateX(0);
}
.contact-modal .contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #1D1F21;
  color: #ededf3;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

body.contact-modal-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .contact-modal .contact-modal__panel {
    width: 90vw;
    min-width: 0;
  }
}
.form-cta input,
.form-cta textarea,
.form-cta select {
  width: 100%;
  background-color: #fff;
  border: 1px solid #98989d;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #1D1F21;
  box-shadow: 0 0 0 1px transparent;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}
.form-cta input:hover,
.form-cta textarea:hover,
.form-cta select:hover {
  border-color: #98989d;
  background-color: #fafafa;
}
.form-cta input:focus,
.form-cta textarea:focus,
.form-cta select:focus {
  outline: none;
  border-color: #fd0114;
  box-shadow: 0 0 0 3px rgba(253, 1, 20, 0.16);
  background-color: #fff;
}
.form-cta input::-moz-placeholder, .form-cta textarea::-moz-placeholder, .form-cta select::-moz-placeholder {
  color: #98989d;
  opacity: 1;
}
.form-cta input::placeholder,
.form-cta textarea::placeholder,
.form-cta select::placeholder {
  color: #98989d;
  opacity: 1;
}
.form-cta textarea {
  min-height: 7rem;
  resize: vertical;
}
.form-cta input[type=checkbox],
.form-cta input[type=radio] {
  width: auto;
  min-height: 0;
  margin: 0 0.5rem 0 0;
  padding: 0;
  border-radius: 0.5rem;
  box-shadow: none;
}
.form-cta .privacy-policy {
  font-size: 0.825rem;
  line-height: 1.4;
  color: #98989d;
}
.form-cta .input-container {
  position: relative;
  margin-bottom: 2.5rem;
}
.form-cta .input-container label {
  position: absolute;
}
.form-cta .placeholder {
  color: #98989d;
  left: 1.75rem;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms ease, color 200ms ease;
  top: 0.9rem;
}
.form-cta .input[placeholder]:not(:-moz-placeholder) ~ .placeholder, .form-cta .textarea[placeholder]:not(:-moz-placeholder) ~ .placeholder {
  transform: translateY(-32px) scale(0.8);
  color: #1D1F21;
}
.form-cta input:focus ~ .placeholder,
.form-cta .input[placeholder]:not(:placeholder-shown) ~ .placeholder,
.form-cta textarea:focus ~ .placeholder,
.form-cta .textarea[placeholder]:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-32px) scale(0.8);
  color: #1D1F21;
}

.button,
.submit,
.wpcf7-form-control.wpcf7-submit.has-spinner,
button {
  background-color: #fd0114;
  border: 2px solid red;
  letter-spacing: 0.05rem;
  color: white !important;
  text-decoration: none;
  align-items: center;
  font-size: 0.875rem !important;
  font-weight: 600;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  display: inline-flex;
  justify-content: center;
  border-radius: 1.5rem;
  transition-duration: 0.4s;
}
.button:not(.hamburger-toggle):hover,
.submit:not(.hamburger-toggle):hover,
.wpcf7-form-control.wpcf7-submit.has-spinner:not(.hamburger-toggle):hover,
button:not(.hamburger-toggle):hover {
  color: #fd0114 !important;
  background-color: white !important;
  border: 2px solid #fd0114;
}
.button::before,
.submit::before,
.wpcf7-form-control.wpcf7-submit.has-spinner::before,
button::before {
  content: none !important;
}
.button a,
.submit a,
.wpcf7-form-control.wpcf7-submit.has-spinner a,
button a {
  color: white !important;
  font-size: 1rem !important;
}
.button a:hover,
.submit a:hover,
.wpcf7-form-control.wpcf7-submit.has-spinner a:hover,
button a:hover {
  color: #fd0114 !important;
}

.brochure-icon {
  width: 2rem;
  height: 2rem;
  transition: filter 0.3s ease;
}

.button:hover .brochure-icon {
  filter: invert(1);
}

.secondary {
  border: 2px solid white;
  letter-spacing: 0.05rem;
  color: white !important;
  text-decoration: none;
  align-items: center;
  font-size: 0.875rem !important;
  font-weight: 600;
  cursor: pointer;
  transition-duration: 0.4s;
  padding: 0.75rem 1.25rem;
  display: inline-flex;
  justify-content: center;
  border-radius: 1.5rem;
}
.secondary:hover {
  color: white !important;
  background-color: rgba(0, 0, 0, 0.3) !important;
  border: 2px solid #fd0114;
}
.secondary::before {
  content: none !important;
}
.secondary a {
  color: #fd0114 !important;
  font-size: 1rem !important;
}
.secondary a:hover {
  color: white !important;
}

.button-q {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
  border-radius: 50%;
}
.button-q img {
  width: 0.825rem;
  height: 0.825rem;
}
.button-q:hover {
  opacity: 0.8;
}

.scroll-to-top {
  position: fixed;
  bottom: 4rem;
  right: 0.5rem;
  text-align: center;
  padding: 1rem 0.7rem;
  line-height: 0;
  height: 48px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  display: none;
  transition: all 0.5s;
  z-index: 10;
}
.scroll-to-top:hover {
  color: white !important;
  background-color: #fd0114 !important;
  border: 2px solid white;
}
.scroll-to-top img {
  width: 1.25rem;
  height: auto;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drayer-model__group {
  padding: 0 0 4rem 0;
  border-top: 1px solid #222;
}
.drayer-model__group-title {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.25rem;
  background: #222;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  padding: 0.15rem 0.5rem;
  line-height: 1;
}
.drayer-model__table-wrap {
  overflow-x: auto;
}
.drayer-model__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.drayer-model__table th,
.drayer-model__table td {
  padding: 0.25rem 0.5rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.drayer-model__table th {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  background: transparent;
}
.drayer-model__table tbody tr:last-child td {
  border-bottom: none;
}
.drayer-model__table tbody td:first-child {
  font-weight: 700;
}
.drayer-model__table-cell-scheda {
  width: 1%;
  white-space: nowrap;
  text-align: right;
}
.drayer-model__feature {
  text-align: center;
}
.drayer-model__feature img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .drayer-model__group {
    padding: 1.5rem 0;
  }
  .drayer-model__feature {
    margin-top: 1.5rem;
  }
  .drayer-model__table thead {
    display: none;
  }
  .drayer-model__table tbody,
  .drayer-model__table tr,
  .drayer-model__table td {
    display: block;
    width: 100%;
  }
  .drayer-model__table tr {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .drayer-model__table td {
    padding: 0.35rem 0.25rem;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .drayer-model__table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.6);
    flex: 0 0 auto;
  }
}
.image-container {
  height: 100vh;
  z-index: 0;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
}

.image-container img {
  width: auto;
  max-height: 80%;
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0;
}

.wp-video {
  width: 100% !important;
  max-width: 100% !important;
}
.wp-video #mep_0 {
  width: 100% !important;
  height: auto;
}
.wp-video video {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.placeholder-focus {
  transform: translateY(-40px) scale(0.75);
}

@media screen and (max-width: 767px) {
  [data-aos] {
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .rectangle-1 {
    padding-bottom: 0;
  }
  .rectangle-1 .rectangle-content {
    position: relative;
  }
}
.wpcf7-not-valid-tip {
  font-size: 0.75rem;
  margin-top: -2rem;
  text-align: end;
  padding: 0 1rem 0 0;
}

.wpcf7 .wpcf7-submit:disabled,
.wpcf7 .wpcf7-submit:disabled:hover,
.wpcf7 .wpcf7-submit:disabled:focus,
.wpcf7 .wpcf7-submit:disabled:focus-visible {
  cursor: not-allowed !important;
  background-color: #98989d !important;
  color: #222 !important;
  border: 2px solid #98989d !important;
  opacity: 1 !important;
  pointer-events: none;
}

/* Single essiccatoio: visualizer only; hero uses global .full-bg */
.single-essiccatoio .essiccatoio-hero--split {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
}
.single-essiccatoio .essiccatoio-hero--split .container-fluid,
.single-essiccatoio .essiccatoio-hero--split .row,
.single-essiccatoio .essiccatoio-hero--split [class*=col-] {
  height: 100%;
  min-height: 0;
}
.single-essiccatoio .essiccatoio-hero--split > .row {
  margin-left: 0;
  margin-right: 0;
}
.single-essiccatoio .essiccatoio-hero__media {
  position: relative;
  height: 100%;
}
.single-essiccatoio .essiccatoio-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}
.single-essiccatoio .essiccatoio-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-essiccatoio .essiccatoio-hero__content {
  position: relative;
  z-index: 10;
  max-height: 100%;
  overflow: auto;
  padding: 3rem;
}
@media (max-width: 991.98px) {
  .single-essiccatoio .essiccatoio-hero--split {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    overflow: visible;
  }
  .single-essiccatoio .essiccatoio-hero__media {
    min-height: 320px;
  }
  .single-essiccatoio .essiccatoio-hero__content {
    padding: 2rem 1.5rem;
  }
}
.single-essiccatoio .essiccatoio-visualizer {
  padding-top: 2rem;
  position: relative;
  background: #d9d9d9;
  overflow: hidden;
}
.single-essiccatoio .essiccatoio-visualizer__viewport {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}
.single-essiccatoio .essiccatoio-visualizer__slides {
  position: relative;
}
.single-essiccatoio .essiccatoio-visualizer__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(110%);
  pointer-events: none;
  transition: transform 450ms ease, opacity 450ms ease;
  will-change: transform, opacity;
}
.single-essiccatoio .essiccatoio-visualizer__slide.is-left {
  transform: translateX(-110%);
}
.single-essiccatoio .essiccatoio-visualizer__slide.is-right {
  transform: translateX(110%);
}
.single-essiccatoio .essiccatoio-visualizer__slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.single-essiccatoio .essiccatoio-visualizer__imgContainer {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: grid;
  place-items: center;
}
.single-essiccatoio .essiccatoio-visualizer__img {
  max-width: 100%;
  height: auto;
  display: block;
}
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__slide {
  padding-top: 0;
  padding-bottom: 0;
}
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__slides {
  height: 100%;
}
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__viewport > .container-fluid,
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__viewport > .container-fluid > .row,
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__viewport > .container-fluid > .row > [class*=col-] {
  height: 100%;
  min-height: 0;
}
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__slide > .container,
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__slide > .container > .row,
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__slide > .container > .row > [class*=col-] {
  height: 100%;
  min-height: 0;
}
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__slide.is-active {
  position: relative;
  inset: auto;
  display: flex;
  align-items: stretch;
}
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__imgContainer {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  background: none;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-essiccatoio .essiccatoio-visualizer__pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 11;
}
.single-essiccatoio .essiccatoio-visualizer__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 34, 34, 0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}
.single-essiccatoio .essiccatoio-visualizer__pin:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: translate(-50%, -50%) scale(1.05);
}
.single-essiccatoio .essiccatoio-visualizer__pin.is-active {
  background: rgba(255, 255, 255, 0.7);
  color: #1D1F21 !important;
}
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 700px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.single-essiccatoio .essiccatoio-visualizer__legacyText {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  min-height: 150px;
}
.single-essiccatoio .essiccatoio-visualizer__legacyText img {
  width: 100%;
  max-width: 180px;
  height: auto;
}
.single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__pagination {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 1rem;
  transform: translateX(-50%);
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.4rem;
  padding: 0;
}
@media (min-width: 992px) {
  .single-essiccatoio .essiccatoio-visualizer__viewport {
    height: auto;
  }
  .single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__slide {
    height: 100%;
  }
  .single-essiccatoio {
    /* Legacy hierarchy is already constrained above. */
  }
}
.single-essiccatoio .essiccatoio-visualizer__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
}
.single-essiccatoio .essiccatoio-visualizer__nav {
  border: 0;
  background: #98989d;
  color: #1D1F21;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.single-essiccatoio .essiccatoio-visualizer__nav:hover {
  background: #1D1F21;
  color: #ededf3;
}
.single-essiccatoio .essiccatoio-visualizer__chevron {
  width: 1rem;
  height: 1rem;
  display: block;
}
.single-essiccatoio .essiccatoio-visualizer__nav--prev {
  transform: rotate(180deg);
}
.single-essiccatoio .essiccatoio-visualizer__pagination {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.single-essiccatoio .essiccatoio-visualizer__bullet {
  border: 0;
  background: #bcbcbc;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}
.single-essiccatoio .essiccatoio-visualizer__bullet.is-active {
  width: 40px;
  background: #8f8f8f;
}
@media (max-width: 767.98px) {
  .single-essiccatoio .essiccatoio-visualizer__pagination {
    display: none;
  }
  .single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__pagination {
    display: none;
  }
  .single-essiccatoio .essiccatoio-visualizer--legacy .essiccatoio-visualizer__imgContainer {
    min-height: 0;
  }
  .single-essiccatoio .essiccatoio-visualizer__pin {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.72rem;
  }
}

/* MediaElement.js play overlay: invert default sprite color */
.mejs-overlay-button {
  filter: invert(1);
}/*# sourceMappingURL=strahl.css.map */