/*
|--------------------------------------------------------------------------
| AptaAdvantage Poop Checker
| Standalone Laravel Base Styles
|--------------------------------------------------------------------------
|
| Replaces the WordPress theme dependency.
| stoolAIstyles_v1.css should be loaded AFTER this file.
|
*/


/* ==========================================================================
   RESET
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;

    margin: 0;
    padding: 0;

    background: #e4f2fa;
    color: #333;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: #55ade7;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* ==========================================================================
   PAGE
   ========================================================================== */

main,
.poop-checker-page {
    width: 100%;

    margin: 0 auto;

    padding:
        0
        20px
        60px;
}


/* ==========================================================================
   WIDGET
   ========================================================================== */

#stoolCheckerWidget {
    width: 100%;
    max-width: 960px;

    margin:
        0
        auto
        60px;

    padding: 0;

    color: #333;
}


/* ==========================================================================
   SCANNER
   ========================================================================== */

#scanner_container {
    width: 100%;

    margin: 0 auto;
    padding: 0;

    text-align: center;
}

#scanner_banner {
    width: 100%;

    margin: 0 auto;
    padding: 0;

    text-align: center;
}

#scanner_banner img {
    display: block;

    width: 100%;
    max-width: 760px;

    margin: 0 auto;
}


/* ==========================================================================
   SCANNER PHOTO
   ========================================================================== */

#scanner_container_photoHolder {
    position: relative;

    width: 100%;
    max-width: 760px;

    margin:
        0
        auto
        20px;

    text-align: center;
}

#scanner_container_photoHolder img {
    display: block;

    width: 100%;
    max-width: 760px;

    margin: 0 auto;
}


/* ==========================================================================
   SCANNER FORM / CARD
   ========================================================================== */

#scanner_container_form {
    width: 100%;

    margin: 0 auto;

    padding:
        42px
        30px
        55px;

    background: rgba(255, 255, 255, 0.38);

    border-radius: 24px;

    text-align: center;
}

#scanner_container_form > div {
    width: 100%;
}


/* ==========================================================================
   SECTION DIVIDERS
   ========================================================================== */

#scanner_container_form hr {
    display: block;

    width: 100%;
    height: 2px;

    margin:
        16px
        0;

    padding: 0;

    border: 0;

    background: rgba(255, 255, 255, 0.95);
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

#scanner_container_form h1,
#scanner_container_form h2,
#scanner_container_form h3,
#scanner_container_form h4 {
    margin:
        0
        0
        8px;

    padding: 0;

    color: #69b8eb;

    font-weight: 700;
    line-height: 1.2;

    text-align: center;
}

#scanner_container_form h1 {
    font-size: 25px;
}

#scanner_container_form h2 {
    font-size: 21px;
}

#scanner_container_form h3 {
    font-size: 19px;
}

#scanner_container_form h4 {
    font-size: 17px;
}

#scanner_container_form p {
    margin:
        4px
        0
        8px;

    padding: 0;
}

#scanner_container_form label {
    color: #333;
}


/* ==========================================================================
   UPLOAD
   ========================================================================== */

#btn_AIStoolChecker_upload {
    display: inline-block;

    margin: 0 auto;

    cursor: pointer;

    color: #69b8eb;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;

    text-align: center;
}

#btn_AIStoolChecker_upload:hover {
    opacity: 0.85;
}


/* ==========================================================================
   STANDARD INPUTS
   ========================================================================== */

#scanner_container_form input[type="text"],
#scanner_container_form input[type="email"],
#scanner_container_form input[type="number"],
#scanner_container_form input[type="date"],
#scanner_container_form select {
    min-height: 43px;

    padding:
        7px
        11px;

    border: 2px solid #333;
    border-radius: 0;

    background: #fff;
    color: #333;

    outline: none;
}

#scanner_container_form input[type="text"]:focus,
#scanner_container_form input[type="email"]:focus,
#scanner_container_form input[type="number"]:focus,
#scanner_container_form input[type="date"]:focus,
#scanner_container_form select:focus {
    border-color: #69b8eb;
}


/* ==========================================================================
   DATE
   ========================================================================== */

#scanner_container_form input[type="date"] {
    display: inline-block;

    width: auto;

    margin: 0 auto;

    background: #fff;
}


/* ==========================================================================
   SELECT
   ========================================================================== */

#scanner_container_form select {
    display: inline-block;

    width: 280px;
    max-width: 100%;

    margin: 0 auto;

    cursor: pointer;

   