.plugify-footer-ticker {
	position: fixed;
	width: 100%;
	padding: 10px;
	overflow: hidden;
	white-space: nowrap;
}

.plugify-footer-ticker span {
	display: inline-block;
	padding-left: 100%;
	animation: plugify-marquee 30s linear infinite;
}

@keyframes plugify-marquee {
	0%   { transform: translateX(0%); }
	100% { transform: translateX(-100%); }
}


.plugify-header-ticker {
	position: fixed;
	width: 100%;
	padding: 10px;
	overflow: hidden;
	white-space: nowrap;
	z-index: 9999;
}

.plugify-header-ticker span {
	display: inline-block;
	padding-left: 100%;
	animation: plugify-marquee 30s linear infinite;
}

@keyframes plugify-marquee {
	0%   { transform: translateX(0%); }
	100% { transform: translateX(-100%); }
}