.hamburger-menu {
	width: 30px;
	height: 22px;
	position: relative;
	cursor: pointer;
	z-index: 100;
}

.hamburger-menu span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #e94362;
	border-radius: 2px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {top: 0px;}
.hamburger-menu span:nth-child(2) {top: 9px;}
.hamburger-menu span:nth-child(3) {top: 18px;}
.hamburger-menu.open span:nth-child(1) {top: 9px; transform: rotate(135deg);}
.hamburger-menu.open span:nth-child(2) {opacity: 0;	left: -60px;}
.hamburger-menu.open span:nth-child(3) {top: 9px; transform: rotate(-135deg);}

.menu-container {
	position: absolute;
	top: 40px;
	right: -1px;
	width: 300px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out;
	box-shadow: 0 6px 10px rgba(0,0,0,0.1);
	z-index: 99;
}

.menu-container.open {max-height: 500px;}

.menu-list {
	list-style: none;
	text-align: right;
	padding: 0;
}

.menu-list li {border-bottom: 1px solid #eee;}

.menu-list li:last-child {border-bottom: none;}

.menu-list a {
	display: block;
	font-family: 'MyriadPro-Regular';
	text-decoration: none;
	color: #777;
	font-size: 10px;
	padding: 12px 20px;
	transition: color 0.3s;
}

.menu-list a:hover {color: #000;}

.menu-list a.active {
	font-family: 'MyriadPro-Bold', Arial, sans-serif;
	font-weight: bold;
	color: #000;
}

.submenu {
	padding-left: 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.submenu.open {max-height: 100px;}
