/******        Float-Header        ******/
 .float-panel {
    width:100vw;
    background:transparent;
    z-index:300;
    padding:20px 0;
    transform: translateZ(0);
    transition:all 0.9s;
}
.float-panel .content-area {
    width:100vw;
    /*margin:10px auto;*/
}
.float-panel a {
    font-size:1.2rem;
    text-decoration:none;
    color:#fff;
    display:inline-block;
	margin: 0 auto;
}
/*                  
.float-panel .fa-gg {                  
    color:#F0595C;
    font-size:30px;
    vertical-align:middle;                  
    transition:all 1s;                  
}
*/
/* Float Panel: class="float-panel fixed" */

.fixed {
    box-shadow:0 2px 6px rgba(0,0,0,0.9);  
    padding: 0;
    animation:slide-down 0.7s;
	background: rgba(255, 255, 255, 0.9)!important;
} 

.fixed a{	color: #007be5;}
/*                 
.fixed .fa-gg {                  
    transform: rotate(360deg);      
}
*/
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}

@media (max-width:900px) {
	

.float-panel {display: none;}
}