#innityAppsVideoCanvas-video1 {
    width: 100%;
}

/** Youtube container Video tag style. */
#video1 {
		width:100%;
		height:100%;
    position: absolute;
    left: 0;
    top: 0;
}

/** Play button container */
#innityAppsPlayContainer-video1 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
/** Play button image */
#innityAppsPlayBtn-video1 {
		background-repeat:no-repeat;
		background-size: auto 100%;
    width: 45px;
		height: 45px;
    position: absolute;
    left: 38.7%;
    top: 29.4%;

		-webkit-animation: spriteicon 0.8s infinite steps(1,end);
		-moz-animation: spriteicon 0.8s infinite steps(1,end);
		animation: spriteicon 0.8s infinite steps(1,end);
}
@-webkit-keyframes spriteicon {
	0%,100% {background-position:0;}
	20%,80% {background-position:100%;}
}
@-moz-keyframes spriteicon {
	0%,100% {background-position:0;}
	20%,80% {background-position:100%;}
}
@keyframes spriteicon {
	0%,100% {background-position:0;}
	20%,80% {background-position:100%;}
}

/** Loading icon container */
#innityAppsLoadContainer-video1 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
/** Loading icon image */
#innityAppsLoadIcon-video1 {
    width: 32.6%;
    position: absolute;
    left: 35.4%;
    top: 29.4%;

    animation: innityAppsLoading 0.5s alternate ease infinite;
    -webkit-animation: innityAppsLoading 0.5s alternate ease infinite;
    -moz-animation: innityAppsLoading 0.5s alternate ease infinite;
}
@keyframes innityAppsLoading {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
@-webkit-keyframes innityAppsLoading {
    from { -webkit-transform: scale(1); }
    to { -webkit-transform: scale(1.1); }
}
@-moz-keyframes innityAppsLoading {
    from { -moz-transform: scale(1); }
    to { -moz-transform: scale(1.1); }
}