/**
 *  Simple Image Gallery Pro
 *  CSS styles for custom template Fancybox-touch
 */
.fancybox-touch-container {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.fancybox-touch-container .photo-item {
	width: 33.33333333%
}
.fancybox-touch-container .photo-item .photo-item-inner {
	padding: 15px;
}
.fancybox-touch-container .photo-item a {
	position: relative;
	display: block;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	overflow: hidden;
}
.fancybox-touch-container .photo-item .image-cover:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.65);
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.fancybox-touch-container .photo-item a:hover .image-cover:before {
	opacity: 1;
}
.btn-plus {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	vertical-align: middle;
	width: 4vw;
	height: 4vw;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
	opacity: 0;
}
.photo-item:hover .btn-plus {
	opacity: 1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
.btn-plus:before {
	position: absolute;
	top: 50%;
	margin-top: -0.5px;
	left: 10px;
	right: 10px;
	content: "";
	display: block;
	height: 1px;
	background: rgba(255,255,255,0.5);
}
.btn-plus:after {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 50%;
	margin-left: -0.5px;
	content: "";
	display: block;
	width: 1px;
	background: rgba(255,255,255,0.5);
}