.wd-line {
    position: fixed;
    left: 150px; 
    bottom: 80px;
    z-index: 9999;
    font: 600 13px/1.35 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    color: #111;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity .35s ease, transform .35s ease;
    max-width: 600px;
}
    		
.wd-line.show {
    opacity: 1;
    transform: translateX(0);
}
    
.wd-line.bubble{
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
    
.wd-line.plain{
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    text-shadow: 0 1px 0 rgba(255,255,255,.8), 0 0 4px rgba(255,255,255,.55);
}

.wd-line b {
    font-weight: 800;
}
    		
@media (max-width: 768px){
    .wd-line {
        font-size: 11px;
        width: 40%;
        max-width: none;
        left: 20px; 
        bottom: 100px;
    }
}