/******** Main Styles ********/

::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgb(131, 90, 66);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(148, 120, 120);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:active {
  background: rgb(222, 221, 214);
}


::selection {
  background: rgb(129, 97, 113);
  color: rgb(239, 231, 218);
}

::-moz-selection {
  background: rgb(129, 97, 113);
  color: rgb(239, 231, 218);
}

html .jGrowl-notification,
html .jGrowl-closer,
html .notification-spoiler {
  background: rgba(129, 97, 113, .9) !important;

  color: rgb(248, 236, 222);
}

html body .jGrowl-close,
html body .jGrowl-close:hover {
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  background-color: transparent !important;
  background-image: none !important;
  height: auto !important;
  line-height: auto !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

html .jGrowl-notification a,
html .jGrowl-closer a,
html .notification-spoiler a {
  text-shadow: none !important;
  color: rgb(248, 236, 222) !important;
}

html span.num_msg {
  margin-top: -6px;
  margin-left: -1px !important;
  background: rgb(129, 97, 113);
  color: rgb(248, 236, 222);
}

html span.num_msg::before {
  display: none;
}

html #notify-link .unreads,
html #navpm .unreads {
  box-shadow: none;
  background: rgb(129, 97, 113);
  color: rgb(248, 236, 222);
}

html .punbb span.GamePst,
html .punbb strong.GamePst2 {
  color: rgb(131, 90, 66) !important;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

.punbb span.GamePst:hover,
.punbb strong.GamePst2:hover {
  color: rgb(129, 97, 113) !important;
}

.user-avatar {
  display: block !important;
}

#pun-profile #profile-signature tr {
  display: table-row !important;
}

.prof.no-active #login {
  text-align: center;
  background-color: rgb(239, 231, 218) !important;
  background-image: url('https://i.imgur.com/KARMp1W.png');
  background-position: center;
  background-repeat: repeat-y;
  border: none;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, .18);
}

body.post-content::after {
  display: none;
}

iframe {
  position: relative;
  z-index: 1;
}

.post #post fieldset {
  padding: 35px 20px 0 0 !important;
}

.post-box #post fieldset legend span {
  display: none;
}


body {
  width: 100%;
  font-family: 'Fira Sans', sans-serif;
  font-size: 13px;
  line-height: 1.2;
  color: rgb(113, 86, 71);

  background-color: rgb(0, 0, 0);
}

#pun-admain fieldset .adfs-box {
  z-index: 1;
  position: relative;
}

.inputfield {
  position: relative;
  z-index: 1;
}

#styleSwitch {
  justify-content: flex-start;
}

#styleSwitch li {
  line-height: 39px;
}

#styleSwitch li#dark {
  margin-left: 5px;
}

p {
  position: relative;
  z-index: 1;
}

td {
  border: none;
}

a {
  color: rgb(131, 90, 66);
  text-decoration: none;
  font-weight: 500;
  text-shadow: 1px 1px 0 rgb(248, 236, 222);

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

a:hover {
  color: rgb(129, 97, 113);
}

.avatar-image {
  box-shadow: -1px 0 1px rgba(0, 0, 0, .3), inset 1px -1px 1px rgb(239, 231, 218);

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

hr {
  display: block;
  width: 100%;
  height: 25px !important;
  background: url('https://i.imgur.com/yyGdaue.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  border: none;

  opacity: .4 !important;
}


#floatbut {
  min-width: 32px;
}

.post-content em {
  font-style: normal;
  text-decoration: underline;
}

.isonline {
  background: rgb(147, 109, 130) !important;
  animation: pulse .9s linear infinite !important;
  -moz-animation: pulse .9s linear infinite !important;
  -webkit-animation: pulse 1s linear infinite !important;
}


table {
  position: inherit;
  width: 100%;
}

.section,
.formal {
  position: inherit;
}

.byuser {
  font-style: italic;
}

#form-buttons tr {
  display: table-row !important;
  padding: 0;
}

#form-buttons {
  position: relative;
  margin-top: 15px;
  z-index: 1;
}

#post-preview {
  margin-bottom: 15px;
}

#post-preview .fs-box {
  width: 625px;
  font-size: 14px;
  margin: 0 auto;
}

#post-preview .post-box {
  text-align: justify;
}


.flexbox {
  -js-display: flex;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Del text */

del {
  filter: blur(1px);

  text-decoration: none;

  border-radius: 3px;

  -webkit-transition: all ease-out 0.2s;
  -moz-transition: all ease-out 0.2s;
  -ms-transition: all ease-out 0.2s;
  -o-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}

del:hover,
del:focus,
del:active {
  filter: none;
  color: rgb(129, 97, 113);
}


/* Counter */

#plng {
  font-size: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}


/******** List ********/

.post-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 1em 0 !important;
}

.post-content .quote-box ul {
  margin-top: 0 !important;
}

.post-content .quote-box ul {
  margin-bottom: 0 !important;
}

.post-content ul li {
  position: relative;
  list-style: none !important;

  margin-bottom: 10px !important;
  padding-left: 18px;
}

.post-content ul li p:first-child {
  margin-top: 0;
}

.post-content ul li p:last-child {
  margin-bottom: 0;
}

.post-content ul li:last-child {
  margin-bottom: 0 !important;
}

.post-content ul li::before {
  position: absolute;

  content: '\f292';

  top: 0;
  left: 0;

  font-size: 13px;
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';

  z-index: 1;
}


/******** Button ********/

button,
.button,
#pun-profile #profile8 #sub4,
input[type="submit"],
#pun-admain .button,
#pun-profile #profile-left #pa-edit strong {
  position: relative;
  display: inline-block;

  font-family: 'Caveat', cursive !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  text-align: center;
  color: rgb(49, 36, 28);
  text-shadow: 1px 0 1px rgba(222, 221, 214, .3);

  height: 40px;
  background-color: rgba(141, 102, 81, .6);
  background-image: url("https://i.imgur.com/4bkTo6W.png");
  background-repeat: repeat;
  background-position: center;

  border: none;
  border-top: 1px solid rgba(97, 64, 53, 1);
  border-bottom: 1px solid rgba(97, 64, 53, 1);
  outline: none;
  border-radius: 3px;

  padding: 0 30px;
  margin-right: 0 !important;
  box-shadow: 1px 1px 0 rgba(91, 56, 35, 1), inset 1px 1px 0 rgba(222, 221, 214, .45), inset 0 -1px 0 rgba(222, 221, 214, .3);

  -webkit-appearance: none;
  cursor: pointer;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;

  box-sizing: border-box;
  z-index: 1;
}

#image-area-tcon-computer .button {
  padding: 0 15px;
}

button:nth-child(1),
.button:nth-child(1),
#pun-profile #profile8 #sub4:nth-child(1),
input[type="submit"]:nth-child(1),
#pun-admain .button:first-child,
.modmenu .container .button:nth-child(2),
#image-area-tcon-computer .button,
#pun-profile #profile-left #pa-edit strong,
#styleSwitch li.selected {
  background-color: rgb(113, 86, 71);
  background-image: url('https://i.imgur.com/PVr0tFb.png');
  color: rgb(59, 43, 34);
  box-shadow: 1px 1px 0 rgba(91, 56, 35, .95), inset 1px 1px 0 rgba(222, 221, 214, .4), inset 0 -1px 0 rgba(222, 221, 214, .3);
}

#styleSwitch li:nth-child(1) {
  background-color: rgba(141, 102, 81, 0.6);
  background-image: url("https://i.imgur.com/4bkTo6W.png");
  color: #31241c;
  box-shadow: 1px 1px 0 #5b3823, inset 1px 1px 0 rgba(232, 225, 212, 0.45), inset 0 -1px 0 rgba(232, 225, 212, 0.3);
}

#styleSwitch li.selected:nth-child(1) {
  background-color: #aa846e;
  background-image: url('https://i.imgur.com/PVr0tFb.png');
  color: #3b2b22;
  pointer-events: none;
  box-shadow: 1px 1px 0 rgba(91, 56, 35, 0.95), inset 1px 1px 0 rgba(222, 221, 214, .4), inset 0 -1px 0 rgba(232, 225, 212, 0.3);
}

button:hover,
.button:hover,
#pun-profile #profile8 #sub4:hover,
input[type="submit"]:hover {
  background-color: rgb(113, 86, 71) !important;
  background-image: url('https://i.imgur.com/PVr0tFb.png') !important;
  color: rgb(59, 43, 34);
  box-shadow: 1px 1px 0 rgba(91, 56, 35, .95), inset 1px 1px 0 rgba(222, 221, 214, .4), inset 0 -1px 0 rgba(222, 221, 214, .3);
}

button:nth-child(1):hover,
.button:nth-child(1):hover,
#pun-profile #profile8 #sub4:nth-child(1):hover,
input[type="submit"]:nth-child(1):hover,
#pun-admain .button:hover,
.modmenu .container .button:nth-child(2):hover,
#image-area-tcon-computer .button:hover,
#pun-profile #profile-left #pa-edit strong:hover {
  background-color: rgba(141, 102, 81, .6) !important;
  background-image: url("https://i.imgur.com/4bkTo6W.png") !important;
  color: rgb(162 141 113);
  text-shadow: 1px 0 1px rgb(53 38 32);
  box-shadow: 1px 1px 0 rgba(91, 56, 35, 1), inset 1px 1px 0 rgba(222, 221, 214, .45), inset 0 -1px 0 rgba(222, 221, 214, .3);
}

#styleSwitch li.selected:hover {
  background-color: #aa846e;
  background-image: url('https://i.imgur.com/PVr0tFb.png');
  color: #3b2b22;
  box-shadow: 1px 1px 0 rgba(91, 56, 35, 0.95), inset 1px 1px 0 rgba(222, 221, 214, .4), inset 0 -1px 0 rgba(232, 225, 212, 0.3);
  pointer-events: none;
}

#styleSwitch li:nth-child(1):hover {
  background-color: #aa846e !important;
  background-image: url('https://i.imgur.com/PVr0tFb.png') !important;
  color: #3b2b22;
  text-shadow: 1px 0 1px rgba(232, 225, 212, 0.3);
  box-shadow: 1px 1px 0 rgba(91, 56, 35, 0.95), inset 1px 1px 0 rgba(222, 221, 214, .4), inset 0 -1px 0 rgba(232, 225, 212, 0.3);
}

#styleSwitch li.selected:nth-child(1):hover {
  background-color: rgba(141, 102, 81, 0.6) !important;
  background-image: url("https://i.imgur.com/4bkTo6W.png") !important;
  color: #a28d71;
  text-shadow: 1px 0 1px #352620;
  box-shadow: 1px 1px 0 #5b3823, inset 1px 1px 0 rgba(232, 225, 212, 0.45), inset 0 -1px 0 rgba(232, 225, 212, 0.3);
}


/******** Fieldset ********/

fieldset {
  position: relative;

  border-radius: 5px;

  outline: none;
  border: none;

  margin: 0;
  padding: 30px 20px 20px;
}

fieldset::before {
  position: absolute;
  content: '';

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  background-color: rgba(182, 178, 175, .8);
  mix-blend-mode: color-burn;

  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
}

fieldset::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(236, 227, 213);
  background: linear-gradient(90deg, rgba(236, 227, 213, .5) 0%, rgba(223, 213, 196, .5) 76%, rgba(212, 201, 181, 0) 100%);
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
}

fieldset legend {
  position: absolute;
  top: 18px;

  color: rgb(113, 86, 71);
  font-family: 'Caveat', cursive;
  font-weight: 400;
  font-size: 15px;
  text-shadow: 1px 1px 1px rgba(221, 211, 188, 1);

  padding: 0;
  z-index: 1;
}

.form_bottom p {
  font-family: 'Caveat', cursive;
  font-size: 15px;
}

label {
  position: relative;
  display: inline-block;

  font-size: 13px;
  text-transform: lowercase;

  margin-bottom: 3px;
  z-index: 1;
}

.infofield {
  font-style: italic;
  font-size: 90%;
}


/******** Input, Textarea, Radio/Checkbox ********/

#s-block {
  width: 100%;
  align-items: center;
  justify-content: flex-start !important;
  margin-top: 15px;
}

#s-block i {
  border: none !important;
  font-size: 18px !important;
  height: 22px !important;
  width: 26px !important;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#s-block i:hover {
  color: rgb(129, 97, 113);
}

#s-block i::before {
  margin-top: 0 !important;
}

textarea,
input[type='text'],
input[type='password'],
input[type='search'],
input[name=author],
select {
  position: relative;

  font-size: 13px;
  font-family: 'Fira Sans', sans-serif;
  line-height: 1.2;
  color: rgb(113, 86, 71);

  width: auto;
  background-color: rgba(242, 232, 219, .5);

  border: 1px solid rgba(240, 233, 224, .7) !important;
  border-right: 1px solid rgba(240, 233, 224, .4) !important;
  border-bottom: none !important;
  outline: none;

  padding: 12px 15px;

  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: inset 0 2px 6px rgba(201, 186, 168, .8), 0 1px 0 rgba(255, 253, 250, .5), inset 0 -1px 0 rgba(226, 215, 204, 1), inset 1px 0 0 rgba(222, 203, 183, 1), inset -1px 0 0 rgba(222, 203, 183, 1);

  z-index: 1;
}

input[type='text'],
input[type='password'],
input[name=author],
input[type='search'] {
  border: 1px solid rgba(232, 218, 200, .7) !important;
  border-right: 1px solid rgba(230, 216, 197, .5) !important;
  border-bottom: none !important;
  box-shadow: inset 0 2px 4px rgba(201, 186, 168, .8), 0 1px 0 rgba(250, 236, 214, .5), inset 0 -1px 0 rgba(218, 200, 182, 1), inset 1px 0 0 rgba(222, 203, 183, 1), inset -1px 0 0 rgba(222, 203, 183, 1);
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: rgba(113, 86, 71, .4);

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
  color: rgba(113, 86, 71, .4);

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

textarea:-moz-placeholder,
input:-moz-placeholder {
  color: rgba(113, 86, 71, .4);

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: rgba(113, 86, 71, .4);

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder,
textarea:active::-webkit-input-placeholder,
input:active::-webkit-input-placeholder {
  color: rgba(113, 86, 71, 0);
}

textarea:focus::-moz-placeholder,
input:focus::-moz-placeholder,
textarea:active::-moz-placeholder,
input:active::-moz-placeholder {
  color: rgba(113, 86, 71, 0);
}

textarea:focus:-moz-placeholder,
input:focus:-moz-placeholder,
textarea:active:-moz-placeholder,
input:active:-moz-placeholder {
  color: rgba(113, 86, 71, 0);
}

textarea:focus:-ms-input-placeholder,
input:focus:-ms-input-placeholder,
textarea:active:-ms-input-placeholder,
input:active:-ms-input-placeholder {
  color: rgba(113, 86, 71, 0);
}

.radiofield br,
.checkfield br {
  display: none;
}

span.radio,
.checkfield {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

span.radio label,
.checkfield label {
  margin-left: 5px;
}

input[type='radio'],
input[type='checkbox'] {
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-color: rgb(234 219 200 / 50%);

  border: 1px solid rgb(228 217 202);
  border-radius: 2px;
  outline: none;

  margin: 5px;
  appearance: none;
  box-shadow: 0 0 0 1px rgb(202 183 172);
  cursor: pointer;
}

input[type='checkbox']:checked {
  background-image: url('https://forumstatic.ru/files/001a/be/80/42053.svg');
  background-repeat: no-repeat;
  background-position: center;
}

input[type='radio'] {
  border-radius: 50%;
}

input[type='radio']:checked {
  background-color: rgb(129, 97, 113);
}

span.radio label,
.checkfield label {
  cursor: pointer;
}

input[type='text'],
input[type='password'],
input[type='search'],
input[name=author],
select {
  height: 45px !important;
}

select {
  border-top: 1px solid rgba(236, 227, 217, .7) !important;

  box-shadow: 0 1px 3px rgba(184, 157, 117, .3), inset 0 1px 0 rgba(255, 254, 253, 1), inset 0 -1px 0 rgba(255, 252, 245, 1), inset 1px 0 0 rgba(255, 255, 255, 1), inset -1px 0 0 rgba(255, 255, 255, 1);
  cursor: pointer;
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;

  mix-blend-mode: multiply;
}

fieldset select {
  border-top: 1px solid rgba(214, 194, 171, .7) !important;
  border-right: 1px solid rgba(214, 194, 171, .7) !important;
  box-shadow: 0 1px 3px rgb(184 157 117 / 30%), inset 0 1px 0 rgb(242 228 214), inset 0 -1px 0 rgb(244 228 214), inset 1px 0 0 rgb(232 222 213), inset -1px 0 0 rgb(244 232 220);
}

select:hover {
  color: rgb(129, 97, 113);
}


/******** Quote/Code/Spoiler ********/

blockquote {
  position: inherit;
  margin: 0;
  z-index: 1;
}

.spoiler-box div {
  position: relative;
  background: none !important;
  padding-left: 25px !important;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;

  z-index: 1;
}

.spoiler-box div::before {
  position: absolute;
  content: '\f4d8';

  transform: translateY(-50%);
  top: 50%;
  left: 0;

  font-weight: 900;
  font-family: "Font Awesome 5 Free";

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

.spoiler-box .quote-box::before,
.spoiler-box blockquote div::before {
  content: '';
}

.spoiler-box blockquote div {
  padding-left: 0 !important;
}

.spoiler-box blockquote .quote-box {
  padding-left: 25px !important;
}

.spoiler-box div.visible::before {
  content: '\f070';
}

.spoiler-box div:hover,
.spoiler-box div.visible,
.spoiler-box div:hover::before {
  color: rgba(102, 90, 84, 1);
}

.spoiler-box div.visible:hover,
.spoiler-box div.visible:hover::before {
  color: rgb(129, 97, 113);
}

.spoiler-box blockquote {
  overflow: hidden !important;
  padding-top: 30px !important;
}

.spoiler-box blockquote::after {
  position: absolute;
  content: '';

  top: 15px;
  left: 0;

  width: 100%;
  background-image: none;
  border-top: 3px dashed rgba(202, 184, 159, 1);

  z-index: 0;
  pointer-events: none;
}

.spoiler-box .quote-box blockquote {
  padding-top: 0 !important;
}

.spoiler-box .quote-box blockquote::after {
  display: none;
}

blockquote::before,
.blockcode::before,
.quote-box::after,
.code-box::after,
.spoiler-box div::after {
  position: absolute;
  content: '';

  width: 30px;
  height: 33px;
  background-repeat: no-repeat;

  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

blockquote::before,
.spoiler-box div::after {
  bottom: -33px;
  right: -31px;
  background-image: url('https://i.imgur.com/obZVJPx.png');
}

blockquote::after,
.quote-box::after,
.code-box::after {
  top: -6px;
  left: -6px;
  background-image: url('https://i.imgur.com/o63LqOh.png');
  opacity: .8;
}

.blockcode::before {
  bottom: -8px;
  right: -6px;
  background-image: url('https://i.imgur.com/obZVJPx.png');
  opacity: .8;
}

.quote-box,
.code-box {
  margin: 1em 0;
}

.quote-box cite,
.code-box .legend {
  position: relative;
  display: block;

  font-weight: 500;
  color: rgb(131, 90, 66);
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;

  margin-bottom: 14px;
  z-index: 11;
}

.quote-box cite::before,
.code-box .legend::before {
  position: absolute;
  content: '';

  left: 0;
  bottom: -8px;

  width: 100%;
  border-bottom: 3px dashed rgb(214 196 172);

  z-index: 0;
  pointer-events: none;
}

.quote-box cite a,
.code-box .legend a {
  text-shadow: 1px 1px 0 rgba(248, 236, 222, .6);
}

.quote-box,
.code-box {
  position: relative;

  color: rgb(114, 78, 57);

  border-radius: 3px;

  padding: 25px;
  box-sizing: border-box;
}

.quote-box::before,
.code-box::before {
  position: absolute;
  content: '';

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  background-color: rgba(182, 178, 175, .8);
  mix-blend-mode: color-burn;

  border-radius: 3px;
  pointer-events: none;
  z-index: 0;
}

.quote-box .quote-box::before,
.quote-box .code-box::before {
  background-color: rgba(239, 233, 220, .3);
}

.quote-box p:first-child {
  margin-top: 0;
}

.quote-box p:last-child {
  margin-bottom: 0;
}

.code-box pre {
  position: relative;

  font-size: 13px;
  font-family: 'Noto Sans Mono', monospace;

  margin: 0;
  padding: 0 10px 10px 0;

  z-index: 1;
}

.code-box .scrollbox {
  height: auto !important;
  max-height: 150px;
  overflow: auto;
}


/******** Size Text/Volume ********/

#volume-set {
  -js-display: flex;
  display: flex;
  align-content: flex-start;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

#volSlider,
#fntSlider {
  position: relative;
  display: inline-block;

  width: 100px;
  height: 9px !important;
  background: rgba(231, 223, 211, 1) !important;
  background: linear-gradient(90deg, rgba(231, 223, 211, 1) 0%, rgba(197, 181, 158, 1) 100%) !important;

  border-radius: 5px !important;
  border: none !important;

  margin-top: 0 !important;
  margin-left: 1em;

  float: right;
  box-shadow: 1px 1px 0 rgba(248, 236, 222, .5) !important;
}

#volSlider .before,
#fntSlider .before {
  height: 9px !important;
  background: rgb(148, 120, 120) !important;

  border: none !important;
  border-radius: 5px 0 0 5px !important;

  margin-top: 0 !important;
}

#volSlider .thumb,
#fntSlider .thumb {
  position: absolute !important;
  display: inline-block;

  top: 0 !important;
  left: 0;

  width: 6px !important;
  height: 9px !important;
  background: rgb(131, 90, 66) !important;
  border: none;
  border-radius: 0 !important;

  margin-left: -5px;
  box-shadow: none !important;
  cursor: pointer;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#volSlider .thumb:hover,
#fntSlider .thumb:hover {
  background: rgb(232, 225, 212) !important;
}


/******** Arrows ********/

.arrow_top_bottom {
  width: 1100px;
  position: fixed;
  height: 100%;
  margin: 0 auto;
  top: 105px;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.arrow_top_bottom .go-up,
.arrow_top_bottom .go-down {
  position: absolute;
  top: 30%;
  right: 0;

  width: 36px;
  height: 44px;

  pointer-events: all;
  z-index: 99999;
}

.arrow_top_bottom .go-up::before,
.arrow_top_bottom .go-down::before {
  position: absolute;

  top: 0;
  right: 0;

  font-family: "Font Awesome 5 Free";
  font-size: 32px;
  text-shadow: 1px 1px 0 rgb(208, 194, 176);

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

.arrow_top_bottom .go-up::before {
  content: "\f186";
  font-weight: 900;
}

.arrow_top_bottom .go-down {
  top: calc(30% + 50px);
}

.arrow_top_bottom .go-down::before {
  content: "\f186";

  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: fliph;
  filter: fliph;
}

.arrow_top_bottom .go-up:hover,
.arrow_top_bottom .go-down:hover {
  cursor: pointer;
}

.arrow_top_bottom .go-up:hover::before,
.arrow_top_bottom .go-down:hover::before {
  color: rgb(129, 97, 113);
}


/******** Tooltip ********/

#easyTooltip {
  max-width: 300px;
  background: rgba(129, 97, 113, .9);

  color: rgb(248, 236, 222);
  font-size: 12px;
  font-weight: 300;
  font-family: 'Fira Sans', sans-serif;

  border-radius: 2px;

  padding: 4px 8px;

  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  box-shadow: 0 0 5px rgba(0, 0, 0, .3);

  z-index: 9999999;
  opacity: 1;
}

body .tipsy {
  opacity: 1 !important;
  font-weight: 300;
  font-family: 'Fira Sans', sans-serif !important;
}

body .tipsy a {
  text-shadow: none;
  font-width: 300;
  font-size: 12px;
}

body .tipsy a::before {
  display: none;
}

body .tipsy td {
  text-transform: uppercase;
  font-size: 9px;
  color: rgb(239, 231, 218);
}

body .tipsy p {
  line-height: 1;
  text-transform: none;
  font-size: 90%;
  color: rgb(239, 231, 218);
}

body .tipsy p:hover {
  text-decoration: none;
  opacity: .8;
}

body .tipsy-inner {
  background: rgba(129, 97, 113, .9);
  color: rgb(239, 231, 218);

  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

body .tipsy-arrow,
body .tipsy-s .tipsy-arrow,
body .tipsy-se .tipsy-arrow {
  border-color: rgba(129, 97, 113, .9) transparent rgba(129, 97, 113, .9);
}

body .tipsy-e .tipsy-arrow {
  border-color: transparent rgba(129, 97, 113, .9) transparent;
}

body .tipsy-w .tipsy-arrow {
  border-color: transparent rgba(129, 97, 113, .9) transparent;
}


/******** Tags Form ********/

#table-area p {
  -js-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

#table-area label {
  margin-bottom: 0;
}

#table-area table {
  position: relative;
}

#table-area tr {
  display: table-row;
}

#form-buttons td {
  width: 35px;
  opacity: .8;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#form-buttons td:hover {
  opacity: 1;
}

#image-area-tcon-computer tr {
  align-items: flex-start;
  padding: 0;
}

#image-area-tcon-computer tr::before {
  display: none;
}

#image-area-tcon-computer::after {
  outline: 2px dashed rgb(208, 194, 176) !important;
}

#image-area-tcon-computer::before {
  color: rgb(191, 167, 143) !important;
}

#image-area-tcon-computer #imageupload-left {
  width: 175px;
}

#image-area-tcon-computer #imageupload-right {
  width: calc(100% - 175px);
}

#image-area-tcon-computer img {
  display: inline-block;
  object-fit: cover
}


/******** Hide blocks ********/

.divider,
.section h2,
.title-logo,
#pun-main h1,
.crumbs strong:first-child,
.acchide,
.forum h2,
#pun-viewforum thead,
.stickytext,
.closedatafield,
.container tr .tcr br,
#pun-userlist h2,
#pun-viewtopic h2,
#pun-live-rusff,
ul li.pa-ua,
.pa-author img,
.pa-gifts,
.pa-awards,
.pl-reports,
.sharelink,
#navawards,
#profile-gifts,
.profile-item-awards,
.pa-reg,
.polltext,
.post-author .fld-name,
.lastedit,
.post-sig dt,
#button-smile,
#button-files_rusff,
#button-graffiti_rusff,
#profilenav li.item9,
li#pa-awards,
li#pa-gifts,
#pun-ulinks ul li.item9,
#profilenav li.item12,
#pun-ulinks ul li.item5,
.pl-share {
  display: none !important;
}


/******** Admin ********/

#pun-admain {
  overflow: hidden;
  padding-left: 0 !important;
}

#pun-admain #pun-adnav {
  margin-left: 0 !important;
  margin-top: 22px;
}

#pun-admain fieldset legend {
  position: inherit;
  text-shadow: none;
  top: 0;
}

#pun-admain .subforums .handle {
  border-left-width: 18em !important;
}

#pun-admain .adformal {
  margin-left: 15em !important;
  margin-top: 22px !important;
}

#pun-admain .adlabel {
  width: 12em !important;
  margin-left: -14em !important;
  font-size: 11px;
}

#pun-admain fieldset .handle, #pun-admain fieldset p {
  border-left-width: 12em !important;
}

#pun-admain span.adsubmit {
  left: -9.5em !important;
}

#pun-admain a {
  color: rgb(131, 90, 66) !important;
}

#pun-admain a:hover {
  color: rgb(129, 97, 113) !important;
}


/******** Footer ********/

.punbb-admin #pun-about::before {
  position: absolute;
  content: '';

  top: -116px;
  left: -57px;

  width: 1007px;
  height: 160px;
  background-image: url('https://i.imgur.com/Afg4vGb.png');
}

#pun-about::after {
  position: absolute;
  content: '';

  top: -103px;
  left: -54px;

  width: 1001px;
  height: 145px;

  box-shadow: -2px 0 0 rgba(226, 212, 195, .4), 2px 0 0 rgba(226, 212, 195, .5), -10px 10px 10px rgba(rgb(59, 43, 34), .3), 10px 10px 10px rgba(rgb(59, 43, 34), .3);
}

.footer {
  position: absolute;

  width: 1004px;
  height: 160px;

  margin-left: -52px;
  margin-top: -14px;

  box-sizing: border-box;
  z-index: 2;
}

.footer::before {
  position: absolute;
  content: '';

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  background-image: url('https://i.imgur.com/Afg4vGb.png');
  pointer-events: none;
}

.footer::after {
  position: absolute;
  content: '';
  top: 12px;
  left: 3px;
  right: 0;
  width: 90.5%;
  height: 92%;
  background: rgb(96, 71, 60);
  pointer-events: none;
  z-index: -1;
  margin: auto;
}

.footer_wrap {
  -js-display: flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 892px;
  margin: 0 auto;
  padding-top: 60px;
}

.footer_banners {
  -js-display: flex;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;

  width: 562px;
  max-height: 65px;

  overflow-y: scroll;
  z-index: 2;
}

.footer_info {
  width: 258px;
}

.footer_info h3,
#pun-viewtopic .footer_info h3 {
  position: relative;
  left: auto !important;
  width: 100% !important;
  font-size: 24px;
  color: rgb(147 100 81);
  line-height: 1;
  text-transform: uppercase;
  mix-blend-mode: difference;
  font-family: 'Francois One', sans-serif;
  padding: 0;
  margin: 1em 0;
  top: 0;
}

.footer_info h3 span,
#pun-viewtopic .footer_info h3 span {
  font-size: 14px;
  color: rgb(160, 110, 90);
  display: block;
}

.footer_banners::-webkit-scrollbar {
  width: 4px;
  height: 8px;
}

.footer_banners img {
  margin: 0 2px;
  opacity: .5;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

.footer_banners img:hover {
  opacity: .9;
}


/******** Table ********/

#pun-title {
  position: absolute;
  top: -306px;
  left: 0;
  right: 0;

  width: 1002px;
  height: 306px;
  background-image: url('https://i.imgur.com/kdGyNgU.png');
  background-position: center;
  background-repeat: no-repeat;

  border-bottom: 1px solid rgb(32, 21, 12);

  box-shadow: -2px 0 0 rgba(226, 212, 195, .4), 2px 0 0 rgba(226, 212, 195, .5), -10px -10px 10px rgba(rgb(59, 43, 34), .3), 10px -10px 10px rgba(rgb(59, 43, 34), .3);

  margin: 0 auto;
  z-index: 1;
}

#pun-title::before,
#pun-title::after {
  position: absolute;
  content: '';
  background-repeat: no-repeat;

  z-index: 2;
  pointer-events: none;
}

#pun-title::before {
  bottom: -20px;

  width: 1000px;
  height: 98px;
  background-image: url('https://i.imgur.com/F7NsJge.png');
}

#pun-title::after {
  top: 0;
  right: 147px;

  width: 523px;
  height: 265px;
  background-image: url('https://i.imgur.com/55ANiRp.png');
}

.table {
  position: absolute;

  top: -335px;
  left: -13px;

  width: 929px;
  height: 250px;
}

.table .table_section::before {
  position: absolute;
  content: '';
  top: 2px;
  left: 0;
  right: 0;
  width: 98%;
  height: 303px;
  background: rgb(96, 71, 60);
  pointer-events: none;
  z-index: -1;
  margin: auto;
}

.table::before,
.table::after {
  position: absolute;
  content: '';

  background-repeat: no-repeat;

  z-index: 1;
  pointer-events: none;
}

.table::before {
  top: 0;
  left: 0;

  width: 242px;
  height: 152px;
  background: url('https://i.imgur.com/Vz0BXq2.png');
}

.table::after {
  bottom: 0;
  right: 0;

  width: 252px;
  height: 211px;
  background: url('https://i.imgur.com/o81y0mc.png');
}


/* Top */

.table .top {
  position: relative;

  -js-display: flex;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;

  padding-right: 15px;
  padding-top: 20px;
}

.table .top::after {
  position: absolute;
  content: '———————————————';

  bottom: -15px;
  left: 215px;

  font-size: 36px;
  color: rgb(171, 120, 100);
  font-family: 'Francois One', sans-serif;

  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 2;
}

.table .top .need,
.table .top .links {
  -js-display: flex;
  display: flex;
  width: 500px;
  z-index: 1;
}

.table .top .need a {
  position: relative;
  display: block;
  height: 35px;
  line-height: 1;
  margin-right: 6px;
  opacity: .5;
}

.table .top .need a:last-child {
  margin-right: 0;
}

.table .top .need a::before {
  position: absolute;
  content: '';

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  background: rgba(56, 30, 16, 1);

  mix-blend-mode: overlay;
  pointer-events: none
}

.table .top .need a:hover {
  opacity: 1;
}

.table .top .links {
  z-index: 2;
}

.table .top .links p {
  font-size: 14px;
  margin-top: 8px;
  margin-right: 15px;
}

.table .top .links p:last-child {
  margin-right: 0;
}

.table .top .links a {
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(78, 59, 47, 1);
  text-shadow: 1px 1px 0 rgba(255, 205, 182, .25);
}

.table .top .links a:hover {
  color: rgb(92, 67, 54);
}


/* Bottom */

.table .bottom {
  position: relative;

  -js-display: flex;
  display: flex;
  width: 750px;

  padding-left: 35px;
  padding-top: 13px;
}

.table .bottom h1 {
  position: relative;
  width: 262px;

  font-family: 'Francois One', sans-serif;
  text-transform: uppercase;
  font-size: 64px;
  color: rgb(149, 99, 72);
  line-height: .9;

  mix-blend-mode: difference;
  margin: 0;
  z-index: 1;
}

.table .bottom h1::before {
  position: absolute;
  content: 'âî ôðàíöóçñêîé äåðåâíå';

  bottom: 20px;
  right: 7px;

  font-family: 'Fira Sans', sans-serif;
  font-size: 11.9px;
  font-weight: 700;
  color: rgb(158, 108, 88);
}

.table .bottom h1 a {
  text-shadow: none;
  color: rgb(149, 99, 72);
}

.table .bottom h1 a:hover {
  color: rgb(160, 110, 90);
}

.table .bottom h1 .here {
  color: rgb(160, 110, 90);
}

.table .bottom h1 .cross {
  position: relative;
  display: block;
  font-size: 36px;
  color: rgb(171, 120, 100);
}

.table .bottom h1 .cross::after {
  position: absolute;
  content: '–————–';

  transform: translateY(-50%);

  top: 50%;
  right: 7px;

  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  color: rgb(162, 113, 94);
}

.table .bottom p {
  flex-grow: 1;
  width: 185px;

  font-weight: 300;
  color: rgb(116, 105, 91);
  mix-blend-mode: screen;
  text-shadow: 0 -1px 0 rgb(0, 0, 0);

  padding-left: 20px;
  margin: 9px 0 0;
}

.table .bottom .bottom__right {
  -js-display: flex;
  display: flex;
  justify-content: space-between;

  width: 165px;
  margin-top: -5px;
}

.table .bottom .bottom__right a {
  position: relative;
  display: block;
  line-height: 1;
  z-index: 2;
}

.table .bottom .bottom__right a::before {
  position: absolute;
  content: '';

  top: 0;
  left: 0;

  width: 75px;
  height: 75px;
  background: rgb(92, 67, 54);
  border-radius: 50%;

  mix-blend-mode: overlay;
  pointer-events: none;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

.table .bottom .bottom__right a:hover::before {
  opacity: .8;
  mix-blend-mode: none;
}


/******** Bookmarks ********/

#MyBookmarks {
  z-index: 999999 !important;
}

#MyBookmarks .flowers {
  width: 281px;
  top: -37px;
  left: -1px;
}

#MyBookmarks .flowers::before {
  left: -112px;
  top: -17px;
  width: 160px;
  height: 155px;
  transform: rotate(170deg);
}

#MyBookmarks .flowers::after {
  top: 5px;
  right: -80px;
  width: 160px;
  height: 145px;
  transform: rotate(259deg);
}


#BookmCntToggle.default-style {
  background: none !important;
  border-left: none !important;
  box-shadow: none !important;
  color: transparent !important;
  opacity: 1 !important;
}

#MyBookmarks h2, #MyBookmarks h1 {
  display: block;
  margin-top: 0;
  text-align: left !important;
  padding-left: 0 !important;
}

#MyBookmarks #bm2 {
  right: -9px !important;
  border-color: transparent !important;
}

#MyBookmarks span.scrl {
  color: transparent !important;
  text-shadow: none !important;
  padding-top: 0 !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
  border: none;
  height: 32px;
  margin: 0 !important;
  mix-blend-mode: color-burn;
}

#MyBookmarks span.scrl.b {
  border-left: none;
}

#MyBookmarks span.scrl.b {
  position: relative;
}

#MyBookmarks span.scrl.b::after {
  position: absolute;
  content: '';
  bottom: -5px;
  right: -32px;
  width: 200px;
  border-top: 3.5px dashed rgb(86, 85, 85);
}

#MyBookmarks span.scrl.b span {
  transform: none !important;
}

#MyBookmarks inner {
  padding-top: 45px !important;
}

#MyBookmarks li span strong {
  position: relative;
  color: transparent !important;

  mix-blend-mode: color-burn;
}

#BookmCntToggle.default-style::before,
#MyBookmarks #bm2::before,
#MyBookmarks span.scrl span::before,
#MyBookmarks li span strong::before {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;

  height: auto !important;
  width: auto !important;
  background: none !important;

  text-shadow: 1px 1px 0 rgb(239, 231, 218);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#BookmCntToggle.default-style::before {
  content: "\f02e" !important;
  color: rgb(113, 86, 71);
  font-size: 28px;
}

#MyBookmarks #bm2::before {
  content: "\f00d" !important;
  left: auto;
  right: -10px;
  margin-top: 1px;
  font-size: 18px;
}

#MyBookmarks li span strong::before {
  content: "\f00d" !important;
  left: auto;
  right: 8px;
  margin-top: 2px;
  font-size: 12px;
  color: rgb(32, 21, 12) !important;
}

#MyBookmarks span.scrl span::before {
  content: "\f077" !important;
  right: 0;
  color: rgb(32, 21, 12) !important;
  font-size: 13px;
  margin: 0 auto;
}

#MyBookmarks span.scrl.b span::before {
  content: "\f078" !important;
}

#BookmCntToggle.default-style:hover::before {
  color: rgb(129, 97, 113);
}

#MyBookmarks #bm2:hover::before,
#MyBookmarks span.scrl:hover span::before,
#MyBookmarks li span strong:hover::before {
  color: rgb(129, 97, 113) !important;
}

#MyBookmarks {
  width: 280px !important;
  background-color: rgb(239, 231, 218) !important;
  background-image: url('https://i.imgur.com/KARMp1W.png');
  background-position: center;
  background-repeat: repeat-y;

  border: none;
  border-radius: 0;

  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, .18);
}

#MyBookmarks .container {
  margin-top: 0 !important;
}

#MyBookmarks li.BookmarkL > span > dd {
  left: 260px !important;
}

#MyBookmarks li.BookmarkL em.e1 {
  background: rgba(129, 97, 113, .9) !important;
  color: rgb(239, 231, 218) !important;
  font-style: normal;
}

.punbb #MyBookmarks li.BookmarkL > span em {
  background: rgba(129, 97, 113, .9) !important;
  color: rgb(239, 231, 218) !important;
  font-style: normal;
}

li.BookmarkL em.e1::before {
  border-color: transparent rgba(129, 97, 113, .9) transparent transparent !important;
}

#MyBookmarks li {
  border-bottom-style: none !important;
  border-bottom-width: 0 !important;
  border-bottom-color: transparent !important;
  margin-bottom: 0;
}

#MyBookmarks li > span {
  padding: 0 !important;
}

#MyBookmarks li a::before {
  display: none;
}

.post .bookmark.ncnfrm {
  color: rgba(191, 167, 143, .5) !important;
}

.punbb #MyBookmarks em a {
  text-shadow: none;
  color: #f8f5ea !important;
}

.post .bookmark {
  right: -35px !important;
  color: rgb(129, 97, 113) !important;
  cursor: pointer;
}


/* Textarea Buttons */

#form-buttons tr::before {
  display: none;
}

#form-buttons td {
  position: relative;

  background: none !important;
}

#form-buttons td::before {
  position: absolute;

  transform: translateY(-50%);
  top: 50%;
  left: 0;
  right: 0;

  height: auto;
  background-color: transparent;

  font-size: 14px;
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  text-align: center;
  color: rgb(131, 90, 66);

  margin: 0 auto;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;

  pointer-events: none;
}

#form-buttons td:hover::before,
#form-buttons #button-image:hover b p {
  color: rgb(129, 97, 113);
}

#form-buttons #button-font::before {
  content: '\f031';
}

#form-buttons #button-size::before {
  content: '\f034';
}

#form-buttons #button-bold::before {
  content: '\f032';
}

#form-buttons #button-italic::before {
  content: '\f033';
}

#form-buttons #button-underline::before {
  content: '\f0cd';
}

#form-buttons #button-strike::before {
  content: '\f0cc';
}

#form-buttons #button-indent::before {
  content: '\f03c';
}

#form-buttons #button-left::before {
  content: '\f036';
}

#form-buttons #button-center::before {
  content: '\f037';
}

#form-buttons #button-right::before {
  content: '\f038';
}

#form-buttons #button-link::before {
  content: '\f0c1';
}

#form-buttons #button-spoiler::before {
  content: '\f518';
}

#form-buttons #button-image::before {
  content: '\f302';
}

#form-buttons #button-image b p {
  top: 6px;
  right: 0;

  color: rgb(131, 90, 66);
  margin: 0 !important;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#form-buttons #button-video::before {
  content: '\f144';
}

#form-buttons #button-hide::before {
  content: '\f070';
}

#form-buttons #button-quote::before {
  content: '\f27a';
}

#form-buttons #button-code::before {
  content: '\f121';
}

#form-buttons #button-color::before {
  content: '\f53f';
}

#form-buttons #button-table::before {
  content: '\f84c';
}

#form-buttons #button-sticker::before {
  content: '\f4da';
}

#form-buttons #button-keyboard::before {
  content: '\f11c';
}

#form-buttons #button-addition::before {
  content: '\f150';
}

#form-buttons #button-mask::before {
  content: '\f630';
}

#post .areafield .input > span {
  position: relative;
  right: -26px !important;
}

#post .areafield .input > span img,
#image-source-list img {
  opacity: 0;
}

#post .areafield .input > span::before {
  position: absolute;

  content: '\f0e2';

  transform: translateY(-50%);
  top: 50%;
  right: -22px;

  font-size: 14px;
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  text-align: center;
  color: rgb(131, 90, 66);

  margin: 0 auto;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#post .areafield .input > span:hover::before {
  color: rgb(129, 97, 113);
}

.post-box #post .areafield .input > span::before {
  right: -18px;
}

.post-box #post {
  margin-top: 1em !important;
}

.post-box #post fieldset legend {
  -js-display: flex;
  display: flex;
  justify-content: space-between;
  width: 94%;
  z-index: 1;
}

html .hvStickerPackModal {
  background-color: rgb(239, 231, 218);
  background-image: url('https://i.imgur.com/KARMp1W.png');
  background-position: center;
  border-radius: 5px;
  border: none;

  padding: 15px !important;
  box-sizing: border-box;

  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

html .hvStickerPackModalContent {
  border: none;
}

html .hvStickerPackItem {
  position: relative;
}

html .hvStickerPackItem::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(208, 194, 176, .3);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}

html .hvStickerPackModalTab {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  border-radius: 5px;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  background: rgba(208, 193, 168, .5);

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

html .hvStickerPackModalTab:hover,
html .hvStickerPackModalTab.active {
  background: rgba(164, 131, 147, .5);
}

html .hvStickerPackModalTab.active {
  background: rgba(86, 26, 55, .5);
  color: rgb(208, 194, 176);
}

#post #tags .container {
  display: block;

  top: 75px !important;
  right: 26px !important;

  background-color: rgb(239, 231, 218);
  background-image: url('https://i.imgur.com/KARMp1W.png');
  background-position: center;
  border-radius: 5px;

  padding: 15px !important;
  box-sizing: border-box;

  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

#image-source-list img {
  opacity: 1;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#image-source-list img:hover {
  opacity: .6;
}

#t-imgur #my-imgur {
  width: 235px !important;
  font-size: 12px !important;
  border: 2px solid rgba(94, 108, 88, 1) !important;
  margin-left: 10px !important;
  margin-top: 10px !important;
  border-radius: 5px;
}

#t-imgur td:first-child {
  padding-right: 17px;
}

#t-imgur td:nth-child(2) {
  padding-top: 10px;
}

#table-area tr {
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
  border-radius: 0;
}

#tags #table-area tr::before {
  display: none;
}

#tags #table-area td {
  background: rgba(208, 194, 176, .3) !important;
  mix-blend-mode: multiply;
  border-color: rgba(148, 114, 92, .5) !important;
  border-right: none !important;
  border-bottom: none !important;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#tags #table-area td:last-child {
  border-right: 1px solid rgba(110, 94, 80, .2) !important;
}

#tags #table-area tr:last-child td {
  border-bottom: 1px solid rgba(110, 94, 80, .2) !important;
}

#tags #table-area td:hover,
#tags #table-area td.selected {
  background: rgba(144, 99, 59, .3) !important;
}

#keyboard-span input {
  background-color: rgba(144, 122, 59, .08) !important;

  font-family: 'Fira Sans', sans-serif !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  color: rgba(125, 103, 84, 1) !important;

  border: none !important;
  border-radius: 5px;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#keyboard-span input:nth-child(95) ~ * {
  display: none;
}

#keyboard-span input:hover {
  background: rgb(129, 97, 113) !important;
  color: rgb(239, 231, 218) !important;
}

#addition-area span,
#addition-area div,
#size-area span,
#font-area span {
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#addition-area span:hover,
#addition-area div:hover,
#size-area div:hover span,
#font-area div:hover span {
  color: rgb(129, 97, 113);
}

#video-area-tinp, #image-area-tinp {
  border: none !important;
}

#imageupload-left {
  width: 205px !important;
}

#image-area-tcon-computer #imageupload-right {
  max-width: 305px !important;
  width: 305px !important;
}

#imageQueue .uploadQueueItem {
  background: rgba(191, 167, 143, .2) !important;
  border: none !important;
}

#imageQueue .uploadQueueItem .uploadProgress {
  background: rgb(129, 97, 113) !important;
}

#imageQueue .uploadQueueItem .uploadProgress .uploadProgressBar {
  background: rgba(191, 167, 143, .4) !important;
}

.cancel a::before {
  display: none;
}

#uploaded-images img {
  border: none !important;

  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

#uploaded-images img:hover {
  opacity: .6;
}


/* Sign */

.post-sig {
  position: relative;
  font-size: 85%;
  padding-top: 25px;
  z-index: 1;
}

.post-sig dd,
.parsedsig dd {
  margin-left: 0;
}

.post-sig::before {
  position: absolute;
  content: '';
  top: 0;

  width: 200px;
  height: 25px !important;
  background: url('https://i.imgur.com/yyGdaue.png');
  background-position: 0;
  background-size: cover;
  background-repeat: no-repeat;

  opacity: .4 !important;
}


/******** History ********/

.history_posts_list tr::before {
  border-radius: 5px !important;
}

.history_posts_list th,
.history_posts_list td {
  width: 20%;
  z-index: 1;
}

.history_posts_list th:first-child,
.history_posts_list td:first-child {
  width: 10%;
  text-align: left;
}

.history_posts_list th:last-child,
.history_posts_list td:last-child {
  width: 10%;
  text-align: right;
}

.history_posts_list td:first-child:last-child {
  width: 100%;
}


@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(248, 236, 222, .4);
    box-shadow: 0 0 0 0 rgba(248, 236, 222, .4);
    opacity: 1.0
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(147, 109, 130, 0);
    box-shadow: 0 0 0 10px rgba(147, 109, 130, 0);
    opacity: .3
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(147, 109, 130, 0);
    box-shadow: 0 0 0 0 rgba(147, 109, 130, 0);
    opacity: 1.0
  }
}

@-moz-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(248, 236, 222, .4);
    box-shadow: 0 0 0 0 rgba(248, 236, 222, .4);
    opacity: 1.0
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(248, 236, 222, 0);
    box-shadow: 0 0 0 10px rgba(248, 236, 222, 0);
    opacity: .3
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(248, 236, 222, 0);
    box-shadow: 0 0 0 0 rgba(248, 236, 222, 0);
    opacity: 1.0
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(248, 236, 222, .4);
    box-shadow: 0 0 0 0 rgba(248, 236, 222, .4);
    opacity: 1.0
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(248, 236, 222, 0);
    box-shadow: 0 0 0 10px rgba(248, 236, 222, 0);
    opacity: .3
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(248, 236, 222, 0);
    box-shadow: 0 0 0 0 rgba(248, 236, 222, 0);
    opacity: 1.0
  }
}

#post #mentions-area {
    background-color: #eee6db !important;
    background-image: url(https://i.imgur.com/2y2Iurq.png);
    background-position: center;
    border-radius: 5px;
    padding: 5px !important;
}

#post #mentions-area table {
  position: relative;
}

#post #mentions-area tr {
  margin-bottom: 3px;
  padding: 0;
}

#post #mentions-area tr td {
  width: 100%;
  padding: 5px;
  height: auto !important;
}



#post #mentions-area tr td:hover {
  width: 100%;
  background: rgba(179, 143, 81, .1) !important;
}

#mentions-area .post-mentions-item:hover div {
  background: none !important;
}