    .rs-tooltip-icon {
        display: inline-block;
        font-weight: 700;
        font-family: sans-serif;
        width: 16px;
        height: 16px;
        line-height: 16px;
        text-align: center;
        border-radius: 50%;
        background: #5578ff;
        color: #fff;
        margin-right: 9px;
        user-select: none;
        position: relative;
        top: -10px;
        right: 4px;
        font-size: 12px;
    }

    .rs-tooltip-info {
        display: inline-block;
        position: relative;
        cursor: pointer;
    }

    .rs-tooltip-popover {
        position: absolute;
        top: 110%;
        left: 0;
        background: #333;
        color: #fff;
        padding: 10px 40px 10px 12px;
        border-radius: 6px;
        font-size: 14px;
        min-width: 200px;
        white-space: normal;
        z-index: 99;
        box-shadow: 0 4px 8px rgb(0 0 0 / .2);
        display: none;
        max-width: 460px;
        width: max-content;
    }

    .rs-tooltip-popover.active {
        display: block;
    }

    .rs-tooltip-close {
        position: absolute;
        top: 6px;
        right: 8px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
    }

    .rs-tooltip-label {
        text-decoration: dotted underline;
        margin-right: 4px;
    }