﻿
/* ---------------- For sticky header: class="float-panel"  ------------------*/
.float-panel {
    width:100%;
	z-index:999 !important;
	transform: translateZ(0);
    transition:all 0.5s; /* Effect for switching from .fixed to static */
	background:#fff;
}


/* when class="float-panel fixed" */
.fixed {box-shadow:0 2px 6px rgba(0,0,0,0.2);animation:slide-down 0.7s;}
.fixed .fa-gg {transform: rotate(360deg); }
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}

