/********************************************************* {COPYRIGHT-TOP} ***
* Merative Confidential
* OCO Source Materials
* ***informedenrollment2***
*
* (C) Copyright Merative Corporation 2022  
*
* The source code for this program is not published or otherwise
* divested of its trade secrets, irrespective of what has been
* deposited with the U.S. Copyright Office.
********************************************************* {COPYRIGHT-END} **/
/* GENERIC 
------------------------------------------------- */

/* IBM Plex Inclusion : edit 6.15.2017 */

/* Sans */
@font-face {
    font-family: "IBM Plex Sans SemiBold";
    src: url('../fonts/plex/IBMPlexSans-SemiBold-Latin1.woff2') format('woff2'),
        url('../fonts/plex/IBMPlexSans-SemiBold-Latin1.woff') format('woff'),
        url('../fonts/plex/IBMPlexSans-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url('../fonts/plex/IBMPlexSans-Regular.woff2') format('woff2'),
        url('../fonts/plex/IBMPlexSans-Regular.woff') format('woff'),
        url('../fonts/plex/IBMPlexSans-Regular.ttf') format('truetype');
}

* {
    outline: 0;
}

html {
    font-size: 16px;
    /* sets the base font size to calculate rem units. changing this will affect all font sizes using rem units. */
}

body {
    font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: #6d6e71;
    background: white;
}

/* Override the bootrstrap row  */
.clear-row-margin {
    margin-left: 0px;
    margin-right: 0px;
}


h1,
h2,
h3 {
    font-weight: 400;
}

h4,
h5 {
    font-weight: 700;
}

a {
    text-decoration: underline;
    outline: none !important;
}

img {
    max-width: 100%;
}

.spacing {
    margin-bottom: 20px;
}

.z0 {
    z-index: 0 !important;
}

/* BUTTON STYLE --------------------------- */
.btn {
    /*font-size: 12px;*/
    border-radius: 0;
}

a.btn {
    text-decoration: none;
}

.btn {
    -webkit-transform: translateZ(0);
}

.btn {
    width: 100%;
    white-space: normal;
}

.btn-primaryBtn {
    text-transform: uppercase;
}

/* RADIO AND CHECKBOXES --------------------------- */

.radio-inline,
.checkbox-inline {
    padding-left: 0;
}

input[type=checkbox],
input[type=radio] {
    opacity: 0;
    position: absolute;
    z-index: 12;
    width: 18px;
    height: 18px;
}

input[type=checkbox]:checked,
input[type=radio]:checked,
input[type=checkbox]:focus,
input[type=radio]:focus {
    outline: none !important;
}

input[type=checkbox]+.lbl,
input[type=radio]+.lbl {
    position: relative;
    z-index: 11;
    display: inline-block;
    margin: 0;
    line-height: 20px;
    min-height: 14px;
    min-width: 14px;
    font-weight: normal;
}

input[type=checkbox]+.lbl.padding-16::before,
input[type=radio]+.lbl.padding-16::before {
    margin-right: 16px;
}

input[type=checkbox]+.lbl.padding-12::before,
input[type=radio]+.lbl.padding-12::before {
    margin-right: 12px;
}

input[type=checkbox]+.lbl.padding-8::before,
input[type=radio]+.lbl.padding-8::before {
    margin-right: 8px;
}

input[type=checkbox]+.lbl.padding-4::before,
input[type=radio]+.lbl.padding-4::before {
    margin-right: 4px;
}

input[type=checkbox]+.lbl.padding-0::before,
input[type=radio]+.lbl.padding-0::before {
    margin-right: 0px;
}

input[type=checkbox]+.lbl::before,
input[type=radio]+.lbl::before {
    font-family: fontAwesome;
    font-weight: normal;
    font-size: 15px;
    color: #35b392;
    content: "\a0";
    background-color: #FAFAFA;
    border: 1px solid #CCC;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    height: 20px;
    line-height: 16px;
    min-width: 20px;
    margin-right: 1px;
    margin-top: -5px;
}

input[type=checkbox]:checked+.lbl::before,
input[type=radio]:checked+.lbl::before {
    display: inline-block;
    content: '\f00c';
    background-color: #F5F8FC;
    border-color: #adb8c0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
}

input[type=checkbox]:hover+.lbl::before,
input[type=radio]:hover+.lbl::before,
input[type=checkbox]+.lbl:hover::before,
input[type=radio]+.lbl:hover::before {
    border-color: #1c7aad;
}

input[type=checkbox]:active+.lbl::before,
input[type=radio]:active+.lbl::before,
input[type=checkbox]:checked:active+.lbl::before,
input[type=radio]:checked:active+.lbl::before {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

input[type=checkbox]:disabled+.lbl::before,
input[type=radio]:disabled+.lbl::before,
input[type=checkbox][disabled]+.lbl::before,
input[type=radio][disabled]+.lbl::before,
input[type=checkbox].disabled+.lbl::before,
input[type=radio].disabled+.lbl::before {
    background-color: #DDD !important;
    border-color: #CCC !important;
    box-shadow: none !important;
    color: #BBB;
}

input[type=radio]+.lbl::before {
    border-radius: 32px;
    font-size: 46px;
}

input[type=radio]:checked+.lbl::before {
    content: "\2022";
    vertical-align: middle;
}

.form-group .radio-inline+.radio-inline {
    margin-left: 0;
}

.form-group .radio-inline {
    margin-right: 10px;
}

.form-group div .radio-inline:last-child {
    margin-right: 0;
}


/* CENTERED COLUMN STYLES --------------------------- */
.row-centered {
    text-align: center;
}

.col-centered {
    display: inline-block;
    float: none;
    /* inline-block space fix */
    margin-right: -4px;
    /* reset the text-align */
    text-align: left;
}


/* CUSTOM DROP DOWN --------------------------- */
.dropdown {
    text-align: left;
}

.dropdown-toggle {
    position: relative;
    display: block;
    height: 32px;
    padding: 6px 0 10px 10px;
    text-decoration: none;
    color: #999;
    border: 1px #d0d0d0 solid;
    background: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    color: inherit;
    text-decoration: none;
}

.dropdown-toggle:after {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 34px;
    height: 32px;
    content: '';
    background: #428bca;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.dropdown-toggle:before {
    position: absolute;
    z-index: 3;
    top: 45%;
    right: 11px;
    width: 0;
    height: 0;
    margin-left: -5px;
    content: ' ';
    pointer-events: none;
    border: solid transparent;
    border-width: 5px;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #fff;
}

.dropdown-toggle.open:after {
    background: #999999;
}

.dropdown-toggle.open:before {
    border-bottom-color: #fff;
    border-top-width: 0;
}

.dropdown-content {
    position: absolute;
    z-index: 3;
    top: 31px;
    right: 34px;
    left: 0;
    display: none;
    border: 1px #d0d0d0 solid;
    background: #fff;
}

.dropdown-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-content li {
    border-bottom: 1px solid #d0d0d0;
    cursor: pointer;
    padding: 6px 10px 6px 10px;
    color: #999999;
}

.dropdown-content li:hover {
    color: #3c8ccb;
}

/* LAYOUT
------------------------------------------------- */
.container {
    max-width: 980px;
    width: auto;
}

/* HOME PAGE
------------------------------------------------- */
.home-main {
    margin-top: 140px;
}

.notice-bar {
    font-size: 18px;
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    background: #3c8ccb;
    transition: padding 0.3s linear
}

.notice-bar small {
    font-size: 60%;
}

.notice-bar.compact {
    padding: 7px 10px;
}

.notice-bar.compact .survey {
    margin-top: 4px;
}

a.detail-link {
    display: block;
    text-align: center;
    font-weight: bold;
}

/* SURVEY  --------------------------- */
.notice-bar a.survey {
    font-size: 12px;
    float: right;
    margin: 8px 0 0;
    text-decoration: none;
    color: #fff;
}

.back-bar a.survey {
    font-size: 12px;
    float: right;
    margin: 0;
    text-decoration: none;
    color: #fff;
}

.surey-smoke .modal-dialog {
    margin-top: 58px;
}

.surey-smoke .modal-lg {
    width: 100%;
}

.surey-smoke .modal-content {
    background-clip: padding-box;
    background-color: #4596d2;
    border: 0;
    border-radius: 0;
    box-shadow: 0;
    outline: 0 none;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 35px 30px;
    font-size: 16px;
}

.surey-smoke button.close {
    width: 16px;
    height: 16px;
    background: url(../images/icon_close.png) no-repeat center center;
    position: relative;
    top: -10px;
    opacity: 1;
}

.surey-smoke p {
    margin-bottom: 15px;
}

.form-btn .yes {
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 8px 0 0 40px;
    font-size: 11px;
    margin: 0 20px 0 0;
    text-decoration: none;
}

.form-btn .yes:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: url('../images/icon-yes.png') no-repeat;
}

.form-btn .no {
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 8px 0 0 40px;
    font-size: 11px;
    text-decoration: none;
}

.form-btn .no:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: url('../images/icon-no.png') no-repeat;
}



.intro {
    padding: 0 20px;
}

.intro h2 {
    font-weight: 400;
    margin-top: 0;
}


/* SIDE BAR  --------------------------- */

.summary-block {
    padding: 20px 13px 0;
    border: 2px #e6e6e6 solid;
    border-radius: 8px;
    background: #fff;
}

.year-changer {
    margin-bottom: 10px;
    border: 1px #d1d1d1 solid;
    border-radius: 15px;
}

.nav-tabs.year-changer>li {
    width: 50%;
    margin: 0;
    padding: 0;
    border: 0;
}

.nav-tabs.year-changer>li>a {
    display: block;
    font-size: 11px;
    text-align: center;
    padding: 5px;
    text-decoration: none;
    border: 0;
    border-radius: 15px;
    color: #000;
    outline: none;
    font-weight: bold;
}

.nav-tabs.year-changer>li:last-child {
    float: right;
    margin: 0 -3px 0 0;
}

.nav-tabs.year-changer>li>a:hover {
    background: transparent;
}

.nav-tabs.year-changer>li.active>a {
    border: 0;
    background: #d1d1d1;
}

.estimation-block {
    font-size: 18px;
    position: relative;
    margin: 0 -13px;
    padding: 15px 20px;
    text-align: center;
    color: #fff;
    background: #3c8ccb;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
}

.estimation-block:after {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0;
    height: 0;
    margin-top: -14px;
    content: ' ';
    pointer-events: none;
    border: solid transparent;
    border-width: 14px;
    border-color: rgba(60, 140, 203, 0);
    border-left-color: #3c8ccb;
}

.estimation-block p {
    margin-bottom: 0;
}

.estimation-block .price {
    font-size: 22px;
}

.estimation-block .small {
    font-size: 65%;
}



/* MAIN BLOCK  --------------------------- */

.main-block {
    border: 2px #e6e6e6 solid;
    border-radius: 8px;
    background: #fff;
    min-height: 718px;
}

.tell-us {
    padding: 10px 25px;
}

.edit {
    font-size: 11px;
    position: relative;
    float: right;
    margin: 15px 20px 0 0;
    text-decoration: none;
}

.edit a.toogle {
    text-decoration: none;
    text-transform: uppercase
}

.edit.open a.toogle {
    color: #999;
}

.edit a.toogle:before {
    position: absolute;
    top: 3px;
    left: -15px;
    width: 11px;
    height: 11px;
    content: '';
    background: url('../images/icon-gear.png') no-repeat;
}

.edit.open a.toogle:before {
    background: url('../images/icon-gear-grey.png') no-repeat;
}

.pop-content {
    position: absolute;
    z-index: 30;
    top: 20px;
    right: 0;
    display: none;
    width: 280px;
    border: 1px #e2e2e2 solid;
    background: #fff;
}

.pop-head {
    padding: 10px;
    text-align: center;
    border-bottom: 2px #e2e2e2 solid;
}

.pop-content:after,
.pop-content:before {
    position: absolute;
    bottom: 100%;
    left: 95%;
    width: 0;
    height: 0;
    content: ' ';
    pointer-events: none;
    border: solid transparent;
}

.pop-content:after {
    margin-left: -6px;
    border-width: 6px;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
}

.pop-content:before {
    margin-left: -7px;
    border-width: 7px;
    border-color: rgba(226, 226, 226, 0);
    border-bottom-color: #e2e2e2;
}

.pop-content .btn {
    display: block;
    width: 100%;
}

/* RESET --------------------------- */

.reset-button {
    padding: 10px 20px;
    border-bottom: 2px #e2e2e2 solid;
}


/* MEMBER TABS --------------------------- */

.tab-container {
    padding: 0 15px;
}

#SliderTabs {
    height: 96px
}

.tab-toogle {
    font-size: 18px;
    position: relative;
    margin: 0 0 2px;
    padding: 10px 10px 10px 40px;
    color: #fff;
    background: #3c8ccb;
    cursor: pointer;
}

.tab-toogle .small {
    font-size: 13px;
    color: #fff;
    margin-top: -35px;
}

.tab-toogle .small a {
    color: #fff;
    text-decoration: none;
    font-weight: normal
}

.tab-toogle:before {
    position: absolute;
    left: 12px;
    width: 19px;
    height: 19px;
    content: '';
    background: url('../images/tab-arrow.png') no-repeat;
}

.tab-toogle.opened:before {
    background: url('../images/tab-arrow-down.png') no-repeat;
}

.tab-toogle em {
    display: block;
    color: #ddd;
    font-size: 11px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: normal;
    margin-top: 3px;
}

.next-year {
    padding: 10px 25px 0 25px;
}

.add-member {
    padding: 10px 25px 20px;
}

.add-member .form-horizontal .control-label {
    text-align: left;
}


.add-member .form-btn .yes {
    margin-right: 10px;
    color: #6d6e71;
    font-size: 13px;
}

.add-member .form-btn .no {
    color: #6d6e71;
    font-size: 13px;
}

.add-member .btn {
    display: block;
    width: 100%;
}

.add-service {
    line-height: 1;
    text-align: center;
}

.add-service img {
    margin-bottom: 10px;
}

.condition-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.condition-list li {
    margin: 0 0 2px;
    text-indent: -18px
}

.condition-list .remove {
    position: relative;
    top: 2px;
    left: 0;
    display: inline-block;
    overflow: hidden;
    width: 14px;
    height: 14px;
    text-indent: -9999px;
    outline: 0;
    background: url('../images/close.png') no-repeat;
}



/* RECOMMENDED PLANS --------------------------- */
.plans-recommend {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 20px 0 16px;
    text-align: center;
    border-bottom: 1px #dedede solid;
    background: #f7f8f8;
    z-index: 18;
}

.plans-recommend:after {
    position: absolute;
    bottom: -19px;
    left: 50%;
    width: 42px;
    height: 19px;
    margin-left: -21px;
    content: '';
    background: url('../images/divider-down.png') no-repeat;
}


.block {
    position: relative;
    padding: 50px 30px 30px;
    text-align: center;
    border: 1px #dbdbdb solid;
    border-radius: 8px;
    background: #fff;
}

.block .best-match {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 112px;
    height: 19px;
    margin-left: -56px;
    z-index: 1;
    background: url('../images/best-match.png') no-repeat;
}

.block .price,
.level .price {
    font-size: 18px;
    color: #35b392;
}

.block .price-grey {
    font-size: 18px;
}

.contribution {
    margin: 20px 0;
}

.recommend-info {
    padding: 0 10px;
    margin: 30px 0 0;
    text-align: center;
}

.sort-by .dropdown {
    display: inline-block;
    min-width: 275px;
}

.sort-by .control-label {
    font-size: 12px;
    margin: 6px 10px 0 0;
}

.compare-btn {
    text-align: right;
}

/* RESOURCES PAGE
------------------------------------------------- */

.top-header {
    font-size: 16px;
    padding: 10px 10px 33px;
    color: #cce2f4;
    background: #3c8ccb;
    margin-top: 96px;
}

.top-header h1 {
    margin: 0;
    line-height: 36px;
    color: #fff;
}

.content h2 {
    margin-top: 0;
}

.content h5 {
    font-size: 14px;
    color: #333;
}

.healthcare-terminology,
.healthcare-levels,
.healthcare-consider {
    margin-top: 30px;
    padding: 10px 0 10px;
    border-top: 1px #dad9d8 solid;
}

.side-block {
    padding: 20px 6px;
    border: 1px #d6d6d6 solid;
    border-radius: 5px;
    background: #fff;
}

.download-blocks {
    padding: 0 20px 10px;
}

.download-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.download-links li {
    position: relative;
    margin: 20px 0;
    padding: 0 0 0 30px;
}

.download-links li:before {
    position: absolute;
    left: 0;
    width: 19px;
    height: 23px;
    content: '';
    background: url('../images/icon-download-big.png') no-repeat;
}

ul.download-links li a {
    text-transform: uppercase;
}

.help-blocks {
    padding: 20px;
    border-top: 1px #dad9d8 solid;
    border-bottom: 1px #dad9d8 solid;
}

.help-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.help-links li {
    margin: 20px 0;
}

.contact-block {
    padding: 20px;
}

.healthcare-terminology h3,
.healthcare-levels h3,
.healthcare-consider h3 {
    margin: 30px 0;
    color: #444;
}

.resources-content h2 {
    margin: 15px 0 30px;
    color: #444;
}


/* COMPARE PAGE
------------------------------------------------- */

.back-bar {
    font-size: 12px;
    overflow: hidden;
    height: 39px;
    padding: 10px 0 10px;
    color: #fff;
    background: #3c8ccb;
    margin-bottom: -1px;
}

.back-bar a.back {
    color: #fff;
    text-decoration: none;
}

.feature-header {
    background: #454545;
}

.plan-selector {
    float: left;
    width: 43.85%;
    padding: 20px 20px 0 0;
}

.plan-selector .dropdown-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.plan-selector .dropdown-content li {
    padding: 10px 10px 10px 30px;
    border-bottom: 1px #d0d0d0 solid;
    background: url('../images/dropselect.png') no-repeat scroll 8px -91px;
    cursor: pointer;
}

.plan-selector .dropdown-content li.selected {
    background-position: 7px 16px;
}

.feature-head {
    float: left;
    width: 56%;
}

.feature-head .cell {
    padding-top: 35px;
    color: #fff;
    float: none;
    display: table-cell;
    width: 18%;
    vertical-align: bottom;
}

.feature-head>.cell.even:after,
.feature-head>.cell.odd:after {
    top: auto;
    bottom: -11px;
    height: 11px;
}

.feature-head .cell p {
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.feature-head .best-match {
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 2;
    width: 112px;
    height: 19px;
    margin-left: -56px;
    background: url('../images/best-match.png') no-repeat;
}


.button-bar {
    float: right;
    width: 56%;
    margin: 10px 0;
    text-align: center;
}

.button-bar .cell {
    border: 0;
}

.feature-block {
    margin-bottom: 15px;
    border: 1px #e9e9e9 solid;
    border-radius: 8px;
    background: #fff;
}

.feature-info {
    float: left;
    width: 75%;
    border-left: 1px #e9e9e9 solid;
}

.feature-brief {
    float: left;
    width: 25%;
    padding: 20px;
    text-align: center;
}

.feature-brief p {
    font-size: 12px;
}

.feature-block.downloads .feature-brief {
    padding: 5px 20px;
}

.feature-block.downloads .link {
    line-height: 1;
    display: block;
}

.feature-properties {
    float: left;
    width: 20%;
}

.feature-detail {
    float: left;
    width: 75%;
}

/* TABLE STRUCTURE --------------------------- */
.row-cell {
    border-bottom: 1px #e9e9e9 solid;
}

.row-cell.last {
    border-bottom: 0;
}

.col-cell {
    float: left;
    width: 33.3333%;
}

.cell-heading {
    font-size: 11px;
    position: relative;
    float: left;
    width: 25%;
    padding: 18px 0 0 15px;
}

.cell {
    position: relative;
    float: left;
    width: 33.33%;
    min-height: 50px;
    padding: 15px 5px 5px;
    text-align: center;
    border-left: 1px #e9e9e9 solid;
}

.cell.odd {
    border-color: #6d6e71;
    background: #6d6e71;
}

.cell.odd:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 11px;
    content: ' ';
    background: url('../images/cell-odd-bg2.png') no-repeat scroll center bottom;
}

.cell.even {
    border-color: #454545;
    background: #454545;
}

.cell.even:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 11px;
    content: ' ';
    background: url('../images/cell-even-bg2.png') no-repeat scroll center bottom;
}

.cell .price {
    font-size: 18px;
    line-height: 1;
    display: block;
}

.cell .price.green {
    color: #35b392;
}

/* TOOL TIP --------------------------- */
.tip {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: url('../images/tool-tip.png') no-repeat;
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-size: 11px;
    line-height: 1.2;
    opacity: 1;
    filter: alpha(opacity=100);
}

.tooltip.in {
    opacity: 1;
    filter: alpha(opacity=100);
}

.tooltip-inner {
    min-width: 200px;
    max-width: 300px;
    color: #6d6e71;
    text-align: center;
    text-decoration: none;
    background-color: #f7f8f8;
    border-radius: 4px;
    padding: 10px;
    -webkit-box-shadow: -1px 2px 3px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -1px 2px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: -1px 2px 3px 0px rgba(0, 0, 0, 0.5);
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #f7f8f8;
}




/* ENROLLMENT PAGE
------------------------------------------------- */
.print-links {
    text-align: right;
}

.print-links a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase
}

.page-title {
    font-size: 16px;
    position: relative;
    top: -20px;
    text-align: center;
}

.plan-block {
    margin: 20px 0;
    padding: 20px 0;
    background: #fcfdfc;
}

.plan-info {
    float: left;
    width: 26%;
    padding: 10px 10px 0 0;
    text-align: center;
}

.plan-info img {
    margin-bottom: 10px;
}

.plan-info h4 {
    margin-top: 0;
}

.plan-details {
    float: left;
    width: 74%;
    padding: 0 0 0 20px;
    border-left: 1px #ececeb solid;
}

.plan-details .price {
    font-size: 18px;
    line-height: 1;
    display: block;
}

.budget-col {
    float: left;
    width: 29%;
}

.budget-spend {
    float: left;
    width: 42%;
    padding: 0 0 0 20px;
    border-left: 1px #ececeb solid;
}

/* PREVENTITIVE CARE --------------------------- */
.care-block {
    margin-bottom: 10px;
    border: 2px #e5e6e5 solid;
    border-radius: 8px;
    background: #fff;
}

.care-block h4,
.care-block h5 {
    margin: 0;
}

.healthy-block h4 {
    margin-bottom: 10px;
}

.care-for {
    float: left;
    width: 25%;
    padding: 50px 30px;
    text-align: center;
}

.care-for .for {
    display: block;
    margin: 20px 0 0;
}

.care-info {
    float: left;
    width: 75%;
}

.care-info p {
    margin-bottom: 20px;
}

.care-level {
    float: left;
    width: 45%;
    padding: 30px 30px 10px;
}

.care-level .level,
.care-level .price {
    font-size: 18px;
    color: #35b392;
}

.care-block h4.care-name {
    margin: 0 0 10px;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background: #3c8ccb;
}

/* HEALTHCARE HISTORY --------------------------- */
.healthy-block {
    float: left;
    width: 55%;
    padding: 20px 30px 10px;
    border-left: 2px #e5e6e5 solid;
}

.history-block {
    margin: 0 0 20px 0;
}

.history-block .last-year {
    border-right: 1px #e5e6e5 solid;
}

.history-block .history-year {
    text-align: center;
}

.history-block .graph {
    margin-bottom: 20px;
    text-align: center;
}

.history-list {
    width: 270px;
    margin: 15px auto 0;
    padding: 0;
    list-style: none;
}

.history-list label {
    font-weight: normal;
    position: relative;
    width: 180px;
}

.history-list .legend1:before {
    position: absolute;
    top: 6px;
    left: -10px;
    width: 6px;
    height: 6px;
    content: '';
    border-radius: 100%;
    background: #5899d0;
}

.history-list .legend2:before {
    position: absolute;
    top: 6px;
    left: -10px;
    width: 6px;
    height: 6px;
    content: '';
    border-radius: 100%;
    background: #fcc16a;
}

.history-list .legend3:before {
    position: absolute;
    top: 6px;
    left: -10px;
    width: 6px;
    height: 6px;
    content: '';
    border-radius: 100%;
    background: #8a5aa3;
}

.history-list ul {
    font-size: 11px;
    margin-left: 15px;
    padding: 0;
    list-style: none;
}

.history-list ul label {
    font-weight: normal;
    width: 165px;
}

.history-list .amount {
    color: #35b392;
}

/* SERVICES PAGE
------------------------------------------------- */

.service-for {
    margin: 0 0 10px;
    padding: 30px 0 20px 0;
    background: #fff;
}

.service-for .for-whom {
    font-size: 18px;
    position: relative;
    margin: 0 0 2px;
    padding: 10px 10px 10px 10px;
    color: #fff;
    background: #3c8ccb;
}

.service-for .for-whom .small {
    font-size: 13px;
    width: 90px;
    color: #fff;
}

.service-for .avatar {
    float: left;
    margin: -5px 10px 0 0;
}

.your-services {
    padding: 10px;
    border: 1px #d6d6d6 solid;
    border-radius: 8px;
    background: #fff;
}

.condition-search-btn {
    padding: 6px 18px 7px
}

.service-block {
    position: relative;
    padding: 30px 30px;
    text-align: center;
    border: 1px #dbdbdb solid;
    border-radius: 5px;
    background: #fff;
}

.service-block .price {
    font-size: 18px;
    line-height: 1;
    display: block;
    color: #35b392;
}

.service-block .add {
    display: inline-block;
    margin: 30px 0 0;
    text-decoration: none;
    color: #a0a0a0;
}

.service-block .add .icon {
    display: inline-block;
    margin: 30px 0 0;
    width: 29px;
    height: 29px;
    background: url('../images/icon-add-sm.png') no-repeat;
}

.service-block .add.remove .icon {
    background: url('../images/icon-remove-sm.png') no-repeat;
}

/* TYPEAHEAD SEARCH --------------------------- display: none; */

.typeahead.dropdown-menu {
    width: 100%;
    padding: 0;
    border: 1px #d1d1d1 solid;
}

.typeahead.dropdown-menu li {
    border-bottom: 1px #d1d1d1 solid;
}

.typeahead.dropdown-menu li:last-child {
    border-bottom: 0;
}

.typeahead.dropdown-menu>li>a {
    text-decoration: none;
    padding: 6px 12px;
}

.visible-ss {
    display: none !important;
}

/* HISTORY PAGE
------------------------------------------------- */
.history-main {
    margin-top: 102px;
}

.history-main .top-section {
    padding: 30px 0;
}

.chart-box {
    padding: 0;
    border: 1px #d6d6d6 solid;
    border-radius: 8px;
    background: #fff;
    min-height: 600px;
    margin-bottom: 20px;
}

.chart-box .chart-title {
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.chart-costs ul {
    display: table;
    width: auto;
    margin: 0 auto;
    padding: 0
}

.chart-costs ul li {
    display: table-cell;
    font-size: 36px;
    text-align: center;
    padding: 30px;
    font-weight: normal
}

.chart-costs ul li.total {
    color: #36b493;
}

.chart-costs ul li em {
    display: block;
    font-size: 13px;
    color: #626d71;
}

.chart-title-simple {
    text-align: left;
    font-size: 18px;
    text-transform: capitalize;
    margin: 20px 0 10px 30px;
    color: #333;
}

/* CHARTS
----------------------------------*/
.highcharts-subtitle tspan {
    font-size: 10px;
    font-style: italic;
}

.highcharts-title tspan {
    font-size: 11px;
    font-style: normal;
    display: block;
}

#enrollment-chart-2012 .highcharts-container,
#enrollment-chart-2013 .highcharts-container {
    background: none !important;
}

#total-cost-2013 .highcharts-xaxis-labels tspan,
#total-cost-2013 .highcharts-xaxis-labels text,
#total-cost-2014 .highcharts-xaxis-labels tspan,
#total-cost-2014 .highcharts-xaxis-labels text {
    text-transform: uppercase;
    font-weight: bold;
    color: #666
}

.legend {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    margin: 0 auto;
}

.legend span {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.legend span i {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.legend span i.yellow {
    background: #7B3F98;
}

.legend span i.blue {
    background: #3C8CCB;
}

.legend span i.purple {
    background: #FFCD05;
}

/* RESPONSIVE STYLES
------------------------------------------------- */

@media (max-width: 992px) {
    .container {
        width: auto;
    }
}

@media (max-width: 920px) {
    .add-member .add-member-form {
        width: 80%;
    }
}

@media (max-width: 860px) {
    .nav-tabs.year-changer>li>a {
        font-size: 10px;
    }

    .feature-head>.cell.even:after,
    .feature-head>.cell.odd:after {
        bottom: -9px;
        height: 9px;
    }

    .add {
        margin-left: 10px;
    }

}


@media (max-width: 767px) {

    body {
        font-size: 12px;
    }

    .col-centered {
        display: block;
        margin-right: 0;
    }

    .modal-backdrop {
        z-index: 10;
    }

    /* HOME --------------------------- */

    .main-block {
        min-height: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .surey-smoke .modal-lg {
        width: auto;
    }

    .surey-smoke .modal-content {
        padding: 20px;
    }

    .surey-smoke button.close {
        right: -10px;
    }

    .tell-us {
        padding: 20px 10px 10px;
        text-align: center;
    }

    .plans-block .row .col-centered {
        display: inline-block;
    }

    .plans-block .row.row-centered {
        text-align: left;
    }

    .plans-block .col-4 {
        padding: 0;
    }

    .plans-block .block {
        padding: 15px 5px 10px;
        text-align: left;
        border: 0;
        border-right: 1px #dbdbdb solid;
        border-radius: 0;
    }

    .plans-block .block.last {
        border-right: 0;
    }

    .plans-block .block h4 {
        font-size: 14px;
    }

    .block .price,
    .block .price-grey {
        font-size: 14px;
    }

    .plans-block .block .btn {
        font-size: 10px;
        padding: 5px;
    }

    .block .best-match {
        top: -6px;
    }

    .estimation-block {
        border-radius: 0;
    }

    .estimation-block:after {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 0;
        height: 0;
        margin-top: -1px;
        margin-left: -21px;
        content: ' ';
        pointer-events: none;
        border: solid transparent;
        border-width: 21px;
        border-color: rgba(60, 140, 203, 0);
        border-top-color: #3c8ccb;
    }

    .plans-recommend {
        top: 115px !important;
    }

    .nav-tabs.year-changer>li>a {
        font-size: 12px
    }

    .tab-container {
        padding: 0;
    }

    .add-member {
        padding: 10px 10px 20px 20px;
    }

    /* SERVICES PAGE --------------------------- */
    .service-block {
        margin: 0 4px 10px;
        padding: 10px;
    }

    /* RESOURCES PAGE --------------------------- */
    .top-header {
        padding: 5px 0px;
    }

    .top-header h1 {
        font-size: 16px;
        text-align: center;
    }

    .healthcare-terminology,
    .healthcare-levels,
    .healthcare-consider {
        margin-top: 0px;
    }

    .healthcare-consider .col-md-4,
    .healthcare-terminology .col-md-4 {
        margin-bottom: 20px;
    }

    .history-block {
        margin: 0;
    }

    .history-block .last-year {
        border: 0;
    }

    .history-list {
        margin-bottom: 20px;
    }

    .side-block:after {
        content: "";
        display: table;
        clear: both;
    }

    .side-block>div {
        float: left;
        display: inline;
        width: 45%;
    }

    /* SERVICES PAGE --------------------------- */

    .service-for {
        margin: 0;
        padding-bottom: 0;
        background: transparent;
    }

    /* COMPARE PAGE  --------------------------- */
    .plan-selector {
        float: none;
        width: 100%;
        padding: 20px 8px;
    }

    .feature-header {
        margin-top: 100px;
        position: static;
        z-index: 10;
    }

    .feature-head {
        float: none;
        width: 100%;
    }

    .feature-block {
        border: 0;
        background: transparent;
    }

    .feature-brief {
        float: none;
        width: 100%;
        text-align: center;
    }

    .feature-info {
        float: none;
        width: auto;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        background: #fff;
    }

    .feature-detail {
        float: none;
        width: 100%;
    }

    .cell {
        padding-bottom: 10px;
    }

    .cell.odd:after {
        background: none;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #6d6e71;
        left: 50%;
        margin-left: -5px;
    }

    .cell.even:after {
        background: none;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #454545;
        left: 50%;
        margin-left: -5px;
    }

    /* ENROLLMENT --------------------------- */
    .top-header {
        margin-top: 60px;
    }

    .plan-block {
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .plan-info {
        float: none;
        width: auto;
        text-align: center;
    }

    .plan-details {
        float: none;
        width: auto;
        margin: 10px 0;
        padding: 10px;
        border: 1px solid #ececeb;
        border-radius: 8px;
        background: #fff;
    }

    .plan-details .price {
        font-size: 14px;
    }

    .budget-col {
        padding: 0 5px 0 0;
        width: 30%;
    }

    .budget-spend {
        padding: 0 0 0 5px;
        width: 40%;
    }

    .care-block {
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .care-info {
        float: none;
        width: auto;
        border: 1px #e5e6e5 solid;
        border-radius: 8px;
        background: #fff;
    }

    .care-level .level,
    .care-level .price {
        font-size: 14px;
    }

    .plan-details:before,
    .plan-details:after,
    .care-info:before,
    .care-info:after {
        display: table;
        content: ' ';
    }

    .plan-details:after,
    .care-info:after {
        clear: both;
    }

    /* COMPARE PAGE --------------------------- */

    .compare-main {
        margin-top: 0;
    }

    .feature-head .cell {
        font-size: 12px;
    }

    .cell {
        font-size: 11px;
    }

    .cell .price {
        font-size: 14px;
    }

    .your-services .col-6.col-centered {
        float: left;
    }

    /* HISTORY PAGE -----------------------------*/
    .history-main {
        margin-top: 0;
    }

    .history-main .top-section {}

    .chart-costs ul li {
        font-size: 30px;
        text-align: center;
        padding: 20px;
        font-weight: normal
    }

    /* CHARTS --------------------------------*/
    div.legend {
        text-align: center;
    }

    .service-block .add {
        margin-top: 0;
    }

    .service-block .add .icon {
        margin-top: 10px;
    }

    .top-header {
        position: fixed;
        margin-top: 35px;
        width: 100%;
        display: block;
        z-index: 15;
    }

    .compare-title {
        margin-top: -42px;
    }

    /* LOGOUT PAGE --------------------------- */
    div.loggedOut-block {
        margin: 0px 17px;
        padding: 0px 0px;
    }
}

@media (max-width: 600px) {
    .plan-filter {
        padding: 0 15px;
    }

    .plan-filter .col-6 {
        width: 100%;
        float: none;
        text-align: center;
    }

    .plan-filter .sort-by {
        margin-bottom: 20px;
    }

    /* HISTORY PAGE -----------------------------*/
    .chart-costs ul li {
        font-size: 24px;
        text-align: center;
        padding: 15px;
        font-weight: normal
    }


    .side-block>div {
        float: none;
        display: block;
        width: 100%;
    }


    .cell {
        min-height: 92px;
    }

}

@media (max-width: 480px) {

    .care-level,
    .healthy-block {
        padding: 20px 10px 10px;
    }

    .next-year {
        padding: 10px 0 0;
    }

    .what-new {
        padding: 10px 0 20px;
    }

    .enrollment-btn {
        width: 90%;
        display: block;
        margin: 0 auto;
    }

    /* HISTORY PAGE -----------------------------*/
    .chart-costs ul li {
        font-size: 20px;
        text-align: center;
        padding: 10px;
        font-weight: normal
    }

    .add-member .add-member-form {
        width: 100%;
    }
}


@media (max-width: 430px) {

    .notice-bar {
        font-size: 14px;
        padding: 15px 0;
    }

    .plans-recommend {
        top: 112px !important;
    }

    .add-member .btn {
        font-size: 11px;
    }
}


@media (max-width: 400px) {

    .visible-ss {
        display: block !important;
    }

    .slider-content .col-4 {
        width: 50%;
    }

    .slider-content .col-md-3.col-4 {
        width: 100%;
        float: none;
    }

    .what-new .col-4 {
        width: 50%;
    }

    .what-new .add-service {
        float: none;
        width: 100%;
    }

    /* HISTORY PAGE -----------------------------*/
    .chart-costs ul li {
        font-size: 16px;
        text-align: center;
        padding: 10px;
        font-weight: normal
    }

}

/* SMARTPHONES LANDSCAPE MODE ONLY */
@media only screen and (min-device-width: 320px) and (max-device-width: 640px) and (orientation: landscape) {
    .compare-header {
        position: static;
    }

    .compare-main {
        margin-top: 0;
    }
}









/* =============================================================
 * TODO: the following should be moved to ie2.css when available 
 * =============================================================
 */
/* 
 * the following is because the demo in-lined the CSS.
 */
.history-donut-title {
    color: #333333;
    font-size: 11px;
    font-weight: bold;
}

#noHistorySummary {
    display: none;
    padding: 0 15px;
}

.no-history-block {
    text-align: center;
    line-height: 1.8em;
    border-top: 1px solid #dddddd;
    padding-top: 25px;
    margin-top: 20px;
}

.no-history-block h4 {
    margin-bottom: 0;
    margin-top: 1em;
}

#noHistorySummary .no-history-block:first-child {
    border-top: none;
    padding-top: 10px;
    margin-top: 0;
}

ul.oneHistory li[role='presentation'] {
    width: 100%;
}

/*
 * The following is to generate the add/remove buttons with CSS instead of images.
 */
.addIconSmall,
.addIconBig {
    /* ** Remove the border **  
   border-width: 1px;
   border-style: outset;
   border-color: #e0e0e0;
*/
    display: inline-block;
}

.addIcon {
    border-radius: 50%;
    height: 0;
    width: 100%;
    overflow: hidden;
    padding-bottom: 100%;
}

.addIcon:after {
    content: '+';
    color: #fff;
    display: block;
    float: left;
    font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2em;
    font-weight: normal;
    line-height: 0.8em;
    margin-top: -0.5em;
    padding-bottom: 50%;
    padding-top: 50%;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.addIconSmall .addIcon:after {
    line-height: 0.8em;
}

.addIconBig .addIcon:after {
    line-height: 0.7em;
}

.addIconSmall .addIcon.removeIcon:after {
    line-height: 0.9em;
}

.addIconBig .addIcon.removeIcon:after {
    line-height: 0.8em;
}

.removeIcon {
    background-color: #999999;
}

.addIcon.removeIcon:after {
    content: '\d7';
}

.addIcon.editIcon:after {
    content: '\270f';
    transform: rotate(135deg);
    line-height: 1em;
}

.addIconSmall {
    font-size: 15px;
    width: 28px;
    height: 28px;
    cursor: pointer
}

.addIconBig {
    font-size: 17px;
    width: 43px;
    height: 43px;
}

/* 
 * the following is to allow separation of the history summary and the estimated total costs.
 */
.estimation-block {
    margin: 0 2px;
}

.summary-block {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

/*
 * the following cause the various pieces of the SPA to show/hide.
 */
.main-page {
    display: none;
}

.main-page.active {
    display: block;
}

/* Style that overrides the boostrap.min.css */
/* this style ends up with font too large for the Add a Service Page */
.form-control {
    font-size: 13px;
}

#SliderTabs #familyAddMemberButton {
    display: none;
}

#SliderTabs #familyEditFamilyButton {
    display: inline-block;
}

#SliderTabs.edit-mode #familyAddMemberButton {
    display: inline-block;
}

#SliderTabs.edit-mode #familyEditFamilyButton {
    display: none;
}

.add .addIconBig {
    margin-top: 7px;
    margin-bottom: 10px;
}

.main-block {
    min-height: 300px;
}

#memberQuestions .questions-tab-content {
    padding: 10px 25px 20px 25px;
}

.questions-tab-content .eachQA .question {
    padding-left: 2em;
    text-indent: -2em;
}

.questions-tab-content .eachQA .answer {
    padding-left: 2em;
    margin: 1em 0 2em 0;
}

.questions-tab-content .question-submit {
    padding-top: 25px;
    text-align: center;
}

/*
 * Handle the blue bar for not the home page.
 */
.top-header a.back {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

/*
 * bump the small-screen top header down.
 */
.top-header h1 {
    margin-top: 10px;
}

/*
 * resource page definitions.
 */
/* .resources-content { margin-top: 140px; } */
.resources-content h2 {
    margin: 15px 0 0 0;
}

.resources-block {
    position: relative;
    min-height: 1px;
    border-bottom: 1px solid #dad9d8;
    padding-bottom: 20px;
}

.resources-block>h2.item-title {
    padding: 30px 15px;
}

.resources-block>h3.item-subtitle {
    padding: 30px 15px;
}

.resources-block>p.item-text {
    padding: 0 15px;
}

.resources-block>.item-pieces {
    position: relative;
}

.resources-block>.item-pieces .item-piece {
    position: relative;
    vertical-align: top;
}

.resources-block>.item-pieces .item-piece:nth-child(3n+1) {
    clear: left;
}

.resources-block>.item-pieces .item-piece .piece-title {
    position: relative;
}

.resources-block>.item-pieces .item-piece .piece-text {
    position: relative;
}

.healthcare-levels {
    margin-top: 0;
    border-top: none;
}

.side-block {
    padding: 0 6px 20px 6px;
}

.download-blocks {
    margin: 20px 0;
    border-bottom: 1px solid #dad9d8;
}

.download-links li:before {
    position: static;
    width: 0;
    height: 0;
    content: '';
    background: transparent;
}

.download-links li.download-document:before {
    position: absolute;
    left: 0;
    width: 19px;
    height: 23px;
    content: '';
    background: url('../images/icon-download-big.png') no-repeat;
}

ul.download-links li.download-link a {
    text-transform: none;
}

ul.download-links li.download-document a {
    text-transform: uppercase;
}

ul.download-links li.download-link {
    padding: 0;
}

.contact-block {
    padding: 0 20px 20px 20px;
}

/*
 * login / Logged out page definitions.
 */
.loginForm {
    font-size: 13px;
}

.loginForm td {
    padding: 0px 4px
}

.loggedOut-block {
    color: #666;
    /* border: 2px #e6e6e6 solid; border-radius: 8px; */
    background: #fff;
    margin-bottom: 30px;
    padding: 0px 10px;
    margin: 0px 15px;
}

.loggedOutTitle {
    padding: 12px;
    font-size: 20px;
    font-weight: bold;
}

.loggedOutExtra {
    padding: 12px;
    font-size: 20px;
}

.loggedOutText {
    padding: 12px
}

/* search procedures conten */
.addservice-main {
    margin-top: 120px;
}

/*
.searchresult:nth-child(2n+2) { clear: left; margin-bottom: 20px; }
.searchresult:nth-child(2n+3) { margin-bottom: 20px; }
*/

.searchresult {
    vertical-align: top;
    margin-bottom: 20px;
}

/*
 * typeahead dropdown
 */
#search-form .dropdown-menu {
    width: 100%;
    padding: 0;
    border: 1px solid #d1d1d1;
}

#search-form .dropdown-menu>li {
    border-bottom: 1px solid #d1d1d1;
}

#search-form .dropdown-menu>li>a {
    text-decoration: none;
    padding: 6px 12px;
    white-space: normal;
}

.noResultMsg {
    font-weight: 700;
    padding-top: 20px;
    font-size: 14px;
}

.noResultNote {
    padding-top: 20px;
    font-size: 11px;
    padding-bottom: 15px;
}

.resultShow {
    display: inline;
}

.resultNoShow {
    display: none;
}

/* Plan Estimate Cards  */
.container-cards {
    padding-right: 0px;
    padding-left: 0px;
}

.cards {
    vertical-align: top;
    margin-top: 10px;
}

.planEstimateCard {
    position: relative;
    padding: 25px 10px;
    text-align: center;
    border: 1px #dbdbdb solid;
    border-radius: 5px;
    background: #fff;
}

.best-match {
    position: absolute;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    top: 20px;
    left: 50%;
    width: 112px;
    height: 19px;
    margin-left: -56px;
    z-index: 1;
    background: url('../images/best-match.png') no-repeat;
}

.costDetailArea {
    text-align: center;
    width: 90%;
}

.planEstimateCard .row {
    margin-left: 15px;
    margin-right: -15px;
}

.colName {
    float: left;
    text-align: left;
}

.colCost {
    float: right;
    text-align: right;
}

.yearlyPrem {
    font-size: 12px;
    text-align: left;
}

.oopEstimate {
    font-size: 12px;
    text-align: left;
    padding-top: 2px;
}

.maxOop {
    font-size: 14px;
    text-align: left;
    color: #c3c3c3;
    font-weight: bold;
    vertical-align: text-top;
}

.costEstimatedTotal {
    font-size: 15px;
    color: #93c6b0;
    font-weight: 900;
    padding-top: 8px;
}

/*.costEstimatedTotalText {font-size: 14px; font-weight: bold; color: #99cccc;} */
.col-md-4 {
    padding-left: 8px;
    padding-right: 8px;
}

.container {
    padding-left: 0px;
    padding-right: 0px;
}

.contributionFasHsa {
    padding-top: 10px;
    font-weight: bold;
}

.greyDropdown .dropdown-toggle:after {
    background-color: #999999 !important;
}

/* Ready to enroll section - is not in this version of the CSS, but is in a newer one. */
.care-recommend {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 20px 0 16px;
    text-align: center;
    border-bottom: 1px #dedede solid;
    background: #f7f8f8;
    z-index: -18;
}

.care-recommend:after {
    position: absolute;
    bottom: -19px;
    left: 50%;
    width: 42px;
    height: 19px;
    margin-left: -21px;
    content: '';
    background: url('../images/divider-down.png') no-repeat;
}

/* Legal Information  */
.header-LegalInformation {
    font-size: 16px;
    padding: 20px 10px 30px 20px;
    color: #cce2f4;
    background: ;
    margin-top: 96px;
}

.legalInformation-content .col-4 {
    padding: 0;
    width: 95%;
}

.legalInfo-block {
    position: relative;
    padding: 15px 30px 20px;
    text-align: left;
    border: 1px #dbdbdb solid;
    border-radius: 8px;
    background: #fff;
}

/* Not-ready block -- should be removed for production. */
.notready-main {
    font-weight: bold;
    font-size: 16px;
    font-style: italic;
    margin: 300px 0;
    text-align: center;
}

/* Add Memver validation - error message */
.triangle,
.triangle:before,
.triangle:after {
    width: 0.8em;
    height: 0.8em;
    color: #fff;
    position: relative;
    background-color: #991509;
    border-top-right-radius: 30%;
    display: inline-block;
}

.triangle:before,
.triangle:after {
    content: '';
    position: absolute;
}

.triangle {
    transform: rotate(-60deg) skewX(-30deg) scale(1, .866);
}

.triangle:before {
    transform: rotate(-135deg) skewX(-45deg) scale(1.414, .707) translate(0, -50%);
}

.triangle:after {
    transform: rotate(135deg) skewY(-45deg) scale(.707, 1.414) translate(50%);
}

.triangle-symbol {
    font-weight: bold;
    color: #fff;
    display: inline-block;
    position: relative;
    left: -0.55em;
    top: 2px;
    padding-top: 10px;
}

.addMember-errorMsg-block {
    position: relative;
    padding: 15px 30px 20px;
    border: 1px #dbdbdb solid;
    border-radius: 8px;
    background-color: #FDE9E8;
    font-weight: 100;
    font-size: 12px;
    color: #991509;
}

/* end - Add Memver validation */

/* 
 * bump the small-screen content down.
 */
@media screen and (max-width: 767px) {

    .top-header {
        top: 61px;
        margin-top: 0
    }

    .resources-content {
        margin-top: 100px;
    }

    .estimation-block {
        margin-bottom: 20px;
    }

    /* shrink the sort-by drop-down for small screens. */
    .sort-by .dropdown {
        min-width: 245px;
    }
}

/* 
 * bump the small-screen content down for iPhone.
 */
@media screen and (max-width: 370px) {

    .history-main {
        margin-top: 20px;
    }

    .addservice-main {
        margin-top: 0
    }

    /* HISTORY PAGE -----------------------------*/
    .chart-costs ul li {
        font-size: 14px;
        padding: 9px;
    }

    .chart-costs ul li em {
        font-size: 12px;
    }
}

#timeoutPopup {
    display: none;
    text-align: center;
    width: 350px;
    height: 150px;
    position: fixed;
    margin: auto;
    border: 5px solid red;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-radius: 8px;
    cursor: pointer;
}

.working {
    display: none;
    text-align: center;
    background-color: white;
    z-index: 1000;
}

.txtUppercase {
    text-transform: uppercase;
}

/* EULA PAGE -----------------------------*/
.margin-eula {
    margin-top: -5px;
}

.logout-eula {
    padding-top: 15px;
}

.logout {
    padding-top: 15px;
}

/* Session Timeout PAGE -------------------*/
#errorPage {
    margin-top: -40px;
}

@media (max-width: 767px) {
    #errorPage {
        margin-top: -60px;
    }
}

/* IBM pattern Library - header */
#header {
    width: 100%;
    background-color: #171717;
    display: block;
}

#header .dropdown-menu {
    border: none;
    min-width: unset;
    padding: 0;
    color: #565656;
    top: 125%;
    -webkit-box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.4);
    right: -22px;
    left: inherit;
    border-radius: 0;
    border: 1px solid #F3F3F3;
}

#header .dropdown-menu:before {
    width: 0;
    height: 0;
    margin-left: 15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #F3F3F3;
    position: absolute;
    z-index: 2;
    content: '';
    right: 20px;
    top: -10px;
    left: auto;
}

#header .dropdown-menu:after {
    width: 0;
    height: 0;
    margin-left: 15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    position: absolute;
    z-index: 2;
    content: '';
    right: 20px;
    top: -9px;
}

#header .dropdown-menu UL {
    list-style-type: none;
    overflow: auto;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    width: 216px;
    position: relative;
}

#header .dropdown-menu LI.logout {
    border-top: 1px solid #F3F3F3;
}

#header .dropdown-menu LI A:not([class*="svg-sprite"]) {
    color: #565656;
    font-size: 1em;
    text-decoration: none;
    padding: 10px 22px;
    text-align: left;
    display: block;
}

#header .dropdown-menu li a:not([class*="svg-sprite"]):hover {
    text-decoration: underline;
}

#header .dropdown-menu LI A:not([class*="svg-sprite"])>.svg-sprite-16 {
    margin-right: 12px;
    position: relative;
    top: 1px;
}

#header .dropdown-menu H4 {
    padding: 20px 22px 10px 22px;
    color: #565656;
    margin: 0;
}

#header .dropdown-menu .svg-sprite-32:hover {
    text-decoration: none;
}

#header .container-fluid {
    padding: 0;
}

#header .navbar-default {
    background-color: #171717;
    border: none;
    color: #ffffff;
    margin: 0;
    padding: 0;
    height: 125px;
    z-index: 1;
    border-radius: 0px;
}

#header .navbar .navbar-header {
    width: inherit;
    float: none;
}

#header .header-logo {
    display: block;
    width: unset;
    text-align: center;
    font-size: 18px;
    font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
    margin: 15px auto 0;
}

#header .header-logo A {
    position: absolute;
    bottom: 23px;
    top: auto;
    color: #ffffff;
}

#header .header-logo A IMG {
    width: 250px;
}

#header .header-logo .tagline {
    font-weight: 400;
}

#header .header-logo .tagline SPAN {
    font-weight: 600;
}

#header .menu-container {
    position: absolute;
    right: 15px;
    padding-top: 5px;
    font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

#header .menu-container>.dropdown {
    position: relative;
    display: inline-block;
    top: 25px;
    min-height: 38px;
}

#header .menu-container>.dropdown+.dropdown {
    margin-left: 24px;
}

#header .indicator {
    min-width: 18px;
    height: 18px;
    display: block;
    border-radius: 30px;
    background-color: #00BAB6;
    position: absolute;
    right: 10px;
    top: 0;
    line-height: 1;
    font-size: 11px;
    text-align: center;
    padding: 5px;
}

#header .header-login-container SPAN {
    font-size: 1em;
    display: inline-block;
}

#header .header-login-container .thumbnail-picture {
    width: 38px;
    height: 38px;
    border-radius: 38px;
}

#header .header-notification-container .indicator {
    left: 10px;
    right: auto;
    top: 8px;
}

#header .header-notification-container .dropdown-menu {
    min-width: 400px;
}

#header .header-notification-container .dropdown-menu UL {
    min-width: 400px;
}

#header .header-notification-container .dropdown-menu LI {
    display: table;
    padding: 10px 22px;
    width: 100%;
    position: relative;
}

#header .header-notification-container .dropdown-menu LI:before {
    content: '';
    display: block;
    height: 10px;
    width: 10px;
    background: #F3F3F3;
    border-radius: 12px;
    position: absolute;
    left: 22px;
    margin-left: auto;
}

#header .header-notification-container .dropdown-menu LI.notification-unread:before {
    background-color: #00BAB6;
}

#header .header-notification-container .dropdown-menu LI P {
    padding: 0 16px;
}

#header .header-notification-container .dropdown-menu LI>* {
    display: table-cell;
    vertical-align: top;
}

#header .header-notification-container .dropdown-menu LI .notification-date {
    padding-left: 22px;
}

#header .header-application-container .dropdown-menu LI {
    padding-left: 22px;
}

#header .header-application-container .dropdown-menu LI A:before {
    content: '';
    display: block;
    height: 10px;
    width: 10px;
    background: #418CFF;
    border-radius: 12px;
    position: absolute;
    left: 22px;
    margin-left: auto;
}

#header .chevron-down {
    position: relative;
    top: 6px;
}

#header .dropdown-toggle {
    cursor: pointer;
}

#header .dropdown-toggle .user,
#header .dropdown-toggle .alert-bell,
#header .dropdown-toggle .waffle {
    top: 10px;
}

#header .dropdown-toggle {
    left: 5px;
    top: 5px;
}

#header .dropdown-toggle.header-login {
    left: 0;
}

#header .left-nav-container {
    position: absolute;
    left: 0;
    top: 9px;
}

#header .left-nav-container A {
    color: white;
}

#header .main-menu {
    position: absolute;
    right: 0;
    bottom: 0;
}

#header .main-menu LI {
    margin: 0 10px;
}

#header .main-menu LI:after,
#header .main-menu LI.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0px;
    width: 100%;
    background: transparent;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

#header .main-menu LI.active:after {
    -webkit-transition: all ease 0.0s;
    transition: all ease 0.0s;
    height: 7px;
    background: #418CFF;
}

#header .main-menu LI:focus:after,
#header .main-menu LI:hover:after {
    height: 7px;
    background: #418CFF;
}

#header .navbar-nav>LI.active>A {
    background: transparent;
    color: #ffffff;
}

#header .navbar-nav>LI.active>A:hover,
#header .navbar-nav>LI.active>A:focus {
    background: transparent;
    color: #ffffff;
}

#header .navbar-nav>LI>A {
    font-size: 1em;
    line-height: 1.8;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #ffffff;
}

#header .navbar-nav>LI>A:hover,
#header .navbar-nav>LI>A:focus {
    color: #ffffff;
}

#header .arrow-up {
    margin-left: 34px;
}

@media (max-width: 1200px) {
    #header .main-menu LI {
        margin: 0 5px;
    }

    #header .navbar-nav>LI>A {
        font-size: 1em;
    }
}

@media screen and (max-width: 992px) {

    /*  #header .header-logo {
    width: 250px;
  } */
    #header .header-logo A IMG {
        width: 250px;
    }

    #header.slim .header-logo A {
        width: 250px;
        top: 17px;
        height: 30px;
        position: relative;
        margin: 0 auto;
        display: inline-block;
    }

    #header.slim .navbar.navbar-default {
        /*    height: 85px; */
    }

    #header .left-nav-container {
        bottom: 4px;
        top: auto;
    }
}

@media screen and (max-width: 767px) {
    #header .navbar-default {
        height: 90px;
    }

    #header nav {
        background-color: #051B75;
    }

    #header .container,
    #header .container-fluid,
    #header .container-fluid>.navbar-#header {
        margin: 0;
        padding: 0;
    }

    #header .navbar-default .navbar-nav>LI>A {
        font-size: 1.2em;
    }

    #header .navbar-default .navbar-nav>LI>A:focus,
    #header .navbar-default .navbar-nav>LI>A:hover {
        color: #F3F3F3;
    }

    #header .navbar-default .navbar-nav>LI.active>A {
        color: #418CFF;
    }

    #header .navbar-default .navbar-nav>LI.active>A:hover,
    #header .navbar-default .navbar-nav>LI.active>A:focus {
        color: #418CFF;
    }

    #header .navbar-default .navbar-toggle {
        margin-top: 25px;
        border-color: #ffffff;
        border-width: 2px;
    }

    #header .navbar-default .navbar-toggle:focus,
    #header .navbar-default .navbar-toggle:hover {
        background-color: rgba(255, 255, 255, 0.26);
    }

    #header .navbar-default .navbar-toggle .icon-bar {
        background-color: #ffffff;
    }

    #header .header-login {
        margin-left: 155px;
    }

    #header .arrow-up {
        margin-left: 147px;
    }

    #header .header-login i {
        top: 5px;
        right: 5px;
    }

    #header .header-login-container {
        right: 55px;
        top: 24px;
    }

    #header .header-login-container .thumbnail-picture {
        width: 38px;
        height: 38px;
        border-radius: 38px;
    }

    #header .main-menu {
        position: relative;
        right: unset;
        bottom: unset;
        margin-top: 0;
        margin-bottom: 0;
    }

    #header .main-menu LI {
        margin: 5px 0;
        border-bottom: none;
        text-align: center;
    }

    #header .main-menu LI:hover,
    #header .main-menu LI:active {
        border-bottom: none;
        text-align: center;
    }

    #header .main-menu LI:hover:after,
    #header .main-menu LI.active:after {
        height: 7px;
        background: transparent;
    }

    #header .main-menu LI.active {
        border-bottom: none;
        text-align: center;
    }

    #header .main-menu LI.active:hover,
    #header .main-menu LI.active:active {
        border-bottom: none;
        text-align: center;
    }

    #header .main-menu LI.active:nth-child(n+2) {
        border-top: 1px solid #ffffff;
    }

    #header .main-menu LI.active:nth-child(n+2):hover,
    #header .main-menu LI.active:nth-child(n+2):active {
        border-top: 1px solid #ffffff;
    }

    #header .main-menu LI:nth-child(n+2) {
        border-top: 1px solid #ffffff;
    }

    #header .main-menu LI:nth-child(n+2):hover,
    #header .main-menu LI:nth-child(n+2):active {
        border-top: 1px solid #ffffff;
    }
}

#header.slim .menu-container>.dropdown {
    top: 0;
}

#header.slim .navbar-default {
    height: 55px;
}

#header.slim .header-logo A {
    bottom: 17px;
}

#header.slim .header-notification-container,
#header.slim .header-login-container {
    top: 9px;
}

#header.slim .container-fluid>.navbar-header {
    width: inherit;
    float: none;
}

@media screen and (max-width: 992px) {
    #header.slim .nav-side-menu.slide {
        top: 85px;
    }
}

@media screen and (max-width: 767px) {
    #header .navbar .navbar-header {
        margin-right: 0;
        margin-left: 0;
    }

    #header.slim .header-login-container {
        right: 0px;
    }

    #header.slim .header-login-container .indicator {
        right: -5px;
    }
}

.sub-header {
    margin-bottom: 0px;
}

.sub-header .co-branding-wrapper {
    float: right;
    margin: 8px 15px 0px;
}

/* Tom says no max height/width */
/* .co-branding-wrapper IMG { max-height: 40px; max-width: 160px; } */
@media screen and (max-width: 992px) {
    .sub-header .co-branding-wrapper {
        float: none;
        text-align: center;
    }
}

/*** IBM pattern library - Sprite Icons ***/
.svg-sprite-32.white.user {
    background-image: url("../images/icons/spriteIBM_uxSprite_32.svg");
    background-size: 700px 125px;
    background-position: -150px -75px;
    width: 25px;
    height: 25px;
    content: '';
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.svg-sprite-16.chevron-down.white {
    background-image: url("../images/icons/spriteIBM_uxSprite_32.svg");
    background-size: 448px 80px;
    background-position: -208px -48px;
    width: 16px;
    height: 16px;
    content: '';
    display: inline-block;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.svg-sprite-16.logout.gray {
    background-image: url("../images/icons/spriteIBM_uxSprite_32.svg");
    background-size: 448px 80px;
    background-position: -384px -64px;
    width: 16px;
    height: 16px;
    content: '';
    display: inline-block;
    overflow: hidden;
    position: relative;
    margin-left: 0;
}

/* IBM pattern library - FOOTER */
FOOTER.footer {
    font-size: 1em;
    margin-top: 2em;
    width: 100%;
    background-color: #252525;
    color: #ffffff;
    display: block;
}

FOOTER.footer .container .row {
    background-color: #252525;
    color: #ffffff;
    margin-left: 0;
    margin-right: 0;
}

FOOTER .footer-logo {
    margin: 20px 0;
    font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

FOOTER .footer-copy {
    display: inline-block;
    margin-top: 25px;
}

FOOTER .ibm-logo {
    max-height: 230px;
    max-width: 120px;
    margin: 0 0 30px;
    float: right;
}

FOOTER .footer-links {
    display: inline;
    list-style-type: none;
    padding: 30px 15px 36px 15px;
    margin: 0;
}

FOOTER .footer-links>LI {
    display: block;
    float: right;
    margin: 10px 0 0 35px;
    padding: 0;
}

FOOTER .footer-links>LI::before {
    display: none;
}

FOOTER .footer-links>LI A {
    color: #ffffff;
    text-decoration: underline;
    display: block;
    text-align: right;
}

FOOTER .footer-copy {
    margin: 15px 0;
    float: right;
}

FOOTER .footer-logos-container {
    background-color: #ffffff;
}

FOOTER .coBrand {
    list-style-type: none;
    overflow: auto;
    margin: 0;
    padding: 0;
}

FOOTER .coBrand LI {
    float: right;
    margin: 25px 0 0 45px;
}

@media (max-width: 767px) {
    FOOTER .footer-logo IMG {
        margin: 15px auto 5px;
        display: none;
    }

    FOOTER .ibm-logo {
        float: none;
    }

    FOOTER .footer-links {
        margin: 20px auto;
        display: block;
        width: 300px;
        padding: 0;
    }

    FOOTER .footer-links LI {
        width: 100%;
        margin: 10px auto;
        float: none;
    }

    FOOTER .footer-links LI A {
        text-align: center;
    }

    FOOTER .footer-copy {
        float: none;
        display: block;
        text-align: center;
        width: 100%;
    }

    FOOTER .coBrand LI {
        width: 100%;
        float: none;
        margin: 25px auto;
    }

    FOOTER .coBrand LI IMG {
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 992px) {
    FOOTER.footer {
        font-size: 1em;
    }
}

FOOTER.organized .footer-links {
    padding: 20px 0 60px 0;
    height: 100%;
}

FOOTER.organized .footer-links LI {
    float: none;
}

FOOTER.organized .footer-links LI STRONG {
    margin-bottom: 18px;
    text-transform: uppercase;
    display: block;
}

FOOTER.organized .footer-links LI A {
    text-align: left;
}

FOOTER.organized .footer-links:nth-child(n+3) {
    border-left: 1px solid rgba(255, 255, 255, 0.26);
    position: relative;
}

FOOTER.organized .footer-copy-container {
    overflow: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
}

@media (max-width: 767px) {
    FOOTER.organized .footer-links:nth-child(n+3) {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.26);
    }

    FOOTER.organized .footer-links LI A,
    FOOTER.organized .footer-links LI STRONG {
        text-align: center;
    }
}

FOOTER.slim {
    height: auto;
    padding: 15px 0;
}

FOOTER.slim .footer-copy {
    display: inline-block;
    font-size: 14px;
    white-space: nowrap;
    float: left;
    padding: 12px 5px 12px 0;
    margin: 0;
}

FOOTER.slim .footer-logo {
    margin: 0;
}

FOOTER.slim .footer-logo A {
    width: 30px;
    display: inline-block;
}

FOOTER.slim .footer-logo A IMG {
    width: inherit;
}

FOOTER.slim .footer-links {
    padding: 0 15px;
    font-size: 12px;
    display: block;
    float: left;
}

FOOTER.slim .footer-links>LI {
    float: none;
    display: inline-block;
    margin: 0;
}

FOOTER.slim .footer-links>LI+LI {
    margin-left: 35px;
}

FOOTER.slim .footer-links+.footer-links {
    float: right;
}

@media (max-width: 767px) {
    FOOTER.slim .footer-logo A {
        width: auto;
        display: block;
    }

    FOOTER.slim .footer-copy {
        position: relative;
        margin: 0 auto;
        padding: 0;
        float: unset;
    }

    FOOTER.slim .footer-links {
        float: none !important;
    }

    FOOTER.slim .footer-links LI,
    FOOTER.slim .footer-links LI+LI {
        margin: 5px auto;
    }
}

/* semi-sticky footer */
html,
body {
    height: 100%;
}

#complete-window {
    min-height: 100%;
}

.push {
    height: 89px;
}

/* FOOTER.footer { height: 74px; } */
FOOTER.footer {
    margin-top: -74px;
}

/*@media (max-width: 767px) { #complete-window { min-height: unset; } } */
@media (max-width: 767px) {
    .push {
        height: 50px;
    }

    FOOTER.footer {
        margin-top: -50px;
    }
}

/* end of semi-sticky footer */

/* correct pattern library for hamburger usage */
@media (max-width: 992px) {
    FOOTER.slim .footer-copy {
        position: relative;
        margin: 0 auto;
        float: unset;
    }

    .push {
        height: 50px;
    }

    FOOTER.footer {
        margin-top: -50px;
    }

    FOOTER.footer .footer-logo .ibm-logo.forScreen {
        display: none;
    }

    FOOTER.footer .footerLower {
        display: none;
    }

    FOOTER.slim .footer-logo {
        margin: 0;
    }

    FOOTER .footer-copy {
        float: none;
        display: block;
        text-align: center;
        width: 100%;
    }
}

FOOTER.footer .forPrint {
    display: none;
}

@media print {
    .EULA-buttons .btn {
        display: none !important;
    }

    .EULA-block {
        max-height: none !important;
    }

    FOOTER.footer .forScreen {
        display: none;
    }

    FOOTER.footer .footer-logo .ibm-logo.forPrint {
        display: inline-block;
        float: right;
        margin: 16px 9px;
    }

    FOOTER.footer.slim .footer-logo .footer-copy {
        margin: 16px 0 5px 0;
        float: left;
        text-align: left;
        width: auto;
    }
}

@media screen and (min-width: 1280px) {
    .container {
        width: auto;
        max-width: 1280px;
    }
}