html, body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #efefef;
    height: 100%;
    position: relative;
}
*, :active, :focus {
    outline: 0;
}
.wrapper {
    width: 430px;
    height: 495px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
}
.clear {
    clear: both;
}
.dialog-aspect-keeper {
    width: 100%;
}
.dialog {
    height: 50%;
    background: linear-gradient(#e1e1e1, #f2f2f2);
    border: 1px solid grey;
    box-shadow: 0 -.25vh 3vh .2vh rgba(0, 0, 0, .22);
    margin-top: 25%;
}
.dialog-header {
    height: 40px;
    background-size: auto 100%;
    background: linear-gradient(#eee, #b3b3b2);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: rgba(165, 162, 162, .67);
    text-shadow: 2px 2px 2px #c7c8ca, 0 0 0 #424242, 2px 2px 2px #b2b3b7;
    line-height: 40px;
    position: relative;
}
.dialog-header .close {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: 10px;
    width: 16px;
}
::-moz-selection {
    background: #5af;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #5af;
    color: #fff;
    text-shadow: none;
}
.dialog-body {
    padding-top: 30vh;
    border-top: 0;
}
.dialog-top img {
    display: inline-block;
    float: left;
}
.disclaimer {
    font-size: 11px;
    margin: 10px auto 0;
}
.top-text {
    display: inline-block;
    float: left;
    line-height: 25px;
    margin-left: 30px;
}
.dialog .brand-text {
    width: 440px;
    float: left;
    text-align: left;
    height: 100px;
}
.dialog .brand-text h2 {
    color: #4d4d4d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
}
.dialog .brand-text p.lead {
    color: #4d4d4d;
    font-size: 16px;
}
.dialog .brand-img {
    width: 130px;
    float: left;
    margin-right: 34px;
}
.dialog .brand-img img {
    width: 100%;
}
.dialog-actions {
    margin-top: 20px;
}
.button-container {
    position: relative;
    overflow: hidden;
    margin: auto;
    margin-top: 10px;
    width: 195px;
    height: 44px;
    float: right;
    border: 0;
    cursor: pointer;
}
.download-btn {
    background-color: #f33045;
    background-repeat: no-repeat;
    background-position: 35px center;
    background-image: url(img/download_arrow.png);
    border-radius: 4px;
    border: 1px solid #d20015;
    height: 60px;
    cursor: pointer;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 60px;
    text-align: right;
    padding-right: 35px;
    padding-left: 70px;
    transition: .3s all ease-in-out;
}
.step-btn {
    background-color: #fff;
    border: 1px solid #d5d5d5;
    color: grey;
    border-radius: 4px;
    width: 200px;
    height: 60px;
    margin-left: 20px;
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    line-height: 60px;
    text-align: center;
}
.download-btn: hover {
    background-color: #a70819;
}
.hint-text {
    font-size: 12px;
    color: #666;
    margin: 40px auto 30px auto;
    text-align: center;
}
.hint-text a {
    color: #666;
}
.how-to-link {
    text-decoration: underline;
}
.footer-links, .footer-links a {
    font-size: 14px;
    color: #666;
    text-align: center;
    text-decoration: none;
}
#plug {
    height: 50px;
    background: #353a3e;
    border: 1px solid #aaa;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 101;
    color: #000;
}
.plugleft {
	padding-top: 4px; 
	font-size: 12px;
}
.download_link img {
	padding-right: 7px;
	padding-left: 7px;
	float: left;
}
.plugleft p {
	display: block;
	float: left;
	margin: 8px 0px 0px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}
#filename {
	color: green;
	font-weight: 600;
}

/* popups */

#screenBlock {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8) !important;
    z-index: 999;
}
#downloadBox {
    font-size: 20px;
    left: 65%;
    width: 35%;
    top: 255px;
    z-index: 3000;
    display: none;
    position: fixed;
}
.bounce-up {
    animation: bounceUp 1s infinite;
    color: #1a73e8;
    font-size: 120px;
    display: flex;
    justify-content: center;
}
@keyframes bounceUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
.downloadAlert{
    display: flex;
    text-align: center;
    background-color: white;
    padding: 0.5em;
    border-radius: 5px;
    line-height: 1.5;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
#checkIcon {
    color: #46bd35;
    font-size: 25px;
    margin-right: 10px;
}
#up-arrow-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(2px 2px 0 white) 
            drop-shadow(-1px -1px 0 white);
}