<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#MPfullBlock {
	position: fixed; 
	top: 0; 
	left: 0; 
	margin: 0; 
	width: 100%; 
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	display: none;
	z-index: 10000000000;
	
}

#MPmessageBlock {
	width: 500px;
	min-height: 50px;
	display: block;
	background-color: rgba(255,255,255,0.9);
	position: fixed;
	left: 50%;
	top: -150px;
	margin-left: -250px;

}

#MPheader {background: #000;
 color: white; float: left; width: 100%; padding: 20px;  font-weight: bold; text-align: center; position: relative;
 
 }
 
 
#MPheader span {float: left; width: 100%;}

#MPheader span.MPclose {position: absolute; width: auto; float: right; top: 18px; right: 25px; cursor: pointer;}
#MPheader span.MPclose:hover {color: red;}

#MPbuttons {float: left; width: 100%; display: flex; align-items: center; justify-content: center;}

#MPiconPart {

	width: 80px;
	height: 100%;
	display: block;
	color: black;
	right: 0; 
	top: 0;
	font-size: 12pt;
	padding: 25px 0px 25px 15px;
	position: relative;
	float: left;
	display: none;
    align-items: center; 
}

#MPtextPart {
	width: 100%;
	min-height: 100%;
	color: black;
	text-align: center;
	float: right;
	position: relative;
	font-size: 15pt;
	padding: 25px;
	word-wrap:break-word;
}

#MPtextPart span{
	width: 100%;
	word-wrap:break-word;
	float: left;
	}
	
#MPbuttonOK, #MPbuttonCancel{
	color: #888;
	padding: 0px;
	float: left;
	margin-top: 15px;
	cursor: pointer;
	transition: 0.2s;
	margin-right: 10px;
	}
	
		
#MPbuttonOK:hover ,#MPbuttonCancel:hover{
	transform: scale(1.1);
	}
	
#MPprogressData {font-size: 20pt; font-weight: bold; width: 100%; float: left;}

#MPprogressBar {height: 25px; float: left; width: 100%; border: 1px solid #888; display: block;}
#MPprogressBar div {
	height: 100%; 
	width: 0%;     
	background: #1e5799;
    background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#7db9e8));
    background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
}


@media only screen 
and (min-device-width : 200px) 
and (max-device-width : 700px) 
and (orientation : portrait) {  
	#MPmessageBlock {	
		left: 0;
		top: -150px;
		margin: 10px;
		width: calc(100% - 20px);
	}
	#MPtextPart {
		width: calc(100% - 20px);		
		}
	#MPiconPart {
		display: none;
	}
}

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