/**
 * Charity Navigator header related styling
 * Handles sticky header, hide on scroll, cart icon and mobile header
 **/

/* Sticky Header */
#top-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 94040; /* make sure it's on top of share this  */
  background-color: #fff;
  transition: top 0.7s ease, opacity 0.7s ease;
}

/* iniitally hidden; cn-header.js controls display */
#top-header-cart-scroll {
  display: none;
}

#top-header-small {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 94040; /* make sure it's on top of share this  */
  background-color: #fff;
  transition: top 0.7s ease, opacity 0.7s ease;
}

/* switch to small header at smaller sizes */
@media (max-width: 930px) {
  #top-header {
    display: none;
  }

  #top-header-small {
    display: block;
  }
}
