/*----------------------------------------------------------------------------*\
  headhesive specific styles
/*----------------------------------------------------------------------------*/

/**
 * headhesive element clone
 * > `clone` class for the cloned element:
 *
 * @example
 * var options = {
 *   classes {
 *     clone: 'banner--clone';
 *   }
 * }
 */
.banner--clone {

  /* required styles */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;

  /* translate -100% to move off screen */
  -webkit-transform: translatey(-100%);
      -ms-transform: translatey(-100%);
          transform: translatey(-100%);

  /* animations */
  -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;

}


/**
 * headhesive stick
 * > `stick` class for the cloned element:
 *
 * @example
 * var options = {
 *   classes {
 *     stick: 'banner--stick';
 *   }
 * }
 */
.banner--stick {

  /* translate back to 0%; */
  -webkit-transform: translatey(0%);
      -ms-transform: translatey(0%);
          transform: translatey(0%);
}


/**
 * headhesive unstick
 * > `unstick` class for the cloned element:
 *
 * @example
 * var options = {
 *   classes {
 *     unstick: 'banner--unstick';
 *   }
 * }
 */
.banner--unstick {
  /* not required to use, but could be useful to have */
}
