/*FONTS*/
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i,700,700i');

@font-face {
    font-family: 'Lilita One';
    src: url('../font/LilitaOne.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.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;
	font-family: "Lilita One", sans-serif;
}

.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;
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	max-height: 0px;
	overflow-y: hidden;
	text-align: center;
	text-transform:uppercase;
	-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-size:16px;
	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: #28b2e6;
}
label.menuTitle {
	text-align: left;
	font-size: 20px;
	padding: 6px 3%;
	margin-top:25px;
	margin-bottom: 15px;
	width: 90%;
	display: block;
	font-weight: bold;
	cursor: pointer;
	background: url(../../images/layout/menu.png) no-repeat 100% 20px;
	background-size: 24px 19px;
}

.lang-mobile-div {
	width:100%; 
	padding-top:10px;
}

.lang-mobile:link, .lang-mobile:visited {
	padding-right:15px;
	text-decoration:none;
}

.lang-mobile:hover {
	text-decoration:none;
}

@media screen and (min-width:768px) {

.mainMenu-mobile {
	display:none;
}

}
