.image-card {
	object-fit: contain;
	width: 100%;
}

/* .image-box {
	max-height: 100%;
	max-height: 450px;

	max-width: 100%;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	position: relative;
	z-index: 5;
} */

.image-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-prop {
	max-width: 100%;
	object-fit: cover;
}

.bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.zoom {
	background-position: 50% 50%;
	position: relative;
	overflow: hidden;
	cursor: zoom-in;
}

.zoom img:hover {
	opacity: 0;
}

.zoom img {
	transition: opacity 0.5s;
	display: block;
}

.lazy-loader-container {
	position: relative;
}

.lazy-loader-overlay {
	/* position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 8; */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.5));
	background-size: 400% 400%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 8;
	animation: gradientAnimation 3s ease infinite;
}

.lazy-loader {
	/* width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 4px solid rgba(255, 81, 30, 0.8);
	border-top: 4px solid transparent;
	animation: lazy 1.5s linear infinite; */
}

@keyframes gradientAnimation {
	0% {
		background-position: 0% 50%;
	}

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

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

/* @keyframes lazy {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
} */