/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 06 2025 | 10:21:20 */
/* FIVEfigital default */
selector {height: 0px;}

/* Desk trasformazione del logo su scroll */
@media (min-width: 768px) {
.smaller {transform:matrix(0.80,0.00,0.00,0.80,-37,2)!important ;
-ms-transform:matrix(0.80,0.00,0.00,0.80,-37,-5) !important;
-webkit-transform:matrix(0.80,0.00,0.00,0.80,-37,2) !important; }
}

/* desk - aggiunta di sfondo e cambio altezza su scroll  */

#menu-unico {background-color: transparent;  transition: 1s ease;}

/* Default: visibile su tutte le pagine */
#menu-appare {
  display: block;
  opacity: 1;
  transform: none;
  transition: opacity .4s ease, transform .4s ease;
}

/* Solo in home: nascosto finché non si scrolla */
body.home #menu-appare {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
}

/* Solo in home: quando aggiungo .visibile dopo 550px */
body.home #menu-appare.visibile {
  display: block;
  opacity: 1;
  transform: translateY(0);
}





@media (min-width: 768px) {
.sfondo {background-color: #fff !important; transition: 1s ease;}
.less_height {height: 70px !important;  transition: 1s ease;}
}

/* mob - aggiunta di sfondo su scroll  */

@media (max-width: 767px) {
.sfondo {background-color: #fff !important; background-image: none !important; height: 60px !important;}
}