@keyframes spin {
	from { transform: rotateY(-90deg); }
	to { transform: rotateY(90deg); }
}

.styleSpinBox {
	animation: 6s linear 0s spin infinite;
}
