html, body {
	margin: 0;
	width: 100%;
	height: 100%;
    background-color: #FFFFFF;
    font-family: sans-serif;
    font-weight: 100;
    color: #000000;
    box-sizing: border-box;
}

html {
    padding-top: 8%;
}

#content {
    width: 100%;
    margin: auto;
    padding: 0px;
}

#logo {
    width: 300px;
    height: 300px;
    position: relative;
    left: 50%;
    margin-left: -150px;
    background-image: url(../img/iconBig.png);
    background-size: contain;
}

#download {
    padding: 20px;
    background-color: #053796;
    color: white;
    font-weight: bold;
    position: relative;
    margin-top: 30px;
    display: inline-block;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}

#caption {
    width: 300px;
    text-align: center;
    font-size: 14px;
    margin: auto;
    margin-top: 20px;
    line-height: 18px;
}

#caption strong {
    font-size: 17px;
    line-height: 21px;
}

#logo_text {
    width: 300px;
    height: 26px;
    background-image: url(../img/logo_text.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    margin-top: 20px;
}

#disclaimer {
    font-size: 10px;
    text-align: center;
    top: 5px;
    position: relative;
    width: 250px;
    margin: auto;
    font-style: italic;
    padding-bottom: 70px;
}

#blackout {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 50;
    background-color: rgba(0,0,0,.75);
    top: 0px;
    left: 0px;
}

#close {
    font-size: 40px;
    color: white;
    position: absolute;
    z-index: 60;
    top: 50px;
    right: 50px;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
}

#close:hover {
    opacity: .6;
}

#demo {
    font-size: 12px;
    text-decoration: underline;
    text-transform: uppercase;
    width: 300px;
    margin: auto;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
}

#demo_holder {
    width: 800px;
    height: 466px;
    background-image: url(../img/processSM.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -400px;
    margin-top: -233px;
}

.hidden {
    display: none;
}

@media (max-width: 860px) {
    
    #demo_holder {
        width: 500px;
        height: 291px;
        margin-left: -250px;
        margin-top: -145px;
    }
}

@media (max-width: 600px) {
    
    
    #close {
        top: 0px;
        right: 0px;
    }
    
    #demo_holder {
        width: 400px;
        height: 233px;
        margin-left: -200px;
        margin-top: -116px;
    }
}

@media (max-height: 800px) {
    
    html {
        padding-top: 50px;
    }   
    
    #logo {
        width: 200px;
        height: 200px;
        margin-left: -100px;
    } 
    
    
}

