@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-ExtraBold.woff2') format('woff2');
    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: #ffffff;
    /*display: flex;*/
    /*flex-direction: column;*/
    font-family: 'Open Sans';
}

.banner {
    width: 100%;
}

header {
    display: block;
    /*justify-content: center;*/
    /*background-color: #ffffff;*/
    /*border-bottom: 2px solid #e8af55;*/
}

.brandLogo {
    height: 40px;
    margin: 15px 0;
}

#homeLogo {
    cursor: pointer;
    line-height: 0;
    width: 100vw;
}

#langSwitch {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f8e6e6;
    border: 1px solid white;
    border-radius: 4px;
    padding: 4px 6px;
    color: #8b0001;
    cursor: pointer;
}


section#main-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    align-items: center;
    justify-content: space-evenly;
    /*background: #ffffff;*/
}

#ctaHeader {
    font-size: 1.8em;
    color: white;
    padding: 10px 0;
    background: #eb0029;
    text-align: center;
    width: 100%;
    font-weight: bold;
    box-sizing: border-box;
}

#app-wrapper {
    box-sizing: border-box;
    width: 100vw;
}

.importantInfo {
    font-size: small;
    font-family: 'Open Sans';
    color: #666666;
    box-sizing: border-box;
    max-width: 960px;
    margin: 0 auto 10px;
    text-align: center;
}

.videoOuterWrapper {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    height: 60px;
    width: 100%;
    color: #666666;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
}

.footerText {
    font-size: 12px;
}

.footerText a:link, .footerText a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

.footerText a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* In-app forced overrides */
.packSizeDescTitle,
.otherRetailers,
.useLocationBox p {
    font-family: 'Open Sans';
}

@media screen and (max-width: 800px) {
    #ctaHeader {
        font-size: 1em;
        padding: 5px;
    }

    #app-wrapper {
        width: 100%;
    }

    .brandLogo {
        height: 30px;
    }

    footer {
        display: flex;
        height: 100px;
    }
}
