
#cnr-modal {
	display: none;
	opacity: 0;
	position: fixed;
	z-index: 1000000;
	right: 0; top: 0; bottom: 0; left: 0;
	background-color: rgba(12, 12, 12, 0.75);
}
#cnr-modal:focus {
	background-color: rgba(12, 12, 12, 0.35);
}
#cnr-modal.open {
	opacity: 1;
	transition: opacity 500ms ease;
	-ms-transition: opacity 500ms ease;
	-webkit-transition: opacity 500ms ease;
	-moz-transition: opacity 500ms ease;
	-o-transition: opacity 500ms ease;
}

#cnr-close-modal {
	background-image: url('close.png');
	background-size: contain;
	appearance: normal;
	-webkit-appearance: none;
	background-color: transparent;
	border: 0;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 15px;
	left: 15px;
	text-indent: -9999px;
	overflow: hidden;
}

#cnr-modal .cnr-modal-inner {
	width: 640px; height: 480px;
	top: 10%; left: 50%;
	margin-left: -300px;
	position: absolute;
	z-index: 1000001;
	background-color: white;
	border-radius: 4px;
	padding: 55px 15px 15px;
	cursor: auto;
}
.cnr-ad-text {
	position: absolute;
	top: 5px;
	bottom: auto;
	left: 0; right: 0;
	text-align: center;
	line-height: 28px;
}
.cnr-hp-add {
	padding: 10px 0;
}
.cnr-hp-add .widget {
	margin-bottom: 10px;
}
.cnr-hp-add .widget:last-child {
	margin-bottom: 0;
}
.cnr-hp-mobile-footer {
	padding: 10px;
}
@media (max-width: 768px) {
	#cnr-modal .cnr-modal-inner {
		width: auto;
		height: 300px;
		left: 10px; right: 10px;
		margin: 0;
	}
}