/* Сворачивание цитат настройка by Kolobdur */

.quote-box {
  position: relative;
}

/* свернутая */
.quote-box.toggle > blockquote > .quote-body {
  overflow: hidden;
  max-height: 8.5em; /* < лимит высоты */
  position: relative;
  transition: max-height .8s ease;
}

/* затемнение */
.quote-box.toggle > blockquote > .quote-body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3em;
  background: linear-gradient(
    to bottom,
    rgba(161,158,148,0),
    rgba(186,182,168,.99)
  );
  pointer-events: none;
      opacity: 0.4;
}

/* развернуто */
.quote-box.expanded > blockquote > .quote-body {
  max-height: none;
}

.quote-box.expanded > blockquote > .quote-body::after {
  display: none;
}

/* переключатель */
.quote-after {
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 1.4em;
  line-height: 1.6em;
  user-select: none;
position: absolute;
    bottom: -20px;
}

.quote-after {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  height: 32px;
}

/* иконка */
.quote-after::before {
  font-family: 'Material Icons';
  color: #5b5243;
  content: "expand_more";   /* v */
  font-size: 28px;
  transition: transform .3s ease;
}

/* развернуто */
.quote-box.expanded > .quote-after::before {
  color: #475b43;
  content: "expand_less";   /* ^ */
}

#tooltip2 {
  position: fixed;               /* ВАЖНО */
   font-family: 'Trajan';
  font-size: 12px;
  font-weight: bold;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  color: #979385;
  text-shadow: 0px 0px 2px #000000;
  transition: opacity 0.8s ease;
  background: url(https://forumstatic.ru/files/001c/62/de/81010.jpg) repeat transparent;
  border: 1.4px solid rgba(116, 91, 66, 0.5);
  border-radius: 4px / 4px;
  box-shadow: inset rgba(0, 0, 0, 0.3) 0px 0px 5px, rgba(0, 0, 0, 0.1) 0px 0px 3px;
  padding: 4px 5px 2px 5px;
  pointer-events: none;
  z-index: 99999;
  display: none;
}

@media (pointer: coarse) { 
    #tooltip2 {
        display: none !important;
    }
}
