/* MOBILE MENU */

header {z-index: 9999 !important;}

.mobile-nav-button .mobile-nav-button__line {
	width: 100%;
	height: 4px;
	background: #0e0e0e;
	/*background: #ffcc00;*/
	position: relative;
	transition: 1s ease;
	}

.mobile-nav-button .mobile-nav-button__line:nth-of-type(2) { margin: 0.5rem 0; }
.mobile-nav-button .mobile-nav-button__line--1 {
	transform: rotate(45deg);
	top: 13px;
	position: absolute;
	}

.mobile-nav-button .mobile-nav-button__line--2 { display: none; }
.mobile-nav-button .mobile-nav-button__line--3 {
	transform: rotate(135deg);
	top: 13px;
	position: absolute;
	}

/* THE MENU */	
.mobile-menu {
	display: block;
	max-width: 756px;
	width: 100%;
	left: -100%;
	height: 100vh;
	position: absolute;
	z-index: 9998;
	transition: 0.6s ease;
	opacity: 0;
	}
#site .mobile-menu {background: #5f65b3;}
	
.mobile-menu ul {position: relative; padding: 0;}

.mobile-menu ul li { list-style: none; }
.mobile-menu ul li a {
	position: relative; display: block;
	width: 100%;
	max-width: 1200px;
	margin: 1% 0; padding-left: 3.25% !important;
	text-align: left; text-decoration: none;
	font-weight: bold; color: #fff;
	overflow: hidden;
	}
.mobile-menu ul ul li a {
	position: relative; display: block;
	width: 94%;
	margin: 1% 0; padding-left: 9% !important;
	text-align: left; text-decoration: none;
	font-weight: bold; color: #fff;
	overflow: hidden;
	}	
	
/*.mobile-menu ul li a:after {
	content: '';
	background: #0e0e0e;
	width: 96.75%;
	height: 100%;
	position: absolute;
	left: -100%;
	top: 0;
	z-index: -1;
	transition: 0.5s ease;
	}*/

.mobile-menu ul li a:hover { color: #fff; }
.mobile-menu ul li a:hover:after { left: 0; }

.mobile-menu img {
	position: absolute;
	width: 150px;
	display: block;
	left: 50%;
	top: 3rem;
	transform: translatex(-50%);
	padding: 0;
	text-align: center;
	}

.mobile-menu--open {
	left: 0;
	opacity: 1;
	}
	
	
/* VERTICAL */
@media only screen and (orientation: portrait) { 
	.mobile-nav-button {
		position: absolute;
		width: 30px;
		height: 25px;
		margin: 0 0.9em !important;
		left: 0; top: 0%;
		z-index: 9999;
		cursor: pointer;
		}
	div.mobile-nav-button {margin-top: 2% !important;}
	.mobile-menu {top: 0 !important; width: 100% !important;}
	.mobile-menu ul {top: 6.5%;}	
	.mobile-menu ul li a {font-size: 1.7rem;}
	.mobile-menu ul ul li a {font-size: 1.3rem; line-height: 1.2em;}	
	
	}
/* HORIZONTAL */		
@media only screen and (orientation: landscape) {		
	.mobile-nav-button {
		position: absolute;
		width: 35px;
		height: 30px;
		margin: 1rem;
		left: 0; top: 5%;
		z-index: 9999;
		cursor: pointer;
		}
	div.mobile-nav-button {margin-top: 0 !important;}
	.mobile-menu {	top: 0 !important; height: 165vh;}
	.mobile-menu ul {top: 10% !important;}	
	.mobile-menu ul li a {font-size: 1.65rem;}
	ul.albums a {font-size: 1em !important; line-height: 1.2em;}		
	}
	
		