
.modal-open {
    overflow: hidden
}

    .modal-open .modal {
        overflow-x: hidden;
        overflow-y: auto
    }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translateY(-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: flex;
    max-height: calc(100% - 1rem)
}

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 1rem);
        overflow: hidden
    }

    .modal-dialog-scrollable .modal-footer,
    .modal-dialog-scrollable .modal-header {
        flex-shrink: 0
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto
    }

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

    .modal-dialog-centered:before {
        display: block;
        height: calc(100vh - 1rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        content: ""
    }

    .modal-dialog-centered.modal-dialog-scrollable {
        flex-direction: column;
        justify-content: center;
        height: 100%
    }

        .modal-dialog-centered.modal-dialog-scrollable .modal-content {
            max-height: none
        }

        .modal-dialog-centered.modal-dialog-scrollable:before {
            content: none
        }

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(20, 20, 31, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #14141f
}

    .modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: .6
    }

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 0 solid rgba(34, 34, 48, .1);
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

    .modal-header .close {
        padding: 1rem;
        margin: -1rem -1rem -1rem auto
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 0 solid rgba(34, 34, 48, .1);
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

    .modal-footer > * {
        margin: .25rem
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

        .modal-dialog-scrollable .modal-content {
            max-height: calc(100vh - 3.5rem)
        }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

        .modal-dialog-centered:before {
            height: calc(100vh - 3.5rem);
            height: -webkit-min-content;
            height: -moz-min-content;
            height: min-content
        }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}



.modal.modal-alert .modal-dialog {
    opacity: 0;
    transform: scale(1.2);
    transition: transform .15s ease-in-out, opacity .15s ease-in-out
}

.modal.modal-alert.show .modal-dialog {
    transform: scale(1);
    opacity: 1
}

.modal-dialog-centered {
    margin: 0 auto
}

.modal-footer,
.modal-header {
    flex: 0 0 auto
}

.modal-body {
    padding-top: 2px;
    padding-bottom: 2px
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    z-index: 2
}

.modal-drawer .modal-dialog {
    margin-top: 0;
    margin-bottom: 0;
    position: fixed;
    top: 0;
    bottom: 0
}

@media (max-width:575.98px) {
    .modal-drawer .modal-dialog {
        margin: 0;
        max-width: 100%
    }
}

.modal-drawer .modal-content,
.modal-drawer .modal-footer,
.modal-drawer .modal-header {
    border-radius: 0
}

.modal-drawer .modal-content {
    height: 100%
}

.modal-drawer .modal-body {
    overflow: auto
}

.modal-drawer-right {
    right: 0;
    box-shadow: -1px 0 3px 0 rgba(20, 20, 31, .15)
}

.modal.fade .modal-drawer-right {
    transform: translate3d(100%, 0, 0)
}

.modal-drawer-right .modal-content {
    border-width: 0 0 0 1px
}

.modal-drawer-left {
    left: 0;
    box-shadow: 1px 0 3px 0 rgba(20, 20, 31, .15)
}

.modal.fade .modal-drawer-left {
    transform: translate3d(-100%, 0, 0)
}

.modal-drawer-left .modal-content {
    border-width: 0 1px 0 0
}

.modal.show .modal-drawer-left,
.modal.show .modal-drawer-right {
    transform: translate(0)
}

.modal-docked .modal-dialog {
    margin: 0;
    position: fixed;
    bottom: 6.125rem;
    right: 1.25rem;
    width: 100%;
    height: calc(100vh - 7.125rem)
}

.modal-docked.fade .modal-dialog {
    transform: translateY(1.25rem)
}

.modal-docked.show .modal-dialog {
    transform: translateY(0)
}

.modal-docked .modal-content {
    position: absolute;
    bottom: 0;
    max-height: 100%;
    border: 0;
    box-shadow: 0 5px 40px rgba(20, 20, 31, .15)
}

.modal-docked .modal-body {
    overflow-y: auto
}

.modal-docked .close {
    margin: 0;
    padding: 0;
    position: absolute;
    right: .125rem;
    bottom: -4.6125rem;
    width: 4rem;
    height: 4rem;
    border-radius: 2rem;
    opacity: 1
}

    .modal-docked .close:focus:not(.disabled),
    .modal-docked .close:hover:not(.disabled) {
        opacity: 1
    }

.modal-dialog-scrollable .modal-header,
.modal-drawer .modal-header {
    box-shadow: 0 2px 0 0 rgba(20, 20, 31, .125)
}

.modal-dialog-scrollable .modal-footer,
.modal-drawer .modal-footer {
    box-shadow: 0 -2px 0 0 rgba(20, 20, 31, .125)
}

.modal-dialog-scrollable .modal-body-scrolled,
.modal-drawer .modal-body-scrolled {
    box-shadow: none
}

.hide {
    display:none;
}
.btn-primary {
    color: #fff;
    background-color: #346cb0;
    border-color: #346cb0
}

    .btn-primary.focus,
    .btn-primary:focus,
    .btn-primary:hover {
        color: #fff;
        background-color: #2b5a92;
        border-color: #285489
    }

    .btn-primary.focus,
    .btn-primary:focus {
        box-shadow: 0 0 0 1px rgba(82, 130, 188, .5)
    }

    .btn-primary.disabled,
    .btn-primary:disabled {
        color: #fff;
        background-color: #346cb0;
        border-color: #346cb0
    }

    .btn-primary:not(:disabled):not(.disabled).active,
    .btn-primary:not(:disabled):not(.disabled):active,
    .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #285489;
        border-color: #254e7f
    }

        .btn-primary:not(:disabled):not(.disabled).active:focus,
        .btn-primary:not(:disabled):not(.disabled):active:focus,
        .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 1px rgba(82, 130, 188, .5)
        }

.btn-secondary {
    background-color: #f6f7f9;
    border-color: #f6f7f9
}

    .btn-secondary:hover {
        color: #363642;
        background-color: #dfe3ea
    }

    .btn-secondary.focus,
    .btn-secondary:focus {
        color: #363642;
        background-color: #dfe3ea;
        border-color: #d7dce5;
        box-shadow: 0 0 0 1px rgba(217, 218, 222, .5)
    }

    .btn-secondary.disabled,
    .btn-secondary:disabled {
        color: #363642;
        background-color: #f6f7f9;
        border-color: #f6f7f9
    }

    .btn-secondary:not(:disabled):not(.disabled).active,
    .btn-secondary:not(:disabled):not(.disabled):active,
    .show > .btn-secondary.dropdown-toggle {
        color: #363642;
        background-color: #d7dce5;
        border-color: #d0d5e0
    }

        .btn-secondary:not(:disabled):not(.disabled).active:focus,
        .btn-secondary:not(:disabled):not(.disabled):active:focus,
        .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 1px rgba(217, 218, 222, .5)
        }

.btn-success {
    color: #fff;
    background-color: #00a28a;
    border-color: #00a28a
}

    .btn-success.focus,
    .btn-success:focus,
    .btn-success:hover {
        color: #fff;
        background-color: #007c69;
        border-color: #006f5f
    }

    .btn-success.focus,
    .btn-success:focus {
        box-shadow: 0 0 0 1px rgba(38, 176, 156, .5)
    }

    .btn-success.disabled,
    .btn-success:disabled {
        color: #fff;
        background-color: #00a28a;
        border-color: #00a28a
    }

    .btn-success:not(:disabled):not(.disabled).active,
    .btn-success:not(:disabled):not(.disabled):active,
    .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #006f5f;
        border-color: #006254
    }

        .btn-success:not(:disabled):not(.disabled).active:focus,
        .btn-success:not(:disabled):not(.disabled):active:focus,
        .show > .btn-success.dropdown-toggle:focus {
            box-shadow: 0 0 0 1px rgba(38, 176, 156, .5)
        }
.modal-body h4 {
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
    font-size: 1.5rem;
    color: #363642;
}
.modal-body p {
    font-size: 14px;
    color: #363642 !important;
    margin-top: 0px;
    margin-bottom: 0px;
}
.modal-body {
    padding-top: 16px;
    padding-bottom: 2px;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.section_1_color {
    background-color: #489440;
    color: #489440;
    border: 4px solid #489440;
}

a.section_1_color:hover {
    background-color: #489440;
    color: #ffffff;
}

.section_1_color a {
    color: #489440;
}

.section_2_color {
    background-color: #1e426c;
    color: #1e426c;
    border: 4px solid #1e426c;
}

a.section_2_color:hover {
    background-color: #1e426c;
    color: #ffffff;
}

.section_2_color a {
    color: #1e426c;
}

.section_3_color {
    background-color: #2eb2c1;
    color: #2eb2c1;
    border: 4px solid #2eb2c1;
}

a.section_3_color:hover {
    background-color: #2eb2c1;
    color: #ffffff;
}

.section_3_color a {
    color: #2eb2c1;
}

.section_4_color {
    background-color: #8a262d;
    color: #8a262d;
    border: 4px solid #8a262d;
}

a.section_4_color:hover {
    background-color: #8a262d;
    color: #ffffff;
}

.section_4_color a {
    color: #8a262d;
}

.section_20_color {
    background-color: #86c640;
    color: #86c640;
    border: 4px solid #86c640;
}

a.section_20_color:hover {
    background-color: #86c640;
    color: #ffffff;
}

.section_20_color a {
    color: #86c640;
}

.section_21_color {
    background-color: #1b75bc;
    color: #1b75bc;
    border: 4px solid #1b75bc;
}

a.section_21_color:hover {
    background-color: #1b75bc;
    color: #ffffff;
}

.section_21_color a {
    color: #1b75bc;
}
.fancybox-margin {
    margin-right: 17px;

}
.text-message-back {
    text-decoration: underline;
    cursor: pointer;
}
.grid_tiles {
    overflow: hidden;
    clear: both;
    margin-bottom: 20px;
}

.grid_tile {
    position: relative;
    float: left;
    width: 26%;
}

    .grid_tile:first-child {
        width: 48%;
    }

        .grid_tile:first-child:last-child {
            width: 100%;
        }

            .grid_tile:first-child:last-child:after {
                padding-top: 50%;
            }

    .grid_tile:not(:first-child),
    .grid_tile:not(:first-child) .grid_tile_content {
        max-height: 288px;
    }

    .grid_tile:nth-child(2) .grid_tile_content,
    .grid_tile:nth-child(3) .grid_tile_content {
        border-bottom: solid 10px #ffffff;
        border-left: solid 20px #ffffff;
    }

    .grid_tile:nth-child(4) .grid_tile_content,
    .grid_tile:nth-child(5) .grid_tile_content {
        border-top: solid 10px #ffffff;
        border-left: solid 20px #ffffff;
    }

    .grid_tile:after {
        content: "";
        display: block;
        padding-top: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .grid_tile:not(:first-child):after {
        padding-top: 92.5%;
    }

.grid_tile_content {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .grid_tile_content > * {
        color: #ffffff;
        text-decoration: none;
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

.grid_tile_table {
    border-collapse: collapse;
    border-padding: 0;
    border-spacing: 0;
    height: 100%;
    width: 100%;
}

.grid_tile_image {
    background-color: #F4F4F4;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.grid_tile_text {
    background-color: #CCCCCC;
    display: none;
    height: 1px;
    font-size: 100%;
    padding: 12px 15px;
    vertical-align: top;
}

    .grid_tile_text > * {
        margin: 0;
    }

    .grid_tile_text > div.grid_tile_textWrapper {
        padding: 0;
        margin: 0;
    }

.grid_tile:first-child .grid_tile_text > div.grid_tile_textWrapper {
    min-height: 160px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.grid_tile_text > div.grid_tile_textWrapper > h2 {
    font-size: 125%;
    line-height: 1.25rem;
    margin: 0;
    padding: 0;
    margin-bottom: 0.3rem;
}

    .grid_tile_text > div.grid_tile_textWrapper > h2 + p {
        margin: 0;
        padding: 0;
        line-height: normal;
    }

.grid_tile:not(:first-child) .grid_tile_text {
    font-size: 90%;
}



@media (max-width : 1140px) {

    .grid_tile:not(:first-child) .grid_tile_text {
        font-size: 85%;
    }
}


@media (max-width : 1000px) {

    .grid_tile:not(:first-child) .grid_tile_text {
        font-size: 75%;
    }
}



@media (max-width : 783px) {

    .grid_tile:first-child {
        float: none;
        width: 100%;
        border-bottom: solid 20px #ffffff;
        max-height: 300px;
    }

        .grid_tile:first-child tr:nth-of-type(1) td {
            height: 50%;
        }

        .grid_tile:first-child tr:nth-of-type(1) .grid_tile_image {
            background-repeat: no-repeat;
            background-position: top center;
        }

        .grid_tile:first-child .grid_tile_text > div.grid_tile_textWrapper {
            min-height: initial;
        }

    .grid_tile:not(:first-child) {
        width: 50%;
    }

    .grid_tile:nth-child(2) .grid_tile_content,
    .grid_tile:nth-child(3) .grid_tile_content {
        border-bottom: solid 10px #ffffff;
        border-left: 0;
    }

    .grid_tile:nth-child(2) .grid_tile_content,
    .grid_tile:nth-child(4) .grid_tile_content {
        border-right: solid 10px #ffffff;
    }

    .grid_tile:nth-child(4) .grid_tile_content,
    .grid_tile:nth-child(5) .grid_tile_content {
        border-top: solid 10px #ffffff;
        border-left: 0;
    }

    .grid_tile:nth-child(3) .grid_tile_content,
    .grid_tile:nth-child(5) .grid_tile_content {
        border-left: solid 10px #ffffff;
    }


    .grid_tile .grid_tile_text {
        font-size: 90%;
    }
}

@media (max-width:670px) {

    .grid_tile:not(:first-child) .grid_tile_text {
        font-size: 80%;
    }
}

@media (max-width:450px) {

    .grid_tile .grid_tile_text {
        font-size: 85%;
    }

    .grid_tile:not(:first-child) .grid_tile_text {
        font-size: 70%;
        padding: 6px 8px;
    }
}

@media (max-width:350px) {

    .grid_tile .grid_tile_text {
        font-size: 80%;
        padding: 7px 9px;
    }

    .grid_tile:not(:first-child) .grid_tile_text {
        font-size: 65%;
    }
}

/*.grid_tile[data-grid-tile-id="38"] .grid_tile_image {
    background-image: url("https://www.altriatotalrewards.com/images/content/layout/Altria_Photo2-9-1.png");
}*/

.grid_tile[data-grid-tile-id="38"] .grid_tile_image {
    background-size: cover;
}

.grid_tile[data-grid-tile-id="38"] .grid_tile_text {
    background-color: #8a8b8a;
}

.grid_tile[data-grid-tile-id="68"] .grid_tile_image {
    background-image: url("https://www.altriatotalrewards.com/images/content/layout/on-insiders-1.png");
}

.grid_tile[data-grid-tile-id="68"] .grid_tile_image {
    background-size: contain;
}

.grid_tile[data-grid-tile-id="68"] .grid_tile_text {
    background-color: #86c640;
}

.grid_tile[data-grid-tile-id="66"] .grid_tile_image {
    background-image: url("https://www.altriatotalrewards.com/images/content/layout/stop-the-stigma.png");
}

.grid_tile[data-grid-tile-id="66"] .grid_tile_image {
    background-size: cover;
}

.grid_tile[data-grid-tile-id="66"] .grid_tile_text {
    background-color: #8a262d;
}

.grid_tile[data-grid-tile-id="69"] .grid_tile_image {
    background-image: url("https://www.altriatotalrewards.com/images/content/layout/AltriaPhotoAllied.png");
}

.grid_tile[data-grid-tile-id="69"] .grid_tile_image {
    background-size: contain;
}

.grid_tile[data-grid-tile-id="69"] .grid_tile_text {
    background-color: #8a262d;
}

.grid_tile[data-grid-tile-id="60"] .grid_tile_image {
    background-image: url("https://www.altriatotalrewards.com/images/content/layout/shutterstock_1914030103-3.jpg");
}

.grid_tile[data-grid-tile-id="60"] .grid_tile_image {
    background-size: cover;
}

.grid_tile[data-grid-tile-id="60"] .grid_tile_text {
    background-color: #489440;
}

.number_of_cols_1 {
    height: 160px;
    width: 95%;
}

    .number_of_cols_1 .contribution {
        left: 2.5%;
    }

.number_of_cols_2 {
    width: 44%;
}

    .number_of_cols_2 .contribution {
        left: 5%;
    }

.no_tile_value.number_of_cols_1 {
    height: auto;
    min-height: 97px;
}



@media (max-width: 860px) and (min-width: 783px) {

    .number_of_cols_1 {
        height: 140px;
    }

    .block b {
        font-size: 20px;
    }

    .block p {
        font-size: 16px;
    }

    .number_of_cols_2 {
        width: 44.75%;
    }

        .contribution,
        .number_of_cols_1 .contribution,
        .number_of_cols_2 .contribution,
        .number_of_cols_3 .contribution {
            text-align: left;
            height: initial;
            bottom: 10px;
            left: 10px;
        }

    .block_amount {
        margin-top: 0px;
    }
}
.SearchBanner {
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('../Images/Search-Banner.png');
    background-size: cover;
    opacity: 0.6;
    background-position: center center;
}
#feedback_popup {
    top: 10%;
}
.contribution_section .section_top {
    background-color: rgba(72,148,64, 0.75);
}
.contribution_section .section_bottom {
    background-color: #489440;
    border: 4px solid #489440;
}
.footnotes {
    color: #489440;
}


div.intro div.enrollment h3 {
    color: #489440;
}

div.intro ul.checklist li:nth-of-type(2n+1) {
    background-color: #489440;
}

div.intro ul.checklist li:nth-of-type(2n+0) {
    background-color: rgba(72,148,64,0.75);
}

.contribution_section .section_top {
    background-color: rgba(72,148,64, 0.75);
}

.contribution_section .section_bottom {
    background-color: #489440;
    border: 4px solid #489440;
}