#shopify-section-header {
  position: relative;
  z-index: 999; }

.site-header.headroom, #mobile-sticky-wrapper.headroom {
  will-change: transform;
  transition: 200ms;
  z-index: 999999;
  width: 100%;
  top: 0 !important; }
.site-header.headroom--not-top, #mobile-sticky-wrapper.headroom--not-top {
  position: fixed;
  animation: slide-in 300ms; }

@keyframes slide-in {
  from {
    transform: translateY(-100%); }

  to {
    transform: translateY(0%); } }

#mobile-sticky-wrapper.headroom--not-top {
  max-height: 100vh;
  overflow-y: scroll;
  background: #fff; }
