/* 
   ---------------------------------------------------------------
   > Theme for private use only
   > Design by Sedna from scratch on default base
   ---------------------------------------------------------------- 
*/


html {
  box-sizing: border-box;
  overflow-x: auto;
  scroll-behavior: smooth; 
}
html, body { height: 100%; }

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent2) var(--block-dark);
}

/****************************************************************************************************************
Root variables for entire site 
*****************************************************************************************************************/


:root {
  /* Dark mode variables */
  --body-bg-image: url(https://files.jcink.net/uploads2/ofprideandprovidence/BaseGraphics/Landing_____3.png);
  --bg-texture1: url(https://everupward.ink/OPP/uploads/gallery/original/1_20251026_031249_2bd1e240.jpg);
  --body-bg-color: #070707;
  --text-color: #F4F5F5;
  --text-color-muted: #595C60;
	  --dark-blur: rgba(12, 12, 12, .5);
	  --block-darker: #0C0C0C;
  --block-dark: #191919;
  --block-med: #1E1E1E;
  --block-light: #242424;
  --block-lighter: #2D2D2D;

  --accent1: #BA8E43;
  --accent2: #BC9255;
	  --accent3: #5C5041;
  --darkaccent1: #A47B41

  --group-accent1: #144552;
  --group-accent2: #312244;
  --group-accent3: #1D2744;
  --group-accent4: #580B0F;

  --font-title: 'NewYorkLine', serif;
  --font-header: 'RanteraRegular', serif;
  --font-read: "PT Serif", serif;

	--br-small: 5px;
	--br-med: 10px;
	--br-large: 25px;

}

/* ===============================
   Font Imports
   =============================== */

@font-face {
  font-family: 'RanteraRegular';
  src: url(https://files.jcink.net/uploads2/ofprideandprovidence/Fonts/RanteraRegular.woff2) format('woff2'),
       url(https://files.jcink.net/uploads2/ofprideandprovidence/Fonts/RanteraRegular.woff) format('woff'),
       url(https://files.jcink.net/uploads2/ofprideandprovidence/Fonts/RanteraRegular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NewYorkLine';
  src: url(https://files.jcink.net/uploads2/ofprideandprovidence/Fonts/NewYorkLine.woff2) format('woff2'),
       url(https://files.jcink.net/uploads2/ofprideandprovidence/Fonts/NewYorkLine.woff) format('woff'),
       url(https://files.jcink.net/uploads2/ofprideandprovidence/Fonts/NewYorkLine.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* WebKit Browsers (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--block-dark);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  border-radius: 10px;
  border: 2px solid var(--block-dark);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
}

/****************************************
 Body Background & Text Style
*****************************************/

body { 
background-color: var(--body-bg-color);
  background: var(--body-bg-color) var(--bg-texture1) no-repeat fixed;
	background-size: cover;
  min-height: 100vh;
  line-height: 1.4;
		margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
font-family: var(--font-read);
		color: var(--text-color);
		font-size: 0.8em;
}



a:link {
	color: var(--accent2);
	text-decoration: none;
}

a:visited {
	color: var(--accent2);
	text-decoration: none;
}

a:hover,
a:active {
	color: var(--accent2);
	text-decoration: none;
}


.posticons label {
  display: inline-block;
  margin: 5px;
  font-weight: bold;
  color: red;
}

.posticons label img {
  display: none !important;
}



/****************************************
 Header & Navigation - Modernized
*****************************************/
/* Guest Landing Page - Hide by default for all logged-in users */
.guest-landing-wrapper {
    display: none;
}

/* Show ONLY for usergroup 1 (guests) */
.guest-landing-wrapper.usergroup-1 {
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url(https://www.ofprideandprovidence.com/uploads/gallery/original/1_20251026_035417_c621a8db.jpg);
    background-size: cover;
    background-position: center center;
    object-fit: cover;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Desaturation overlay */
.guest-landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    filter: saturate(0.3); /* 70% desaturation */
    z-index: 1;
}

/* Blur glass strip */
.guest-landing-strip {
    position: relative;
	top: 10em;
    z-index: 2;
	    width: 100vw;
    background-color: var(--dark-blur);
    padding: 2em;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Centered logo */
.guest-landing-logo {
    height: auto;
    display: block;
}

/* Subtitle text */
.guest-landing-subtitle {
    font-family: var(--font-header);
    color: var(--text-color);
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Links row */
.guest-landing-links {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 1em;
    background-color: transparent;
    margin-top: 1em;
}

/* Individual link styling */
.guest-link {
    font-family: var(--font-header);
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.guest-link:hover {
    color: var(--text-color);
    transform: translateY(-2px);
}




#container {
    color: var(--text-color);
	text-align: left;
	line-height: 1.4;
	margin: 0;
	font-family: var(--font-read);
	font-size: 13px;
	min-width: 990px;
}

.wrapper {
	width: 85%;
	min-width: 970px;
	max-width: 1200px;
	margin: 5rem auto;
	  box-sizing: border-box;
	padding: 2em;
		background: var(--dark-blur);
	  backdrop-filter: blur(15px) brightness(1);
  -webkit-backdrop-filter: blur(15px) brightness(1);
		border-radius: 10px;
		box-shadow: 0 0 25px 10px rgba(0, 0, 0, .5);
}
.nav-wrapper {	max-width: 1200px;
	margin: auto auto;}

#content {margin-top: 250px;}

#logo {   position: fixed;
            top: 0;
            left: 0;
            right: 0;
  height: 100px;
	background: var(--body-bg-color);
	padding: 15px 0;
	border-bottom: 1px solid var(--accent1);
}

#logo .nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#logo .nav-wrapper > a {
	font-family: var(--font-title);
	font-size: 1.8em;
	font-weight: var(--weight-reg);
	color: var(--accent1);
	text-decoration: none;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

#logo .nav-wrapper > a:hover {
	color: var(--accent2);
}

#logo, #panel {z-index: 9999;}

#panel > * {
  z-index: 9999;
}

#header ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 5px;

}

#header ul.menu li {
	margin: 0;
	display: inline-block;

}

#header ul.menu li a {
	padding: 8px 16px;
	background-repeat: no-repeat;
	display: inline-block;
	line-height: 16px;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-weight: 500;
	letter-spacing: 0.3px;
	font-family: var(--font-read)!important;
	font-weight: 800!important;
}

#header ul.menu li a:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

#logo ul.top_links {
	font-weight: bold;
	text-align: right;
	margin: 0;

}

#logo ul.top_links a.search {
	background-position: 0 0;
}

#logo ul.top_links a.memberlist {
	background-position: 0 -20px;
}

#logo ul.top_links a.calendar {
	background-position: 0 -40px;
}

#logo ul.top_links a.help {
	background-position: 0 -60px;
}

#logo ul.top_links a.portal {
	background-position: 0 -180px;
}

#panel .glass {
              position: fixed;
            top: 100px;
            left: 0;
            right: 0;
   color: var(--text-color);
	clear: both;
	background: rgba(25, 33, 46, 0.25);
  backdrop-filter: blur(12px) brightness(1.2);
  -webkit-backdrop-filter: blur(12px) brightness(1.2);
}

#panel .upper a.logout {
	font-weight: bold;
	margin-left: 10px;
	padding: 6px 14px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

#panel .upper a.logout:hover {
	text-decoration: none;
}

#panel .upper a.login,
#panel .upper a.lost_password {
	margin-left: 10px;
	font-weight: bold;
	padding: 6px 14px;
	border: 1px solid var(--accent1);
	border-radius: 5px;
	transition: all 0.3s ease;
}

#panel .upper a.login:hover,
#panel .upper a.lost_password:hover {
	text-decoration: none;
}

#panel .upper a.register {
	margin-left: 10px;
	font-weight: bold;
	padding: 6px 14px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

#panel .upper a.register:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

#panel .upper .nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

#panel .upper a:link,
#panel .upper a:visited,
#panel .upper a:hover,
#panel .upper a:active {
	color: var(--accent1);
}

span.welcome {
	display: flex;
	align-items: center;
	margin: 0;
font-size: .8em;
}

span.lower {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

span.lower ul.menu {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

span.lower ul.panel_links {
	gap: 5px;
}

span.lower ul.panel_links a.usercp {
	background-position: 0 -120px;
}

span.lower ul.panel_links a.modcp {
	background-position: 0 -140px;
}

span.lower ul.panel_links a.admincp {
	background-position: 0 -160px;
}

span.lower ul.user_links {
	gap: 10px;
}

span.lower ul.user_links li a {
	padding: 0;
	background-image: none;
}

span.lower a.logout {
	margin-left: 15px;
}


#search {
	border: 0;
	padding: 0;
	margin: 0;
	float: right;
	vertical-align: middle;
}

#search input.button,
#search input.textbox {
	border: 1px solid var(--accent2);
	border-radius: 5px;
	transition: all 0.3s ease;
}

#search input.textbox {
	background: var(--block-light);
	color: var(--text-color);
	padding: 6px 12px;
}

#search input.textbox:focus {
	outline: none;
	border-color: var(--accent1);
	box-shadow: 0 0 0 3px rgba(222, 166, 99, 0.1);
}

#search input.button {
	background: linear-gradient(135deg, var(--accent2), var(--accent1));
	color: #fff;
	padding: 6px 16px;
	cursor: pointer;
	font-weight: 600;
}

#search input.button:hover {
	box-shadow: 0 4px 12px rgba(222, 166, 99, 0.4);
	transform: translateY(-1px);
}

#search input {
	margin: -3px 0;
}

#quick_login .remember_me input {
	vertical-align: middle;
	margin: -3px 0 0 5px;
}


.navigation {
	color: var(--accent1);
	transition: color 0.3s ease;
flex: 1 1 100%;
	width: 100%;
	padding: 5px 0;
margin: auto;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9em;
}

.navigation a:link {
	color: var(--accent1);
	text-decoration: none;
}

.navigation a:visited {
	text-decoration: none;
}

.navigation a:hover,
.navigation a:active {
		color: var(--accent2);
	text-decoration: none;
}

.navigation .active {
	color: #333;
	font-size: small;
	font-weight: bold;
}


#footer {
	clear: both;
}

#footer ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

#footer ul.menu li {
	margin: 0 5px;
	display: inline;
}

#footer .upper {
	background: #efefef;
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	padding: 6px;
	font-size: 12px;
	overflow: hidden;
}

#footer a:link,
#footer a:visited,
#footer a:hover,
#footer a:active {
	color: #777;
}

#footer .upper .language {
	float: right;
	margin: -1px;
	margin-left: 15px;
}

#footer .upper .language select {
	border-color: #ccc;
}

#footer .upper .theme {
	float: right;
	margin: -1px;
	margin-left: 15px;
}

#footer .upper .theme select {
	border-color: #ccc;
}

#footer .upper ul.bottom_links {
	float: left;
	margin: 4px 0 0 0;
}

#footer .lower {
	color: #666;
	padding: 6px 6px 12px 6px;
	overflow: hidden;
	font-size: 11px;
}

#footer .lower a:link,
#footer .lower a:visited {
	color: #444;
	font-weight: bold;
}

#footer .lower a:hover,
#footer .lower a:active {
	color: #333;
	text-decoration: underline;
	font-weight: bold;
}

#footer .lower #current_time {
	float: right;
	color: #888;
}

#debug {
	float: right;
	text-align: right;
	margin-top: 20px;
	font-size: 11px;
}

.scaleimages img {
	max-width: 100%;
}

.forum_status {
	height: 30px;
	width: 30px;
	background: url(../../../images/forum_icon_sprite.png) no-repeat 0 0;
	display: inline-block;
}

.forum_on {
	background-position: 0 0;
}

.forum_off {
	background-position: 0 -30px;
}

.forum_offclose {
	background-position: 0 -60px;
}

.forum_offlink {
	background-position: 0 -90px;
}

.subforumicon {
	height: 10px;
	width: 10px;
	display: inline-block;
	margin: 0 5px;
	background: url(../../../images/mini_status_sprite.png) no-repeat 0 0;
}

.subforum_minion {
	background-position: 0 0;
}

.subforum_minioff {
	background-position: 0 -10px;
}

.subforum_minioffclose {
	background-position: 0 -20px;
}

.subforum_miniofflink {
	background-position: 0 -30px;
}
table {
	color: var(--text-color);
	font-size: 1em;
}
.tborder {
	border-collapse: collapse;
	width: 100%;
}
.tfixed {
	table-layout: fixed;
	word-wrap: break-word;
}
.thead {
	font-size: 1.5em;
	color: var(--accent1);
	border-bottom: 1px solid var(--accent1);
	padding: 1em 2em;
}
.thead a:link {
	color: #ffffff;
	text-decoration: none;
}
.thead a:visited {
	color: #ffffff;
	text-decoration: none;
}
.thead a:hover,
.thead a:active {
	color: #ffffff;
	text-decoration: underline;
}
.tcat {
	background: #0f0f0f url(../../../images/tcat.png) repeat-x;
	color: #fff;
	border-top: 1px solid #444;
	border-bottom: 1px solid #000;
	padding: 6px;
	font-size: 12px;
}
.tcat a:link {
	color: #fff;
}
.tcat a:visited {
	color: #fff;
}
.tcat a:hover,
.tcat a:active {
	color: #fff;
}
.trow1 {
	background: #f5f5f5;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}
.trow2 {
	background: #efefef;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}
.trow_shaded {
	background: #ffdde0;
	border: 1px solid;
	border-color: #fff #ffb8be #ffb8be #fff;
}
.no_bottom_border {
	border-bottom: 0;
}
*/ Posts rows */


.post.unapproved_post {
	background: #ffdde0;
}

.thread_start_datetime {
	color: #999;
}

.post.unapproved_post .post_author {
	border-bottom-color: #ffb8be;
}

.post.classic.unapproved_post .post_author {
	border-color: #ffb8be;
}

.post.unapproved_post .post_controls {
	border-top-color: #ffb8be;
}

.trow_deleted,
.post.deleted_post {
	background: #E8DEFF;
}

.trow_selected,
tr.trow_selected td {
	background: #FFFBD9;
	color: #333;
	border-right-color: #F7E86A;
	border-bottom-color: #F7E86A;
}

.trow_selected a:link,
.trow_selected a:visited,
.trow_selected a:hover,
.trow_selected a:active {
	color: #333;
}

.trow_sep {
	background: #ddd;
	color: #333;
	border-bottom: 1px solid #c5c5c5;
	padding: 6px;
	font-size: 12px;
	font-weight: bold;
}

.tfoot {
	padding: 1em;
	background: var(--block-light);
	color: var(--text-color);
}

.tfoot a:link {
	color: var(--accent2);
	text-decoration: none;
}

.tfoot a:visited {
	color: #444;
	text-decoration: none;
}

.tfoot a:hover,
.tfoot a:active {
	color: var(--accent1);
	text-decoration: none;
}

.thead input.textbox,
.thead select {
	border: 1px solid var(--accent1);
}

.bottommenu {
	background: #efefef;
	color: #333;
	border: 1px solid var(--accent1);
	padding: 10px;
}





.smalltext {
	font-size: 11px;
}

.largetext {
	font-size: 16px;
	font-weight: bold;
}

fieldset {
	padding: 12px;
	border: 1px solid #ddd;
	margin: 0;
}

fieldset.trow1,
fieldset.trow2 {
	border-color: #bbb;
}

fieldset.align_right {
	text-align: right;
}

input.textbox {
	background: #ffffff;
	color: #333;
	border: 1px solid #ccc;
	padding: 3px;
	outline: 0;
	font-size: 13px;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
}

input.textbox.portal_search {
    width: 68%;
}

textarea {
	background: #ffffff;
	color: #333;
	border: 1px solid #ccc;
	padding: 2px;
	line-height: 1.4;
	outline: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

select {
	background: #ffffff;
	padding: 3px;
	border: 1px solid #ccc;
	outline: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

a.button:link,
a.button:visited,
a.button:active,
a.button:hover {
  position: relative;
  display: inline-block;
  width: auto;
  height: 2em;
  padding: 0 .5em;
  text-align: center;
  font-family: var(--font-read);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent1);
  cursor: pointer;
  background-color: var(--dark-blur);
  border: none;
  transition: color .2s linear,
        box-shadow .3s linear,
        background-color .3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a.button.small_button {
  font-size: 13px;
  margin: 0;
  padding: 3px 6px;
  min-width: 8em;
}

button,
input.button,
.button {
  position: relative;
  display: inline-block;
  width: auto;
  height: 2em;
  padding: .5em;

  text-align: center;
  font-family: var(--font-header);
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent1);
  cursor: pointer;
  background-color: var(--dark-blur);
  border: none;
  transition: color .2s linear,
        box-shadow .3s linear,
        background-color .3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a.button:focus,
a.button:hover,
button:focus,
button:hover,
input.button:focus,
input.button:hover,
.button:focus,
.button:hover {
  box-shadow: 0 0 110px var(--accent1);
  background-color: var(--dark-blur);
  color: var(--text-color);
  font-weight: 500;
}

a.button:focus:before,
a.button:hover:before,
a.button:focus:after,
a.button:hover:after,
button:focus:before,
button:hover:before,
button:focus:after,
button:hover:after,
input.button:focus:before,
input.button:hover:before,
input.button:focus:after,
input.button:hover:after,
.button:focus:before,
.button:hover:before,
.button:focus:after,
.button:hover:after {
  width: 100%;
  left: 0%;
}

a.button:before,
a.button:after,
button:before,
button:after,
input.button:before,
input.button:after,
.button:before,
.button:after {
  content: '';
  position: absolute;
  pointer-events: none;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: var(--accent1);
  transition: width, left, 250ms cubic-bezier(0.25, .8, .25, 1);
}

a.button:before,
button:before,
input.button:before,
.button:before {
  top: -2px;
}

a.button:after,
button:after,
input.button:after,
.button:after {
  bottom: -2px;
}

form {
	margin: 0;
	padding: 0;
}

input.error, textarea.error, select.error {
	border: 1px solid #f30;
	color: #f30;
}

input.valid, textarea.valid, select.valid {
	border: 1px solid #0c0;
}

label.error {
	color: #f30;
	margin: 5px;
	padding: 0px;
	display: block;
	font-weight: bold;
	font-size: 11px;
}

form #message {
	width: 500px;
}

.editor {
	background: #f1f1f1;
	border: 1px solid #ccc;
}

.editor_control_bar {
	background: #fff;
	border: 1px solid #ccc;
}

.post .editor_control_bar {
	background: #f5f5f5;
}

.popup_menu {
	background: #fff;
	border: 1px solid #ccc;
}

.popup_menu .popup_item {
	background: #efefef;
	color: #333;
}

.popup_menu .popup_item:hover {
	background: #0072BC;
	color: #fff;
}

.trow_reputation_positive {
	background: #ccffcc;
}

.trow_reputation_negative {
	background: #ffcccc;
}

.reputation_positive {
	color: green;
}

.reputation_neutral {
	color: #444;
}

.reputation_negative {
	color: red;
}

.repbox {
	font-size:16px;
	font-weight: bold;
	padding:5px 7px 5px 7px;
}

._neutral {
	background-color:#FAFAFA;
	color: #999999;
	border:1px solid #CCCCCC;
}

._minus {
	background-color: #FDD2D1;
	color: #CB0200;
	border:1px solid #980201;
}

._plus {
	background-color:#E8FCDC;
	color: #008800;
	border:1px solid #008800;
}

img {
	border: none;
}

img.attachment {
	border: 1px solid #E9E5D7;
	padding: 2px;
}

hr {
	background-color: #000000;
	color: #000000;
	height: 1px;
	border: 0px;
}

.clear {
	clear: both;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

.hidden {
	display: none;
	float: none;
	width: 1%;
}

.hiddenrow, .hidden {
	display: none;
}

.selectall {
	background: #FFFBD9;
	border-bottom: 1px solid #F7E86A;
	color: #333;
	text-align: center;
}

.expcolimage {
	float: right;
	width: auto;
	vertical-align: middle;
	margin-top: 3px;
}

.tcat_menu > .expcolimage {
	margin-top: 0;
}

blockquote {
	border: 1px solid #ccc;
	margin: 0;
	background: #fff;
	padding: 10px;
}

blockquote cite {
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	font-style: normal;
	display: block;
	padding-bottom: 3px;
	margin: 0 0 10px 0;
}

blockquote cite > span {
	float: right;
	font-weight: normal;
	font-size: 12px;
	color: #666;
}

blockquote cite span.highlight {
	float: none;
	font-weight: bold;
	padding-bottom: 0;
}

.codeblock {
	background: #fff;
	border: 1px solid #ccc;
	padding: 10px;
}

.codeblock .title {
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	padding-bottom: 3px;
	margin: 0 0 10px 0;
}

.codeblock code {
	overflow: auto;
	height: auto;
	max-height: 200px;
	display: block;
	font-family: Monaco, Consolas, Courier, monospace;
	font-size: 13px;
}

.smilie {
	vertical-align: middle;
}

.smilie_pointer {
	cursor: pointer;
}

.separator {
	margin: 5px;
	padding: 0;
	height: 0px;
	font-size: 1px;
	list-style-type: none;
}

.popup_menu .popup_item_container {
	margin: 1px;
	text-align: left;
}

.popup_menu .popup_item {
	display: block;
	padding: 4px;
	white-space: nowrap;
	text-decoration: none;
}

.popup_menu a.popup_item:hover {
	text-decoration: none;
}

.subject_new {
	font-weight: bold;
}

.highlight {
	background: #FFFFCC;
	padding-top: 3px;
	padding-bottom: 3px;
}

.pm_alert {
	background: #FFF6BF;
	border: 1px solid #FFD324;
	text-align: center;
	padding: 5px 20px;
	margin-bottom: 15px;
	font-size: 11px;
}

.red_alert {
	background: #FBE3E4;
	border: 1px solid #A5161A;
	color: #A5161A;
	text-align: center;
	padding: 5px 20px;
	margin-bottom: 15px;
	font-size: 11px;
	word-wrap: break-word;
}

.red_alert a:link,
.red_alert a:visited,
.red_alert a:hover,
.red_alert a:active {
	color: #A5161A;
}

.high_warning {
	color: #CC0000;
}

.moderate_warning {
	color: #F3611B;
}

.low_warning {
	color: #AE5700;
}

.imminent_banned {
	color: #880000;
}

.high_banned {
	color: #FF0000;
}

.moderate_banned {
	color: #FF6600;
}

.low_banned {
	color: #008000;
}

.online {
	color: #15A018;
}

.offline {
	color: #C7C7C7;
}

div.error {
	padding: 5px 10px;
	border: 2px solid #FFD324;
	background: #FFF6BF;
	font-size: 12px;
}

div.error p {
	margin: 0;
	color: #333;
	font-weight: normal;
}

div.error p em {
	font-style: normal;
	font-weight: bold;
	padding-left: 24px;
	display: block;
	color: #C00;
	background: url(../../../images/error.png) no-repeat 0;
}

div.error ul {
	margin-left: 24px;
}

.pagination {
	font-size: 11px;
	padding-top: 10px;
	margin-bottom: 5px;
}

.tfoot .pagination,
.tcat .pagination {
	padding-top: 0;
}

.pagination .pages {
	font-weight: bold;
}

.pagination .pagination_current,
.pagination a {
	padding: 3px 6px;
	margin-bottom: 3px;
}

.pagination a {
	background: #f5f5f5;
	border: 1px solid #ccc;
}

.pagination .pagination_current {
	background: none;
	color: #333;
	border: none;
	font-weight: bold;
}

.pagination a:hover {
	background: #0072BC;
	color: #fff;
	border-color: #263c30;
	text-decoration: none;
}

.pagination .go_page img {
	margin-bottom: -4px;
}

.drop_go_page {
	background: #f5f5f5;
	padding: 4px;
}

.pagination_breadcrumb {
	background-color: #efefef;
	border: 1px solid #fff;
	outline: 1px solid #ccc;
	padding: 5px;
	margin-top: 5px;
	font-weight: normal;
}

.pagination_breadcrumb_link {
	vertical-align: middle;
	cursor: pointer;
}

.thread_legend,
.thread_legend dd {
	margin: 0;
	padding: 0;
}

.thread_legend dd {
	padding-bottom: 4px;
	margin-right: 15px;
}

.thread_legend img {
	margin-right: 4px;
	vertical-align: bottom;
}

.forum_legend,
.forum_legend dt,
.forum_legend dd {
	margin: 0;
	padding: 0;
}

.forum_legend dd {
	float: left;
	margin-right: 10px;
	margin-top: 7px;
}

.forum_legend dt {
	margin-right: 10px;
	float: left;
}

.success_message {
	color: #00b200;
	font-weight: bold;
	font-size: 10px;
	margin-bottom: 10px;
}

.error_message {
	color: #C00;
	font-weight: bold;
	font-size: 10px;
	margin-bottom: 10px;
}

#posts_container {
	padding: 0;
	 display: flex;
    align-items: center;
  flex-direction: column;
}
#posts {width: 100%;}
.ignored_post {
	border-top: 3px solid #333;
	padding: 15px;
}

.ignored_post .show_ignored_post {
	margin-top: -15px;
}

.ignored_post .show_ignored_post a.button span {
	background-position: 0 -400px;
}

.deleted_post_hidden {
	border-top: 2px solid #ccc;
	padding: 15px;
}

.deleted_post_collapsed {
	border-top: 3px solid #333;
	padding: 15px;
}

.deleted_post_collapsed .show_deleted_post {
	margin-top: -15px;
}

.deleted_post_collapsed .show_deleted_post a.button span {
	background-position: 0 -400px;
}
.post.unapproved_post {
  background: #ffdde0;
}

.post.unapproved_post .post_author {
  border-bottom-color: #ffb8be;
}

.post.unapproved_post .post_controls {
  border-top-color: #ffb8be;
}

/* Mirror columns on even posts without pushing to the edge */
.post:nth-of-type(even){
  direction: rtl;            /* flip column order */
}
.post:nth-of-type(even) > *{
  direction: ltr;            /* keep text normal */
}
.post {
  display: flex;
  align-items: center;
  gap: 10px;
    background:var(--block-med);
  color:var(--text-color);
  font-family: var(--font-read);
}

.post .post_author {
  padding: 5em 5em;
  flex: 0 0 350;
    display: flex;
    align-items: center;
    justify-content: center;
  flex-direction: column;
  align-self: flex-start;
}
.post .post_author > * {
  text-align: center;
}

.author_information {
  background: var(--block-med);
  height: 200px;
  width: 100%;
  margin: 5em 0;
  padding: 50px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.author_information:hover {
  opacity: 1;
}

.author_avatar {
  display: block;
  width: 250px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  position: sticky;
  top: 200px; /* Sticks 200px from top of viewport */
  z-index: 10;
}

.author_avatar img {
  display: block;
  width: 250px;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.95) contrast(1.02);
}

.post:nth-of-type(even) .author_avatar::after {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 250px;
  height: 400px;
  border: 2px solid var(--accent1);
  pointer-events: none;
}

.post:nth-of-type(odd) .author_avatar::after {
  content: "";
  position: absolute;
  inset: auto auto 18px 18px;
  width: 250px;
  height: 400px;
  border: 2px solid var(--accent1);
  pointer-events: none;
}

/* Default (odd posts, avatar left) */
.post .post-title{
  text-align:left;
}
.post .post-title::after{
  margin-left:0;
  margin-right:auto;
}

/* Even posts (avatar right) */
.post:nth-of-type(even) .post-title{
  text-align:right;
}
.post:nth-of-type(even) .post-title::after{
  margin-left:auto;
  margin-right:0;
}

.post-title a {
  font-size: 2em!important;
  margin:0 0 10px;
  font:var(--font-header);
  letter-spacing:.5px;
  color:var(--accent1);
}
.post-title::after{
  content:"";
  display:block;
  width:46%;
  height:2px;
  margin:10px auto 14px;
  background:var(--accent1);
}

.post .post_author div.author_statistics {
  font-size: 11px;
  line-height: 1.3;
}

.post .post_head {
	    align-self: flex-start;
  width: 100%;
  font-size: 11px;
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.post .post_head span.post_date {
  color: #666;
}

.post .post_head span.edited_post {
  font-size: 10px;
  color: #999;
}

.post .post_head span.edited_post a {
  color: #666;
}

.post_body {
  font-size: 14px;
  padding: 1em;
	    min-height: 500px; 
}



.editpost_content {
 padding: 2em 5em;
      display: flex;
    align-items: left;
  flex-direction: column;
  text-align: justify;
	min-height: 500px;
}

/* Target the actual text content, not the warning div */
.post_body::first-letter {
  float: left;
  font-size: 4em;
  line-height: 0.85;
  margin: 0.1em 0.15em 0 0;
  font-family: var(--font-header);
  color: var(--accent1);
  font-weight: bold;
}

/* Override for the warning div to prevent it from getting the drop cap */
.post-content-warning::first-letter {
  float: none;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
}


.editpost_content .signature {
  margin-top: 2em;
  padding: 10px;
}

.post .post_meta {
  margin: 4px 0;
  font-size: 11px;
  color: #999;
   visibility: hidden;
}

.post .post_meta a:link,
.post .post_meta a:visited {
  color: #777;
}

.post .post_meta a:hover,
.post .post_meta a:active {
  color: #777;
}

.post:nth-of-type(odd) .post_management_buttons{
  text-align:left;
  margin-right:auto;  /* push away from avatar */
  margin-left:0;
}
.post:nth-of-type(even) .post_management_buttons{
  text-align:right;
  margin-right:auto;  /* push away from avatar */
  margin-left:0;
}

.postbit_buttons > a:link,
.postbit_buttons > a:hover,
.postbit_buttons > a:visited,
.postbit_buttons > a:active {
  display: inline-block;
  padding: 2px 5px;
  margin: 2px;
  font-size: 11px;

  color: #555;
}

.postbit_buttons > a:hover {
  border-color: #bbb;
}

.post-footer {
	display: block;
  width: 100%;
  align-self: stretch;
  margin-top: 22px !important;
	padding: 0 1em;
  font-size: .8em;
  color: var(--text-color-muted);
  text-align: right; /* Align everything to the right */
}

.post-footer .float_right,
.post_wordcount,
.post_date {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px; /* Space between elements */
}

.post_wordcount strong {
  margin-right: 5px;
}

.post_edit {
  display: block;
  text-align: right;
  margin-top: 5px;
}

/* Style inline moderation checkbox */
.editpost_content input[type="checkbox"],
.post-footer input[type="checkbox"],
input[id^="inlinemod_"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--block-lighter);
  border: 1px solid var(--block-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  vertical-align: middle;
}

/* Hover state */
.editpost_content input[type="checkbox"]:hover,
.post-footer input[type="checkbox"]:hover,
input[id^="inlinemod_"]:hover {
  background: var(--block-light);
  border-color: var(--block-dark);
}

/* Checked state */
.editpost_content input[type="checkbox"]:checked,
.post-footer input[type="checkbox"]:checked,
input[id^="inlinemod_"]:checked {
  background: var(--accent1);
  border-color: var(--block-dark);
  color: var(--block-dark);
}

/* Checkmark inside when checked */
.editpost_content input[type="checkbox"]:checked::after,
.post-footer input[type="checkbox"]:checked::after,
input[id^="inlinemod_"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-color);
  font-size: 14px;
  font-weight: bold;
}

/* Odd posts - align RIGHT */
.post:nth-of-type(even) .post-footer {  text-align: left!important;}
.post:nth-of-type(odd) .post-footer {  text-align: right!important;}

.posts > .post:nth-child(odd) .post-footer span.post_date,
.posts > .post:nth-child(odd) .post-footer span.post_edit,
.posts > .post:nth-child(odd) .post-footer * {
  text-align: right !important;
}

/* Even posts - align LEFT */
.posts > .post:nth-child(even) .post-footer span.post_date,
.posts > .post:nth-child(even) .post-footer span.post_edit,
.posts > .post:nth-child(even) .post-footer * {
  text-align: left !important;
}


.post:not(.deleted_post) .postbit_qrestore,
.post:not(.deleted_post) .status_type,
.post.deleted_post .postbit_mirage {
    display: none;
}




a.button.new_thread_button span {
	background-position: 0 -340px;
}

a.button.new_reply_button span {
	background-position: 0 -360px;
}

a.button.closed_button span {
	background-position: 0 -380px;
}

a.button.rate_user_button span {
	background-position: 0 -400px;
}

a.button.add_buddy_button span {
	background-position: 0 -440px;
}

a.button.remove_buddy_button span {
	background-position: 0 -480px;
}

a.button.add_ignore_button span {
	background-position: 0 -460px;
}

a.button.remove_ignore_button span {
	background-position: 0 -500px;
}

a.button.report_user_button span {
	background-position: 0 -520px;
}

.quick_jump {
	background: url(../../../images/jump.png) no-repeat 0;
	width: 13px;
	height: 13px;
	padding-left: 13px; /* amount of padding needed for image to fully show */
	margin-top: -3px;
	border: none;
}

.pollbar {
	background: url(../../../images/pollbar.png) top left repeat-x;
	border: 1px solid #3f3f3f;
	height: 10px;
}

.pollbar .percent {
	display: none;
}

.poll_votedfor {
	background: #efefef;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}

.posticons_label {
	white-space: nowrap;
}

/** jGrowl Start **/

/** Special IE6 Style Positioning **/
.ie6 {
	position: absolute;
}

.ie6.top-right {
	right: auto;
	bottom: auto;
	left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

.ie6.top-left {
	left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

.ie6.bottom-right {
	left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

.ie6.bottom-left {
	left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

.ie6.center {
	left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
	width: 100%;
}

/** jGrowl Styling **/
.jGrowl {
	z-index: 9999;
	color: #ffffff;
	font-size: 12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	position: fixed;
}
.jGrowl.top-left {
	left: 0px;
	top: 0px;
}
.jGrowl.top-right {
	right: 0px;
	top: 0px;
}
.jGrowl.bottom-left {
	left: 0px;
	bottom: 0px;
}
.jGrowl.bottom-right {
	right: 0px;
	bottom: 0px;
}
.jGrowl.center {
	top: 0px;
	width: 50%;
	left: 25%;
}

/** Cross Browser Styling **/

.jGrowl.center .jGrowl-notification,
.jGrowl.center .jGrowl-closer {
	margin-left: auto;
	margin-right: auto;
}
.jGrowl-notification {
	background-color: transparent;
	opacity: 0.9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
	transform: scale(1);
	width: 250px;
	padding: 10px;
	margin: 10px;
	text-align: left;
	display: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	word-break: break-all;
}
.jGrowl .jGrowl-notification {
	min-height: 40px;
}
.jGrowl-notification .ui-state-highlight,
.jGrowl-notification .ui-widget-content .ui-state-highlight,
.jGrowl-notification .ui-widget-header .ui-state-highlight {
	border: 1px solid #000;
	background: #000;
	color: #fff;
}
.jGrowl-notification .jGrowl-header {
	font-weight: bold;
	font-size: .85em;
}
.jGrowl-notification .jGrowl-close {
	background-color: transparent;
	color: inherit;
	border: none;
	z-index: 99;
	float: right;
	font-weight: bold;
	font-size: 1em;
	cursor: pointer;
}
.jGrowl-closer {
	background-color: #000000;
	opacity: 0.9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
	transform: scale(1);
	width: 250px;
	padding: 10px;
	margin: 10px;
	text-align: left;
	display: none;
	border-radius: 5px;
	word-break: break-all;
	padding-top: 4px;
	padding-bottom: 4px;
	cursor: pointer;
	font-size: .9em;
	font-weight: bold;
	text-align: center;
}
.jGrowl-closer .ui-state-highlight,
.jGrowl-closer .ui-widget-content .ui-state-highlight,
.jGrowl-closer .ui-widget-header .ui-state-highlight {
	border: 1px solid #000;
	background: #000;
	color: #fff;
}

.jGrowl .jGrowl-notification.jgrowl_success {
    background: lightgreen;
    border: 1px solid lightgreen;
    color: #333;
}

.jGrowl .jGrowl-notification.jgrowl_error {
    background: red;
    border: 1px solid red;
    color: #333;
}

.jGrowl .jGrowl-notification.jgrowl_process, .jGrowl .jGrowl-closer {
    background: yellow;
    border: 1px solid yellow;
	color: #333;
}

/** Hide jGrowl when printing **/
@media print {
	.jGrowl {
		display: none;
	}
}

/** jGrowl End **/

/** Modal Start **/

.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.75);
	text-align: center;
}

.blocker:before{
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.05em;
}

.blocker.behind {
	background-color: transparent;
}

.modal {
	width: 400px;
	text-align: left;
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
}

.modal a.close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background: url(../../../images/close.png) no-repeat 0 0;
	z-index: 2;
}

.modal-spinner {
	display: none;
	width: 64px;
	height: 64px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-right: -32px;
	margin-top: -32px;
	background: url(../../../images/spinner_big.gif) no-repeat center center;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
}

/** Modal End **/

/** Impromptu Start **/

/*! jQuery-Impromptu - v6.2.3 - 2016-04-23
* http://trentrichardson.com/Impromptu
* Copyright (c) 2016 Trent Richardson; Licensed MIT */

.jqifade{
	position: absolute;
	background-color: #777777;
}
iframe.jqifade{
	display:block;
	z-index:-1;
}
div.jqi{
	width: 400px;
	max-width:90%;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	position: absolute;
	background-color: #ffffff;
	font-size: 11px;
	text-align: left;
	border: solid 1px #eeeeee;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	padding: 7px;
}
div.jqi .jqicontainer{
}
div.jqi .jqiclose{
	position: absolute;
	top: 4px; right: -2px;
	width: 18px;
	cursor: default;
	color: #bbbbbb;
	font-weight: bold;
}
div.jqi .jqistate{
	background-color: #fff;
}
div.jqi .jqititle{
	padding: 5px 10px;
	font-size: 16px;
	line-height: 20px;
	border-bottom: solid 1px #eeeeee;
}
div.jqi .jqimessage{
	padding: 10px;
	line-height: 20px;
	color: #444444;
	overflow: auto;
}
div.jqi .jqibuttonshide{
	display: none;
}
div.jqi .jqibuttons{
	text-align: right;
	margin: 0 -7px -7px -7px;
	border-top: solid 1px #e4e4e4;
	background-color: #f4f4f4;
	border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	-webkit-border-radius: 0 0 6px 6px;
}
div.jqi .jqibuttons button{
	margin: 0;
	padding: 15px 20px;
	background-color: transparent;
	font-weight: normal;
	border: none;
	border-left: solid 1px #e4e4e4;
	color: #777;
	font-weight: bold;
	font-size: 12px;
}
div.jqi .jqibuttons button.jqidefaultbutton{
	color: #489afe;
}
div.jqi .jqibuttons button:hover,
div.jqi .jqibuttons button:focus{
	color: #287ade;
	outline: none;
}
div.jqi .jqibuttons button[disabled]{
	color: #aaa;
}
.jqiwarning .jqi .jqibuttons{
	background-color: #b95656;
}

/* sub states */
div.jqi .jqiparentstate::after{
	background-color: #777;
	opacity: 0.6;
	filter: alpha(opacity=60);
	content: '';
	position: absolute;
	top:0;left:0;bottom:0;right:0;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}
div.jqi .jqisubstate{
	position: absolute;
	top:0;
	left: 20%;
	width: 60%;
	padding: 7px;
	border: solid 1px #eeeeee;
	border-top: none;
	border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	-webkit-border-radius: 0 0 6px 6px;
}
div.jqi .jqisubstate .jqibuttons button{
	padding: 10px 18px;
}

/* arrows for tooltips/tours */
.jqi .jqiarrow{ position: absolute; height: 0; width:0; line-height: 0; font-size: 0; border: solid 10px transparent;}

.jqi .jqiarrowtl{ left: 10px; top: -20px; border-bottom-color: #ffffff; }
.jqi .jqiarrowtc{ left: 50%; top: -20px; border-bottom-color: #ffffff; margin-left: -10px; }
.jqi .jqiarrowtr{ right: 10px; top: -20px; border-bottom-color: #ffffff; }

.jqi .jqiarrowbl{ left: 10px; bottom: -20px; border-top-color: #ffffff; }
.jqi .jqiarrowbc{ left: 50%; bottom: -20px; border-top-color: #ffffff; margin-left: -10px; }
.jqi .jqiarrowbr{ right: 10px; bottom: -20px; border-top-color: #ffffff; }

.jqi .jqiarrowlt{ left: -20px; top: 10px; border-right-color: #ffffff; }
.jqi .jqiarrowlm{ left: -20px; top: 50%; border-right-color: #ffffff; margin-top: -10px; }
.jqi .jqiarrowlb{ left: -20px; bottom: 10px; border-right-color: #ffffff; }

.jqi .jqiarrowrt{ right: -20px; top: 10px; border-left-color: #ffffff; }
.jqi .jqiarrowrm{ right: -20px; top: 50%; border-left-color: #ffffff; margin-top: -10px; }
.jqi .jqiarrowrb{ right: -20px; bottom: 10px; border-left-color: #ffffff; }

/** Impromptu End */

/****************************************
Boardstats & recent topics 
*****************************************/
/* Wrapper */
.index-RT-BS-wrapper {
  max-width: 1200px;
  margin: auto auto;
  display: flex;
  background-color: var(--block-dark);
}

.index-RT-BS-wrapper > * {
  flex: 1;
}


.boardstats-wrapper {
  background-color: var(--block-dark);
  color: var(--text-color);
  font-family: var(--font-read);
  padding: 2em;
  max-width: 620px;
min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: stretch;  
}

/* make all children full width by default */
.boardstats-wrapper > * {
  width: 100%;
}

/* center a specific smaller element */
.boardstats-wrapper > .small {
  width: 75%;           /* your chosen smaller width */
  align-self: center;     /* center horizontally */
}


/* Header Section */
.welcome-header {
    align-items: center;
  margin-bottom: 2em;
  padding-bottom: 1.5em;
}

.welcome-header .welcome-title {
  font-family: var(--font-header);
  font-size: 2em;
  margin: 0 0 0.5em 0;
  font-weight: normal;
    border-bottom: 1px solid var(--accent1);
  text-align: left;
}

.welcome-header .character-name {
  font-family: var(--font-header);
  font-size: 2em;
  margin: 0;
  font-weight: normal;
  text-align: right;
}

/* Online Sections */
.online-section, .onlinetoday-section {
  width: 100%;
  margin-bottom: 2em;
  background-color: var(--block-med);
  padding: 1.5em;
  border-radius: 4px;
}

/* Online Sections */
.online-header-row {
  display: flex;
  align-items: baseline;
  gap: 1em;
  margin-bottom: 0.1em;
}

.online-heading {
  font-family: var(--font-header);
  font-size: 1.6em;
  margin: 0;
  font-weight: normal;
  flex-shrink: 0;
}

.online-info {
  color: var(--text-color-muted);
  font-size: 0.7em;
  margin: 0;
}

.online-users {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.onlinetoday-section strong {display: none;}

.onlinetoday-section .smalltext {
  display: flex;
  flex-wrap: wrap;
  font-size: 0; /* Hide all text nodes */
}

/* Hide the BR tag */
.onlinetoday-section .smalltext br {
  display: none;
}

/* Make avatar rows visible and display in a ROW */
.onlinetoday-section .avatarep_online_row {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1em;
  margin-bottom: 1em;
  font-size: 1rem; /* Restore font size for avatars */
}

/* Hide the "Who's online Today" heading and link */
.onlinetoday-section > strong {
  display: none;
}

/* Hide the text node "[" and "]" and the link next to the heading */
.onlinetoday-section {
  font-size: 0; /* Hide text nodes like brackets */
}

.onlinetoday-section > a {
  display: none; /* Hide the "View full list" link */
}

/* Restore font size for the container */
.onlinetoday-section > * {
  font-size: 1rem;
}

.avatar-link {
  display: block;
}

.user-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.username-link {
  color: var(--accent1);
  text-decoration: none;
  font-size: 0.95em;
}

/* Online Sections */
.birthday-section {
  margin-bottom: 2em;
  background-color: var(--block-med);
  padding: 1.5em;
  border-radius: 4px;
}


/* Stats Section */
.stats-section {
  display: flex;
  justify-content: space-around;
  margin: 2em 0;
}

.stat-item {
  display: flex;                    /* use flexbox */
  flex-direction: column;           /* stack children vertically */
  justify-content: center;          /* center vertically */
  align-items: center;              /* center horizontally */
  text-align: center;
  background-color: var(--block-med);
  width: 135px;
  height: 135px;
  padding: 1em;
}

.stat-number {
  font-family: var(--font-header);
  font-size: 2em;
  color: var(--accent1);
  margin-bottom: 0.2em;
}

.stat-label {
  font-family: var(--font-header);
  font-size: 1em;
  color: var(--text-color);
}



/* Footer Links */
.bs-footer-links {
  text-align: right;
  font-size: 0.9em;
  color: var(--text-color-muted);
}

.bs-footer-link {
  color: var(--accent1);
  text-decoration: none;
}

.bs-footer-link:hover {
  color: var(--text-color);
}

/* recent topic start */
.recent-topic-rows-wrapper {
  padding: 2em;
  overflow-y: auto;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  gap: 10px;

}


#recentthreads .thead {  font-family: var(--font-header);}

.RT-container {
  width: 500px;
  background-color: var(--block-med);
  padding: 8px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  display: flex;
  gap: 10px;
  margin: auto;
}

.RT-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.RT-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.RT-topic-title a {
  color: var(--accent1);
  font-size: 18px;
  font-family: var(--font-header);
}

.RT-topic-title a:hover {
  color: var(--text-color);
}

.RT-post-count {
  color: var(--text-color);
  font-size: 10px;
  background-color: var(--block-light);
  padding: 2px 8px;
}

.RT-divider {
  border-bottom: 1px solid var(--accent1);
  margin-bottom: 5px;
}

.RT-breadcrumb {
  color: var(--text-color-muted);
  font-size: 10px;
}

.RT-breadcrumb a {
  color: var(--accent1);
}

.RT-breadcrumb a:hover {
  color: var(--text-color);
}



.RT-bottom {
  margin-top: auto;
}

.RT-last-post-line {
  color: var(--text-color);
  font-size: 11px;
  text-align: right;
}

.RT-last-post-name {
  color: var(--accent1);
}

.RT-last-post-date {
  color: var(--text-color);
  font-size: 10px;
    text-align: right;
}

.RT-avatar {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.RT-avatar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.RT-avatar img {
  width: 85px!important;
  height: 85px!important;
  object-fit: cover;
	object-position: top center;
  display: block;
}




/* Make multi-select boxes resizable */
select[multiple] {
    resize: both;
    overflow: auto;
    min-height: 80px;
}

/* Make textboxes 100% width in profile editor only */
form[action="usercp.php"] input[type="text"],
form[action="usercp.php"] input.textbox,
form[action="usercp.php"] textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Only multi-selects get 100% width */
form[action="usercp.php"] select[multiple] {
    width: 100%;
    box-sizing: border-box;
}



.signature img, .signature_preview_content img, .signature-content img {
  width: 130px !important;
  height: 130px !important;
  object-fit: cover;
  object-position: center;
  border: none !important;
  border-radius: 5px;
  display: inline-block !important;
  margin: 0 5px 5px 5px !important;
  vertical-align: top;
}

.author_information img {
  width: 60px !important;
  height: 60px !important;
display: block;
	margin: auto auto;
}


/*/* ===========================
   MyBB Edit Post – Single Column Content-Only
   (No .button rules, no .sceditor* rules)
   =========================== */

.editpost_content {
  background: var(--block-dark);
  border: 1px solid var(--block-light);
  border-radius: var(--br-med);
  padding: 18px;
  color: var(--text-color);
  font-family: var(--font-read);
}

/* Global text helpers within the content */
.editpost_content .smalltext {
  color: var(--text-color-muted);
  line-height: 1.5;
}

.editpost_content a {
  color: var(--accent2);
  text-decoration: none;
}
.editpost_content a:hover {
  color: var(--accent1);
  text-decoration: underline;
}

/* Single-column rows */
.editpost_content .form_row,
.editpost_content .posticons_row,
.editpost_content .edit_reason_row,
.editpost_content .post_options_row {
  display: flex;
	flex-flow: row;
  width: 100%;
  padding: 14px 0;
  border-top: 1px dashed var(--block-lighter);
}

.editpost_content .form_row:first-of-type {
  border-top: 0;
}

/* Labels and label sections */
.editpost_content .form_label,
.editpost_content .form_label_section {
  display: block;
  margin: 0 0 8px 0;
  color: var(--text-color);
  font-weight: 600;
}

/* Inputs/selects – content only (no buttons, no sceditor) */
.editpost_content .form_input {
  width: 100%
}

.editpost_content .textbox,
.editpost_content select,
.editpost_content input[type="text"],
.editpost_content input[type="number"],
.editpost_content input[type="file"] {
  width: 100%;
  background: var(--block-light);
  color: var(--text-color);
  border: 1px solid var(--block-lighter);
  border-radius: var(--br-small);
  padding: 10px 12px;
  line-height: 1.35;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  font-family: var(--font-read);
}

.editpost_content .textbox::placeholder,
.editpost_content input[type="text"]::placeholder {
  color: var(--text-color-muted);
}

.editpost_content .textbox:focus,
.editpost_content select:focus,
.editpost_content input[type="text"]:focus,
.editpost_content input[type="number"]:focus,
.editpost_content input[type="file"]:focus {
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(186, 142, 67, .25);
  background: var(--block-lighter);
}

/* Checkboxes & radios (visual accent only) */
.editpost_content input[type="checkbox"],
.editpost_content input[type="radio"] {
  accent-color: var(--accent1);
}

/* Username/change-user line spacing */
.editpost_content > strong + text,
.editpost_content > strong + .smalltext {
  display: inline;
}
.editpost_content > .smalltext {
  margin-left: 6px;
}

/* Subject row specifics (prefix + subject input) */
.editpost_content .form_row .form_input > select[name="threadprefix"] {
  margin-bottom: 8px;
}

/* Posticons (Content Warning) – single column */
.posticons_row .form_label_section strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
.posticons_row .form_input select#post_icon_dropdown {
  width: 50%;
}

.message_row .smilie_inserter {
  margin-bottom: 8px;
  color: var(--text-color-muted);
}

/* Prefix select + subject input side-by-side */
.editpost_content .form_row .form_input select[name="threadprefix"] {
  flex: 0 0 220px !important;
  max-width: 220px !important;
  background: var(--block-light) !important;
  color: var(--text-color) !important;
  border: 1px solid var(--block-lighter) !important;
  border-radius: var(--br-small) !important;
  padding: 10px !important;
  font-family: var(--font-read) !important;
  line-height: 1.35 !important;
  min-width: 0 !important;
}

.editpost_content .form_row .form_input input.textbox[name="subject"] {
  flex: 1 1 auto !important;
  min-width: 0 !important; /* prevent overflow in flex */
  width: auto !important;
  background: var(--block-light) !important;
  color: var(--text-color) !important;
  border: 1px solid var(--block-lighter) !important;
  border-radius: var(--br-small) !important;
  padding: 10px 12px !important;
  font-family: var(--font-read) !important;
  line-height: 1.35 !important;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease !important;
}

/* Word counter (visual) just after editor (content-only) */
#live-word-counter-visual {
  text-align: right !important;
  padding: 6px 10px !important;
  font-family: var(--font-read) !important;
  font-size: .9em !important;
  color: var(--text-color-muted) !important;
  background: var(--block-med) !important;
  border-top: 1px solid var(--block-light) !important;
}

/* Edit Reason */
.edit_reason_row .form_input .textbox {
  width: 100%;
}

/* Post Options block */
.post_options_row .post_options_container {
  display: grid;
  gap: 10px;
  background: var(--block-light);
  border: 1px solid var(--block-lighter);
  border-radius: var(--br-small);
  padding: 12px;
}
.post_options_row .post_options_container .post_option {
  display: flex;
  gap: 10px;
  align-items: start;
  color: var(--text-color);
}
.post_options_row .post_options_container .post_option strong {
  color: var(--text-color);
}

/* Thread Subscription – convert legacy line-break layout into neat stack */
.editpost_content > strong + br + .smalltext {
  display: block;
  margin: 6px 0 10px 0;
  color: var(--text-color-muted);
}
.editpost_content > strong {
  display: block;
  margin-top: 10px;
  font-weight: 700;
}
.editpost_content > label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 6px 0;
  color: var(--text-color);
}

/* Poll block – tidy and box it */
.editpost_content > strong + br + .smalltext + br + .smalltext,
.editpost_content .smalltext:has(> label > input[name="postpoll"]) {
  display: block;
}

.editpost_content .smalltext:has(> label > input[name="postpoll"]) {
  background: var(--block-light);
  border: 1px solid var(--block-lighter);
  border-radius: var(--br-small);
  padding: 12px;
  margin-top: 6px;
  display: block;
}

.editpost_content input[name="numpolloptions"].textbox {
  max-width: 160px;
  margin-left: 6px;
}

/* Space above/below the "Change Post Author" row but no button styling */
.author_change_row {
  padding: 12px 0;
  border-top: 1px dashed var(--block-lighter);
}



/* Subject row layout — force block then flex row for inputs */
.editpost_content .form_row {
  display: block !important;
  width: 100% !important;
  margin-bottom: 16px !important;
}

.editpost_content .form_row .form_label {
  display: block !important;
  margin: 0 0 8px 0 !important;
  font-weight: 600 !important;
  color: var(--text-color) !important;
  text-align: left !important;
}

/* Inputs container under the label */
.editpost_content .form_row .form_input {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
}

/* Focus feedback */
.editpost_content .form_row .form_input input.textbox[name="subject"]:focus,
.editpost_content .form_row .form_input select[name="threadprefix"]:focus {
  border-color: var(--accent1) !important;
  box-shadow: 0 0 0 3px rgba(186, 142, 67, .25) !important;
  background: var(--block-lighter) !important;
}


.editpost_content .form_row.message_row .form_label {
  display: block !important;
  margin: 0 0 8px 0;
  text-align: left;
  font-weight: 600;
  color: var(--text-color);
}

.editpost_content .form_row.message_row .smilie_inserter {
  display: block;
  width: 100%;
  margin: 0 0 8px 0;
  text-align: left;
  color: var(--text-color-muted);
}



/* Keep the live counter full-width under the editor */
#live-word-counter-visual {
  display: block!important;
  width: 100%;
  text-align: left; /* or right if you prefer */
}



/* --- Delete Post Container: single-column layout --- */
.delete_post_container {
  display: block !important;
  width: 100% !important;
  background: var(--block-dark);
  border: 1px solid var(--block-light);
  border-radius: var(--br-med);
  padding: 18px;
  color: var(--text-color);
  font-family: var(--font-read);
}

/* Title bar */
.delete_post_container .post_head {
  background: linear-gradient(0deg, var(--block-light), var(--block-med));
  border-bottom: 1px solid var(--block-lighter);
  padding: 14px 18px;
  border-radius: var(--br-med) var(--br-med) 0 0;
}

.delete_post_container .post_head .post-title strong {
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    white-space: nowrap;
    flex-shrink: 0;
	font-family: var(--font-title);
}

.editpost_buttons {
  display: flex !important;
  justify-content: center !important; /* centers horizontally */
  align-items: center !important;     /* centers vertically */
  gap: 10px;                          /* optional spacing between buttons */
  padding: 14px 0;
  width: 100%;
}

/* Content section stacked vertically */
.delete_post_container .delete_post_content {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 16px 0 !important;
}

/* Checkbox block */
.delete_post_container .delete_checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.delete_post_container .delete_checkbox label {
  color: var(--text-color);
  font-weight: 600;
}

/* Warning box */
.delete_post_container .delete_warning {
  background: var(--block-light);
  border: 1px solid var(--block-lighter);
  border-left: 3px solid var(--accent1);
  border-radius: var(--br-small);
  padding: 12px 14px;
  color: var(--text-color-muted);
  line-height: 1.45;
  width: 100%;
}

.delete_post_container .delete_warning .smalltext {
  display: block;
  margin-top: 6px;
  color: var(--text-color-muted);
}

/* Delete button area (keeps single column alignment) */
.delete_post_container .delete_action {
  display: block;
  width: 100%;
  text-align: left; /* keep button aligned left */
}

