<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mp_error_box
{
	margin: 15px 0;
	padding: 15px;
	border-radius: 5px;
	background: #cd2f2f;
	color: #ecd2d2;
	text-align: center;
	font-size: 18px;
	line-height: 1.6em;
}

.mp_success_box
{
	margin: 15px 0;
	padding: 15px;
	border-radius: 5px;
	background: #2fcd2f;
	color: #d2ecd2;
	text-align: center;
	font-size: 18px;
	line-height: 1.6em;
}

.mp_spinner
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	z-index: 999;
}

.mp_spinner:after
{
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	z-index: 2;
	box-shadow: 0 0 36px 0 #000;
	border-radius: 5px;
	background: #fff url(../images/spinner.svg) no-repeat center center;
}

.mp_spinner.hidden
{
	display: none;
}
</pre></body></html>