﻿
body {
    display: flex;
    flex-direction: column;
    color: var(--primary-dark);
    background-color: white;
    justify-content: flex-start;
    align-items: center;
    font-family: "Futura", Helvetica, Arial;
    font-size: 20pt;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}
    a.blue {
        color: blue !important;
    }
    a.white {
        color: white !important;
    }
    a:link {
        color: inherit;
    }
    a:visited {
        color: inherit;
    }

input[type='text'], input[type='number'], input[type='tel'], input[type='password'], input[type='email'], input[type='date'] {
    font-size: 16pt;
    background-color: #d4fff860;
    /*padding: 2px;*/
    -webkit-appearance: none;
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    -ms-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type='checkbox'] {
    font-size: 16pt;
    background-color: #d4fff860;
    padding: 2px;
    margin-right: 8px;
    -ms-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type='radio'] {
    font-size: 16pt;
    background-color: #d4fff860;
    padding: 2px;
    margin-left: 8px;
    margin-right: 8px;
    -ms-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
    input.missed {
        background-color: #ff949430;
    }

select {
    font-size: 16pt;
    background-color: #d4fff860;
    /*padding: 2px;*/
    -webkit-appearance: none;
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    -ms-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
}

    select.missed {
        background-color: #ff949430;
    }

    select:focus {
        background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
        background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        background-repeat: no-repeat;
        border-color: green;
        outline: 0;
    }

textarea {
    font-size: 16pt;
    background-color: #d4fff860;
    /*padding: 2px;*/
    -webkit-appearance: none;
    border: 1px solid #a0a0a0;
    border-radius: 3px;
}
    textarea.missed {
        background-color: #ff949430;
    }

hr {
    background-color: var(--white);
    height: 4px;
    width: 90%;
}

::placeholder {
    color: #a9a9a9;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #a9a9a9;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #a9a9a9;
}

:root {
    --primary-color: black;
    --secondary-color: #343e56;
    --key-area-color: #4D98CE;
    --area-color: #C6C3C380;
    --button-back: #65bcad;
    --item-hover: #6167d1;
    --primary: #2F9AD0;
    --primary-dark: #303E58;
    --secondary-p: #D9408A;
    --secondary-y: #F9B846;
    --secondary-g: #61BE7B;
    --gray: #B6B8BA;
    --muted: #B6B8BA;
    --off-white: #F3F4F4;
    --white: white;
}

.primary {
    color: var(--primary) !important;
}
.primary-dark {
    color: var(--primary-dark) !important;
}
.secondary-p {
    color: var(--secondary-p) !important;
}
.secondary-y {
    color: var(--secondary-y) !important;
}
.secondary-g {
    color: var(--secondary-g) !important;
}
.off-white {
    color: var(--off-white);
}
.gray {
    color: var(--gray);
}
.back-primary {
    background-color: var(--primary) !important;
}
.back-primary-dark {
    background-color: var(--primary-dark) !important;
}
.back-red {
    background-color: red !important;
    border-color: red !important;
}
.back-secondary-p {
    background-color: var(--secondary-p) !important;
}
.back-secondary-y {
    background-color: var(--secondary-y) !important;
}
.back-secondary-g {
    background-color: var(--secondary-g) !important;
}
.back-off-white {
    background-color: var(--off-white);
}

.link {
    display: flex;
    flex-direction: row;
}

.link-about {
    /*display: none;*/
}
.link-resources {
    /*display: none;*/
}

.full-width {
    width: 100%;
}

#page {
    display: flex;
    flex-direction: column;
    width: 1200px;
}
    #page.wide {
        min-width: 1200px;
        width: auto;
    }

.page-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
    .page-section.focus {
        background-color: var(--off-white);
    }

    .page-section.medium {
        background-color: #b9bcbe;
    }

    .page-section.dark {
        background-color: var(--primary-dark);
    }
.page-section-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 1200px;
    justify-content: stretch;
    align-items: center;
    text-align: center;
    padding: 36px 0 36px 0;
}
    .page-section-content.narrow {
        padding: 0;
    }

.page-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    background-color: var(--primary-dark);
}
.page {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 1200px;
}

#header-area {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 600px;
    color: var(--white);
    background-color: var(--primary-dark);
    overflow:visible;
}
    #header-area.compact {
        height: 275px;
    }
    #header-area.compact {
        height: 300px;
    }
    #header-area.medium {
        height: 350px
    }
    #header-area.mini {
        height: 160px;
    }
    .header-item {
        display: flex;
        flex-grow: 0;
        justify-content: flex-start;
        width: auto;
        font-size: 16pt;
        padding: 16px;
        cursor: pointer;
    }
    .header-item:hover {
        /*color: var(--off-white);*/
        text-decoration: underline;
    }
    .header-item.narrow {
        justify-content: flex-start;
        align-items: flex-start;
        font-size: 12pt;
        padding: 0;
    }
    .header-item.focus {
        color: var(--secondary-p);
        background-color: var(--white);
        justify-content: center;
        align-items: center;
        height: 34px;
        width: 120px;
        border-radius: 17px;
        margin-left: 20px;
        padding: 0;
    }
    .header-item.focus-r {
        color: var(--white);
        background-color: var(--secondary-p);
        justify-content: center;
        align-items: center;
        height: 24px;
        width: 120px;
        font-size: 12pt;
        border-radius: 17px;
        margin-left: 20px;
        padding: 0;
    }

.footer-item {
    display: flex;
    flex-grow: 0;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    padding: 0px;
    cursor: pointer;
}
    .footer-item:hover {
        text-decoration: underline;
    }

.header-logo {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 130px;
    height: 130px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/images/ffc-logo.png');
}
.footer-logo {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 130px;
    height: 130px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/images/ffc-logo-nmha.png');
}
.base-logo {
    position: relative;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/images/ffc-logo.png');
}

.header-nav {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    top: 40px;
    left: 180px;
    /*width: 800px;*/
    height: auto;
}

.header-login {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    top: 20px;
    right: 34px;
    font-size: 12pt;
}
    .header-login:hover {
        color: var(--off-white);
        text-decoration: underline;
    }
    .header-login.footer {
        color: var(--white);
        top: 10px;
        right: unset;
        left: 50px;
    }

.header-login.pop {
    color: var(--white);
    position: relative !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    font-size: 24pt !important;
}

.header-menu {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--white);
    padding: 12px;
    cursor: pointer;
    z-index: 10;
}
    .header-menu.icon-open {
        background-image: url('../images/icon-open.png');
        background-position: center;
        background-repeat: no-repeat;
    }
    .header-menu.icon-close {
        background-image: url('../images/icon-close.png');
        background-position: center;
        background-repeat: no-repeat;
    }

.header-page {
/*    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
}
.header-page-text {
    position: absolute;
    top: 230px;
    left: 55px;
    color: var(--white);
    font-size: 28pt;
}
    .header-page-text.compact {
        top: 180px;
    }
    .header-page-text.mini {
        left: 170px;
        top: 50px;
    }
    .header-page-text.bold {
        font-family: "Futura Bold", Helvetica, Arial;
        font-weight: normal;
    }

.header-member {
    position: absolute;
    bottom: 0px;
    right: 150px;
    width: 341px;
    height: 460px;
    background-image: url('../images/flex-member-1.png');
    background-size: contain;
    background-repeat: no-repeat;
}
    .header-member.compact {
        right: 110px;
        width: 225px;
        height: 225px;
    }
    .header-member.placed {
        position: relative;
        width: 250px;
        height: 250px;
        bottom: unset;
        right: unset;
        left: unset;
    }
    .header-member.one      { background-image: url('../images/flex-member-1.png'); }
    .header-member.two      { background-image: url('../images/flex-member-2.png'); }
    .header-member.three    { background-image: url('../images/flex-member-3.png'); }
    .header-member.four     { background-image: url('../images/flex-member-4.png'); }
    .header-member.five     { background-image: url('../images/flex-member-5.png'); }
    .header-member.six      { background-image: url('../images/flex-member-6.png'); }

.font-small {
    font-size: 10pt;
}
.font-medium {
    font-size: 12pt;
}

#mobile-learn-more {
    display: none;
}

#drop-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    background-color: var(--primary-dark);
    display: none;
    padding-top: 80px;
    z-index: 10;
}
.drop-menu-item {
    display: flex;
    color: var(--white);
    justify-content: flex-start;
    align-items: center;
    font-size: 24pt;
    padding: 12px;
    margin-left: 40px
}
    .drop-menu-item:hover {
        color: var(--item-hover);
        background-color: var(--key-area-color);
    }
    .drop-menu-item.focus {
        color: var(--secondary-p);
        background-color: var(--white);
        justify-content: center;
        align-items: center;
        height: 50px;
        width: 180px;
        border-radius: 25px;
        padding: 0;
    }

.page-counters {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 16px;
    right: 16px;
}
.page-counter {
    width: 40px;
    height: 4px;
    margin: 2px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.25);
}
    .page-counter.current {
        border: 1px solid rgba(255, 255, 255, 0.75);
        background-color: rgba(255, 255, 255, 0.75);
    }

.input-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px;
}

.input {
    /*background-color: var(--white);*/
    padding: 12px 16px 12px 16px;
    width: 415px;
}
    .input.tiny {
        width: 200px !important;
    }
    .input.narrow {
        width: 415px;
    }
    .input.wide {
        width: 880px;
    }
    .input.small {
        font-size: 11pt;
        padding: 6px;
        width: 400px;
    }
    .input-field {
        position: relative;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        font-size: 14pt;
    }
    .input.date {
        padding: 9px 16px 9px 16px;
    }
    .input.file {
        position: relative;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        z-index: 2;
    }

    .input.file-label {
        position: absolute;
        top: 0;
        left: 0;
    }

.upload {
    display: block;
    position: absolute;
    top: 6px;
    right: 6px;
    height: 36px;
    width: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: var(--primary);
    border-left: 1px solid lightblue;
    border-top: 1px solid lightblue;
    border-right: 1px solid darkblue;
    border-bottom: 1px solid darkblue;
    border-radius: 4px;
    cursor: pointer;
}

    .upload:active {
        transform: translateY(2px);
    }

.media-preview {
    height: 250px;
    width: 415px;
    text-align: center;
    vertical-align: central;
    background-color: #d4fff860;
    border: 1px solid #a0a0a0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('/images/image-upload.png');
    border-radius: 4px;
    padding: 12px 16px 12px 16px;
    overflow: hidden;
}
    .media-preview.missed {
        background-color: #ff949430;
    }

.form-field {
    display: flex;
    flex-direction: column;
    font-size: 12pt;
    width: 100%;
}

.label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-size: 16pt;
    min-width: 120px;
    margin: 4px;
}

.label-r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    font-size: 16pt;
    min-width: 120px;
    margin: 4px;
}

.label-form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-grow: 1;
    text-align: left;
    font-size: 12pt;
    min-width: 100%;
    background-color: var(--off-white);
    padding: 8px;
}
    .label-form.missed {
        color: red;
    }

.data {
    position: relative;
    display: flex;
    align-items: center;
    margin: 8px;
}

.field {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    color: var(--primary);
    background-color: var(--off-white);
    margin: 4px;
    padding: 4px;
    min-height: 18px;
    min-width: 400px;
    border-radius: 4px;
    text-wrap: normal;
}

    .field.small {
        min-width: 300px;
    }

.pop-up-area {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.20);
    z-index: 100;
}

.pop-up {
    min-width: 400px;
    max-width: 600px;
    color: var(--primary-dark);
    background-color: white;
    padding: 12px;
    border-radius: 24px;
    -webkit-box-shadow: 0px 6px 15px 5px rgba(0,0,0,0.5);
    box-shadow: 0px 6px 15px 5px rgba(0,0,0,0.5);
}
    .pop-up .pop-up-title {
        color: var(--primary);
        font-weight: bold;
        font-size: 24pt;
        text-align: center;
    }
    .pop-up .pop-up-text {
        text-align: center;
        margin: 24px;
    }

    .pop-up .pop-up-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px;
        color: var(--white);
        background-color: var(--secondary-g);
        font-size: 12pt;
        font-weight: bold;
        border-radius: 29px;
        border: 4px solid var(--secondary-g);
        margin: 0 4px 0 4px;
        padding: 12px 12px 12px 30px;
        cursor: pointer;
        overflow: hidden;
    }

.onoffswitch {
    position: relative;
    width: 60px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 30px;
    width: 30px;
    padding: 0;
    line-height: 30px;
    border: 1px solid #a0a0a0;
    border-radius: 6px;
    margin-right: 6px;
    background-color: #d4fff860;
    background-image: none;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
}

/*    .onoffswitch-label:before {
        content: "";
        display: block;
        width: 30px;
        margin: 0px;
        background: #ffffff;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 26px;
        border: 2px solid #E3E3E3;
        border-color: #b10000;
        border-radius: 10px;
    }*/

.onoffswitch-label-s {
    height: 14px;
    border: 2px solid black;
    border-color: black;
    background-color: black;
}

.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-image: url('/images/item-yes.png');
    background-color: #49E845;
}

    .onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
        border-color: #49E845;
    }

        .onoffswitch-checkbox:checked + .onoffswitch-label:before {
            right: 0px;
        }

#footer-area {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1200px;
    height: 175px;
    margin: 0 auto;
}

.footer-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-size: 9pt;
    top: 20px;
    left: 170px;
}

.footer-nav {
    display: flex;
    flex-direction: row;
}

.filter {
    display: flex;
    justify-content: center;
    font-size: 12pt;
    min-width: 100px;
    color: var(--primary-dark);
    background-color: var(--off-white);
    padding: 6px;
    margin: 2px;
    cursor: pointer;
}
    .filter.selected {
        color: var(--white);
        background-color: var(--primary);
    }
    .filter:first-child {
        border-radius: 6px 0 0 6px;
    }
    .filter:last-child {
        border-radius: 0 6px 6px 0;
    }

.filter-type {
    display: flex;
    justify-content: center;
    font-size: 12pt;
    min-width: 100px;
    color: var(--primary-dark);
    background-color: var(--off-white);
    padding: 6px;
    margin: 2px;
    cursor: pointer;
}

    .filter-type.selected {
        color: var(--white);
        background-color: var(--primary-dark);
    }

    .filter-type:first-child {
        border-radius: 6px 0 0 6px;
    }

    .filter-type:last-child {
        border-radius: 0 6px 6px 0;
    }

.button-base {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 280px;
    color: var(--white);
    background-color: var(--secondary-g);
    font-size: 12pt;
    border-radius: 29px;
    border: 4px solid var(--secondary-g);
    padding: 12px 12px 12px 30px;
    cursor: pointer;
    background-repeat: no-repeat;
}

.button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 280px;
    color: var(--white);
    background-color: var(--secondary-g);
    font-size: 12pt;
    border-radius: 29px;
    border: 4px solid var(--secondary-g);
    padding: 12px 12px 12px 30px;
    cursor: pointer;
    background-image: url('../images/arrow-w.png');
    background-position: 260px 3px;
    background-repeat: no-repeat;
}
    .button:hover {
        color: var(--secondary-g);
        background-color: var(--white);
        border: 4px solid var(--secondary-g);
        background-image: url('../images/arrow-g.png');
        animation: arrow-bounce .75s infinite;
    }
    .button.micro {
        border: 4px solid var(--primary-dark);
        background-color: var(--primary-dark);
        padding: 6px;
        font-size: 10pt;
        justify-content: center;
        width: 80px;
        height: 20px;
        padding: 0;
    }
        .button.micro:hover {
            color: var(--primary-dark);
            border: 4px solid var(--primary-dark);
            background-color: var(--white);
        }
    .button.mini {
        border: 4px solid var(--primary-dark);
        background-color: var(--primary-dark);
        font-size: 10pt;
        width: 100px;
        padding: 6px;
    }

        .button.mini:hover {
            color: var(--primary-dark);
            border: 4px solid var(--primary-dark);
            background-color: var(--white);
        }
    .button.blue {
        background-color: var(--primary);
        border: 4px solid var(--primary);
        background-image: url('../images/arrow-w.png');
    }
        .button.blue:hover {
            color: var(--primary);
            background-color: var(--white);
            background-image: url('../images/arrow-b.png');
        }
    .button.dark {
        background-color: var(--primary-dark);
        border: 4px solid var(--primary-dark);
        background-image: url('../images/arrow-w.png');
    }

        .button.dark:hover {
            color: var(--primary-dark);
            background-color: var(--white);
            border: 4px solid var(--primary-dark);
            background-image: url('../images/arrow-d.png');
        }
    .button.pink {
        background-color: var(--secondary-p);
        border: 4px solid var(--secondary-p);
        background-image: url('../images/arrow-w.png');
    }
        .button.pink:hover {
            color: var(--secondary-p);
            background-color: var(--white);
            background-image: url('../images/arrow-p.png');
        }
    .button.yellow {
        background-color: var(--secondary-y);
        border: 4px solid var(--secondary-y);
        background-image: url('../images/arrow-w.png');
    }
        .button.yellow:hover {
            color: var(--secondary-y);
            background-color: var(--white);
            background-image: url('../images/arrow-y.png');
        }

    .button.narrow {
        width: 200px;
        background-position: 180px 3px;
    }
        .button.narrow:hover {
            width: 200px;
            background-position: 180px 3px;
            animation: arrow-bounce-narrow .75s infinite !important;
        }
    .button.button-small {
        width: 140px;
        background-position: 130px 3px;
        font-weight: normal;
    }
        .button.button-small:hover {
            background-position: 130px 3px;
            animation: arrow-bounce-small .75s infinite !important;
        }
    .button.giant {
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 150px;
        width: 700px;
        font-family: "Futura Bold", Helvetica, Arial;
        font-size: 20pt;
        font-weight: bold;
        background-color: #E6E4E4;
        padding: 0;
        border-radius: 75px;
        border: 1px solid darkgrey;
    }

    .button.pin-bottom {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        margin: 0 auto;
    }

    .button.left {
        justify-content: flex-end;
        background-image: url('../images/arrow-l-w.png') !important;
        background-position: 30px 3px;
        padding: 12px 30px 12px 12px;
    }

        .button.left:hover {
            /*color: var(--secondary-g);*/
            background-color: var(--white);
            /*border: 4px solid var(--secondary-g);*/
            background-image: url('../images/arrow-l-b.png') !important;
            animation: arrow-bounce-left .75s infinite;
        }

.vaccine-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 160px;
    height: 160px;
    font-size: 13pt;
    padding: 6px;
    margin: 4px;
    border-radius: 12px;
    background-color: var(--off-white);
}

    .vaccine-box.add-vaccine {
        justify-content: center;
        font-weight: bold;
        color: white;
        background-color: var(--secondary-g);
        cursor: pointer;
    }

@keyframes arrow-bounce {
    0% {
        background-position: 260px 3px;
    }

    50% {
        background-position: 270px 3px;
    }

    100% {
        background-position: 260px 3px;
    }
}

@keyframes arrow-bounce-left {
    0% {
        background-position: 40px 3px;
    }

    50% {
        background-position: 30px 3px;
    }

    100% {
        background-position: 40px 3px;
    }
}

@keyframes arrow-bounce-narrow {
    0% {
        background-position: 170px 3px;
    }

    50% {
        background-position: 180px 3px;
    }

    100% {
        background-position: 170px 3px;
    }
}

@keyframes arrow-bounce-small {
    0% {
        background-position: 120px 3px;
    }

    50% {
        background-position: 130px 3px;
    }

    100% {
        background-position: 120px 3px;
    }
}

@keyframes arrow-bounce-bottom {
    0% {
        background-position: 190px 104px;
    }

    50% {
        background-position: 200px 104px;
    }

    100% {
        background-position: 190px 104px;
    }
}

.section {
    position: relative;
    display: flex;
    /*width: 100%;*/
    justify-content: stretch;
    align-items: center;
    text-align: center;
    /*border-bottom: 1px solid silver;*/
    padding: 36px 12px 36px 12px;
}
    .section:not(:first-child) {
        /*border-top: 1px solid silver;*/
        /*padding-top: 36px;*/
    }
    .section:not(:last-child) {
        /*padding-bottom: 36px;*/
    }

    .section.focus {
        background-color: var(--off-white);
    }
    .section.dark {
        background-color: var(--primary-dark);
    }
    .section.narrow {
        padding: 0;
    }

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Futura", Helvetica, Arial;
    font-size: 20pt;
    font-weight: bold;
    color: var(--primary);
    padding: 2px;
}
    .section-title.wide {
        text-align: center;
        width: 100%;
    }

.section-text {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    padding: 12px;
}
    .section-text.narrow {
        width: 90%;
    }

.title-1 {
    font-size: 20pt;
    font-weight: bold;
}

.widget-area {
    position: relative;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 6px;
    overflow: hidden;
}
.widget {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    height: 220px;
    width: 220px;
    font-size: 40pt;
    border-radius: 12px;
    background-color: var(--off-white);
    margin: 6px;
    cursor: pointer;
    overflow: hidden;
}
    .widget.chart {
        width: 100%;
        height: 300px;
    }
    .widget-label {
        position: absolute;
        text-align: center;
        left: 0;
        right: 0;
        bottom: 10px;
        font-size: 16pt;
        font-weight: bold;
        color: var(--secondary-g);
    }

.info-card-area {
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
    flex-direction: row;
    flex-wrap: wrap;
}

.info-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-dark);
    background-color: var(--off-white);
    width: 400px;
    height: 125px;
    font-family: "Futura", Helvetica, Arial;
    font-size: 16pt;
    font-weight: normal;
    /*border: 1px solid rgba(192, 192, 192, 0.4);*/
    margin: 12px;
    padding: 12px;
    background-image: url('../images/arrow-p.png');
    background-position: 190px 104px;
    background-repeat: no-repeat;
    cursor: pointer;
}
    .info-panel:hover {
        color: var(--white);
        background-color: var(--secondary-p);
        background-image: url('../images/arrow-w.png');
        animation: arrow-bounce-bottom .75s infinite;
    }
    .info-panel.white {
        background-color: var(--white);
    }
        .info-panel.white:hover {
            color: var(--white);
            background-color: var(--secondary-p);
        }
.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: var(--primary);
    background-color: var(--white);
    width: 250px;
    min-height: 350px;
    font-family: "Futura", Helvetica, Arial;
    font-size: 20pt;
    font-weight: normal;
    border: 1px solid rgba(192, 192, 192, 0.4);
    margin: 12px;
    padding: 6px;
}
    .info-card.short {
        min-height: 260px;
    }
    .info-card.baseline {
        justify-content: center;
        min-height: 200px;
    }

.info-card-hover:hover {
    border: 1px solid var(--primary);
    cursor: pointer;
}

.info-card-icon {
    width: 100px;
    height: 100px;
    background-image: url('../images/icons.png');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 500px 200px;
    /*background-color: var(--primary);*/
    margin-top: 24px;
}
    .info-card-icon.chat {
        background-position: -100px 0;
    }
    .info-card-icon.register {
        background-position: 0 0;
    }
    .info-card-icon.upload-image {
        background-position: -200px 0;
    }
    .info-card-icon.paid {
        background-position: -300px 0;
    }

    .info-card-icon.agency {
        background-position: 0 -100px;
    }
    .info-card-icon.worker {
        background-position: -100px -100px;
    }
    .info-card-icon.consumer {
        background-position: -200px -100px;
    }
    .info-card-icon.pharmacy {
        background-position: -300px -100px;
    }


.info-card-title {
    font-family: "Futura", Helvetica, Arial;
    font-size: 18pt;
    font-weight: normal;
    text-transform: capitalize;
    color: var(--primary);
    padding: 4px;
}
    .info-card-title.bold {
        font-weight: bold;
    }
.info-card-text {
    font-family: "Futura", Helvetica, Arial;
    font-size: 13pt;
    font-weight: normal;
    color: var(--primary-dark);
    padding: 4px;
}

.info-card-footer {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    font-family: "Futura", Helvetica, Arial;
    font-size: 13pt;
    font-weight: normal;
    color: var(--primary-dark);
}

.bubble-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: var(--primary);
    width: 225px;
    height: 225px;
    font-family: "Futura", Helvetica, Arial;
    font-size: 20pt;
    font-weight: normal;
    border-radius: 12px;
    margin: 12px;
    padding: 12px;
}
.bubble-arrow {
    position: relative;
    display: flex;
    width: 30px;
    /*height: 225px;*/
    margin: 6px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/images/arrow-d.png");
}

#gather-frame {
    width: 100%;
    height: 570px;
}

#dashboard-title {
    font-family: "Futura Bold", Helvetica, Arial;
    font-size: 24pt;
    /*text-transform: uppercase;*/
}

.dashboard-title {
    font-family: "Futura Bold", Helvetica, Arial;
    font-size: 24pt;
    /*text-transform: uppercase;*/
}

.pop-number {
    position: absolute;
    top: -15px;
    left: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    background-color: var(--secondary-p);
    font-family: "Futura", Helvetica, Arial;
    font-size: 14pt;
    font-weight: normal;
    overflow: hidden;
    border: 4px solid var(--off-white);
    border-radius: 24px;
}

.image-panel {
    display: flex;
    width: 333.3333px;
    height: 333.3333px;
    flex-shrink: 0;
    justify-content: space-between;
    background-image: url('../images/slide-flag.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
    .image-panel.flag {
        background-image: url('../images/slide-flag.png');
    }
    .image-panel.nurse {
        background-image: url('../images/slide-nurse.png');
    }
    .image-panel.hands {
        background-image: url('../images/slide-hands.png');
    }
    .image-panel.flag-c {
        background-image: url('../images/slide-flag-c.png');
    }
    .image-panel.nurse-c {
        background-image: url('../images/slide-nurse-c.png');
    }
    .image-panel.hands-c {
        background-image: url('../images/slide-hands-c.png');
    }

.image-panel-text {
    display: flex;
    flex-grow: 1;
    min-width: 340px;
    min-height: 237.3333px;
    max-width: 600px;
    padding: 12px 24px 12px 24px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.image-preview-area {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
}
.image-preview-frame {
    background-color: white;
    border-radius: 4px;
    border: 1px solid silver;
    box-shadow: black 0 6px 10px;
    overflow: hidden;
}

.image-preview {
    height: 400px;
    width: auto;
    min-width: 300px
}

.bubble {
    border-radius: 50px;
    width: 95%;
    height: auto;
    background-color: var(--off-white);
    border: 1px solid var(--gray);
    padding: 12px;
}

.social-icons {
    position: absolute;
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
    top: 45px;
    right: 20px;
}
.social-icons.footer {
    top: 4px;
}
    .social-icons.pop-footer {
        top: 36px;
        left: 30px;
        right: unset;
    }
.social-icon {
    display: flex;
    width: 24px;
    height: 24px;
    background-image: url('../images/social-icons.png');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 96px 24px;
    margin: 12px;
    cursor: pointer;
}
    .social-icon.dark {
        background-image: url('../images/social-icons-b.png');
    }
    .social-icon.facebook {
        background-position: 0 0;
    }
    .social-icon.twitter {
        background-position: -24px 0;
    }
    .social-icon.instagram {
        background-position: -48px 0;
    }


.map-a {
    width: 400px;
    height: 250px;
    background-image: url('../images/us-map-c.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#gather-video {
    width: 500px;
    height: 300px;
}

.dr-smith {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 350px;
    font-size: 24pt;
    background-color: #b9bcbe;
}
.dr-smith-quote {
    padding: 36px;
}

.dr-smith-header {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 350px;
    height: 350px;
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/dr-smith-2.png');
}

.dr-smith-image {
    position: relative;
    min-width: 400px;
    width: 400px;
    height: 400px;
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/dr-smith.png');
}

.flex {
    display: flex;
}

.flex-justify-start {
    justify-content: flex-start;
}

.flex-align-center {
    align-items: center;
}

.flex-grow {
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flow-row {
    flex-direction: row;
}

.flow-column {
    flex-direction: column;
}

.nav-bar {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    width: 100%;
    /*border-radius: 30px;*/
    overflow: hidden;
}
.nav-bar-item {
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
    align-items: center;
    min-width: 50%;
    width: auto;
    height: 60px;
    /*color: white;*/
/*    background-color: var(--primary);
    font-size: 15pt;
    font-weight: bold;*/
    /*padding: 0 12px 0 12px;*/
    /*margin: 1px;*/
    /*padding: 6px;*/
    /*cursor: pointer;*/
}
    .nav-bar-item:hover {
        /*background-color: #80c1ef;*/
    }

    .nav-bar-item.white {
        background-color: var(--white);
    }
    .nav-bar-item.white:hover {
        background-color: var(--white);
    }

    .nav-bar-item.right {
        justify-content: flex-end;
    }

.table-list {
    width: 100%;
    font-size: 12pt;
}
.dataTables_wrapper {
    font-size: 12pt;
    width: 100%;
}
.dataTables_info {
    font-size: 12pt;
}
.paginate_button {
    font-size: 12pt;
}

th {
    color: var(--white);
    background-color: var(--primary-dark);
}

.table-cell {
    text-align: left;
}

.spacer {
    text-align: center;
    width: 100%;
    height: 30px;
}

.form-area {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 12px;
    background-color: var(--off-white);
}

.half {
    margin: 12px;
    width: 50%;
}

.options-area {
    color: blue;
    justify-content: space-around;
}

.pointer {
    cursor: pointer;
}

/* FONTS */

@font-face {
    font-family: 'Futura';
    src: local('☺'), 
        url("fonts/futura.otf") format('opentype'), 
        url('fonts/futura.woff') format('woff'), 
        url('fonts/futura.ttf') format('truetype'), 
        url('fonts/futura.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Bold';
    src: local('☺'), 
        url("fonts/futura-bold.otf") format('opentype'), 
        url('fonts/futura-bold.woff') format('woff'), 
        url('fonts/futura-bold.ttf') format('truetype'), 
        url('fonts/futura-bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

#table-listing {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.grid-header {
    display: flex;
    flex-direction: row;
    /*flex-grow: 1;*/
    color: var(--white);
    background-color: var(--primary-dark);
    font-size: 12pt;
    width: 100%;
}
.grid-header-column {
    display: inline-flex;
    padding: 4px;
    margin: 1px;
    text-align: left;
}
    .grid-header-column.center {
        text-align: center;
    }
    .grid-header-column.right {
        text-align: right;
    }
.grid-row {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    width: 100%;
}
    .grid-row:hover {
        color: var(--off-white);
        background-color: var(--primary) !important;
        cursor: pointer;
    }
    .grid-row:nth-child(even) {
        background-color: var(--off-white);
    }
.grid-column {
    display: inline-flex;
    padding: 4px;
    margin: 1px;
    text-align: left;
    font-size: 12pt;
}

.agency-switch-row {
    min-width: 300px;
    width: 100%;
    font-size: 20pt;
    background-color: var(--off-white);
    padding: 12px;
    margin: 6px;
    border-radius: 6px;
    cursor: pointer;
}

/*  */
.block {
    display: block !important;
}
.relative { position: relative; }
.hidden {
    display: none;
}
.invisible {
    visibility: hidden;
}
.mobile {
    display: none;
}
.required {
    color: red;
    padding-left: 4px;
}
.error-message {
    font-size: 14pt;
    color: red;
}
.full-width {
    width: 100%;
}
.green {
    color: green;
}
.red {
    color: red;
}
.font-blue {
    color: blue !important;
}
.disclaimer {
    font-size: 10pt;
}
.centered {
    text-align: center;
}
.align-left {
    text-align: left
}
.justify-start {
    justify-content: flex-start !important;
}
.justify-center {
    justify-content: center !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-center {
    align-items: center !important;
}

.inline-media {
    position: relative;
    width: 1000px;
    height: auto;
}

.media-overlay {
}
.media-overlay::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, .2);
    background-image: url('/images/play.png');
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    cursor: pointer;
}

.bold {
    font-weight: bold;
}

.padded-left {
    padding-left: 24px;
}

.w80 {
    width: 80px;
}
.w100 { width: 100px; }
.w120 { width: 120px; }
.w200 { width: 200px; }
.w250 { width: 250px; }
.w300 { width: 300px; }
.w440 { width: 300px; }

.selected {
    color: white !important;
    background-color: cornflowerblue !important;
}

.loading {
    display: flex;
    width: 400px;
    height: 150px;
    background-image: url('/images/loading.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
}

.tango-orange {
    color: #ef631d;
}

.tango-grey {
    color: rgb(143, 143, 143);
}

.tango-small {
    font-size: 9pt;
}

.tango-pop {
    color: white; 
    font-size: 12pt;
    font-family: Arial; 
    padding: 0;
    background-color: #2c2d2d; 
    overflow-x: hidden;
    overflow-y: auto;
}

.tango-link {
    color:rgb(143, 143, 143) !important;
    text-decoration:underline;
}

.tango-wide {
    width: 95%;
}

@media only screen and (max-width: 1000px) {
    #page {
        width: 100%;
    }
    .page-section-content {
        width: 100%;
    }

    .desktop {
        display: none !important;
    }

    .mobile {
        display: flex;
    }

    .mobile-wrap {
        flex-wrap: wrap;
    }

    #mobile-section {
        display: none;
    }

    #mobile-learn-more {
        display: flex;
    }

    .section-text.narrow {
        width: 90%;
    }

    .header-item {
        display: none;
    }

    .header-item.logo {
        display: flex;
    }

    .header-member {
        left: 0;
        right: 0;
        background-position: center bottom;
        width: 100%;
        height: 275px;
    }

    .header-page-text {
        top: 160px;
        left: 40px;
        font-weight: bold;
    }

    #header-page-title.compact {
        top: 160px;
    }

    #footer-area { 
        width: 100%;
    }

    .footer-nav {
        visibility: hidden;
    }

    .footer-item {
        display: none;
    }

    .pop-up {
        min-width: 300px;
        max-width: 90vw;
    }

    .login-info {
        position: relative;
    }
    ..login-info.pop-menu {
        color: var(--white);
    }

    .section-title {
        justify-content: center;
        align-items: center;
        text-align: center;
        font-weight: bold;
        font-size: 16pt;
    }

    .info-card {
        min-width: 300px;
        min-height: 325px;
        font-size: 16pt;
        margin: 24px;
        padding: 12px;
    }

        .info-card.info-wide {
            width: auto;
            max-width: 300px;
        }

    .info-panel {
        width: 80vw;
    }

    .input {
        padding: 6px 8px 6px 8px;
        width: 340px;
    }
        .input.wide {
            width: 340px;
        }

    .media-preview {
        width: 340px;
    }

    .header-member.placed {
        width: 350px;
    }

    #gather-video {
        width: 300px;
        height: 200px;
    }

    .dr-smith {
        flex-direction: column;
    }

    .dr-smith-image {
        position: relative;
        min-width: 300px;
        width: 100%;
        height: 300px;
        background-position: center bottom;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url('../images/dr-smith.png');
    }

    .button {
        width: 300px;
    }
        .button.giant {
            height: 100px;
            width: 300px;
            font-size: 16pt;
            font-weight: bold;
        }

    .half {
        width: 100%;
    }

    .inline-media {
        width: 360px;
        height: auto;
    }

    /* For mobile phones: */
    [class*="col-"] {
        width: 100%;
    }
}

@media print {
    .button {
        display: none;
    }
}