.image {
	width: 100%;
	height: 300px;
	max-height: 300px;
	overflow: hidden;
	object-fit: contain;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 10px;
}

.card-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.7;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 10px;
	transition: opacity 0.3s ease-in-out;
	border-radius: 10px;

	margin-left: 15px;
	margin-right: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.card-overlay:hover {
	opacity: 0;
}

.overlay-view {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 9999;
}

.overlay-view-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
}