.left-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.left-menu .menu-root a,
.left-menu .menu-root a:visited {
  display: block;
  font-weight: 500;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--default-text-color);
  text-decoration: none;
}
.left-menu .menu-root a:hover,
.left-menu .menu-root a:visited:hover {
  border: 1px solid var(--medium-gray);
}
.left-menu .menu-root.selected a {
  background-color: var(--secondary-color);
}
#DNNLeftMenu .columnaMenu {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  border-bottom: 1px solid #a16d6d;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
#DNNLeftMenu span.footerLink,
#DNNLeftMenu a.linkPrincipal {
  color: #6E33AE;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px;
  display: block;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #35B1E6;
  border-radius: 10px;
}
#DNNLeftMenu a.linkPrincipal:hover {
  text-decoration: none;
  background-color: #6E33AE;
  color: #fff;
}
#DNNLeftMenu a.linkSubmenu {
  text-decoration: underline;
  color: #35B1E6;
  font-weight: 500;
  text-decoration: none;
}
#DNNLeftMenu a.linkSubmenu:hover {
  text-decoration: none;
  background-color: #D8D8D8;
}
#DNNLeftMenu .columnaMenu a {
  -webkit-transition: all 75ms ease-out;
  -moz-transition: all 75ms ease-out;
  -ms-transition: all 75ms ease-out;
  -o-transition: all 75ms ease-out;
  transition: all 75ms ease-out;
}
#DNNLeftMenu span.level1 {
  color: #35B1E6;
  font-weight: 500;
}
#DNNLeftMenu .linkSubmenu.level2 {
  padding-left: 20px;
  display: inline-block;
}
#DNNLeftMenu .linkSubmenu.level2::before {
  content: "\f0da";
  font-family: FontAwesome;
  margin-right: 5px;
}
