/* Dimmer background */
#dimmer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
	filter: alpha(opacity=60); /* old IE support */
	z-index: 10003;
}

/* Popup box */
#popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 550px;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	z-index: 99999;
	padding: 50px;
	font-size: 18px;
	text-align: center;
}

#popup a {
	color: #376ec8;
}

#popup a:hover {
	color: #00abea;
}

#popup .popup-close {
	position: absolute;
	top: 8px;
	right: 12px;
	cursor: pointer;
	font-size: 32px;
	color: #376ec8;
}

#popup .popup-close:hover {
	color: #00abea;
}