/**
* All of the CSS for your public-facing functionality should be
* included in this file.
*/
.viprogressbar-container {
	margin: 20px;
	display: inline-block;
    z-index: 1;
    position: relative;
}

.viprogressbar-wrap {

}

.viprogressbar-element {
	position: relative;
}

.viprogressbar-element .viprogressbar-image {
	position: relative;
	z-index: 100;
}

.viprogressbar-element .viprogressbar-image img {
	display: block;
	border-radius: 0px;
}

.viprogressbar-element .viprogressbar-bar.horizontal {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
    animation-name: virprogress-animate-horizontal;
    animation-duration: 4s;
}

.viprogressbar-element .viprogressbar-bar.vertical {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 99;
	height: 100%;
    animation-name: virprogress-animate-vertical;
    animation-duration: 4s;
}

@keyframes virprogress-animate-vertical {
    0%   {
    	height: 0%;
    }
    100% {
		height: 100%;
    }
}
@keyframes virprogress-animate-horizontal {
    0%   {
    	width: 0%;
    }
    100% {
		width: 100%;
    }
}