/* Lightbox styling */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	justify-content: center;
	align-items: center;
	z-index: 1000;
	transition: opacity 0.5 ease;
}
.lightbox img {
	/* width: fit-content; */
	/* max-width: 80%; */
	max-height: 45vw;
	border-radius: 10px;
	box-shadow: 0 0 43px 10px black;
}
.lightbox .prev,
.lightbox .adv {
	height: 50px;
	width: 50px;
	position: absolute;
	transform: translateY(-50%);
	font-size: 2.5rem;
	background-color: transparent;
	color: #ffffff;
	padding: 10px;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	z-index: 1001;
}
.lightbox .prev {
	left: 20px;
}
.lightbox .adv {
	right: 20px;
}
.lightbox .close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	color: #ffffff;
	background: none;
	cursor: pointer;
	border: none;
	z-index: 1001;
}
#lightbox-image {
	/* display: flex; */
	max-width: 60%;
	/* max-height: 40%; */
	/* width: fit-content;
	height: max-content; */
	/* background: blue; */
	/* align-items: center; */
}
.description {
	display: flex;
	width: 100%;
	justify-content: space-between;
}