/* this is a comment. add CSS definitions below. */
@media(max-width:767px) {
  /* mobile width css */
  .sticky {
    display:none;
  }
  #startBodyMarker {
    padding-top:0 !important;
  }
}
@media(min-width:768px) {
  /* desktop width css */
  .sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
  }
}
