/**
* Menu toggle base styling
*/
.menu-toggle{
  display: block;
  cursor: pointer;
  height:36px;
  margin-top: 15px;
  margin-left: 5px;
  margin-bottom: 20px;
  float: left;
}
.menu-toggle .lines {
  display: block;
  float: left;
  margin: 0;
  padding: 4px 3px;
  width: 36px;
  border-radius: 3px;
}
.menu-toggle .toggle-help {
  display: none;
}
.menu-toggle .line {
  display: block;
  height: 2px;
  width: 26px;
  margin: 5px auto 5px auto;
  background-color: #AAA;
  border-bottom: 1px solid #CCC;
}
/**
 * Ensures in mobile our menus stack
 */
.responsive-menu {
  clear: both;
}
.responsive-menu ul {padding: 20px 0 20px 40px; margin: 0; background: #fff;}
.responsive-menu ul li:hover {background-color: rgba(103, 36, 42, 0.9); color: #fff;}
.responsive-menu a:hover {color: #fff;}
.responsive-menu a{
    color: #363636;
    font-size: 24px;
    font-family: 'Open Sans';
    font-weight: 400;
}
.responsive-menu,
.responsive-menu.links.inline {
  max-height: 0;
  overflow:hidden;
  }
  .responsive-menu.menu-toggled,
  .responsive-menu.links.inline.menu-toggled {
    max-height: none;
    padding-top: 40px;
    background: #fff;
  }
.responsive-menu li,
.responsive-menu.inline li {
  position: relative;
  display: block !important;
  z-index: 100;
  width: 100%;
  background: #fff;
}

/**
 * Default media query for Omega and narrow
 */
@media all and (min-width: 767px) and (min-device-width: 767px), (max-device-width: 800px) and (min-width: 767px) and (orientation:landscape) {
  .menu-toggle {
    display: none;
  }
  .responsive-menu,
  .responsive-menu.links.inline {
    max-height: none;
    overflow: visible;
    display: none;
  }
  .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;
  }
}
