<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mt-modal-holder{
	position:fixed;
	/*left:50%;*/
	left:0;
	top:0;
	z-index:110;
	width:100%;
	box-sizing:border-box;
}
.mt-modal{
	box-sizing:border-box;
	position: relative;
	background:#f6f6f6;
	color: #666461;
	border-radius:2px;
	width:850px;
	max-width:90%;
	padding:1em 2.5em;
	top:100px;
	/*left: -425px;*/
		left: 50%;
		transform: translateX(-50%);
    transition: transform 300ms;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	z-index:110;
	box-shadow: 0px 6px 20px 0 rgba(0, 0, 0, 0.3);
}
.mt-modal.mt-modal-narrow{
	width:380px;
	/*left:-190px;*/
	padding:1em;
}
.mt-modal.mt-modal-medium{
	width:580px;
	/*left:-190px;*/
	padding:1em 1.5em;
}




.mt-modal .mt-modal-close{
	width: 34px;
	height: 34px;
	top: -4px;
	right: 0px;
	position: absolute;
	cursor: pointer;
	font-size: 2em;
	color: #a7a9ac;
	text-align:center;
}
.mt-modal .mt-modal-close:after{
	content:'Ã—';
}



.mt-modal-backdrop{
	display: none;
}

.mt-modal-holder.mt-modal-hidden{
	display: none;
}

.mt-modal-holder:not(:empty):not(.mt-modal-hidden)+.mt-modal-backdrop{
	display: block;
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background-color:#283746;
	opacity:0.6;
	z-index: 105;
	box-sizing:border-box;
}


.mt-modal-button{
	min-width: 150px;
	height: 36px;
	border-radius: 2px;
	background-color: #ffffff;
	border: solid 1px #babec2;
	color:#283746;
	margin: .3em .5em;
	font-weight:bold;
	cursor:pointer;
	font-size:1.15em;
	font-family:'Open Sans', sans-serif;
	display:inline-block;
	line-height:36px;
	padding:0 5px;
}

a.mt-modal-button{
	border-width:0;
	vertical-align: bottom;
}

a.mt-modal-button:hover{
	text-decoration:none !important;
}

.mt-modal-button-primary,
a.mt-modal-button-primary{
	background-color: #fd9330;
	border-color: #fd9330;
	color:#283746 !important;
}

.mt-modal-button-delete{
	background-color: #f0e1e0;
	border-color: #f0e1e0;
	color: #c33d36;
	transition:all 300ms;
}

.mt-modal-button-delete:hover{
	background-color: #c84640;
	color: #fff;
}

@media (max-height:700px), (max-width:1000px) {
	.mt-modal-holder{
		/*position:static;
		left:0;*/
		overflow-y:hidden;
		overflow-x:hidden;
		height:100%;
	}

	.mt-modal,
	.mt-modal.mt-modal-narrow,
	.mt-modal.mt-modal-medium{
		overflow:hidden;
		max-width: 100%;
		top: 0px;
		position:fixed;
		padding:1em .5em;
	}
	.mt-modal-button {
		min-width:auto;
		height: auto;
	}
}

@media (max-height:400px), (max-width:500px) {
	.mt-modal.mt-modal-cover{
		width:100%;
		height:100vh;
		overflow:auto;
		border-radius:0 !important;
		left: 0;
		transform: none;
	}
}



/**
 * Theaming
 */
.mt-modal-light{
	background:#fff;
	color:#2c3a48;
}

.mt-modal-light .mt-modal-button{
	background-color: transparent;
	border-color: #6b81d1;
	color: #6b81d1;
	border-radius: 3px;
	line-height:40px;
	height:40px;
	font-weight:normal;
	font-size:1em;
	padding: 0 1em;
}

.mt-modal-light .mt-modal-button.mt-modal-button-primary{
	background-color: #fd9137;
	border-color: #fd9137;
	color: #fff;
	font-weight:bold;
}
</pre></body></html>