﻿.Tip
{
    position:fixed;

    display:flex;flex-direction:column;justify-content:flex-start;align-items:center;

    top:50%;
    left:-100%;
    transform:translate(-50%,-50%);

    min-width:300px;
    max-width:80%;
    max-height:80%;
    overflow-y:auto;

    border-radius:10px;
    padding:10px;

    box-shadow:0 0 15px rgba(0,0,0,0.7);
    background-color:rgba(0,0,0,1.0);
    color:white;

    cursor:pointer;

    word-break:break-word;

    z-index:100;
}
