/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.menuList {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  position: relative;
}
.menuList--horizontal {
  flex-direction: row;
  gap: 0.5rem;
}
.menuList__separator--bottom {
  padding-top: 0.5rem;
  position: relative;
}
.menuList__separator--bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-top: 1px solid var(--bg-dark);
  left: 0;
  right: 0;
}
.menuList__separator--top {
  padding-top: 0.5rem;
  position: relative;
}
.menuList__separator--top::after {
  content: "";
  position: absolute;
  top: 0;
  border-top: 1px solid var(--bg-dark);
  right: 0;
  left: 0;
}
.menuList__separator {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--fg-light);
}
.menuList__separator span {
  text-transform: uppercase;
  font-size: 0.75rem;
}
.menuList__separator::before, .menuList__separator::after {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--bg-dark);
}
.menuList__separator::before {
  width: 10px;
}
.menuList__separator::after {
  width: 100%;
}
.menuList__item {
  display: grid;
  grid-template-columns: 25px 1fr min-content;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.menuList__item--withIcon {
  gap: 0.5rem;
}
.menuList__item:hover {
  background-color: var(--bg-dark);
}
.menuList__item i {
  justify-self: center;
}
.menuList__item__text {
  text-overflow: ellipsis;
  overflow-x: hidden;
}
.menuList__item__chevron {
  justify-self: center;
  transform: rotate(90deg);
}
.menuList__item.item--selected {
  background: var(--primary);
  background: linear-gradient(270deg, var(--primary) 0%, color-mix(in sRGB, var(--primary) 52%, var(--white)) 100%);
  color: var(--white);
}
.menuList__item.item--selected .menuList__item__chevron i {
  /*transform: rotate(-90deg);*/
}
.menuList__item.item--selected:has(+ .subMenu--active) {
  background: var(--bg-dark);
  color: var(--fg);
}
.menuList__item:has(+ .menuList__item__subMenu .item--selected) {
  background: var(--primary);
  background: linear-gradient(270deg, var(--primary) 0%, color-mix(in sRGB, var(--primary) 52%, var(--white)) 100%);
  color: var(--white);
}
.menuList__item__subMenu {
  display: none;
  margin-top: 0.5rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.4);
  padding: 1rem 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  min-width: 180px;
}
.menuList__item__subMenu.subMenu--active {
  display: flex;
  gap: 0.5rem;
}
.menuList__item__subMenu .menuList__item {
  padding-block: 4px;
  margin-right: 0;
  border-radius: 0;
}
.menuList__item.hide {
  display: none;
}

.menuSelectorPopUp {
  right: calc(100% + 1.5rem);
  width: max-content;
  top: 0;
  padding-inline: 1rem;
}

.languageFlagImage {
  width: 25px;
  height: 25px;
  border-radius: 0.5rem;
  overflow: hidden;
}

.menu__Popup {
  right: 0;
  top: calc(100% + 0.25rem);
  padding: 0.5rem 0 !important;
}
.menu__Popup .menuList__item {
  border-radius: 0;
}

/*# sourceMappingURL=menu.css.map */
