	    /* Styles for the vertical menu */
    .vertical-menu {
      position: absolute;
      top: 70px;
      left: 0;
		background-color: #0f131a; /* #161d27; /* #343a40; */
      height: 100vh;
      width: 250px;

      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 0; /* 1rem; */
      box-sizing: border-box;
      transition: transform 0.3s ease-in-out;
		font-family: 'Roboto', sans-serif; /* font-family: 'Playfair Display', serif; */
		color: #000;
		font-size: 0.9em;
		z-index: 79;
		float: left;
		
		
    }
    
 
    
    /* Styles for the menu toggle button */
    .menu-toggle {
      display: none;
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 100;
      background-color: #161d27; /*#343a40;*/
      color: #ffffff;
      border: none;
      border-radius: 5px;
      /*padding: 0.5rem;*/
      cursor: pointer;
	font-size: 2em;
    }
   
    /* Responsive styles for screens 768px or narrower */
@media (max-width: 1520px) {
      .vertical-menu {
        transform: translateX(-100%);
        width: 80%;
        max-width: 250px;
      }
      .menu-toggle {
        display: block;
      }
      .menu-open .vertical-menu {
        transform: translateX(0);
      }
    }
    
/* reset our lists to remove bullet points and padding */
.mainmenu, .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
	
}

/* make ALL links (main and submenu) have padding and background color */
.mainmenu a {
  display: block;
  background-color: #CCC;
  text-decoration: none;
  padding: 10px;
  color: #000;
}

/* add hover behaviour */
.mainmenu a:hover {
    background-color: #C5C5C5;
}


/* when hovering over a .mainmenu item,
  display the submenu inside it.
  we're changing the submenu's max-height from 0 to 200px;
*/

.mainmenu li:hover .submenu {
  display: block;
  max-height: 200px;
}

/*
  we now overwrite the background-color for .submenu links only.
  CSS reads down the page, so code at the bottom will overwrite the code at the top.
*/

.submenu a {
  background-color: #999; 
}

/* hover behaviour for links inside .submenu */
.submenu a:hover {
  background-color: #666;
}

/* this is the initial state of all submenus.
  we set it to max-height: 0, and hide the overflowed content.
*/
.submenu {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease-out;
}

	
	nav {
	position: relative;
	/*margin: 50px;*/
	width: 98%;
		text-align: left;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav ul li {
  /* Sub Menu */
}
nav ul li a {
	display: block;
	background-color: #0f131a; /* #161d27; /* mio */
	padding: 10px 15px;
	color: #333;
	text-decoration: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
	border-bottom: 1px solid #333;
}

nav ul li a:hover {
	/*background: #d4af37; /* #f8f8f8; */
	  background: #FDE08D;
  	background: -webkit-linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
	background: linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
border:#8f6B29 0px solid;
	color: #000;
	
}
nav ul li a .fa {
	width: 16px;
	text-align: left;
	margin-right: 5px;
	float:right;
}
nav ul ul {
	background-color: #ebebeb;
}
nav ul li ul li a {
	background:#161d27; /* #27313E; /* mio */ /*#f8f8f8;*/
	border-left: 4px solid transparent;
	padding: 10px 20px;
}
nav ul li ul li a:hover {
	background: #ebebeb;
	border-left: 4px solid #3498db;
}



	.icone-menu {
		vertical-align: middle;
		height: 22px;
		font-size: 22px;
		margin-right: 5px;
	}	