@charset "utf-8";
/* CSS Document */
/*
Responsive Mobile Toggle Menu v1.0
Description: Mobile first responsive toggle menu
Author: Danielle Vautier
*/

/*Page CSS*/

.content {
float: left;
margin: 1% 3%;
}
small {
font-size: 80%;
}
/*Menu mobile first CSS*/
body {
-webkit-animation: bugfix infinite 1s;
}
.mainMenu {
display: block;
position: relative;
width: 100%;
margin: 0;
padding: 0;
float: left;
/*border-bottom: 1px solid #ccc;
box-shadow: 0px 0px 3px 5px #ececec;*/
}
#toggleMenu, .toggleMenu {
display: none;
}
.toggleMenu {
display: block;
position: relative;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
#toggleMenu:checked ~ .menu {
opacity: 1;
}
.menu {
width: 100%;
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 li {
margin: 0;
padding: 0;
display: block;
width: 100%;
}
.menu li:hover {
background-color: #d1e8fa;
cursor: pointer;
}
.menu a, .menu a:visited {
color: #333;
text-decoration: none;
display: block;
width: 94%;
padding: 5px 3%;
}
.menu li:first-child {
border-left: 0;
}
.menu a:hover {
color: #666;
}
label.menuTitle {
text-align: left;
padding: 15px 6%;
margin: 0;
width: 100%;
display: block;
font-size:14px;
color:#303030;
cursor: pointer;
background: url(../images/menu.svg) no-repeat 97% 10px;
background: url(../images/menu.png) no-repeat 97% 10px;
background-size: 24px 19px;
}
 @media screen and (min-width:600px) {
label.menuTitle {
display: none;
}
.menu {
display: block!important;
border: 0;
overflow: visible;
/*max-height: inherit;*/
padding: 10px 0;
}
.menu li {
width: auto;
/*display: inline;*/
border: 0;
}
.menu li:hover {
background: none;
}
.menu li:first-child {
border-left: 0;
}
.menu a, .menu a:visited {
display: inline;
width: auto;
padding: 0 3px 0 8px;
}
}


