#overlay {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(200,0,0,0.7);
    z-index: 100;
}
#overlayContent{
    position: absolute;
    top: 50%;
    left: 50%;
    color: black;
    padding: 20px;
    background-color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    width: 90%;
    height: auto;
    max-height: 90%;
    overflow: auto;
    border-radius: 10px;
    z-index: 100;
}
.overlayLoad{
    position: absolute;
    top: 50%;
    left: 50%;
    color: black;
    padding: 20px;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    z-index: 100;
}
#closeOverlay{
    position: absolute;
    top: 3px;
    right: 3px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 100;
}
.overlayContent{
    position: absolute;
    top: 50%;
    left: 50%;
    color: black;
    padding: 20px;
    background-color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    width: 90%;
    height: auto;
    max-height: 90%;
    overflow: auto;
    border-radius: 10px;
    z-index: 100;
}
.closeOverlay{
    position: absolute;
    top: 3px;
    right: 3px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}