﻿@charset "utf-8";
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;	
}
body{
	margin:0;
	padding:0;	
}
.pop-wrapper{
	position:absolute;
	background:rgba(0,0,0, 0.5);
	display:none;
	z-index:99999999;
	opacity:0;	
	display:none;
}
.pop-container{
	margin:0 auto;
	width:auto;
	position:absolute;
	left:50%;
	top:3% !important;
	background:#000;
	padding:1px;
	border:0px solid #ccc;
	/*-webkit-box-shadow: 0px 0px 17px 5px rgba(255,255,255,0.7);
	-moz-box-shadow: 0px 0px 17px 5px rgba(255,255,255,0.7);
	box-shadow: 0px 0px 17px 5px rgba(255,255,255,0.7);	*/
}
.pop-container a{
	display:block;	
}
.pop-container img{
	width:100%;	
}
.pop-container span:before{
	width:40px;
	height:40px;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	background:#000;
	content:"\f00d";
	font:1.5em/40px 'FontAwesome';
	position:absolute;
	right:-16px;
	top:-16px;
	color:#fff;
	z-index:9000;
	text-align:center;
	cursor:pointer;
	border:1px solid transparent;
}
.pop-container span:hover:before{
	transform:rotate(6.28rad);
	background: #fff;
	color:#000;
	border: 1px solid #000;
	transition:all .8s ease-out;	
}
@media only screen and (min-width:1200px){
.pop-container span:hover:after{
	content:attr(data-title);
	position:absolute;
	top:-45px;
	right:-40px;
	background: #fff;
	padding:4px 6px;
	border: 1px solid #000;
	font:13px Arial;
	text-transform:capitalize;
	color:#333;	
}	
}
@media only screen and (max-width:1024px){
.pop-container span:before{
	right:auto !important;
	left:50% !important;
	margin-left:-20px !important;	
}	
}
@media only screen and (max-width:1023px){
.pop-container{
	top:100px !important;
	width:100% !important;
	left:0 !important;
	margin-left:0 !important;	
}
	
}

























