@import url('https://fonts.googleapis.com/css?family=Cormorant+Infant:300,300i,400,400i,500,500i,600,600i,700,700i&subset=latin-ext');

.mainMenu-mobile {
	display: block;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	line-height: 2;
	float: left;
	z-index:1000;
	border-bottom: 1px solid #ccc;
	background-color:#FFF;
}

.toggleMenu {
	display: block;
	position: relative;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	padding-top:20px;
}

#toggleMenu:checked ~ .menu-mobile {
	max-height: 767px;
	opacity: 1;
}
.menu-mobile {
	width: 100%;
	font-size:14px;
	text-transform:uppercase;
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	max-height: 0px;
	overflow-y: hidden;
	text-align: center;
	-moz-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.menu-mobile li {
	margin: 0;
	padding: 0;
	border-top: 1px solid #ccc;
	white-space: nowrap;
	display: block;
	width: 100%;
}

.menu-mobile li:hover {
	cursor: pointer;
}
.menu-mobile a, .menu-mobile a:visited {
	font-family: 'Cormorant Infant', serif;
	font-size:18px;
	font-weight:500;
	color: #000;
	text-decoration: none;
	display: block;
	width: 94%;
	padding: 10px 3%;
	text-align: center;
}
.menu-mobile li:first-child {
	border-left: 0;
}

.menu-mobile a:hover {
	color: #fae4cc;
}
label.menuTitle {
	text-align: left;
	font-size: 20px;
	padding: 10px 3%;
	width: 90%;
	display: block;
	font-weight: bold;
	cursor: pointer;
	background: url(../../images/layout/menu.png) no-repeat 100% 35px;
	background-size: 24px 19px;
}


@media screen and (min-width:768px) {
.mainMenu-mobile {
	display:none;
}


}
