/* Tooltip with 2px border */
.tippy-box[data-theme~='ACZ'] {
  background-color: var(--ACZ-tooltips-background);
  border: var(--ACZ-tooltips-border-width) solid var(--ACZ-tooltips-border);
  border-radius: var(--ACZ-tooltips-border-radius);
}

/* Tooltip Text */
.tippy-box[data-theme~='ACZ'] > .tippy-content {
  color: var(--ACZ-tooltips-text);
  font-size: var(--ACZ-tooltips-font-size);
  font-family: var(--ACZ-font-family);
}

/* Arrow fill */
.tippy-box[data-theme~='ACZ'] > .tippy-svg-arrow > svg:last-child {
  fill: var(--ACZ-tooltips-background);
  top: calc(16px - var(--ACZ-tooltips-border-width));
}

/* Arrow border */
.tippy-box[data-theme~='ACZ'] > .tippy-svg-arrow > svg:first-child {
  fill: var(--ACZ-tooltips-border);
}

/* tippy: dist/tippy.css */
.tippy-box[data-animation="fade"][data-state="hidden"] {
  opacity: 0;
}
[data-tippy-root] {
  max-width: calc(100vw - 10px);
}
.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  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: -7px;
  left: 0;
  border-width: 8px 8px 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: -7px;
  left: 0;
  border-width: 0 8px 8px;
  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: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}
.tippy-box[data-placement^="right"] > .tippy-arrow {
  left: 0;
}
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 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: 16px;
  height: 16px;
  color: #333;
}
.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

/* tippy: dist/svg-arrow.css */

.tippy-box[data-placement^="top"] > .tippy-svg-arrow {
  bottom: 0;
}
.tippy-box[data-placement^="top"] > .tippy-svg-arrow:after,
.tippy-box[data-placement^="top"] > .tippy-svg-arrow > svg {
  top: 16px;
  transform: rotate(180deg);
}
.tippy-box[data-placement^="bottom"] > .tippy-svg-arrow {
  top: 0;
}
.tippy-box[data-placement^="bottom"] > .tippy-svg-arrow > svg {
  bottom: 16px;
}
.tippy-box[data-placement^="left"] > .tippy-svg-arrow {
  right: 0;
}
.tippy-box[data-placement^="left"] > .tippy-svg-arrow:after,
.tippy-box[data-placement^="left"] > .tippy-svg-arrow > svg {
  transform: rotate(90deg);
  top: calc(50% - 3px);
  left: 11px;
}
.tippy-box[data-placement^="right"] > .tippy-svg-arrow {
  left: 0;
}
.tippy-box[data-placement^="right"] > .tippy-svg-arrow:after,
.tippy-box[data-placement^="right"] > .tippy-svg-arrow > svg {
  transform: rotate(-90deg);
  top: calc(50% - 3px);
  right: 11px;
}
.tippy-svg-arrow {
  width: 16px;
  height: 16px;
  fill: #333;
  text-align: initial;
}
.tippy-svg-arrow,
.tippy-svg-arrow > svg {
  position: absolute;
}

/* tippy dist/border.css */
.tippy-box {
  border: 1px transparent;
}
.tippy-box[data-placement^="top"] > .tippy-arrow:after {
  border-top-color: inherit;
  border-width: 8px 8px 0;
  bottom: -8px;
  left: 0;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow:after {
  border-bottom-color: inherit;
  border-width: 0 8px 8px;
  top: -8px;
  left: 0;
}
.tippy-box[data-placement^="left"] > .tippy-arrow:after {
  border-left-color: inherit;
  border-width: 8px 0 8px 8px;
  right: -8px;
  top: 0;
}
.tippy-box[data-placement^="right"] > .tippy-arrow:after {
  border-width: 8px 8px 8px 0;
  left: -8px;
  top: 0;
  border-right-color: inherit;
}
.tippy-box[data-placement^="top"]
  > .tippy-svg-arrow
  > svg:first-child:not(:last-child) {
  top: 17px;
}
.tippy-box[data-placement^="bottom"]
  > .tippy-svg-arrow
  > svg:first-child:not(:last-child) {
  bottom: 17px;
}
.tippy-box[data-placement^="left"]
  > .tippy-svg-arrow
  > svg:first-child:not(:last-child) {
  left: 12px;
}
.tippy-box[data-placement^="right"]
  > .tippy-svg-arrow
  > svg:first-child:not(:last-child) {
  right: 12px;
}
.tippy-arrow {
  border-color: inherit;
}
.tippy-arrow:after {
  content: "";
  z-index: -1;
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

/* tippy: animations/scale-extreme.css */
.tippy-box[data-animation="scale-extreme"][data-placement^="top"] {
  transform-origin: bottom;
}
.tippy-box[data-animation="scale-extreme"][data-placement^="bottom"] {
  transform-origin: top;
}
.tippy-box[data-animation="scale-extreme"][data-placement^="left"] {
  transform-origin: right;
}
.tippy-box[data-animation="scale-extreme"][data-placement^="right"] {
  transform-origin: left;
}
.tippy-box[data-animation="scale-extreme"][data-state="hidden"] {
  transform: scale(0);
  opacity: 0.25;
}

