@keyframes jeo-lazy-image {
	0% {
		background-position: -468px 0
	}
	100% {
		background-position: 468px 0
	}
}

.jeo-lazy-image {
	position: absolute;
	inset-inline-start: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;

	&__wrapper {
		position: relative;
		padding-top: 56.25%;
		height: 0;
		overflow: hidden;
	}

	&__placeholder {
		position: absolute;
		inset-inline-start: 0;
		top: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		animation-iteration-count: infinite;
		animation-name: jeo-lazy-image;
		animation-timing-function: linear;
		background: #f6f7f8;
		background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
		background-size: 800px 104px;
	}
}
