/* FULL GALLERY PLUGIN */
	.fg-box{
		width: 100%;
		position: relative;
		margin: 10px auto;
	}

	.fg-image{
		display: block;
		width: 100%;
	}
	.fg-hidden{
		display: none;
	}
	.fg-viewer{
		opacity: 0;
		position: absolute;
		height: 100%;
		width:  100%;
		top:  0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.5);
		color: #fff;
	}
	.fg-box:hover .fg-viewer{
		opacity: 1;
	}
	.fg-viewer,
	.fg-box:hover .fg-viewer{
		cursor: pointer;
		-webkit-transition: all ease-in-out .2s;
		   -moz-transition: all ease-in-out .2s;
		     -o-transition: all ease-in-out .2s;
		        transition: all ease-in-out .2s;
	}
	.fg-viewer i{
		position: absolute;
		top:  calc(50% - 25px);
		left: calc(50% - 25px);
		font-size: 50px;
		text-align: center;
	}

/* MODAL GALLERY */
	#fg-modal{
		padding-top: 50px;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.9);
		display: none;
		overflow-y: auto;
		z-index: 9999999999;
	}
	
	
	#close_modal,
	#toggleFullScreen{
		position: absolute;
		cursor: pointer;
		outline: none;
		border: none;
		background-color: transparent;
		color: #fff;
		font-size: 30px;
		z-index: 99999999999;
	}
	#close_modal{
		top: 15px;
		right: 25px;
	}
	#toggleFullScreen{
		bottom: 15px;
		right: 25px;
	}

/* CUSTOM OWL CAROUSEL */
	#fg-modal .owl-carousel .owl-item img{
		height: calc(100vh - 170px);
	}
	#fg-modal .owl-fg-expand .owl-carousel .owl-item img{
		position: fixed;
		height: 100vh !important;
		width: auto !important;
		top: 0;
		left: 0;
		z-index: 999999999999;
	}
	#fg-modal .owl-theme .owl-nav [class*='owl-'] {
		background-color: rgba(0, 0, 0, 0.6);
		position: absolute;
		top: calc(50% - 50px);
		height: 100px;
		line-height: 90px;
		padding: 0px 15px;
		font-size: 20px;
		font-weight: bold;
	}
	#fg-modal .owl-theme .owl-dots .owl-dot span {
	    width: 20px;
	    height: 20px;
	    background: rgba(0, 0, 0, 0.5);
	    border: 2px solid #000;
	}
	#fg-modal .owl-theme .owl-dots .owl-dot.active span, 
	#fg-modal .owl-theme .owl-dots .owl-dot:hover span {
    	background: #000;
	}
	#fg-modal .owl-theme .owl-nav [class*='owl-']:hover,
	#fg-modal .owl-theme .owl-nav [class*='owl-']:active,
	#fg-modal .owl-theme .owl-nav [class*='owl-']:focus{
		background-color: rgba(0, 0, 0, 0.8);
	}
	#fg-modal .owl-theme .owl-nav .owl-prev{
		left: 0;
	}
	#fg-modal .owl-theme .owl-nav .owl-next{
		right: 0;
	}
	#fg-modal .owl-carousel .owl-item img {
	    width: auto;
	    margin: 0 auto;
	}
	#fg-modal .owl-carousel span.fg-alt{
		display: block;
		text-align: center;
		color: #fff;
		font-size: 24px;
		margin-top: 10px;
	}

/* RESPONSIVE */
	@media screen and (max-width: 768px){
		
	}
	@media screen and (max-width: 480px){
		#fg-modal .owl-carousel .owl-item img{
			height: auto;
			display: block;
			margin: 0 auto;
		}
		#close_modal{
			top: 5px;
			right: 10px;
		}
	}