.tippy-box[data-animation="fade"][data-state="hidden"] {
    opacity: 0;
}
[data-tippy-root] {
    max-width: calc(100vw - 1rem);
}
.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
    outline: 0;
    transition-property: transform, visibility, opacity;
}
.tippy-box[data-placement^="top"] > .tippy-arrow {
    bottom: 0;
}
.tippy-box[data-placement^="top"] > .tippy-arrow:before {
    bottom: -0.7rem;
    left: 0;
    border-width: 0.8rem 0.8rem 0;
    border-top-color: initial;
    transform-origin: center top;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow {
    top: 0;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
    top: -0.7rem;
    left: 0;
    border-width: 0 0.8rem 0.8rem;
    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: 0.8rem 0 0.8rem 0.8rem;
    border-left-color: initial;
    right: -0.7rem;
    transform-origin: center left;
}
.tippy-box[data-placement^="right"] > .tippy-arrow {
    left: 0;
}
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
    left: -0.7rem;
    border-width: 0.8rem 0.8rem 0.8rem 0;
    border-right-color: initial;
    transform-origin: center right;
}
.tippy-box[data-inertia][data-state="visible"] {
    transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}
.tippy-arrow {
    width: 1.6rem;
    height: 1.6rem;
    color: #333;
}
.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: transparent;
    border-style: solid;
}
.tippy-content {
	position: relative;
	padding: 0.5rem 0.9rem;
	z-index: 1;
	font-family: Roboto, Arial, Helvetica, Sans-Serif;
	text-shadow: none;
	letter-spacing: initial;
	font-weight: initial;
}
