
div#myQuery_container{
    z-index:140;
    position:fixed;
    left:0;
    top:0;
    width:100vw;
    height:100vh;
    display:none;
    /*display:flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div#myQuery_curtain{
    z-index:150;
    position:fixed;left:0;
    top:0;
    width:100%;
    height:100%;
    background-color:black;
    opacity:0.5;
}
div#myQuery_content{
    z-index:160;
    /*position:relative;*/
    background-color:white;
    opacity:1;
    border:1px solid gray;
    border-radius: 12px;
    padding:16px;
    color:black;
    font-size: 14px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}