.fb-icon
{
	height: 64px;
}
.fb-icon img
{
	height: 35px;
	transform: translateY(30%);
}
.fb-comments
{
	width: 550px;
	margin-left: auto;
	margin-right: auto;
	display: block !important;
}

.no-overflow
{
	overflow: hidden;
}

nav
{
	position: fixed;
	z-index: 10;
	top: 0px;
}
.menu-spacer
{
	margin: 0px;
	padding: 0px;
	height: 64px;
}

#mobile-menu img
{
	width: 100%;
    padding: 10px;
}

#mobile-menu .icon
{
	display: unset;
    padding: 0;
}
body
{
	background: #dddddd;
}

.fb-icon img.fbtext {
	line-height: initial;
    width: 200px;
    height: 200px !important;
    position: absolute;
    right: 0px;
	transform: translate(0px);
	animation: fbtext 1s ease-out, fbtextloop 2s ease-in-out reverse infinite;
	pointer-events: none;
}

@keyframes fbtext {
	0%{
		transform: translate(0px,25%);
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100%{
		transform: translate(0px,0%);
		opacity: 1;
	}
}

@keyframes fbtextloop {
	0%,100%{
		transform: translate(0px,10px);
	}
	50%{
		transform: translate(0px,0%);
	}
}

@media only screen and (max-width: 1400px) {
	.fbtext {
		display: none;
	}
}