/* Edit Mode UI  */


/* Popup Styles  */

#popUp{
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:99999999;
	display:none;
	position:fixed;
}

#popUp #popUpBg{
	top:0;
	left:0;
	right:0;
	bottom:0;
	position:absolute;
	background-color:rgba(0,0,0,0.6);
}

#popUp #popUpContent{
	top:50%;
	left:50%;
	opacity:0;
	z-index:99;
	width:600px;
	height:600px;
	display:block;
	position:absolute;
	background-color:#FFFFFF;
	margin:-300px 0 0 -300px;
	background-size:100% auto;
}

#popUp .popUpCloseBtn{
	top:10px;
	right:10px;
	color:#1e1e1e;
	font-size:18px;
	position:absolute;
	text-decoration:none;
}

.popUpBtn{
	left:0;
	right: 0;
	color: #FFFFFF;
	width: 282px;
	margin:0 auto;
	padding: 10px;
	bottom: 15px;
	/*option*/
	display: block;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	border-radius: 10px;
	position: absolute;
	text-decoration: none;
	background-color: #E3971C;
}

.popUpBtn:hover{
	color: #FFFFFF;
	text-decoration: none;
	background-color: #1E1E1E;
}

@media only screen and (max-width : 767px) {
	
		#popUp .popUpCloseBtn{
			font-size:14px;
		}
	
		#popUp #popUpContent{
			width:300px;
			height:300px;
			margin:-150px 0 0 -150px;
		}
		
		.popUpBtn {
			left: 0;
			right: 0;
			bottom: 154px;
			width: 160px;
			padding: 5px;
			font-size: 15px;
			border-radius: 8px;
		}
		
}