.product-activation-info {
    position: relative;
}
.product-activation-info .info-wrapper {
    display: inline-block;
    position: relative;
}
.product-activation-info .info-icon-wrapper {
}
.product-activation-info .info-icon {
    line-height: 1;
    border: 1px solid white;
    border-radius: 50%;
    height: 1em;
    width: 1em;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.2em;
    box-sizing: content-box;
    cursor: default;
}
.product-activation-info .info-text {
    display: block;
    position: absolute;
    top: calc(100% + 5px);
    width: 100%;
    font-size: 0.9rem;
    z-index: 10;
}
.product-activation-info .info-icon-wrapper:hover::before,
.product-activation-info .info-icon-wrapper:active::before {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(50% - 5px);
    border-right: 1px solid white;
    border-top: 1px solid white;
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
    background: black;
    z-index: 20
}
.product-activation-info .info-icon-wrapper:hover + .info-text[aria-label]::after,
.product-activation-info .info-icon-wrapper:active + .info-text[aria-label]::after {
    content: attr(aria-label);
    position: absolute;
    top: 0;
    left: -5px;
    white-space: nowrap;
    background: black;
    border: 1px solid white;
    padding: 5px;
}