.gallery_main{
	position: fixed;
	text-align: center;
	width: 100%;
	height: 100%;
	left: 0; top: 0;
	background:rgba(0,0,0,0.8);
	z-index: 2000;
}
.gallery_close{
	position: fixed;
	top: 20px;
	right: 30px;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	z-index: 2001;
}
.gallery_image{
	display: none;
	left: 50%;
	position: absolute;
	top: 50%;
	height: auto;
	width: auto;
	max-height: 100%;
	max-width: 100%;
}
.gallery_descriptionBox{
	box-sizing: border-box;
	background-color: #288C36;
	padding: 10px;
	margin: 0 auto;
	margin-top: 10px;
	text-align: left;
	width: 300px;
	color: #FFF;
}
.gallery_buttonMain{
    position: fixed;
	text-align: center;
    padding: 15px;
    border-radius: 5px;
	z-index: 2001;
	font-size: 40px;
	top: 45%;
	color: #FFF;
	cursor: pointer;
	 -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
	.gallery_buttonMain.gallery_buttonNext{
		right: 20px;
	}
		.gallery_buttonNext .fa{
			position: relative;
			top: -2px;
		}
	.gallery_buttonMain.gallery_buttonPrev{
		left: 20px;
	}
		.gallery_buttonPrev .fa{
			position: relative;
			top: -2px;
		}
/*
	Media Queries for Mobile Devices
*/
@media screen and (max-device-width: 560px) {
	.gallery_buttonMain{
		padding: 25px!important;
		font-size: 55px!important;
	}
}
