@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.otf') format('opentype'), /* IE6-IE8 */
    url('../fonts/Gotham-Black.woff') format('woff'), /* Modern Browsers */
    url('../fonts/Gotham-Black.ttf')  format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype'), /* IE6-IE8 */
    url('../fonts/Gotham-Book.woff2') format('woff2'); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf') format('opentype'), /* IE6-IE8 */
    url('../fonts/Gotham-Medium.woff') format('woff'), /* Modern Browsers */
    url('../fonts/Gotham-Medium.ttf')  format('truetype'); /* Safari, Android, iOS */
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Mokoko';
    src: url('../fonts/Mokoko-Rg.otf') format('opentype');
    font-weight: normal;
    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: 'Gotham';
}
header {
    display: flex;
    flex-direction: column;
}
#homeLogo {
    cursor: pointer;
    line-height: 0;
    width: 100vw;
}
#langSwitch {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #277fa5;
    border: 1px solid white;
    border-radius: 4px;
    padding: 4px 6px;
    color: white;
    cursor: pointer;
}
.brandLogo {
    width: 100%;
}
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: 'Mokoko';
    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: 'Mokoko';
}

@media screen and (max-width: 800px) {
    #ctaHeader {
        font-size: 1em;
        padding: 5px;
    }
    #app-wrapper {
        width: 100%;
    }
    footer {
        display: flex;
        height: 100px;
    }
}