.tooltip {
    display: block;
    position: absolute;
    margin: 0;
    text-align: start;
    font-family: PrivatSans, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: var(--caption-font-size);
    line-height: var(--caption-line-height);
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    word-wrap: break-word;
    opacity: 0;
    z-index: 900;
}

.tooltip.show {
    opacity: 90%;
}

.fade {
    transition: opacity 0.15s linear;
}

.tooltip .arrow {
    display: none;
}

.tooltip-inner {
    max-width: 90vw;
    padding: 15px 15px;
    text-align: center;
    font-size: calc(6px + 1vmin);
    color: var(--white);
    background-color: var(--090-black);
    border-radius: 4px;
}
