#box {
	width: 100px;
    height: 200px;
    position: fixed;
    left: 0;
    top: 100px;
    text-align: center;
    font-size: 0;
    pointer-events: none;
    z-index: 99999;
}

@media only screen and (min-width: 1000px){
	#box {
		width: 170px;
	}
}

#box span,
#box img {
	width: 50%;
}

#box span:not(:nth-of-type(1)) {
	/*margin-top: -15px;*/
}

#box span {
	width: 100%;
	display: inline-block;
}

#box img {
	transform-origin: top center;
}

#box span:nth-of-type(1) img {
	-webkit-animation: 4s move3 infinite;
	animation: 4s move3 infinite;
}

#box span:nth-of-type(2) img {
	-webkit-animation: 4s move4 infinite;
	animation: 4s move4 infinite;
}

#box span:nth-of-type(3) img {
	-webkit-animation: 4s move3 infinite;
	animation: 4s move3 infinite;
}

#box span:nth-of-type(4) img {
	-webkit-animation: 4s move4 infinite;
	animation: 4s move4 infinite;
}

@-webkit-keyframes moveBox {
	0% {
		transform: rotate(5deg);
	}
	50% {
		transform: rotate(-5deg);
	}
	100% {
		transform: rotate(5deg);
	}
}

@keyframes move1 {
	0% {
		transform: rotate(-30deg);
	}
	50% {
		transform: rotate(30deg);
	}
	100% {
		transform: rotate(-30deg);
	}
}

@keyframes move2 {
	0% {
		transform: rotate(-40deg);
	}
	50% {
		transform: rotate(40deg);
	}
	100% {
		transform: rotate(-40deg);
	}
}

@-webkit-keyframes move3 {
	0% {
		transform: rotate(-30deg);
	}
	50% {
		transform: rotate(30deg);
	}
	100% {
		transform: rotate(-30deg);
	}
}

@-webkit-keyframes move4 {
	0% {
		transform: rotate(-40deg);
	}
	50% {
		transform: rotate(40deg);
	}
	100% {
		transform: rotate(-40deg);
	}
}