/*************************************************************
A - SETUP
**************************************************************/

/* A1 Import the colour scheme
-------------------------------------------------------------*/

/* A1.1 Import */
@import url(style_cs.1681822263.css);

@font-face {
    font-family: 'beatrice';
    src: url('https://forumstatic.ru/files/001b/d2/66/33510.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gowa';
    src: url('https://forumstatic.ru/files/001b/d2/66/59184.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
  
/* A1.2 Variables */  
html {
    --back: url(https://forumstatic.ru/files/001b/d2/66/96449.jpeg);
    --flowers: url(https://forumstatic.ru/files/001b/d2/66/78354.jpeg);
    
    --dec-font: 'gowa';
    --main-font: 'Roboto';
    
    --back-color: #263427;
    --petal: #D7D7D7;
    --fresh: #769A5B;
    --white: #FFFFFF;
    --black: rgba(0, 0, 0, 0.75);
    --black-tr: rgba(0, 0, 0, 0.05);
    --black-profile: #161616;
    --gem-color: #DDFFC5;
    --new-color: #B28B00;
    --green: #425A3E;
    --yellow: #D1A712;
    --offline: #7A7A7A;
    --hover-color: #263427;
    --charcoal: #272727;
    --main-color: #BEBEBE;
    --main-tr: rgba(227, 218, 211, 0.5);
    --links-hover: #BD2159;
    
    --anim: 0.3s ease all;
    --filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.25));
}

body.light {
    --back-color: rgba(38, 52, 39, 0.45);
    --main-color: #DDD7D3;
    --new-color: #D7AD18;
    --hover-color: #4D7C2B;
    --green: #657E53;
    --petal: #F2EDE9;
}
  

/* A2 Deal with browser defaults and wonkiness
-------------------------------------------------------------*/

/* A2.1 */
html, body {
    margin: 0;
    padding: 0;
}

/* A2.2 */
.punbb * {
    margin: 0
}

/* A2.3 */
.punbb ul, .punbb dl, .punbb li, .punbb dd, .punbb dt {
    padding: 0;
    list-style: none;
}

/* A2.4 */
.punbb img {
    border:none
}

/* A2.5 */
.punbb .main table {
    table-layout: fixed;
    width: 100%;
}

/* A2.6 */
#pun-index .main table thead {
    display: none;
}

/* A2.7 */
.checkfield input[type="checkbox"], .radiofield input[type="radio"] {
    margin: 0 0.3em;
}

/* A2.8 */
p[class="checkfield"] *,
div[class="checkfield"] *,
fieldset[class="radiofield"] * {
    height: 1.8em;
    vertical-align: middle
}


/* A3 Text setup
-------------------------------------------------------------*/

/* A3.1 */
body {
    font-size: 100.01%;
}

/* A3.2 */
.punbb {
    font: normal 68.75% verdana, arial, helvetica, sans-serif;
}

/* A3.3 */
.punbb textarea, .punbb input, .punbb select, .punbb optgroup {
    font: 1.1em verdana, arial, helvetica, sans-serif;
    background: var(--petal);
}

/* A3.4 */
.punbb h1, .punbb h2, .punbb h3, .punbb h4, .punbb table, .punbb th {
    font-size: 1em;
    font-weight: normal;
}

/* A3.5 */
.punbb h1 span, .punbb h2 span, .punbb legend span {
}

/* A3.6 */
.punbb pre {
    font: 1.1em/140% monaco, "bitstream vera sans mono", "courier new", courier, monospace
}

/* A3.7 */
.punbb address, .punbb em {
    font-style: normal
}

/* A3.8 */
.punbb .post-content em {
    font-style: italic
}

/* A3.9 */
.punbb .post-content em.bbuline {
    font-style: normal;
    text-decoration: underline;
}

/* A3.10 */
.punbb a {
    text-decoration: none;
    color: var(--green);
    transition: var(--anim);
}

/* A3.11 */
.punbb a:hover {
    color: var(--fresh);
}

/* A3.12 */
.punbb optgroup {
    font-weight: bold;
}


/* A4 Float clearing and hidden items
-------------------------------------------------------------*/

/* A4.1 */
#pun:after,
.punbb .container:after,
.punbb .post-links ul:after,
.punbb .main div.inline:after,
.punbb .post-box:after,
.punbb .linksb:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    overflow:hidden;
    line-height: 0.0;
    font-size: 0;
}

/* A4.2 */
.acchide,
#pun-index #pun-main h1,
#pun-navlinks h2,
#pun-pagelinks h2,
#pun-status h2,
#pun-ulinks h2,
.punbb .forum h2,
.punbb .multipage .topic h2,
.punbb dl.post-sig dt span,
.punbb p.crumbs strong,
.punbb .divider hr,
.punbb .required label em,
.punbb .formsubmit label,
.punbb .submitfield label,
.punbb .modmenu label,
#pun-userlist .main h2 {
    font-size: 0;
    height: 0;
    width: 0;
    line-height: 0.0;
    position:absolute;
    left: -9999px;
    overflow: hidden
}


/* A5 Basic page layout and borders
-------------------------------------------------------------*/

/* A5.1 */
html {
    background: var(--back)no-repeat fixed, var(--back-color);
}

/* A5.2 */
#pun {
    margin: 20px auto;
    position: relative;
    width: 1050px;
}

/* A5.3 */
.punbb {
    float: left;
    height: auto;
    margin-top: 170px;
    background: var(--back-color);
    padding: 0 40px;
    margin-bottom: 50px;
    width: 970px;
}

/* A5.4 */
#pun-redirect, #pun-maint {
    margin: 50px 20% 12px 20%;
    width: auto;
    float: none;
}

/* A5.5 */
.punbb .section, .punbb .main {
    margin-bottom: 0;
}

/* A5.6 */
.punbb .category, .punbb .post {
  margin-top: 0.4em;
  }

/* A5.7 */
.punbb #pun-category1, .punbb .toppost, .punbb .topicpost {
  margin-top: 0;
  }

/* A5.8 */
#pun-post .topic {
  margin-top: 1em;
  }

/* A5.9 */
.punbb .section, .punbb .forum, .punbb .formal, .punbb .modmenu, .punbb .info,
.punbb .category, .punbb .post {
    border: none;
}

/* A5.10 */
.punbb .container {
    border: none;
}

/* A5.11 */
/*.punbb .section h2*/
#pun-main h1, #pun-debug h2 {
    padding: 0;
    text-align: left;
    color: var(--fresh);
    font-family: var(--dec-font);
    font-size: 28px;
    border-bottom: var(--fresh) 2px solid;
    margin: 0 15px;
    font-weight: bold;
}

/*************************************************************
B - MAIN CONTENT - GENERAL
**************************************************************/

/* B1 Parsed Content, Signatures and Scroll Boxes
-------------------------------------------------------------*/

/* B1.1 */
.punbb .post-content {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  text-align: justify;
  }

/* B1.2 */
.punbb .post-sig dt {
  display: block;
  border-top: 1px solid #888;
  width: 250px;
  margin: 5px 0;
  }

/* B1.3 */
.punbb .post-content p {
  margin: 0;
  padding: 0 0 1em 0;
  line-height: 150%;
  }

/* B1.4 */
.punbb .post-content img {
  vertical-align: text-bottom
  }

/* B1.5 */
.punbb .post-content img.postimg {
  vertical-align: middle;
  }

/* B1.6 */
.punbb .post-content .blockcode, .punbb .post-content blockquote {
  width: 100%;
  overflow: hidden;
  }

/* B1.7 */
.punbb .post-content .scrollbox {
  width: 100%;
  overflow: auto;
  }

/* B1.8 */
.punbb .post-content .quote-box, .punbb .post-content .code-box {
    margin: 0 1.8em 1.4em 1.8em;
    padding: 1em;
}

/* B1.9 */
.punbb .post-content .quote-box {
    background: var(--black-tr);
    border-top: var(--new-color) 3px solid;
}

/* B1.10 */
.punbb .post-content .code-box {
    background: rgba(22, 22, 22, 0.65);
    color: var(--petal);
    border-top: var(--green) 3px solid;
}

/* B1.11 */
.punbb .quote-box cite, .punbb .code-box strong.legend {
    display: block;
    margin-bottom: 0.7em;
    font-size: 1.75em;
    font-weight: bold;
    font-style: normal;
    font-family: var(--dec-font);
    text-transform: lowercase;
}

/* B1.12 */
.punbb .quote-box cite {
    color: var(--fresh);
    border-bottom: var(--green) 2px solid;
}

/* B1.13 */
.punbb .code-box strong.legend {
    color: var(--petal);
    border-bottom: var(--petal) 2px solid;
}

/* B1.14 */
.punbb .code-box strong.legend a {
    color: var(--petal);
}

/* B1.15 */
.punbb .code-box strong.legend a:hover {
    color: var(--white);
}

/* B2 Information boxes
-------------------------------------------------------------*/

/* B2.1 */
.punbb .info-box {
  padding: 1.1em 1.7em 1em 1.7em;
  border-style: solid;
  border-width: 1px;
  margin: 0 0 1.1em 0;
  }

/* B2.2 */
.punbb .info-box * {
  padding: 0 0 0.7em 0;
  }

/* B2.3 */
.punbb #pun-main .info-box .legend {
  font-size: 1.1em;
  font-weight: bold;
  }


/* B3 Pagination and posting links
-------------------------------------------------------------*/

/* B3.1 */
.punbb .linkst {
    /*position: relative;*/
    font-size: 12px;
    height: 26px;
    font-family: var(--main-font);
    margin: 5px 15px 10px;
    line-height: 26px;
}

/* B3.2 */
.multipage {
    margin-top: 0;
}

/* B3.3 */
.linkst .pagelink {
    display: inline-block;
    width: 49%;
}

/* B3.4 */
.linkst .postlink {
    text-align: right;
    font-weight: bold;
    float: right;
    display: inline-block;
    width: 50%!important;
}

/* B3.5 */
.postlink.long a {
    background: var(--main-color);
    border: var(--green) 1px solid;
    border-radius: 20px;
    font-size: 12px;
    padding: 5px 10px;
    font-weight: 600;
    font-family: var(--main-font);
}

/* B3.6 */
.postlink.long a:hover {
    background: var(--fresh);
    border-color: var(--fresh);
    color: var(--petal);
}

/* B3.7 */
.punbb .linksb {
    text-align: right;
    padding: 7px 0 3px;
    font-size: 12px;
    border-top: var(--fresh) 2px solid;
    font-family: var(--main-font);
    line-height: 26px;
    margin: 0 15px;
}

/* B3.8 */
#pun-viewtopic.punbb .linksb {
    border: none;
    padding: 3px 0;
}

/* B3.9 */
.linksb .pagelink {
    float: left;
    width: 24em;
    text-align: left;
}

/* B3.10 */
.linksb .postlink {
  float: right;
  width: 16em;
  font-weight: bold
  }

/* B3.11 */
.subscribelink {
  clear:both;
  padding-top: 0.3em;
  padding-bottom: 0.5em;
  }


/*************************************************************
C - MAIN CONTENT - SPECIFIC
**************************************************************/

/* C1 Form layout
-------------------------------------------------------------*/

/* C1.1 */
.punbb .formal .container {
  padding: 1.7em 2.3em 1.1em 2.3em;
  }

/* C1.2 */
.punbb .formsubmit {
  padding: 0;
  margin: 0;
  }

/* C1.3 */
.punbb .formsubmit input, .punbb .formsubmit a, .punbb .formsubmit span {
    margin: 0 0.6em 0 0;
    background: var(--petal);
    color: var(--green);
    border: none;
    border-bottom: var(--green) 2px solid;
    padding: 5px 10px;
    font-size: 12px;
    font-family: var(--main-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--anim);
  }

/* C1.4 */
.punbb .formsubmit input:hover, .punbb .formsubmit a:hover, .punbb .formsubmit span:hover {
    background: var(--green);
    color: var(--petal);
    transition: var(--anim);
}

/* C1.5 */
.punbb fieldset {
    border-style: none;
    padding: 0;
    margin: 0;
}

/* C1.6 */
.punbb fieldset legend {
  padding: 0;
  margin: 0;
  font-size: 1.1em
  }

/* C1.7 */
.punbb fieldset legend span {
    padding: 0 5px;
    margin: 0;
    font-family: var(--main-font);
  }

/* C1.8 */
.punbb fieldset fieldset {
  border-style: none;
  margin: 0;
  padding: 0 0 8px 0
  }

/* C1.9 */
.punbb .fs-box {
  padding: 1em 0 0.8em 0;
  }

/* C1.10 */
.punbb .fs-box p, .punbb .fs-box fieldset {
  padding: 0 0 0.8em 0
  }

/* C1.11 */
.punbb .inline .inputfield, .punbb .inline .selectfield, .punbb .inline .passfield {
  float: left;
  margin-right: 1em;
  }

/* C1.12 */
.punbb .inline .infofield {
  clear:both
  }

/* C1.13 */
.punbb .datafield br {
  display: none
  }

/* C1.14 */
.punbb .required label, .punbb .datafield span.input {
  font-weight: bold
  }

/* C1.15 */
.punbb .datafield span.input a {
  font-weight: normal;
  }

/* C1.16 */
.punbb .areafield span.input, .punbb p.longinput span.input {
  display: block;
  padding: 0 12em 0 0;
  height: 100%; /* For IE */
  }

/* C1.17 */
.punbb textarea, .punbb .longinput input {
  width: 64%;
  margin: 0;
  }

/* C1.18 */
.punbb .hashelp {
  position: relative;
  }

/* C1.19 */
.punbb .helplinks {
  display: block;
  position: absolute;
  top: 1em;
  right: 0;
  font-weight: normal;
  width: 36%;
  }

/* C1.20 */
.punbb #profile .helplinks {
  top: 1.5em;
  }

/* C1.21 */
.punbb .helplinks span {
  display: block;
  padding-bottom: 0.2em;
  }

/* C1.22 */
#pun-post .formal .info-box li {
  padding-left: 4px;
  list-style-type: square;
  list-style-position: inside;
  line-height: 1.5;
  margin: 0;
  }

/* C1.23 */
#post-form {
    background: var(--black-tr);
    padding: 10px 30px;
}

/* C1.24 */
#post-form h2 span {
    font-family: var(--dec-font);
    font-size: 22px;
    line-height: 16px;
}

/* C1.25 */
#post-form .container {
    padding: 10px 0;
}

/* C1.26 */
#post-form .container legend small {
    padding: 5px 9px;
    margin: 0;
    color: var(--white);
    background: var(--black-profile);
    border-radius: 8px;
    margin-right: 20px;
    font-family: var(--main-font);
}

/* C1.27 */
#post-form .container #form-buttons {
    background: var(--petal);
    border-radius: 5px;
    margin: 3px 0 8px;
}

/* C1.28 */
#tags .container {
    position: absolute;
    top: 40px;
    z-index: 2;
    background: var(--petal);
    border: 1px solid;
    border-color: var(--main-color);
    padding: 5px 10px;
}

/* C1.29 */
#main-reply {
    margin: 0;
    background: var(--petal);
    border: none;
    border-radius: 5px;
}


/* C2 Table layout
-------------------------------------------------------------*/

/* C2.1 */
.punbb .main .tcl {
  overflow: hidden;
  text-align: left;
  width: 50%;
  }

/* C2.2 */
.punbb .main .tc2, .punbb .main .tc3, .punbb .main .tcmod {
  text-align: center;
  width: 10%;
  }

/* C2.3 */
.punbb .main .tcr {
    text-align: right;
    width: 30%;
}

/* C2.4 */
#pun-userlist .main .tcl,
#pun-modviewforum .main .tcl {
  width: 40%
  }

/* C2.5 */
#pun-userlist .main .tc2,
#pun-searchtopics .main .tc2 {
  text-align: left;
  width: 20%;
  }

/* C2.6 */
#pun-debug table .tcl {
  width: 15%;
  white-space:normal;
  }

/* C2.7 */
#pun-debug .tcr {
  width: 90%;
  white-space: normal;
  }

/* C2.8 */
#pun-index .tcl h3 {

  }

/* C2.9 */
.punbb td span.youposted {
  font-weight: bold;
  margin-left: -1em;
  position: absolute;
  }

/* C2.10 */
.punbb td .modlist {
  display: none;
  }

/* C2.11 */
.punbb .main td {
    border-style: none;
    /*padding: 0.8em 1em;*/
}

/* C2.12 */
.punbb .main th {
  border: none;
  }

/* C2.13 */
.punbb .main .tcl {
  border-left-style: none;
  border-left-width: 0
  }

/* C2.14 */
.punbb tbody.hasicon td.tcl {
    /*padding-left: 3.2em*/
}

/* C2.15 */
#pun-viewforum table tbody tr, #pun-viewforum table thead tr, #pun-searchtopics table tbody tr, #pun-searchtopics table thead tr {
    background: var(--black-tr);
    border-radius: 3px;
    display: flex;
    width: 900px;
    margin: 0 auto 5px;
    align-items: center;
    padding: 5px 10px 5px 0;
    font-family: var(--main-font);
    font-size: 13px;
    text-transform: lowercase;
}

#pun-viewforum table tbody tr.inew, #pun-viewforum table thead tr.inew, #pun-searchtopics table tbody tr.inew, #pun-searchtopics table thead tr.inew {
    background: linear-gradient(to right, var(--yellow) 10px, var(--black-tr) 10px 100%);
}

/* C2.16 */
#pun-viewforum table thead tr, #pun-searchtopics table thead tr {
    background: none;
}

/* C2.17 */
#pun-viewforum table tbody tr.tr-divider {
    font-family: var(--dec-font);
    font-size: 26px;
    color: var(--fresh);
    line-height: 20px;
    display: block!important;
    background: none;
    font-weight: bold;
}

/* C2.18 */
#pun-viewforum table tbody tr .tclcon, #pun-searchtopics table tbody tr .tclcon {
    margin-left: 13px;
}

/* C2.19 */
#pun-viewforum table tbody tr .tcr, #pun-searchtopics table tbody tr .tcr {
    display: grid;
    grid-template-columns: auto 50px;
    grid-template-rows: 50% 50%;
}

/* C2.20 */
#pun-viewforum table tbody tr .tcr .user-avatar, #pun-searchtopics table tbody tr .tcr .user-avatar {
    grid-area: 1 / 2 / 3 / 3;
    margin: auto;
}

/* C2.21 */
#pun-viewforum table tbody tr .tcr .user-avatar .avatar-image, #pun-searchtopics table tbody tr .tcr .user-avatar .avatar-image {
    border-radius: 3px;
    outline: var(--fresh) 1px solid;
}

/* C2.22 */
#pun-viewforum table tbody tr .tcr .user-avatar .isonline, #pun-searchtopics table tbody tr .tcr .user-avatar .isonline {
    top: -3px;
    right: -2px;
    animation: none;
    background: var(--fresh);
}

/* C2.23 */
#pun-viewforum table tbody tr .tcr a, #pun-searchtopics  table tbody tr .tcr a {
    grid-area: 1 / 1 / 2 / 2;
    align-self: end;
}

/* C2.24 */
#pun-viewforum table tbody tr .tcr .byuser {
    grid-area: 2 / 1 / 3 / 2;
}

/* C2.25 */
/*.punbb div.icon {*/
/*    position: absolute;*/
/*    width: 10px;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    background: transparent;*/
/*    border: none;*/
/*}*/

/* C2.26 */
/*.punbb div.inew, .punbb div.icon-new {*/
/*    background: var(--new-color);*/
/*}*/

/* C2.27 */
/*.punbb div.icon-new  {*/
/*    border-top-width: 2px;*/
/*}*/

/* C2.28 */
.punbb .main .post-content td {
    border: none!important;
}

 /* C3 Topics
-------------------------------------------------------------*/

/* C3.1 */
#pun-viewtopic #pun-main, #pun-searchposts #pun-main, #pun-post #pun-main {
    padding: 7px 0;
}

/* C3.2 */
.punbb .post h3 {
    background: var(--black-tr);
    min-height: 40px;
    padding: 0 15px
}

/* C3.3 */
.punbb .post h3 span {
    line-height: 40px;
    display: block;
    font-family: var(--main-font);
    font-size: 12px;
}

/* C3.4 */
.punbb .post h3 span a {
    height: 30px;
    background: var(--main-color);
    width: fit-content;
    border: var(--green) 1px solid;
    border-radius: 20px;
    font-size: 12px;
    padding: 5px 10px;
    font-weight: 600;
}

/* C3.5 */
.punbb .post h3 span a:hover {
    background: var(--fresh);
    border-color: var(--fresh);
    color: var(--petal);
}

/* C3.6 */
#pun-searchposts .post h3 span a {
    background: none;
    border: none;
    border-radius: none;
    padding: 0;
}

/* C3.7 */
.punbb .post h3 span a.sharelink {
    line-height: 12px;
    margin-top: 6px;
    padding: 7px 10px!important;
    height: fit-content;
}

/* C3.8 */
.punbb .post h3 strong {
  float: right;
  width: 5em;
  text-align: right;
  font-weight: normal;
  }

/* C3.9 */  
.punbb .post .container {
    margin-top: 12px;
}

/* C3.10 */
.punbb .post .post-author {
    float: left;
    width: 220px;
    background: linear-gradient(var(--petal), var(--petal))no-repeat left 0 bottom 0 / 100% 38px, var(--black-profile);
    border-radius: 0 8px 8px 0;
    text-align: center;
    font-family: var(--main-font);
    overflow: hidden;
}

/* C3.11 */
.punbb .post[data-user-id="1"] .post-author {
     background: var(--black-profile);
}

/* C3.12 */
#pun-searchposts .post .post-author, #pun-post .post .post-author {
    background: var(--black-profile);
    color: var(--petal);
    padding: 5px 0;
}

/* C3.13 */
.punbb .post .post-author ul, .punbb .post .post-author p {
    padding: 3px 0 0;
    line-height: 140%;
}

/* C3.14 */
.pa-fld3 {
    position: absolute;
    margin-top: -8px;
    margin-left: -8px;
    width: 24px;
    height: 24px;
    background: var(--black-profile);
    outline: var(--back-color) 1px solid;
    border-radius: 6px;
    cursor: pointer;
}

/* C3.15 */
.pa-fld3 img {
    margin: 3px;
}

/* C3.16 */
.pa-fld3 img:hover {
    transform: rotate(360deg);
    transition-duration: 1s;
}

/* C3.17 */
.pa-author {
    margin: 0 18px;
}

/* C3.18 */
.pa-author, .pa-author a {
    text-decoration: none;
    font-family: var(--dec-font);
    font-size: 22px;
    line-height: 20px;
    font-weight: 400;
    color: var(--yellow);
}

/* C3.19 */
.pa-title {
    color: var(--petal);
    font-size: 12px;
    line-height: 15px;
    margin: 0 15px;
}

/* C3.20 */
.pa-avatar img {
    max-width: 180px;
}

/* C3.21 */
.pa-fld2 {
    font-weight: 600;
    color: var(--petal);
    font-size: 12px;
    line-height: 14px;
    margin: 0 10px;
}

/* C3.22 */
.pa-fld1 .lzname {
    font-size: 18px;
    line-height: 16px;
    margin: 3px 5px;
    font-family: var(--dec-font);
    text-transform: capitalize;
}

/* C3.23 */
.pa-fld1 .lzname a {
    color: var(--yellow);
}

/* C3.24 */
.pa-fld1 .lztext {
    background: var(--petal);
    font-size: 12px;
    line-height: 15px;
    text-align: justify;
    text-align-last: center;
    padding: 2px 10px;
    border-bottom: var(--green) 1px dashed;
}

/* C3.25 */
.pa-fld6 {
    height: 40px;
    overflow: hidden;
    color: var(--petal);
    font-family: var(--dec-font);
    text-transform: uppercase;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), var(--back)no-repeat right bottom;
    margin-top: -1px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 2px;
    background-size: 240%;
}

/* C3.26 */
.pa-fld6 .plup {
    font-size: 24px;
    line-height: 16px;
    margin-top: 6px;
    font-weight: 600;
}

/* C3.27 */
.pa-posts, .pa-respect, .pa-fld5 {
    min-width: 50px;
    display: inline-flex;
    margin: 8px 5px 0;
    font-size: 11px;
    justify-content: center;
    line-height: 12px;
}

/* C3.28 */
.pa-posts span.fld-name, .pa-respect span.fld-name, .pa-fld5 span.fld-name {
    font-size: 0;
}

/* C3.29 */
.pa-posts span.fld-name:before, .pa-respect span.fld-name a:before, .pa-respect span.fld-name:before, .pa-fld5 span.fld-name:before {
    font-family: 'Material Symbols Outlined';
    font-size: 18px;
    line-height: 12px;
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 0,
        'opsz' 20;
}

/* C3.30 */
.pa-posts span.fld-name:before {
    content: '\e253';
}

/* C3.31 */
.pa-respect span.fld-name a:before {
    content: '\e87d';
}

/* C3.32 */
.isguest .pa-respect span.fld-name:before {
    content: '\e87d';
}

/* C3.33 */
.pa-fld5 span.fld-name:before {
    content: '\ead5';
}

/* C3.34 */
.post-author .indOnline {
    height: 8px;
    background: var(--green);
}

/* C3.35 */
.post-author .indOffline {
    height: 8px;
    background: var(--offline);
}

/* C3.36 */
.pa-online {
    display: none;
}

/* C3.37 */
.punbb .post-body {
    margin-left: 225px;
}

/* C3.38 */
.punbb .post-box {
  padding: 0 1.5em 1em;
  }

/* C3.39 */
.punbb fieldset .post-box {
  margin-bottom: 0.8em
  }

/* C3.40 */
.punbb .post-links {
    margin-left: 225px;
}

/* C3.41 */
.punbb .post-links ul {
    padding: 0 8px 0 7px;
    height: 30px;
    line-height: 30px;
    margin-left: -225px;
    background: transparent;
    text-align: right;
}

/* C3.42 */
.punbb .post-links li {
    display: inline;
    padding: 0 8px;
}

/* C3.43 */
.punbb .post-links li a {
    background: var(--main-color);
    border: var(--green) 1px solid;
    border-radius: 20px;
    font-size: 12px;
    padding: 5px 10px;
    font-weight: 600;
    font-family: var(--main-font);
}

/* C3.44 */
.punbb .post-links li a:hover {
    background: var(--fresh);
    border-color: var(--fresh);
    color: var(--petal);
}

/* C3.45 */
.pl-email, .pl-website {
  float: left;
  }

/* C3.46 */
.punbb .clearer {
  clear: both;
  height: 0;
  font-size: 0;
  }


/* C4 Moderator menu
-------------------------------------------------------------*/

/* C4.1 */
.punbb .modmenu .container {
    padding: 5px 15px;
    text-align: right;
    font-family: var(--main-font);
    font-size: 12px;
}

/* C4.2 */
.punbb .modmenu strong, .punbb .modmenu a {
    height: 20px;
    line-height: 20px;
}

/* C4.3 */
.punbb .modmenu .container strong {
    float: left;
}

/* C4.4 */
.punbb .modmenu input {
    margin-left: 1em;
}

/* C4.5 */
.punbb #topic-modmenu .container span {
    display: none;
}

/* C4.6 */
.punbb #topic-users-in {
    background: var(--black-tr);
}


/* C5 Message boxes
-------------------------------------------------------------*/

/* C5.1 */
.punbb .info .container {
  padding: 0.8em 1em
  }

/* C5.2 */
.punbb .info .container .backlink {
  padding-top: 0.8em;
  }

/* C5.3 */
#pun-messages table tr {
    background: var(--black-tr);
    position: relative;
    display: flex;
    width: 710px;
    margin: 0 auto 5px;
    align-items: center;
    padding: 5px 10px 5px 0;
}

/* C5.4 */
#pun-messages table thead tr {
    background: none;
}

/* C5.5 */
#pun-messages table tr .tclcon {
    margin-left: 15px;
}

/* C5.6 */
#pun-messages table tr .tc2 {
    display: flex;
    align-items: center;
    justify-content: start;
}

/* C5.6 */
#pun-messages .post .container {
    margin-top: 10px;
}

/* C5.7 */
#pun-messages .post .post-author {
    background: var(--black-profile);
    color: var(--petal);
}

/* C5.8 */
#pun-messages #form-buttons table tr {
    width: auto;
}

/* C6 Profile
-------------------------------------------------------------*/

/* C6.1 */
#profile .container {
  padding-left: 18.6em;
  }

/* C6.2 */
#profilenav {
  float: left;
  width: 14em;
  margin-left: -16.3em;
  display: inline;
  }

/* C6.3 */
#profilenav li {
  padding-bottom: 0.8em;
  font-weight: bold;
  }

/* C6.4 */
#viewprofile ul, #profilenav ul {
  /*padding: 1.5em 18px 0.8em 18px;*/
  margin: 0 0 1em 0;
  }

/* C6.5 */
#viewprofile h2, #profilenav h2 {
  background: transparent;
  border: none;
  padding: 0 0 0 0;
  margin: 0 14px 7px 14px;
  }

/* C6.6 */
#viewprofile h2 span, #profilenav h2 span {
  padding: 0 5px;
  position: relative;
  }

/* C6.7 */
#viewprofile li, #setmods dl {
  padding: 0 0 0 18em;
  margin-bottom: 6px;
  }

/* C6.8 */
#viewprofile li span {
  float: left;
  width: 14em;
  margin-left: -16em;
  padding: 0.5em 1em;
  font-weight: bold;
  }

/*C6.9 */
#setmods dt {
  float: left;
  width: 14em;
  margin-left: -16em;
  padding: 0.8em 1em;
  font-weight: bold;
  display: inline;
  }

/* C6.10 */
#viewprofile li strong, #viewprofile li div, #setmods dd {
  display: block;
  padding: 0.5em 1em;
  font-weight: normal;
  }

/* C6.11 */
.punbb img.avatardemo {
  float: right;
  margin: 0 0 0.8em 1.8em
  }

/* C6.12 */
#profile-left {
    width: 220px;
    padding-top: 0 !important;
    background: var(--black-profile);
    text-align: center;
    color: var(--petal);
    font-family: var(--main-font);
}

/* C6.13 */
#profile-left li, #profile-left li strong {
    padding: 0;
    margin: 0;
}

/* C6.14 */
#profile-left #profile-name {
    color: var(--yellow);
    font-family: var(--dec-font);
    font-size: 20px;
    line-height: 18px;
    padding: 10px 5px 5px;
}

/* C6.15 */
#profile-left .fan2 {
    font-weight: 600;
}

/* C6.16 */
#profile-left .lzname a {
    font-family: var(--dec-font);
    color: var(--yellow);
    font-size: 18px;
}

/* C6.17 */
#profile-left .lztext {
    background: var(--petal);
    color: var(--black);
}

/* C6.18 */
#profile-left #pa-online {
    padding: 7px 0 8px;
}

/* C6.19 */
#profile-left #pa-edit {
    padding: 0 0 8px;
} 

/* C6.20 */
#profile-right li span {
    background: var(--petal);
}

/* C6.21 */
#profile-left #pa-fld2 span, #profile-left #pa-fld1 span {
    display: none;
}

/* C6.22 */
#profile-right #pa-fld6 strong {
    height: 40px;
    overflow: hidden;
    color: var(--petal);
    font-family: var(--dec-font);
    text-transform: lowercase;
    letter-spacing: 2px;
    width: 220px;
    padding: 0 0 1em 2em;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), var(--back)no-repeat right bottom;
    background-size: 240%;
    background-clip: content-box;
}

/* C6.23 */
#profile-right #pa-fld6 strong .plup {
    font-size: 24px;
    line-height: 16px;
    margin-top: 5px;
    padding: 0;
}

/* C6.24 */
#profile-right #pa-fld6 strong .pldown {
    padding: 0;
    line-height: 16px;
    font-size: 16px;
}

/* C6.25 */
#pun-respect table, #pun-positive table {
    border-spacing: 15px;
}

/* C7 User list
-------------------------------------------------------------*/

/* C7.1 */
#pun-userlist .formal, #pun-userlist .formal .container {
  border-bottom: none;
  margin-bottom: 0;
  }

/* C7.2 */
#pun-userlist .usertable .container {
  padding: 0 2.3em 2.3em 2.3em;
  border-top: none;
  }

/* C7.3 */
#pun-userlist .usertable table {
    border-style: none;
}

/* C7.4 */
#pun-userlist .usertable table tr {
    background: var(--black-tr);
    border-radius: 3px;
    position: relative;
    display: flex;
    width: 870px;
    margin: 0 auto 5px;
    align-items: center;
    padding: 5px 10px;
    font-family: var(--main-font);
    font-size: 12px;
}

/* C7.5 */
#pun-userlist .usertable table thead tr {
    background: none;
}

/* C7.6 */
#pun-userlist .usertable table tr .tcl {
    display: flex;
    align-items: center;
}

/* C7.7 */
#pun-online table tr {
    padding: 6px 15px 7px;
    display: inline-table;
    width: 910px;
}

/* C7.8 */
#pun-online table tr .tcl {
    width: 40%!important;
}

/* C7.9 */
#pun-online table tr .tc3 {
    width: 20%!important;
}

/* C8 Homepage
-------------------------------------------------------------*/

/* C8.1 */
#pun-main {
    background: var(--main-color);
    padding: 7px 15px;
}

/* C8.2 */
#pun-main .category h2, #pun-stats h2 {
text-align: left;
    color: var(--offline);
    font-family: var(--dec-font);
    font-size: 32px;
    line-height: 28px;
    text-transform: uppercase;
}

/* C8.3 */
#pun-index #pun-main table tr {
    background: var(--black-tr);
    margin-bottom: 10px;
    display: block;
    /*width: 922px;*/
    display: flex;
    align-items: center;
}

#pun-index #pun-main table tr.inew {
    background: linear-gradient(to right, var(--yellow) 10px, var(--black-tr) 10px 100%)
}

/* C8.4 */
#pun-index #pun-main table .tcl {
    width: 580px;
    position: relative;
}

/* C8.5 */
#pun-index #pun-main table .tclcon {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* C8.6 */
#pun-index #pun-main table .tclcon h3 {
    font-family: var(--dec-font);
    font-size: 28px;
    line-height: 26px;
    margin-top: 7px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* C8.7 */
#pun-index #pun-main table .tclcon .fdescription {
    text-align: justify;
    text-transform: lowercase;
    font-family: var(--main-font);
    font-size: 10px;
    line-height: 14px;
    color: var(--charcoal);
    margin-right: 10px;
}

#pun-index #pun-main table .tclcon br {
    display: none;
}

/* C8.8 */
#pun-index #pun-main table .tclcon .fdescription .flinks {
    display: flex;
    justify-content: space-between;
    margin: 0 0 3px;
    font-size: 13px;
    line-height: 15px;
}

/* C8.9 */
#pun-index #pun-main table .tclcon .fdescription .flinks a {
    font-weight: 600;
    margin-left: 10px;
}

/* C8.10 */
#pun-index #pun-main table .tc2, #pun-index #pun-main .tc3, #pun-index #pun-main .tcmod {
    display: none;
}

/* C8.11 */
#pun-index #pun-main table .tcr {
    width: 350px;
    display: grid;
    grid-template-columns: auto 60px;
    grid-template-rows: 60% 40%;
}

/* C8.12 */
#pun-index #pun-main table .tcr .user-avatar {
    float: right;
    margin: 0 10px;
    width: 42px;
    height: 42px;
    grid-area: 1 / 2 / 3 / 3;
}

/* C8.13 */
#pun-index #pun-main table .tcr .user-avatar .avatar-image {
    border-radius: 2px;
    width: 40px;
    height: 40px;
    border: var(--green) 1px solid;
}

/* C8.14 */
#pun-index #pun-main table .tcr .user-avatar .isonline {
    top: -3px;
    right: -2px;
    animation: none;
    background: var(--fresh);
}

/* C8.15 */
#pun-index #pun-main table .tcr .lastpost-link {
    font-family: var(--main-font);
    text-transform: lowercase;
    font-weight: 600;
    font-size: 13px;
    line-height: 23px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    height: 23px;
    line-clamp: 1;
    grid-area: 1 / 1 / 2 / 2;
}

/* C8.16 */
#pun-index #pun-main table .tcr br {
    display: none;
}

/* C8.17 */
#pun-index #pun-main table .tcr .lastpost {
    color: var(--charcoal);
    text-transform: lowercase;
    font-size: 12px;
    font-family: var(--main-font);
    grid-area: 2 / 1 / 3 / 2;
}


/*************************************************************
D - PUNBB SECTIONS OTHER THAN MAIN CONTENT
**************************************************************/

/* D1 Logo and description
-------------------------------------------------------------*/

/* D1.1 */
#pun-title {
    display: none;
}



/* D2 Page navigation
-------------------------------------------------------------*/

/* D2.1 */
#pun-pagelinks {
  position: absolute;
  top: -15px;
  left: 0;
  margin: 0;
  border: none;
  padding: 0;
  width: 100%;
  }

/* D2.2 */
#pun-pagelinks .container {
  background: transparent;
  border: none;
  padding: 0}

/* D2.3 */
#pun-pagelinks .container li {
  display: inline
  }

/* D2.4 */
#pun-pagelinks li a, #pun-pagelinks a:link, #pun-pagelinks a:hover {
  height: 2em;
  line-height: 2em;
  padding: 0;
  font-size: 1.2em;
  margin-left: -9999px;
  display: block;
  float:left;
  width: 100%;
  }

/* D2.5 */
#pun-pagelinks a:active, #pun-pagelinks a:focus {
  position:relative;
  margin: 0;
  }

/* D2.6 */
#pun-pagelinks li a span {
  display:block;
  margin: 0 1em
  }

/* D3 Forum navigation and header
-------------------------------------------------------------*/

/* D3.1 */
#pun-navlinks {
    border-style: none;
    margin: -260px auto 220px;
    background: var(--back-color);
    height: 40px;
    line-height: 40px;
    width: 800px;
    filter: var(--filter);
}

/* D3.2 */
#pun-navlinks .container {
    text-align: center;
    height: 40px;
}

/* D3.3 */
#pun-navlinks li {
    display: inline;
    padding: 0 1em;
}

/* D3.4 */
#pun-navlinks li a {
    color: var(--petal);
    font-size: 15px;
    font-family: var(--main-font);
    text-transform: lowercase;
}

/* D3.5 */
#pun-navlinks li a:hover {
    color: var(--fresh);
}

/* D3.6 */
#html-header {
    margin-top: -130px;
}

/* D3.7 */
#header-table {
    height: 220px;
    background: var(--flowers)no-repeat top center / cover;
    filter: var(--filter);
}

/* D4 User links
-------------------------------------------------------------*/

/* D4.1 */
#pun-ulinks  {
    margin: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

/* D4.2 */
#pun-ulinks .container {
    border: none;
}

/* D4.3 */
#pun-ulinks li {
    display: inline;
    border: none;
}

/* D4.4 */
#pun-ulinks li a {
    margin: 0 8px;
    text-transform: lowercase;
    color: var(--petal);
    font-size: 13px;
    font-family: var(--main-font);
}

/* D4.5 */
#pun-ulinks li a:hover {
    color: var(--fresh);
}

/* D5 Welcome box and Top Breadcrumbs
-------------------------------------------------------------*/

/* D5.1 */
#pun-status {
    background: var(--main-color);
    padding: 7px 15px;
    margin-top: -1px;
}

/* D5.2 */
#pun-status .container {
    text-align: left;
    font-family: var(--main-font);
    font-size: 12px;
}

/* D5.3 */
#pun-status span {
    white-space: nowrap;
    margin-right: 0.5em;
    -webkit-text-size-adjust: 100%;
}

/* D5.4 */
#pun-status .status-right {
    display: none;
}

/* D5.5 */
#pun-crumbs1 {
    font-weight: bold;
    overflow: hidden;
    margin-top: -1px;
    background: var(--main-color);
    padding: 7px 15px;
}

/* D5.6 */
#pun-crumbs1 p.container {
    text-align: left;
    font-family: var(--main-font);
    font-size: 12px;
    -webkit-text-size-adjust: 100%;
}

/* D5.7 */
#pun-break1, #pun-break2, #pun-break3, #pun-break4 {
    display: none;
  }


/* D6 Announcement
-------------------------------------------------------------*/

/* D6.1 */
#pun-announcement {
    background: var(--main-color);
    padding: 20px 15px;
}

/* D6.2 */
#pun-announcement h2 {
    display: none;
}

/* D6.3 */
#pun-announcement .container {
    text-align: center;
}

/* D6.4 */
#pun-announcement .container a {
    height: 40px;
    display: inline-block;
    width: 180px;
    text-align: center;
    line-height: 42px;
    overflow: hidden;
    background: var(--hover-color);
    border-radius: 3px;
    font-size: 20px;
    color: var(--main-color);
    font-family: var(--dec-font);
    letter-spacing: 6px;
    padding-left: 6px;
    text-transform: lowercase;
    margin: 0 10px;
    transition: var(--anim);
}

/* D6.5 */
#pun-announcement .container a.special {
    background-image: var(--flowers);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150%;
    color: var(--white);
    animation: background-size 0.3s ease;
}

/* D6.6 */
#pun-announcement .container a.two-lines p {
    line-height: 16px;
    font-size: 13px;
}

/* D6.7 */
#pun-announcement .container a.two-lines p.big {
    line-height: 32px;
    font-size: 20px;
    margin-bottom: -9px;
}

/* D6.8 */
#pun-announcement .container a:hover {
    background: var(--fresh);
    color: var(--white);
    transition: var(--anim);
}

/* D6.9 */
#pun-announcement .container a.special:hover {
    background-image: var(--flowers);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 110%;
    transition: var(--anim);
}


/* D7 Statistics
-------------------------------------------------------------*/

/* D7.1 */
#pun-stats {
    background: var(--main-color);
    padding: 7px 15px;
}

/* D7.2 */
#pun-stats h2 {

}

/* D7.3 */
#pun-stats .container {
    padding: 0 0 12px
}

/* D7.4 */
#pun-stats .statscon {
    background: var(--black-tr);
}

/* D7.5 - block by script */
#pun-stats .stats-block {
    background: var(--back)no-repeat center bottom;;
    display: flex;
    font-family: var(--main-font);
    color: var(--white);
    padding: 6px 15px;
    font-size: 12px;
    line-height: 15px;
    justify-content: space-between;
    text-transform: lowercase;
}

/* D7.6 */
#pun-stats .stats-block a {
    color: var(--fresh);
}

/* D7.7 */
li#onlinelist {
    border: none;
    margin: 5px 15px 0;
    font-family: var(--main-font);
    font-size: 12px;
    line-height: 18px;
    color: var(--charcoal);
    text-align: justify;
    -webkit-text-size-adjust: 100%;
}

/* D7.8 */
li#onlinelist div {
    padding: 6px 0 0 0;
}

/* D7.9 */
li#onlinelist div a {
    font-weight: 600;
}

/* D8 Quick Jump - About - Bottom Breadcrumbs
-------------------------------------------------------------*/

/* D8.1 */
#pun-qjump {
  margin: 0;
  border: none;
  width: 50%;
  position: relative;
  float: left;
  }

/* D8.2 */
#pun-qjump .container {
  border: none;
  background: transparent;
  padding: 0.8em 1em;
  }

/* D8.3 */
#pun-about {
    margin-top: 60px;
}

/* D8.4 */
#pun-about .container {
    text-align: center;
    padding: 3px;
    height: 12px;
}

/* D8.5 */
#pun-about p span {
    display: block;
    font-family: var(--main-font);
    color: var(--main-tr);
}

/* D8.6 */
#pun-about p span a {
    color: var(--main-tr);
}

/* D8.7 */
#pun-crumbs2 {
    margin: 0;
    font-weight: bold;
    overflow: hidden;
    background: var(--main-color);
    padding: 7px 15px 20px;
    text-align: left;
}

/* D8.8 */
#pun-crumbs2 .container {
    font-family: var(--main-font);
    font-size: 13px;
    -webkit-text-size-adjust: 100%;
}

/* D8.9 */
div.punbb-admin #pun-about .container {
  border-top-style: solid;
  border-top-width: 1px;
  }

/* D8.10 */
#html-footer {
    margin-top: -78px;
    margin-bottom: -40px;
}

/* D8.11 */
#html-footer .container {
    width: 830px;
    margin: 0 auto;
    background: var(--flowers)no-repeat bottom center;
    background-size: cover;
    padding: 7px 10px;
    border: none;
    height: 66px;
}

/* D8.12 */
#html-footer .container #banners {
    height: 50px;
    overflow: auto;
    text-align: justify;
}

/* D8.13 */
#html-footer .container #banners img {
    opacity: 0.5;
    transition: var(--anim);
    filter: grayscale(1);
    margin-bottom: 3px
}

/* D8.14 */
#html-footer .container #banners img:hover {
    opacity: 1;
    filter: none;
}


/* D9 Help file
-------------------------------------------------------------*/

/* D9.1 */
#pun-help .formal .info-box h3.legend {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 0;
  margin-bottom: 0.8em;
  }

/* D9.2 */
#pun-help .formal .info-box h3.legend span {
  padding-bottom: 0.6em;
  display: block;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  font-size: 1.1em;
  }

/* D9.3 */
#pun-help .formal p, #pun-help .formal dd {
  margin-bottom: 1em
  }

/* D9.4 */
#pun-help .formal ul, #pun-help .formal dl {
  padding: 0 0 0 1em
  }

/* D9.5 */
#pun-help .formal li {
  padding: 0;
  line-height: 130%
  }

/* D9.6 */
#pun-help .formal li * {
  vertical-align: text-top
  }

/* D9.7 */
#pun-help .formal dt span {
  font: 1.4em/120% monaco, "bitstream vera sans mono", "courier new", courier, monospace
  }

/* D9.8 */
#pun-help .formal .parsedmsg, #pun-help .formal .parsedmsg .incode {
  padding-bottom: 0;
  }