/*popup.css*/

.pop_overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: transparent;
	transition: opacity 300ms;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.pop_overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	/*position: relative;
    margin: 15% auto;*/
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 12px;
	background-color: #000;
	border: 1px solid #00b140;
	border-radius: 0px;
	width: 28.5%;
	min-width: 260px;
	min-height: 200px;
	transition: all 1s ease-in-out;
	pointer-events: all;
}

.popup h3 {
	height: 20px;
	margin-top: 0px;
	padding-top: 6px;
	padding-bottom: 4px;
	font-size: 16px;
	font-weight: normal;
	color: #000;
	background: #00b140;
}

.popup .pop_close {
	position: absolute;
	top: 16px;
	right: 18px;
	transition: all 200ms;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
	pointer-events: all;
}

.popup .pop_close:hover {
	color: #000;
}

.popup .pop_content {
	font-size: 13px;
	color: #00b140;
	max-height: 30%;
	overflow: hidden;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pop_content p {
	margin: 6px;
}

.pop_content a {
	cursor: pointer;
}

.pop_content a:hover {
	text-decoration: underline;
}

.pop_inner {
	padding: 12px;
}

@media screen and (max-width: 200px) {
	.popup {
		display: none;
	}
}