.fullOverlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 0vh;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    text-align: center;
    background-color: rgb(120,191,167); /* Black fallback color */
    background-color: rgba(120,191,167,0.65); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    -webkit-transform: 0.5s; /* Safari */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

.form .btnDL {
    width: 200px;
    margin: 20px auto 0;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 2px;
    text-align: center;
    color: #fff;
    background: #009090;
    cursor: pointer;
}

.form button {
    font-size: 16px;
    border: none;
}

.overlayContent {
    width: 100%;
    height: 100%;
    text-align: center;
}

#divTitleDL {
    font-size: 20px;
    font-weight: bolder;
    color: #0000a0;
    text-align: center;
    padding-bottom: 10px;  
}

#divFormDL {
    position: relative;
    top:10%;
    margin: 0px auto;
    max-width: 400px;  
    min-width: 300px;
    min-height: 40px;
    background: #F0F0F0;
    border: #505050 solid medium;
    padding: 10px;
    padding-left: 30px; 
    text-align: left;
    line-height: 30px; 
    font-weight: bold;  
}

#divActionBtnsDL {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px; 
}

#btnCancelDL {
    background: #a0a0a0;
}
