/*
- VARIABILI
- GENERAL
- FONTS


- STILI CUSTOM
  - PULSANTI
  - SLIDER
  - COLONNA


- RIGHE SVG


- HEADER
  - LOGO
  - HAMBURGER
  - OVERLAY
  - WPML


- PAGINE SERVIZI


- GSAP


- FORMS


- FOOTER


- MOUSE FOLLOWER


- TEMPLATES
  - FOOTER NO CONTATTI


- LOADER


- FORM
  - MODALE


- VIDEO
  - VIDEO YT SHOWCASE


- DETTAGLI

- SCHEDA PRODOTTO

*/





/** -------------------------------------------------------------------------------- */
/* // ! VARIABILI */
/** -------------------------------------------------------------------------------- */
:root{
  --transition: all 0.3s;
  --transition-cubic: all 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
  --neue: var(--wp--preset--font-family--neue-montreal);
  --space: var(--wp--preset--font-family--space-mono);
}



/** -------------------------------------------------------------------------------- */
/* // ! GENERAL */
/** -------------------------------------------------------------------------------- */



/** -------------------------------------------------------------------------------- */
/* // ! FONTS */
/** -------------------------------------------------------------------------------- */
.has-titolo-giant-font-size,
.has-titolo-grande-font-size{
font-family: var(--neue);
line-height: 0.8;
font-weight: 400;
}

.has-titolo-medio-font-size{
  font-family: var(--neue);
  line-height: 1;
  font-weight: 400;
}

.has-pretitolo-font-size{
  font-family: var(--space);
  margin-bottom: 10px;
  font-weight: 300;
}



.has-titolo-sezione-font-size{
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.1;
  overflow: hidden;
}

.has-numero-small-font-size{
  width: 60px;
}

.has-titolo-xs-font-size{
  font-weight: 400;
}

p strong{
  font-size: 18px;
  line-height: normal;
}


/** -------------------------------------------------------------------------------- */
/* // ! STILI CUSTOM */
/** -------------------------------------------------------------------------------- */ 
/*? -------------------------------------------------------------------------------- */
/*? PULSANTI */
/*? -------------------------------------------------------------------------------- */

/** contorno */
.wp-block-button.is-style-outline .wp-block-button__link:hover{
  background-color: transparent !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:after{
  content: "";
  position: absolute;
  background-color: var(--wp--preset--color--custom-bianco);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 150%;
  height: 100%;
  -webkit-transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
  transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  transition: -webkit-transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover:after{
  -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
}

.wp-block-button.is-style-outline .wp-block-button__link[data-hover]{
  position: relative;
  overflow: hidden;
}
.wp-block-button.is-style-outline .wp-block-button__link[data-hover] span{
  display: block;
  transform: translateY(0%);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition-delay: 0.3s;
}

.wp-block-button.is-style-outline .wp-block-button__link[data-hover]:before{
  content: attr(data-hover);
  color: var(--wp--preset--color--custom-nero);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 0;
  visibility: hidden;
  z-index:1;
}

.wp-block-button.is-style-outline .wp-block-button__link[data-hover]:hover:before{
  /* transform: translateY(-50%);
  opacity: 1;
  visibility: visible; */
  transform: translateY(-50%);
   opacity: 1;
   visibility: visible;
   transition: all 600ms cubic-bezier(0.48, 0, 0.12, 1);
}

/** default */
.wp-block-button .wp-block-button__link:hover{
  background-color: transparent !important;
}
.wp-block-button .wp-block-button__link:after{
  content: "";
  position: absolute;
  background-color: var(--wp--preset--color--custom-nero);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 150%;
  height: 100%;
  -webkit-transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
  transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  transition: -webkit-transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
}
.wp-block-button .wp-block-button__link:hover:after{
  -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
}

.wp-block-button .wp-block-button__link[data-hover]{
  position: relative;
  overflow: hidden;
}
.wp-block-button .wp-block-button__link[data-hover] span{
  display: block;
  transform: translateY(0%);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition-delay: 0.3s;
}

.wp-block-button .wp-block-button__link[data-hover]:before{
  content: attr(data-hover);
  color: var(--wp--preset--color--custom-bianco);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 0;
  visibility: hidden;
  z-index:1;
}

.wp-block-button .wp-block-button__link[data-hover]:hover:before{
  /* transform: translateY(-50%);
  opacity: 1;
  visibility: visible; */
  transform: translateY(-50%);
   opacity: 1;
   visibility: visible;
   transition: all 600ms cubic-bezier(0.48, 0, 0.12, 1);
}


/** nero */
.wp-block-button.is-style-nero .wp-block-button__link{
  background-color: var(--wp--preset--color--custom-nero);
  color: var(--wp--preset--color--custom-bianco);
}
.wp-block-button.is-style-nero .wp-block-button__link:hover{
  background-color: var(--wp--preset--color--custom-nero) !important;
}
.wp-block-button.is-style-nero .wp-block-button__link:after{
  content: "";
  position: absolute;
  background-color: var(--wp--preset--color--custom-bianco);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 150%;
  height: 100%;
  -webkit-transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
  transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  transition: -webkit-transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.59, 0.03, 0.2, 1);
}
.wp-block-button.is-style-nero .wp-block-button__link:hover:after{
  -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
}

.wp-block-button.is-style-nero .wp-block-button__link[data-hover]{
  position: relative;
  overflow: hidden;
}
.wp-block-button.is-style-nero .wp-block-button__link[data-hover] span{
  display: block;
  transform: translateY(0%);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition-delay: 0.3s;
}

.wp-block-button.is-style-nero .wp-block-button__link[data-hover]:before{
  content: attr(data-hover);
  color: var(--wp--preset--color--custom-nero);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 0;
  visibility: hidden;
  z-index:1;
}

.wp-block-button.is-style-nero .wp-block-button__link[data-hover]:hover:before{
  /* transform: translateY(-50%);
  opacity: 1;
  visibility: visible; */
  transform: translateY(-50%);
   opacity: 1;
   visibility: visible;
   transition: all 600ms cubic-bezier(0.48, 0, 0.12, 1);
}




/** backend */
.block-editor-block-list__block.wp-block-button .wp-block-button__link:after{
  display: none !important;
}



/*? -------------------------------------------------------------------------------- */
/*? SLIDER */
/*? -------------------------------------------------------------------------------- */
/* freccie */
.swiper-button-next:after,
.swiper-button-prev:after{
display: none;
}
.swiper-button-next .material-symbols-outlined,
.swiper-button-prev .material-symbols-outlined{
color: var(--wp--preset--color--custom-nero);
font-size: 40px;
}



/*? -------------------------------------------------------------------------------- */
/*? COLONNA */
/*? -------------------------------------------------------------------------------- */








/** -------------------------------------------------------------------------------- */
/* // ! RIGHE SVG */
/** -------------------------------------------------------------------------------- */
.svg-righe > div{ 
  width: 100% !important;
}



/** -------------------------------------------------------------------------------- */
/* // ! HEADER */
/** -------------------------------------------------------------------------------- */
.gruppo-header-main{
  position: fixed;
  top: 20px;
  z-index: 99;
  margin-left: 4vw;
  margin-right: 4vw;
  justify-content: space-between;
  max-width: -webkit-fill-available;
  width: fit-content;
}
.riga-menu{
  position: absolute;
  width: 1px;
  background-color: currentColor;
  right:0;
  top: 0;
  height: 100%;
}

@media(max-width:781px){
  .gruppo-header-main{
    width: 100%;
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0px;
    margin-right: 0px;
  }
}

.menu-overlay ul.menu > li:last-child{
  border-top: 1px solid currentColor;
  margin-top: 15px;
}
.menu-overlay ul.menu > li:last-child .icona-menu-overlay{
  transition: background-color 0.3s;
}
.menu-overlay ul.menu > li:last-child:hover .icona-menu-overlay{
  background-color: var(--wp--preset--color--custom-nero);
}

.menu-wrap:before{
  content:'';
}



/*? -------------------------------------------------------------------------------- */
/*? LOGO */
/*? -------------------------------------------------------------------------------- */
.menu-box-logo img{
  border-radius: 0px;
}



/*? -------------------------------------------------------------------------------- */
/*? HAMBURGER */
/*? -------------------------------------------------------------------------------- */
/* animazione btn menu */
.notouch .btn-menu{
  pointer-events: none;
}

/* btn hamburger */
.hamburger-mobile{
  text-align: center;
  margin: 0 !important;
}
.btn-menu {
  z-index: 34;
  background: transparent;
  min-height: 22px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
}
.menu-open .btn-menu,
.scrollato .btn-menu{
  background-color: transparent;
}
  
.btn-menu__bars {
  display: block !important;
  background: var(--wp--preset--color--custom-nero);
  position: relative;
  width: 36px;
  height: 1px;
  transition: 0.3s;
}
  
  
.btn-menu__bars:before{
  content: "";
  background: var(--wp--preset--color--custom-nero);
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  top: 3px;
}
  
  
.btn-menu__bars:after {
  content: "";
  background: var(--wp--preset--color--custom-nero);
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  top: -3px;
}
  
  
.btn-menu__bars:before {
  transform: translate(0, -8px);
}
  
.btn-menu__bars:after {
  transform: translate(0, 8px);
}
  
/* menu open */
.menu-open .btn-menu .btn-menu__bars {
  background-color: transparent;
}
.menu-open .btn-menu__bars:before {
  
  top: 8px;
}

.menu-open .btn-menu__bars:after {
  background-color: var(--wp--preset--color--custom-nero);
  top: -8px;
}

/* ready */
.menu-ready .btn-menu__bars:before {
  transform: translate(0, -8px) rotate(45deg);
  transform-origin: center;
}
.menu-ready .btn-menu__bars:after{ 
  transform: translate(0, 8px) rotate(-45deg);
  transform-origin: center;
}
/* .riga-menu{
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.8s;
}
.menu-open .riga-menu{
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
} */

/*? -------------------------------------------------------------------------------- */
/*? OVERLAY */
/*? -------------------------------------------------------------------------------- */
.menu-overlay ul.menu{
  line-height: 1.8;
}
.menu-overlay ul.menu > li{
  position: relative;
}
.menu-overlay ul.menu > li > a{
  margin-left: 40px;
}
.menu-overlay ul.menu > li > a:hover{
  color: currentColor;
}
.numero-menu,
.simbolo-submenu{
  position: absolute;
  left: 0;
  top: 0;
}
.numero-menu{
  padding-top: 7px;
  font-size: 11px;
  display: flex;
  flex-direction: row;
}
.menu-overlay ul.menu > li > ul.sub-menu{
  gap: 5px;
  max-width: 280px;
}
.menu-overlay ul.menu > li > ul.sub-menu > li{
  position: relative;
}
.menu-overlay ul.menu > li > ul.sub-menu > li > a{
  margin-left: 40px;
}

.menu-overlay > div{
  width: 100%;
}
.menu-overlay .menu-item-has-children > a{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.menu-overlay ul.sub-menu > li > a:hover{
  color: currentColor !important;
}
.icona-submenu{
  font-size: 18px;
}
.numero-menu{
  font-family: var(--space);
}
.menu-overlay ul.menu > li > ul.sub-menu{
  line-height: 1.4;
  margin: 5px 0px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 0px;
}
.icona-submenu{
  will-change: transform;
  transform: rotate(0deg);
  transition: transform 0.5s;
}
.sub-menu-aperto .icona-submenu{
  transform: rotate(45deg);
}

/* panel */
.menu-overlay-panel:not(.block-editor-block-list__block .menu-overlay-panel){
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: all 0.4s ease-in;
}
/* .menu-open .menu-overlay-panel{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
} */


/* // overlay blur */

.overlay-blur{
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  transition: 0.4s ease-out;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000b0;
  z-index: 98;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.menu-ready .overlay-blur{
  pointer-events: all;
  opacity:1;
}

.menu-overlay-contatti{
  margin: 5px 0px 0px 0px;
  line-height: 1.3;
  display: flex;
  flex-direction: row;
  gap: 5px;
}


/* icona */
.icona-menu-overlay{
  position: absolute;
  right: 0;
  background-color: var(--wp--preset--color--custom-uno);
  border-radius: 500px;
  padding: 5px;
  font-size: 35px;
  top: 16px;
  color: #fff;
  pointer-events: none;
}
@media(max-width:781px){
  .icona-menu-overlay{
    font-size: 20px;
    top: 5px;
  }
}




/* ? WPML  */
.wpml-menu-overlay .wpml-ls-statics-shortcode_actions br{
  display: none !important;
}
.wpml-menu-overlay .material-symbols-outlined{
  font-size: 20px;
}







/*? -------------------------------------------------------------------------------- */
/*? WPML */
/*? -------------------------------------------------------------------------------- */
.wpml-lingue-header .wpml-ls-statics-shortcode_actions{
  padding: 0;
}
.wpml-lingue-header .wpml-ls-statics-shortcode_actions br{
  display: none;
}
.wpml-lingue-header .wpml-ls-link{
  padding: 0;
}


.wpml-lingue-shortcode:before{
  content:'';
  position: absolute;
  background: #f2f2f2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.wpml-lingue-shortcode ul{
  display: flex;
  flex-direction: column;
}

/**/
.wpml-lingue-header{
  position: fixed;
  top: 28px;
  right: 0px;
  margin: 0px 4vw !important;
}
.wpml-lingue-header .wpml-lingue-icona{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  background: #f2f2f2;
  margin-left: -1px;
}



.wpml-lingue-shortcode:not(.block-editor-block-list__block.wpml-lingue-shortcode){
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.4s ease-in-out;
}
.lingue-open .wpml-lingue-shortcode{
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%) !important;
}
.wpml-lingue-shortcode{
  /* width: 0; */
  padding: 20px 0px;
}
.wpml-lingue-shortcode ul{
  flex-direction: row;
  gap: 15px;
  padding: 0px 20px;
  font-size: 16px;
}

.riga-menu-lingue{
  position: absolute;
  width: 1px;
  background-color: currentColor;
  left: 0;
  top: 0;
  height: 100%;
  clip-path: polygon(100% 0, 0 0, 0 0, 100% 0);
  transition: clip-path 0.4s ease-in-out;
}

.lingue-open .riga-menu-lingue{
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}




@media(max-width:781px){
  .wpml-lingue-header{
    display: none !important;
  }
}



/** -------------------------------------------------------------------------------- */
/* // ! PAGINE SERVIZI */
/** -------------------------------------------------------------------------------- */
@media(max-width:550px){
  .riga-pagine-servizi{
    flex-direction: column;
    align-items: flex-start;
  }
}





/** -------------------------------------------------------------------------------- */
/* // ! GSAP */
/** -------------------------------------------------------------------------------- */

/* // SPLIT TEXT */
.titolo-intro, 
.split-child{
  overflow: hidden;
}


/* // RIEMPIMENTO */ 
.is-style-riempimento {
  opacity: 1; /* Opacità del contenitore */
}

.is-style-riempimento > .rood {
  opacity: 0.3;
  color: currentColor;
  display: inline-block;
}




/** -------------------------------------------------------------------------------- */
/* // ! FORMS */
/** -------------------------------------------------------------------------------- */
.frm_button_submit{
  font-family: var(--neue);
  transition: all 0.3s;
}





/** -------------------------------------------------------------------------------- */
/* // ! FOOTER */
/** -------------------------------------------------------------------------------- */
.menu-footer ul{
  margin: 0;
}





/** -------------------------------------------------------------------------------- */
/* // ! MOUSE FOLLOWER */
/** -------------------------------------------------------------------------------- */
.mf-cursor:before{
  background-color: var(--wp--preset--color--custom-nero);
}

/* menu overlay */
.mouse-close .mf-cursor:before{
  background-color: var(--wp--preset--color--custom-bianco);
}
.mouse-close .mf-cursor .mf-cursor-text span{
  font-size:30px;
  color: var(--wp--preset--color--custom-nero);
}

/* immagine */
.mf-cursor-media-box{
  width: 400px;
  height: 500px;
}
.mf-cursor-media-box{
  border-radius: 20px;
}
.mf-cursor-media img{
  border-radius: 20px;
}


/* footer */
.mouse-white .mf-cursor:before{
  background-color: var(--wp--preset--color--custom-bianco);
}






/** -------------------------------------------------------------------------------- */
/* // ! TEMPLATES */
/** -------------------------------------------------------------------------------- */
/*? -------------------------------------------------------------------------------- */
/*? FOOTER NO CONTATTI */
/*? -------------------------------------------------------------------------------- */
.page-template-wp-custom-template-footer-no-contatti .footer-up{
  display: none;
}






/** -------------------------------------------------------------------------------- */
/* // ! FORM */
/** -------------------------------------------------------------------------------- */
/*? -------------------------------------------------------------------------------- */
/*? MODALE */
/*? -------------------------------------------------------------------------------- */
.modal-dialog input{
  border: 1px solid var(--wp--preset--color--custom-nero) !important;
}





/** -------------------------------------------------------------------------------- */
/* // ! VIDEO */
/** -------------------------------------------------------------------------------- */
:root{
  --plyr-color-main:var(--wp--preset--color--custom-due);
}
.plyr{
  border-radius: 20px;
}
.plyr__control.plyr__control--overlaid{
  max-width: 100px;
  max-height: 100px;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.plyr__control.plyr__control--overlaid svg{
  width: 30px;
  height: 30px;
}




/*? -------------------------------------------------------------------------------- */
/*? VIDEO YOUTUBE SHOWCASE */
/*? -------------------------------------------------------------------------------- */
@media(max-width:1024px){
  .griglia-video-showcase{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media(max-width:781px){
  .griglia-video-showcase .wp-block-embed{
    grid-column: span 2;
  }
  .griglia-video-showcase{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

}





/** -------------------------------------------------------------------------------- */
/* // ! DETTAGLI */
/** -------------------------------------------------------------------------------- */
.wp-block-details summary::-webkit-details-marker {
  display:none;
}
.wp-block-details summary{
  list-style: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.details-inner{
  display: flex;
  gap:20px;
  z-index: 9;
  align-items: center;
}
.icona-details{
  font-size: clamp(40px, 5vw, 80px) !important;
  transition: all 0.2s;
}
.wp-block-details[open] .icona-details{
  transform:rotate(45deg);
}
.details-inner .has-pretitolo-font-size{
  font-size:16px !important;
  margin-bottom: 0 !important;
}





/** -------------------------------------------------------------------------------- */
/* // ! SCHEDA PRODOTTO */
/** -------------------------------------------------------------------------------- */
.nome_prodotto_itransfer p{
  margin: 0 !important;
}
.wp-block-post-terms{
  pointer-events: none;
}
.download-scheda{
  cursor: pointer;
}
.download-scheda .material-symbols-outlined{
  font-size: 40px;
}
.scheda-tecnica:hover{
  color: currentColor;
}

/* brightness titolo */
.too-bright .nome_prodotto_itransfer p,
.too-bright h2{
  color: var(--wp--preset--color--custom-nero) !important;
}


/* noise img */
.ipowder-img-evid{
  position: relative;
  overflow: hidden;
}

.img-noise-single-product{
  width: 100%;
  filter: brightness(0.2);
  opacity: 0.5;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}


