/* Minification failed. Returning unminified contents.
(16,28): run-time error CSS1039: Token not allowed after unary operator: '-c-bg-default'
(27,23): run-time error CSS1039: Token not allowed after unary operator: '-border-thick'
(27,49): run-time error CSS1039: Token not allowed after unary operator: '-c-border-action'
(74,34): run-time error CSS1039: Token not allowed after unary operator: '-c-border-weakest'
(80,34): run-time error CSS1039: Token not allowed after unary operator: '-c-border-weakest'
(84,36): run-time error CSS1039: Token not allowed after unary operator: '-c-surface-theme-weakest'
(85,27): run-time error CSS1039: Token not allowed after unary operator: '-border-thin'
(85,52): run-time error CSS1039: Token not allowed after unary operator: '-c-border-action'
(239,22): run-time error CSS1039: Token not allowed after unary operator: '-c-surface-theme'
(240,17): run-time error CSS1039: Token not allowed after unary operator: '-c-text-white'
(243,19): run-time error CSS1039: Token not allowed after unary operator: '-spacing-xxxs'
(243,39): run-time error CSS1039: Token not allowed after unary operator: '-spacing-sm'
(267,31): run-time error CSS1039: Token not allowed after unary operator: '-c-border-white'
 */
/* --- Top Bar Styles - Desktop --- */
/* top bar relative for desktop */
.screen-top-bar {
    width: 960px;
    margin: 0 auto;
    position: inherit;
    border: 0;
}

.screen-top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0;
    background-color: var(--c-bg-default);
}

.logo-top-bar {
    margin-left: 20px;
}

    .logo-top-bar a:focus-visible {
        display: block;
        outline-offset: 4px;
        border-radius: 2px;
        outline: var(--border-thick) solid var(--c-border-action);
    }

.screen-top-bar-user-name {
    line-height: 31px;
    font-size: 16px;
    margin-top: 20px;
    margin-right: 20px;
    float: right;
    color: #003A96;
    width: 380px;
    text-overflow: clip;
    text-align: right;
}

.screen-top-bar-home-link {
    margin-right: 20px;
    margin-top: 20px;
    float: right;
}

div.screen-desktop-top-bar-search-icon {
    margin-right: 20px;
    margin-top: 20px;
    float: right;
}

div.screen-desktop-top-bar-search-box {
    width: 308px;
    z-index: 1000;
    position: absolute;
    min-height: 44px;
    float: right;
    margin-left: 642px;
    padding-top: 15px;
}

    div.screen-desktop-top-bar-search-box .tt-menu {
        margin-top: -15px;
        padding: 5px;
        background-color: #ffffff;
        display: block;
        border: solid 2px #003A96;
        width: 100%;
        cursor: pointer;
        line-height: 32px;
        border-radius: 5px;
        border: 0.5px solid var(--c-border-weakest);
        box-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
    }

    div.screen-desktop-top-bar-search-box .tt-suggestion {
        padding: 5px;
        border: 0.5px solid var(--c-border-weakest);
    }

        div.screen-desktop-top-bar-search-box .tt-suggestion:hover {
            background-color: var(--c-surface-theme-weakest);
            outline: var(--border-thin) solid var(--c-border-action);
            outline-offset: -1px;
        }

    div.screen-desktop-top-bar-search-box.expanded {
        opacity: 1;
    }

    div.screen-desktop-top-bar-search-box input[type=text] {
        border-width: 3px;
        border-radius: 2em;
    }

a.screen-desktop-top-bar-search-box-close-icon {
    position: absolute;
    z-index: 1001;
    margin-top: 5px;
    margin-left: -36px;
}

/* --- navigation styles  --- */
div.screen-navigation {
    background-color: #003A96;
    left: 0;
    z-index: 1;
    width: 960px;
    margin: 0 auto;
    height: 64px;
    position: inherit;
}

    div.screen-navigation ul {
        margin: 0;
        width: auto;
        padding: 12px 12px;
        list-style-type: none;
        cursor: pointer; /* allow click focus on safari to turn off menu li:focus */
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* disable color highlight on chrome */
        display: flex;
        justify-content: space-between;
    }

        div.screen-navigation ul li {
            display: inline-block;
            margin-left: 0;
            padding-left: 0;
            cursor: pointer;
        }

/* cause IE to bubble up focus event to parent if toggle menu div*/
div.screen-navigation-button {
    pointer-events: none;
}

/* execute link if button is anchor */
a.screen-navigation-button {
    pointer-events: auto;
}

.screen-navigation-button {
    display: block;
    color: #fff;
    text-decoration: none;
    background-color: #003A96;
    cursor: pointer;
    line-height: 40px;
    font-size: 16px;
    width: 176px;
    text-align: center;
    outline: medium none;
    border-radius: 4px;
    border: 1px solid #002F6C;
}

    .screen-navigation-button:visited,
    .screen-navigation-button-active:visited {
        color: #fff;
    }

    .screen-navigation-button:hover,
    .screen-navigation-button-active:hover {
        color: #fff;
    }

/* lighten button background  when clicked */
div.screen-navigation ul li:focus .screen-navigation-button {
    border: 1px solid #ffffff;
}

div.screen-navigation-button-menu {
    /* use opacity to fake immediate toggle */
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s;
    /* make sure menu works since parent is disabled */
    pointer-events: auto;
    background-color: #fff;
    position: absolute;
    width: 186px;
    height: auto;
    border-bottom: 1px solid white;
    border-right: 1px solid #003A96;
    border-left: 1px solid #003A96;
    z-index: 99999;
    left: auto;
    margin-left: -5px;
    box-shadow: 5px 10px 18px #888888;
}

div.screen-navigation ul li:focus div.screen-navigation-button-menu {
    /* toggle visibility */
    opacity: 1;
    visibility: visible;
}

div.screen-navigation-button-menu ul {
    display: inline-block;
}

    div.screen-navigation-button-menu ul li {
        display: flex;
        clear: left;
        text-align: left;
        font-size: 14px;
        line-height: 26px;
        list-style-type: disc;
    }

        div.screen-navigation-button-menu ul li a {
            display: block;
            margin-left: 0.25em;
        }

div.screen-navigation-button-menu-close {
    color: white;
    text-align: center;
    width: 100%;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
    background-color: #003A96;
    position: relative;
    cursor: pointer;
    clear: both;
    margin-top: 10px;
}
/* ---Sub-navigation--- */
.accessible .sub-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--c-surface-theme);
    color: var(--c-text-white);
    width: 960px;
    margin: 0 auto;
    padding: var(--spacing-xxxs) var(--spacing-sm);
}

    .accessible .sub-navigation .contact-links {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
    }

    .accessible .sub-navigation button {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-radius: 0;
        gap: 8px;
    }

        .accessible .sub-navigation button:hover {
            background: inherit;
            text-decoration: underline;
        }

        .accessible .sub-navigation button:focus {
            outline: 2px var(--c-border-white);
            outline-offset: 0;
            outline-style: dashed;
            background: transparent;
        }

    .accessible .sub-navigation a:focus {
        outline: none;
    }

/* --- content styles - Desktop --- */
.page-content-container {
    width: 960px;
    margin: 0 auto;
}

div.page-content-header {
    padding: 0.938rem 20px;
}

.page-content-header-greeting {
    display: inline-block;
    width: 630px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* fix issue with ie 11 inline block issue */
    .page-content-header-greeting {
        transform: translateY(-1.06rem);
    }
}

.page-content-header-menu-container {
    display: inline-block;
}

.page-content {
    padding: 20px;
}

.desktop-form-75-percent {
    width: 75% !important;
    padding: 20px;
}

.desktop-form-50-percent {
    width: 50% !important;
    padding: 20px;
}

div.document-list-header {
    width: 85%;
    margin: 30px auto 0 auto;
    padding: 15px;
}

div.document-list-document {
    width: 85%;
    margin: 0px auto;
    padding: 15px;
}

div.page-content-gray-tab {
    display: block;
    margin: 10px 5px;
}

div.page-content-gray-tab-title {
    padding: 15px;
    font-size: 24px;
    line-height: 30px;
    width: 40%;
}

div.page-content-gray-tab-content {
    padding: 15px;
}

div.page-content-blue-tab-title {
    padding: 15px;
    font-size: 24px;
    line-height: 30px;
    width: 40%;
}

div.page-content-blue-tab-content {
    padding: 15px;
}

.page-content-block-75-percent,
div.page-content-block-75-percent {
    width: 75%;
    margin: 10px auto;
}

div.widget-member-placard {
    margin-bottom: 20px
}

div.widget-member-placard-name {
    max-width: 75%;
    clear: none;
}

div.widget-member-placard-info {
    min-width: 25%;
    display: inline-block;
}

div.widget-member-placard-planinfo {
    width: 46%;
}

div.widget-member-placard-info-dependents-item {
    display: inline-block;
}

div.widget-member-placard-info-dependents-item-spacer {
    display: inline-block;
}

div.widget-callout-card {
    float: left;
    width: 306px
}

div.widget-callout-card-link-box {
    border-radius: 0;
    background-color: transparent;
}

    div.widget-callout-card-link-box h4 {
        min-height: 8rem;
    }

    div.widget-callout-card-link-box::after {
        content: "";
        height: 85%;
        position: absolute;
        left: 0;
        top: 0;
        width: 90%;
        z-index: 0;
        background-color: #009CA6;
    }

div.widget-callout-card-link-box-description {
    background-color: #B1E4E3;
    color: inherit;
}

div.cost-sharing-tile {
    width: 45%;
    margin: 20px;
}

#MessageSortSelect {
    width: 300px;
}

div.widget-benefit-detail-tile {
    width: 280px;
    margin: 10px 10px;
}

/* --- page footer styles --- */
.page-footer {
    height: auto;
}

.page-footer-left {
    float: left;
    width: 50%;
}

.page-footer-right {
    float: right;
    width: 40%;
}

.page-footer-copyright {
    float: right;
    clear: right;
    padding: 5px 5px 5px 15px;
}

