<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Pop-Up */
.pop-bg {
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 9998;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
}

.pop-wrap {
	position: fixed;
	padding:5px;
	z-index: 9999;
	width: auto;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0,0,0,1);
	box-shadow: 0px 0px 18px 0px rgba(0,0,0,1);
	background-color: #f7f7f7;
}

.pop-x {
	/*font-family: fantasy;
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 15px;
	font-size: 30px;
	font-weight: 100;
	line-height: 25px;
	color: #f7f7f7;
	background: #08a7e1;
	cursor: pointer;
	z-index: 999;
	----
	font-family: fantasy;
    font-size: 30px;
    font-weight: 100;
    line-height: 25px;
    color: #f7f7f7;
    cursor: pointer;
    z-index: 999;
    margin: auto;
	*/
}

.closeDivBtn{
	text-align: center;
    padding: 10px;
}

.pop-content {
	clear: both;
	/*padding: 2.5rem;*/
	font-family: fantasy;
	text-align: center;
	font-size: 18px;
	/*width: 50%;*/
	margin: auto;
}


</pre></body></html>