/*@import url('https://fonts.googleapis.com/css2?family=Oswald&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*/
@media print {
	body {
		margin: 0 !important;
	}
}

/* Ensure CKEditor balloons appear above Bootstrap Modals */
:root {
    --ck-z-default: 1000;
    --ck-z-modal: 1200; /* Must be higher than Bootstrap's 1055 */
}

.ck-body_wrapper {
    z-index: 9999 !important;
}

/* Specifically for Balloon toolbars */
.ck.ck-balloon-panel {
    z-index: 1200 !important;
}


.main-container {
	font-family: 'Lato';
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.ck-content {
	font-family: inherit;
	line-height: inherit;
	/* text-align: in; */
	color: inherit;
	word-break: break-word;
	padding: inherit;
	
}

.ck-toolbar-container {
	max-width: 90% !important;
}
/* .ck-content {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  background: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-transform: inherit;
  text-decoration: inherit;
	word-break: break-word;
	margin: 0;
} */

/* .ck-content p,
.ck-content h1,
.ck-content h2,
.ck-content h3,
.ck-content h4,
.ck-content h5,
.ck-content h6,
.ck-content li,
.ck-content blockquote,
.ck-content table,
.ck-content td,
.ck-content th {
  font: inherit;
  color: inherit;
  line-height: inherit;
} */

.ck-content .mention {
    background: inherit;
    color: inherit;
}

.ck.ck-button.ck-button_with-text .ck-button__label{
	font-size: 1rem !important;
}

.ck.ck-editor__editable_inline>:first-child {
    margin-top: 0;
}

.table>:not(caption)>*>* {
	color: inherit;
	background-color: inherit;
	border-bottom-width: unset;
	box-shadow: unset;

}

.editor-container_classic-editor .editor-container__editor {
	min-width: 795px;
	max-width: 795px;
}

.ck-content h3.category {
	font-family: 'Oswald';
	font-size: 20px;
	font-weight: bold;
	color: #555;
	letter-spacing: 10px;
	margin: 0;
	padding: 0;
}

.ck-content h2.document-title {
	font-family: 'Oswald';
	font-size: 50px;
	font-weight: bold;
	margin: 0;
	padding: 0;
	border: 0;
}

.ck-content h3.document-subtitle {
	font-family: 'Oswald';
	font-size: 20px;
	color: #555;
	margin: 0 0 1em;
	font-weight: bold;
	padding: 0;
}

.ck-content p.info-box {
	--background-size: 30px;
	--background-color: #e91e63;
	padding: 1.2em 2em;
	border: 1px solid var(--background-color);
	background:
		linear-gradient(135deg, var(--background-color) 0%, var(--background-color) var(--background-size), transparent var(--background-size)),
		linear-gradient(135deg,
			transparent calc(100% - var(--background-size)),
			var(--background-color) calc(100% - var(--background-size)),
			var(--background-color));
	border-radius: 10px;
	margin: 1.5em 2em;
	box-shadow: 5px 5px 0 #ffe6ef;
}

.ck-content span.marker {
	background: yellow;
}

.ck-content span.spoiler {
	background: #000;
	color: #000;
}

.ck-content span.spoiler:hover {
	background: #000;
	color: #fff;
}

.ck-content .button {
	display: inline-block;
	width: 260px;
	border-radius: 8px;
	margin: 0 auto;
	padding: 12px;
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.ck-content .button--green {
	background-color: #406b1e;
}

.ck-content .button--black {
	background-color: #141517;
}