@import url(style_cs.1752426152.css);

/* шрифты бланш */
@import url(https://forumstatic.ru/files/001b/6a/eb/98346.css); 

/* Иконический шрифт */
@import url('https://fonts.googleapis.com/css2?family=Material+Icons+Outlined');

/* Font Awesome */
@import url('https://kit-pro.fontawesome.com/releases/v6.6.0/css/pro.min.css');

@font-face {
    font-family: 'Marlino Regular Personal Use';
    src: url('https://forumstatic.ru/files/001c/43/fc/54674.eot');
    src: local('Marlino Regular Personal U'), local('MarlinoRegularPersonalUse'),
        url('https://forumstatic.ru/files/001c/43/fc/54674.eot?#iefix') format('embedded-opentype'),
        url('https://forumstatic.ru/files/001c/43/fc/47695.woff2') format('woff2'),
        url('https://forumstatic.ru/files/001c/43/fc/56850.woff') format('woff'),
        url('https://forumstatic.ru/files/001c/43/fc/84814.ttf') format('truetype'),
        url('https://forumstatic.ru/files/001c/43/fc/60952.svg#MarlinoRegularPersonalUse') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* by gray son */

/*====================================================================*/
/*====================ТАРО ГАДАНИЕ ОТ ГРЕЙСОНА========================*/
/* Высокая специфичность для стилей */
/* Определение CSS переменных */
:root {
    --color-light-background: #f7fafc;
    --color-dark-text: #2d3748;
    --color-white: #fff;
    --color-gray-text: #4a5568;
    --color-light-gray-border: #a0aec0;
    --color-medium-gray-text: #718096;
    --color-light-gray-background: #e2e8f0;
    --color-blue-primary: #3182ce; /* Темно-синий */
    --color-blue-secondary: #63b3ed; /* Голубой */
    --color-blue-dark-border: #2b6cb0; /* Темнее синяя рамка */
    --color-green-pop-culture: #48bb78; /* Зеленый для поп-культуры */
    --color-light-blue-advice-bg: #bee3f8; /* Светло-синий фон для совета */

    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.3);

    --border-radius-small: 5px;
    --border-radius-medium: 8px;

    --spacing-small: 10px;
    --spacing-medium: 15px;
    --spacing-large: 20px;
    --spacing-extra-large: 30px;
}

/* Высокая специфичность для стилей */
#tarot-app-container body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-light-background);
    color: var(--color-dark-text);
    line-height: 1.6;
    padding: var(--spacing-large);
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Выравнивание по верху */
    min-height: 100vh;
}
/* Стили для контейнера приложения */
#tarot-app-container .container {
    max-width: 800px; /* Возможно, нужно уменьшить это значение */
    width: 96%; /* Это важно, чтобы контейнер не превышал ширину родителя */
    margin: 0 auto; /* Центрирует блок при наличии достаточного места */
    /* Остальные стили контейнера */
    background-color: var(--color-white);
    padding: var(--spacing-extra-large);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    text-align: center;
}
#tarot-app-container h1 {
    color: var(--color-gray-text);
    margin-bottom: var(--spacing-large);
}

/* Стили для области колоды */
#tarot-app-container .deck-area {
    margin-top: var(--spacing-extra-large);
    margin-bottom: var(--spacing-extra-large);
    display: flex; /* Используем flexbox */
    flex-wrap: wrap; /* Позволяет картам переноситься на новую строку */
    justify-content: center; /* ЭТОТ СТИЛЬ ОТВЕЧАЕТ ЗА ГОРИЗОНТАЛЬНУЮ ЦЕНТРОВКУ КАРТ ВНУТРИ БЛОКА */
    gap: var(--spacing-small); /* Расстояние между картами */
    /* max-width: 750px; /* Возможно, это ограничение нужно убрать или скорректировать */
    margin-left: auto; /* Центрируем блок колоды */
    margin-right: auto; /* Центрируем блок колоды */
    padding: var(--spacing-small); /* Добавим небольшой отступ внутри области колоды */
    background-color: var(--color-light-gray-background); /* Светло-серый фон для области колоды */
    border-radius: var(--border-radius-medium); /* Скругляем углы фона */
}

#tarot-app-container .deck-card {
    width: 80px; /* Размер карты в колоде */
    height: 120px;
    background-color: var(--color-blue-secondary); /* Цвет фона, если изображение не загрузится */
    border: 2px solid var(--color-blue-dark-border); /* Темнее синяя рамка */
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: var(--shadow-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    color: var(--color-white);
    font-weight: bold;
    /* Стиль рубашки: внешнее изображение */
    /* Замените URL ниже на URL вашей картинки для рубашки */
    background-image: url('https://forumstatic.ru/files/001b/b7/09/38908.jpg');
    background-size: cover; /* Масштабирует изображение, чтобы оно покрыло всю область */
    background-repeat: no-repeat;
    background-position: center;
}

#tarot-app-container .deck-card:hover:not(.disabled) {
    transform: translateY(-5px); /* Эффект при наведении */
    opacity: 0.9;
}

#tarot-app-container .deck-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none; /* Убираем эффект наведения для отключенных карт */
}

/* Стили для области расклада */
#tarot-app-container .spread-area {
    display: flex;
    flex-wrap: wrap; /* Позволяет слотам переноситься на новую строку, если не хватает места */
    justify-content: center; /* Центрируем слоты */
    gap: var(--spacing-large); /* Расстояние между картами в раскладе */
    margin-top: var(--spacing-extra-large);
    min-height: 250px; /* Минимальная высота, чтобы слоты были видны до выбора карт */
}

#tarot-app-container .card-position { /* Используем класс card-position */
    background-color: var(--color-light-gray-background); /* Светло-серый фон слота */
    border: 2px dashed var(--color-light-gray-border); /* Пунктирная рамка для пустых слотов */
    border-radius: var(--border-radius-medium);
    padding: var(--spacing-medium);
    text-align: center;
    width: 200px; /* Ширина карты в раскладе */
    height: auto; /* Автоматическая высота */
    min-height: 220px; /* Минимальная высота для заполненных слотов */
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Выравнивание содержимого по верху */
    align-items: center;
    position: relative; /* Для позиционирования текста */
}

@media (max-width: 600px) {
    #tarot-app-container .card-position { /* Используем класс card-position */
        width: 100%; /* На маленьких экранах слоты занимают всю ширину */
    }
}

#tarot-app-container .card-position.filled {
     border: none; /* Убираем пунктирную рамку для заполненных слотов */
     /* background-color: var(--color-white); /* Убираем или комментируем белый фон */
     box-shadow: var(--shadow-medium); /* Тень как у контейнера */

     /* Добавляем стили для фоновой картинки */
     background-image: url('https://forumstatic.ru/files/001b/b7/09/29309.png'); /* Замените на реальный URL вашей картинки */
     background-size: contain; /* Или 'contain', в зависимости от желаемого эффекта */
     background-repeat: no-repeat;
     background-position: top-center;

     /* Добавляем полупрозрачный фоновый цвет поверх изображения */
     /* rgba(красный, зеленый, синий, альфа-канал) */
     /* Значения от 0 до 255 для R, G, B */
     /* Значение от 0.0 (полностью прозрачный) до 1.0 (полностью непрозрачный) для альфа-канала */
     background-color: rgba(255, 255, 255, 0.9); /* Пример: полупрозрачный белый (0.7 - 70% непрозрачности) */
     /* Вы можете выбрать любой цвет, например, черный с прозрачностью: */
     /* background-color: rgba(0, 0, 0, 0.5); */
     color: var(--color-gray-text); /* Пример: используем серый цвет текста из переменных */
}



#tarot-app-container .card-position h3 { /* Используем класс card-position */
    margin-top: 0;
    color: var(--color-blue-dark-border); /* Синий заголовок */
    font-size: 1.2em;
    margin-bottom: 5px;
    font-weight: bold;
}
 #tarot-app-container .card-position .position { /* Используем класс card-position */
     font-size: 1.3em;
     color: var(--color-medium-gray-text); /* Серый цвет для позиции */
     margin-bottom: var(--spacing-small);
     font-weight: bold;
 }
 #tarot-app-container .card-position .pop-culture { /* Используем класс card-position */
     font-size: 1.1em;
     color: var(--color-green-pop-culture); /* Зеленый цвет для поп-культуры */
     margin-bottom: var(--spacing-small);
     /*font-style: italic;*/
     font-weight: bold;
 }
#tarot-app-container .card-position p { /* Используем класс card-position */
    font-size: 1.0em;
    color: var(--color-gray-text);
    text-align: left; /* Выравнивание предсказания по левому краю */
}

/* Стили для блока с советом */
#tarot-app-container .advice-area {
    margin-top: var(--spacing-extra-large);
    padding: var(--spacing-large);
    background-color: var(--color-light-blue-advice-bg); /* Светло-синий фон */
    border-left: 4px solid var(--color-blue-primary); /* Синяя полоса слева */
    border-radius: var(--border-radius-medium);
    text-align: left;
    display: none; /* Скрыт по умолчанию */
}

#tarot-app-container .advice-area h3 {
    margin-top: 0;
    color: var(--color-blue-dark-border); /* Синий заголовок */
    margin-bottom: var(--spacing-small);
}

/* Стили для области генерации кода */
#tarot-app-container .code-output-area {
    margin-top: var(--spacing-extra-large);
    text-align: left;
    display: none; /* Скрыт по умолчанию */
}

#tarot-app-container .code-output-area h3 {
    margin-top: 0;
    color: var(--color-gray-text);
    margin-bottom: var(--spacing-small);
}

#tarot-app-container #htmlOutput {
    width: 100%;
    height: 200px;
    padding: var(--spacing-small);
    border: 1px solid var(--color-light-gray-border);
    border-radius: var(--border-radius-small);
    background-color: #edf2f7; /* Светло-серый фон */
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    resize: vertical; /* Разрешить вертикальное изменение размера */
}

#tarot-app-container .button-group {
    margin-top: var(--spacing-large);
    display: flex;
    flex-wrap: wrap; /* Позволяет кнопкам переноситься на новую строку */
    justify-content: center;
    gap: var(--spacing-medium); /* Расстояние между кнопками */
}

#tarot-app-container .button-group button {
     display: inline-block; /* Кнопки в ряд */
     margin: 0; /* Убираем автоматические отступы */
     padding: var(--spacing-small) var(--spacing-large);
     border: none;
     border-radius: var(--border-radius-small);
     cursor: pointer;
     font-size: 1.1em;
     transition: background-color 0.3s ease;
     color: var(--color-white); /* Белый текст для всех кнопок */
     font-weight: bold;
}

#tarot-app-container .button-group button:hover {
     opacity: 0.9; /* Небольшое затемнение при наведении */
}

 /* Стили для кнопки вытянуть карты */
 #tarot-app-container #draw-button {
     background-color: var(--color-blue-primary); /* Темно-синий */
 }

 /* Стили для кнопки сброса */
 #tarot-app-container .button-group .reset-button {
     background-color: var(--color-blue-primary); /* Темно-синий, как кнопка генерации */
 }

 /* Стили для кнопки генерации кода */
 #tarot-app-container .button-group .generate-button {
     background-color: var(--color-blue-primary); /* Темно-синий */
 }

 /* Стили для кнопки копирования */
 #tarot-app-container .button-group .copy-button {
     background-color: var(--color-blue-secondary); /* Голубой */
 }







/****************************************
Чистый стиль 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 .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;
}

#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: #c5b19f;
  --bordercolor: #777777;
  --border-color: #323232;
  --pun-bg: #FFFCF5;
  --sec-bg: #F9F5EC;
  --link: #2e2618;
  --link-hover: #711624;
  --textcolor: #323244;
  --pwidth: 224px;
  --pad1: 10px 40px;
  --pad2: 5px 20px;
  --pad3: 5px 10px;
  --font-family: "Microsoft Sans Serif", sans-serif;
  --second-family: "Marlino Regular Personal Use", sans-serif;
  --iconsfont:'Material Icons Outlined';
}

.rose{
  --body-bg: #c5b19f;
  --pun-bg: #ece9e5;
  --sec-bg: #e2dede;
  --link: #2e2618;
  --link-hover: #711624;
}

.blue{
    --body-bg: #C3A6A6;
    --pun-bg: #FFFCF5;
    --sec-bg: #F9F5EC; 
    --link: #506B76;
    --link-hover: #2E4752;
}

/* 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%;
  scrollbar-width: thin;
  scrollbar-color: var(--link-hover) var(--sec-bg);
}

/* прокрутка хром etc */

*::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

*::-webkit-scrollbar-track {
  background-color: var(--sec-bg);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--link);
}

*::-webkit-scrollbar-thumb:active {
  background: var(--link-hover);
}

/* выделение текста */

::selection {
  background: var(--link);
  color: var(--pun-bg);
}

del {
    opacity: 0.7;
    /*filter: blur(2px);*/
    text-decoration: line-through;
    text-decoration-thickness: 10px;
    transition: all .3s linear 0s;
}

del:hover {
    opacity: 1;
    filter: none;
    text-decoration: none;
}

.post-content hr {
    border: 1px dashed var(--body-bg);
}

:focus {
  outline: none;
}

/* все ссылки */

a,
.punbb #pun-admain a {
  text-decoration: none;
  color: var(--link);
  transition: all .2s linear 0s;
}

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;
}

.multipage h1, .multipage h2 {
   /*display: none;*/
}

.multipage thead {
   display: none;
}

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, li.pl-share, li.pl-reports, td.td-divider {
  display: none !important;
}

/* модальные окна, репутация, закладки etc */

#tags .container,
.post_report,
.post_reputation,
#MyBookmarks,
.inner.popup_graffiti,
.pun-modal .modal-inner,
.punbb-admin #pun-admin-award-form .inner {
  background: var(--sec-bg);
}

/* Формы
------------------------------------------- */

/*#font-area {
    height: 220px;
    width: 680px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
    padding: 15px !important;
    max-height: 144px;
    overflow: auto;
}*/

/* ОФОРМЛЕНИЕ КНОПОК */

input.button,
#pun-admain input.button,
#sub4,
input[type="button"],
input[type="submit"] {
  padding: 2px 10px;
  cursor: pointer;
  transition: all .2s linear 0s;
   background: var(--body-bg);
    font-family: var(--font-family);
    text-transform: lowercase;
    border: 1px solid var(--body-bg);
    border-radius: 9px;
    padding: 7px 10px;
    font-size: 12px;
    color: var(--textcolor);
}

input.button:hover,
#pun-admain input.button:hover,
#sub4:hover,
input[type="button"]:hover,
input[type="submit"]:hover {}

select#mod-options {
    font-family: var(--font-family);
    font-size: 10px;
    background: var(--body-bg);
}

/* ОФОРМЛЕНИЕ ПОЛЕЙ ВВОДА */

input[type="text"],
input[type="password"],
textarea,
select {
  padding: 2px 5px;
    border: 1px solid var(--body-bg);
    background: var(--pun-bg);
    border-radius: 9px;
}

textarea,
input,
select,
optgroup {
  font-size: 12px;
  font-family: 'arial';
}

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;
  text-align: center;
}

.formsubmit input,
.formsubmit a,
.formsubmit span {
  margin: 0 6px 0 0;
   background: var(--body-bg);
    font-family: var(--font-family);
    text-transform: lowercase;
    border: 1px solid var(--body-bg);
    border-radius: 9px;
    padding: 7px 10px;
    font-size: 12px;
    color: var(--textcolor);
}

fieldset {
  border: none;
}

fieldset legend {
  font-weight: bold;
  margin-bottom: 10px;
}

fieldset legend span { 
    font-family: var(--font-family);
    font-style: italic;
    border: 1px solid var(--body-bg);
    padding: 1px 6px;
    border-radius: 10px;
    background: var(--body-bg);
}

fieldset fieldset {
  border: none;
  margin: 0;
  padding: 0 0 8px 0
}

#plng {
    border: 1px solid var(--body-bg)!important;
    padding: 5px 5px 5px 8px !important;
    margin: 0 20px 0 5px!important;
    border-radius: 10px;
}

.fs-box {
  padding: 5px 0;
}

.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: var(--body-bg) url(https://i.imgur.com/JRvo5xY.png?v=1) no-repeat top center/cover;
}

.blue body::before {
  background: var(--body-bg) url(https://i.imgur.com/Nofbv94.jpg) no-repeat top center/cover;
}

/* тело */

#pun {
  margin: 30px auto;
  width: 950px;
  background: var(--pun-bg);
  color: var(--textcolor);
  text-transform: lowercase;
}

/* внутреннее тело */

.punbb {
  font: 12px Arial;
}

/* настройки внутренних блоков */

.punbb > div .container {
  padding: var(--pad1);
}

/* Навигационные ссылки */

#pun-navlinks {
    position: absolute;
    top: 35px;
    width: 950px;
    font-family: var(--font-family);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

#pun-navlinks a {
    color: #fff;
}

#pun-navlinks a:hover {
    font-style: italic;
}

#pun-navlinks .container {
  text-align: center;
}

#pun-navlinks>ul> li {
    display: inline;
    border-radius: 23px;
    padding: 4px 8px;
    text-transform: lowercase;
    font-size: 16px;
}

/* Пользовательские ссылки */

#pun-ulinks {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    text-transform: lowercase;
    text-align: center;
}

#pun-ulinks a {
    color: #323244;
}

#pun-ulinks .container {
  text-align: center;
}

#pun-ulinks li {
  padding: 0 5px;
  display: inline;
}

/* Статус */

#pun-status {
    font-family: var(--font-family);
    text-transform: lowercase;
    font-size: 10px;
}

#pun-status span {
  white-space: nowrap;
  margin-right: 5px;
}

.crumbs.container {
    font-family: var(--font-family);
    /*font-size: 10px;*/
    text-align: center;
    text-transform: lowercase;
}

/* Копирайт */

#pun-about {}

#pun-about .container {
  text-align: center;
}


/* Главная форумная таблица
------------------------------------------*/

.main table {
  table-layout: fixed;
  width: 100%;
}

.main th {
  padding: 5px 10px;
}

.main td {
  padding: 10px;
}

.tcl {
  width: 50%;
}

.tc2,
.tc3,
.tcmod {
  text-align: center;
  width: 10%;
}

#pun-index .tc2,
#pun-index .tc3,
#pun-index .tcmod {
  visibility: hidden;
  display: none;
}

.tcr {
  width: 30%;
}


#pun-index .tcr {
    text-align: right;
    padding-right: 20px;
}

#pun-index td .user-avatar {
    float: left;
    margin: 1px 0 2px 1px;
}

#pun-index td .avatar-image {
    outline: 2px solid var(--body-bg);
}

.lastpost-link, .lastpost {
    font-family: var(--font-family);
    text-transform: lowercase;
    text-align: center;
    color: #323244;
}



.lastpost-link {
   font-size: 13px;
}

.lastpost {
   font-size: 11px;
}

#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%;
}

#pun-index tbody.hasicon {
    border-radius: 17px;
    background: var(--sec-bg);
    display: block;
    padding: 23px;
}

tbody.hasicon td.tcl {
  padding-left: 40px;
}

.desktext {
    font-family: var(--font-family);
    font-size: 10px;
    text-transform: lowercase;
    color: #323244;
}

.desklink {
   margin-top: 10px;
   display: flex;
   gap: 5px;
}

.desklink a {
    border: 1px solid var(--body-bg);
    padding: 3px 8px;
    border-radius: 5px;
    color: var(--textcolor);
}

.desklink a:hover {
    border: 1px solid var(--body-bg);
    background: var(--body-bg);
    padding: 3px 8px;
    border-radius: 5px;
    color: white;
}

/* список тем в форуме */

div#pun-viewforum tbody.hasicon {
}

tr.tr-divider.imp, tr.tr-divider.st {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

tr.tr-divider.st {
    background: var(--pun-bg);
    color: var(--link-hover);
}

tr.tr-divider.imp {
    border-radius: 9px 9px 0 0;
    background: var(--link);
    color: #fff;
}

div#pun-viewforum tbody.hasicon tr, div#pun-searchtopics tbody.hasicon tr {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-size: 11px;
}

#pun-viewforum table {
    background: var(--sec-bg);
    border-radius: 9px;
}

#pun-viewforum tc2::before {
     content: "ответов";
}


/* аватар */

.punbb td .user-avatar, #pun-index td .user-avatar {

}

.punbb td .user-avatar .avatar-image {

}

/* Иконки */


#pun-index div.icon {
    position: absolute;
    margin-left: -20px;
    width: 8px;
    height: 30px;
    background: var(--body-bg);
    border-radius: 0;
}

#pun-index tr.inew div.icon {
    position: absolute;
    margin-left: -20px;
    width: 8px;
    height: 30px;
    background: var(--link);
    border-radius: 0;
}

div.icon {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: -30px;
    background: var(--body-bg);
}

tr.inew div.icon {
  background: var(--link) url() no-repeat top center;
}

tr.isticky div.icon {
  background: #323244;
}

tr.iclosed div.icon {
  background: #3D2929;
}

#pun-index .tclcon {
  /*width: 362px;*/
  width: 470px;
  text-align: justify;
}

/* Оформление всплывающей  подсказки © Домовой */
#tooltip {
    position:absolute;
    background-color:var(--link); /* фон подсказки */
    z-index: 999;
    max-width:200px; /* максимальная ширина подсказки */
    -moz-border-radius:4px;
    -khtml-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
    font-family:var(--font-family);
    font-size:12px; /* размер текста */
    display:none;
    color:#fff; /* цвет текста */
    text-align:center;
    padding:4px;
    text-transform: lowercase;
}



/* Пагинация (Переключаемые страницы, Новая тема + Опрос, Подписка)
--------------------------------------------------------------------------------------------------- */

.multipage {
  margin-top: 10px;
}

.linkst {
  position: relative;
  padding: var(--pad2);
  display: flex;
  justify-content: space-between;
  margin: 0 30px 10px;
  text-transform: lowercase;
  font-family: var(--font-family);
  /*font-weight: 700;
  font-size: 10px;*/
  color: var(--textcolor);
}

.linkst .pagelink, .linksb {
  text-transform: lowercase;
  font-family: var(--font-family);
  /*font-weight: 700;
  font-size: 10px;*/
  color: var(--textcolor);}

.linkst .postlink {
  text-align: right;
}

.linksb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#pun-viewtopic .linksb, #pun-main.main.multipage .linksb {
  position: relative;
  padding: var(--pad2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 30px 10px;
}

#pun-main.main.multipage .tcr a, #pun-main.main.multipage .tcr .byuser {

}

.linksb .pagelink {
  order: -1;
}

.subscribelink {
  /*width: 100%;*/
  text-align: right;
    display: inline-block;
    padding: 3px 8px;
    background-color: rgb(241, 241, 241);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 3px;
    color: rgb(51, 51, 51);
    cursor: pointer;
    text-decoration: none;
    font-size: 1.15em;
    transition: 0.2s;
}

.subscribelink:hover, .linksb .postlink:hover {
        background-color: #e1e1e1;
        border-color: #ccc;
}

.linksb noindex {
  order: 1;
}

.linksb .postlink {
  margin-left: auto;
  text-align: right;
  display: inline-block;
    padding: 3px 8px;
    background-color: rgb(241, 241, 241);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 3px;
    color: rgb(51, 51, 51);
    cursor: pointer;
    text-decoration: none;
    font-size: 1.15em;
    transition: 0.2s;
}

.postlink.long {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.postlink.long .new-topic {
    padding-right: 5px!important;
}

.postlink.long .new-topic, .postlink.long .new-poll {
    background: var(--link);
    padding: 2px 5px;
    border-radius: 10px;
}

.postlink.long .new-topic:hover, .postlink.long .new-poll:hover {
    background: var(--link-hover);
}

.postlink.long a {
    color: white;
}

.topic-users-in {
    font-family: var(--font-family);
    font-size: 11px;
}

/* Модераторское меню, RSS, Atom */

.modmenu .container {
  padding: var(--pad3);
  text-align: right;
}

.modmenu .container strong {
  float: left;
}

.modmenu input {
  margin-left: 10px;
}
.modmenu strong ::before {
    content: '\f591';
    font-family: 'Font Awesome 6 Pro';
    padding: 0 6px 0 0;
    font-weight: 600;
}

.modmenu strong {
    font-family: var(--font-family);
    font-size: 11px;
}

/* Главная
------------------------------------------*/

/* скрыть "форум, тем, сообщений" */

#pun-index thead {
  display: none;
}

/* категория */

#pun-index .category {}

/* заголовок категории */

#pun-index .category h2 {
      padding: 0 50px; 
}

#pun-index .category h2 span:not(.categoryTool) {
font-family: var(--second-family);
    font-weight: 400;
    font-size: 28px;
    text-transform: lowercase;
    text-align: center;
    color: var(--textcolor);
    background: url(https://forumstatic.ru/files/001c/6e/7e/91116.png) no-repeat top right;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
    padding: 0 60px;
}

.blue #pun-index .category h2 span:not(.categoryTool) {
    background: url(https://forumstatic.ru/files/001c/43/fc/45819.png) no-repeat top right;

}

.categoryTool {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 400;
    font-size: 9px;
    text-transform: lowercase;
    color: #323244;
    width: 200px;
    display: block;
    text-align: left;
}


/* форумы */

#pun-index .tcl h3 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
}

#pun-index .tcl h3 a {
    color: #323244;
}

#pun-index .tcl h3 a:hover {
    letter-spacing: 0.01em;
}

/* Статистика */

#pun-stats {}

#pun-stats .container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    text-transform: lowercase;
    font-family: var(--font-family);
    /*font-size: 10px;*/
}

.online-list {
    font-size: 12px !important;
    font-family: var(--font-family);
}

.dailystat {
    display: inline-flex;
    width: 320px;
    justify-content: flex-start;
    padding: 23px 17px;
    flex-direction: column;
}

.dailyonline {
    width: 696px;
    display: inline-flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    border-left: 0px solid black;
    padding: 23px 17px;
}


/* заголовок статистики */

#pun-stats h2 {
   display: none;
}

/* всего тем, всего сообщений */

#pun-stats li.item1,
#pun-stats li.item2 {
  clear: both;
    background: var(--sec-bg);
    padding: 5px 25px;
    border-radius: 23px;
    font-size: 10px;
}


/* зарегистрированных, последний зарегистрировавшийся */

#pun-stats li.item3,
#pun-stats li.item4 {
    background: var(--sec-bg);
    padding: 5px 25px;
    border-radius: 23px;
    font-size: 10px;
}

/* активны, посетили за сутки */

li#onlinelist {
  margin-top: 10px;
  text-align: justify;
    flex-grow: 1;
    width: 100%;
}

/* Шапка
------------------------------------------*/

#pun-title {
    background: url(https://i.imgur.com/Wxe4EJ3.png);
    height: 339px;
    width: 950px;
}

.blue #pun-title {
    background: url(https://i.imgur.com/yNJ7NH2.png);

}

/* скрыть заголовок в шаке */

#pun-title .title-logo {
  display: none;
}

/* содержимое шапки в html-верх */

.tablica {
    position: absolute;
    width: 950px;
    height: 280px;
    top: 90px;
    display: flex;
    justify-content: space-between;
    padding: 0 50px 50px;
    box-sizing: border-box;
    align-items: flex-end;
    pointer-events: none;
}

.tableft {
    width: 322px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    pointer-events: all;
}

.tabright {
    pointer-events: all;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin: 0 20px 0 0;
}

.bestep, .actshead, .map {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-transform: lowercase;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
    position: relative;
    width: fit-content;
}

.actshead span, .map span {
    display: block;
    position: relative;
    z-index: 2;
}

.bestep span {
    font-style: italic;
}

.bestep a {
    color: #fff;
    width: fit-content;
    position: relative;
}

.bestep a span {
    z-index: 2;
    position: relative;
}

.bestpost {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-transform: lowercase;
    text-align: center;
    color: #fff;
    font-style: italic;
    position: relative;
}

.bestpostextra {
    z-index: 2;
    position: relative;
}

.bestpost a {
    color: #fff;
   font-weight: 700;
}

.bestquote {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    text-transform: lowercase;
    color: #fff;
    text-align: justify;
    width: 322px;
    height: 77px;
    padding: 10px 10px 10px 15px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
    background: rgba(217, 217, 217, 0.08);
    border-radius: 5px;
    -webkit-backdrop-filter: blur(4px);
}

.bestquote p {
    overflow: auto;
    height: 60px;
    scrollbar-color: var(--link) transparent;
    padding-right: 10px;
}

.underline {
    display: block;
    backdrop-filter: blur(2px);
    background: rgba(109, 21, 21, 0.31);
    height: 8px;
    width: 100%;
    position: absolute;
    bottom: -2px;
    z-index: 1;
    padding: 0 10px;
    left: 50%;
    transform: translateX(-50%);
}

.blue .underline {
    background: rgba(19, 41, 83, 0.31);
}

.acts {
   display: flex;
   gap: 15px;
   margin-bottom: 40px;
}

.acts a {
    width: 40px;
    height: 40px;
    display: block;
    outline: 1px dotted white;
    outline-offset: 2px;
    border-radius: 8px;
}

.acts a::before {
    content: '';
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 8px;
    background: #3D2929;
    position: absolute;
    opacity: 0.35;
}

.blue .acts a::before {
    background: #29293D;
}

.acts a:hover:before {
    opacity: 0;
}

.acts img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 7px;
}

.map {
    margin: 0 50px 10px 0;
}

.headquote {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    text-transform: lowercase;
    text-align: left;
    color: #fff;
    margin-bottom: 5px;
}

.headquote span {
    border-bottom: 1px dotted white;
}

.headname {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 28px;
    text-transform: lowercase;
    text-align: right;
    color: #fff;
    margin-bottom: 5px;
}

.headinfo {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 400;
    font-size: 8px;
    text-transform: lowercase;
    text-align: right;
    color: #fff;
}

/* Объявление
------------------------------------------*/

#pun-announcement {}

/* скрываем слово "объявление" */

#pun-announcement h2 {
  display: none;
}


/* Футер
------------------------------------------*/

#html-footer {}

#html-footer .container {padding: 0;}

/* баннеры */

.banners {
  padding: var(--pad1);
  background: var(--link);
  height: 80px;
}

.banners .container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    justify-content: center;
    overflow: auto;
    height: 75px;
    scrollbar-width: thin;
    scrollbar-color: var(--link) var(--link-hover);
}

.banners a {
  opacity: .7;
}

.banners a:hover {
  opacity: 1;
}


/* Топик
------------------------------------------*/

.post {
    background: var(--sec-bg);
    margin: 20px 30px  0;
    border-radius: 10px;
    padding: 5px;
}

.toppost,
.topicpost {
  margin-top: 0;
}

/* контейнер поста */

.post > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
   padding: 10px 15px !important;
}

/* дата и номер поста */

.post h3 {}

.post h3 span {
  padding: var(--pad2);
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  text-transform: lowercase;
  color: var(--link);
  border-bottom: 1px dashed var(--body-bg);
}

.permalink::before {
 content: '\e8b5';
 font-family: var(--iconsfont);
 padding: 0 5px 0 0;
}

.permalink {
  color: var(--link);
}

/* номер поста */

.post h3 strong::before {
 content: '# ';
}

.post h3 strong {
  float: right;
  text-align: right;
  font-weight: normal;
}

/* Автор */

.post-author {
  width: var(--pwidth);
  text-align: center;
  box-sizing: border-box;
  background: var(--sec-bg);
  border: 1px solid var(--body-bg);
  border-radius: 9px;
  margin-bottom: 15px;
  position: relative;
}


.post-author ul {
  padding: 10px;
}

.pa-author {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    text-transform: lowercase;
    text-align: center;
    color: var(--textcolor);
}

.pa-author a {
    color: var(--textcolor);
}

.pa-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    text-transform: lowercase;
    text-align: center;
    margin: 10px;
}

.pa-avatar img {
    border-radius: 9px;
    outline: 1px solid var(--body-bg);
    outline-offset: 5px;
    margin: 5px;
}

.pa-fld1 a {
  font-weight: 600;
}

.pa-fld1 {
  width: 100%;
  height: auto;
  display: block;
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
  margin: 0px 0 !important;
  box-sizing: border-box;
  /*padding: 0px !important;*/
  color: var(--button-text-color);
  font-size: 0.8em;
  letter-spacing: 1px;
  text-transform: lowercase;
  font-weight: 400;
  font-family: var(--arial);
  line-height: 1.5;

}

.pa-fld1 lz1 {
  display: block;
  width: 100%;
  padding: 12px 10px 0px;
  box-sizing: border-box;
  background: transparent;
  box-shadow: 0 0 0 1px var(--border-color);
  border-radius: 5px;
}

.pa-fld4 {
    display: block;
    width: 176px;
    font-variant: small-caps;
    font-family: Code Pro;
    background: #c8c5c3;
    text-transform: uppercase;
    font-size: 8px;
    color: #;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
    letter-spacing: 1px;
    padding: 4px !important;
    margin-left: 8px !important;
    margin-top: 5px !important;
    margin-bottom: 0px !important;
}

/*li.pa-fld1 fandom {
    display: block;
  width: auto;
  height: auto;
  text-align: center;
  padding: 0 8px !important;
  box-sizing: border-box;
}*/

.lzname {
    /*font-size: 11px;
    text-transform: uppercase;
    font-family: var(Code Pro);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    color: ();
    text-align: center;*/

  text-transform: uppercase;
  display: block;
  /*font-size: 1.2em;*/
  letter-spacing: 1px;
  width: auto;
  height: auto;
  text-align: center;
  padding: 10px 10px !important;
  box-sizing: border-box;
  color: var(--quote-color);
  font-weight: 600 !important;
  font-family: var(--arial);
  border-bottom: 1px dashed var(--body-bg);
  background-image: var();
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin: 16px 10x 20px !important;
  line-height: 1;
  z-index: 3 !important;

}


/*.lz {
    border-bottom: 1px dashed var(--body-bg);
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-top: 1px dashed var(--body-bg);
    padding-top: 5px;
}

.lz .name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    text-transform: lowercase;
    display: block;
    color: var(--textcolor);
}

.lz .name::before, .lz .name::after {
   content: '-';
   padding: 5px;
    font-family: var(--second-family);
}

.lz .info::before {
   content: "\f10d";
    font-family: 'FontAwesome';
}

.lz .info {
    font-family: var(--font-family);
    font-size: 10px;
    text-transform: lowercase;
    text-align: center;
    color: var(--textcolor);
    border-radius: 30px;
    padding: 2px 3px;
    font-size: 10px;
    font-style: italic;
    color: #696969;
    margin: 3px 0 10px 0;
}



.lz quote {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    text-transform: lowercase;
    text-align: center;
    color: var(--textcolor);
}*/

.addflds {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    width: fit-content;
    margin: 18px auto 1px;
    padding: 3px 13px;
    position: relative;
    z-index: 1;
}


.pa-posts,
.pa-respect,
.pa-fld2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 10px;
    text-transform: lowercase;
    text-align: center;
    color: var(--textcolor);
    padding: 0 10px; 
    display: inline-block;
}

.pa-fld3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 223px;
    height: 50px;
}

.pa-fld3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0 0 8px 8px;
}

li.pa-fld5 {
    display: flex;
    position: absolute;
    margin: -20px 0px 0px -20px;
    width: 20px;
    height: 20px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    z-index: 3
}

.pa-online,
.pa-last-visit {}

.pa-online, .pa-last-visit {
    display:none!important;
}


/* Тело поста */

.post-body {
  width: calc(100% - var(--pwidth));
}

.post-box {
  padding: 10px;
  text-transform: none;
}

.post-box a {
  font-weight: 600;
}

.post-links {
  margin-left: var(--pwidth);
  width: 100%;
  text-transform: lowercase;
  font-family: var(--font-family);
  font-size: 10px;
}

.post-links ul {
  padding: 0;
  margin-left: calc(var(--pwidth) * -1);
  text-align: right;
}

.post-links li {
  display: inline-flex;
  align-items: center;
}

.post-links li:not(:first-of-type) {
  padding-left: 10px;
}

.pl-email,
.pl-website {
  float: left;
}

.clearer {
  clear: both;
  height: 0;
  font-size: 0;
}

li.pl-email.profile::before {
 content: '\e7fd';
 font-family: var(--iconsfont);
 margin-right: 6px;
 color: var(--link);
}

li.pl-email.pm::before {
 content: '\e163';
 font-family: var(--iconsfont);
 margin-right: 6px;
 color: var(--link);
}

li.pl-email.email::before {
 content: '\e0e6';
 font-family: var(--iconsfont);
 margin-right: 6px;
 color: var(--link);
}

li.pl-delete::before {
 content: '\e872';
 margin-right: 6px;
 font-family: var(--iconsfont);
 color: var(--link);
}

li.pl-edit::before {
 content: '\e3c9';
 font-family: var(--iconsfont);
 margin-right: 6px;
 color: var(--link);
}

li.pl-quiet_quote::before {
 content: '\e244';
 margin-right: 6px;
 font-family: var(--iconsfont);
 color: var(--link);
}

li.pl-quote::before {
 content: '\e244';
 margin-right: 6px;
 font-family: var(--iconsfont);
 color: var(--link);
}


/* Контент поста - цитата, спойлер, таблицы и т.п. */

.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 12px;
  line-height: 150%;
  text-align: justify;
}

.post-content img {
  vertical-align: middle;
}

.scrollbox {
  width: 100%;
  overflow: auto;
  max-height: 200px;
}

/* цитата и код */

.quote-box,
.code-box {
    margin: 4px 10px 10px;
    padding: 9px;
    border: 1px solid var(--body-bg);
    background: var(--pun-bg);
    background-image: url(https://forumupload.ru/uploads/001b/6a/eb/9/726939.png);
    border-radius: 9px;
}

.quote-box cite {
    display: block;
    padding-bottom: 7px;
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 700;
    font-size: 13px;
    text-transform: lowercase;
    color: var(--textcolor);
    border-bottom: 1px dashed var(--body-bg);
}

.quote-box blockquote {
padding: 10px 0 0 0;
}

.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 .post-content .spoiler-box > div, .punbb .post-content .spoiler-box > div.visible {
    background: url(https://forumupload.ru/uploads/001b/6a/eb/9/980661.png?v=1) no-repeat left center / 14px;
}

/* Форма ответа */

#main-reply {
  box-sizing: border-box;
}

#tags {
  position: relative;
}

#tags .container {
  padding: var(--pad3) !important;
  top: 0 !important;
}


/* Профиль + ЛС
------------------------------------------*/
#profile {
   padding: var(--pad1);
}

#viewprofile tr { 
    display: flex;
    gap: 40px;
    font-family: var(--font-family);
}

#pun-profile h1 {
  display: none;
}

#profile .container {
  padding-left: 200px;
  min-height: 100px;
}

#profilenav {
  float: left;
  margin-left: -180px;
}

#viewprofile h2,
#profilenav h2 {
   text-align: center;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 10px;
    background: var(--body-bg);
    color: black;
    padding: 2px 3px;
    border-radius: 10px;
}

#profilenav li {
  padding: 0 0 5px;
}

#viewprofile li {
  padding: 5px 0;
}
#viewprofile li span {
float: left;
width: 180px;
padding: 5px 10px;
font-weight: bold;
}

#viewprofile td#profile-left {
    display: flex;
    flex-wrap: wrap;
    width: 30%;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    background: var(--sec-bg);
    padding: 10px 15px;
    border-radius: 10px;
    border: 0px solid var(--body-bg);
}

#profile-name {
    font-size: 15px;
    font-style: italic;
}

/*#viewprofile td#profile-right {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 10px;
    flex-direction: row;
    width: auto;
    align-items: center;
    justify-content: center;
}


#profile-right li {
   display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: center;
    gap: 10px;
    text-align: center;
    background: var(--sec-bg);
    padding: 0 0px;
    border-radius: 10px;
    border: 1px solid var(--body-bg);
    flex: auto;
}*/

#profile-right {
display: grid;
grid-template-columns: 1fr 1fr;
justify-content: space-evenly;
gap: 12px;
font-size: 11px;
width: 100% !important;
background: var(--midBackColor);
padding: 20px!important;
border-left: none!important;
box-sizing: border-box;
}

#profile-right li {
width: auto;
display: flex;
flex: auto;
text-align: center;
padding: 11px!important;
background: #d8d8d81a;
border: 1px solid var(--body-bg);
border-radius: 4px;
align-items: center;
flex-direction: column;
justify-content: center;
}

#profile-right li span {
    flex-shrink: 0;
    text-align: center;
}

#profile-left li strong, #profile-right li strong {
  font-weight: normal !important;
  padding-left: 0 !important;
}

img.avatardemo {
  float: right;
  margin: 0 0 8px 18px;
}

#pun-messages .clearer {
  display: none;
}
div#viewprofile li#pa-invites {
display: none;
}

#pun #profile-right li span {
float: none;
margin: 0;
width: auto;
font-weight: bold;
}

/* Прочие страницы
------------------------------------------*/

/* Список пользователей */

#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;
}

/* Кнопки вверх-вниз
-------------------------------------------------------*/

.go-up,
.go-down {
  cursor: pointer;
  opacity: .8;
  z-index: 9999;
  display: none;
  position: fixed;
  box-sizing: border-box;
  transition: all .3s linear 0s;
}

.go-up {
   top: 260px;
   background: url(https://forum4.ru/uploads/001b/6a/eb/9/705258.png); 
   height: 67px; 
   width: 96px; 
   margin-left: 920px !important;
}

.blue .go-up {
   background: url(https://forum4.ru/uploads/001b/6a/eb/9/977693.png); 
}

.go-down {
  top: 370px;
   background: url(https://forum4.ru/uploads/001b/6a/eb/9/25271.png); 
   height: 68px; 
   width: 125px; 
   margin-left: 920px !important;
}

.blue .go-down {
   background: url(https://forum4.ru/uploads/001b/6a/eb/9/962313.png); 
}

.go-down:hover,
.go-up:hover {
  opacity: 1;
}

/* БыстроПлюсы для Топика */
.noNull:before {
  content: "+";
  font-size: 9px;
  display: inline-block;
  margin-left: -6px;
  margin-top: 0px;
  position: absolute;
}
div .post-rating p>a {
  text-align: center;
  outline: 1px solid transparent;
  font-weight: 700;
  background: url(https://forumstatic.ru/files/001b/a6/d4/26514.svg) no-repeat center;
  background-size: 38px auto;
  position: relative;
  padding-left: 1px;
  z-index: 100;
  width: 38px;
  height: 38px;
  text-align: center;
  font-size: 12px !important;
  display: inline-block;
  vertical-align: middle;
  line-height: 36px;
  letter-spacing: 2px;
   color: var(--link);
}
div.dark-style .post-rating p>a {
  color: #6BC8AF !important;
}
div.post-vote {

}

div.post-vote p>a {
  font-size: 0 !important;
  position: absolute;
  cursor: pointer;
  z-index: 200;
  width: 23px;
  height: 23px;
  background: url(https://forumstatic.ru/files/0012/d8/04/75043.png?) no-repeat;
  display: block;
  background-size: 100%;

}
.post.dark-style div.post-vote p>a {
  background: url(https://forumstatic.ru/files/0012/d8/04/38128.png?) no-repeat;
  background-size: 100%;
}

.punbb div.post-vote p {
  padding: var(--pad1)!important;
  margin: 0!important;
}

/************************* 
Стиль для Быстрой смены аккаунтов 
Deff 
*************************/ 
/*Cкрытие формы входа без клика*/ 
#pun-navlinks a:not(.NextShow)+span.odd{ 
display:none!important; 
}
#pun-navlinks a:not(.NextShow)+span.odd{ 
display:none!important; 
}
/*Стиль доп-иконки Выход!*/ 
#pun-navlinks a#New-exit {
  background: transparent!important; 
  position:absolute;
  z-index:100000!important;
  margin-top: 1px !important;
  margin-left: 30px !important;
  display:inline-block!important; 
}
#pun-navlinks #New-exit img{ 
position: absolute;
width: 22px;
height: auto;
transition: .63s;
}
#pun-navlinks #New-exit:hover img{
transition: .63s;
 opacity: .42;
}
.punbb #pun-navlinks a#New-exit:before {
    content:none;
}
.punbb #pun-navlinks #form-login input{
text-align: center;
border: 1px solid #5D6755;
text-rendering: auto; 
color: #000000!important;  
margin-top: 4px!important;
margin-bottom: 3px!important;
border-radius: 5px; 
letter-spacing: 0.2; 
word-spacing: normal; 
text-transform: none; 
text-indent: 0px; 
text-shadow: none; 
display: inline-block!important; 
text-align: center;
box-sizing: border-box;
height:20px;
width:67px;
width: 110px;
padding: 4px;
font: normal normal 400 11px/normal Verdana!important; rgb(250, 255, 189)
background-color: rgba(250,255,189,.88);
}
.punbb #form-login #fld1:empty,#form-login #fld2:empty,
.punbb #form-login #fld1,#form-login #fld2{ 
background-color: #d4d4d4;
} 
.punbb #pun-navlinks #form-login input[type="submit"]{ 
margin: 13px 0 2px!important;
box-sizing: border-box;
height:26px;
width:67px;
font-size: 11px!important;
color: #ffffff !important;
background: #2c2c2c;
border: 1px outset rgba(161,172,152,.8)!important;
text-align: center;
padding: 0 12px!important;
border-radius: 13px;
font-family: Verdana!important;
font-weight: 700!important;
transition: all 0.5s ease-in-out 0s;
letter-spacing: 0.8;
cursor:pointer;

/*border: 2px outset #83693E!important; 
color:#565462!important;
font-weight:700!important; */
} 
.punbb #pun-navlinks #form-login input[type="submit"]:hover{
  opacity:0.6;
}

/*Стиль формы входа*/ 
.punbb #pun-navlinks #form-login { 
background: #EFEFEF;
min-height:183px;
border: 1px solid #626262;
border-radius: 0px 0px 6px 6px;
color: #000000;/*BCBCBC;*/
display: block;
font: 11px "Verdana";
left: 0px;
padding: 8px 12px;
margin: 1px 0;
position: absolute !important;
text-align: center;
word-spacing: normal;
white-space: normal;
/*text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.235);*/
text-transform: none;
letter-spacing: 0.2px!important; 
top: 6px;
width: 122px;
z-index: 100000!important;
}
#pun-navlinks #navlogin #form-login {
  margin-left: -30px;/*Подвижки формы влево от вход*/ 
} 
#pun-navlinks #navlogout #form-login { 
  margin-left: -30px;/*Подвижки формы влево от выход*/
} 
.ismoderator #pun-navlinks #navlogout #form-login {
  margin-left: -30px!important;/*Подвижки формы влево от выход для АМС*/
} 
/*Стиль ссылок в форме "Не зарегистрированы" и "Забыли пароль" */ 
#pun-navlinks #form-login input[value="Войти"]+p{ 
 margin: 11px 0;
} 
.punbb #pun-navlinks #form-login a.Rega, 
.punbb #pun-navlinks #form-login a.Forgot{ 
position:relative; 
text-transform: none!important; 
z-index:20; 
cursor:pointer; 
font: normal normal 200 10px/normal Verdana!important; 
letter-spacing: 0.4!important; 
display:inline;
background: none!important;
padding: 0 0 0 3px!important;
color: #76333C!important;
font-size: 9px!important;
/*text-shadow: 1px 1px 1px rgba(40, 52, 61, 0.39);*/
}
.punbb #pun-navlinks #form-login a.Rega:before, 
.punbb #pun-navlinks #form-login a.Forgot:before{
  content:none;
}
/* Помечаем красным незаполненные поля!*/ 
#form-login input.none{ 
outline:red dashed 2px!important; 
} 
/*Форма слева(с Никами) */ 
#List-UserNames { 
position:absolute; 
margin-top:-9px; 
min-height:90px; 
width:220px; 
right:100%; 
padding: 12px 19px 12px 17px; 
background: #EFEFEF;
border-color: #626262; /* Цвет границы */
border-style: solid; /* Стиль границы */
border-width: 1px 1px 1px 1px; /* Толщина границы */ 
border-radius:0 0 0px 6px;
text-align:center; 
/*box-shadow:inset 0.23em 0 3.4em rgba(20,20,11,.99);*/ 
} 
/*Стиль контейнера под список Ников*/ 
.punbb #List-UserNames ul{
padding: 0;
overflow:hidden; 
overflow-y:auto; 
min-height:36px; 
max-height:72px;/*Видимое число Ников без прокрутки! сейчас - 4*/ 
} 
.punbb #List-UserNames li {
display: block!important;
position: relative;
background: #2c2c2c;
text-transform:none!important;
text-align: left;
box-shadow: 2px 2px 1px rgb(149, 151, 143);
padding-left: 5px!important;
font: normal normal 700 12x/normal Verdana!important;
letter-spacing: 0.4;
margin: 1px auto!important;
padding: 2px 0;
transition: .33s;
}
.punbb #List-UserNames li:hover{ 
opacity:.84; 
/*background:#83693E!important;*/
} 
/*Стиль Ников*/ 
.punbb #List-UserNames li>b{ 
cursor: pointer;
opacity: .9;
color: #fffefe;;
text-shadow: 1px 1px 1px rgb(0, 0, 0);
letter-spacing: 0.3;
} 
.punbb #List-UserNames li>b:hover{ 
opacity:.93; 
text-shadow:1px 1px 1px rgba(0,0,0,.6); 
} 
/*Скролл контейнера с никами*/ 
#List-UserNames ul::-webkit-scrollbar { 
width: 3px; 
height: 5px; 
} 
#List-UserNames ul::-webkit-scrollbar-track { 
background-color: #393A38; 
border: 0px solid #d7d8d9; 
box-shadow: none; 
} 
#List-UserNames ul::-webkit-scrollbar-thumb {
background-color: #C0BFBD;
border: 0px solid #d7d8d9; 
box-shadow: none; 
} 

/*Кнопки Удалить (правее ников)*/ 
#List-UserNames ul li>span { 
display:inline-block; 
padding:0 3px; 
position:absolute; 

opacity:.88; 
cursor:pointer; 
top:0;bottom:0; 
right:2px; 
color:#fff; 
font: normal normal
 
700 10.56px/normal Verdana; 
text-shadow:1px 1px 1px rgba(0,0,0,.6); 
} 
/*Текст при отсутствии запомненных Ников!*/ 
#List-UserNames ul:empty:before{ 
display:inline-block; 
content: "У Вас нет запомненных ников, введенных через форму справа, или через перенос ниже!"; 
} 
/*Кнопка выход-2*/ 
#navlogin #exit-2 { 
display:none; 
} 
#pun:not(.isguest) #navlogout .Rega, 
#pun:not(.isguest) #navlogout .Forgot { 
display:none!important; 
} 
/*Стиль блока с инпутом для переноса и вставки запомненных Аккаунтов*/ 
#List-UserNames ul+span{ 
display:inline-block; 
padding:6px 0 8px 0; 
text-align:left; 
font: normal normal 400 10.56px/normal Verdana;
} 
/*Сам инпут*/ 
.punbb #List-UserNames input { 
border: 1px solid #5D6755!important; 
text-shadow: none!important; 
color:#333!important;
background-color: #D4D4D4;
font: normal normal 400 11px/normal Verdana!important; 
/* box-shadow: inset 0px 0px 3px rgba(100,102,80,.97); */ 
margin-top: 9px; 
padding: 2px !important; 
vertical-align: middle; 
} 
/*Стрелочки к инпуту*/ 
#List-UserNames ul+span b{ 
font: normal normal 400 13px/normal Verdana; 
padding:0 3px; 
color: #000000;
} 
/*Кликалка слева, чуть выше инпута*/ 
#List-UserNames .a1-copy{ 
display:inline-block!important; 
cursor:pointer; 
float:left; 
} 
/*Кликалка справа*/ 
#List-UserNames .a1-paste{ 
cursor:pointer; 
display:inline-block!important; 
float:right; 
} 
/*Подсказки на кликалках*/ 
.tipsy.a11 { 
font: normal normal 400 11px/normal Verdana!important; 
margin-top:-22px!important; 
margin-left: 148px!important; 
max-width:170px; 
} 
/************************* 
//Конец Стиля для Быстрой смены аккаунтов 
*************************/


/*****************
Стиль "Тихой Цитаты"
*****************/
.quiet-quote{
  position:relative;
  display: table;
  margin: 4px 15px 0px 19px!important; /*Отступы*/
  font-style: italic;
  font-size: 11px;
  color: #695f5f;
  /*text-align:justify;
  border:red solid 1px;*/
}
.quiet-quote>p{
  line-height:normal!important;
}
.quiet-quote:before, /*Шрифт, Цвет, Размер иконок*/
.quiet-quote:after{
  font-size: 17px;
  display: inline-block;
  position:absolute;
  z-index:1000;
  font-weight: 900;
  color: #695f5f; /*Цвет Кавычек*/
  font-family:System, Arial, sans-serif;
}
.quiet-quote:before{
  content: "\201C";  /*Код левой кавычки к Тихой цитате*/
  left:-2px;
  top:5px;
}
/* Cкрыл Правую кавычку
.quiet-quote:after{
  content: "\201D";  */  /*Код правой кавычки к Тихой цитате*/
  right: -15px;
  bottom: -20px;
}
/*************************
/END//Стиль "Тихой Цитаты"
*************************/
