/* 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: 'VAG Rounded Std';
    line-height: 1.5;
}
#dialogoverlay{
    display: none;
    opacity: .8;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #000;
    width: 100%;
    z-index: 10;
}
#dialogbox{
    display: none;
    position: fixed;
    background: #e1e1e1;
    min-width:300px;
    max-width: 550px;
    z-index: 10;
}
#dialogbox > div{ background:#FFF; margin:8px; }
#dialogbox > div > #dialogboxbody{ background: #e1e1e1; padding:20px; color:#000000; }
#dialogbox > div > #dialogboxfoot{ background: #e1e1e1; padding:10px; text-align:right; }
header {
    height: 40px;
    border-bottom: 2px solid #fff;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerText {
    color: #E83E3D;
    font-weight: 400;
    margin-left: 10px;
    font-size: 22px;
}
.brandLogo {
    display: block;
    height: 80%;
    padding-right: 5px;
}
.subBrandLogo {
    display: block;
    height: 180px;
    margin-bottom: 30px;
}
section#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-image: url("../img/flowerBorderLeft.png"), url("../img/flowerBorderRight.png"), url("../img/std-bg-wide.jpg");
    background-repeat: no-repeat;
    background-size: auto 90vh, auto 90vh, cover;
    background-position: top left, top right, top;
}
#content.flowers {
    background-image: url("../img/flowerBorderLeft.png"), url("../img/flowerBorderRight.png"), url("../img/flower-bg.jpg");
}
#content.natural {
    background-color: white;
    background-image: url("../img/bubbles-bg.jpg");
    background-size: cover;
    background-position: top;
}
#content.flowers .importantInfo {
    color: rgb(51,51,51);
    text-shadow: 1px 1px 1px #fff;
}
#app-wrapper {
    box-sizing: border-box;
    width: 850px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}
#app {
    background: white;
}
#content.natural #app-wrapper {
    margin: 30px 0;
}
.importantInfo {
    color: #000000;
    background: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: bold;
    /*text-shadow: 1px 1px 1px #fff;*/
    box-sizing: border-box;
    padding: 5px;
    text-align: center;
    border-radius: 3px;
}
.importantInfo a, .importantInfo a:link, .importantInfo:hover {
    color: #000000;
    text-decoration: none;
}
footer {
    height: 50px;
    width: 100%;
    color: #323131;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
}
.footerText {
    font-size: 12px;
}


@media screen and (max-width: 800px) {
    header {

    }

    .headerText {
        font-size: 18px;
    }

    .brandLogo {
        padding: 3px;
    }

    section#content {
        display: block;
        width: 100%;
        background-image: url("../img/flowerLeft.png"), url("../img/flowerRight.png"), url("../img/std-bg-wide.jpg");
        background-repeat: no-repeat;
        background-size: auto, auto, cover;
        background-position: top 10px left, top 10px right -30px, top;
    }

    section#content.flowers {
        display: block;
        background-image: url("../img/flowerLeft.png"), url("../img/flowerRight.png"), url("../img/flower-bg.jpg");
        background-repeat: no-repeat;
        background-size: auto, auto, cover;
        background-position: top 10px left, top 10px right -30px, top;
    }

    section#content.natural {
        display: block;
        background-image: url("../img/bubbles-bg.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
    }
    .subBrandLogo {
        display: block;
        height: 120px;
        margin: 0 auto;
        padding: 16px 0;
    }
    #app-wrapper {
        width: 100%;
        border-radius: 0;
        background-color: transparent;
    }
    #content.natural #app-wrapper {
        box-shadow: none;
    }
    footer {
        display: block;
        height: 80px;
    }
}