/*	----------------------------------	*/
/*	----------------------------------	*/
/*	Adapted from: normalize.css v3.0.3	*/
/*	MIT License							*/
/*	github.com/necolas/normalize.css	*/
/*	----------------------------------	*/
/*	----------------------------------	*/
fieldset, figure, iframe, pre {
	margin: 0;
	padding: 0;
	border: 0;
}
legend, blockquote {
	padding: 0;
	border: 0;
}
/*	--------------------------	*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	padding: 0 4px;
}
/*	--------------------------	*/
template {
	display: none;
}
/*	--------------------------	*/
img {
	vertical-align: middle;
	border: 0;
}
svg:not(:root) {
	overflow: hidden;
}
/*	--------------------------	*/
/*	Hide audio sans controls.	*/
/*	--------------------------	*/
audio:not([controls]) {
	display: none;
}
/*	--------------------------	*/
/*	Prevent unwanted outline.	*/
/*	--------------------------	*/
[tabindex="-1"]:focus {
	outline: none !important;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Browser-specific shiznit.	*/
/*	--------------------------	*/
/*	--------------------------	*/
/*	Fix for	IE 10/11, Firefox.	*/
details, main, summary {
	display: block;
}
/*	--------------------------	*/
/*	Chrome/Firefox alignment.	*/
progress {
	vertical-align: baseline;
}
/*	--------------------------	*/
abbr[title] {
/*	Firefox: Fix double underline.	*/
	text-decoration: none;
/*	Chrome/Safari: Missing styling. */
	border-bottom: 1px dotted;
}
/*	--------------------------	*/
button, input[type="button"],
input[type="reset"], input[type="submit"] {
	vertical-align: middle;
	cursor: pointer;
	/*	Android 4.0: fix audio & video controls. */
	/*	iOS: Allows styling of clickable inputs. */
	-webkit-appearance: button;
}
/*	Cursor: disabled elements.	*/
button[disabled], html input[disabled] {
	cursor: default;
}
input.disabled {
	color: #666;
	font-weight: 400;
}
/*	--------------------------	*/
/*	Firefox: padding/border.	*/
button::-moz-focus-inner, input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
/*	--------------------------	*/
input[type="number"] {
	-moz-padding-end: 0;
}
/*	Chrome: fix for increment	*/ 
/*	and decrement buttons.		*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
/*	--------------------------	*/
/*	Chrome/Safari: Override		*/
/*	appearance: searchfield;	*/
input[type="search"] {
	-webkit-appearance: textfield;
	/*	NB: Use border-box?	*/
	-webkit-box-sizing: content-box;
}
/*	Chrome/Safari on OS X: Remove inner padding & search cancel button. */
/*	Safari (only) clips cancel button if search input has padding & appearance: textfield; */
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	display: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="button"], input[type="submit"],
input[type="reset"], input[type="checkbox"],
input[type="radio"] {
	cursor: pointer;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	--------------------------	*/
/*	$Base
/*	--------------------------	*/
/*	--------------------------	*/
/*	--------------------------	*/
html {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
	scrollbar-width: thin;
}
body {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh + 1px);
	margin: 0;
	padding: 0;
	background: #0000;
	font-family: 'Segoe UI', 'Trebuchet MS', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	line-height: 2rem;
	letter-spacing: .02em;
	word-spacing: .04em;
	/*	Android/iOS: Stops blue tap highlight.	*/
	-webkit-tap-highlight-color: #0000;
	/*	iOS: Stop text size change after	*/
	/*	orientation change, but allow zoom. */
	-webkit-text-size-adjust: 100%;
}
/*	--------------------------	*/
/*	--------------------------	*/
a {
	/*	------------------	*/
	/*	Corrects display	*/
	/*	of mixed rtl/ltr.	*/
	/*	------------------	*/
	direction: ltr;
	unicode-bidi: embed;
	/*	------------------	*/
	display: inline-block;
	text-decoration: none;
	/*	Semi-bold, Windows. */
	font-weight:600;
}
@media (hover:none) {
	a {
		/*	Android, etc.	*/
		font-weight:500;
	}
}
a:hover, a:focus, a:active {
	text-decoration: underline;
	outline: 0;
}
/*	----------------------	*/
/*	----------------------	*/
/*	Skiplink/top/bottom.	*/
/*	----------------------	*/
#skiplink {
	position: fixed;
	display: block;
	top: 1em;
	left: -20ch;
	z-index: 99;
	width: 18ch;
	max-width: 90vw;
	padding: 1em 0;
	font-size: 1.8rem;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
	opacity: 0;
	transition: left 1s step-end, opacity 1s;
}
#skiplink:hover, #skiplink:focus {
	left: calc(50vw - 9ch);
	opacity: 1;
	outline: none;
	transition: none;
}
.custom_anchor {
	background: var(--upperback);
}
.custom_anchor::before {
	color: var(--groovebot);
	font-weight: 400;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Is this necessary?		*/
/*	Used for #top, #bottom,		*/
/*	#unread and #start-here		*/
/*	--------------------------	*/
a.anchor {
	display: block;
}
/*	--------------------------	*/
/*	--------------------------	*/
button {
	overflow: visible;
	padding: 0;
	text-transform: none;
}
input, button, select, optgroup, textarea {
	box-sizing: border-box;
	margin: 0;
	color: inherit;
	font-family: 'Segoe UI', 'Trebuchet MS', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	line-height: 2rem;
	border: 1px solid;
}
/*	--------------------------	*/
/*	--------------------------	*/
label {
	padding-right: 5px;
	cursor: pointer;
}
label input, label img {
	vertical-align: middle;
}
/*	--------------------------	*/
/*	--------------------------	*/
select {
	vertical-align: middle;
	text-transform: none;
	cursor: pointer;
}
select:focus {
	outline-style: none;
}
option {
	padding-right: 1em;
}
select optgroup option {
	padding-right: 1em;
}
option.disabled-option {
	color: graytext;
}
.sep {}
/*	--------------------------	*/
/*	--------------------------	*/
textarea {
	max-width: 100%;
}
textarea:hover, textarea:focus {
	outline: none;
}
textarea, pre {
	overflow: auto;
	padding: 6px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	NB: Fix inconsistent <em>	*/
/*	styling, for all browsers.	*/
/*	--------------------------	*/
code, kbd, pre, samp {
	font-family: Monaco, "Andale Mono","Courier New", Courier, monospace;
	font-size: 1em;
}
/*	------------------	*/
/*	------------------	*/
/*	Horizontal rules.	*/
/*	------------------	*/
hr {
	height: 1px;
	margin: 1rem 0;
    background: var(--groovetop);
	border: solid var(--groovebot);
    border-width: 0 0 2px;
}
.page-body > hr, hr.divider {
	display: none;
}
hr.dashed {}
/*	--------------------------	*/
/*	--------------------------	*/
.hidden {
	display: none;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Common heading tags.		*/
/*	--------------------------	*/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-size: 1em;
	font-weight: 400;
}
h1, h1 + p {
	position: absolute;
	z-index: -1;
}
h2 {
	padding: 16px 8px;
	font-weight: 400;
	font-size: 2rem;

	a {
		font-weight: 400;
	}
}
.panel h2 {
	margin: .5em 0;
	padding-block: 0 .5em;
	color: var(--commontex);
	font-size: 1.6rem;
}
.markread-bar {
	display: flex;
	flex-wrap: wrap;
	padding: 12px 8px;

	.mark_read {
		margin-inline-start: auto;
	}
	h2 {
		padding: 4px 0;
	}
	h2 + .mark_read {
		margin-top: .7rem;
		padding-inline: 8px 0;
	}
}
#memberlist_search:not([style*="none"]) + form > h2 {
	padding-top: 8px;
}
.viewonline-title + p {
	margin-inline: 4px;
	color: var(--commonbac);
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Text-specific tags.			*/
/*	--------------------------	*/
/*	--------------------------	*/
small {
	font-size: 1.2rem;
}
.small {
	font-size: 1.2rem !important;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Safeguard for line-height.	*/
/*	--------------------------	*/
sub, sup {
	position: relative;
	font-size: 1rem;
	line-height: 0;
	vertical-align: baseline;
}
sup {
	top: -.5em;
}
sub {
	bottom: -.25em;
}
/*	--------------------------	*/
/*	--------------------------	*/
b, optgroup, strong {
	font-weight: 700;
}
i, em, dfn {
	font-style: italic;
}
u {
	text-decoration: underline;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Paragraph tags & classes.	*/
/*	--------------------------	*/
p {
	margin: .5em 0;
	padding: 0;
}
.page-body > p {
	padding: 0 4px;
}
p.right {
	text-align: end;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Ordered, unordered, and		*/
/*	description list tags.		*/
/*	--------------------------	*/
ol, ul, li, dl, dt, dd {
	margin: 0;
	padding: 0;
}
ol {
	list-style: decimal;
}
ul {
	list-style: disc;
}
ul ul, ol ul {
	list-style: circle;
}
ol ol ul, ol ul ul, ul ol ul, ul ul ul {
	list-style: square;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Overall width control.		*/
/*	--------------------------	*/
.wrap {
	box-sizing: border-box;
	width: 112rem;
	max-width: calc(100% - 30px);
	margin: 0 auto;
}
#sitemenubar .wrap, #page-footer .wrap {
	padding-inline: 12px;
}
#wrap {
	flex: 1 0 auto;
	padding: calc(2.8rem + 40px) 0 40px;
	/*	--------------------------	*/
	/*	ucp_pm_viewmessage_print	*/
	/*	and viewtopic_print.html	*/	
	/*	--------------------------	*/
	.top-anchor {
		display: block;
		position: absolute;
		top: -20px;
	}
}
/*	--------------------------	*/
#page-footer {
	flex: none;
	padding-block: 3px;
}
.copyright {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-block: 6px;
	line-height: 2;
}
.footer-row {
	width: max-content;
	min-width: 35%;
	font-size: 1.2rem;
}
.footer-row:nth-child(even) {
	text-align: end;
}
/*	--------------------------	*/
#page-body > #login,
#page-body > #agreement {
	padding: 8px 0 40px;
}
.page-body > #login .content {
	width: fit-content;
	margin: 0 auto;	
}
.agreement, .agreement-text {
	margin-bottom: 10px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Basic panels.
/*	--------------------------	*/
/*	--------------------------	*/
.forabg, .forumbg {
	position: relative;
	padding: 10px 10px 4px;
}
.panel, .post {
	position: relative;
	padding: 10px;
}
.forabg, #wrap > div:last-child {
	margin-bottom: 20px;
}
.forumbg, .panel, .post {
	margin-block: 12px;
}
.cp-main .panel {
	margin: 0;
	padding: 0;
}
h2 + form > .panel:first-child,
.tabs + .panel, .tabs + form > .panel {
	margin-top: 0;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Various lists.
/*	--------------------------	*/
/*	--------------------------	*/
#nav-main {
	padding: 6px 0;
}
.navlinks {
	padding: 4px 0 0;
}
/*	@WIP: Simplify?	*/
.linklist > li {
	list-style: none;
	float: left;
	width: auto;
	margin-right: 7px;
}
.breadcrumbs {
	overflow: auto;
	display: flex;
	margin: !important;
	float: none !important;
	scrollbar-width: thin;
}
.crumb {
	white-space: nowrap;
}
.crumb:last-child a {
	font-variant-caps: small-caps;
}
.crumb:not(:first-child):before {
	vertical-align: top;
	padding-inline: .3em 0;
	content: '\27a4';
}
.crumb a {
	display: inline-block;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Is text-align needed?	*/
/*	--------------------------	*/
.linklist > .rightside,
p.rightside, a.rightside {
	float: right;
	margin-right: 0;
	margin-left: 7px;
	text-align: end;
}
/*	@WTF?	*/
ul.rightside {
	float: right;
	margin: 0 -5px 0 5px;
	text-align: end;
}
ul.leftside {
	float: left;
	margin: 5px 0 0 0;
	text-align: start;
}
/*	--------------------------	*/
/*	--------------------------	*/
.linklist >.responsive-menu {
	position: relative;
	margin: 0 5px 0 0;
}
.responsive-menu:before {
	display: none !important;
}
.hasjs .linklist.leftside, .hasjs .linklist.rightside {
	max-width: 48%;
}
.hasjs .linklist.fullwidth {
	max-width: 100%;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Bulletin icons for lists.	*/
/*	NB: Only no-bulletin used.	*/
/*	--------------------------	*/
.bulletin > li:before {
	content: "\2022";
	padding-inline-end: 4px;
}
.bulletin > li:first-child:before,
.bulletin > li.no-bulletin:before {
	content: none;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Used in navbar_header.html	*/
/*	NB: Needs no-avatar backup	*/ 
/*	--------------------------	*/
.header-avatar:hover, .header-avatar:focus {
	text-decoration: none;
}
.header-avatar:hover .username-coloured,
.header-avatar:focus .username-coloured {
	box-shadow: 0 2px 0;
}
.header-avatar img {
	vertical-align: top;
	max-height: 2.2rem;
	width: auto;
	margin: 0 3px 0 6px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Navbar notifications/PM's.	*/
/*	--------------------------	*/
#user_pm {
	position: relative;
}
.badge {
	position: absolute;
	left: .8em;
	bottom: 90%;
	padding: 2px 12px;
	color: #fff;
	border-radius: 12px 5px 5px 0;
}
.badge.hidden {
	display: none;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Common table classes.		*/
/*	--------------------------	*/
/*	--------------------------	*/
.table1 {
	width: 100%;
}
.ucp-main .table1 {
	padding: 2px;
}
.forumbg-table {
	padding-bottom: 10px;
}
.table1 tr {
	border: 1px solid var(--darkerbor);
}
.table1 th {
	padding: 5px;
	font-weight: 400;
}
.table1 th span {
	padding-inline-start: 7px;
}
.table1 td {
	padding: 5px;
	font-size: 1.2rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Specific column styles.		*/
/*	--------------------------	*/
/*	--------------------------	*/
.table1 .center	{
	text-align: center;
}
.table1 .name {
	text-align: start;

	.rank-img {
		float: right;
		padding-inline-start: 7px;
	}
}
.table1 .mark, .table1 .posts {
	width: 7%;
	text-align: center;
}
.table1 .info {
	width: 30%;
	text-align: start;

	div {
		overflow: hidden;
	}
}
.table1 .joined, .table1 .active {
	width: 15%;
	text-align: start;
}
.table1 .reportby {
	width: 15%;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Move to editor CSS.	*/
/*	--------------------------	*/
/*	--------------------------	*/
.color_palette_placeholder table {
	border-collapse: separate;
	border-spacing: 1px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Miscellaneous layouts.		*/
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Used for 2 column		*/
/*	layouts. Can probably be	*/
/*	simplified. CSS columns?	*/
/*	--------------------------	*/
.column1 {
	float: left;
	clear: left;
	width: 49%;
}
.column2 {
	float: right;
	clear: right;
	width: 49%;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	For floated elements.		*/
/*	--------------------------	*/
.left-box, .right-box {
	float: left;
	width: auto;
	max-width: 100%;
	text-align: start;
}
.right-box {
	float: right;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: This is always a dl.	*/
/*	--------------------------	*/
.details {
	display: flex;
	flex-wrap: wrap;
}
.details dt {
	flex: none;
	width: 30%;
	text-align: end;
	font-weight: 700;
}
.details dd {
	flex: none;
	overflow: hidden;
	width: calc(65% - 5px);
	padding-inline-start: 5px;
	text-overflow: ellipsis;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	WIP: Consider increasing	*/
/*	the line-height for all		*/
/*	instances of dl.details		*/
/*	--------------------------	*/
.profile-details {
	line-height: 2.8rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Deprecate .clearfix?	*/
/*	--------------------------	*/
.clearfix,
fieldset dl, .topiclist dl, dl.polls {
	overflow: hidden;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: This is UCP PM stuff.	*/
/*	--------------------------	*/
.fields1 ul.recipients {
	list-style: none;
	max-height: 150px;
	overflow-y: auto;
	line-height: 1.8;
}
.fields1 ul.recipients input.button2 {
	margin-right: 0;
	padding: 0;
	font-size: 1.2rem;
}
.fields1 dd.recipients {
	clear: left;
	margin-left: 1em;
}
/*	@WIP and @WTF!?!?!?	*/
.fields1 dl.pmlist > dt {
	width: auto !important;
}
.fields1 dl.pmlist dd.recipients {
	margin-left: 0 !important;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	.action-bar & .inner >		*/
/*	--------------------------	*/
.action-bar {
	display: flex;
	flex-wrap: wrap;
	margin: 12px 0;
	padding: 4px 5px;
	line-height: 2.8rem;
}
.cp-main .action-bar {
	margin: 0;
	padding: 0;
}
.markread-bar + .action-bar,
h2 + .action-bar, h2 + .panel,
h2 + form > .panel:first-child,
h2 + form > .forumbg:first-child {
	margin-top: 0;
}
.action-bar > *, 
.action-bar > .member-search.panel {
	height: 2.8rem;
	margin-block: 3px;
	margin-inline: 2px;
}
#search .button,
.action-bar .button {
	display: block;
	box-sizing: border-box;
	min-width: 3.6rem;
}
.action-bar .pagination > ul {
	display: inline-flex;
}
.pagination .button {
	min-width: unset;
	 border-radius: 0;
}
.page-jump .button,
.previous .button, .next .button {
	min-width: 3.6rem;
}
.action-bar .button,
.action-bar .search-box,
.action-bar .inputbox,
.action-bar > .pagination > * {
	height: 2.8rem;
	line-height: 2.6rem;
}
.action-bar > .button,
.action-bar > .dropdown-container,
.action-bar > form {
	margin-block: 3px;
	margin-inline: 2px;
}
/*	--------------------------	*/
/*	@NB: Simplify this?			*/
/*	--------------------------	*/
.action-bar > div > form[action*="search"] fieldset {
	display: flex;
}
/*	--------------------------	*/
.action-bar .inputbox.search {
	box-sizing: border-box;
	padding: 0 6px;
}
.button-search  {
	box-sizing: border-box;
	min-height: 2.8rem;
	line-height: 2.6rem;
}
.action-bar .button-search {
	border-width: 1px 0 !important;
}
.action-bar .button-search-end {
	box-sizing: border-box;
}
/*	--------------------------	*/
.action-bar > .dropdown-container > .button,
.action-bar > .button {
	border-radius: 3px;
}
.action-bar .inputbox,
.pagination li:first-child .button,
.pagination li:first-child span {
	 border-radius: 3px 0 0 3px;
}
.action-bar .button-search-end,
.pagination li:last-child .button,
.pagination li:last-child span {
	 border-radius: 0 3px 3px 0;
}
/*	--------------------------	*/
.bar-top .topic-tools,
.action-bar.actions-jump {
	display: none;
}
/*	--------------------------	*/
.inner .actions-jump {
	float: right;
	margin: 0;
}
.inner #jumpbox {
	margin: 0;
}
.inner .actions-jump > p {
	display: none;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Inside .action-bar.bar-top	*/
/*	--------------------------	*/
.member-search {
	padding: 0 2px;

	strong {
		display: inline-block;
	}
}
/*	--------------------------	*/
.advanced-search-link {
	margin: 9px 0;
	padding: 0 4px;
	font-size: 1.2rem;
	line-height: 2.8rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Pagination.			*/
/*	--------------------------	*/
/*	--------------------------	*/
.pagination {}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: overflow: auto; is		*/
/*	good for responsive, BUT	*/
/*	it will NOT work UNLESS		*/
/*	.page-jump .dropdown is		*/
/*	position: static;	!!!		*/
/*	--------------------------	*/
/*	--------------------------	*/
.pagination > ul {
	display: flex;
	list-style: none;
	/*
	overflow: auto;
	*/
}
.pagination li:not(:first-child) .button {
	border-left: 0;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Needs more tweaking	*/
/*	for li:nth-child borders.	*/
/*	--------------------------	*/
/*	--------------------------	*/
.pagination .active span {
	display: block;
	padding: 0 8px;
	font-weight: 700;
	border: 1px solid;
}
/*	--------------------------	*/
/*	--------------------------	*/
.pagination .page-jump i {
	font-size: 2.1rem;
}
.dropdown-page-jump input.tiny {
	width: 50px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Simplify? I think		*/
/*	these should just inherit	*/
/*	standard .button padding.	*/
/*	--------------------------	*/
.pagination .arrow a {
	padding: 2px;
}
.action-bar .pagination .arrow a {
	padding: 0 4px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Hide some stuff.		*/
/*	--------------------------	*/
.action-bar .fa-pencil,
.action-bar .fa-reply,
.row .pagination, .ellipsis {
	display: none !important;
}
.ellipsis + li a::before {
	content: '\2026';
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Alerts: jQuery popups.		*/
/*	--------------------------	*/
.phpbb_alert {
	display: none;
	position: fixed;
	z-index: 50;
	inset: 0 0 auto;
	max-width: 620px;
	margin: 150px auto 0;
	padding: 10px;

	/*	@WIP: Move to light.css	*/
	background: var(--commonbac);
	border: 4px solid var(--commonbor);
	border-radius: 8px;
	box-shadow: inset 0 0 0 1px var(--darkerbor);
}
.phpbb_alert .alert_close {
	float: right;
	margin-block: -2px 2px;
	margin-inline: 1em 0;
}
.alert_close .icon::before {
    display: block;
    width: 2rem;
    height: 2rem;
	padding: 0;
	font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
}
.phpbb_alert p {
	margin: 8px 0;
	padding-bottom: 8px;
}
.phpbb_alert label {
	display: block;
	margin: 8px 0;
	padding-bottom: 8px;
}
.darkenwrapper {
	position: relative;
	display: none;
	z-index: 44;
}
.darken {
	position: fixed;
	z-index: 45;
	inset: 0;
	background-color: #000;
	opacity: .5;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Clean this up.		*/
/*	--------------------------	*/
.loading_indicator {
	display: none;
	opacity: .8;
	height: 50px;
	width: 50px;
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 51;
	margin-top: -50px;
	margin-left: -50px;
	background: #000 url("./images/loading.gif") 50% 50% no-repeat;
	border-radius: 5px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Miscellaneous.		*/
/*	--------------------------	*/
.rules {
	margin: 7px 0;
	padding: 9px;
	border-radius: 7px;
}
.rules ul, .rules ol {
	margin-left: 20px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Statistics.					*/
/*	@NB: Clean this up.			*/
/*	--------------------------	*/
.stat-block {
	padding: 3px;
}
.stat-block > p {
	margin: 0 0 6px;
	font-size: 1.2rem;
	line-height: 1.8rem;
}
.birthday-list > h3,
.birthday-list > p,
.statistics > h3,
.statistics > p {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.8rem;
}
.stat-block.birthday-list > h3::after,
.stat-block.statistics > h3::after {
	content:':';
}
/*	----------------------	*/
/*	----------------------	*/
/*	Who is online pop-up.	*/
/*	----------------------	*/
#viewonline_whois h2 {
	padding: 0 6px 6px;
	font-size: 1.8rem;
}
#viewonline_whois pre {
	font-size: 1.3rem;
	line-height: 1.9rem;
	border-bottom: 1px solid;
}
#viewonline_whois > a {
	display: block;
	width: 11em;
	margin: 6px auto;
	text-align: center;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Ancient float clears.	*/
/*	Can I deprecate all of it?	*/
/*	--------------------------	*/
/*	container/container-fluid	*/
/*	are used in a few obscure	*/
/*	PHP/Twig files in /vendor	*/
/*	--------------------------	*/
.container:before, .container:after,
.container-fluid:before, .container-fluid:after,
/*	--------------------------	*/
/*	@NB: Possibly necessary.	*/
.inner:after,
/*	--------------------------	*/
/*	@NB: Flex all linklists?	*/
.linklist:after,
/*	--------------------------	*/
/*	@NB: Possibly necessary.	*/
.notification_text:after
/*	--------------------------	*/
{
	display: block;
	clear: both;
	content: '';
}
/*	--------------------------	*/
/*	NB: These are bollocks!		*/
/*	Find a saner alternative.	*/
/*	Only 5 tags, in 4 files:	*/
/*	memberist_email.html		*/
/*	memberlist_search.html		*/
/*	posting_attach_body.html	*/
/*	ucp_agreement.html			*/
/*	--------------------------	*/
.clear {
	overflow: hidden;
	display: block;
	clear: both;
	max-height: 1px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	------ End of file. ------	*/
/*	--------------------------	*/
/*	--------------------------	*/
