#wmt-tooltip {
    position: absolute;
    z-index: 99999;
}

.wmt-box {
    background: #222;
    color: #fff;
    padding: 14px 14px 24px 14px;
    max-width: 400px;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    animation: fadeIn 0.2s ease-in-out;
}

.wmt-box strong {
    font-size: 18px;
}

.wmt-close {
    position: absolute;
    top: -12px;
    right: -9px;
    background: #fff;
    color: #000;
    font-size: 20px;
    /* padding: 0px 0px; */
    border-radius: 50%;
    cursor: pointer;
    width: 24px;
    height: 24px;
    text-align: center;
    /* margin-top: -4px; */
    line-height: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}