/* Menu Popup */
.menu-popup {
  visibility: hidden;
}

.menu-popup .overlay {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.2s;
}

.menu-popup a {
  text-decoration: none;
}

.menu-popup a:hover {
  text-decoration: underline;
}

.menu-popup .menu {
  position: fixed;
  width: 450px;
  background: #0057ad;
  height: 100%;
  overflow-y: scroll;
  overflow: auto;
  z-index: 99999;
  top: 0;
  left: -450px;
  transition: 0.5s;
}

.menu-popup[aria-expanded="true"] .menu {
  left:0;
}

.menu-popup .menu .header-menu {
  padding: 0.5rem 1rem 0 1rem;
  margin-bottom: 3rem;
}

.menu-popup .menu .header-menu .chiudi {
  color: #fff;
  font-size: 2rem;
  float: right;
  border: none;
  background:none;
}

.menu-popup .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-popup .menu .primo-livello {
  width: 100%;
  text-align: left;
  color: #fff;
  border: none;
  padding: 1.5rem 1rem;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid #fff;
}

.menu-popup .menu .primo-livello + ul {
  padding:1rem 0 1rem 2rem;
  color:#fff;
  background:#214582;
}

.menu-popup .menu .primo-livello + ul li {
  margin-bottom:.5rem;
}
.menu-popup .menu .primo-livello + ul a {
  color:#fff;
}

.menu-popup .menu .primo-livello a {
  color: #fff;
  display: inline-block;
}

.menu-popup .menu .primo-livello:hover {
  background: #fff;
  color: #0057ad;
}

.menu-popup .menu .primo-livello:hover a {
  color: #0057ad;
}


.menu-popup details > .primo-livello:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  float: right;
  text-decoration: none;
}

.menu-popup details[open] > .primo-livello:after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  float: right;
  text-decoration: none;
}

/* .menu-popup .menu .primo-livello::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  float: right;
  text-decoration: none;
}

.menu-popup .menu details[open] .primo-livello::after {
  content: "\f077";
}

.menu-popup .menu details .primo-livello::after {
  content: "\f078";
} */

.menu-popup .menu .primo-livello li {
  color: #fff;
}

.menu-popup .menu .secondo-livello + ul {
  padding: 0 0 0 1rem;
}
.menu-popup .menu .secondo-livello + ul li {
  margin-bottom:.5rem;
}

.menu-popup .menu .secondo-livello {
  color:#fff;
  font-weight: 600;
  margin:1rem 0;
  font-size:1.1rem;
}

.menu-popup .menu details:not(:first-child) {
  padding-left:1rem;
}

.menu-popup.active {
  visibility: visible;
}

.menu-popup.active .overlay {
  opacity: 1;
}

.menu-popup.active .menu {
  transform: translateX(0);
  left:0;
}

@media (max-width: 992px) {
  .menu-popup .menu {
    min-width: 60%;
  }
}

@media (max-width: 768px) {
  .menu-popup .menu {
    min-width: 80%;
  }
}

@media (max-width: 576px) {
  .menu-popup .menu {
    width: 90%;
  }
}
/* fine Menu Popup */