.gallery_img_container{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.carousel-item{
	background-color: lightgrey;
	width: 100%;
	height: 600px;
	max-height: 90vh;
}
.carousel-item img{
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: scale-down;
}
.carousel-control-prev,
.carousel-control-next{
	background-color: grey;
	opacity: 0.1;
	transition: 0.5s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover{
	background-color: grey;
	opacity: 0.3;
	transition: 0.5s;
}

/*************** Modal popup window ******************/

.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 10% auto; /* 15% from the top and centered */
	padding: 10px;
	border: 1px solid #888;
	width: 90%; /* Could be more or less, depending on screen size */
	height: 90%;
}
