.Popup_Overlay{
    display:none;
    z-index:999999;
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color:white;
    opacity:70%;
}        
.Popup_CloseButton
{
    position:absolute;
    color:black;
    right:-10px;
    top:-10px;
    cursor:pointer;
    border-radius:5px;
    background:rgb(230,230,230);
    padding:10px;
}
.Popup {
    display:none;
    position:fixed;
    z-index:999999999;
    border-radius:10px;
    box-shadow:0 3px 4px 0 rgba(0,0,0,0.2),0 2px 5px 0 rgba(0,0,0,0.19);
    left:50%;
    top:50%;
    width:500px;
    height:380px;
    margin:auto;
    transform:translate(-50%,-50%);
    padding:20px;
    background-color:white;
}

.PopupDownloadForm {
    display:none;
    position:fixed;
    z-index:999999999;
    border-radius:10px;
    box-shadow:0 3px 4px 0 rgba(0,0,0,0.2),0 2px 5px 0 rgba(0,0,0,0.19);
    left:50%;
    top:50%;
    width:500px;
    padding-top:50px;
    padding-bottom:50px;
    padding-left:50px;
    padding-right:50px;

    margin:auto;
    transform:translate(-50%,-50%);
    background-color:white;
}
.Popup_Content {
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background-color:white;
    width:100%;
    text-align:center;
}
.Popup_Content H3{
    font-family: "Arial";
    width:100%;
}
@media screen and (max-width: 600px) {
   .Popup {
   width:90%;
    }
    .PopupDownloadForm {
    width:90%;
    }
}