/**
 * Author: Tim Vervoort - info@timvervoort.com
 * Licence: Free for commercial use
 * Last update: 8th November 2017 - v1.0
 */
.fs-gal-view {
	display: none;
	height: 100vh;
	width: 100vw;
	margin: 0;
	padding: 0;
	position: fixed;
	left: 0;
	top: 0;
	text-align: center;
	background-size: contain;
	background-position: center center;
	background-color: rgba(0, 0, 0, 0.8);
	background-repeat: no-repeat;
	overflow: hidden;
}
.fs-gal-prev, .fs-gal-next, .fs-gal-close {
	position: absolute;
	top: calc(50vh - 20px);
	height: 40px;
	width: 40px;
}
.fs-gal-prev {
	left: 0;
}
.fs-gal-next {
	right: 0;
}
.fs-gal-close {
	top: 4px;
	right: 4px;
	height: 30px;
	width: 30px;
}
.fs-gal:hover, .fs-gal-nav:hover, .fs-gal-close:hover {
	cursor: pointer;
}