.tippy-box[data-theme~='dark'] {
    background-color: rgba(34, 34, 34, 0.948);
    color: rgb(250, 250, 250);
}

.tippy-box[data-theme~='blue'] {
    background-color: #007aff;
    color: rgb(255, 255, 255);
}

.tippy-box[data-theme~='dark'][data-placement^='top']>.tippy-arrow::before {
    border-top-color: rgba(34, 34, 34, 0.948);
    ;
}

.tippy-box[data-theme~='dark'][data-placement^='bottom']>.tippy-arrow::before {
    border-bottom-color: rgba(34, 34, 34, 0.948);
    ;
}

.tippy-box[data-theme~='dark'][data-placement^='left']>.tippy-arrow::before {
    border-left-color: rgba(34, 34, 34, 0.948);
    ;
}

.tippy-box[data-theme~='dark'][data-placement^='right']>.tippy-arrow::before {
    border-right-color: rgba(34, 34, 34, 0.948);
    ;
}

.tippy-box[data-theme~='blue'][data-placement^='top']>.tippy-arrow::before {
    border-top-color: #007aff;
}

.tippy-box[data-theme~='blue'][data-placement^='bottom']>.tippy-arrow::before {
    border-bottom-color: #007aff;
}

.tippy-box[data-theme~='blue'][data-placement^='left']>.tippy-arrow::before {
    border-left-color: #007aff;
}

.tippy-box[data-theme~='blue'][data-placement^='right']>.tippy-arrow::before {
    border-right-color: #007aff;
}

.tippy-box[data-theme~='blue'][data-placement^=bottom]>.tippy-arrow:before,
.tippy-box[data-theme~='blue'][data-placement^=top]>.tippy-arrow:before,
.tippy-box[data-theme~='blue'][data-placement^=left]>.tippy-arrow:before,
.tippy-box[data-theme~='blue'][data-placement^=right]>.tippy-arrow:before {
    color: var(--base-blue);
}

.tippy-box[data-animation=scale][data-placement^=top] {
    transform-origin: bottom
}

.tippy-box[data-animation=scale][data-placement^=bottom] {
    transform-origin: top
}

.tippy-box[data-animation=scale][data-placement^=left] {
    transform-origin: right
}

.tippy-box[data-animation=scale][data-placement^=right] {
    transform-origin: left
}

.tippy-box[data-animation=scale][data-state=hidden] {
    transform: scale(.5);
    opacity: 0
}

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

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

.tippy-box {
    position: relative;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
    outline: 0;
    transition-property: transform, visibility, opacity
}

/*
    .tippy-box[data-placement^=bottom]>.tippy-arrow:before,
    .tippy-box[data-placement^=top]>.tippy-arrow:before,
    .tippy-box[data-placement^=left]>.tippy-arrow:before,
    .tippy-box[data-placement^=right]>.tippy-arrow:before {
        color: var(--base-blue);
    }
*/
.tippy-box a,
.tippy-box i {
    color: inherit;
    display: inline-flex;
    background: transparent;
    padding: 0;
    line-height: normal;
    font-size: inherit;
}

.tippy-box a.small,
.tippy-box i.small {
    font-size: 10px;
}

.tippy-box a:hover {
    color: var(--bs-yellow);
}

.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(.54, 1.5, .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;
    min-width: -webkit-fill-available;
    padding: 5px 9px;
    z-index: 1;
    text-align: initial;
}