@charset "utf-8";
/* CSS Document */

.header-fixed.fixed {
	position: fixed !important;
	width: 100% !important;
	top: 0 !important;
	animation-name: scrollDown;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	animation-duration: 500ms;
}

.header-fixed.fixed {
	background: #000;	
    border: 5px solid #000;
	box-shadow: 9px 5px 9px 3px rgba(30, 30, 30, 0.30);
}

.header-fixed.hide.fixed {
	animation-name: scrollUp;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
	animation-duration: 300ms;
}

.header-fixed-logo {
	float: left;
	margin-top: 0;
}

.header-fixed-logo.d-none {
	display: none
}

@keyframes scrollDown {
	from {
		transform: translateY(-100%);
	}
	
	to {
		transform: translateY(0);
	}
}

@keyframes scrollUp {
	from {
		transform: translateY(0);
	}
	
	to {
		transform: translateY(-100%);
	}
}