/* The Overlay (background) */
.overlay {	
	/* SLIDE IN FROM THE RIGHT   
    height: 100%;
    width: 0;
	*/

    height: 0;
    width: 100%;
	
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px !important;
    right: 20px;
    font-size: 50px !important;
	line-height: 20px;
	padding-bottom:5px;
	padding: 8px 8px 13px 8px;
	border-radius: 50%;
	text-decoration:none;
	color: #FFF;
	font-weight: normal;
	Xfont-family: 'Roboto', sans-serif;
	border: solid 2px white;
}
a.closebtn {
	color:#FFF;	
}
a.closebtn:hover {
	color:#fad52e;
	border-color: #fad52e;
}
.hamburger_containter {
	padding-top:12px;
	float:right;
	width:30px;
}
.hamburger {
	height:20px;
	cursor:pointer;
}
.mobile_menu_btn {
	color: #FFFFFF !important;
	padding:1em !important;
	display: block;
	padding: 1em;
	background-color:#DD0000;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}


@media only screen and (max-width: 920px) {
}