.samord-tippy-init {
    display: flex;
    vertical-align: top;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 0.7em;
    line-height: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 24px;
    background: #ccc;
    color: #000;
    box-sizing: border-box;
    z-index: 20;
}
.samord-tippy__container {
    position: absolute;
    display: flex;
    vertical-align: top;
    align-items: center;
    justify-content: center;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
}
.samord-tippy__content {
    visibility: hidden;
    position: absolute;
    inset: 100% 0 auto auto;
    max-width: calc(100vw - 10px);
    background-color: #333;
    padding: 10px;
    border-radius: 4px;
    opacity: 0;
    font-size: 10px;
    line-height: 1.2em;
    text-align: left;
    color: #fff;
    transition: opacity 0.3s;
    z-index: 1000;
    margin-top: 12px;
    user-select: text;
}
.samord-tippy__content::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 6px;
    border: 6px solid transparent;
    border-bottom-color: #333;
}
.samord-tippy__content.fade-in {
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width: 480px) {
    .samord-tippy-init.samord-promo__adv {
        top: 12px;
        right: 12px;
    }
}