/*@font-face {*/
/*    font-family: 'Estrella';*/
/*    src: url('../fonts/estrella_body.woff2') format('woff2');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/
/*@font-face {*/
/*    font-family: 'EstrellaHeadline';*/
/*    src: url('../fonts/estrella_heading.woff2') format('woff2');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/

@font-face {
    font-family: 'Cera';
    src: url('../fonts/Cera-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Cera';
    src: url('../fonts/Cera-Black.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, a, img, ol, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Page styles */
body {
    min-height: 100vh;
    background-color: #BEBEBE;
    display: flex;
    flex-direction: column;
    font-family: 'Cera', arial, sans-serif;
    font-size: 90%;
    line-height: 1.5;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 5px #909090;
}
.brandLogo {
    width: 100%;
}
.mobile-banner {
    display: none;
}
section#main-content {
   /* display: flex;
    flex-direction: column;
    flex: 1 1;
    align-items: center;
    justify-content: space-evenly;*/
}
#ctaHeader {
    box-sizing: border-box;
    font-size: 2.8rem;
    line-height: 1em;
    color: #ffffff;
    padding: 10px 0;
    background: #c9ad72;
    text-align: center;
    width: 100%;
    font-weight: 500;
    font-family: 'Knockout', sans-serif;
    text-transform: uppercase;
}
.textWrapper {
    padding: 20px 20px 10px;
    font-size: 1.4em;
    text-align: center;
}
#app-wrapper {
    box-sizing: border-box;
    width: 100vw;
}
.row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.image-wrapper-l {
    flex: 1;
    max-width: 50%;
    padding: 0 5px 10px 10px;
}
.image-wrapper-c {
    flex: 1;
    max-width: 50%;
    padding: 0 10px 5px 10px;
}
.image-wrapper-r {
    flex: 1;
    max-width: 50%;
    padding: 0 10px 10px 5px;
}
.solo-image-wrapper {
    flex: 1;
    max-width: 100%;
    padding: 0 16px 16px;
}
.image-wrapper-l img,
.image-wrapper-r img,
.image-wrapper-c img,
.solo-image-wrapper img {
    display: block;
    width: 100%;
}
.instructionWrapper {
    background: #ffffff;
    box-sizing: border-box;
    padding: 10px 0;
}
.instructionWrapper p.largeInstructionText {
    text-align: center;
    font-weight: bold;
    font-size: 1.4em;
}
.instructionInner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin: 10px;
}
.stepContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #BEBEBE;
    padding: 20px;
}
.stepContainer img {
    width: 50%;
}
.stepContainer p {
    font-size: 1.2em;
}
.videoOuterWrapper, .imgWrapper {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 10px 0;
    align-self: center;
}
.videoWrapper #video {
    width: 100%;
}
.importantInfo {
    color: #ffffff;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
}
footer {
    width: 100%;
    color: #FFFFFF;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
    border-top: 2px solid #e31d1b;
}
.footerText {
    font-size: 14px;
}
.footerText a:link, .footerText a:visited {
    color: #FFFFFF;
    text-decoration: none;
}
.footerText a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.dalogo {
    width: 200px;
    margin-top: 1em;
}

.estrellalogo {
    width: 70px;
    margin-top: 1em;
}

@media screen and (max-width: 800px) {
    #webLink {
        top: 5px;
        right: 5px;
        padding: 1px 10px;
        font-size: 15px;
    }
    .desktop-banner {
        display: none;
    }
    .mobile-banner {
        display: block;
    }
    #ctaHeader {
        font-size: 24px;
        padding: 10px 5px;
    }
    #app-wrapper {
        width: 100%;
    }
    .instructionInner {
        grid-template-columns: repeat(1, 1fr);
    }
    .stepContainer {
        flex-direction: row;
    }
    .stepContainer img {
        width: 40%;
        margin-right: 10px;
    }
    .videoOuterWrapper {
        width: 100%;
    }
}
