.tippy-box[data-animation=fade][data-state=hidden]{
  opacity:0;
}

[data-tippy-root]{
  max-width:calc(100vw - 10px);
}

.tippy-box{
  position:relative;
  background-color:#fff;
  color:#000;
  border: 1px #bbb solid;
  /*border-radius:4px;*/
  font-size:14px;
  line-height:1.4;
  white-space:normal;
  outline:0;
  transition-property:transform,visibility,opacity;
  box-shadow: 2px 2px 12px 0px rgba(0,0,0,0.5);
}

.tippy-box[data-placement^=top]>.tippy-arrow{
  bottom:0;
}

.tippy-box[data-placement^=top]>.tippy-arrow:before{
  bottom:-9px;
  left:0;
  border-width:10px 10px 0;
  border-top-color:initial;
  transform-origin:center top;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow{
  top:0px;
}

.tippy-box[data-placement^=bottom]>.tippy-arrow:before{
  top:-9px;
  left:0;
  border-width:0 10px 10px;
  border-bottom-color:initial;
  transform-origin:center bottom;
}

.tippy-box[data-placement^=left]>.tippy-arrow{
  right:0;
}

.tippy-box[data-placement^=left]>.tippy-arrow:before{
  border-width:10px 0 10px 10px;
  border-left-color:initial;
  right:-9px;
  transform-origin:center left;
}

.tippy-box[data-placement^=right]>.tippy-arrow{
  left:0
}

.tippy-box[data-placement^=right]>.tippy-arrow:before{
  left:-9px;
  border-width:10px 10px 10px 0;
  border-right-color:initial;
  transform-origin:center right;
}

.tippy-box[data-inertia][data-state=visible]{
  transition-timing-function:cubic-bezier(.54,1.5,.38,1.11);
}

.tippy-arrow{
  width:16px;
  height:16px;
  color:#fff;
}

.tippy-arrow:before{
  content:"";
  position:absolute;
  border-color:transparent;
  border-style:solid;
}

.tippy-content {
  position: relative;
  /*padding: 8px 12px;*/
  z-index:1;
  max-height: 600px;
  overflow-y: auto;
}

.tippy-content::-webkit-scrollbar {
  width: 8px;
}

.tippy-content::-webkit-scrollbar-thumb {
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
}

.tippy-content:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

.tippy-content p {
  border: 0px;
  /*padding: 4px;*/
  margin: 4px 4px 4px 4px;
}

.tippy-highlight {
  animation: blink_text 1.2s linear 2;
  text-decoration: underline;

  * {
    text-decoration: underline;
  }
}

@keyframes blink_text {
  0% {
    text-decoration: none;
  }
  70% {
    text-decoration: underline;
    text-shadow: 0px 0px 8px;
  }
}