﻿/*
██████╗  █████╗ ███████╗███████╗    ███████╗████████╗██╗   ██╗██╗     ███████╗
██╔══██╗██╔══██╗██╔════╝██╔════╝    ██╔════╝╚══██╔══╝╚██╗ ██╔╝██║     ██╔════╝
██████╔╝███████║███████╗█████╗      ███████╗   ██║    ╚████╔╝ ██║     █████╗  
██╔══██╗██╔══██║╚════██║██╔══╝      ╚════██║   ██║     ╚██╔╝  ██║     ██╔══╝  
██████╔╝██║  ██║███████║███████╗    ███████║   ██║      ██║   ███████╗███████╗
╚═════╝ ╚═╝  ╚═╝╚══════╝╚══════╝    ╚══════╝   ╚═╝      ╚═╝   ╚══════╝╚══════╝
*/
:root {
    --color-brand: #1d3b71;
    --color-dark: #272D33;
    --color-light: #868F97;
    --color-lightest: #f8f9fa;
    --font-stack: system-ui, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
    font-size: 10px;
}

body {
    color: var(--color-dark);
    font-family: var(--font-stack);
    font-size: 1.6em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 5em;
    position: relative;
    width: 100vw;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 4em;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 1.8em;
    }
}

@media (min-width: 1400px) {
    body {
        font-size: 2em;
    }
}


/*
██╗      █████╗ ██╗   ██╗ ██████╗ ██╗   ██╗████████╗
██║     ██╔══██╗╚██╗ ██╔╝██╔═══██╗██║   ██║╚══██╔══╝
██║     ███████║ ╚████╔╝ ██║   ██║██║   ██║   ██║
██║     ██╔══██║  ╚██╔╝  ██║   ██║██║   ██║   ██║
███████╗██║  ██║   ██║   ╚██████╔╝╚██████╔╝   ██║
╚══════╝╚═╝  ╚═╝   ╚═╝    ╚═════╝  ╚═════╝    ╚═╝
*/
.main-content {
    border-top: solid 5px var(--color-brand);
}

.site-footer {
    bottom: 0;
    left: 0;
    padding: .5em .5em .75em;
    position: absolute;
    right: 0;
}

    .site-footer hr {
        margin: 0 0 .5em;
    }

    .site-footer .content {
        line-height: 1.125;
        margin: 0;
    }

.site-header {
    background-color: var(--color-brand);
    border-bottom: solid 2px var(--color-lightest);
    color: var(--color-lightest);
    font-size: 2em;
    font-weight: 400;
    line-height: 2;
    text-align: center;
}

@media (min-width: 768px) {
    .site-header {
        text-align: left;
    }
}


/*
██╗███╗   ███╗ ██████╗      ██████╗ █████╗ ██████╗ ████████╗██╗   ██╗██████╗ ███████╗
██║████╗ ████║██╔════╝     ██╔════╝██╔══██╗██╔══██╗╚══██╔══╝██║   ██║██╔══██╗██╔════╝
██║██╔████╔██║██║  ███╗    ██║     ███████║██████╔╝   ██║   ██║   ██║██████╔╝█████╗  
██║██║╚██╔╝██║██║   ██║    ██║     ██╔══██║██╔═══╝    ██║   ██║   ██║██╔══██╗██╔══╝  
██║██║ ╚═╝ ██║╚██████╔╝    ╚██████╗██║  ██║██║        ██║   ╚██████╔╝██║  ██║███████╗
╚═╝╚═╝     ╚═╝ ╚═════╝      ╚═════╝╚═╝  ╚═╝╚═╝        ╚═╝    ╚═════╝ ╚═╝  ╚═╝╚══════╝
*/
#Photo,
#Video {
    border: 1px solid black;
    box-shadow: 2px 2px 3px black;
    width: 320px;
    height: 240px;
}

.camera,
.output {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: auto;
}

    .camera button {
        border-radius: 50%;
        bottom: 16px;
        height: 56px;
        left: 50%;
        outline: none;
        position: absolute;
        transform: translateX(-50%);
        width: 56px;
    }

    .camera svg {
        fill: var(--color-light);
        width: 28px;
    }


/*
██╗  ██╗███████╗██╗     ██████╗ ███████╗██████╗ ███████╗
██║  ██║██╔════╝██║     ██╔══██╗██╔════╝██╔══██╗██╔════╝
███████║█████╗  ██║     ██████╔╝█████╗  ██████╔╝███████╗
██╔══██║██╔══╝  ██║     ██╔═══╝ ██╔══╝  ██╔══██╗╚════██║
██║  ██║███████╗███████╗██║     ███████╗██║  ██║███████║
╚═╝  ╚═╝╚══════╝╚══════╝╚═╝     ╚══════╝╚═╝  ╚═╝╚══════╝
*/
#LicenseCode {
    max-width: 320px;
}

/* Bootstrap override: buttons are too small when typography scales up */
.btn {
    font-size: .875em;
    line-height: 1.3333333;
    padding: .5em 1em .625em;
}

/* Add styling to MVC auto-generated error class */
.field-validation-error {
    display: block;
    font-size: smaller;
    font-weight: 400;
    padding: .5em 0;
}

/* Bootstrap override: control font is too small when typography scales up */
.form-control {
    font-size: .875em;
}

.page-header {
    border-bottom: 1px solid #eee;
    margin: 40px 0 20px;
    padding-bottom: 9px;
}

.well {
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    margin-bottom: 1em;
    min-height: 1em;
    padding: 1em;
}