/* CSS Document */

.striped tr:nth-child(even),
.striped div:nth-child(even) {
    background-color: #d3d3d3;
}

h3.qheader {
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid #dfdfdf;
    width: 70%;
    padding-bottom: 0px;
}

/*questionnaires buttons*/
h2 button {
    width: 140px;
}

.questionnaire_form .button.submit {
    margin: auto;
}

.questionnaire_form .button.short {
    margin-bottom: 10px;
}

a.button {
    text-decoration: none;
}

.button.short,
.button {
    padding: 6px 6px;
    font-size: 13px;
    border-radius: 6px;
    margin-right: 6px;
    background-color: #739a64;
    background-image: none;
    transition: all .2s;
}

.button.short:hover {
    background-color: #759096;
}


/*Need fontawesome for these to work*/
.close {
    visibility: hidden;
}

.close:before {
    display: inline-block;
    content: '\f057';
    visibility: visible;
    font: normal normal normal 22px/1 FontAwesome;
    left: -5px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: white;
    float: right;
    transition: color .2s;
}

.close:hover:before {
    color: #dedede;
}

.remover img {
    display: none;
}

.remover:after {
    display: inline-block;
    content: '\f056';
    visibility: visible;
    font: normal normal normal 22px/1 FontAwesome;
    left: -5px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: red;
    float: right;
    transition: all .2s;
}

.remover:hover:after {
    -webkit-transform: rotate(90deg);
}

a.remover {
    color: #CC0000;
    float: right;
    margin-right: 5px;
}

.screen_cover {
    position: fixed;
}

.questionnaire_form {
    font-size: 14px;
}

.questionnaire_form hr {
    margin: 15px;
}

.questionnaire_form .medication_block_redirect,
.questionnaire_form .redirect_block {
    padding: 15px;
    text-align: center;
    border: 1px solid #dedede;
    margin: 15px 0;
}

.inline-block,
label.inline-block {
    display: inline-block;
}

.questionnaire_form input[type=text],
.questionnaire_form input[type=password],
.questionnaire_form input[type=email] {
  padding: 6px;
}

.questionnaire_form input[type="text"].number {
    width: 30px;
}

input[type="text"].time {
    width: 40px;
}

input[type="text"].short_input {
    width: 80px;
}

input[type="text"].med_input {
    width: 160px;
}

input[type="text"].med_lg_input {
    width: 280px;
}

input[type="text"].long_input {
    width: 400px;
}

*.inline {
    display: inline;
}

.questionnaire_form .appear,
div.block label.appear,
.appear {
    display: none;
}

* textarea {
    min-height: 60px;
}

.right_aligned {
    float: right;
    clear: right;
}

.centered {
    text-align: center;
}

.questionnaire_form td,
.questionnaire_form th {
    padding: 4px;
}

.questionnaire_form label.block {
    display: block;
}

.questionnaire_scores {
    border-radius: 8px 8px 8px 8px;
    margin: 15px 0;
    width: 100%;
}

.questionnaire_scores th {
    padding: 4px;
    text-align: center;
    font-size: 13px;
    color: #036;
    width: 11%;
    background-color: #333;
}

.questionnaire_scores td {
    padding: 4px;
    text-align: center;
    font-size: 13px;
    background-color: #fff;
}

.questionnaire_scores tr:nth-child(odd) td.score_options {
    background-color: #dedede;
}

.questionnaire_scores tr:hover td.score_options {
    background-color: #759096;
    color: #000;
}

.questionnaire_scores tr:hover td {
    background-color: #759096;
    color: #000;
}

.questionnaire_scores .score_section_titles {
    text-align: right;
    font-size: 12px;
    color: #036;
    background: none;
    font-weight: bold;
}

.questionnaire_scores td {
    text-align: right;
}

.questionnaire_scores td.score_options {
    border: 1px dotted #ccc;
    border-bottom: none;
    border-right: none;
    text-align: center;
}

.questionnaire_scores th.score_l {
    background-color: #669900;
    -webkit-border-radius: 8px 0px 0px 0px;
    border-radius: 8px 0px 0px 0px;
}

.questionnaire_scores th.score_ml {
    background-color: #AF8100;
}

.questionnaire_scores th.score_m {
    background-color: #FD6700;
}

.questionnaire_scores th.score_mh {
    background-color: #E93B00;
}

.questionnaire_scores th.score_mhm {
    background-color: #DA1D00;
}

.questionnaire_scores th.score_h {
    background-color: #CC0000;
    -webkit-border-radius: 0px 8px 0px 0px;
    border-radius: 0px 8px 0px 0px;
}

.questionnaire_form .total_score {
    background-color: #FFFFFF;
    border: 2px solid #999999;
    border-radius: 8px 8px 8px 8px;
    font-size: 16px;
    padding: 16px;
    text-align: left;
    line-height: 58px;
}

.questionnaire_form .epworth_sleep .total_score {
    line-height: 58px;
}

.questionnaire_form h4 {
    background: #006bb2 none repeat scroll 0 0;
    clear: both;
    color: #ffffff;
    margin-top: 10px;
    padding: 8px;
}

.questionnaire_form p,
.questionnaire_form li {
    line-height: 1.3em;
}

.questionnaire_form .clear {
    clear: both;
}

.questionnaire_form textarea {
    font-size: 14px;
    width: calc(100% - 14px);
}


.help_icon {
    background: #333 none repeat scroll 0 0;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-size: 10px;
    height: 10px;
    line-height: 10px;
    padding: 2px;
    text-align: center;
    width: 10px;
}

/*Columns*/
.two_cols {
    width: calc(50% - 14px);
    display: inline-block;
    vertical-align: top;
    margin-right: 14px;
    padding: 0;
    margin: 4px 2px !important;
}

.three_cols {
    width: calc(33.33% - 14px);
    padding: 0;
    margin: 0 5px !important;
    display: inline-block;
    vertical-align: top;
}

.four_cols {
    width: calc(25% - 14px);
    float: left;
    margin-right: 14px;
    padding: 0;
}

.cols_wrapper {
    overflow: hidden;
}

/* MEDIA DISPLAY */
@media only screen and (max-width: 800px) {
    div .two_cols {
        width: 100%;
        float: none;
    }

    div .three_cols {
        width: 100%;
        float: none;
    }

    div .four_cols {
        width: 100%;
        float: none;
    }

    .questionnaire_form input[type="text"],
    .questionnaire_form input[type="text"].short_input,
    .questionnaire_form input[type="text"].med_lg_input,
    .questionnaire_form input[type="text"].med_input,
    .questionnaire_form input[type="text"].long_input {
        width: auto !important;
    }

    .family_hx_gp3 input[type="text"] {
        width: 20px !important;
    }
}





/*Consent Forms*/
.consent p {
    padding-bottom: 10px;
}

.consent li {
    margin-left: 35px;
}

.signature_block {
    text-align: center;
}

.consent ol {
    margin-bottom: 10px;
}

.consent ul {
    padding-bottom: 10px;
}

.consent td,
.consent th {
    padding: 4px;
}

.consent .subhead {
    font-weight: bold;
    padding-top: 4px;
    padding-bottom: 4px;
}

.consent .inline-block {
    display: inline-block;
}

.questionnaire_options {
    line-height: 2em;
}

.questionnaire_options .form_about {
    padding-left: 30px;
    font-size: 12px;
}

.questionnaire_options h2 {
    font-size: 20px;
    text-align: left;
    text-transform: uppercase;
    margin: 12px 2px 10px;
    border-bottom: solid 1px #cacaca;
}

.questionnaire_options h3 {
    padding: 10px 0px;
    margin-left: 12px;
}

.questionnaire_options .last-completed-date {
    font-size: 14px;
    font-style: italic;
    opacity: 0.5;
}

.questionnaire_form .appear,
div.block label.appear,
.appear {
    display: none;
}

.additional_questionnaires {
    display: none;
}

/********************** END GENERAL NPP --> ****************************/


/********************** General Styles - All Forms **********************/

.question {
    clear: both;
    overflow: hidden;
    padding: 10px;
}

.q_text {
    display: inline-block;
    font-weight: bold;
}

.q_yesno {
    max-width: 85%;
}

.question_yn {
    clear: both;
    padding-bottom: 10px;
}

.question_yn:nth-child(even) {
    background-color: #dedede;
}

.right_aligned {
    float: right;
    clear: right;
}

.right_aligned label,
label.right_aligned {
    display: inline-block
}

p {
    padding-top: 2px;
    padding-bottom: 2px;
}

h3 {
    padding-top: 15px;
    padding-bottom: 3px;
}

.questionniare_form ol,
.questionniare_form ul {
    padding-left: 20px;
}

.question:nth-child(even) {
    background-color: #dedede;
}

.inline-block,
label.inline-block {
    display: inline-block;
}

.questionnaire_form input[type="text"].number {
    width: 30px;
}

input[type="text"].time {
    width: 40px;
}

input[type="text"].short_input {
    width: 80px;
}

input[type="text"].med_input {
    width: 160px;
}

input[type="text"].med_lg_input {
    width: 280px;
}

input[type="text"].long_input {
    width: 400px;
}

*.inline {
    display: inline;
}


/* For display on the questionnaire pending requests */

.pending_requests .submitted_form {
    display: block;
    max-height: 300px;
    overflow: scroll;
    overflow-x: hidden;
    padding: 0px;
    position: relative;
}

.pending_requests .submitted_form .button {
    display: none;
}

.pending_requests .submitted_form div {
    display: block
}

/*This covers up any requests to that they can't be altered*/
.pending_requests ul li div.inner_cover_sheet {
    background: none repeat scroll 0 0 transparent;
    border-radius: 0 0 0 0;
    display: block;
    height: 20000px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5001;
}

/* For display in the EMR */
.emr_embedded {
    font-family: Arial;
    font-size: 11px;
    max-width: 1000px;
    margin: auto;
    background-color: #ccc;
}

.emr_embedded .button.submit {
    display: none;
}

.emr_embedded textarea {
    border: 1px solid #CCCCCC;
    border-radius: 6px 6px 6px 6px;
    color: #666666;
    padding: 6px;
    width: calc(100% - 14px);
    font-family: Arial, Helvetica, sans-serif;
}

.emr_embedded .questionnaire_scores td {
    font-size: 11.5px;
}

.emr_embedded .questionnaire_scores td p {
    margin: 0;
    padding: 0;
}

.emr_embedded .family_hx span.input-replacement,
.emr_embedded .family_hx_gp3 span.input-replacement {
    width: auto !important;
    min-width: 20px !important;
}

.emr_embedded .statements label {
    display: block;
}

.emr_embedded .statements h5 {
    clear: both
}

.show_in_emr {
    background-color: #fff;
    padding: 8px;
    border: 2px solid #999;
}

.emr_embedded .two_cols label,
.emr_embedded .three_cols label,
.emr_embedded .four_cols label {
    display: block;
}

.emr_embedded .ifm_intake h4 {
    clear: both;
    margin-top: 10px;
}

.emr_embedded .block {
    clear: both;
}





/******** HIDDEN CONTROL FIELDS ********/
input.start_block,
input.end_block {
    display: none;
}

/******** FOR THE EMR ********/
.push-to-note {
    background-color: #f90;
    border: 2px solid;
    float: right;
    font-size: 10px;
    font-weight: bold;
    margin: 0 0 5px 5px;
    padding: 2px 5px;
}

.push-to-note:hover {
    background-color: #739A64;
}

.push-to-note.already-pushed {
    background-color: #CCC;
}

.included-in-push,
.included-in-push * {
    color: #739A64;
}

.emr_embedded a.save_questionnaire {
    display: none;
}

/********** PRINTABLE QUESTIONNAIRES *******/
@media print {

    body,
    html {
        background-color: #FFF;
        background-image: none;
    }

    .draggable {
        left: 0 !important;
        min-width: 100%;
        position: absolute;
        top: 0;
        border-radius: 0;
    }

    .draggable h2 {
        background-color: #fff;
        border-bottom: 1px solid #ccc;
        border-radius: 0;
        cursor: move;
        font-size: 24px;
        margin: 0 0 6px;
        padding: 6px;
    }

    .draggable h2 .close {
        display: none;
    }

    .button_box {
        display: none;
    }

    .draggable label {
        page-break-inside: avoid;
    }

    .screen_cover {
        display: none;
    }

    .wrapper {
        display: none;
    }
}



.draggable form {
    padding: 0;
}

.draggable {
    background-color: #eee;
    border-radius: 0 0 6px 6px;
}

.draggable h2 {
    color: white;
    background-color: #036;
    border-radius: 0;
    padding-right: 12px;
    margin: 0px;
}

table,
p,
.draggable form>div {
    margin: 0 15px;
    padding-right: 15px;
}

/* -----------------------------------------------------------------------*/
/* >>>>>>>>>>>>>>>>>>>> Bobs demo customizations<<<<<<<<<<<<<<<<<<<<-*/
/* ---------------------------------------------------------------------*/

.text .questionnaire_options>h1 {
    border-top-color: #ccc;
}

.text .questionnaire_options>h1 {
    margin-top: 25px;
    padding: 10px 0 5px;
}


/*checkboxes */

.control-group {
    display: inline-block;
    width: 200px;
    height: 210px;
    margin: 10px;
    padding: 30px;
    text-align: left;
    vertical-align: top;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.control {
    font-size: 18px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-left: 30px;
    cursor: pointer;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    background: #e6e6e6;
    border: solid 1px #999;
    border-radius: 2px;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

/* Hover and focus states */
.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
    background: #ccc;
}

/* Checked state */
.control input:checked~.control__indicator {
    background: #2aa1c0;
}

/* Hover state whilst checked */
.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
    background: #759096;
}

/* Disabled state */
.control input:disabled~.control__indicator {
    pointer-events: none;
    opacity: .6;
    background: #e6e6e6;
}

/* Check mark */
.control__indicator:after {
    position: absolute;
    display: none;
    content: '';
}

/* Show check mark */
.control input:checked~.control__indicator:after {
    display: block;
}

/* Checkbox tick */
.control--checkbox .control__indicator:after {
    top: 1px;
    left: 5px;
    width: 3px;
    height: 8px;
    transform: rotate(45deg);
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

/* Disabled tick colour */
.control--checkbox input:disabled~.control__indicator:after {
    border-color: #7b7b7b;
}






/*///////////////////////////////////// SPECIFIC FORM STYLING ///////////////////////////////////*/
.adrenal tr:nth-child(even) td,
.blood_sugar tr:nth-child(even) td,
.digestion_form tr:nth-child(even) td,
.yeast_form tr:nth-child(even) td,
.female_hormone tr:nth-child(even) td,
.hormones_form tr:nth-child(even) td,
.lymes_form tr:nth-child(even) td,
.thyroid_form tr:nth-child(even) td,
.nutritional_assessment_nhq tr:nth-child(even) td,
.lyme_intake tr:nth-child(even) td,
.new_pt_rsa tr:nth-child(even) td {
    background-color: #dedede;
}

/*Lyme Intake*/
.lyme_intake ul {
    padding-left: 15px;
}

form.lyme_symptoms label {
    display: inline-block;
    padding: 4px 8px 8px 0px;
}


.women .symptom_group th {
    background: #0089e6 none repeat scroll 0 0;
    border-radius: 5px 5px 0 0;
}

/********************** <!--GENERAL NPP ****************************/
.general_npp {
    font-size: 13px;
}

.general_npp h3 {
    font-size: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dotted #999;
}

.general_npp td,
.general_npp th {
    padding: 2px
}

.general_npp p {
    padding: 5px;
}

td.current_c {
    background-color: #C00;
    border-radius: 3px 0px 0px 0px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

td.current_p {
    background-color: #999;
    border-radius: 0px 3px 0px 0px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

td.current_note {
    font-size: 11px;
    font-style: italic;
    background-color: #FBFAEE;
    border-bottom: 1px solid #ccc;
}

.general_npp th,
.general_npp .th {
    background-color: #dedede;
    font-weight: normal;
    text-align: left;
}

.general_npp tr:nth-child(2n+1) {
    background-color: #dedede;
}

.general_npp .ros input {
    text-align: center;
    width: 25px;
	padding: 4px 2px;
}

.general_npp .ros textarea {
    width: calc(100% - 14px);
}


.affirming {
    padding-top: 8px;
}

.affirming input[type=text] {
    width: inherit;
}

.general_npp .timeline_row td {
    padding: 5px;
}

.general_npp .timeline_row td textarea {
    height: 32px;
    width: calc(100% - 14px);
    min-height: auto;
}

.remover {
    display: inline-block;
    padding: 0px 5px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 11px;
    margin-top: 3px;
}

#add_timeline_item {
    background-color: #336600;
    border-radius: 3px 3px 3px 3px;
    color: #FFFFFF;
    display: block;
    font-weight: bold;
    margin: auto;
    padding: 3px 6px;
    text-align: center;
    width: 202px;
    margin-bottom: 10px;
}

.general_npp_form td label {
    padding-left: 5px;
}

/*ROS*/
.general_npp th {
    font-weight: bold;
    font-size: 16px;
}

/* Family History Questionnaire - from Schweig*/

.is_highlighted {
    background-color: #759096 !important;
}

.family_hx>p {
    margin-top: 5px;
}

.family_hx label.fam_age {
    display: inline;
}

.family_hx label {
    padding: 1px 0;
}

/* Medical History (group 3) */
.inline-block label {
    display: inline-block
}

.medical_history .preventative_tests label,
.medical_history .surgeries label {
    display: inline-block;
}

/* Social History UW */

.social_hx_uw .right_aligned label {
    display: inline-block;
}

.social_hx_uw .q_text {
    display: inline-block;
    font-weight: bold;
}

.social_hx_uw .question {
    overflow: hidden;
    clear: both;
}

.child_npp label {
    display: inline-block;
}

/*Men's Questionnaire - from Integrative Fam Med*/
.men label {
    display: inline-block;
}

.men td {
    padding: 2px 3px;
}

/*Women's Questionnaire - from Integrative Fam Med*/
.women label {
    display: inline-block;
}

/*Group 4 Hormone Questionnaire*/
.hormones td,
.hormones th {
    padding: 7px;
}

.hormones .centercheck {
    text-align: center;
    vertical-align: center;
}

/* CHILD NPP */
.child_npp label {
    display: inline-block;
}

.child_npp label.block {
    display: block;
}

.child_npp input[type="text"],
input[type="password"],
.content select {
    width: 100px;
}

/*Food Diary*/
.food_diary ul {
    padding-left: 15px;
}

.food_diary .day {
    background-color: #d3d3d3;
    padding-left: 10px;
}

.food_diary .cols_wrapper {
    padding: 10px 0px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.food_diary .cols_wrapper:nth-child(even) {
    background-color: #B5B5B5;
}


/*MSQ Toxicity */
.medical_symptom_q td {
    padding: 3px;
}

.toxicity_1,
.toxicity_2,
.toxicity_3,
.toxicity_4,
.toxicity_5,
.toxicity_6,
.toxicity_7,
.toxicity_8,
.toxicity_9,
.toxicity_10,
.toxicity_11,
.toxicity_12,
.toxicity_13,
.toxicity_14,
.toxicity_15,
.toxicity_16 {}

.medical_symptom_q .section_total {
    background-color: #d3d3d3;
    font-weight: bold
}

.medical_symptom_q .section_total_label {
    text-align: right;
    color: #7e7e7e;
    padding-right: 10px;
}

.medical_symptom_q td.grand_total {
    font-size: 22px;
    font-weight: bold;
    color: #ff5600;
    padding: 10px;
}

.medical_symptom_q td.grand_total_label {
    font-size: 22px;
    font-weight: bold;
    color: #ff5600;
    padding: 10px;
}

.msq_table tr:hover td {
    background-color: #759096;
    color: #000;
}

.msq label {
    display: inline-block;
    padding: 4px 8px 4px 0;
}

.medical_symptom_q .point_scale {
    overflow: hidden;
}

.medical_symptom_q tr:nth-child(even) td {
    background-color: #dedede;
}


/*IFM Intake*/
.ifm_intake .right_aligned label {
    display: inline-block;
}

.ifm_intake .q_text {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    max-width: 87%;
}

.ifm_intake .q_text_block {
    margin-top: 10px;
    font-weight: bold;
    max-width: 87%;
}

.ifm_intake .question {
    overflow: hidden;
    clear: both;
}

.ifm_intake span {
    color: black;
}

.ifm_intake .subhead {
    border-bottom: 1px solid;
    color: #006bb2;
    font-weight: bold;
    padding: 15px 0 0 0;
    margin-bottom: 6px;
}

.ifm_intake .add_another input[type="text"],
button.add_another {
    margin: 3px 0;
}

.ifm_intake .two_cols label,
.ifm_intake .three_cols label,
.ifm_intake .four_cols label {
    display: block;
}

.ifm_intake .contraception label {
    display: inline-block;
}

.ifm_intake .q_text_explanation {
    font-weight: normal;
}

.ifm_intake .exercise_block label {
    display: inline-block;
}

.ifm_intake td {
    padding: 4px;
}

.ifm_intake h3 {
    border-top: 2px solid #000;
    clear: both;
    color: #036;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 10px;
}

.ifm_intake>table {
    background-color: #eee;
    border-radius: 6px;
    padding: 5px;
}

.med_history label {
    padding: 0;
}

.ifm_intake table {
    border-radius: 6px;
}

.ifm_intake .question_yn {
    padding: 4px 0;
}

.header-row th {
    background-color: #006bb2;
    color: #FFF;
    font-weight: bold;
    text-align: left;
    padding: 4px;
}

/*Family History Questionnaire*/
.family_hx td {
    padding: 2px 1px;
    text-align: center;
}

.family_hx input.med_input[type="text"] {
    text-align: center;
}

.family_hx .top_headers {
    vertical-align: bottom;
}

.family_hx .left_headers {
    text-align: right;
    padding: 0 8px;
    max-width: 90px;
}

.family_hx tr:nth-child(even) td {
    background-color: #dedede;
}

.family_table tr:hover td {
    background-color: #BBB;
}

.is_adopted {
    padding: 25px 25px 10px;
    display: none;
}

.fam_table_intro {
    font-style: italic;
    padding-top: 15px;
}

.fam_table>tbody>tr:nth-child(even) td {
    background-color: #dedede;
}

/*Med History Version 3*/
.medical_hx table {
    table-layout: fixed;
}

.medical_hx td,
.medical_hx th {
    padding: 5px;
}

.medical_hx textarea {
    min-height: unset;
}

.medical_hx tr:nth-child(even) td {
    background-color: #dedede;
}

.medical_hx p {
    padding: 5px 10px;
}


.medical_hx table input[type="text"] {
    width: auto;
}

.medical_hx h3 {
    border-bottom: 1px solid #ccc;
    color: #003366;
    font-size: 130%;
    font-weight: bold;
    padding: 15px 0 8px;
}

.medical_hx select.condition {
    margin-left: 20px;
    margin-top: 3px;
    width: auto;
}


.medical_hx input.prompt_text {
    width: 100px;
    display: none;
}

.medical_hx .have_you_had label {
    display: inline-block;
    padding: 10px;
    width: auto;
}

.medical_hx .add_item {
    background-color: #390;
    border-radius: 15px;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    padding: 5px 12px;
}

.medical_hx table.preventative td {
    padding: 10px 4px;
}

.medical_hx .preventative strong,
.medical_hx table strong {
    display: block;
}

/*PEDIATRIC FORMS*/



/*Pediatric Intake - from AZ Wellness/Parke*/

.symp_review_2 tr:nth-child(even) td {
    background-color: #dedede;
}

/*ultrawellness*/
.symp_review_2 tr:hover td {
    background-color: #BBB;
}

/*ultrawellness*/

.pediatric_intake .right_aligned label {
    display: inline-block;
}

.pediatric_intake .q_text {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    max-width: 87%;
}

.pediatric_intake .question {
    overflow: hidden;
    clear: both;
}

.pediatric_intake span {
    color: black;
}

.pediatric_intake .subhead {
    border-bottom: 1px solid;
    color: #006bb2;
    font-weight: bold;
    padding: 15px 0 0 0;
    margin-bottom: 6px;
}

.pediatric_intake .add_another input[type="text"],
button.add_another {
    margin: 3px 0;
}

.pediatric_intake .how_often_by_age {
    display: inline-block;
    width: 85px;
}

.pediatric_intake .sub_q {
    padding: 6px 0;
    display: inline-block;
}

.pediatric_intake .bm_questions .q_text {
    display: block;
}

.pediatric_intake .how_well_going_table td {
    padding: 3px 0;
}



/*Ped Medical History Long and Short from Neuronutrition Associates*/

.ped_medical_hx .question_yn {
    clear: both;
    padding-bottom: 10px;
}

.ped_medical_hx .question_yn:nth-child(even) {
    background-color: #dedede;
}

.ped_medical_hx .right_aligned label {
    display: inline-block;
}

.ped_medical_hx h3 {
    padding-top: 18px;
}



/*NEW Ped Intake from Dishman*/

.np_intake_ped .question {
    overflow: hidden;
    clear: both;
    margin: 3px 0;
}

.np_intake_ped .right_aligned label {
    display: inline-block;
}

.np_intake_ped .q_text {
    display: inline-block;
    font-weight: bold;
}

.np_intake_ped .q_text_explanation {
    font-style: italic;
    font-weight: normal;
    color: #000;
}

.np_intake_ped .subhead {
    padding: 12px 0;
    text-decoration: underline;
}

.np_intake_ped .blood_type_radios label,
.np_intake_ped .gi_hx_block label,
.np_intake_ped .preventative_checkboxes label,
.np_intake_ped .injuries_block label,
.np_intake_ped .surgeries_block label,
.np_intake_ped .exercise_block label,
.np_intake_ped .dental_hx_block label,
.np_intake_ped .hormonal_contraception label,
.np_intake_ped .meditation_describe label {
    display: inline-block;
}

.np_intake_ped .weight_columns label.q_text,
.np_intake_ped .block {
    display: block;
}

.family_hx_uw th>label {
    font-weight: normal;
    font-size: 10px;
    padding: 0;
}

.fam_hx_addl_info {
    font-weight: normal;
    font-style: italic;
    font-size: 12px;
    display: block;
}

.family_table th {
    text-align: left;
}

.family_table th.top_headers {
    text-align: center;
    vertical-align: bottom;
}

.family_table td {
    text-align: center;
}

.family_table input[type="text"] {
    width: 25px;
}

.np_intake_ped .button.short {
    margin-bottom: 10px;
}

.np_intake_ped input[type="text"] {
    font-size: 14px;
}

.np_intake_ped textarea {
    font-size: 14px;
}

.np_intake_ped .early_childhood_illnesses .q_text,
.np_intake_ped .developmental_hx .q_text {
    display: block;
}

.np_intake_ped .developmental_hx label {
    display: inline-block;
}



/*Pediatric Intake from Myers/AUH*/

.np_pediatric .right_aligned label {
    display: inline-block;
}

.np_pediatric .q_text {
    display: inline-block;
    font-weight: normal;
    color: #000;
}

.np_pediatric .question {
    overflow: hidden;
}

.np_pediatric div.inline-block>label {
    display: inline-block;
}

.np_pediatric .subhead {
    margin-top: 15px;
    color: #006bb2;
}


/*Metabolic Assessment (gp1)*/

th.maf_title {
	color:#CB4E27;
   font-weight: bold;
	text-align: center;
   font-size: 16px;
	padding: 4px;
}

.metabolic_assessment_table tr:nth-child(2n+1) td,
.metabolic_assessment_table tr:nth-child(2n+1) th {
    background-color: #d3d3d3;
}

.metabolic_assessment_table tr:hover th,
.metabolic_assessment_table tr:hover td {
    background-color: #FF9900;
    color: #000;
}

/* Autism Evaluation Form (ATEC) */

.NSV,
.NSV_1,
.NSV_2,
.NSV_3,
.NSV_4 {
    width: 30px;
    float: left;
    margin-right: 14px;
    padding: 3px;
    display: inline-block;
    text-align: center;
}

.atec_form .section_total_label {
    padding-top: 10px;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
}

.atec_form .grand_total_label {
    font-size: 18px;
    text-align: center;
}

.atec_form .section_total,
.atec_form .grand_total {
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    color: red;
}

.atec_form .question {
    height: 32px;
    padding-bottom: 7px;
    background-color: transparent;
}

.atec_form .question:hover:not(.guidance) {
    background-color: #BBB;
}

.atec_form .section_wrapper {
    width: 75%;
    margin: 0 auto;
}

.atec_form .guidance {
    font-weight: bold;
}

/*BFAF and BRLF*/
.bfaf label {
    display: inline-block;
    padding: 4px 8px 4px 0;
}

.bfaf .question {
    padding: 4px 8px 4px 0;
}

.bfaf div.question:hover {
    background-color: #759096;
    color: #000;
}

/*BHNAF*/
.bhnaf label {
    display: inline-block;
    padding: 4px 8px 4px 0;
}

.bhnaf .question {
    padding: 4px 8px 4px 0;
}

.bhnaf div.question:hover {
    background-color: #759096;
    color: #000;
}

/*Berlin Sleep Questionnaire*/
.berlin_sleep {
    overflow: hidden;
}

.berlin_sleep .patient_information input {
    display: inline-block;
    padding: 6px 0;
    text-align: center
}

.berlin_sleep .patient_information input[type=text] {
    width: 4%;
    margin-right: 20px;
}

.berlin_sleep .patient_information label {
    display: inline-block;
}

.berlin_sleep .snore_details,
.berlin_sleep .vehicular_sleeping_frequency {
    visibility: hidden;
    max-height: 0;
}

.berlin_sleep .two_cols label {
    clear: both;
    padding-left: 10px;
}

.berlin_sleep .two_cols h2:nth-child(1) {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.berlin_sleep .two_cols {
    border-radius: 0 0 8px 8px;
    background-color: white;
}

.berlin_sleep .two_cols input[type=radio] {
    margin-left: 20px;
}

/*ACE Score*/
.ace_score label {
    display: inline-block;
}

.ace_score .question {
    padding-top: 8px;
    padding-bottom: 8px;
}

/*HIPAA Consent*/


.ppn .page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

.ppn ul,
.ppn ol {
    margin-top: 0;
    margin-bottom: 10px
}

.ppn ul ul,
.ppn ol ul,
.ppn ul ol,
.ppn ol ol {
    margin-bottom: 0
}

.ppn [data-role=page-header] {
    border-bottom: 1px solid #6f6f6f;
    margin-left: 0;
    margin-right: 0
}

.ppn [data-role=page-header]:before,
.ppn [data-role=page-header]:after {
    content: " ";
    display: table
}

.ppn [data-role=page-header]:after {
    clear: both
}

.ppn [data-role=page-header]:before,
.ppn [data-role=page-header]:after {
    content: " ";
    display: table
}

.ppn [data-role=page-header]:after {
    clear: both
}

.ppn [data-role=page-header] [data-role=company] {
    float: left;
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width:768px) {
    .ppn [data-role=page-header] [data-role=company] {
        float: left;
        width: 66.66666667%
    }
}

@media print {
    .ppn [data-role=page-header] [data-role=company] {
        position: relative;
        float: left;
        width: 50%;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px
    }
}

.ppn [data-role=page-header] [data-role=contact] {
    float: left;
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width:768px) {
    .ppn [data-role=page-header] [data-role=contact] {
        float: left;
        width: 33.33333333%
    }
}

@media print {
    .ppn [data-role=page-header] [data-role=contact] {
        position: relative;
        float: left;
        width: 50%;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px
    }
}

.notice-body {
    padding-top: 10px
}

.ppn .notice-body [data-role=section-header] {
    margin-left: 0;
    margin-right: 0
}

.ppn .notice-body [data-role=section-header]:before,
.ppn .notice-body [data-role=section-header]:after {
    content: " ";
    display: table
}

.ppn .notice-body [data-role=section-header]:after {
    clear: both
}

.ppn .notice-body [data-role=section-header]:before,
.ppn .notice-body [data-role=section-header]:after {
    content: " ";
    display: table
}

.ppn .notice-body [data-role=section-header]:after {
    clear: both
}

.ppn .notice-body [data-role=section-header] h1 {
    padding-top: 0;
    margin-top: 0;
    float: left;
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.8em
}

@media (min-width:768px) {
    .ppn .notice-body [data-role=section-header] h1 {
        float: left;
        width: 40%
    }
}

.ppn .notice-body [data-role=section-header] h1 span {
    display: block
}

@media print {
    .ppn .notice-body [data-role=section-header] h1 {
        position: relative;
        float: left;
        width: 50%;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px
    }
}

.ppn .notice-body [data-role=section-header] section {
    float: left;
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width:768px) {
    .ppn .notice-body [data-role=section-header] section {
        float: left;
        width: 50%
    }
}

@media print {
    .ppn .notice-body [data-role=section-header] section {
        position: relative;
        float: left;
        width: 50%;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px
    }
}

@media (min-width:768px) {
    .ppn .notice-body [data-role=section-body] .lead {
        font-size: 16px
    }
}

.ppn .notice-body [data-role=section-body] ul.main-nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    width: 100%
}

.ppn .notice-body [data-role=section-body] ul.main-nav:before,
.ppn .notice-body [data-role=section-body] ul.main-nav:after {
    content: " ";
    display: table
}

.ppn .notice-body [data-role=section-body] ul.main-nav:after {
    clear: both
}

.ppn .notice-body [data-role=section-body] ul.main-nav:before,
.ppn .notice-body [data-role=section-body] ul.main-nav:after {
    content: " ";
    display: table
}

.ppn .notice-body [data-role=section-body] ul.main-nav:after {
    clear: both
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li {
    position: relative;
    display: block
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li>a:hover,
.ppn .notice-body [data-role=section-body] ul.main-nav>li>a:focus {
    text-decoration: none;
    background-color: #eee
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li.disabled>a {
    color: #999
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li.disabled>a:hover,
.ppn .notice-body [data-role=section-body] ul.main-nav>li.disabled>a:focus {
    color: #999;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.ppn .notice-body [data-role=section-body] ul.main-nav .open>a,
.ppn .notice-body [data-role=section-body] ul.main-nav .open>a:hover,
.ppn .notice-body [data-role=section-body] ul.main-nav .open>a:focus {
    background-color: #eee;
    border-color: #428bca
}

.ppn .notice-body [data-role=section-body] ul.main-nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li>a>img {
    max-width: none
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li {
    float: left
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li>a {
    border-radius: 4px
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li+li {
    margin-left: 2px
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li.active>a,
.ppn .notice-body [data-role=section-body] ul.main-nav>li.active>a:hover,
.ppn .notice-body [data-role=section-body] ul.main-nav>li.active>a:focus {
    color: #fff;
    background-color: #428bca
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li {
    float: none
}

.ppn .notice-body [data-role=section-body] ul.main-nav>li>a {
    text-align: center;
    margin-bottom: 5px
}

.ppn .notice-body [data-role=section-body] ul.main-nav>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .ppn .notice-body [data-role=section-body] ul.main-nav>li {
        display: table-cell;
        width: 1%
    }

    .ppn .notice-body [data-role=section-body] ul.main-nav>li>a {
        margin-bottom: 0
    }
}

@media (max-width:767px) {
    .ppn .notice-body [data-role=section-body] ul.main-nav>li {
        float: none
    }

    .ppn .notice-body [data-role=section-body] ul.main-nav>li+li {
        margin-top: 2px;
        margin-left: 0
    }
}

.ppn .notice-body [data-role=section-body] ul.main-nav li {
    border-bottom: 8px solid;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
    font-size: 18px;
    font-size: 25px
}

.ppn .notice-body [data-role=section-body] ul.main-nav li small,
.ppn .notice-body [data-role=section-body] ul.main-nav li .small {
    font-weight: normal;
    line-height: 1;
    color: #999
}

.ppn .notice-body [data-role=section-body] ul.main-nav .link-rights {
    border-color: #a71b1b
}

.ppn .notice-body [data-role=section-body] ul.main-nav .link-choices {
    border-color: #4772b5
}

.ppn .notice-body [data-role=section-body] ul.main-nav .link-uses {
    border-color: #bb911e
}

.ppn .notice-body [data-role=section-body] ul.main-nav .link-responsibilities {
    border-color: #31b543
}

@media print {
    .ppn .notice-body [data-role=section-body] * {
        line-height: 16px !important
    }

    .ppn .notice-body [data-role=section-body] h2,
    .ppn .notice-body [data-role=section-body] h3 {
        margin-bottom: 10px;
        margin-top: 10px
    }

    .ppn .notice-body [data-role=section-body] dl {
        margin-bottom: 0px;
        padding-bottom: 10px
    }

    .ppn .notice-body [data-role=section-body] ul {
        padding-bottom: 0;
        margin-bottom: 0
    }
}

.ppn .notice-body [data-role=section-body] article {
    margin-bottom: 50px
}

@media print {
    .ppn .notice-body [data-role=section-body] article {
        margin-bottom: 25px
    }
}

.ppn .notice-body [data-role=section-body] article header span {
    font-size: 1.6em;
    color: white;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: inline;
    padding: 10px;
    padding-bottom: 3px
}

@media (max-width:767px) {
    .ppn .notice-body [data-role=section-body] article header span {
        font-size: 1.2em
    }
}

.ppn .notice-body [data-role=section-body] article section[data-role=contents] {
    border: 1px solid;
    padding: 10px;
    border-radius: 10px;
    border-top: 0;
    z-index: 99;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] .list-group-item-text {
    position: absolute;
    font-size: 0;
    left: -1000px
}

@media print {
    .ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] .list-group-item-text {
        position: inherit !important;
        font-size: inherit !important;
        left: inherit !important
    }
}

.ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] .list-group-item-text.aural {
    position: inherit !important;
    font-size: inherit !important;
    left: inherit !important;
    transition: none;
}

@media print {
    .ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] .list-group-item-text {
        display: block
    }

    .ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] [data-role=more-info] {
        display: none
    }
}

.ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] .list-group-item {
    cursor: pointer
}

.ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] .list-group-item ul {
    list-style: none;
    padding-left: 10px
}

.ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] .list-group-item ul li:before {
    font-family: 'FontAwesome';
    content: "\f0da \0020"
}

.ppn .notice-body [data-role=section-body] article section[data-role=contents] [data-ppn-collapsed-list] .list-group-item ul li {
    padding: 5px
}

.ppn .notice-body [data-role=section-body] article h2 {
    font-size: 1.4em
}

.ppn .notice-body [data-role=section-body] article i {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ppn .notice-body [data-role=section-body] article i.pull-left {
    margin-right: .3em
}

.ppn .notice-body [data-role=section-body] article i.pull-right {
    margin-left: .3em
}

.ppn .notice-body [data-role=section-body] article[data-type=rights] header.heading {
    border-bottom: 1px solid #a71b1b
}

.ppn .notice-body [data-role=section-body] article[data-type=rights] header.heading span {
    background-color: #a71b1b
}

.ppn .notice-body [data-role=section-body] article[data-type=rights] i {
    color: #a71b1b
}

.ppn .notice-body [data-role=section-body] article[data-type=rights] section[data-role=contents] {
    border-color: #a71b1b;
    background-color: white;
}

.ppn .notice-body [data-role=section-body] article[data-type=choices] header.heading {
    border-bottom: 1px solid #4772b5
}

.ppn .notice-body [data-role=section-body] article[data-type=choices] header.heading span {
    background-color: #4772b5
}

.ppn .notice-body [data-role=section-body] article[data-type=choices] i {
    color: #4772b5
}

.ppn .notice-body [data-role=section-body] article[data-type=choices] section[data-role=contents] {
    border-color: #4772b5;
    background-color: white;
}

.ppn .notice-body [data-role=section-body] article[data-type=uses] header.heading {
    border-bottom: 1px solid #bb911e
}

.ppn .notice-body [data-role=section-body] article[data-type=uses] header.heading span {
    background-color: #bb911e
}

.ppn .notice-body [data-role=section-body] article[data-type=uses] i {
    color: #bb911e
}

.ppn .notice-body [data-role=section-body] article[data-type=uses] section[data-role=contents] {
    border-color: #bb911e;
    background-color: white;
}

.ppn .notice-body [data-role=section-body] article[data-type=responsibilities] header.heading {
    border-bottom: 1px solid #31b543
}

.ppn .notice-body [data-role=section-body] article[data-type=responsibilities] header.heading span {
    background-color: #31b543
}

.ppn .notice-body [data-role=section-body] article[data-type=responsibilities] i {
    color: #bb911e
}

.ppn .notice-body [data-role=section-body] article[data-type=responsibilities] section[data-role=contents] {
    border-color: #31b543;
    background-color: white;
}

.ppn .notice-body [data-role=section-body] article dl dd[data-role=example] {
    margin-left: 20px
}

.ppn .notice-body [data-role=section-body] article dl dd[data-role=example] span {
    font-weight: bolder
}

.ppn h2,
.ppn h4 {
    color: black;
    background-color: transparent;
}

.ppn .list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.ppn .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.ppn ul {
    padding-left: 0px;
}

.ppn.consent li {
    margin-left: 0px;
}

.ppn li {
    transition: none;
    margin-left: 0px;
}

.ppn h4.lead {
    font-weight: normal;
}

.ppn a {
    text-decoration: none;
}

.ppn .link-rights a {
    color: #a71b1b;
}

.ppn .link-choices a {
    color: #4772b5;
}

.ppn .link-uses a {
    color: #bb911e;
}

.ppn .link-responsibilities a {
    color: #31b543;
}

/* MOLD TOXICITY */
.cluster_column {
    width: 43%;
    float: left;
}

.cluster_column.first {
    margin-right: 3%;
}

.cluster,
.cluster_total {
    padding: 7px 10px;
    margin-bottom: 10px;
    border: 1px solid #666;
}

.cluster_total {
    background-color: #000000;
    border: 3px solid #000000;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
}

.cluster label {
    padding: 3px 0;
    display: block;
}

.cluster1 {
    background-color: #FF2927;
}

.cluster2 {
    background-color: #FF6600;
}

.cluster3 {
    background-color: #FEC006;
}

.cluster4 {
    background-color: #FFFE0B;
}

.cluster5 {
    background-color: #92D050;
}

.cluster6 {
    background-color: #00B04F;
}

.cluster7 {
    background-color: #02B0F0;
}

.cluster8 {
    background-color: #0070C0;
}

.cluster9 {
    background-color: #AB73D5;
}

.cluster10 {
    background-color: #FF0865;
}

.cluster11 {
    background-color: #FFCCFF;
}

.cluster12 {
    background-color: #D9D9D9;
}

.cluster13 {
    background-color: #FFF;
}


/* MBAF Styles (Environmental Exposure) */
.mbaf h3 {
    padding: 4px 0px;
}

.mbaf .health_concerns {
    display: list-item;
    list-style-image: none;
    list-style-position: inside;
}

.mbaf .mbaf_table .mbaf_table_divider th {
    /*background-color: #DEDEDE;*/
    border: 1px dotted #CCCCCC;
    font-weight: bold;
    text-align: center;
}

.mbaf .mbaf_table .mbaf_table_divider th.mbaf_title {
    text-align: left;
}

.mbaf_table {
    margin-top: 8px;
}

.mbaf_table th {
    font-weight: normal;
    padding: 4px;
    text-align: left;
}

.mbaf_table td {
    padding: 4px 2px;
}

.mbaf_table tr:nth-child(2n+1) td,
.mbaf_table tr:nth-child(2n+1) th {
    background-color: #d3d3d3;
}

.mbaf_table tr:hover th,
.mbaf_table tr:hover td {
    background-color: #FF9900;
    color: #000;
}

.mbaf_table tr.level_0 th {
    font-weight: bold;
    border-left: 4px solid #390;
}

.mbaf_table tr.level_1 th {
    font-weight: bold;
    border-left: 4px solid #036;
}

.mbaf_table tr.level_2 th {
    font-weight: bold;
    border-left: 4px solid #f50;
}

.mbaf_table tr.level_3 th {
    font-weight: bold;
    border-left: 4px solid #c00;
}

.mbaf_additional>label {
    float: left;
    margin: 0;
    padding: 5px 5% 5px 0;
    width: 45%;
}

.mbaf_additional .fullline>div {
    padding: 5px 0;
}

.mbaf_additional input[type="text"],
.mbaf_additional select {
    width: 100px;
}

.mbaf_additional label input[type="text"] {
    width: 30px;
    float: right;
	padding: 6px 4px;
}

/* MOLD SURVEY */

.mold_survey_wrapper td,
.mold_survey_wrapper th {
    padding: 3px;
}

.mold_survey_wrapper tr:nth-child(2n+1) td {
    background-color: #d3d3d3;
}

.mold_survey_wrapper>h3 {
    padding: 8px 0;
}

.mold_survey_wrapper tr:hover td {
    background-color: yellow;
}

/* Medication History */
.medication_list {
    margin-top: 8px;
}

.medication_list th {
    background-color: #DEDEDE;
    border: 1px dotted #CCCCCC;
    padding: 4px;
}

.medication_list table td {
    padding: 2px;
}

.medication_list table tr:nth-child(2n+1) td {
    background-color: #d3d3d3;
}

.medication_list .table_wrap_left,
.medication_list .table_wrap_right {
    border-radius: 8px;
    border: 1px solid #ccc;
    overflow: hidden;
}

.medication_list .mhlc {
    padding-right: 4px;
}

.medication_list .mhrc {
    padding-left: 4px;
}

/* Health Journey */
.health_journey h3 {
    padding: 6px 0px;
    margin-top: 6px;
    border-top: 1px dotted #ccc;
}

.health_journey table {
    width: 100%;
}

.health_journey table td,
.health_journey table th {
    padding: 3px;
    border: none;
}

.health_journey table tr:nth-child(2n+1) td {
    background-color: #d3d3d3;
}

.health_journey .questionnaire_scores td {
    text-align: center;
}


em.clarify {
    color: #666666;
    display: block;
    font-size: 13px;
    text-align: center;
}

/*Case Review Questionnaire*/
.case_review_wrapper .question:nth-child(even),
.dietary_habits .question:nth-child(even),
.mbaf .question:nth-child(odd) {
    background-color: #d3d3d3;
}

/* Dietary Habits */

.dietary_habits>p {
    padding: 4px 0;
}

.dietary_habits textarea {
    font-size: 13px;
    width: 98%;
}

.dietary_habits textarea[placeholder="Please describe..."] {
    border: 2px solid #CCCCCC;
}

/* Stress Scale */
.stress_scale .question:nth-child(even),
.hr_stress_scale .question:nth-child(even) {
    background-color: #d3d3d3;
}

.hr_stress_scale .emr_display_hrss {
    display: none;
}

.emr_embedded .hr_stress_scale .emr_display_hrss {
    display: inline-block;
}

/* Perceived Stress */
.radio_group label {
    display: inline-block;
}

.perceived_stress .question:nth-child(even) {
    background-color: #d3d3d3;
}

.radio_group {
    text-align: right;
}

/* Appointment Update */
.appt_update .question:nth-child(even) {
    background-color: #d3d3d3;
}

.appt_update textarea {
    max-width: calc(100% - 14px);
}

/*Metabolic Detoxification Questionnaire*/
.metabolic_detox .ros select {
    width: 65px;
}

.metabolic_detox .score label {
    display: inline-block;
}

.metabolic_detox .grand_total_label {
    font-size: 16px;
}

.metabolic_detox .grand_total,
.metabolic_detox .section_1_total,
.metabolic_detox .section_2_total,
.metabolic_detox .section_3_total {
    font-size: 18px;
    color: red;
}

.metabolic_detox .total_score_block {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.metabolic_detox .indent_checkboxes {
    padding-left: 40px;
}

.metabolic_detox .inline_checkboxes label {
    display: inline-block;
}

.metabolic_detox .ros_title {
    background-color: #d3d3d3
}

.metabolic_detox .ros td {
    background-color: #E5E5E5
}

.metabolic_detox table {
    padding-right: 0px;
    margin-left: 0px;
}

.metabolic_detox .subsection_score {
    display: inline-block;
    float: right;
    padding-right: 45px;
    font-size: 12px;
    font-style: italic;
}

.metabolic_detox #subsection_scores_hidden {
    display: none;
}

/*Integrative Health & Wellness Assessment (original on Rezilir Health)*/
.ihwa_short .question label,
.ihwa_short .score label {
    display: inline-block;
}

.ihwa_short .score {
    width: 100%;
    text-align: right;
    padding-right: 20px;
}

.ihwa_short .section_total,
.ihwa_short .grand_total,
.ihwa_short .areas_column label {
    color: red;
    font-size: 14px;
}

.ihwa_short .question .radio_group {
    display: inline-block;
    float: right;
}

.ihwa_short .areas_table {
    text-align: center;
}

.ihwa_short .areas_row {
    width: 100%;
}

.ihwa_short .areas_row:nth-child(odd) {
    background-color: #d3d3d3;
}

.ihwa_short .header_row {
    background-color: #d3d3d3;
}

.ihwa_short .header_row .areas_column {
    height: 120px;
    vertical-align: top;
    background-color: #a3a3a3;
    color: white;
    font-weight: bold;
    margin: 4px;
}

.ihwa_short .areas_column {
    display: inline-block;
    padding: 7px;
    margin-bottom: 7px;
    text-align: center;
    width: 17%;
}

.ihwa_short .areas_column.row_name {
    text-align: left;
}

.ihwa_short .areas_column input {
    width: 40px;
}

.ihwa_short .areas_column label {
    display: inline-block !important;
}

/*Prevent Pending Queue list rules from invading the questionniare itsself*/
div.pending_requests.submitted_questionnaires .submitted_form li{
    background: none;
    border-radius: none;
    box-shadow: none;
    margin-bottom: none;
    padding: inherit;
}

div.pending_requests.submitted_questionnaires .submitted_form li:before{
    content: "";
}

/************* IFM 7 Day Diet ******************/
.show_in_emr .diet_journal_ifm .day_tabs,
.show_in_emr .diet_journal_ifm .nav_button{
	display: none;
}

body.emr_embedded .show_in_emr .diet_journal_ifm .day_block {
	display: block !important;
}



/* BRIGHT FUTURES */
form.bright-futures {
	background-color: white;
}

.bright-futures h4 {
	background-color:#41AD49;
	text-align: center;
	color:white;
	font-weight: bold;
}

.bright-futures h5.blue_header {
	text-align: center;
	color: #1C78C1;
	font-weight: bold;
	font-size: 14px;
	line-height: 28px;
}

.bright-futures h6 {
	textf-align: center;
	font-size: 16px;
	line-height: 36px;
	font-weight: bold;
}

.bright-futures .question {
	background-color: #E6EFF7;
	margin: 9px;
	padding: 6px;
}

.bright-futures .skills_checklist p {
	font-weight: bold;
	line-height: 30px;
}

.bright-futures h4.pink_header {background-color:#DD2F6A;}
.bright-futures h4.blue_header {background-color:#065CA9;}
.bright-futuresh5 {
	text-align: center;
	color:#276FB3;
}
.bright-futures p.bf_subhead {
	font-weight: bold;
	background-color: #A6C6E1;
	padding: 5px;
	margin: 8px 10px 2px;
}


.bright-futures .questionnaire-header p {
	font-weight: bold;
}

.bright-futures .questionnaire-header .gradient-line {
	height: 6px; 
	width: 83%;
	display: inline-block;
	vertical-align: top;
	margin-left:8px; 
	background-image: linear-gradient(90deg, rgb(130, 191, 120) 0%, rgb(6, 92, 169) 80%);
}

.bright-futures .questionnaire-header .header-logo img {
	display: block;
	width: 89px;
	margin: 0 auto;
	padding: 10px 5px 0px 6px;
	position: relative;
	top: -27px;
	right: -6px;
}

.bright-futures .questionnaire-header .header-logo {
	width: 100px; 
	display: inline-block;
}

.bright-futures .questionnaire-header p.to-provide {
	color: #5d8bb3;
    font-size: 13px;
}


.bright-futures .bf-footer{
	padding-top: 30px;
}

.bright-futures .bf-footer p.consistent {
    font-weight: bold;
    color: #065CA9;
    text-align: center;
    background-color: #DDE0F0;
    padding: 10px 0;
    margin: 10px 5px;
    font-style: italic;
    font-size: 14px;
}

.bright-futures .bf-footer .footer-logo img{
	display: inline-block; 
	width: 45%;  
	padding: 0px 5px 18px 6px;
}

.footer-disclaimer p {
    font-size: 8px;
}

.bright-futures .bf-footer div.footer-disclaimer {
	width: 52%;
	font-size: 8px;
	display: inline-block;
}

.bright-futures .title-group {
	position: relative;
	top: -90px;
	left: 6px;
}

.bright-futures .bf-title {
    font-size: 24px;
    letter-spacing: .2px;
    color: #4c4b43;
    font-style: normal;
    font-family: lato;
}

.bright-futures .bf-age {
    font-weight: bold;
    color: #065CA9;
    font-style: normal;
	font-family: lato;
	font-size: 30px;
}

.bright-futures .to-provide {
	color: #065CA9;
	   border-top: 2px solid grey;
	padding-top: 9px;
	margin-top: 9px;
	margin-bottom: -85px;
}

table.bf_table {
    margin: auto;
    padding-right: 0;
}

/*Epworth Sleep*/
.epworth_sleep .q_text {font-weight:bold;}
.epworth_sleep .total_label {
float:right;
margin:10px 0;
}
.epworth_sleep .color_grn {color:darkgreen;}
.epworth_sleep .color_yel {color:darkgoldenrod;}
.epworth_sleep .color_org {color:darkorange;}
.epworth_sleep .color_red {color:red;}
.questionnaire_form .epworth_sleep .total_score {padding: 8px 18px;}
.epworth_sleep input[type="number"] {width:60px;}

/* Pain and Dysfunction  */
.pain_new_client img.marked-up-img {

    background-image: url('https://demopt.md-hq.com/custom/images/pain_diagram.png');
}  


.pain_new_client .flex-between {
    display: flex;
    justify-content: space-between;
}

.pain_new_client .flex-evenly {
    display: flex;
    justify-content: space-evenly;
}

/* BPI QUESTIONNAIRE (BRIEF PAIN INVENTORY) */

.bpi_questionnaire img.marked-up-img {
    background-image: url('https://demopt.md-hq.com/custom/images/bpi_image.png');
}  