#fullScreenModalOverlay
{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    height: 100%;
    background-color: #000000B0;
    display: none;
    z-index: 998;
}

#fullScreenModal
{
    position: fixed;
    z-index: 999;
    padding: 2vh 2vw;
    display: none;
    top: 0;
    box-sizing: border-box;
    height: 96vh;
    width:100%;

}
#fullScreenModalBox
{
    background-color:#FFFFFF;
    height: 96vh;
    box-sizing: border-box;
    
}
#fullScreenModalHeader
{
    height: 6vh;
    box-sizing: border-box;
    font-size:4vh;
    padding:1vh;
    position:relative;
    overflow-y: hidden;
}
#fullScreenModalContent
{
    height:78vh;
    overflow: auto;
    box-sizing: border-box;
    padding: 0.5rem;
}
#fullScreenModalFooter
{
    height:10vh;
    box-sizing: border-box;
    font-size:4vh;
}
#fullScreenModalCloseX
{
    position: absolute;
    top:1vw;
    right: 1vw;
    font-size: 2vw;
    font-size:min(2vw,24px);
    cursor: pointer;
}
.fullScreenModalContentItem
{
    padding: 0.3rem;
    box-sizing: border-box;
}
#fullScreenModalFooter
{
    display:flex;
    justify-content: center;
    align-items: center;
}
#genericFooterClose
{
    background-color: #000000;
    border-radius: 10px;
    color: #FFFFFF;
    padding: 0 0.3rem;
    cursor: pointer;
}