/*! epg stickheader.css v1.0 */

/* ==========================================================================

   Sticky Header CSS Stylesheet. for epg template!

   ========================================================================== */
/* Style the header */
.epgstickyheader {
  padding: 10px 10px;
  background: #101A32;
  color: #f1f1f1;
}

.epgstickyheader-thin {
  padding: 2px 10px;
  background: #101A32;
  color: #f1f1f1;
}

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed; z-index:100;
  top: 0;
  width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 102px;
}