
/**
 * wsd-tips.css
 * подсказки
 * 
 * Author: WSD
 * Author site: homdy.ru
 * Created: 2026-05-17 15:00
 */
.wsd-tips {
    position: fixed;
    display: none;
    z-index: 100000;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9em;
    color: #333;
    line-height: 1.4;
    max-width: 300px;
    pointer-events: none;
    margin: 0;
    box-sizing: border-box;
}

.wsd-tips.active {
    display: block;
    pointer-events: auto;
}

.wsd-tips::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 16px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #c3c4c7;
}

.wsd-tips::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 16px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

.have-tip {
    cursor: help;
    /* border-bottom: 1px dotted #0073aa;
    color: #0073aa; */
}

/* .have-tip:hover {
    color: #005177;
} */

