.itb-wrapper{
position:relative;
display:flex;
justify-content: flex-end;
}
.itb-tooltip-inner {
    font-size: 14px;
    font-weight: 400;
}
.itb-icon {
    background: #333;
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
}

.itb-tooltip {
    position: absolute;
    bottom: 26px;
    left: 100%;
    transform: translateX(-54%);
    background: #111;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 9999;
}

.itb-tooltip.active{
opacity:1;
visibility:visible;
}

.itb-close{
position:absolute;
top:5px;
right:8px;
cursor:pointer;
font-size:14px;
}

.itb-arrow{
position:absolute;
bottom:-6px;
left:50%;
transform:translateX(-50%) rotate(45deg);
width:12px;
height:12px;
background:#111;
}

.itb-tooltip a{
color:#4da6ff;
text-decoration:underline;
}