/*
Responsive Mobile Toggle Menu v1.0
Description: Mobile first responsive toggle menu
Author: Danielle Vautier
*/

/*Page CSS*/

.mainMenu {
overflow:hidden;
display: block;
position: relative;
width: 100%;
margin: 0;
padding: 0;
text-align: center;
line-height: 1.4;
float: left;

}
#toggleMenu, .toggleMenu,
#toggleMenu2, .toggleMenu2
{
display: none;
}
.toggleMenu,
.toggleMenu2
{
display: block;
position: relative;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
#toggleMenu:checked ~ .menu,
#toggleMenu2:checked ~ .menu2 {
max-height: 600px;
opacity: 1;
		overflow:auto;
}
.menu,
.menu2
{
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;
}
.menu2
{
text-align: left;
}
.menu li,
.menu2 li
{
margin: 0;
padding: 0;
white-space: nowrap;
/*display: block;*/
width: 100%;
}
.menu2 li
{
white-space: normal;
}
.menu li:hover,
.menu2 li:hover
{
cursor: pointer;
}
.menu a, .menu a:visited,
.menu2 a, .menu a:visited
{
text-decoration: none;
/*display: block;*/
}
.menu li:first-child,
.menu2 li:first-child
{
border-left: 0;
}
.menu a:hover,
.menu2 a:hover
{
color:#fff;
}
label.menuTitle,
label.menuTitle2
{
    text-align: left;
    font-size: 13px;
    padding: 36px 20px;
    color: #3d3e3f;
    display: block;
    font-weight: bold;
    cursor: pointer;
    float: right;
    -webkit-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
	position:relative;
}
label.menuTitle2
{
    padding: 11.5px 20px;
    position: absolute;
    top: 0px;
    right: 0;
}
.bar1, .bar2, .bar3
{
    width: 35px;
    height: 3px;
    background-color: #000;
    margin: 6px 0;
    transition: 0.4s;
}
label.menuTitle2 .bar1,
label.menuTitle2 .bar2,
label.menuTitle2 .bar3
{
    background-color: #fff;
}
.change .bar1
{
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: 8px;
}
.change .bar2
{
	opacity: 0;
}
.change .bar3
{
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    top: -8px;
}
 @media screen and (min-width:960px)
 {
label.menuTitle,
label.menuTitle2
{
display: none;
}
.menu,
.menu2
{
display: block!important;
border: 0;
overflow: visible;
max-height: inherit;
padding: 10px 0;
}
.menu li {
width: auto;
/*display: inline;*/
border: 0;
}
.menu li:hover {
}
.menu li:first-child {
border-left: 0;
}
.menu a, .menu a:visited {
display: inline;
width: auto;
padding: 0;
}
}
@media screen and (max-width:768px)
{
    label.menuTitle
    {
        padding: 25px 20px;
    }
}
@media screen and (max-width:480px)
{
    label.menuTitle
    {
        padding: 23px 20px;

    }
}