.jet-sticky-column-sticky {
  -webkit-align-self:flex-start;
  -ms-flex-item-align:start;
  align-self:flex-start;
}

.jet-sticky-section-sticky--stuck {
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:1100;
  margin-left:auto;
  margin-right:auto;
  -webkit-animation: stickySlideDown .65s cubic-bezier(.23,1,.32,1) both;
  animation: stickySlideDown .65s cubic-bezier(.23,1,.32,1) both;
}

.jws-sticky-yes {
  transition:0s !important;
}

@-webkit-keyframes stickySlideDown {
  from {
  transform:translateY(-100%);
}
to {
  transform:translateY(0);
}
}

@keyframes stickySlideDown {
  from {
    transform:translateY(-100%);
  }
  to {
    transform:translateY(0);
  }
}

.hide {
    display: none !important;
}