<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tooltip-container {
  max-width: calc(100vw - 15px); }
  .tooltip-container .tippy-box {
    position: relative;
    background-color: #000;
    color: #fff;
    border-radius: 4px;
    line-height: 1.4;
    outline: 0;
    transition-property: transform, visibility, opacity; }
    .tooltip-container .tippy-box {
      font-size: 14px; }
    .tooltip-container .tippy-box[data-animation=fade][data-state=hidden] {
      opacity: 0; }
    .tooltip-container .tippy-box[data-animation='bounce'][data-state='visible'] {
      -webkit-animation-name: bounceIn;
              animation-name: bounceIn;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      -webkit-animation-fill-mode: both;
              animation-fill-mode: both;
      -webkit-animation-timing-function: ease;
              animation-timing-function: ease; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3); }
  50% {
    opacity: 1;
    transform: scale(1.05); }
  70% {
    transform: scale(0.9); }
  100% {
    transform: scale(1); } }

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3); }
  50% {
    opacity: 1;
    transform: scale(1.05); }
  70% {
    transform: scale(0.9); }
  100% {
    transform: scale(1); } }
    .tooltip-container .tippy-box[data-animation='bounce'][data-state='hidden'] {
      -webkit-animation-name: bounceOut;
              animation-name: bounceOut;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      -webkit-animation-fill-mode: both;
              animation-fill-mode: both;
      -webkit-animation-timing-function: ease;
              animation-timing-function: ease; }

@-webkit-keyframes bounceOut {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(0.95); }
  50% {
    opacity: 1;
    transform: scale(1.1); }
  100% {
    opacity: 0;
    transform: scale(0.3); } }

@keyframes bounceOut {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(0.95); }
  50% {
    opacity: 1;
    transform: scale(1.1); }
  100% {
    opacity: 0;
    transform: scale(0.3); } }
    .tooltip-container .tippy-box[data-placement^=top] &gt; .tippy-arrow {
      bottom: 0; }
      .tooltip-container .tippy-box[data-placement^=top] &gt; .tippy-arrow:before {
        bottom: -7px;
        left: 0;
        border-width: 8px 8px 0;
        border-top-color: initial;
        transform-origin: center top; }
    .tooltip-container .tippy-box[data-placement^=bottom] &gt; .tippy-arrow {
      top: 0; }
      .tooltip-container .tippy-box[data-placement^=bottom] &gt; .tippy-arrow:before {
        top: -7px;
        left: 0;
        border-width: 0 8px 8px;
        border-bottom-color: initial;
        transform-origin: center bottom; }
    .tooltip-container .tippy-box[data-placement^=left] &gt; .tippy-arrow {
      right: 0; }
      .tooltip-container .tippy-box[data-placement^=left] &gt; .tippy-arrow:before {
        border-width: 8px 0 8px 8px;
        border-left-color: initial;
        right: -7px;
        transform-origin: left center; }
    .tooltip-container .tippy-box[data-placement^=right] &gt; .tippy-arrow {
      left: 0; }
      .tooltip-container .tippy-box[data-placement^=right] &gt; .tippy-arrow:before {
        left: -7px;
        border-width: 8px 8px 8px 0;
        border-right-color: initial;
        transform-origin: right center; }
  .tooltip-container .tippy-arrow {
    width: 16px;
    height: 16px;
    color: #000; }
    .tooltip-container .tippy-arrow:before {
      content: "";
      position: absolute;
      border-color: transparent;
      border-style: solid; }
  .tooltip-container .tippy-content {
    position: relative;
    padding: 5px 10px;
    z-index: 1; }
</pre></body></html>