:root
{
	--box-color-primary: #202028;
	--box-color-secondary: #CCD;

	--box-background-color: var(--box-color-primary);
	--box-shadow: 3px 3px 3px #213;
	--box-color: var(--box-color-secondary);
}

* {
	box-sizing: border-box;
}

html {
	height: 100%;
	font-family: Arial, "Noto Sans Mono", Helvetica, sans-serif;
	color:#AAA;
}

body {
	padding-bottom: 2em;
	background: linear-gradient(#33303F, #28283A);
	background-repeat: no-repeat;
	background-attachment: fixed;
}

#header
{
	background-color:#400A5E;
	padding-bottom: 1em;
	margin-bottom: 1em;
	box-shadow: var(--box-shadow);
}

#header ul
{
	margin:0;
	padding:0;
	overflow:hidden;
}

#header li
{
	float:left;
}

#header a
{
	display:block;
	margin:0.1em 1em;
	padding:1em;
	color:#C6A9E3;
	font-size:1em;
	border-bottom-style:solid;
}

#header a:any-link
{
	text-decoration: none;
}

.box
{
	background-color: var(--box-background-color);
	color: var(--box-color);
	box-shadow: var(--box-shadow);
	padding: 0.8em;
	margin:0.6em 0.2em;
}

.box .box
{
	box-shadow: none;
}

.box a:link {
	color:#67E;
}

.box a:visited {
	color: #A6E;
}

.box p
{
	margin: 0.3em 0;
}

.box table {
	color: var(--box-color);
}

.box table, .box td, .box th
{
	padding: 0.5em;
	border-collapse: collapse;
}

.box td, .box th
{
	border: solid 1px grey;
}

.box.compact
{
	font-size: 0.8em;
	margin: 0.1em;
	padding:0.2em;
}

.box.compact ul
{
	padding-left: 0.2em;
}


input, textarea
{
	background-color: #DADAEF;
	color: black;
	border: 2px inset #666;
}

form.block input
{
	display:block;
}

form.inline
{
	display:inline;
}

.inline
{
	display:inline-block;
}

.greentext
{
	color:#c8c246;
}

#index {
	footer {
		position: ;
		bottom: 0;
	}

	.content {
		height: 92vh;
		display: flex;
		gap: 1em;
		flex-direction: column;
		justify-content: center;
		align-items: center;

		input {
			font-size: 1.5em;
			padding: 0.5em;
			width: 75%;
			max-width: 1024px;
			min-width: 500px;
		}

		.logo {
			font-family: "Noto Sans Mono", monospace, sans-serif;
			font-weight: 500;
			font-size: 4em;
			color: #CACACA;
			white-space: nowrap;
		}

		.counter {
			font-family: "Noto Sans Mono", monospace, sans-serif;
			font-size: 2.5em;
			font-weight: 500;
			letter-spacing: 0.2em;
		}

		.dns-card {
			width: 75%;
		}
	}
}

.paginator {
	color: #AAA;
	font-size: 1.1em;
	text-align: center;

	a:any-link {
		color: inherit;
		text-decoration: none;

		&:hover {
			text-decoration: underline;
		}
	}

	.current-page {
		font-weight: bold;
		font-size: 1.5em;
	}
}

.commentlist {
	ul& {
		padding:1em;
		margin:0px;
	}

	li {
		margin-bottom: 1em;
	}

	p {
		margin-top: 0.5em;
		margin-left: 2em;
	}
}


li
{
	list-style-type:none;
}

.row
{
	display: flex;
}

.column
{
	flex: 50%;
}

.expander
{
	margin:1em;
	width:100%;
	min-width:20em;
}
.expander img,
.expander video
{
	background-color: black;
	max-width:100%;
}

.resizable-vertical
{
	resize: vertical;
	overflow: scroll;
}

.resizable-horizontal
{
	resize: horizontal;
	overflow: scroll;
}

.overflow
{
	overflow:auto;
	white-space:nowrap;
}

.no-resize
{
	resize: none;
}

.vertical-resize
{
	resize: vertical;
}

#post-editor
{
	min-width: 30em;
}

#post-editor fieldset
{
	overflow: hidden;
	min-width: auto;
}

#post-editor label
{
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


#post-editor textarea
{
	width: 100%;
	height: 100%;
}

.separator
{
	padding: 1em;
	border-bottom:solid grey;
}

.links a:link
{
	color: #AAA;
	text-shadow: 1px 1px #213; 
	display:block;
	font-size:14px;
}

.links a:visited
{
	color: #A7A;
}

.nolink a:visited, .nolink a:link
{
	text-decoration: none;
	color: inherit;
}

#sidebar
{
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	margin-right:0.5em;

	input
	{
		box-shadow: var(--box-shadow);
		width: 100%;
	}

	.panel
	{
		a:any-link
		{
			color: #AAA;
			display: block;
		}
	}
}


#context-menu
{
	position: fixed;
	z-index: 9999;
	background-color: oldlace;
	color: #111;
	box-shadow: var(--box-shadow);
	font-size: 0.75em;
	font-family: mono, "Liberation Sans", Arial;

	.group {
		.header {
			cursor: default;
			margin-left: 1em;
		}

		.item {
			padding: 0 2em;
		}
	}

	.item {
		padding: 0 1em;
		cursor: pointer;
		background-color: oldlace;
		border: outset 2px oldlace;
		white-space: pre;

		&:hover {
			background-color: skyblue;
			text-decoration: underline;
		}
		&:active {
			border-style: inset;
		}
	}

	.sub {
		.header {
			background-color: oldlace;
			border: outset 2px oldlace;
			padding: 0 1em;
			cursor: default;

			&::after {
				content: "▽";
				float: right;
			}

			&:hover {
				background-color: skyblue;
				text-decoration: underline;
			}
		}

		.sublist {
			max-height: 100vh;
			margin: 0;
			position: fixed;
			overflow: auto;
		}
	}
}


#advanced-search
{
	font-family: Helvetica, Arial, sans-serif;
	color: var(--box-color);
	font-size:14px;

	summary {
		padding: 0.5em 0;
		cursor: default;
	}

	>div {
		display: flex;
		flex-direction: column;
		gap: 0.2em;
		background-color: var(--box-background-color);
		box-shadow: var(--box-shadow);
		padding: 1em;
	}

	label {
		display: block;
	}

	fieldset {
		border: 1px solid var(--box-color-secondary);
		padding: 1em;
	}

	ul {
		margin: 0;
		padding: 0;
		ul {
			padding-left: 2em;
		}
	}
}

#advanced-search input
{
	width:auto;
}


.login,
.register {
	form {
		display: inline-flex;
		flex-direction: column;
		gap: 1em;
		padding: 1em;

		label {
			display: flex;
			flex-direction: column;
			align-content: center;
			gap: 0.2em;
		}

		.captcha img {
			display: block;
			background: white;
		}
	}
}

.sessions {
	table {
		td.current-active {
			text-align: center;
			font-size: 1.5em;
			color: #4C4;
		}

		td.key {
			font-family: mono;
			font-size: 0.8em;
		}
	}
}

.upload {
	form {
		display: inline-flex;
		flex-direction: column;
		gap: 1em;
		padding: 1em;

		label {
			display: flex;
			flex-direction: column;
			align-content: center;
			gap: 0.2em;
		}

		label.checkbox {
			flex-direction: row;
		}
	}
}


.options {
	form {
		display: inline-flex;
		flex-direction: column;
		gap: 1em;
		padding: 1em;

		label {
			display: flex;
			flex-direction: column;
			align-content: center;
			gap: 0.2em;
		}

		label.checkbox {
			flex-direction: row;
		}
	}
}

/*---------- LOGS -----------*/

.log table
{
	display: inline-block;
}

.log td
{
	max-width: 20em;
	word-break: break-word;
}

.log table.description td
{
	white-space: pre-wrap;
}

.log table caption
{
	background-color: #4E586A;
	color: #EDE;
	font-weight: bold;
	border-radius: 3px 3px 0 0;
}

.log .diff-new
{
	background-color:green;
}

.log .diff-del
{
	background-color:red;
}

.log .action-create
{
	background-color: yellowgreen;
	color: black;
	font-weight: bold;
	padding: 0.1em;
	user-select: none;
}

.log .action-modify
{
	background-color: goldenrod;
	color: black;
	font-weight: bold;
	padding: 0.1em;
	user-select: none;
}

.log .action-delete
{
	background-color: #f0362d;
	color: black;
	font-weight: bold;
	padding: 0.1em;
	user-select: none;
}

.log .action-create:any-link,
.log .action-delete:any-link
{
	color: black;
}

.log .post
{
	border-radius: 1em;
	border: 4px grey ridge;
	padding: 1em;
	background-color: #0014;
	vertical-align: top;
}

.log .post .thumbnail
{
	left: 50%;
	transform: translateX(-50%);
}

.log .post table
{
	vertical-align: top;
}

.log .tags-table td
{
	padding: initial;
}

/*---------- COMICS ---------*/

#comics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: first baseline;

	.comic {
		a:any-link {
			color: inherit;
		}

		margin: 1em;
		max-width: -moz-min-content;
		max-width: min-content;
		min-width:256px;

		.tag {
			font-size: 0.9em;
		}

		img {
			max-width: 400px;
			max-height: 400px;
			margin-bottom: 0.6em;
		}

		.title .chapters {
			text-align: left;
			padding-left:2em;
			max-height: 200px;
			overflow: auto;
		}
	}
}

.comic-search
{
	width:100%;
}

.comic-search form
{
	width: 50%;
	max-width: 500px;
	z-index:1;
}

.comic-search input
{
	width: 100%;
	text-align: center;
}

#comic-container h1, #comic-container h2
{
	text-shadow: 3px 3px #213;
}

.comic-strip
{
	display: flex;
	margin: 1em;
	overflow: auto;
}

.comic-strip .thumbnail
{
	width:auto;
	height:auto;
	margin: 0.3em;
}

.comic-strip .thumbnail img
{
	position:relative;
	top:auto;
	left:auto;
	transform:none;
}

.chapter-card a:any-link
{
	color: #AAA;
}
.comic-title
{
	font-size: 1.5em
}

.chapter-title
{
	padding-left: 1em;
	font-size: 1.3em;
}

#comic {
	display: flex;
	flex-direction: column;
	gap: 3em;

	.title {
		font-size: 2em;
		text-align: center;
		font-weight: bold;
	}

	.chapters {
		display: flex;
		flex-wrap: wrap;
		gap: 1em;
		justify-content: space-evenly;
		align-items: center;

		a:any-link {
			text-decoration: none;
		}

		.chapter {
			min-width: 25rem;;
			padding: 1em;

			.cover img {
				max-width: 512px;
				max-height: 512px;
			}

			.title {
				font-size: 1.25em;
				font-weight: initial;
			}

			.meta {
				display: flex;
				justify-content: space-between;
				font-size: 0.9em;
			}
		}
	}
}

#comic.edit {
	gap: 1em;
	align-items: start;

	fieldset {
		border: 1px solid #666;

		&.wrapper {
			display: flex;
			flex-wrap: wrap;
			gap: 1em;
		}
	}

	form {
		display: flex;
		flex-direction: column;
		gap: 1em;

		label {
			display: flex;
			flex-direction: column;
			align-content: center;
			gap: 0.2em;
		}
	}
}

.cpage-container
{
	/* background-color: #556; */
	display: flex;
	margin:1em;
	position:relative;
	padding;1em;
	overflow: auto;
}

.cpage-container img
{
	box-shadow:5px 3px 5px #213;
	border: 1px solid black;
}

.control-panel
{
	display: block;
	position: fixed;
	left: 0px;
	bottom: 0px;
	margin: 1em;
	z-index: 1;
	cursor: pointer;
}

.control-panel label
{
	background-color: grey;
	display: block;
	border: 2px outset black;
	color: black;
	user-select: none;
}

.hide
{
	display: none;
}

#toggle-capheight:checked ~ #comic-container .comic-page img
{
	max-height: 95vh;
}

#toggle-capheight:checked ~ .control-panel #button-capheight,
#toggle-center:checked ~ .control-panel #button-center,
#toggle-odds:checked ~ .control-panel #button-odds,
#toggle-even:checked ~ .control-panel #button-even
{
	border: 2px inset black;
}

#toggle-center:checked ~ #comic-container .comic-page
{
	position: relative;
	left:50%;
	transform: translate(-50%);
	max-width: max-content;
	max-width: -moz-max-content;
}

#toggle-even:checked ~ #comic-container
{
	display: grid;
	grid-auto-columns: 50%;
}

#toggle-even:checked ~ #comic-container .comic-page:nth-child(even)
{
	grid-column: 1/2;
	padding-right: 0;
	margin-right: 0;
	justify-self: end;
}

#toggle-even:checked ~ #comic-container .comic-page:nth-child(odd)
{
	grid-column: 2/2;
	padding-left:0;
	margin-left:0;
}

#toggle-odds:checked ~ #comic-container
{
	display: grid;
	grid-auto-columns: 50%;
}

#toggle-odds:checked ~ #comic-container .comic-page:nth-child(odd)
{
	grid-column: 1/2;
	padding-right: 0;
	margin-right: 0;
	justify-self: end;
}

#toggle-odds:checked ~ #comic-container .comic-page:nth-child(even)
{
	grid-column: 2/2;
	padding-left:0;
	margin-left:0;
}

.comic-page
{
	position:relative;
	padding:1em;
	margin-bottom:1em;
	background-color: var(--box-background-color);
	color: var(--box-color);
	width: fit-content;
}

.comic-page img
{
	max-width: 100%;
}

.comic-page .description
{
	padding: 0.5em;
}

.comic-thumb
{
	padding:3px;
	word-break: break-all;
	position:relative;
	left:128px;
	margin-left: -128px;
	transition:margin-left 0.07s;
}

.comic-thumb.cover
{
	background-image: linear-gradient(to right, rgba(0.2, 0.2, 0.2, 1.0), rgba(0.5, 0.5, 0.5, 0.7));
	text-align: center;
	color: white;
	width: 150px;
	height: 256px;
	box-shadow: 3px 3px 6px #213;
}

.comic-thumb img
{
	max-width:256px;
	max-height:512;
	min-width:150px;
}

.comic-thumb:hover:not(:first-child)
{
	margin-left:-1px;
}


/*-------------TAGS-----------*/

.tagbox
{
	color: black;
}

.tagbox span
{
	display: inline-block;
	padding:0.1em; 
}

.tagbox .namespace-none
{
	background-color: var(--box-background-color);
	color: var(--box-color);
}

.tagbox.hint
{
	pointer-events: none;
	z-index:500;
	position:fixed;
	left:0px;
	bottom:0px;
	display:none;
	background-image: linear-gradient(rgba(0.2, 0.2, 0.2, 0.9), rgba(0.2, 0.2, 0.2, 0));
	padding:1em;
	padding-bottom:2em;
	width: 20%;
	font-family: "Liberation Sans", Arial;
	font-size:14px;
}

.tagbox.hint .score
{
	color: #AAA;
}

#tags
{
	width: 100%;
	background-color: var(--box-background-color);
	color: var(--box-color);
	border-spacing: 5px 0px;
	box-shadow: var(--box-shadow);
}

#tags .tag
{
	max-width: 150px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#tags .tag span
{
	white-space: pre;
}

#tags td
{
	padding: 1 2;
}

#tags:hover .tag
{
	max-width: 100%;
}

#tags .counter
{
	float: right;
}

.tag a:any-link
{
	color: inherit;
	text-decoration: none;
}

/* Undefined namespaces here */
.tag
{
	font-family: "Liberation Sans", Arial;
	background-color:#7d5900;;
	color:#F0F0F0;
}

.namespace-none
{
	background-color: initial;
	color:inherit;
}

.namespace-rating
{
	background-color: #1c66b5;
	color:#EEE;
}

.namespace-meta
{
	background-color:#CCD;
	color:#000;
}

.namespace-medium
{
	background-color:#403040;
	color:#CCD;
}

.namespace-series
{
	background-color: #79267c;
	color:#EED;
}

.namespace-gender
{
	background-color: #c6717d;
	color:#000;
}

.namespace-species
{
	background-color: #144413;
	color:#BDD;
}

.namespace-creator
{
	background-color: #8a1422;
	color:#FDD;
}
.namespace-character
{
	background-color:#b7a544;
	color:#000;
}

#suggestedtags ul
{
	margin: 0;
}

#suggestedtags li
{
	display:inline;
	margin:5px;
}

#stbox
{
	position: absolute;
	background-color:white;
	border:2px solid;
	z-index: 10;
	box-shadow: 4px 4px #213;
	padding: 3px;
	color: black;

	.choice {
		&:hover,
		&.selected {
			text-decoration: underline;
		}
	}
}

/*------------THUMBNAILS------------------*/

.thumbnail
{
	position: relative;
	/*margin:3px;*/
	width:256px;
	height:256px;
	word-wrap: break-word;
	/*border: 1px solid red;*/
}

.thumbnail .overlay-bl:hover
{
	z-index: 10000;
	background-color: #000A;
	outline: solid white 1px;
}

.thumbnail .overlay-bl
{
	position: absolute;
	bottom: 0px;
	left: 0px;
	color: white;
	text-shadow: 1px 1px 2px black;
	font-size: 18px;
	background-color: #6666;
	margin: 0.1em;
	padding: 0.1em;
	border-radius:4px;
}

.thumbnail form
{
	margin: unset;
}

.thumbnail .overlay-bl button
{
	color: inherit;
	background-color: unset;
	border: unset;
	font-size: inherit;
	padding: inherit;
	text-shadow: inherit;
	cursor: pointer;
}

.thumbnail.video .overlay-br
{
	position:absolute;
	background-image:url(/static/video.png);
	background-repeat:no-repeat;
	background-size:contain;
	height:32px;
	width:32px;
	right:0px;
	bottom:0px;
}

.thumbnail img
{
	position: absolute;
	max-width:256px;
	max-height:256px;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.thumbnail .preview
{
	pointer-events: none;
	display:none;
	position:fixed;
	top: 50%;
	left: 50%;
	max-width: 100%;
	max-height: 100%;
	transform: translate(-50%, -50%);
	z-index: 1000;
}

.thumbnail:hover .preview
{
	display:inherit;
}

.thumbnail:hover .hint
{
	display:inherit;
}

/*---------------------------*/

.message
{
	border:solid;
	background-color:grey;
	color:black;
	padding:2em;
}

.message-text
{
	border:dotted;
	padding:1em;
	white-space:pre-line;
}

#posts > a
{
	margin: 0.4em;
	background-color: #0005;
}

.dead-center,
.centered
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.center,
.centHorizont
{
	position: relative;
	display: inline-block;
	left:50%;
	transform: translate(-50%);
}

.thumbnail .full
{
	display:none;
}

.thumbnail .mimetype
{
	background-image: linear-gradient(to top left, #AAA, #666);
	width: 100%;
	height: 100%;
}

#content
{
	position: relative;
	/* background-color:red; */
	/* background-color:#33343E; */
	display:flex;
}

#posts
{
	position: relative;
	display:flex;
	flex-flow: wrap;
	margin: 0px;
}

#post {
	.comments {
		.comment-form {
			display: flex;
			flex-direction: column;
			gap: 0.2em;
			align-items: start;
		}
	}

	.data {
		display: flex;
		align-items: start;
		gap: 1em;

		.left {
			flex: 2;
			width: 15em;

			.identity {
				display: grid;
				grid-template-columns: auto 1fr;
				font-size: 0.75em;
				font-family: mono;
				column-gap: 1em;

				.th {
					grid-column: 1 / 1;
					font-weight: 600;
				}

				.td {
					grid-column: 2 / 2;
					overflow: hidden;
					text-overflow: ellipsis;
				}
			}
		}

		.right {
			flex: 1;
			width: 15em;

			.metadata {
				font-weight: bold;
				font-size: 0.75em;
				font-family: mono;

				div {
					overflow: hidden;
					text-overflow: ellipsis;
					white-space: nowrap;
				}

				.metadata-namespace {
					font-style: italic;
					margin-top: 0.5em;
					text-align: center;
					border-top: ridge #74C 2px;
				}
			}
		}
	}
}

#post .preview::before {
	text-transform: capitalize;
	content: "preview image";
	display: block;
	text-align: center;
	background-color: #60407A;
	color: #EEE;
	margin-bottom: 0.5em;
}

#post #fullsize
{
	max-width: 100%;
}

#post #fullsize:target
{
	max-width: unset;
}

#filenames
{
	display: inline-block;
}

#filenames ul
{
	margin: 0;
}


.description
{
	white-space: pre-wrap;
	clear: both;
}

.spantop span
{
	vertical-align: top;
}

.user-frame
{
	display: inline-block;
	min-width: 5em;
	min-height: 1em;
	background-color: #8022CE;
	text-align: center;
	font-weight: bold;
}

.user-frame:any-link
{
	color: white !important;
	text-decoration: none;
}

#profile>div
{
	margin: 1em;
}

#profile div a
{
	font-weight: bold;
}

.profile-name
{
	font-size: 1.5em;
	font-weight: bold;
}

.profile-subtitle
{
	font-size: 0.7em;
	color: grey;
	text-shadow: 1px 1px 1px black;
}

.privileges {
	margin: 1em;

	span {
		text-shadow: 2px 2px 2px black;
	}

	.flag-Admin {
		color:#ff2d2d;
	}
}

.attention
{
	background-color:#000;
	color: #DDD;
	padding:0.2em 1em;
	max-width: 33em;
}

.attention a:link {
	color:#67E;
}

.attention a:visited {
	color: #A6E;
}

.constrainer
{
	display: flex;
	word-wrap: break-word;
}

.constrainer>div
{
	flex-grow: 1;
	width: 0;
}

.postcomment
{
	display: flex;

	form {
		display: inline-flex;
		flex-direction: column;
		gap: 0.5em;
		align-items: center;

		label.captcha {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 0.2em;

			img {
				display: flex;
				background: white;
			}

			input {
				width: 150px;
			}
		}
	}
}

.postcomment pre, .comment pre
{
	border: solid 1px;
	background-color:#778;
	color: #000;
	overflow: auto;
}

.comment
{
	background-color: var(--box-background-color);
	color: var(--box-color);
	box-shadow: var(--box-shadow);
	word-wrap: break-word;
	padding-left: 3px;
	padding-right: 3px;
	padding-top: 3px;
	padding-bottom: 0.2em;
	margin: 0.7em 0;
}

.comment p
{
	padding: 3px;
	margin: 0.2em 0;
}

.comment-username a:visited, .comment-username a:link
{
	color: var(--box-color);
}

.comment:target
{
	box-shadow: 0px 0px 5px 5px #7C43D0;
}


.removed,
.comic-thumb .removed
{
	border: 2px solid red;
}
.current
{
	border: 2px solid yellow;
}

.current.removed
{
	border: 2px solid;
	border-image: linear-gradient(to bottom right, yellow, red) 1;
}

.cpage
{
	position: relative;
	/*background-color: purple;*/
	width: 200px;
	height: 250px;
	margin:1em;
	display: inline-flex;
}

.cpage img
{
	position: absolute;
	max-width:200px;
	max-height:250px;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dupe-reports
{
	padding: 1em;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}

.dupe-reports .thumbnail
{
	width:auto;
	height:auto;
}

.dupe-reports img
{
	max-width:256px;
	max-height:256px;
	transform:none;
	left:0px;
	top:0px;
	position:relative;
}

@keyframes struggle
{
	0%
	{
		transform:rotate(1deg);
	}
	100%
	{	 
		transform:rotate(-1deg);
	}
}

@keyframes fade
{
	100%
	{
		opacity: 0.9;
	};
}


/*-------- DNS --------*/

.dns-card {
	position:relative;
	max-width: 1024px;
	min-width: 500px;
	min-height: 100px;
	z-index:1;

	.box {
		background-color:#303038;
	}

	.dns-banner {
		position: absolute;
		width:100%;
		height:100%;
		margin: 0 !important;
		top:0;
		left:0;
		z-index:-1;

		.dns-banner-shader {
			position:absolute;
			background-color:#0007;
			width:100%;
			height:100%;
		}

		img {
			width:100%;
			height:100%;
			object-fit:cover;
		}
	}

	.dns-segments {
		display: flex;
		gap: 1em;
		align-items: flex-start;

		.dns-profile {
			text-align: center;
			font-size: larger;
			background-color: #000A;
			padding:0.2em;
		}

		.dns-warning {
			font-size: 2em;
			font-weight: bold;
			white-space: nowrap;
			background-color: #000A;
			padding:0.2em;
		}

		.dns-tags {
			display: inline-flex;
			flex-wrap: wrap;
			gap: 0.33em;
			flex: 1;
			justify-content: end;

			.dns-tag {
				display: inline-block;
				background-color: #000A;
				padding:0.2em;
			}

		}

		.dns-sl {
			position:absolute;
			bottom:0;
			right:0;
			background-color: #000A;
			padding:0.2em;

			span {
				margin:0.2em;
			}
		}

		.dns-logo {
			background-color: #000A;
			padding:0.2em;

			a {
				position:relative;
				width:32px;
				height:32px;
				display:block;
				margin: 0.2em;
				overflow:hidden;

				img {
					position:absolute;
					max-width: 32px;
					max-height: 32px;
					top:50%;
					transform:translateY(-50%);
				}
			}
		}
	}
}

#post #image
{
	position: relative;
}

.spinner::before
{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	border: 16px solid grey;
	border-top: 16px solid blue;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	opacity: 0.75;
	animation: spin 1s linear infinite;
}

@keyframes spin
{
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#comments {
	.comment {
		display: flex;
		gap: 1em;
		padding: 1em;

		.thumbnail {
			flex: 0 0 auto;
		}
	}
}

#pool {
	display: flex;
	flex-direction: column;
	gap: 1em;

	form.column {
		display: inline-flex;
		flex-direction: column;
		gap: 1em;
		padding: 1em;

		label {
			display: flex;
			flex-direction: column;
		}
	}

	form.search {
		display: flex;
		justify-content: center;

		input {
			padding: 0.5em;
			width: 50%;
			max-width: 1024px;
		}
	}

	.posts {
		display: flex;
		flex-flow: wrap;
		gap: 1em;
	}

	.title {
		font-size: 1.2em;
		font-weight: 600;
	}

	.subtitle {
		font-size: 0.8em;
		margin-left: 1em;
	}


}
