#cb_popup{
	display:none;
	width:100%;
	height:100%;
	z-index:9999;
	position: relative;
}
#cb_popup_modal{
	background-color:rgba(0,0,0,0.7);
	width:100%;
	height:100%;
	overflow:hidden;
	position:fixed;
	top:0;
	left:0;
	z-index: 999;
}
#cb_popup_content{
	width:100%;
	height:100%;
	overflow:hidden;
	position:fixed;
	top:0;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:99999;
}
#cb_popup_content_wrapper{
	position: relative;
	max-width: 800px;
	background-color: #FFF;
	box-shadow:0 0 2px 2px rgba(0,0,0,0.2);
}
#cb_popup_closer{
	position:absolute;
	cursor:pointer;
	top:-15px;
	right:-15px;
	width:30px;
	height:30px;
	line-height:30px;
	text-align:center;
	background-color:#009EE3;
	color:#FFF;
	border-radius:50%;
	box-shadow:0 0 4px 4px rgba(0,0,0,0.2);
	transition: all 0.2s ease;
}
#cb_popup_closer:hover{
	background-color: #444;
}
#cb_popup_content_html{
	margin-top: 35px;
	padding: 20px 20px 20px 0;
}
#cb_popup_content_html h3{
	line-height: 1.2;
}
#cb_popup_content_html input{
	width:100%;
}
#cb_popup_content_html input[type=submit]{
	margin-top: 15px;
}
#cb_popup_content_html small{
	text-align: center;
	display: block;
}
@media screen and (max-width:768px){
	#cb_popup_content_wrapper{
		max-width: 90%;
	}
	#cb_popup_content_html{
		text-align: center;
		padding: 20px;
	}
}