<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Default */
.modal_i18n--shadow {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.3);
	justify-content: center;
	align-items: flex-start;
	cursor: pointer;
}
.modal_i18n--window {
	position: relative;
	margin: 15px;
	width: calc(100% - 30px);
	max-width: calc(100% - 30px);
	height: calc(100% - 30px);
	max-height: calc(100% - 30px);
	background-color: #fff;
	border: 1px solid #efefef;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.14);
	cursor: default;
}
.modal_i18n--content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	overflow: auto;
	padding: 35px 15px 15px 15px;
}
.modal_i18n--close-icon {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
	height: auto;
	width: auto;
	padding: 0;
	margin: 0;
	background: transparent;
	border: 0;
	font-size: 20px;
	line-height: 20px;
	user-select: none;
	cursor: pointer;
}
@media (min-width:768px) {
	.modal_i18n--window {
		width: 738px;
		height: calc(100% - 30px);
		max-height: calc(100% - 30px);
	}
}

/* Custom */
.modal_i18n--window {
	background-color: #F6EDE8;
	font-family: "Documenta Regular",Georgia,serif;
	font-weight: normal;
	font-style: italic;
	color: #000;
	height: 520px;
}
.modal_i18n--content {
	padding-left: 30px;
	padding-right: 30px;
}
.modal_i18n--window p {
	text-align: center;
	color: #000;
	margin: 20px 0; 
}
.modal_i18n--window img {
    display: block;
	margin: 0 auto;
}
.modal_i18n--window p.modal_i18n--welcome {
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 10px;
}
.modal_i18n--flag {
	width: 70px;
}
.modal_i18n--logo {
	width: 200px;
}
.modal_i18n--link {
	font-size: 30px;
}
@media (min-width:768px) {
	.modal_i18n--content {
		padding-left: 50px;
		padding-right: 50px;
	}
	.modal_i18n--window p.modal_i18n--welcome {
		font-size: 48px;
		line-height: 48px;
	}
	.modal_i18n--flag {
		width: 100px;
	}
	.modal_i18n--logo {
		width: 250px;
	}
}</pre></body></html>