.alb-modal{
	display: none;
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: auto;
	background-color: transparent;
	transition: 0.5s all;
}
.alb-modal.open{
	display: block;
	background-color: rgba(0, 0, 0, 0.9);
}
.alb-modal-content{
	background-color: transparent;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.alb-modal-img{
	text-align: center;
}
.alb-nav{
	position: absolute;
	text-align: right;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}
.alb-nav-close{
	color: white;
	background: transparent;
	/*margin-top: 5px;*/
	margin-right: 5px;
	border: none;
	font-size: 2rem;
	position: absolute;
	top: 0px;
	right: 15px;
}

.alb-left-arrow{
	position: absolute;
	color: white;
	background-color: rgba(0, 0, 0, 0.2);
	top: 50%;
	transform: translate(0%, -50%);
	left: 2px;
	padding: 10px; 
	border: none;
}

.alb-right-arrow{
	position: absolute;
	color: white;
	background-color: rgba(0, 0, 0, 0.2);
	top: 50%;
	transform: translate(0%, -50%);
	right: 2px;
	padding: 10px; 
	border: none;
}

.alb-modal-img img:hover{
	opacity: none !important;
}