﻿
/* FONTS */

@font-face {
    font-family: "D-DIN-BOLD";
    src: url(/fonts/D-DIN-Bold.otf) format('opentype');
}

@font-face {
    font-family: "fontAwesomeSolid";
    src: url('/fonts/Font Awesome 5 Free-Solid-900.otf') format('opentype');
}

body {
    margin: 80px 0 0 0;
    padding: 0;
    box-sizing:border-box;
}


/* HEADER */

#top-of-site-pixel-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 10px;
    left: 0;
}

#headerBar {
    background-color: #333C41;
    color: #FFFFFF;
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    z-index: 100;
}

.headerBoxShadow {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

#headerLogoContainer {
    flex: 1 1 auto;
    width: 50%;
    display: flex;
    padding-right: 10px;
}

.atTopOfPage div {
    flex: 1 1 auto;
    width: 33%
}

.notAtTopOfPage div {
    flex: 1 1 auto;
}

#headerLargeLogo {
    width: 100%;
}

#headerSmallLogo {
    width: 100%;
    display: none;
    max-height: 90%;
}

.notAtTopOfPage #headerSmallLogo {
    display: block;
}

.notAtTopOfPage #headerLargeLogo {
    display: none;
}


#headerLinkContainer {
    flex: 1 1 auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#headerLinkList {
    list-style: none;
}

    #headerLinkList li {
        display: inline-block;
        margin: 0 20px;
    }

#menuCheckbox {
    display: none;
}

#menuLabel {
    display: none;
    font-family: "fontAwesomeSolid";
    padding: 5px 30px;
    font-size: 40px;
    color: #FFFFFF;
}

.headerLink {
    color: #FFFFFF;
    font-family: "D-DIN-BOLD";
}

#heroDiv {
    background-color: #E2735B;
    width: 100%;
    display: flex;
    max-height: 600px;
    position: relative;
}

#heroBackgroud {
    width: 100%;
    max-height: 600px;
    margin-top: 5px;
}

#heroOverlay {
    position: absolute;
    top: 0;
    width: inherit;
    height: 100%;
    max-width: inherit;
    display: flex;
}

#heroLeft {
    width: 60%;
    align-self: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#heroText {
    flex: 1 1 auto;
    text-align: right;
    padding-right: 5%;
    align-self: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.heading1 {
    font-family: "D-DIN-BOLD";
    font-size: 5vw;
    color: #333C41;
}

#heroScreenShotContainer {
    width: 40%;
    padding-right: 5%;
}

#heroScreenshot {
    position: absolute;
    bottom: -20%;
    height: 100%;
    z-index: 10;
}

#storeBadgeContainer {
    flex: 0 1 75px;
    display: flex;
    margin: 0 0 5px 0;
    max-height: 75px;
    width: 100%;
}


.storeBadge {
    width: 100%;
    text-align: center;
    margin: 5px;
}

.storeBadgeForPlay {
    position: relative;
}

.playStoreBadge {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}

.appStoreBadge {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    #headerLogoContainer {
        order: 2;
    }

    .atTopOfPage div {
        width: unset;
        display: flex;
        justify-content: center;
    }

    #headerLinkContainer {
        order: 1;
        justify-content: unset;
    }

    #headerLargeLogo {
        display: none;
    }

    #headerSmallLogo {
        display: block;
        margin: 5px 0;
    }

    #headerLinkList {
        list-style: none;
        max-height: 0;
        overflow: hidden;
    }

        #headerLinkList li {
            display: block;
            margin: 0 0px;
        }

    #menuLabel {
        display: unset;
    }

    #menuCheckbox:checked ~ #headerLinkList {
        max-height: 100%;
        overflow: visible;
        background-color: #333C41;
        padding-bottom: 20px;
    }
}




    /* FOOTER */

    #pageFooter {
        background-color: #333C41;
        color: #FFFFFF;
        height: 80px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-items: center;
        justify-content: center;
    }

    /* CONTENT MAIN */


    #contentMain {
        background-color: #FFFFFF;
        position: relative;
    }

    .featureItem {
        flex: 1 1 auto;
        margin: 50px;
        display: flex;
    }

    .featureLarge {
        width: 60%;
        text-align: center;
    }

.featureSmall {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 15px;
}

    .featureFull {
        width: 100%;
    }

    .featureContent {
        flex: 0 1 auto;
    }

    .featureIcon {
        font-family: "fontAwesomeSolid";
        font-size: 40px;
        color: #333C41;
        text-align: center;
        position: relative;
        z-index: 2;
    }


    .featureHeading {
        font-family: "D-DIN-BOLD";
        font-size: 3vw;
        color: #333C41;
        text-align: center;
    }

    .featureText {
        font-family: "D-DIN-BOLD";
        font-size: 2vw;
        color: #333C41;
    }

    .featureImage {
        width: 100%;
        max-width: 372px;
    }

    .absoluteAnchor {
        position: relative;
    }

    .fullRightImage {
        flex: 1 1 auto;
        text-align: right;
    }

    #scanImage {
        width: 100%;
        max-width: 754px;
        margin-right: 30px;
    }

    #scanTextOverlay {
        position: absolute;
        bottom: 10%;
    }

.sectionSeparator {
    margin: 50px 0;
    border: 1px solid #E2735B;
    width: 100%;
}

#scanFeatureContainer {

}
/* THUMBNAIL GALLERY */
#thumbnailGallery {
    padding: 20px;
    background-color: #333C41;
    background-color: #E2735B;
}

    #thumbnailContainer {
        display: flex;
        overflow-x: scroll;
    }

    .thumbnailItem {
        flex: 0 0 auto;
        width: 25%;
        max-width: 250px;
        border: 2px solid #333C41;
        margin: 0 20px 10px 20px;
        background-color: #FFFFFF;
    }

    .thumbnailImage {
        width: 100%
    }

    /*MODAL*/

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0,0,0,0.5);
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
    max-width: 500px;
    margin: 1.75rem auto;
    font-family: "D-DIN-BOLD", sans-serif;
}
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
    font-family: "D-DIN-BOLD", sans-serif;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    font-family: "D-DIN-BOLD", sans-serif;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
    .close:not(:disabled):not(.disabled) {
        cursor: pointer;
    }
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}
.modal-open {
    overflow-x: hidden;
    overflow-y: auto;
}

.ajaxLandingFrame {
    border: 0;
    min-width: 100rem;
    display: none;
}

/*Contact Form*/

input {
    box-sizing:border-box;
    padding: 1vw;
    width: 100%;
    font-family: "D-DIN-BOLD", sans-serif;
    font-size: 3vw;
    font-weight: 300;
    color: #444;
    background: white;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem;
    border: solid 2px #999999;
    margin-bottom: 4vw;
}

textarea {
    box-sizing: border-box;
    padding: 1vw;
    width: 100%;
    font-family: "D-DIN-BOLD", sans-serif;
    font-size: 3vw;
    font-weight: 300;
    color: #444;
    background: white;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem;
    border: solid 2px #999999;
    margin-bottom: 4vw;
}

#contactForm {
    padding: 20px;
    margin:50px 0;
}

#contact-form {
    max-width: 500px;
}

#contactForm h5 {
    font-family: "D-DIN-BOLD", sans-serif;
    font-size: 3vw;
    font-weight: 600;
}

    #contactForm button {
        border-color: #E2735B;
        color: #E2735B;
        display: inline-block;
        font-family: "D-DIN-BOLD", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        font-style: normal;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 2em;
        padding-right: 2rem;
        line-height: 1rem;
        text-decoration: none;
        text-transform: uppercase;
        text-align: center;
        border: solid 2px;
        -webkit-border-top-left-radius: 0.3rem;
        -moz-border-radius-topleft: 0.3rem;
        border-top-left-radius: 0.3rem;
        -webkit-border-top-right-radius: 0.3rem;
        -moz-border-radius-topright: 0.3rem;
        border-top-right-radius: 0.3rem;
        -webkit-border-bottom-right-radius: 0.3rem;
        -moz-border-radius-bottomright: 0.3rem;
        border-bottom-right-radius: 0.3rem;
        -webkit-border-bottom-left-radius: 0.3rem;
        -moz-border-radius-bottomleft: 0.3rem;
        border-bottom-left-radius: 0.3rem;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

#contactFormModalMessage {
    padding: 30px;
    font-family: "D-DIN-BOLD", sans-serif;
}
/* Download Section*/
#downloadLinks {
    margin: 50px 0;
}

    .storeBadgeLarge {
        text-align: center;
        margin: 5px;
        width: 200px;
    }
@media (max-width: 500px) {

    .storeBadgeLarge {
        width: 100%;
    }
}

    #downloadLinksContainer {
        display: flex;
        margin: 0 0 5px 0;
        max-height: 75px;
        width: 100%;
        justify-content: center;
    }

.extraPadding {
    padding-bottom:50px;
}

