.menu-push-toggle{
	display:none;
	}
@media only screen and (max-width:600px) 
{
.menu-push-toggle{
	display:inline;
	background: url(img/button-menu-white.png) no-repeat;
	background-size:contain;
	width:5vw;
	height:5vw;
	min-width: 48px;
	min-height: 48px;
   cursor:pointer;
   border: none;
	margin:1vw;
	}
}

.menu-push {
	background: #47a3da;
	position: fixed;
	top:0px;
	bottom:0px;
	width: 240px;
	max-width:80%;
	left: -240px;
	min-height: 100%;
	overflow-y: auto;
	z-index: 1000;
	padding-bottom:60px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-align:left;
	}

.menu-push ul{
	padding:0px;margin:0px auto;
	list-style-type: none;
	}
.menu-push li{
	padding:0px;margin:0px auto;
	}
.menu-push h3 {
	color: #afdefa;
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #0d77b6;
	}

.menu-push a {
	display: block;
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
	border-bottom: 1px solid #258ecd;
	padding: 1em;
	}

.menu-push a:hover {
	background: #258ecd;
}

.menu-push a:active {
	background: #afdefa;
	color: #47a3da;
}

.menu-push:hover,
.menu-push-open {
	left: 0px;
}
.menu-push ul li ul{
	display: none;
	}
.menu-push ul li:hover ul {
  display: block;
  visibility: visible;
}
.menu-push ul li ul li a{
	padding-left:1.5em;
}

.menu-push::-webkit-scrollbar-track{
	background-color: #F5F5F5;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	}
.menu-push::-webkit-scrollbar{
	width: 15px;
	}
.menu-push::-webkit-scrollbar-thumb{
	background-color: #258ecd;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 3px;
	}


::-webkit-scrollbar-track{
	background-color: #F5F5F5;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	}
::-webkit-scrollbar{
	width: 15px;
	}
::-webkit-scrollbar-thumb{
	background-color: #ccc;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 3px;
	}
::-webkit-scrollbar-thumb:hover{
	background-color: #258ecd;
	}


