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

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

div.tippy-box {
  position: relative;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;

  background-color: rgba(44, 44, 47, 0.8);
  box-shadow: rgba(0, 0, 0, .1) 0px 0px 0 0.5px inset, rgba(255, 255, 255, .2) 0.5px 0.5px 0 0 inset, rgba(255, 255, 255, .1) 0 0 0 0.5px inset, rgba(255, 255, 255, 0.05) 0px 0px 0px 0.5px inset, rgba(255, 255, 255, .06) 0.5px 0.5px 0 0 inset, rgba(255, 255, 255, .04) 0 0 0 0.5px inset, rgba(0, 0, 0, .2) 0px 4px 24px;
}

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

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

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

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

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

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

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

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

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

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: rgba(44, 44, 47, 0.8);
}

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

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
  text-align: left;
  color: #fff;
  box-shadow: none;
}
