/**
 * Fancy Popup Common Styles
 *
 * @package Fancy Popup
 * @since 1.0
 */
 body.single-fancy_popup{
    margin:0;
    padding:0;
 }
body.single-fancy_popup:before{
	display:none;
}
.fancy_popup{
	width:500px;
	min-height:50px;
	height:auto;
	overflow:hidden;
	position: fixed;
	top: 50%;  
	left: 50%;
	margin:-25px 0 0 -250px;
	z-index: 10001;
	display: none;
	-vendor-animation-duration: 3s;
    -vendor-animation-delay: 2s;
    -vendor-animation-iteration-count: infinite;
}
.fancy_popup_wrapper{
	width: 100%;
	overflow:hidden;
    background: #fff;
    position: relative;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
}
.fancy_popup_close{
	width: 30px;
    height: 30px;
    display: block;
    line-height: 28px;
    font-size: 1.5rem;
    text-align: center;
    background: #333;
    position: absolute;
    z-index: 10002;
    top:0;
}
.fancy_popup_close.right{
	right:0;
}
.fancy_popup_close.left{
	left:0;
}
.fancy_popup_close.triangle{
	transform:rotate(45deg);
	right:-40px;
	top:-40px;
	width:80px;
	height:80px;
}
.fancy_popup_close.triangle span{
	display: block;
	margin-top: 49px;
    margin-left: 0;
    transform: rotate(-45deg);
}
.fancy_popup_close,
.fancy_popup_close:hover,
.fancy_popup_close:active{
	color:#fff;
}
.fancy_popup.fp_fullscreen{
	width:100%;
	height:100%;
	top:0;
	left:0;
	margin:0;
}
.fancy_popup img,
.fp_preview_box img{
	max-width:100%;
}
.fancy_popup_overlay{
	width:100%;
	height:100%;
	background:rgba(0,0,0,.5);
	position:fixed;
	top:0;
	left:0;
	z-index:10000;
	display:none;
}
.fp_popup_iframe{
	border:0;
	width:100%;
	height:auto;
	overflow:hidden;
}
.fp_preview{
	display:flex;
	justify-content:center;
    align-items: center;
    width:100%;
    height:100%;
}
.fp_preview_box.fancy_popup,
.fp_preview_box.fancy_popup.fp_fullscreen{
	position:relative;
	z-index: 1;
	top:0;
	left:0;
	margin: auto;
	display: block;
	height:auto!important;
	overflow:hidden;
}
.fp_preview .fancy_popup_overlay{
	display:block;
}
 
