/* --------------------------------------------------- */


/* Primary Nav Menu */
/* New Comment */

.unlink>a {
    cursor: default;
}


/* Menu Fourth Column */

@media (min-width: 1024px) {
    /* CSS Column Version
	 * (keep for future use case where we have four sections that need to be displayed in three columns)
	.nav--primary .has-mega.cols-3 > ul { column-count: 3; display: block; column-gap: 60px; column-rule: 1px solid rgba(79, 117, 139, 0.20); padding: 25px 30px; }
	.nav--primary .has-mega.cols-3 > ul > li:nth-child(2) { border-right: none; border-left: none; padding-right: 0; padding-left: 0; margin-left: 0; margin-right: 0; }
	.nav--primary .has-mega.cols-3 > ul > li:nth-child(3) { border-left: 0; margin-left: 0; padding-left: 10px; }
	.nav--primary .has-mega.cols-3 > ul > li:last-child { margin-left: 0; border-left: 0; margin-top: 40px; padding-left: 10px; }
	*/
    .nav--primary .has-mega>ul a strong, .nav--primary .has-mega>ul h2 strong {
        padding: 6px 10px;
        background-color: #f1f1f1;
        margin-left: -10px;
    }
    .nav--primary .has-mega>ul ul {
        margin-top: 0;
    }
    .nav--primary .has-mega.cols-3>ul>li {
        -ms-flex: none;
        flex: none;
        width: auto;
        height: 100%;
        margin-bottom: 30px;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }
    .nav--primary .has-mega>ul li:not(.menu-item) {
        display: none;
    }
    .nav--primary .has-mega>ul ul li~li {
        margin-top: 9px;
    }
    .nav--primary .has-mega>ul ul a {
        font-size: 16px;
    }
    .nav--primary .has-mega.cols-4>ul {
        padding-left: 16px;
        padding-right: 16px;
    }
    .nav--primary .has-mega.cols-4>ul>li {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        padding-right: 16px;
        padding-left: 16px;
    }
    .nav--primary .has-mega.cols-4>ul>li:nth-child(2) {
        -ms-flex: 0 0 25%;
        flex: 0 0 25% !important;
    }
    .nav--primary .has-mega.cols-4>ul>li li:last-child {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
    .nav--primary .has-mega.cols-4>ul>li~li {
        margin: 0;
    }
    .nav--primary .has-mega.cols-4>ul ul a {
        font-size: 16px;
    }
    .nav--primary .has-mega.cols-4>ul ul li~li {
        margin-top: 14px;
    }
    .nav--primary .has-mega>ul li.menu-title {
        margin-top: 24px !important;
    }
    .nav--primary .has-mega>ul li.menu-title a {
        font-family: 'futura-pt', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: #262626;
        text-transform: uppercase;
    }
}


/* Primary Nav Menu - Sub Programs */


/* Mobile */

@media (max-width: 1023px) {
    .nav--primary .has-mega>ul ul {
        margin-top: 0;
    }
    .nav--primary .has-mega>ul>li>ul ul a {
        padding-left: 60px;
        font-weight: 400;
    }
}


/* Desktop */

@media (min-width: 1024px) {
    .nav--primary .has-mega>ul ul ul li {
        padding-left: 20px;
        position: relative;
    }
    .nav--primary .has-mega>ul ul ul {
        padding-top: 12px;
        border-left: 1px dotted #ccc;
        position: relative;
        margin-top: 0;
        padding-left: 1px;
        margin-left: 5px;
    }
    .nav--primary .has-mega>ul ul ul li a {
        font-size: 15px;
    }
    .nav--primary .has-mega>ul ul ul a {
        font-size: 15px !important;
        font-weight: 400;
        background-color: #fff;
    }
    .nav--primary .has-mega>ul ul ul li:before {
        content: '';
        display: block;
        border-top: 1px dotted #ccc;
        position: absolute;
        top: calc(50% - 1px);
        left: 0;
        width: 15px;
    }
    .nav--primary .has-mega>ul ul ul li~li {
        margin-top: 14px !important;
    }
    .nav--primary .has-mega>ul ul ul:before {
        content: '';
        display: block;
        height: 9px;
        background-color: #ffff;
        position: absolute;
        bottom: 0;
        left: -1px;
        width: 5px;
        border: 1px solid #fff;
    }
}


/* --------------------------------------------------- */


/* Sub Menu */

.widget--nav .widget__body>ul>li.current-page-ancestor>a {
    color: #888;
    background-color: #f1f1f1;
}


/* --------------------------------------------------- */


/* Program Menu Dropdown */


/* Mobile */

@media (max-width: 1023px) {
    .nav--program ul li ul li a {
        padding-left: 45px;
        font-size: 16px;
    }
    .nav--program ul li ul {
        border-left: 0;
        background-color: rgba(0, 0, 0, .1);
        border-top: 1px solid #80cce5;
        border-right: 0;
        border-bottom: 0;
    }
}


/* Desktop */

@media (min-width: 1024px) {
    .nav--program {
        padding: 0;
    }
    .nav--program .nav__inner,
    .nav--program ul li {
        height: 60px;
        line-height: 60px;
    }
    .nav--program ul li ul {
        display: block;
        visibility: hidden;
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
        top: 60px;
        left: -25px;
        background-color: #fff;
        z-index: 1;
        padding: 20px 25px 5px;
        box-shadow: 0 3px 4px rgba(0, 0, 0, .20);
        border-bottom: 4px solid #0099cc;
        transition: .2s opacity;
        z-index: 99;
    }
    .nav--program ul li:hover ul {
        visibility: visible;
        opacity: 1.0;
        width: 270px;
        height: auto;
    }
    .nav--program ul li {
        position: relative;
    }
    .nav--program ul li ul li a {
        color: #4f758b;
        font-weight: normal;
    }
    .nav--program ul li ul li {
        margin: 0 0 20px;
        line-height: 1.0;
        height: auto;
    }
}

.list-cards-process li {
    margin-bottom: 1em;
}

.list-cards-process li li {
    margin-bottom: 6px;
}

.section--program-overview .section__group {
    padding-bottom: 27px;
}

.single-ncqa-white-paper .widget__image {
    margin-bottom: 2em;
}

#ncqa-sunset-notice .sunset-notice-content {
    background: #fff;
    color: #000;
    padding: 1em;
}

.section--updates .section__inner {
    margin-bottom: 60px;
}

.article__entry .table {
    margin: 1em 0;
}

.article ol:not([class]),
.article ol[class=""],
.article ul:not([class]),
.article ul[class=""] {
    margin: 1em 0;
    padding: 0 2em;
}

.video--embed-wistia,
.video--embed-mp4 {
    padding-bottom: 1em;
    width: 100%;
}

.video--embed-mp4 video {
    width: 100%;
}

.widget--nav .widget__body ul>li>ul {
    display: none;
}

.widget--nav .widget__body ul>li>ul.current-submenu,
.widget--nav .widget__body ul>li.current-menu-item>ul {
    display: block;
}

.section__content .article a {
    color: #0099cc;
    text-decoration: underline;
}

.paging ul {
    flex-wrap: wrap;
}

.paging li span {
    display: block;
    width: 32px;
    height: 32px;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    border-radius: 50%;
    transition: background .4s ease, color .4s ease;
    text-align: center;
    line-height: 30px;
}

.page-numbers.current {
    background: #0099cc;
    color: #fff;
}


/* Event Listing Filters v2 */

.list-filters {
    display: flex;
    width: 100%;
}

.list-filter {
    justify-content: flex-end;
    flex: 1;
}

.list-filter.list-filter-group {
    justify-content: flex-start;
    padding-right: 20px;
}

.list-filter.list-filter-group li~li {
    margin: 0;
}

.list-filter li.list-filter-label {
    margin-right: 10px;
}

.list-filter li {
    margin-top: 2px;
    margin-bottom: 2px;
}

.list-filter li a {
    border: 1px solid #aaa;
}

.list-filter li.current-filter a {
    background-color: #4f758b;
    color: #fff;
    border-color: #4f758b !important;
}

.list-filter.list-filter-group li a {
    border-radius: 0;
}

.list-filter.list-filter-group li:nth-child(2) a {
    border-radius: 99px 0 0 99px;
    border-left: 1px solid #aaa;
    border-right: 0;
}

.list-filter.list-filter-group li:last-child a {
    border-radius: 0 99px 99px 0px;
    border-left: 0;
}


/* Table Fixes */

.article--default .article__entry .table {
    max-width: 96%;
}

.article--default .article__entry table {
    max-width: 100%;
    width: 100%;
}

.article--default .article__entry table td[data-heading="Website"],
.article--default .article__entry table td[data-heading="Email"] {
    word-break: break-all;
}

@media (max-width: 1170px) {
    .list-filters {
        display: block;
    }
    .list-filter {
        justify-content: flex-start;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .article--default .article__entry .table {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .list-filter.list-filter-group {
        padding-right: 0;
    }
    .list-filter.list-filter-group li {
        display: block;
        width: 100%;
    }
    .list-filter.list-filter-group li a {
        display: block;
        width: 100%;
        border-radius: 0;
    }
    .list-filter.list-filter-group li:nth-child(2) a {
        border-radius: 6px 6px 0 0;
        border-bottom: 0;
        border-right: 1px solid #aaa;
    }
    .list-filter.list-filter-group li:last-child a {
        border-radius: 0 0 6px 6px;
        border-top: 0;
        border-left: 1px solid #aaa;
    }
}


/* Event Messages */

.message {
    margin-bottom: 20px;
}

table.messageTable .messageText h3 {
    color: #31708f;
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    padding: 20px;
    font-size: 20px;
    border-radius: 4px;
}

table.messageTable .messageText h3 a {
    font-size: inherit !important;
}


/* List Styles */

.section__body ol:not([class]),
.section__body ul:not([class]) {
    margin: 1em 0;
    padding: 0 2em;
    line-height: 1.75;
}

.page-template-page-program-landing .section--info .section__inner p {
    margin-bottom: 1em;
}

.table {
    margin: 1.5em 0;
}

.edit_link a {
    text-decoration: underline;
}

.heading .heading__inner p a {
    color: #fff;
}

.section__body .list-process {
    margin: 0;
    padding: 0;
}


/* Accordions */

.accordion {
    clear: both;
    margin-top: -15px;
    margin-bottom: 40px;
}

.ncqa-save-trigger.saved span {
    color: rgb(255, 25, 64);
}

.ncqa-save-trigger.saved i {
    color: rgb(255, 25, 64);
}

.notice {
    border-left: 2px solid #ccc;
    padding: 1em;
    margin: 1em 0;
    border-bottom: 1px solid #eee !important;
    border-right: 1px solid #eee !important;
    background: #fdfdfd;
}

.notice.success {
    border-color: #080;
    color: #080;
}

.notice.updated {
    border-color: #080;
    color: #080;
}

.notice.error {
    border-color: #800;
    color: #800;
}


/* Home */

.section__body ol.list-post-cards {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.5;
}

.section__body-inner ul:not([class]) li a,
.section__body-inner ol:not([class]) li a,
.section__body td a,
.section__body ul:not([class]) li a,
.section__body ol:not([class]) li a {
    text-decoration: underline;
    color: #0099cc;
}

.section__body-inner ul li a:hover,
.section__body-inner ol li a:hover,
.section__body td a:hover,
.section__body li a:hover {
    text-decoration: none;
}

.section__body-inner .paging ul li a,
.section__body-inner .paging ul li a {
    text-decoration: none;
}

.aligncenter {
    text-align: center;
}

.alignright {
    text-align: right;
}


/* Sticky (>tablet) */

@media screen and (max-width:1023px) {
    .sticky-wrapper {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 99;
    }
}

@media screen and (min-width:1024px) {
    .stuck {
        position: fixed;
        top: 0;
    }
    .admin-bar .stuck {
        top: 32px;
    }
}


/* Footnotes */

.footnotes {
    font-size: .9em;
    margin-top: 50px;
}

.footnotes::before {
    width: 40px;
    content: '';
    display: block;
    background-color: #496b80;
    height: 2px;
    margin-bottom: 30px;
}

.article--default .article__entry .footnotes p {
    line-height: 1.6;
    margin-bottom: 1.2em;
}

.zmdi-gray {
    color: #b9b9b9;
}

.article--popup .article__entry ul,
.article--popup .article__entry ol {
    font-size: 14px;
    line-height: 1.6;
}

.form--filter .form__controls.policy__topics {
    min-width: 230px;
}

.section__body .selectric-items ul {
    padding: 0;
    margin: 0;
}

.page-template-page-policy-updates-listing .section--letters .list-news-listing li~li {
    min-height: 0;
}

@media screen and (min-width:1024px) {
    .alert--in-notifications {
        margin: 0 17% 1em;
    }
    .form--container-shell {
        margin: 0 17%;
    }
}

.list-utilities .saved span.icon {
    background: rgb(255, 25, 64);
    color: #fff;
}

.list-utilities .saved span.icon i {
    color: #fff;
}

.form--notice {
    margin-top: 0;
    margin-bottom: 2em;
}

.section--info .section__body.section__body-noimage {
    padding-left: 0;
}

ol.list-cards-process .card .card__body a {
    color: #09c;
    text-decoration: underline;
}

ol.list-cards-process .card .card__expandable a {
    text-decoration: underline;
    color: #fff;
}

.event-register-on-demand .btn {
    display: block;
}


/* --------------------------------------------------- */


/* About Us */


/* Mission */

.mission {
    margin: 0 0 40px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .15);
}

.mission h3 {
    margin: 0 !important;
}

.mission h3 .label {
    font-weight: normal;
}

.mission h3:first-child {
    margin: 0 0 16px !important;
}


/* Idea Explanation */

.idea-explanation {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    padding-bottom: 10px;
    margin: 25px 0 15px;
}

.idea-explanation .idea {
    width: 150px;
}

.idea-explanation .idea h2 {
    font-size: 18px;
    color: #c8102e;
    font-weight: normal;
    letter-spacing: 2px;
}

.idea-explanation .idea h2::after {
    display: none;
}

.idea-explanation .explanation {
    width: calc(100% - 150px);
    padding-left: 20px;
}

.idea-explanation .explanation h3 {
    margin: 0 0 20px;
    color: #111;
    font-size: 24px;
}

.idea-explanation .explanation h3 .label {
    display: block;
    font-size: 20px;
    color: #496b80;
}

.idea-explanation .explanation ul.line-list {
    margin-bottom: 0 !important;
}

@media screen and (max-width:480px) {
    .idea-explanation {
        display: block;
    }
    .idea-explanation .idea {
        width: 100%;
    }
    .idea-explanation .idea h2 {
        margin-bottom: 8px;
        padding-bottom: 0;
    }
    .idea-explanation .explanation {
        width: 100%;
        padding-left: 0;
    }
}


/* Line List */

ul.line-list,
ol.line-list {
    margin: 0 0 20px !important;
    padding: 0 !important;
    list-style: none;
}

ul.line-list li,
ol.line-list li {
    margin: 0 !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #dce3e8;
    list-style: none;
}

ul.line-list li:first-child,
ol.line-list li:first-child {
    padding-top: 0 !important;
}

ul.line-list li:last-child,
ol.line-list li:last-child {
    border: 0;
}


/* Accomplishments Table */

.article--default .article__entry table.accomplishments {
    margin-left: 30px;
    width: calc(100% - 30px);
}

.article--default .article__entry table.accomplishments tr td {
    border-bottom: 1px solid #dce3e8;
    padding: 16px 0;
}

.article--default .article__entry table.accomplishments tr td img {
    max-width: 200px;
}

.article--default .article__entry table.accomplishments tr td h4 a {
    text-decoration: none;
}

.article--default .article__entry table.accomplishments tr td h4 a:hover {
    text-decoration: underline;
}

@media screen and (max-width:767px) {
    .article--default .article__entry table.accomplishments {
        margin-left: 0;
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .article--default .article__entry table.accomplishments tr td img {
        max-width: 150px !important;
    }
}

.card .card__delete {
    min-width: 70px;
}

.section__body .article__head p a {
    color: #fff;
}

.section__body p {
    word-wrap: break-word;
}


/* Handheld Only a11y #15 */

@media screen and (min-width:1024px) {
    .only-handheld {
        border: 0 !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        -webkit-clip-path: inset(50%) !important;
        clip-path: inset(50%) !important;
        height: 1px !important;
        margin: -1px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important;
        white-space: nowrap !important;
    }
}

.event-list__item.event-item-on-demand {
    padding-left: 1em;
}

.article--event-details .article__entry ol {
    list-style: decimal;
}

.article--event-details .article__entry ul {
    list-style: disc;
}

.article--event-details .article__entry ol li~li,
.article--event-details .article__entry ul li~li {
    margin-top: 0;
}

.article--event-details .article__entry ol li,
.article--event-details .article__entry ul li {
    padding-left: 0;
}

.article__entry a {
    word-break: break-word;
}

.cols.event-policies h6 {
    color: #c8102e;
    text-transform: uppercase;
    margin: 1em 0 14px;
}

.sfmc-form-wrapper {
    border: 1px solid #DCE3E8;
    background-color: #F2FAFF;
    max-width: 90%;
    margin: 30px 0 2em;
}

.sfmc-form-wrapper.sfmc-form-alignleft {
    float: left;
    max-width: 50%;
    margin: 1em 2em 2em 0;
}

.sfmc-form-wrapper.sfmc-form-alignright {
    float: right;
    max-width: 50%;
    margin: 1em 0 2em 2em;
}

.sfmc-form-wrapper>.bin {
    padding: 30px;
}

.sfmc-form-wrapper .sfmc-form-header {
    margin: -31px -31px 30px;
    color: #fff;
    padding: 20px 30px;
    background-color: #09C;
}

.sfmc-form-wrapper .sfmc-form-header h3 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 5px;
}

.sfmc-form-wrapper form {
    margin: 0 auto;
    display: block;
    width: auto;
    max-width: 100%;
}

.sfmc-form-wrapper p {
    max-width: 100% !important;
    line-height: 1.4 !important;
}

.sfmc-form-wrapper .sfmc-submit-row input[type="submit"] {
    font-size: 20px;
    padding: 0 40px;
    height: 45px;
    line-height: 45px;
}

.sfmc-form label {
    font-weight: bold;
}

.sfmc-form-dark {
    color: #fff;
    background: #4f758b;
    border: 0;
}

.sfmc-form-dark .sfmc-form-header {
    margin: -30px -30px 30px;
}

.sfmc-form-dark h3 {
    color: #fff;
}

.sfmc-form-dark input,
.sfmc-form-dark select,
.sfmc-form-dark textarea {
    border: 0;
}

@media screen and (max-width:767px) {
    .sfmc-form-wrapper.sfmc-form-alignleft {
        float: none;
        max-width: 100%;
        margin: 1em 0 2em;
    }
    .sfmc-form-wrapper.sfmc-form-alignright {
        float: none;
        max-width: 100%;
        margin: 1em 0 2em;
    }
}

.article__entry>.sfmc-form-wrapper {
    margin-top: 0;
}

.ncqa-blog-posts {
    margin: 1em 0;
}


/* .ncqa-blog-posts { overflow: scroll; width: 100%; margin: 1em 0; padding-bottom: 1em; } */

@media screen and (min-width:768px) {
    .section--data-tables .utilities {
        position: static;
        float: right;
        padding-bottom: 20px;
    }
    .section--data-tables .utilities ul {
        display: flex;
    }
    .section--data-tables .utilities ul li~li {
        margin-left: 15px;
        margin-top: 0;
    }
}

.section__body .ncqa-blog-posts ol.list-post-cards,
.section__body .ncqa-videos-list ol.list-post-cards {
    overflow-x: auto;
    padding-bottom: 10px !important;
}


/* Ninja Table Styles */

body .footable-sortable {
    cursor: pointer;
}

body .semantic_ui .ui.table {
    border: 0;
}

body th.footable-sortable {
    cursor: pointer !important;
}

body .foo-table.footable.table>thead>tr>th {
    padding: .8em;
}

body .semantic_ui .ui.table thead tr:first-child>th:first-child {
    border-radius: 0;
}

body .semantic_ui .ui.table thead tr:first-child>th:last-child {
    border-radius: 0;
}

body .semantic_ui .ui.table tbody tr:nth-child(odd) {
    background-color: #ebf4fa;
}

body .semantic_ui .ui.table:not(.inverted) thead th {
    background-color: #4F758B;
    color: #fff;
}

body .semantic_ui .ui.table thead th {
    font-weight: 600;
    font-size: 15px;
}

body td.footable-sortable>span.fooicon,
body th.footable-sortable>span.fooicon {
    right: 4px;
    opacity: 1;
}

body td.footable-sortable:hover>span.fooicon,
body th.footable-sortable:hover>span.fooicon {
    opacity: 0.5;
}

.table th {
    color: #4f758b;
}

.semantic_ui .ui.table tr th {
    border-top: 1px solid rgba(34, 36, 38, .1);
}

.semantic_ui .ui.table tr:first-child th {
    border-top: none;
}

body .semantic_ui .ui.table:not(.inverted) thead th {
    padding-right: 24px;
    line-height: 1.0;
}

body .footable-details.table-hover>tbody>tr:hover,
body .footable.table-hover>tbody>tr:hover,
body .semantic_ui .ui.selectable.table tbody tr:hover,
body .semantic_ui .ui.table tbody tr td.selectable:hover {
    background-color: #D9EDFA !important;
}

body .foo-table tbody tr td a,
body .foo-table tbody tr td h1,
body .foo-table tbody tr td h2,
.foo-table tbody tr td h3,
body .foo-table tbody tr td p {
    margin: 0 0 14px;
}

body a.nt_edit_link {
    text-decoration: underline;
    color: #0099cc;
}

@media screen and (max-width:767px) {
    body .footable-details.table-hover>tbody>tr:hover,
    body .footable.table-hover>tbody>tr:hover,
    body .semantic_ui .ui.selectable.table tbody tr:hover,
    body .semantic_ui .ui.table tbody tr td.selectable:hover {
        background-color: transparent !important;
    }
}


/* NCQA Alert */

.ncqa-alert {
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 3px;
    margin: 1em 0;
    position: relative;
}

.ncqa-alert p+p {
    margin-top: 16px;
}

.ncqa-alert p {
    margin-bottom: 0;
}

.ncqa-alert-trigger a {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 28px;
    line-height: 28px;
    padding: 10px;
    display: block;
    transition: opacity .2s;
}

.ncqa-alert-trigger a:hover {
    opacity: .6;
}

.ncqa-alert--green {
    border-color: #c3e6cb;
    background-color: #d4edda;
    color: #155724;
}

.ncqa-alert--red {
    border-color: #f5c6cb;
    background-color: #f8d7da;
    color: #721c24;
}

.ncqa-alert--blue {
    border-color: #b8daff;
    background-color: #cce5ff;
    color: #004085;
}

.ncqa-alert--yellow {
    border-color: #ffeeba;
    background-color: #fff3cd;
    color: #856404;
}


/* QIS */

.copyrights {
    opacity: .5;
    font-size: 14px;
    color: #fff;
}

@media screen and (min-width:769px) {
    .copyrights-prepend {
        margin-top: -2.5em;
    }
}

.copyrights a {
    color: inherit;
}

.copyrights p {
    margin-bottom: .5em;
}

.copyrights p {
    margin-bottom: .5em;
}


/* ECDS Promo Callout */

.callout-download-promo {
    position: relative;
    max-width: 680px;
    margin-top: 30px;
}

.callout-download-promo::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 1;
    background-color: #f1f1f1;
}

.callout-download-promo .inner {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.callout-download-promo .inner h3 {
    font-size: 40px;
    letter-spacing: -1px;
    margin: 0 0 6px;
    padding: 0;
}

.callout-download-promo .inner p {
    color: #6C6C6C;
}

.callout-download-promo .inner .download-icon {
    float: right;
    margin: -60px -20px 10px 10px;
}

.callout-download-promo .inner .btn {
    display: inline-block;
    width: 230px;
    max-width: 100%;
    height: 70px;
    line-height: 1.0;
    font-size: 20px;
    margin: 0 10px 10px 0;
}

.callout-download-promo .inner .btn span {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width:600px) {
    .callout-download-promo .inner {
        padding: 26px;
    }
    .callout-download-promo .inner h3 {
        font-size: 36px;
    }
    .callout-download-promo .inner .download-icon {
        width: 80px;
        height: auto;
    }
    .callout-download-promo .inner .btn {
        width: 100%;
        height: 64px;
        margin-right: 0;
    }
    .callout-download-promo::after {
        height: calc(100% - 68px);
    }
}


/* Social Share Links */

li.js-social-share {
    position: relative;
}

li.js-social-share>a {
    cursor: default;
}

li.js-social-share .tooltip {
    padding: 10px;
    margin-right: 5px;
}

li.js-social-share ul.js-social-share-items {
    text-align: left;
    width: 100%;
    display: block;
}

li.js-social-share ul.js-social-share-items li {
    display: block;
}

li.js-social-share ul.js-social-share-items li~li {
    margin: 0;
}

li.js-social-share ul.js-social-share-items li a {
    display: block;
    border: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: left;
    font-size: 14px;
    padding: 0 20px;
    margin: 0;
}

li.js-social-share ul.js-social-share-items li a i {
    margin-right: 10px;
    width: 20px;
}

@media screen and (max-width:768px) {
    body .tooltip--left {
        top: 58px;
        left: -80px;
    }
    body .tooltip--left:after,
    .tooltip--left:before {
        display: none;
    }
}

.dmc-gated-content-wrapper img { filter: blur( .25em ); }
.dmc-login-cta { text-align: center; padding: 0; color: #000; min-height: 600px; }
.dmc-login-cta .bin { padding: 25% 10%; }
.dmc-login-cta.dmc-login-resource-blog { background: url('images/dmc/blurred-content-blogs.png') top center no-repeat; background-size: cover; }
.dmc-login-cta.dmc-login-resource-video { color:#fff; background: url('images/dmc/blurred-content-videos.png') top center no-repeat; background-size: contain; min-height: 600px; }
.dmc-login-cta.dmc-login-resource-podcast { background: url('images/dmc/blurred-content-podcasts.png') top center no-repeat; background-size: contain; min-height: 300px; }
.dmc-login-cta.dmc-login-resource-podcast .bin { padding: 100px 10%; }

.dmc-login-cta .dmc-gated-notice { padding: 40px 30px; background-color: #fff; color: #262626; box-shadow: 0 0 20px rgba(0,0,0,.2); }

@media screen and (max-width:600px) {
    .dmc-login-cta .dmc-gated-notice { padding: 30px 20px; }
}

#ncqa-footer-notice { position: fixed; z-index: 9999; bottom: 0; left: 0; width: 100%; background: #545454; color: #fff; }
#ncqa-footer-notice .notice__inner { position: relative; }
#ncqa-footer-notice .notice__content { padding: 1em 2em; text-align: center; }
#ncqa-footer-notice .notice__content a { color: #fff; text-decoration: underline; }
#ncqa-footer-notice .notice__content p { margin: 0 0 1em; }
#ncqa-footer-notice .notice__content p:last-child { margin: 0; }
#ncqa-footer-notice .notice__dismiss { position: absolute; right: 0; top: 0; display: block; padding: 14px 24px 10px 10px; cursor: pointer; font-size: 18px; font-weight: normal; color: #aaa; }
#ncqa-footer-notice .notice__dismiss:hover { color: #fff; }

.news-tag-label { display: inline-block; font-weight: bold; color: #fff; background: #c8102e; font-size: 10px; padding: 3px 9px; border-radius: 12px; margin-left: .5em; }
.news-tag-label--red { background: #c8102e; }
.news-tag-label--blue { background: #076A8C; }

.hide--on-login { display: none; }

.section--marketing-landing .section__body a { color: #09c; text-decoration: underline; }
.section--marketing-landing .section__body a:hover { text-decoration: none; }

.zmdi-collection-blog:before { content: '\f263'; }

.page--is-blog .subscribe .subscribe__field { color: #000; }
.page--is-blog .section-blocks .section__form h3 { font-family: futura-pt, sans-serif; font-weight: 500 !important; color: #4F758B; line-height: 1.28; font-weight: normal; }
.page--is-blog .section-blocks .section__form .validation_error { background: #fff; margin: 1em 1em 0; width: auto; }
.page--is-blog .section-blocks .section__form .validation_error h2 { font-size: 16px; color: #790000; }

td.form-cell { padding: 0; margin: 0; }
td.form-cell input { padding: 15px 12px !important; }

/* a11y Accessible Floating Form Label */
.floating-label { position: relative; }  
.floating-label label { position: absolute; left: 12px; top: 14px; font-size: 16px; opacity: .75; pointer-events: none; transition: all .2s ease-in-out; }
.floating-label.is-floating label { top: 1px; font-size: 12px; font-weight: bold; opacity: 1; }  
.floating-label.has-focus label { color: #09c; opacity: 1 !important; }

/* a11y Skip Link */
.skip-link { z-index: 9999; position: fixed; top: 2rem; left: 50%; transform: translate(-50%,-200%); text-transform: uppercase; font: bold 1.2rem 'futura-pt', sans-serif; text-decoration: none; color: #111; background-color: #fff; border-radius: 1rem; padding: 1rem 2.5rem; -webkit-transition: -webkit-transform .3s; transition: -webkit-transform .3s; -o-transition: transform .3s; transition: transform .3s; transition: transform .3s,-webkit-transform .3s; border: 2px solid #09c; outline-offset: .4rem; cursor: pointer; }
.skip-link:focus { -webkit-transform: translate(-50%,0); -ms-transform: translate(-50%,0); transform: translate(-50%,0); border-color: #000; }
