
section.concur_faq .container {
    padding-top: 32px;
    padding-bottom: 48px;
}

section.concur_faq .title {
    margin-bottom: 16px;

    font-size: 28px;
    line-height: 28px;
}

section.concur_faq .faq_item {
    padding: 24px;
    margin-bottom: 16px;
    background-color: #ffffff;
    border-radius: 8px;
}

section.concur_faq .faq_item:last-child {
    margin-bottom: 0;
}

section.concur_faq .faq_item .faq_question {
    font-size: 19px;
    line-height: 24px;

    margin-bottom: 16px;

    color: #333333;
}

section.concur_faq .faq_item .faq_answer_container,
section.concur_faq .faq_item .faq_answer_container p,
section.concur_faq .faq_item .faq_answer_container div {
    font-size: 14px;
    line-height: 22px;

    color: #333333;
}

section.concur_faq .cta_button_container {
    margin-top: 16px;
}

section.concur_faq .cta_button_container a.btn,
section.concur_faq .cta_button_container a.btn-ghost {
    font-size: 16px;
    padding: 12px 16px;
}

section.concur_faq .faq_bottom {
    margin-top: 24px;
}

section.concur_faq .faq_bottom .title {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 16px;
}

section.concur_faq .faq_bottom .cta_button_container {
    display: inline-block;
    margin-right: 16px;
    margin-top: 0;
}

section.concur_faq .has_right_rail {
    margin-bottom: 24px;
}

section.concur_faq .right_rail .title {
    font-size: 19px;
    line-height: 26px;
}

section.concur_faq .right_rail .body {
    font-size: 14px;
    line-height: 22px;
}

section.concur_faq .right_rail p {
    margin-bottom: 32px;
}

@media (min-width: 768px) {

    section.concur_faq .container {
        padding-top: 48px;
    }

    section.concur_faq .title {
        margin-bottom: 32px;

        font-size: 40px;
        line-height: 40px;
    }
    
    section.concur_faq .faq_item {
        margin-bottom: 24px;
        padding: 32px 72px;
    }

    section.concur_faq .faq_item .faq_question {
        font-size: 28px;
        line-height: 32px;
    
        margin-bottom: 24px;
    }
    
    section.concur_faq .faq_item .faq_answer_container,
    section.concur_faq .faq_item .faq_answer_container p,
    section.concur_faq .faq_item .faq_answer_container div {
        font-size: 16px;
        line-height: 26px;
    }

    section.concur_faq .cta_button_container {
        display: inline-block;
        margin-right: 16px;
    }
    
    section.concur_faq .faq_bottom .title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 24px;
    }

    section.concur_faq .right_rail {
        /* Only happens when the right rail has more content than the main section. */
        padding-bottom: 24px;
    }

    section.concur_faq .right_rail .title {
        font-size: 28px;
        line-height: 32px;
    }

    section.concur_faq .right_rail .body {
        font-size: 18px;
        line-height: 28px;
    }

}


/* ---- COLOR THEME OVERRIDES ---- */

section.concur_faq.theme_sap_gold .title {
    color: #333333;
}

section.concur_faq.theme_concur_blue .btn,
section.concur_faq.theme_medium_blue .btn,
section.concur_faq.theme_sap_gold .btn {
    color: white;
    background-color: #008FD3;
}

section.concur_faq.theme_concur_blue .btn-ghost,
section.concur_faq.theme_medium_blue .btn-ghost,
section.concur_faq.theme_sap_gold .btn-ghost {
    color: #333333;
    border-color: #333333;
    background-color: rgba(255,255,255,0.2);
}

section.concur_faq.theme_white a:not(.btn):not(.btn-ghost),
section.concur_faq.theme_light_grey a:not(.btn):not(.btn-ghost),
section.concur_faq.theme_grey a:not(.btn):not(.btn-ghost),
section.concur_faq.theme_light_blue a:not(.btn):not(.btn-ghost),
section.concur_faq.theme_concur_blue a:not(.btn):not(.btn-ghost),
section.concur_faq.theme_medium_blue a:not(.btn):not(.btn-ghost),
section.concur_faq.theme_sap_gold a:not(.btn):not(.btn-ghost) {
    color: #008FD3;
}

/* ---- STYLING RELATED TO SHOW-MORE/SHOW-LESS BEHAVIOR ---- */

section.concur_faq .faq_answer_container {
    position: relative; 
}

section.concur_faq .faq_answer_container .read_less {
    display: inline-block;
    white-space: no-wrap;
}

/* ------ Extra Changes ------- */
section.concur_faq .faq_answer_container .faq_answer.more {
    /* we do both because we can't .animate() visibility,
       and while visibility:hidden, this element will block
       clicking of the "read more" button. */
    visibility: hidden;
    opacity: 0
}

/* Added so that when the user resizes a page smaller, text doesn't spill over. */
section.concur_faq .faq_answer_container {
    overflow: hidden;
}

section.concur_faq .faq_answer_container .faq_answer.more {
    position: absolute;
    top: 0
}

section.concur_faq .faq_answer_container .read_more,
section.concur_faq .faq_answer_container .read_less {
    white-space: nowrap;
}

/* ==== Debugging === * /
section.concur_faq .faq_answer_container .faq_answer.more {
    text-shadow: 0 0 4px blue
}
section.concur_faq .faq_answer_container .faq_answer.less {
    text-shadow: 0 0 4px red
}
/* ==== end Debugging === */
