  

	
/* 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;
    -webkit-transition: .2s;
    transition: .2s;
  }
  
  .menu-popup a {
    text-decoration: none;
  }
  
  .menu-popup a:hover {
    text-decoration: underline;
  }
  
  .menu-popup .menu {
    position: fixed;
    width: 25%;
    background: ;
    height: 100%;
    overflow-y: scroll;
    overflow: auto;
    z-index: 99999;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: .5s;
    transition: .5s;
  }
  
  .menu-popup .menu .header-menu {
    padding: .5rem 1rem 0 1rem;
    margin-bottom: 3rem;
  }
  
  .menu-popup .menu .header-menu .chiudi {
    color:  !important;
    font-size: 2rem;
    float: right;
  }
  
  .menu-popup .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .menu-popup .menu button {
    background: none;
  }
  
  .menu-popup .menu button:hover a {
    color:  !important;
  }
  
  .menu-popup .menu .primo-livello {
    width: 100%;
    text-align: left;
    color:  !important;
    border: none;
    padding: 1.5rem 1rem;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid ;
  }
  
  .menu-popup .menu .primo-livello a {
    color:  !important;
    display: inline-block;
  }
  
  .menu-popup .menu .primo-livello:hover {
    background: ;
    color:  !important;
  }
  
  .menu-popup .menu .primo-livello:hover a {
    color:  !important;
    color:  !important;
  }
  
  .menu-popup .menu .primo-livello[aria-expanded="true"] {
    background: ;
    color:  !important;
  }
  
  .menu-popup .menu .primo-livello[aria-expanded="true"] a {
    color:  !important;
  }
  
  .menu-popup .menu .primo-livello[aria-expanded="true"]:hover {
    color:  !important;
  }
  
  .menu-popup .menu .primo-livello[aria-expanded="true"]:hover a {
    color:  !important;
  }
  
  .menu-popup .menu .primo-livello[aria-expanded="true"]::after {
    color:  !important;
  }
  
  .menu-popup .menu .primo-livello::after {
    content: "";
    font-family: "Font Awesome 5 Free";
    float: right;
    text-decoration: none;
  }
  
  .menu-popup .menu .primo-livello[aria-expanded="true"]::after {
        font: normal normal normal 32px/1 FontAwesome;
    content: '\f106';
  }
  
  .menu-popup .menu .primo-livello[aria-expanded="false"]::after {
        font: normal normal normal 32px/1 FontAwesome;
    content: '\f107';
  }
  
  .menu-popup .menu .primo-livello li {
    color:  !important;
  }

  
  .menu-popup .menu .primo-livello ul.secondo-livello::after {
    content: "";
    font-family: "Font Awesome 5 Free";
    float: right;
  }
  
  .menu-popup .menu .primo-livello ul.secondo-livello[aria-expanded="true"]::after {
	font: normal normal normal 32px/1 FontAwesome;
    content: '\f107';
  }
  
  .menu-popup .menu .primo-livello ul.secondo-livello[aria-expanded="false"]::after {
    font: normal normal normal 32px/1 FontAwesome;
    content: '\f106';
  }
  
  .menu-popup .menu .primo-livello ul.secondo-livello li {
    color: ;
  }
  
  .menu-popup .menu ul.terzo-livello {
    padding: 0 0 0 2rem;
  }
  

  .menu-popup .menu button.secondo-livello:hover {
    background: ;
    color: !important;
  }
  
  .menu-popup .menu button.secondo-livello:hover a{
    color: !important;
  }
  
  .menu-popup .menu button.secondo-livello a {
    color: ;
  }
  
  .menu-popup .menu button.secondo-livello::after {
    content: "";
    font-family: "Font Awesome 5 Free";
    float: right;
  }
  
  .menu-popup .menu button.secondo-livello[aria-expanded="true"]::after {
    font: normal normal normal 32px/1 FontAwesome;
    content: '\f106';
  }
  
  .menu-popup .menu button.secondo-livello[aria-expanded="false"]::after {
    font: normal normal normal 32px/1 FontAwesome;
    content: '\f107';
  }
  
  .menu-popup .menu .collapse-voce {
    background:  !important;
  }
  
  .menu-popup .menu .collapse-voce .sotto-voce {
    display: block;
    color: ;
    font-weight: 500;
    padding: 1rem 2rem;
  }
  
  .menu-popup.active {
    visibility: visible;
  }
  
  .menu-popup.active .overlay {
    opacity: 1;
  }
  
  .menu-popup.active .menu {
    -webkit-transform: translateX(0);
            transform: translateX(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 */	
