/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/


.oai-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.oai-sticky.js-ready {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.oai-sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
