@charset "UTF-8";

:root {
	--message-background: var(--body-background);
	--message-border: var(--background-blue-gray-darker);
	--message-alert-border: var(--orange-base);
	--message-alert-title-color: var(--orange-base);
	
	--header-message-background: var(--blue-dark1);
	--header-message-text-color: var(--white);
	--header-message-title-color: var(--orange-base);
	--header-message-link-color: var(--blue-washed-light);
	--header-message-link-border: var(--orange-light);
	
	--header-message-alert-background: var(--orange-base);
	--header-message-alert-text-color: var(--white);
	--header-message-alert-title-color: var(--blue-dark1);
	--header-message-alert-link-color: var(--blue-dark1);
	--header-message-alert-link-border: var(--blue-dark1);
}

/*-----------------------------------------
|             MESSAGE-CONTAINER            |
 -----------------------------------------*/

html body .message.full-text,
html body .ck-editor__main.message.full-text > .ck.ck-content {
	box-sizing: border-box;

	max-width: 1200px;
/*     width: 100%; */

	display: block;

	margin: .5em .5em 2em .5em;
	padding: .5em 1em;
	
	background: var(--message-background);
	color: var(--black);
	border: 2px solid var(--message-border);
}

html body .ck-editor__main.message.full-text > .ck.ck-content {
	border: none;
	box-shadow: none;
}

html body .ck-editor__main.message.full-text > .ck.ck-content {
	margin: 0;
}

html body .message.full-text > *,
html body .ck-editor__main.message.full-text > .ck.ck-content > *,
html body .message.full-text .message-content > *,
html body .ck-editor__main.message.full-text > .ck.ck-content > * {
	white-space: normal;
	letter-spacing: normal;
	text-transform: initial;
	text-decoration: none;
	text-shadow: none;
	box-shadow: none;
	border: none;
	border-radius: 0;
}

html body .message.full-text div,
html body .ck-editor__main.message.full-text > .ck.ck-content div,
html body .message.full-text p,
html body .ck-editor__main.message.full-text > .ck.ck-content p,
html body .message.full-text h1,
html body .ck-editor__main.message.full-text > .ck.ck-content h1,
html body .message.full-text h2,
html body .ck-editor__main.message.full-text > .ck.ck-content h2,
html body .message.full-text h3,
html body .ck-editor__main.message.full-text > .ck.ck-content h3,
html body .message.full-text h4,
html body .ck-editor__main.message.full-text > .ck.ck-content h4,
html body .message.full-text h5,
html body .ck-editor__main.message.full-text > .ck.ck-content h5,
html body .message.full-text h6,
html body .ck-editor__main.message.full-text > .ck.ck-content h6 {
	display: block;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	max-width: none;
	max-height: none;
	min-width: 0;
	min-height: 0;
	margin: initial;
	box-shadow: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
}

html body .message.full-text h2.message-title,
html body .ck-editor__main.message.full-text > .ck.ck-content h1 {
	margin: 5px 0 .5em;
	font-size: 32px;
	text-align: center;
}

html body .message.full-text h2,
html body .ck-editor__main.message.full-text > .ck.ck-content h2 {
	margin: .3em 0;
	font-size: 28px;
}

html body .message.full-text h3,
html body .ck-editor__main.message.full-text > .ck.ck-content h3 {
	margin: .2em 0;
	text-align: left;
	font-size: 22px;
}

html body .message.full-text h4,
html body .ck-editor__main.message.full-text > .ck.ck-content h4 {
	margin: 5px 0;
	text-align: left;
	font-size: 18px;
}

html body .message.full-text p,
html body .ck-editor__main.message.full-text > .ck.ck-content p,
html body .message.full-text li,
html body .ck-editor__main.message.full-text > .ck.ck-content li {
	text-align: left;
	font-size: 14px;
	margin: .5em 0;
}

.message .image-style-side {
	float: right;
	max-height: 100%;
	max-width: 48%;
	margin-left: 1em;
}

.message .image-style-side img {
	max-height: 100%;
	max-width: 100%;
}

/*-----------------------------------------
|                WITH ALERT                |
 -----------------------------------------*/


html body .message.full-text.alert,
html body .ck-editor__main.message.full-text.alert > .ck.ck-content {
	border-color: var(--message-alert-border);	
}


html body .message.full-text.alert h2.message-title {
	color: var(--message-alert-title-color);
}


/*-----------------------------------------
|              HEADER-MESSAGE              |
 -----------------------------------------*/

.message-row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	background: var(--header-message-background);
}

.message.title-only {
	flex-grow: 1;
	flex-shrink: 1;
	
	box-sizing: border-box;
	max-width: 100%;
	
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: baseline;
	padding: .2em .5em;
	margin: 0;
}

.message.title-only > * {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.message.title-only #short-message-box {
	flex-grow: 1;
	flex-shrink: 1;
}

.message.title-only #short-message {
	font-size: 13px;
	max-width: 180px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex-grow: 1;

	font-size: 13px;
	letter-spacing: .025em;
	margin: 0;
	margin-right: 1em;
}

.message.title-only #short-message * {
	display: inline !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: inherit !important;
	color: inherit !important;
	font-weight: inherit !important;
	text-transform: inherit !important;
	text-decoration: inherit !important;
	font-family: inherit !important;
}

.message.title-only #short-message fa,
.message.title-only #short-message far,
.message.title-only #short-message fas
{
	font-family: FontAwesome !important;
}

.message.title-only #short-message img,
.message.title-only #short-message table {
	display: none;
}

.message.title-only #short-message-box > * {
	display: inline;
	margin-left: .5em;
}

.message.title-only #short-message-box > *:first-child {
	margin-left: 0;
}

.message.title-only h2.message-title {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin: 0;
}

.message.title-only #know-more {
	flex-shrink: 0;
	font-size: 12px;
	color: inherit;
	transition: all .2s;
	text-decoration: none;
}

.message.HEADER.title-only {
	background-color: var(--header-message-background);
	color: var(--header-message-text-color);
}

.message.HEADER.title-only.alert {
	background-color: var(--header-message-alert-background);
	color: var(--header-message-alert-text-color);
}

.message.HEADER.title-only h2.message-title {
	color: var(--header-message-title-color);
}


.message.HEADER.title-only.alert h2.message-title {
	color: var(--header-message-alert-title-color);
}

.message.HEADER.title-only #know-more {
	color: var(--header-message-link-color);
	border-bottom: 2px solid var(--transparent);
}

.message.HEADER.title-only.alert #know-more {
	color: var(--header-message-alert-link-color);
}

.message.HEADER.title-only #know-more:focus,
.message.HEADER.title-only #know-more:hover {
	border-bottom-color: var(--header-message-link-border);
}

.message.HEADER.title-only.alert #know-more:focus,
.message.HEADER.title-only.alert #know-more:hover {
	border-bottom-color: var(--header-message-alert-link-border);
}

/*-----------------------------------------
|              TOPPER-MESSAGE              |
 -----------------------------------------*/

.message#topper-message {
}


/*-----------------------------------------
|              MESSAGE-PAGE                |
 -----------------------------------------*/

.message-page .message-centering {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;

	background-color: var(--blue-gray-light);
}

.message-page .message-centering .message {
	box-shadow: 0px 2px 18px var(--background-blue-gray);
	margin: 2em .5em;
	padding: 2em;
}

/*-----------------------------------------
|              MEDIA QUERIES               |
 -----------------------------------------*/

@media only screen and (max-device-width: 620px), screen and (max-width: 620px) {

	.message.title-only #short-message {
		display: none;
	}

	.message.title-only {
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: baseline;
	}

	.message.title-only h2.message-title {
		margin: 0;
		letter-spacing: normal;
		white-space: normal;
	}

}

@media only screen and (max-device-width: 350px), screen and (max-width: 350px) {
	.message {
		margin: .2em 0;
	}
}

@media only screen and (max-device-width: 980px), screen and (max-width: 980px) {
	
	.message .image-style-side {
		float: none;
		text-align: center;
		max-height: 100%;
		max-width: none;
	}
	
}
