/**
 * bgzy.js vX.X.X
 *
 * Copyright(c) Nino Camdzic 2016
 * Released under MIT license.
 */
.bgzy {
	overflow: hidden;
}

.bgzy .bg {
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-attachment: fixed;
}

.bgzy .ticker {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: rgba(255,255,255,0.5);
}

.bgzy .ticker.transition {
	transition-property: width;
}

.bgzy .ticker.transition.trigger {
	width: 0;
}
