.t99-menu-block ul {
  list-style: none;
}

ul.t99-menu {
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;

  align-items: center;
  gap: 2vw;
}

.t99-menu .menu-item:has(.sub-menu) {
  position: relative;
  z-index: 1;
}

/* spazio per hover */
.t99-menu .menu-item:has(.sub-menu)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 2em;
  background: transparent;
}

.t99-menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.9rem !important;
  list-style: none;
  position: absolute;
  width: max-content;
  top: 100%;
  left: 0;
  padding: 1em 0em;
  background-color: var(--wp--preset--color--white);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.t99-menu .menu-item:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
}

.t99-menu .toggle_button {
  display: none;
}

#hamburger_icon {
  display: none;
}
