/* NOTE: Underscores' mobile menu triggers below 600px! */
/* Variables */
.masthead-container {
  /*
  The mastead will probably be full width, so remove the unnecessary padding from the container
  */
}

@media screen and (max-width: 959px) {
  .masthead-container {
    padding: 0;
    margin: 0;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 900000;
  }
  
  .masthead-container #masthead {
    font-size: 13px;
    line-height: 16px;
    padding: 0;
    margin: 0;
    /* We don't usually use the site description */
    /* Menu usually aligned to right of the screen */
    /* Reset the menu toggle button's look */
  }
  
  .masthead-container #masthead {
    background-color: #fff;
  }
  
  .masthead-container #masthead .site-branding {
    float: left;
    /* The logo. Most likely an image will used be here */
  }
  
  .masthead-container #masthead .site-branding h1, .masthead-container #masthead .site-branding p {
    margin: 0;
    font-size: 24px;
    line-height: 24px;
    padding: 5px;
  }
  
  .masthead-container #masthead .site-branding h1 a, .masthead-container #masthead .site-branding p a {
    color: #AAA;
    text-decoration: none;
  }
  
  .masthead-container #masthead .site-description {
    display: none;
  }
  
  .masthead-container #masthead .main-navigation {
    clear: none;
    float: right;
    width: auto;
  }
  
  .masthead-container #masthead .menu-toggle {
    float: right;
    border: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    text-shadow: none;
    padding: 0;
    margin: 5px;
    color: #AAA;
    font-size: 24px;
    line-height: 24px;
    outline: none;
    transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    -webkit-transition: color .25s ease-in-out;
    position: relative;
    z-index: 9000000000;
  }

  .masthead-container #masthead .menu-toggle:after {
    padding-top: 7px;
  }

  .masthead-container #masthead .menu-toggle:hover {
    cursor: pointer;
  }

  .masthead-container #masthead .menu-toggle.active:after {
    background: #fd6925;
    content: '\f00d';
  }
  
  .masthead-container #masthead .menu-toggle.active {
    color: #FFF;
  }
  
  .masthead-container #masthead #site-navigation {
    /*
    Hiding the scrollbar on Chrome
    TODO: Firefox, IE & Co.
    */
  }
  
  .masthead-container #masthead #site-navigation ul#primary-menu {
    /*
    Primary menu look on mobile
    The top position is automatically calculated in the bs-masthead.js file (depending on the .masthead-container's outerHeight)
    Background color is most likely the same as the masthead's background
    Put bottom:0 if you want to fill the whole screen with the menu
    */
  }
  
  .masthead-container #masthead #site-navigation ul#primary-menu {
    position: fixed;
    left: 0;
    background-color: #19486a;
    width: 100%;
    top: 0;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
    height: 100%;
    padding-top: 50px;
  }

  .masthead-container #masthead #site-navigation ul#primary-menu li.menu-item-has-children > a:after {
    position: relative;
    content: '\f0d7';
    top: 0;
    left: 10px;
    color: #fff;
    font-family: FontAwesome;
  }
  
  .masthead-container #masthead #site-navigation ul#primary-menu li {
    clear: both;
    width: 100%;
  }
  
  .masthead-container #masthead #site-navigation ul#primary-menu li a {
    color: #FFF;
    padding: 10px;
  }
  
  .masthead-container #masthead #site-navigation ul::-webkit-scrollbar {
    display: none;
  }
  
  .masthead-container #masthead ul.sub-menu {
    position: relative;
    left: 20px;
    display: none;
    top: 0;
  }
  
  .masthead-container #masthead #site-navigation ul li:hover > ul.sub-menu {
    display: block;
  }
  
  .masthead-container #masthead #site-navigation ul#primary-menu li ul.sub-menu li a {
    background: #19486a;
  }
}
/*# sourceMappingURL=underscores-off-canvas-top-menu-public.css.map */
