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

.outer-maintenance {
	display: table;
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}

html[dir="rtl"] .outer-maintenance {
    right: 0;
}

html[dir="ltr"] .outer-maintenance {
	left: 0;
}

.middle-maintenance {
	display: table-cell;
	vertical-align: middle;
}

.container-maintenance {
	margin-left: auto;
	margin-right: auto;
	width:518px;
	font-family: Segoe UI;
	line-height: normal;
	color: #333333;
	text-align: center;
}

.maintenance-img {
	display: block;
	width:276px;
	height:215px;
	background: url("../img/maintenance.png") no-repeat;
	margin-left: auto;
	margin-right: auto;
}

.maintenance-title {
	font-size: 21px;
	font-weight:bold;
	padding-top: 18px;
}

.maintenance-description {
	font-size: 16px;
	padding-top: 14px;
}

.maint-custom-desc {
	font-size: 14px;
	padding-top: 20px;
	color: #323130;
	text-align: center;
	font-family: Segoe UI;
	line-height: 16px;
}

.maint-custom-desc.hide {
	display: none;
}

.maint-custom-desc.show {
	display: block;
}

.maint-label {
	padding: 0 5px;
}

.custom-maint-container {
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	border: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	z-index: 999999;
	height: 100%;
}

html[dir="ltr"] .custom-maint-container {
	left: 0px;
}

html[dir="rtl"] .custom-maint-container {
	right: 0px;
}


.admin-note {
	font-weight: 600;
}

/* Reflow behaviour for Maintenance page */
@media screen and (max-width: 320px) {
	.container-maintenance {
		width:265px;
	}
	.maintenance-description {
		height:64px;
	}
}

@media screen and (min-width: 321px) and (max-width: 420px) {
	.container-maintenance {
		width:340px;
	}
}

@media screen and (min-width: 421px) and (max-width: 480px) {
	.container-maintenance {
		width:420px;
	}
	.maintenance-description {
		height:48px;
	}
}

@media screen and (min-width: 481px) and (max-width: 550px) {
	.container-maintenance {
		width:450px;
	}
}
</pre></body></html>