.info-tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #b3b3bd;
    line-height: 0;
    cursor: pointer;
    transition: color .15s ease;
}

.info-tip:hover,
.info-tip[aria-expanded="true"] {
    color: #6828ba;
}

.info-tip:focus-visible {
    outline: 2px solid #9345d8;
    outline-offset: 2px;
    border-radius: 50%;
}

.info-tip__bubble {
    position: fixed;
    z-index: 1000;
    max-width: 280px;
    padding: 10px 14px;
    background: #26334d;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .22);
}

.info-tip__bubble[hidden] {
    display: none;
}

.info-tip__bubble::before {
    content: "";
    position: absolute;
    top: -5px;
    left: var(--arrow-x, 18px);
    width: 10px;
    height: 10px;
    background: inherit;
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
}

.info-tip__bubble::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}

.info-tip__bubble--above::before {
    top: auto;
    bottom: -5px;
}

.info-tip__bubble--above::after {
    top: auto;
    bottom: -10px;
}
