/* 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: inherit;
    vertical-align: baseline;
}

/* Page Styles */
body {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: 'calibre';
    font-size: 16px !important;
    box-sizing: border-box;
}
h3 {
    font-size: 1.6em !important;
    font-weight: bold;
}
h4 {
    font-family: 'fairlifescript';
    font-size: 1.4em!important;
    color: #009bde;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#langSwitch {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #004a97;
    border: 1px solid white;
    border-radius: 4px;
    padding: 4px 6px;
    color: white;
    cursor: pointer;
}
section#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background: #ffffff;
    min-height: calc(100vh - 150px);
}
#app-wrapper {
    box-sizing: border-box;
    background-color: transparent;
    margin-bottom: 10px;
    width: 100%;
}
.importantInfo {
    color: #666666;
    font-size: 12px;
    text-shadow: 1px 1px 1px #fff;
    box-sizing: border-box;
    padding: 5px;
    text-align: center;
    width: 100%;
}
.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 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    background: #004a97;
    color: #ffffff;
    padding: 30px;
}
.footerText {
    font-size: .8em;
}
.footerLinks li {
    list-style: none;
    margin-right: 10px;
    padding-right: 10px;
    display: inline-block;
    font-weight: bold;
    border-right: 1px solid #FFFFFF;
}
.footerLinks li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}
.footerLinks li a {
    color: #ffffff;
    font-size: .8em;
    text-decoration: none;
}
.footerLinks li a:hover {
    text-decoration: underline;
}

/* In app forced styles */


@media screen and (max-width: 1200px) {
    header {
        width: 100%;
        margin-bottom: 0;
    }
    section#content {
        display: block;
        box-sizing: border-box;
        width: 100%;
    }
    #fairlife--shop {
        padding: 0 10px;
    }
    #app-wrapper {
        width: 100%;
        border-radius: 0;
        background-color: transparent;
        /*padding: 0 5px;*/
        box-sizing: border-box;
    }
    footer {
        display: block;
    }
}
@media screen and (max-width: 960px) {
    #ctaHeader {
        font-size: 2.5em;
    }
}
@media screen and (max-width: 600px) {
    #ctaHeader {
        font-size: 2em;
    }
}