/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Dropdown menus.		*/
/*	--------------------------	*/
/*	--------------------------	*/
.dropdown-container {
	position: relative;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	NB: Deprecate & use flex?	*/
/*	--------------------------	*/
.dropdown-container-right {
	float: right;
}
.dropdown-container-left {
	float: left;
}
/*	--------------------------	*/
/*	--------------------------	*/
.dropdown {
	display: none;
	position: absolute;
	z-index: 2;
	top: 100%;
	left: 0;
	margin-right: -500px;
	padding: 9px 0 0;
}
.dropdown-up .dropdown {
	top: auto;
	bottom: 100%;
	padding: 0 0 9px;
}
.nojs .dropdown-container:hover .dropdown {
	display: block;
}
.dropdown-container.topic-tools {
	float: left;
}
.dropdown-left .dropdown, .nojs .rightside .dropdown {
	right: 0;
	left: auto;
	margin-right: 0;
	margin-left: -500px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Responsive menus?		*/
/*	--------------------------	*/
.responsive-menu.dropdown-right .dropdown {
	left: -9px;
}
.responsive-menu.dropdown-left .dropdown {
	right: -6px;
}
.linklist.compact .rightside > a > span,
.dropdown .clone.hidden,
.dropdown .clone.hidden + .separator {
	display: none;
}
.dropdown .clone.hidden + li {
	border: 0;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Simplify this?			*/
/*	--------------------------	*/
.pointer {
	position: absolute;
	display: block;
	top: -4px;
	left: 4px;
	border-style: solid;
	border-width: 0 11px 11px;
}
.dropdown-up .pointer {
	top: auto;
	bottom: -4px;
	border-width: 11px 11px 0;
}
.pointer-inner {
	display: none;
}
.dropdown-left .pointer,
.nojs .rightside .pointer {
	right: 4px;
	left: auto;
}
.dropdown-contents {
	list-style: none;
	overflow: hidden;
	overflow-y: auto;
	max-height: 300px;
	padding: 5px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Jumpbox shiznit.		*/
/*	--------------------------	*/
.jumpbox, .jumpbox-return {
	margin: 5px 0;
}
.jumpbox-return {
	float: left;
}
.jumpbox .dropdown-contents {
	padding: 0;
}
.jumpbox .dropdown-contents a {
	display: block;
	width: auto;
	margin-right: 20px;
	padding: 0 10px;
	white-space: nowrap;
	text-decoration: none;
}
.jumpbox .spacer {
	display: inline-block;
	width: 0px;
}
.jumpbox .spacer + .spacer {
	width: 20px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/* 	@NB: Half of this probably	*/
/*	redundant. Check details.	*/
/*	--------------------------	*/
/*	--------------------------	*/
.dropdown li {
	font-size: 1.3rem;
	line-height: 2.9rem;
	text-align: start;
	white-space: nowrap;
}
.dropdown li:first-child {
	border: 0;
	box-shadow: none;
}
.dropdown .separator {
	display: none;
}
.dropdown li li {
	padding-left: 18px;
}
.dropdown li li:first-child {
	margin-top: 4px;
}
.dropdown-nonscroll > li {
	padding-right: 0;
}
.dropdown.wrap li, .dropdown-extended li {
	white-space: normal;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Notifications.		*/
/*	Should be with the CSS		*/
/*	for standard dropdowns.		*/
/*	--------------------------	*/
.dropdown-extended {
	display: none;
	z-index: 1;
}
/* @WIP: Minor clean up?	*/
.dropdown-extended ul {
	max-height: 350px;
	overflow-y: auto;
	overflow-x: hidden;
	clear: both;
}
.dropdown-extended li {
	clear: both;
	float: none;
	position: relative;
	list-style: none;
	margin: 0 !important;
	padding: 0;
	font-size: 1.3rem;
	border-top: 1px solid;
}
.dropdown-extended .no_notifications {
	padding: 10px;
}
/* @WIP: Minor clean up?	*/
.dropdown-extended .dropdown-contents {
	width: 340px;
	max-height: none;
	padding: 0;
}
.nojs .dropdown-extended .dropdown-contents {
	position: relative;
}
.dropdown-extended .header {
	/*	Bit of a fudge. :P	*/
	margin-bottom: 1px;
	padding: 0 10px;
	font-weight: 700;
	line-height: 3em;
	text-align: start;
	text-transform: uppercase;
	border-bottom: 1px solid;
}
.dropdown-extended .header_settings {
	float: right;
	font-weight: 400;
	text-transform: none;
}
.dropdown-extended .header_settings a {
	display: inline-block;
	padding: 0 5px;
}
.dropdown-extended .header:after {
	display: table;
	clear: both;
	content: '';
}
.dropdown-extended .footer {
	text-align: center;
}
/* @WIP: Minor clean up?	*/
.dropdown-extended li a,
.notification_list dt > a,
.dropdown-extended .footer > a {
	display: block;
	text-decoration: none;
}
.dropdown-extended li a, .dropdown-extended .no-url {
	padding: 8px;
}
.dropdown-extended .footer > a {
	padding: 5px 0;
	border-top: 1px solid;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Some of this may be MCP.	*/
/*	--------------------------	*/
/* @WIP - Minor clean up? */
.notification_list li img {
	float: left;
	width: auto !important;
	height: auto !important;
	max-width: 50px;
	max-height: 50px;
	margin-right: 5px;
}
/* @WIP: Minor clean up?	*/
.notification_list li p {
	margin: 0;
	line-height: 1.9rem;
}
/* @WIP: Minor clean up?	*/
.notification-reference, .notification-reason {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.notification-time {
	margin: 0;
	color: #4c5d77;
	font-size: 1.2rem;
	text-align: end;
}
/* @WIP: Minor clean up?	*/
div.notifications {
	margin-left: 50px;
	padding: 0 5px;
}
div.notifications a {
	display: block;
}
/* @WIP: Minor clean up?	*/
.notifications_title {
	font-size: 1.6rem;
}
.notifications_time {
	font-size: 1.2rem;
}
.notification_text {
	margin-left: 58px;
}
.notification-reported strong,
.notification-disapproved strong {
	color: #d31141;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Mark notifications read.	*/
/*	@WIP: This smells funny.	*/
/*	--------------------------	*/
.dropdown-extended a.mark_read {
	display: none;
	box-sizing: border-box;
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 0;
	margin-top: -20px;
	background-color: #fff;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	border-radius: 3px 0 0 3px;
}
.dropdown-extended li:hover a.mark_read {
	display: block;
}
.dropdown-extended a.mark_read:hover {
	width: 50px;
}

/*	--------------------------	*/
/*	--------------------------	*/
/*	$Links
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Do I want it inline?	*/
/*	--------------------------	*/
.username-coloured {
	display: inline;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	NB: Keep div for events?	*/
/*	--------------------------	*/
.back2top {
	clear: both;
}
.back2top .top {
	display: none;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: RSS feed icons in		*/
/*	forumlist_body.html			*/
/*	Why the fuck is this here?	*/
/*	--------------------------	*/
.feed-icon-forum {
	float: right;
	margin: 3px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	On to boards and topics...	*/
/*	--------------------------	*/
.topiclist li {
	position: relative;
	list-style: none;
}
li.row {
	padding: 7px 0;
}
.topiclist dl {
	display: flex;
}
.header .row-item {
	padding: 0 2px 6px;

	a {
		color: var(--commontex);
		font-weight: 400;
	}
}
.topiclist dt {
	box-sizing: border-box;
	width: calc(100% - 38rem);
	font-size: 1.3rem;
	line-height: 1.9rem;
}
.header dt {
	font-size: 1.6rem;
	line-height: 2rem;
}
.topiclist.forums dt,
.topiclist.topics dt,
.topiclist.pmlist dt,
.topiclist.cplist dt {
	padding-inline: 3.8rem 1rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Topic and message icons.	*/
/*	--------------------------	*/
.row-item dt {
	background-position: 0 90%;
	background-repeat: no-repeat;
	background-size: 16px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Attachment icons, etc.		*/
/*	--------------------------	*/
.topic-poster > .icon:first-child {
	position: absolute;
	top: 34px;
	left: 22px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Use inline-block?		*/
/*	--------------------------	*/
.list-inner a {
	display: inline;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Responsive board images.	*/
/*	--------------------------	*/
.forum-image img {
	max-width: 100%;
}
.forum-image {
	display: block;
	padding: 3px 3px 3px 0;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Forum and topic titles.		*/
/*	--------------------------	*/
.forumtitle, .topictitle {
	font-size: 1.4rem;
	line-height: 1.8rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Subforums in columns.		*/
/*	--------------------------	*/
.subforums_wrap {
	padding-top: 4px;
}
.subforums {
	position: absolute;
	z-index: -1;
}
.subforum {
	display: block;
	overflow: hidden;
	margin-block: 4px;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Deprecate these?		*/
/*	--------------------------	*/
.header .row-item dd {
	font-size: 1.3rem;
	line-height: 1.9rem;
	padding: 2px 4px 0;
}
.topiclist .header dd {
	opacity: 0;
}
.topiclist dd {
	box-sizing: border-box;
	padding: 0 0 0 4px;
}
.topiclist dd dfn {
	position: absolute;
	z-index: -3;
}
/*	--------------------------	*/
/*	--------------------------	*/
.topiclist .redirect, .topiclist .lastpost {
	width: 29rem;
	font-size: 1.3rem;
	line-height: 1.9rem;
}
.forumbg .lastpost > span {
	display: block;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	First item in .lastpost dt.	*/
/*	--------------------------	*/
.lastsubject, .redirect > span {
	padding: 1px 0;
}
.lastpost time {
	white-space: nowrap;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Simplify this.		*/
/*	--------------------------	*/
.topiclist .posts {
	width: 9rem;
	padding: 0 4px;
	text-align: end;
	font-size: 1.2rem;
	line-height: 2rem;
}
.topiclist .posts span {
	display: block;
	white-space: nowrap;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Row icon links.		*/
/*	--------------------------	*/
.row-item-link {
	position: absolute;
	top: .8rem;
	left: 0;
	display: block;
	width: 3.2rem;
	height: 3.2rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Where is this used?	*/
/*	--------------------------	*/
.row-item dt ol, .row-item dt ul {
	list-style-position: inside;
	margin-left: 1em;
}
.forums .row-item dt li {
	display: list-item;
	list-style: inherit;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Tidy this up.			*/
/*	--------------------------	*/
dd.time, dd.info {
	width: 25rem;
}
dd.time {
	line-height: 2rem;
}
/* @WIP - Find out what this does.
dd.option {
	width: 125px;
	text-align: center;
}
*/

/*	--------------------------	*/
/*	--------------------------	*/
/*	Post body styles.			*/
/*	--------------------------	*/
.postbody {
	position: relative;
}
.post-ignore .postbody {
	display: none;
}
.postbody h3 {
	display: flex;
	justify-content: space-between;
	padding-bottom: 4px;
	font-size: 1.2rem;
}
.post.pm h3 {
	margin: 0;
}
.postbody h3 span {
	white-space: nowrap;
}
.author + span {
	overflow: hidden;
	margin-inline-start: 1em;
	text-overflow: ellipsis;
}
.author img {
	vertical-align: text-top;
}
.pm_heading {
	font-size: 1.2rem;
	line-height: 2.4rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Typography conflict!	*/
/*	--------------------------	*/
.postbody .content {
	overflow: auto;
	padding-top: 7px !important;
	font-family: corbel;
	font-size: 1.6rem;
	line-height: 3ex;
	word-spacing: .04em;
	letter-spacing: .02em;
}
.postbody .content br {
	display: block;
	margin-top: .5em;
}
/*	--------------------------	*/
/*	--------------------------	*/
.postbody .postimage {
	box-sizing: border-box;
	max-width: 100%;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: I think these are for	*/
/*	emjois & images in posts.	*/
/*	--------------------------	*/
.emoji {
	width: 1em;
	height: 1em;
	min-width: 18px;
	min-height: 18px;
}
.smilies {
	vertical-align: text-bottom;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Topic review panel.	*/
/*	--------------------------	*/
.topicreview {
	overflow: auto;
	height: 300px;
	border: 1px solid;
}
.topicreview .postbody h3 {
	flex-wrap: wrap;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	MCP Post details.			*/
/*	--------------------------	*/
.post_details {
	overflow: auto;
	max-height: 300px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Content containers.	*/
/*	NB: Define before posts!	*/
/*	--------------------------	*/
.content {
	clear: both;
	overflow: hidden;
	min-height: 3em;
	padding-bottom: 1px;
}
.content h2, .panel h2 {
	margin: .5em 0;
	padding-bottom: .5em;
	font-size: 1.6rem;
	font-weight: 400;
	border-bottom: 1px solid;
}
#qr_postform h2 {
	padding: 0;
	font-size: inherit;
	border: 0;
	box-shadow: none;
}
.panel h3 {
	margin: .5em 0;
}
.faq {
	margin: 1em 0;
}
.content .faq {
	margin-bottom: .5em;
}
.content ul, .content ol {
	margin: 9px 0 9px 3em;
}
.content li {
	list-style: inherit;
}
/*	--------------------------	*/
/*	--------------------------	*/
/* 	Post/PM/profile signature.	*/
/*	--------------------------	*/
.signature {
	overflow: hidden;
	margin-top: 8px;
	padding-top: 8px;
	font-size: 1.2rem;
	line-height: 1.8rem;
	border-top: 1px solid;
}
dd .signature {
	margin: 0;
	padding: 0;
	border: 0;
}
.signature ul, .signature ol {
	margin: 9px 0 9px 3em;
}
.signature li {
	list-style: inherit;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Error/success boxes.	*/
/*	--------------------------	*/
.notice {
	margin-top: 8px;
	padding-top: 4px;
	font-size: 1.3rem;
	line-height: 1.9rem;
	border-top: 1px solid;
}
/*	--------------------------	*/
.error {
	color: #bc2a4d;
	font-weight: 700;
}
/*	--------------------------	*/
/*	@NB: <p> tag in unapproved,	*/
/*	deleted, & reported posts.	*/
/*	--------------------------	*/
.post-notice {
	margin-bottom: 1em;
	padding: 5px;
	background: #ecd5d8;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: "Jump to post" link.	*/
/*	--------------------------	*/
.searchresults {
	position: relative;
	margin-top: 1em;
	font-size: 1.2rem;
	line-height: 2;
	text-align: end;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Search result hits.	*/
/*	--------------------------	*/
.posthilit {
	padding: 0 4px;
    background: var(--boardicon);
    color: #fff;
	border-radius: 2px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Attachments.			*/
/*	--------------------------	*/
/*	--------------------------	*/

/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: UCP attachments list.	*/
/*	--------------------------	*/
#ucp .header {}
.topiclist.cplist {
	border-top: 1px solid;
}
#ucp .header dt, .topiclist.cplist dt {
	flex: 1 1 auto;
	width: calc(100% - 260px);
	font-size: 1.2rem;
}
.attachment-filename {
	display: block;
	font-size: 1.4rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: Check this more.		*/
/*	--------------------------	*/
.notification_list .topiclist.two-columns dt {
	width: calc(100% - 60px);
	padding-left: 4px;
}
/*	--------------------------	*/
/*	--------------------------	*/
#ucp .header dd, .topiclist.cplist dd {
	font-size: 1.2rem;
}
dd.extra, dd.time, dd.mark {
	flex: 0 0 auto;
	padding: 0 6px;
}
dd.extra {
	min-width: 98px;
	text-align: end;
}
dd.time {
	min-width: 179px;
	border-left: 1px solid;
}
dd.mark {
	min-width: 58px;
	margin-left: auto;
	text-align: center;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Only used for attachments.	*/
/*	Lines 40 and 65 in			*/
/*	posting_attach_body.html	*/
/*	and Line 41 in				*/
/*	ucp_atachments.html			*/
/*	--------------------------	*/
.ellipsis-text {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Custom attachment handling. */
/*	--------------------------	*/
.attachbox {
	padding: 6px 0 0;
	font-size: 1.3rem;
}
.attachbox dt {
	line-height: 2.3rem;
}
.attachbox>dt {
	text-transform: uppercase;
}
.attachbox dt>img {
	opacity: .7;
}
.attachbox > dd {
	display: inline-block;
	vertical-align: bottom;
	margin: 3px 3px 3px 0;
	padding: 0 5px;
	background: var(--groovebot);
	border: 1px solid var(--darkerbor);
}
.attachbox dd dd {
	font-size: 1.2rem;
	line-height: 1.8rem;
}
/*	--------------------------	*/
.inline-attachment {
	margin: .75em .2em;
	padding: 0;
}
/*	--------------------------	*/
/*	Inline image thumbnails.	*/
/*	--------------------------	*/
.thumbnail img {
	box-sizing: border-box;
	border: 2px solid #666;
	border-radius: 4px;
	transition: border-color .3s;
}
.thumbnail img:hover {
	border-color: #999;
	transition: border-color .3s;
}
/*	--------------------------	*/
/*	Smaller than thumbnails.	*/
/*	--------------------------	*/
.inline-attachment .file dd {
	overflow: hidden;
	max-width: 60px;
	height: 2px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: More post stuff, that	*/
/*	should be with the rest.	*/
/*	Fuck it, flex the lot. :P	*/
/*	--------------------------	*/
.has-profile.post>.inner, .search.post>.inner {
	display: flex;
}
.has-profile.post .postprofile, .search.post .postprofile {
	box-sizing: border-box;
	flex: 0 0 auto;
	width: 17%;
	min-width: 14rem;
	padding: 5px;
}
.has-profile.post .postbody, .search.post .postbody {
	flex: 1 1 auto;
	max-width: 72rem;
}
.postbody > div {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.postbody > div > .content {
	flex: 1 0 auto;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	NB: PM"s are a fuckery!	:P	*/
/*	--------------------------	*/
.pm .has-profile .postbody {
	flex-direction: column;
}
.postbody .pm_heading {
	display: block;
	height: auto;
}
.pm .postbody .content {
	display: block;
	height: auto;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: User online thingy.	*/
/*	--------------------------	*/
.post.online::before,
#viewprofile>.panel.online:first-child::before {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	content: '';
	background-image: url(./en/online_alt.png);
	background-size: cover;
	pointer-events: none;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Post profile stuffz.	*/
/*	@NB: Clean this up. :P		*/
/*	--------------------------	*/
.postprofile dd {
	overflow: hidden;
	font-size: 1.2rem;
	line-height: 1.8rem;
	text-overflow: ellipsis;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Post-profile avatars.		*/
/*	--------------------------	*/
.postprofile .has-avatar .avatar-container {
	overflow: hidden;
	margin-bottom: 3px;
}
.postprofile .avatar {
	width: fit-content;
	max-width: 100%;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Includes avatar used	*/
/*	on view-profile. 			*/
/*	--------------------------	*/
.postprofile .avatar img, .profile-avatar img {
	display: block;
	max-width: 100%;
	height: auto !important;
}
/*	--------------------------	*/
/*	--------------------------	*/
.postprofile .profile-posts a {
	font-weight: 400;
}
.postprofile .profile-joined {
	display: none;
}
.profile-warnings {
	color: #bc2a4d;
	font-weight: 700;
}
/*	--------------------------	*/
/*	--------------------------	*/
.postprofile .profile-contact {
	overflow: visible;
}
.profile-contact .dropdown-container {
	display: inline-block;
}
.profile-contact .icon_contact {
	vertical-align: middle;
}
.profile-contact .dropdown {
	right: -9px;
}
.contact-icons.dropdown-contents {
	min-width: 0;
	padding: 0;
	font-size: 0;
}
.contact-icons div {
	clear: left;
}
.contact-icons a {
	float: left;
	padding: 8px;
	border-bottom: 1px dotted;
	border-right: 1px dotted;
}
.contact-icons .last-cell {
	border-right: none;
}
.contact-icons div:last-child a {
	border-bottom: none;
}
/*	--------------------------	*/
/*	@NB: Use FA instead?		*/
/*	.pm-icon position-x = 0.	*/
/*	--------------------------	*/
.contact-icon {
	display: block;
	width: 16px;
	height: 16px;
	background-image: url(./images/icons_contact.png);
	background-repeat: no-repeat;
}
.email-icon			{background-position-x: -21px}
.phpbb_website-icon	{background-position-x: -40px}
.phpbb_icq-icon		{background-position-x: -61px}
.jabber-icon		{background-position-x: -80px}
.phpbb_youtube-icon	{background-position-x: -98px}
.phpbb_facebook-icon{background-position-x:-119px}
.phpbb_skype-icon	{background-position-x:-161px}
.phpbb_wlm-icon		{background-position-x:-182px}
.phpbb_twitter-icon	{background-position-x:-203px}
.phpbb_yahoo-icon	{background-position-x:-224px}
.phpbb_aol-icon		{background-position-x:-244px}
/*	--------------------------	*/
/*	--------------------------	*/

/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: PM list in compose	*/
/*	message if mass pm enabled. */
/*	@NB: There are ul's & dl's	*/
/*	in this class (bugger it).	*/
/*	--------------------------	*/
dl.pmlist dt {
	width: 60% !important;
}
dl.pmlist dt textarea {
	width: 95%;
}
dl.pmlist dd {
	margin-bottom: 2px;
	margin-left: 61% !important;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WTF? Is this required?		*/
/*	Show scrollbars when there	*/
/*	is overflow on iOS devices.	*/
/*	--------------------------	*/
.postbody .content::-webkit-scrollbar, .topicreview::-webkit-scrollbar,
.post_details::-webkit-scrollbar, .codebox code::-webkit-scrollbar,
.attachbox dd::-webkit-scrollbar, .attach-image::-webkit-scrollbar,
.dropdown-extended ul::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	-webkit-appearance: none;
	background: rgba(0, 0, 0, .1);
	border-radius: 3px;
}
.postbody .content::-webkit-scrollbar-thumb, .topicreview::-webkit-scrollbar-thumb,
.post_details::-webkit-scrollbar-thumb, .codebox code::-webkit-scrollbar-thumb,
.attachbox dd::-webkit-scrollbar-thumb, .attach-image::-webkit-scrollbar-thumb,
.dropdown-extended ul::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, .3);
	border-radius: 3px;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@NB: 600 font-weight is 	*/
/*	unsupported by most fonts.	*/
/*	--------------------------	*/
.button {
	display: inline-block;
	padding: 0 8px;
	font-size: 1.3rem;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	border: 1px solid;
	cursor: pointer;

	-ms-touch-action: manipulation;
	    touch-action: manipulation;

	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.button-icon-only {}
.button:hover, .button:focus {
 	text-decoration: none;
 	outline: none;
}
/*	--------------------------	*/
/*	@NB: .dropdown-trigger >	*/
/*	--------------------------	*/
.caret .icon {
	width: auto;
	vertical-align: top;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	@WIP: Post control buttons	*/
/*	NB: Use display: flex;	!!	*/
/*	--------------------------	*/
.post-buttons {
	display: flex;
	list-style: none;
	padding: 9px 0 0;
}
#topicreview .post-buttons {
	padding: 0;
}
.cp-main #topicreview .post-buttons {
	float: right;
}
.post-buttons li:not(.hidden) {
	padding: 3px 0;
}
.post-buttons li:not(:last-child) {
	margin-inline-end: 4px;
}
.post-buttons .button {
	line-height: 2.2rem;
}
.post-quote {
	margin-inline-start: auto;
}
.post-quote .button {
	padding-inline-start: 5px;
}
.post-quote .icon::before {
	font-size: .9rem;
	vertical-align: top;
}
.post-buttons .fa-pencil::before {
	margin: 0 4px 0 -4px;
}
.post-edit .sr-only, .post-quote .sr-only {
	position: static;
	font-size: 1.2rem;
	line-height: 2.2rem;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Responsive buttons...		*/
/*	--------------------------	*/
.post-buttons .dropdown {
	top: 18px;
}
.post-buttons .dropdown a {
	display: block;
	font-size: 1.2rem;
	text-align: end;
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	Ajax memberlist search ul.	*/
/*	--------------------------	*/
.search-results li {
	padding: 5px !important;
	cursor: pointer;
}
/*	--------------------------	*/
/*	--------------------------	*/
#memberlist tr.inactive,
#team tr.inactive {
	font-style: italic;
}/*	--------------------------	*/
/*	--------------------------	*/
#memberlist_search {
	margin-top: 20px;

	.inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;

		p {
			width: 100%;
			margin: 0 .5em;
		}
		.column1 {
			width: auto;
			margin: 1em 0 0;
			padding: 0 1em;
			box-shadow: 1px 0 0 #fff9, inset -1px 0 0 #0003;

			dt {
				width: 6em;
				line-height: 2.8rem;
			}
			dd {
				margin-left: 6em;

				div {
					margin-bottom: 0;
				}
				select:not([name="sd"],[name="sk"]), input {
					width: 14.6em;
				}
			}
		}
		.column2 {
			width: auto;
			margin: 1em 0 0;
			padding: 0 1em;

			dt {
				width: 12.5em;
				line-height: 2.8rem;
			}
			dd {
				margin-left: 12.5em;

				select{
					width: 9.3rem;
				}
				#ip{
					width: 16.9em;
				}
			}
		}
		.submit-buttons {
			width: 100%;
			margin: .5em 0;
		}
	}
}
/*	--------------------------	*/
/*	--------------------------	*/
/*	------ End of file. ------	*/
/*	--------------------------	*/
/*	--------------------------	*/
