.shimmer {
	animation-duration: 2.2s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-name: shimmer;
	animation-timing-function: linear;
	background: #ddd;
	background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
	background-size: 1200px 100%;
}

@-webkit-keyframes shimmer {
	0% {
		background-position: -100% 0;
	}

	100% {
		background-position: 100% 0;
	}
}

@keyframes shimmer {
	0% {
		background-position: -1200px 0;
	}

	100% {
		background-position: 1200px 0;
	}
}

.ez-advanced-form-control-empty-shimmer {
	width: 100%;
	height: 53px;
}

.ez-product-main-image-empty-shimmer {
	width: 100%;
	height: 250px;
}

.ez-other-image-empty-shimmer {
	width: 100px;
	height: 100px;
}

.ez-checked-empty-shimmer {
	width: 100px;
	height: 30px;
}

.ez-label-shimmer-mini {
	width: 25%;
	height: 20px;
}

.ez-label-shimmer-medium {
	width: 50%;
	height: 20px;
}