/*----------------------------------------------------------------------------*\
    Headhesive Specific Styles
/*----------------------------------------------------------------------------*/

/**
 * Headhesive element clone
 * > `clone` class for the cloned element:
 *
 |  var options = {
 |      classes {
 |          clone: 'banner--clone';
 |      }
 |  }
 *
 */
.nav-primary--clone{

    /* Required styles */
    position: fixed;
    top: 0;
    left: 0;
	width: 100%;

    /* 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;
    
    /*style*/
    background: #fff;
    z-index: 99999999;
    box-shadow: 0 5px 4px -3px #989797;
    border-bottom: 1px solid #FFF;

}

/**
 * Headhesive stick
 * > `stick` class for the cloned element:
 *
 |  var options = {
 |      classes {
 |          stick: 'banner--stick';
 |      }
 |  }
 *
 */
.nav-primary--stick{
	z-index: 2000;
	width: 100%;
    /* Translate back to 0%; */
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    
    /*style*/
    background: #fff;
    z-index: 99999999;
    box-shadow: 0 5px 4px -3px #989797;
    border-bottom: 1px solid #FFF;
}


/**
 * Headhesive unstick
 * > `unstick` class for the cloned element:
 *
 |  var options = {
 |      classes {
 |          unstick: 'banner--unstick';
 |      }
 |  }
 *
 */
.nav-primary--unstick{
    /* Not required to use, but could be useful to have */
}
