/* ============================================================
   Gestisce sticky menu
   ============================================================ */
#logo-full,
#logo-sticky {
  transition: opacity 0.3s ease;
}

#logo-sticky {
  opacity: 0;
}
#logo-sticky[data-state="visible"] {
  opacity: 1;
}

#logo-full[data-state="hidden"] {
  opacity: 0;
}

#header-row {
  background-color: transparent;
  transition: background-color 0.3s ease, padding 0.3s ease;
  padding: 0px 30px !important;
}

#header-row[data-state="sticky"] {
  background-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0px 30px !important;
}

#header-container {
  transition: padding 0.3s ease;
}

#header-row[data-state="sticky"] #header-container {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

#header-row-mobile[data-state="sticky"] {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* ============================================================
   Gestisce i bullet in generale
   ============================================================ */

ul {
  padding-left: 13px;
}


#brxe-ftvuud {
  z-index: 9999 !important;
}

#brx-header {
  z-index: 10000 !important;
}



.brxe-popup-149.show .brx-popup-content {
  animation: slideInRight 0.3s ease forwards;
}

.brxe-popup-149.hide .brx-popup-content {
  animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideOutRight {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}