@media only screen and (max-width: 995px) {

  body {
    /* fixed header (60px) + affiliate notice */
    padding-top: 86px;
  }

  header#top-header {
    position: fixed;
    width: 100%;
    z-index: 999999999;
    top: 0;
  }

  nav#primary-nav-desktop {
    display: none;
  }

  nav#navigation-mobile {
    display: block;
  }

  .container {
    padding: 0 20px;
  }

  #hamburger-circle {
    position: fixed;
    background: #fff;
    z-index: 99999999;
    width: 60px;
    height: 60px;
    right: 10px;
    border-radius: 50%;
  }

  #navigation-mobile-slide {
    position: fixed;
    background: #fff;
    top: 0;
    right: -100%;
    width: 90%;
    bottom: 0;
    z-index: 999999;
    transition: right 200ms ease-out;
    padding: 0px;
    font-size: 12px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-bottom: 60px;
  }

  nav#navigation-mobile.open #navigation-mobile-slide {
    right: 0px;
  }

  #navigation-mobile-slide h4 {
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 60px;
    font-size: 14px;
  }

  #navigation-mobile-slide #close-mobile-slide-btn {
    position: absolute;
    line-height: 60px;
    right: 20px;
    font-size: 20px;
    color: #989898;
  }

  #navigation-mobile-slide ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #navigation-mobile-slide > ul > li {
    margin: 0;
    padding: 0;
  }

  #navigation-mobile-slide > ul > li > a {
    display: block;
    text-decoration: none;
    color: #323232;
    line-height: 40px;
    border-top: 1px #eaeaea solid;
    padding: 0 30px;
    font-weight: bold;
    background: #fafafa;
  }

  #navigation-mobile-slide > ul > li > a:hover {
    background: #f6f6f6;
  }

  #navigation-mobile-slide > ul > li > a > .fa.fa-caret-down {
    float: right;
    margin-top: 15px;
  }

  #navigation-mobile-slide > ul > li > ul > li > a {
    display: block;
    list-style: none;
    line-height: 40px;
    padding: 0 30px;
    margin: 0;
    border-top: 1px #eaeaea solid;
    color: #323232;
    text-decoration: none;
  }

  #navigation-mobile-slide > ul > li > ul > li > a:hover {
    background: #f1f1f1;
  }

  #navigation-mobile-slide > ul .menu-alert {
    background: #706fd3;
    font-size: 9px;
    padding: 2px 5px;
    margin-left: 10px;
    border-radius: 4px;
    color: #ffffff;
    transform: rotate(5deg);
  }

  #navigation-mobile-background {
    position: fixed;
    background: #00000022;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    opacity: 0;
    display: none;
    transition: opacity 100ms ease-out;
  }

  nav#navigation-mobile.open #navigation-mobile-background {
    opacity: 1;
    display: block;
  }
  
  #hamburger {
    position: fixed;
    top: 22px;
    width: 20px;
    right: 30px;
    height: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 99999999;
  }

  #hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #888;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  #hamburger span:nth-child(1) {
    top: 0px;
  }
  
  #hamburger span:nth-child(2), #hamburger span:nth-child(3) {
    top: 7px;
  }
  
  #hamburger span:nth-child(4) {
    top: 14px;
  }

  nav#navigation-mobile.open #hamburger span:nth-child(1) {
    top: 7px;
    width: 0%;
    left: 50%;
  }
  
  nav#navigation-mobile.open #hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  nav#navigation-mobile.open #hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  nav#navigation-mobile.open #hamburger span:nth-child(4) {
    top: 7px;
    width: 0%;
    left: 50%;
  }
  
}