
.snn-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.snn-menu li {
  margin: 30px 0;
}
.snn-icon {
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease;
  background-image: url('/wp-content/plugins/side-number-nav/icon-nav.svg');
  z-index: 1;
}
.icona:hover .snn-icon {
  background-image: url('/wp-content/plugins/side-number-nav/icon-nav-hover.svg');
}
.snn-link {
  position: relative;
  width: 50px;
  height: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: visible !important;
}
.snn-link:hover .snn-hover-label {
  opacity: 1;
  transform: translateX(60px);
}
.snn-menu li .snn-active .snn-icon {
  background-image: url('/wp-content/plugins/side-number-nav/icon-nav-hover.svg');
} 
.snn-hover-label {
  position: absolute;
  left: 0px;
  white-space: nowrap;
  color: #75f74d;
  padding: 10px;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(20px);
  height: 30px;
  font-weight: 500;
  font-family: 'Work Sans';
}
@media (max-width: 768px) {
  .snn-container {
    top: auto;
    bottom: 20px;
    transform: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .snn-menu {
    display: flex;
    flex-direction: row;
  }
}
