/**
* Menu toggle base styling
*/
.menu-toggle{
  display: block;
  cursor: pointer;
  height:36px;
  color: white;
}
.menu-toggle .lines {
  display: block;
  float: left;
  margin: 0;
  padding: 4px 3px;
  width: 36px;
  border-radius: 3px;
  color: white;
}
.menu-toggle .toggle-help {
  float: left;
  height:36px;
  line-height: 36px;
  font-size: 18px;
  padding: 0 7px 0 7px;
  vertical-align: middle;
}
.menu-toggle .caret {
    margin-top: 10px;
}
.menu-toggle .line {
  display: block;
  height: 2px;
  width: 22px;
  margin: 5px auto 5px auto;
  background-color: white;
}
.menu-toggle:hover .line {
  background-color: #EA9A23 !important;
  border-bottom: #EA9A23 !important;
}
/**
 * Ensures in mobile our menus stack
 */
.responsive-menu {
  clear: both;
}
.responsive-menu,
.responsive-menu.links.inline {
  max-height: 0;
  overflow:hidden;
  }
  .responsive-menu.menu-toggled,
  .responsive-menu.links.inline.menu-toggled {
    max-height: none;
	margin-top: 4px;
	margin-left: 0;
    padding: 5px 0 5px 0;
	border: 2px solid #333;
    background: #f3f3f3;
    border-top: 0;
    list-style: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
.responsive-menu li,
.responsive-menu.inline li {
  position: relative;
  display: block;
  padding: 10px 20px 10px 20px;
  width: 100%;
  line-height: normal;
  border-bottom: 1px solid #ccc;
}
.responsive-menu li li,
.responsive-menu.inline li li {
  padding: 0px 20px 0px 10px !important;
  margin-top: 10px;
  margin-bottom: -20px;
}

.responsive-menu a {
  text-decoration: none !important;
  color: black  !important;
}
.responsive-menu a:hover
{
  color: #EA9A23 !important;
}
.responsive-menu li:last-child {
  border-bottom: 0 !important; 
}
/**
 * Default media query for Omega and narrow
 */
@media all and (min-width: 991px) and (min-device-width: 100px), (max-device-width: 991px) and (min-width: 740px) and (orientation:landscape) {
  .menu-toggle {
    display: none;
  }
  .responsive-menu,
  .responsive-menu.links.inline {
    max-height: none;
    overflow: visible;
  }
  .responsive-menu li {
    display: inherit;
  }
  .responsive-menu.inline li {
    display: inline-block;
  }
  .responsive-menu .sub-menu {
    position: absolute;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
  }
  /* Display does not animate, max-height does. Max-weight will not animate from 0 - none, so default 900px added.
      if your sub menu goes past 900px, well..uhh.. */
  .responsive-menu .sub-menu.active {
    /* max-height: none; */
    /* overflow: visible; */
  }
  /* Chances are your submenu should stack...if not override this. */
  .responsive-menu .sub-menu li {
    display: block;
  }
}
