#overlay {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0, 0, 0.8);
    z-index: 1;
}


#lidialog{
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    width: 300px;
    left: Calc(50vw - 150px);
    top: -200px;
    transition: top 0.6s;
    background-color: red;
}

#hrdialog{
    background-color: black;

}

#ctdialog{
    background-color: white;
}