/**
 * Vanilla Styles
 *
 * This second stylesheet is for hotfixes/vanilla CSS.
 * Do not edit the main style.css directly, rather
 * add your changes here if you are not compiling the Sass files.
 */

#mobile-nav ul.sub-menu, body #mobile-nav li.menu-item-126812 ul.sub-menu {
	max-height: 0;
  /*display: none;*/
  margin-left: 0;
  padding-left: 0;
  text-transform: lowercase;
  margin-top: 0px;
  -webkit-transition: max-height 1s,; /* Safari */
  transition: max-height 1s;
  overflow: hidden;
}

#mobile-nav .nav-inline .nav-item {
  margin:0 auto;
  padding-bottom:5px;
  padding-top:5px;
}

#mobile-nav .active.menu-item-has-children .sub-menu{
	max-height: 300px;
	/*display: block;*/
}

@media (min-width: 767px){
	#mobile-nav{
		display: none;
	}
}