/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.Tooltip,
.Tooltip__body {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
}

.Tooltip--underline {
  position: relative;
}
.Tooltip--underline::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  border-bottom-width: 1px;
  border-bottom-color: inherit;
  border-bottom-style: dashed;
  opacity: 1;
  transition: opacity duration(fast) easing();
  transition-delay: duration(slow);
}
.Tooltip--underline:hover::before {
  opacity: 0;
  transition: opacity duration(fast) easing();
  transition-delay: duration(slow);
}

.Tooltip__body {
  line-height: normal;
}
.Tooltip__body:not(.Tooltip__body--open).Tooltip__body, .Tooltip__body:not(.Tooltip__body--open)::before {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.Tooltip__body.Tooltip__body {
  display: inline-flex;
  font-size: 14px;
  background: var(--colorsSurfaceInvertedStrong, #141414);
  border-radius: 3px;
  color: var(--colorsTextInverted, white);
  max-width: 18em;
  padding: 4px 8px;
  position: relative;
  text-align: center;
  width: max-content;
  white-space: pre-line;
  word-break: break-word;
  z-index: 1100;
  /* Media query for touchscreen. A finger blocks the screens (unlike a mouse), so
     padding is increased to improve tooltip visibility. Technique is used in Material. */
  animation-name: showTooltip;
  animation-duration: 100ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-direction: normal;
}
@media (pointer: coarse) {
  .Tooltip__body.Tooltip__body {
    padding: 8px 16px;
  }
}

/* Helping IE and edge fall back on `max-content` property */
/* stylelint-disable */
_:-ms-lang(x), .Tooltip__body {
  min-width: 125px;
}

@keyframes showTooltip {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Tooltip__caret::before {
  background: var(--colorsSurfaceInvertedStrong, #141414);
}

.Popper:focus,
.Popper__body:focus {
  outline: none;
}
.Popper:focus-visible,
.Popper__body:focus-visible {
  outline: none;
}

.Popper__caret[data-popper-placement^=top] {
  bottom: 4px;
}
.Popper__caret[data-popper-placement^=top]::before {
  left: -4px;
}

.Popper__caret[data-popper-placement^=bottom] {
  top: -4px;
}
.Popper__caret[data-popper-placement^=bottom]::before {
  left: -4px;
}

.Popper__caret[data-popper-placement^=left] {
  right: 4px;
}
.Popper__caret[data-popper-placement^=left]::before {
  top: -4px;
}

.Popper__caret[data-popper-placement^=right] {
  left: -4px;
}
.Popper__caret[data-popper-placement^=right]::before {
  top: -4px;
}

.Popper__caret {
  animation-name: showTooltip;
  animation-duration: 100ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-direction: normal;
  border: 1px solid yellow;
}
.Popper__caret::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  z-index: -1;
  transform: rotate(45deg);
}

/*# sourceMappingURL=index.css.map */
