<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

@font-face {
	font-display: swap;
}

.cc-reldiv {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	position: relative;
}

#cc-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	display: none;
	overflow-y: auto;
	background-color: rgba(0,0,0,0.75);
	animation: 0.5s;
}
#cc-popup #cc-popup-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50px 50px;
	background-color: #FFF; 
	border-radius: 25px;
	min-width: 100px;
	min-height: 100px;
	padding: 25px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
	top: 75px;
	position: absolute;
	left: 50%;
	animation: 0.5s;
	width: calc(100% - 50px);
	height: calc(100% - 125px);
}
@media screen and (max-width: 599px) {
	#cc-popup #cc-popup-content {
		width: calc(100% - 25px);
	}
}
#cc-popup #cc-popup-content.cc-popup-loading {
	background-size: 80px;
	background-image: url("../Images/loading.svg");
}
#cc-popup #cc-popup-content .cc-popup-close {
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 10px;
	color: #FFF;
	cursor: pointer !important;
	background-color: #666666;
	border-radius: 50%;
	width: 25px;
	line-height: 25px;
	padding: 0;
	text-align: center;
	z-index: 11;
}
#cc-popup #cc-popup-content.cc-popup-loading .cc-popup-close {
	display: none;
}
#cc-popup #cc-popup-content #cc-popup-content-body {
	display: none;
}


/*Access Control*/
#cc-popup #cc-accesscontrol {
	box-sizing: border-box;
	width: 400px;
	height: 500px;
	padding-top: 115px;
}
#cc-popup #cc-accesscontrol .NetworkLogo {
	background-repeat: no-repeat;
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	margin-left: -100px;
	top: -100px;
	border-radius: 50%;
	background-color: #FFF;
	background-size: contain;
	background-position: center center;
	border: 1px solid #CCC;
}
#cc-popup #cc-accesscontrol.cc-requestaccess {
	text-align: center;
}

#cc-msg {
	z-index: 5000;
	background-color: #fff;
	border-radius: 20px;
	line-height: 20px;
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	padding-left: 20px;
	padding-right: 20px;
	font-size: 15px;
    box-shadow: -1px 5px 20px 0px rgba(82, 90, 101, 0.1);
    -webkit-box-shadow: -1px 5px 20px 0px rgba(82, 90, 101, 0.1);
    -moz-box-shadow: -1px 5px 20px 0px rgba(82, 90, 101, 0.1);
}</pre></body></html>