.nav-button {
  display: none;
} /* hide the navigation button by default */
@media only screen and (min-width: 0px) and (max-width: 779px) {
  /* Navigation Button
	-------------------------------------------------------- */
  .nav-button {
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 8px;
    margin-bottom: 8px;
    width: 50px;
    height: 34px;
    background: url('../images/menu-icon-large.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 21px, 100%;
    background-color: #a5780c;
    cursor: pointer;
    border: 0 none;
    border-radius: 5px;
    z-index: 5999;
    text-indent: -9999px;
  }
  .nav-button:hover {
    background-color: #656464;
  }
  .nav-button.open {
    background: url('../images/close-icon-large.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 21px, 100%;
    background-color: #a5780c;
  }
  /* Navigation Bar
	-------------------------------------------------------- */
  #header-menu {
    margin: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    float: left;
    position: absolute;
    display: block;
    width: 100%;
    height: 38px;
    left: 0px;
    top: 10px;
    z-index: 898;
  }
  .primary-nav {
    float: none;
    display: block;
    margin: 0;
    overflow: hidden;
    width: 100%;
    z-index: 998;
    clear: both;
    position: absolute;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    left: 0;
    background-color: #ffffff;
  }
  .primary-nav ul {
    width: 100%;
  }
  .primary-nav li {
    display: none;
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 12px;
  }
  .primary-nav li a {
    display: block;
    width: 100%;
    font-weight: 500;
    color: #656464;
    text-decoration: none;
    padding-left: 0px !important;
    padding-right: 0px !important;
    line-height: 24px;
    height: 24px;
    margin: 0px;
  }
  .primary-nav li a:hover {
    color: #a5780c;
  }
  #select a {
    color: #a5780c !important;
  }
  /* Toggle the navigation bar open  */
  .primary-nav.open {
    padding-top: 15px;
    padding-bottom: 15px;
    height: auto;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 1px 9px 9px -1px rgba(102,96,96,0.75);
  }
  .primary-nav.open li {
    display: block;
  }
} /* End Mobile Styles */