@import url(style_cs.1775328373.css);

/* используются в дизайне */
@import url('https://fonts.googleapis.com/css?family=PT+Sans:400,700|Open+Sans:400,400i,600,600i,700,700i,800,800i|Roboto:100,300,400,700,900');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Иконический шрифт */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

/* Font Awesome */
@import url('https://kit-pro.fontawesome.com/releases/v6.6.0/css/pro.min.css');

@font-face {
  font-family: 'Brigadier';
  src: url('https://forumstatic.ru/files/001c/86/a4/54594.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Soyuz';
  src: url('https://forumstatic.ru/files/001c/86/a4/30405.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Kindentosca';
  src: url('https://forumstatic.ru/files/001c/86/a4/46046.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

.across-brigadier {
  font-family: 'Brigadier', serif;
}

.across-soyuz {
  font-family: 'Soyuz', serif;
  font-weight: 700;
}

.across-kindentosca {
  font-family: 'Kindentosca', serif;
}


/****************************************
Чистый стиль by Alex Kolmar (бродяга)
****************************************/

/* Полезные сервисные настройки
-------------------------------------------------------------*/

.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 .required label em,
.punbb .formsubmit label,
.punbb .submitfield label,
.punbb .modmenu label,
.punbb .divider hr,
#pun-userlist .main h2 {
  font-size: 0;
  height: 0;
  width: 0;
  line-height: 0.0;
  position: absolute;
  left: -9999px;
  overflow: hidden;
}

#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;
}


/* Основные переменные
------------------------------------------*/

:root {
  --body-bg: #424846;
  --pun-bg: #E4D9D3;
  --sec-bg: #C2A9AC;
  --link: #A0A390;
  --link-hover: #A58487;
  --text-color: #393A30;
  --accent: #CFA46F;
  --pwidth: 240px;
  --pad1: 10px 20px;
  --pad2: 5px 20px;
  --pad3: 5px 10px;
  --msr: "Material Symbols Rounded";
  --fa: "Font Awesome 6 Pro", "Font Awesome 6 Brands";
  --handwriting: "Kindentosca";
  --zagolovok: "Soyuz"; 
  --main-font: "Inter";
  --text2: #636456;
  --opac1: rgba(160, 163, 144, 0.5);
  --opac2: rgba(165, 132, 135, 0.5);
  --opac3: rgba(160, 163, 144, 0.3);
  --bg-profile: #D0C9BF;
--base-bg: #222222 url(https://forumstatic.ru/files/001c/71/c5/24055.png);
    --pun: #ADA8A2 url(https://forumstatic.ru/files/001c/71/c5/53215.png);
--icons: url(https://forumstatic.ru/files/001c/71/c5/57466.svg);
--dark600: #2F2D2A;
--dark500: #2E3428;
--dark400: #2A2A2A;
--dark300: #575757;
--beg100: #ADA8A2;
--beg300: #A8A39B;
--beg350: #ADA8A1;
--beg500: #B6B1AA;
    --borders: #A49B90;
    --text1: #2F2D2A; /* black */
    --text2: #585149; /* light black */
    --text3: #B1ACA6; /*white*/
    --text4: #DDD8CE; /*semiwhite*/
    --links: #705A32;
    --font: Inter;
    --font-accent: Great Vibes;
    --font-accent2: Great Vibes;
    --show-cat: url(https://forumstatic.ru/files/001c/40/ee/99969.svg);
    --hide-cat: url(https://forumstatic.ru/files/001c/40/ee/41954.svg);
}
}

/* Global
------------------------------------------*/

/* Применяется ко всем элементам */

* {
  margin: 0;
  padding: 0;
  border: none;
  text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* прокрутка 
-------------------------------------------------- */

/* Хром etc */

@supports selector(::-webkit-scrollbar) {

  *::-webkit-scrollbar-thumb {
    background: var(--link);
  }

  *::-webkit-scrollbar-thumb:hover {
    background: var(--link-hover);
    cursor: default;
  }

  *::-webkit-scrollbar-track {
    background: var(--sec-bg);
  }

  *::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
}

/* Мозилла */

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--link-hover) var(--sec-bg);
  }
}

/* выделение текста */

::selection {
  background: var(--link);
  color: var(--pun-bg);
}

:focus {
  outline: none;
}

/* все ссылки */

a,
.punbb #pun-admain a {
  text-decoration: none;
  color: var(--link);
  transition: all .2s linear 0s;
font-weight: bold;
}

a:hover,
.punbb #pun-admain a:hover {
  color: var(--link-hover);
}

/* все заголовки */

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre {
  margin: 0;
}

h1,
h2 {
  padding: 10px 20px;
  font-weight: normal;
  text-align: center;
}

ul,
dl,
li,
dd,
dt {
  list-style: none;
}

address,
em {
  font-style: normal;
}

/* выключить список модераторов, отредактировано etc */

.modlist,
.lastedit,
.punbb div#pun-live-rusff,
.punbb .topic a.sharelink {
  display: none;
}

/* модальные окна, репутация, закладки etc */

#tags .container,
.post_report,
.post_reputation,
#MyBookmarks,
.inner.popup_graffiti,
.pun-modal .modal-inner,
.punbb-admin #pun-admin-award-form .inner {
  background: var(--pun-bg);
}

/* Формы
------------------------------------------- */

/* ОФОРМЛЕНИЕ КНОПОК */

input.button,
#pun-admain input.button,
#sub4,
input[type="button"],
input[type="submit"] {
  padding: 2px 10px;
  border: 1px solid var(--link-hover);
  cursor: pointer;
  transition: all .2s linear 0s;
border-radius: 20px;
background: var(--sec-bg);
text-transform: lowercase;
color: var(--text-color);
font-size: 12px;
font-weight: bold;
}

input.button:hover,
#pun-admain input.button:hover,
#sub4:hover,
input[type="button"]:hover,
input[type="submit"]:hover {background: var(--link);
color: var(--pun-bg);
  border: 1px solid var(--link-hover);}

/* ОФОРМЛЕНИЕ ПОЛЕЙ ВВОДА */

input[type="text"],
input[type="password"],
textarea,
select {
  padding: 2px 5px;
  border: 1px solid var(--link-hover);
background: var(--pun-bg);
}

textarea,
input,
select,
optgroup {
  font-size: 12px;
}

optgroup {
  font-weight: bold;
}

/* флажки и чекбоксы */

.checkfield input[type="checkbox"],
.radiofield input[type="radio"] {
  margin: 0 3px;
}

p[class="checkfield"] *,
div[class="checkfield"] *,
fieldset[class="radiofield"] * {
  height: 20px;
  vertical-align: middle;
}

.formal .container {
  padding: var(--pad1);
}

.formsubmit {
  padding: 0;
  margin: 10px 0 0 0;
}

.formsubmit input,
.formsubmit a,
.formsubmit span {
  margin: 0 6px 0 0;
}

fieldset {
  border: none;
}

fieldset legend {
  font-weight: bold;
}

fieldset fieldset {
  border: none;
  margin: 0;
  padding: 0 0 8px 0
}

.fs-box {
  padding: 5px 0;
}

.fs-box .post-body {padding-top: 10px;}

.fs-box p,
.fs-box fieldset {
  padding: 0 0 8px 0;
}

.inline .inputfield,
.inline .selectfield,
.inline .passfield {
  float: left;
  margin-right: 10px;
}

.inline .infofield {
  clear: both
}

.datafield br {
  display: none
}

.required label,
.datafield span.input {
  font-size: 10px;
}

textarea,
.longinput input {
  width: 64%;
  margin: 0;
}

.hashelp {
  position: relative;
}


/* Админка
------------------------------------------*/

.punbb-admin .adcontainer,
.punbb-admin .adformal {
  border: none;
}


/* Тело форума
------------------------------------------*/

/* фон */

html {
  background: var(--body-bg) url() no-repeat top center;
}

/* заплатка для фиксированного фона */

body::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  z-index: -10;
background-image: url(https://forumstatic.ru/files/001c/86/a4/69875.png);
background-repeat: repeat-y;
background-position: top center;
background-size: 100% auto;
}

/* тело */

#pun {
width: 1000px;
  margin: auto;
position: relative;
  background: var(--pun-bg);
border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px;
margin-top: 384px;
}

/* внутреннее тело */

.punbb {
  font-size: 10px;
font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
font-weight: normal;
color: var(--text-color);
}

/* настройки внутренних блоков */

.punbb > div .container {
  padding: var(--pad1);
}

/* Навигационные ссылки */

#pun-navlinks {position: relative;
z-index: 100;}

#pun-navlinks .container {
text-align: right;
    font-family: var(--zagolovok);
    font-size: 16px;
letter-spacing: 0.07em;
position: relative;
z-index: 10;
}

#pun-navlinks .container:after {
  display: none;
}

#pun-navlinks li {
  padding: 0 5px;
  display: inline;
}

/* Пользовательские ссылки */

#pun-ulinks {position: relative;
z-index: 1;}

#pun-ulinks .container {
  text-align: right;
font-family: var(--main-font);
font-size:10px;
letter-spacing: 0.05em;
text-transform: lowercase;
margin-top: -15px;
position: relative;
margin-top: -30px;
}

#pun-ulinks .container a {font-weight: normal;
color: var(--text-color)}

#pun-ulinks li {
  padding: 0 5px;
  display: inline;
}

/* Статус */

#pun-status {font-size: 10px;}
#pun-status .container {position: relative;
z-index: 2;}

#pun-status span {
  white-space: nowrap;
  margin-right: 5px;
}

.punbb #pun-status .status-right {
}

/* Хлебные крошки */

.crumbs.container {position: relative;
z-index: 10;
text-transform: lowercase;}

/* Копирайт */

#pun-about {}

#pun-about .container {
  text-align: center;
}


/* Основная форумная таблица
------------------------------------------*/

.main table {
  table-layout: fixed;
  width: 100%;
}

.main th {
  padding: 5px 10px;
display: none;
}

.main td {
  padding: 10px;
}

.tcl {
  width: 66%;
}

.tcl h3 a {font-family: var(--font);
font-weight: 700;
font-size: 16px;
letter-spacing: 0.05em;
text-transform: lowercase;
color: var(--link-hover);
}

.tcl h3 a:hover {color: var(--link);}

.tc2,
.tc3,
.tcmod {
  text-align: center;
  width: 6%;
}

.tcr {
  width: 35%;
}



#pun-index .tcr a.lastpost-link {
	font-weight: 700;
	font-size: 12px;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	height: auto;
	width: 255px;
	white-space: nowrap;
	line-height: 140%;
color: var(--text-color);
}
#pun-index .tcr a.lastpost-link:hover {color: var(--link)}

#pun-searchtopics .tcl,
#pun-modviewforum .tcl {
  width: 40%
}

#pun-searchtopics .tc2 {
  text-align: left;
  width: 20%;
}

#pun-debug table .tcl {
  width: 15%;
}

#pun-debug .tcr {
  width: 90%;
}

tbody.hasicon td.tcl {
  padding-left: 40px;
}

#pun-main td, #pun-main tr {position: relative;}

/* аватар */

.punbb td .user-avatar {

}

.punbb td .user-avatar .avatar-image {
border-radius: 10px;
}
.punbb td .user-avatar .avatar-image::after {
  content: "";
  position: absolute;
  inset: 0;          
  background: var(--opac1); 
  pointer-events: none;     
border-radius: inherit;
}

/* Иконки */

div.icon {
  position: absolute;
  margin-left: -30px;
  width: 20px;
  height: 20px;
  background: var(--sec-bg) url() no-repeat top center;
border-radius: 50%;
}

tr.inew div.icon {
  background: var(--text2) url() no-repeat top center;
}

tr.isticky div.icon {
  background: var(--link-hover) url() no-repeat top center;
}

tr.iclosed div.icon {
  background: var(--link) url() no-repeat top center;
}


/* Пагинация (Переключаемые страницы, Новая тема + Опрос, Подписка)
--------------------------------------------------------------------------------------------------- */

.multipage {
  margin-top: 10px;
}

.multipage h1, .multipage h2 {
   display: none;
}

.linkst {
  position: relative;
  padding: var(--pad2);
  display: flex;
  justify-content: space-between;
}

.linkst .pagelink {}

.linkst .postlink {
  text-align: right;
}

.linksb {
  position: relative;
  padding: var(--pad2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.linksb .pagelink {
  order: -1;
}

.subscribelink {
  width: 100%;
  text-align: right;
}

.linksb noindex {
  order: 1;
}

.linksb .postlink {
  margin-left: auto;
  text-align: right;
width: auto;
}

/* Модераторское меню, RSS, Atom */

.modmenu .container {
  padding: var(--pad3);
  text-align: right;
}

.modmenu .container strong {
  float: left;
}

.modmenu input {
  margin-left: 10px;
}

#topic-users-in a:not(:last-child)::after {
  content: ',';
}

/* Главная страница
------------------------------------------*/

/* скрыть "форум, тем, сообщений" */

#pun-index thead, #pun-index .tc2, #pun-index .tc3 {
  display: none;
}

/* категория */

#pun-index .category {}

/* заголовок категории */

#pun-index .category h2 {position: relative;
font-family: var(--handwriting);
font-style: normal;
font-weight: 400;
font-size: 40px;
text-align: center;
letter-spacing: 0.06em;
text-transform: lowercase;
color: var(--text2);
height: 30px;
}

#pun .category h2 .cat_q {
color: var(--pun-bg);
    background: var(--sec-bg);
    font-family: var(--main-font);
    font-size: 12px;
    position: absolute;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    z-index: 10;
    padding: 2px 4px;
    letter-spacing: 0.05em;
    border-radius: 3px;
}

#pun-index  .hasicon tr{     border: var(--link) 1px solid;
    border-radius: 20px !important;
    margin-bottom: 10px;
    display: flex;
padding-bottom: 10px;
margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
align-items: center;
padding-top: 5px;
}

/* левая колонка (форумы) */

#pun-index tbody.hasicon td.tcl {
  padding: 10px;
}

#pun-index .intd {
  display: flex;
  gap: 10px;
}

/* иконки на главной */

#pun-index div.icon {
  position: relative;
  margin: 0;
  flex-shrink: 0;
display: none;
}

#pun-index .inew div.icon {background: url(https://forumstatic.ru/files/001c/86/a4/76519.png) no-repeat top center;
height: 51px;
    width: 74px;
    background-size: contain;
    display: block;
    position: absolute;
    left: -75px;}

/* аватар в последнем сообщении */

#pun-index td .user-avatar a {
  display: inline-block;
  position: relative;
}

#pun-index td .user-avatar {}

#pun-index td .user-avatar .avatar-image {}

/* Статистика */

#pun-stats {}

/* заголовок статистики */

#pun-stats h2 {display: none}

#pun-stats  .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  gap: 13px;
text-transform: lowercase;
}

#pun-stats  .container a {color: var(--text-color);}
#pun-stats  .container a:hover {color: var(--link)} 

/* всего тем, всего сообщений, зарегистрированных, последний зарегистрировавшийся */

#pun-stats li.item1,
#pun-stats li.item2,
#pun-stats li.item3,
#pun-stats li.item4 {
background: var(--sec-bg);
color: var(--pun-bg);
border-radius: 3px;
padding: 5px;
}

#pun-stats li.item4 a {color: var(--pun-bg);}
#pun-stats li.item4 a:hover {color: var(--link)} 

/* активны, посетили за сутки */

li#onlinelist {
  margin-top: 10px;
  text-align: justify;
  width: 100%;
}

/* Шапка
------------------------------------------*/

#pun-title {
}

/* скрыть заголовок в шаке */

#pun-title .title-logo {
  display: none;
}

/* содержимое шапки в html-верх */


.tablica {     position: absolute;
    width: 1056px;
    height: 536px;
    margin-top: -424px;
}

.tablica::before{
content: "";
    position: absolute;
    inset: 0;
    background: url(https://forumstatic.ru/files/001c/86/a4/95054.png) no-repeat center;
    background-size: contain;
    z-index: -1;
}

.ep {position: absolute;
    z-index: 9;
    top: 103px;
    transform: rotate(-7.33deg);
    left: 127px;
    display: flex;
    flex-direction: column;
    gap: 5px;}

.ep-title {font-family: var(--handwriting);
    font-size: 24px;
    letter-spacing: 0.06em;
    color: var(--text2);
    font-weight: 400;
}
.ep-name {font-family: var(--zagolovok);
    font-size: 12px;
    margin-left: 30px;
max-width: 100px;}
.ep-name a {color: var(--link-hover);}
.ep-name a:hover {color: var(--link);}

.ep-players {    font-family: var(--handwriting);
    font-size: 21px;
    margin-left: 28px;
    max-width: 130px;
    line-height: 15px;}
.ep-players a {font-weight: normal;
color: var(--text2);}
.ep-players a:hover {color: var(--link-hover);} 
.wr-title {position: absolute;
font-family: var(--handwriting);
font-weight: 400;
font-size: 24px;
letter-spacing: 0.06em;
text-transform: lowercase;
color: var(--text2);
transform: rotate(4.74deg);
right: 536px;
    bottom: 184px;}

.wr-1, .wr-2, .wr-3 {    position: absolute;
    border-radius: 50%;
    width: 33px;
    height: 33px;}
.wr-1 {
top: 126px;
    left: 335px;
}

.wr-2 {
top: 202px;
    left: 371px;
}

.wr-3 {
    top: 259px;
    left: 310px;
}

.wr-1 img, .wr-2 img, .wr-3 img {border-radius: 50%;
    object-fit: cover;
filter: grayscale(1);
    object-position: top center;
width: 33px;
    height: 33px;}

.wr-1 a::before, .wr-2 a::before, .wr-3 a::before  {
    content: '';
    width: 33px;
    height: 33px;
    position: absolute;
    border-radius: 50%;
    background: var(--opac2);
    z-index: 2;
}

.wr-1 a:hover:before, .wr-2 a:hover:before, .wr-3 a:hover:before {
  background: var(--textcolor);
opacity: 0
}


.act-title {position: absolute;
font-family: var(--handwriting);
font-weight: 400;
font-size: 24px;
letter-spacing: 0.06em;
text-transform: lowercase;
color: var(--text2);
transform: rotate(4.74deg);
right: 375px;
    bottom: 406px;}

.act-1, .act-2, .act-3 {    position: absolute;
    border-radius: 50%;
    width: 33px;
    height: 33px;}
.act-1 {
top: 126px;
    left: 589px;
}

.act-2 {
top: 156px;
    left: 645px;
}

.act-3 {
top: 205px;
    left: 577px;
}

.act-1 img, .act-2 img, .act-3 img {border-radius: 50%;
    object-fit: cover;
filter: grayscale(1);
    object-position: top center;
width: 33px;
    height: 33px;}

.act-1 a::before, .act-2 a::before, .act-3 a::before  {
    content: '';
    width: 33px;
    height: 33px;
    position: absolute;
    border-radius: 50%;
    background: var(--opac2);
    z-index: 2;
}

.act-1 a:hover:before, .act-2 a:hover:before, .act-3 a:hover:before {
  background: var(--textcolor);
opacity: 0
}

.forum-name {position: absolute;
font-family: var(--zagolovok);
font-weight: 700;
font-size: 89px;
letter-spacing: -0.03em;
text-transform: lowercase;
color: var(--text2);
top: 335px;}
.forum-about {position: absolute;
font-size: 10px;
letter-spacing: 0.05em;
text-transform: lowercase;
color: var(--link-hover);
top: 427px;
    font-weight: normal;
    left: 10px;
}
/* Объявление
------------------------------------------*/

#pun-announcement {}

/* скрываем слово "объявление" */

#pun-announcement h2 {
  display: none;
}


/* Футер
------------------------------------------*/

#html-footer {position: relative}

#html-footer .container {padding: 0;}

/* баннеры */

.footer-img {position: absolute;
    width: 476px;
    height: 300px;
    object-fit: contain;
    z-index: -1;
    top: -191px;
    left: 30px;}

.footer-img img {
width: 476px;
height: 300px;
object-fit: contain;
}

.banners {
padding: var(--pad1);
    background: var(--accent);
    border-radius: 10px;
    margin-left: 432px;    
width: 483px;
position: absolute;
    bottom: -60px;
}

.banners .container {    height: 31px;
    overflow-y: scroll;}

.banners a {
  opacity: .7;
}

.banners a:hover {
  opacity: 1;
}


/* Топик
------------------------------------------*/

.post {
  margin-top: 10px;
}

.toppost,
.topicpost {
  margin-top: 0;
}

/* контейнер поста */

.post .container {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
    border-radius: 20px;
    border: 1px solid var(--link);
    margin: 14px;
box-sizing: border-box;
margin-bottom: 20px;
}

/* дата и номер поста */

.post h3 {
    text-align: center;
    margin: 0 auto;
    background: var(--sec-bg);
    border-radius: 3px;
    position: absolute;
    right: 45%;
    padding: 5px;
    margin-top: -15px;
}


.post h3 a {color: var(--pun-bg);
font-weight: normal;}

.post h3 span {
  display: block;
}

/* номер поста */

.post h3 strong {
    text-align: center;
    float: right;
    font-weight: normal;
    padding-left: 5px;
    color: var(--pun-bg);
    letter-spacing: 0.05em;
}

.post h3 strong:before {
	content: ", #";
}

/* Автор */

.post-author {
}

.post-author ul {
  padding: 10px;
}

.pa-author {}

.pa-author a {}

.pa-title {}

.pa-avatar img {}

.lz {
  margin: 10px 0;
}

.lz .name {
  margin: 0 auto 5px;
  display: block;
}



.pa-online,
.pa-last-visit {}

.pa-online {
  position: relative;
  margin: 10px auto 0;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
}

.pa-online:before {
  content: "online";
  font-weight: bold;
}

.pa-online strong {
  position: absolute;
  margin-right: -50%;
  transform: translate(-50%, 100%);
  padding: 5px 10px;
  left: 50%;
  opacity: 0;
  background: rgba(0,0,0,.7);
  box-sizing: border-box;
  white-space: nowrap;
  transition: opacity .2s linear 0s;
  pointer-events: none;
  color: var(--pun-bg);
}

 .pa-online strong::after {
    content: '';
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    z-index: 10;
    border: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-left: -10px;
    left: 50%;
    border-bottom: 10px solid rgba(0,0,0,.7);
    top: -10px;
}

.pa-online:hover strong {
  opacity: 1;
}


/* Тело поста */

.post-body {
  width: calc(100% - var(--pwidth));
}

.post-box {
  padding: 5px 0 10px 10px;
}

.post-links {
  margin-left: var(--pwidth);
  width: 100%;
text-transform: lowercase;
margin-top: 5px;
}

.post-links ul {
  padding: 0;
  margin-left: calc(var(--pwidth) * -1);
  text-align: right;
}

.post-links li {
  display: inline;
}

.post-links li:not(:first-of-type) {
  padding-left: 10px;
}

.pl-email,
.pl-website {
  float: left;
}

.clearer {
  clear: both;
  height: 0;
  font-size: 0;
}


/* Контент поста - цитата, спойлер, таблицы и т.п. */

.punbb .post td {
  border: 0px transparent !important;
}

pre {
  font: 12px/140% monaco, "bitstream vera sans mono", "courier new", courier, monospace;
}

.post-content em {
  font-style: italic;
}

.post .post-content td {
  border-width: 0px !important;
}

.post-content em.bbuline {
  font-style: normal;
  text-decoration: underline;
}

.post-content p {
  margin: 0;
  padding: 0 0 12px 0;
  line-height: 150%;
  text-align: justify;
margin-bottom: 10px;
}

.post-content img {
  vertical-align: middle;
}

.punbb .post td {
  border: 0px transparent !important;
}
.post-content td {border: 0px transparent !important;}


.scrollbox {
  width: 100%;
  overflow: auto;
  max-height: 200px;
}

/* цитата и код */

.quote-box,
.code-box {
margin: 4px 10px 10px;
    padding: 5px;
    border: 1px solid var(--link);
    background: var(--opac3);
    border-radius: 10px;
color: var(--text2);
}

.quote-box cite {
display: block;
    padding-bottom: 5px;
    font-weight: bold;
    font-style: normal;
    text-transform: lowercase;
    color: var(--link);
    font-family: var(--zagolovok);
    letter-spacing: 0.07em;
}

.code-box strong.legend {
  display: block;
  padding-bottom: 5px;
  font-weight: bold;
  font-style: normal;
}

.post-sig dt {
  border-bottom: 1px solid var(--link-hover);
  width: 300px;
  margin: 10px auto;
}

.punbb .reactions-root {
  padding: 0 0 10px;
}

.punbb .reactions-container {
  position: relative;
  justify-content: flex-end;
}

.punbb .reaction-picker {
  order: 1;
}

.punbb .reaction-picker-panel {
  right: 0;
}

/* Форма ответа */

#main-reply {
  box-sizing: border-box;
}

#tags {
  position: relative;
}

#tags .container {
  padding: var(--pad3) !important;
  top: 0 !important;
  max-height: 300px;
  overflow: auto;
}


/* Профиль + ЛС
------------------------------------------*/

#profile .container {
  padding-left: 200px;
  min-height: 100px;
}

#profilenav {
  float: left;
  width: 180px;
  margin-left: -180px;
}

#viewprofile h2,
#profilenav h2 {
  padding: 0;
  margin: 0;
}

#pun-profile h1 {
  display: none;
}

#profilenav li {
  padding: 0 0 5px;
}

#viewprofile li {
  padding: 5px 0;
}

#profile-right li {
  display: flex;
}

#profile-right li span {
  width: 150px;
  flex-shrink: 0;
}

#profile-left li strong {
  font-weight: normal !important;
font-family: var(--zagolovok);
}

#profile-right li strong {font-weight: normal;}

#profile-right {
    width: 70%!important;
    background: var(--opac3);
    border-radius: 10px;
    padding: 15px !important;
}

#profile-left {
    width: 80%!important;
    background: var(--opac3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img.avatardemo {
  float: right;
  margin: 0 0 8px 18px;
}

#pun-messages .clearer {
  display: none;
}

/* Прочие страницы
------------------------------------------*/

/* Список пользователей */

#pun-userlist .formal,
#pun-userlist .formal .container {
  margin-bottom: 0;
}

#pun-userlist .tc2 {
  text-align: left;
  width: 20%;
}

#pun-userlist .tcl {
  width: 40%
}

.usertable .container {}

/* Собщения об ошибках */

.info .container {
  padding: var(--pad3);
}

.info .container .backlink {
  padding-top: 8px;
}

/* Регистрация */

.info-box {
  margin: 0 0 10px 0;
}

.info-box * {
  padding: 0 0 5px 0;
}

.info-box .legend {
  font-weight: bold;
}

.jGrowl-notification .jGrowl-close {
  position: relative;
  right: 6px;
}

.tipsy #respect figcaption {
  margin-top: 0;
}


/* Form Buttons © max, the murderer!
----------------------------------------------------------------------- */

/* General */

#form-buttons table {
    width: 100% !important;
}

#form-buttons table tr {
    display: flex;
    justify-content: space-between; /* выравнивание кнопок в ряду */
    gap: 4px;
    margin-bottom: 4px;
}

#form-buttons td {
    position: relative;
    background: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; /* ширина кнопки */
    height: 24px; /* высота кнопки */
}

#form-buttons td::before {
    font-family: var(--fa);
    font-size: 16px; /* размер иконки */
    font-weight: 400; /* стиль иконки */
    position: absolute;
    color: var(--link);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;

}

#form-buttons td:hover::before {
    color: var(--link-hover); /* цвет при наведении */
}


/* Icons */

#button-ChangeСase:before {
	content: "\f15e"
}

#button-font:before {
	content: "\f031"
}

#button-transL:before {
	content: "\f362"
}

#button-size:before {
	content: "\f034"
}

#button-bold:before {
	content: "\f032"
}

#button-italic:before {
	content: "\f033"
}

#button-underline:before {
	content: "\f0cd";
	top: 1px
}

#button-strike:before {
	content: "\f0cc"
}

#button-indent:before {
	content: "\f03c"
}

#button-left:before {
	content: "\f036"
}

#button-center:before {
	content: "\f037"
}

#button-right:before {
	content: "\f038"
}

#button-justify:before {
	content: "\f039"
}

#floatbut:before {
	content: "\f03b"
}

#button-link:before {
	content: "\f0c1"
}

#button-spoiler:before {
	content: "\f070";
	font-size: 17px
}

#button-image:before {
	content: "\f03e";
	font-size: 18px
}

#button-video:before {
	content: "\f167";
	font-size: 18px;
	top: 0px
}

#button-hide:before {
	content: "\f023"
}

#button-quote:before {
	content: "\f10e"
}

#button-code:before {
	content: "\f121";
}

#button-color:before {
	content: "\f576"
}

#button-table:before {
	content: "\f0ce"
}

#button-smile {
	display: none
}

#button-smile:before {
	content: "\f118"
}

#button-sticker:before {
	content: "\f118"
}

#button-sticker img {
	opacity: 0
}

#button-vkladka:before {
	content: "\f58d"
}

td#button-files_rusff,
td#button-graffiti_rusff {
	display: none !important;
}

#button-keyboard:before {
	content: "\f11c";
	font-size: 16px
}

#button-addition:before {
	content: "\f0fe"
}

#button-mask:before {
	content: "\f630"
}

#button-html:before {
	content: "\f1c9"
}

#pun .post-content .spoiler-box>div {
	background: transparent;
	position: relative;
	padding: 0 0 !important;
	font-family: var(--font);
}

#pun .post-content .spoiler-box>div:before {
	content: "\f005";
  font-family: fontawesome;
  font-size: 10px;
	transition: all .5s ease-in-out 0s;
	box-sizing: border-box;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

#pun .post-content .spoiler-box>div.visible:before {
  opacity: .3
}


#pun .post-content .spoiler-box>div {
	background: transparent;
	position: relative;
	padding: 0 0 !important;
	font-family: var(--font);
}

#pun .post-content .spoiler-box>div:before {
	content: "\f005";
  font-family: fontawesome;
  font-size: 10px;
	transition: all .5s ease-in-out 0s;
	box-sizing: border-box;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

#pun .post-content .spoiler-box>div.visible:before {
  opacity: .3
}





/* Рейтинг поста */

body div.post-rating,
body div.post-vote {
  float: right;
  position: relative;
  line-height: initial;
}

body div.post-rating p,
body div.post-vote p {
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

div .post-rating p > a {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 11px/100% verdana, arial, sans-serif !important;
  color: var(--link);
}

div.post-vote p > a {
  font-size: 0 !important;
}

div .post-rating p::before, div .post-vote p a::before {
  content: '\f004';
  font-family: var(--fa);
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  color: var(--sec-bg);
  transition: all .2s linear 0s;

}

div .post-vote p a:before {
  content: '\f075';
}

div .post-rating p:hover:before,
div .post-vote p:hover a:before {
  color: var(--link);
}

div .post-rating p:hover > a,
div .mylike .post-rating p > a {
  color: var(--pun-bg);
}

div .mylike .post-rating p:before {
  color: var(--link);
}

.post[data-group-id="3"] .post-rating {
  display: none;
}

.isguest .post .post-rating {
  pointer-events: none;
}


