<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.que-dialog-opened {
	/* overflow: hidden;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box; */
}
.que-dialog-wrapper {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	display: none;
	overflow-y: auto;
	overflow-x: hidden;
	background: transparent;
	width: 100%;
	height: 100%;
}
body.que-dialog-opened .que-dialog-wrapper {
	display: block !important;
	background: rgba(0, 0, 0, 0.7);
}
.que-dialog-table {
	display: table;
	width: 100%;
	height: 100%;
}
.que-dialog-cell {
	display: table-cell;
	padding: 0 1em;
	vertical-align: middle;
	text-align: center;
}
.que-dialog {
	display: inline-block;
	width: 40%;
	min-width: 400px;
	max-width: 600px;
	background: #fff;
	z-index: 5;
	font-size: 14px;
	margin: 20px 0;
	text-align: left;
	position: relative;
}
.que-dialog.success {
	background: rgb(110, 180, 30);
	color: #fff;
	padding: 50px 0;
}
@media screen and (max-width: 600px) {
	.que-dialog {
		min-width: auto !important;
		width: 100% !important;
	}
}
.que-dialog * {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 1.3em;
}
.que-dialog-close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-block;
	color: #aaa;
	cursor: pointer;
	font-size: 32px;
	width: 16px;
	height: 16px;
	line-height: 16px;
}
.que-dialog.success .que-dialog-close {
	color: #eaffdd;
}
.que-dialog-close:hover {
	color: #000;
}
.que-dialog.success .que-dialog-close:hover {
	color: #fff;
}
.que-dialog-header {
	font-size: 1.5em;
	font-weight: 500;
	padding: 20px;
}
.que-dialog-content {
	padding: 0 20px 20px 20px;
}
.que-dialog.success .que-dialog-content {
	padding: 0;
}

.que-result {
	position: absolute;
	text-align: center;
}		
.que-result.success {
	background: rgb(110, 180, 30);
	color: #fff;
}	
.que-result.success.opacity {
	background: rgba(110, 180, 30, 0.7);
}
.que-result:after {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	content: '';
}
.que-result .que-result-inner {
	display: inline-block;
	vertical-align: middle;
}
.que-result-header {
	font-size: 2em;
}</pre></body></html>