﻿/* variables */
:root {
    --blue: #0071CF;
    --light-blue: #E5F1F9;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --white: #fff;
    --gray: #EBEBEC;
    --gray-dark: #343a40;
    --primary: #0071CF;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

/* Container  Overrides*/
.container, .container-fluid {
    max-width: var(--breakpoint-xl);
}

.container {
    padding-right: 0px;
    padding-left: 0px;
}

    .container .row {
        margin-left: 0;
        margin-right: 0;
    }

@media screen and (min-width: 768px) {
    .container {
        padding-right: 36px;
        padding-left: 36px;
    }
}
/* Body and text styles */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.125em;
}

b, strong {
    font-weight: 500;
}

.tfn {
    font-weight: 600;
    text-decoration: none;
}

h1 {
    font-weight: 500;
    font-size: 2.25em;
}

h2 {
    font-weight: 500;
    font-size: 1.75em;
}

h3, h4 {
    font-weight: 400;
    font-size: 1.375em;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 2.625em;
    }

    h2 {
        font-size: 2.25em;
    }

    h3 {
        font-size: 1.875em;
    }
}

.uppercase {
    text-transform: uppercase;
}

a {
    color: var(--primary);
    text-decoration:underline;
}

.block-title {
    font-weight: 400;
    font-size: 1.25em;
}



/* Top header and nav */
.logo {
    width: 240px;
    margin-left: 20px;
}

@media (min-width: 575px) and (max-width: 991px) {
    .logo {
        width: 310px;
        margin-left: 36px;
    }
}

@media screen and (min-width: 992px) {
    .logo {
        width: 310px;
        margin-left: 0px;
    }
}

.navbar {
    margin: 0;
    padding: .25em 1rem;
}

@media screen and (min-width: 992px) {
    .navbar .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}



.navbar-toggler {
    padding: 0;
}

.navbar-toggler-icon {
    width: 46px;
    height: 21px;
    background: inherit;
    background-size: contain;
    background-image: url(/assets/images/ham.svg)
}

.nav-link {
    padding-right: 1em !important;
    padding-left: 1em !important;
    color: black;
    font-size: 1em;
    font-weight: 600;
    text-decoration:none;
}

.active a{
    color: var(--primary);
}

@media (min-width: 575px) and (max-width: 991px) {
    .nav-link {
        padding-right: 2em !important;
        padding-left: 2em !important;
    }
}

@media screen and (min-width: 992px) {
    .nav-link {
        padding-right: 1em !important;
        padding-left: 1em !important;
    }
}

/* Hero */
.hero-picture {
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
}

.hero-picture-image {
    width: 100%;
}

.hero-content {
    position: relative;
    padding-right: 36px;
    padding-left: 36px;
    padding-top: 36px;
}

@media screen and (min-width: 768px) {
    .hero-content {
        position: absolute;
        top: 30%;
        transform: translateY(-40%);
        padding-left: 50px;
    }
}

.hero-content-text {
    font-size: 1.325em;
    font-weight: 400;
    margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
    .hero-content-text {
        font-size: 1.675em;
    }

    .hero-content-title{
        letter-spacing: -1px;
    }
}

.sub-hero {
    font-size: 1em;
    padding-top: 0px;
}

@media screen and (min-width: 768px) {
    .sub-hero {
        font-size: 1.25em;
        padding-top: 80px;
        padding-bottom: 30px;
    }
}


/* Secondary Hero */

.hero-secondary {
    padding: 0;
}

.hero-secondary-row {
    margin: 0;
}

.hero-secondary-image {
    padding: 0;
}

.hero-secondary-content {
    padding: 36px 20px 20px 20px;
}

.hero-secondary-title {
    font-size: 2.25em;
}

@media (min-width: 575px) and (max-width: 991px) {
    .hero-secondary-content {
        padding: 36px 30px;
    }
}


@media screen and (min-width: 991px) {
    .hero-secondary {
        background-color: var(--light-blue);
    }

    .hero-secondary-content {
        padding: 36px;
    }
}


/* Color and content styles */
.blue-text {
    color: var(--primary);
}

.gray-bg {
    background-color: var(--gray);
}

.blue-bg {
    background-color: var(--blue);
    color: white;
}

.light-blue-bg {
    background-color: var(--light-blue);
}

.white-bg {
    background-color: #fff !important;
}

.text-with-image {
    margin-left: -36px;
    margin-right: -36px;
}

.border-5 {
    border: 5px solid var(--gray);
}

.addline {
    text-decoration: underline;
}

.btn {
    border-radius: 30px;
    padding: .5em 1.5em;
    font-size: .875em;
    text-decoration:none;
}
@media screen and (min-width: 991px) {
    .btn {
        font-size: 1em;
    }
}

@media screen and (min-width: 768px) {
    .text-with-image {
        margin-left: -15px;
        margin-right: -15px;
    }
}
/* padding of text in mobile*/

.text-container {
    margin-top: 1em;
    margin-left: 20px;
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .text-container {
        margin-top: 0;
        margin-left: 0px;
        margin-right: 0px;
    }
}

/* extend images to edge*/

.col-img {
    padding: 0;
    margin: 1em auto;
}

    .col-img img {
        width: 100%;
    }

.img-container {
    margin-left: -15px;
    margin-right: -15px;
}

    .img-container img {
        width: 100%;
    }

.icon-container {
    margin: auto;
    text-align: center;
    min-height: 220px;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}

    .icon-container img {
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

@media screen and (min-width: 768px) {
    .col-img {
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .img-container, .icon-container {
        margin-left: 0px;
        margin-right: 0px;
    }
}

/* 3 image row */



.col-3-image {
    padding-right: 0px;
    padding-left: 0px;
}

.container-3-images img {
    margin-bottom: 30px;
    width: 100%;
}

@media screen and (min-width: 768px) {


    .col-3-image {
        padding-right: 15px;
        padding-left: 15px;
    }

    .container-3-images img {
        margin-bottom: 0px;
    }
}



/* Enroll */

@media screen and (min-width: 768px) {
    .container-enroll {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.enroll-text {
    font-size: 1.5em;
}


/* Info */

@media screen and (min-width: 768px) {
    .info-content {
        min-height: 150px;
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .info-content {
        min-height: 200px;
    }
}


/* Landing page */

.landing-page-content {
    margin-top: 40px;
}

.landing-page-title {
    color: var(--blue);
    font-size: 1.75em;
}

.wellspan-landing-page-title {
    color: var(--blue);
    font-size: 1.6666666666666667em;
}

.landing-page-sub-title {
    font-size: 1.5em;
    font-weight: 400;
}

.wellspan-sub-header {
    font-size: 1.4444444444444444em;
    font-weight: 500;
}

.info-title {
    font-size: 1.25em;
    font-weight: 500;
}

.no-bold {
    font-weight: 400;
}

.option-section {
    margin-bottom: 80px;
}

.ad-your-health {
    margin: 0 -36px;
}


.option-title {
    font-size: 1.75em;
}

.landing-page-list {
    padding-left: 1em;
}

.landing-page-content img {
    max-height: 360px;
    margin: auto;
    width: auto;
}

.landing-page-content .aep-image {
    width: 100%;
    border: 1px solid;
    max-width: 200px;
    -webkit-box-shadow: 20px 10px 20px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 20px 10px 20px 0px rgba(0,0,0,0.4);
    box-shadow: 20px 10px 20px 0px rgba(0,0,0,0.4);
}

.book-title {
    font-weight: 400;
}

.container.landing-page-content {
    padding-right: 36px;
    padding-left: 36px;
}

.container.landing-page-content .row {
    margin-left: -15px;
    margin-right: -15px;
}

.max-600 {
    max-width: 600px;
}

@media screen and (min-width: 768px) {
    .landing-page-content {
        margin-top: 60px;
    }

    .landing-page-title {
        font-size: 2.125em;
    }

    .wellspan-landing-page-title {
        font-size: 2em;
    }

    .option-section {
        padding: 0 21px;
        margin-bottom: 80px;
    }

    .option-title {
        font-size: 1.75em;
    }

    .info-title {
        font-size: 1.425em;
    }


    .ad-your-health {
        margin: 0 auto;
    }

    .container.landing-page-content {
        padding-right: 50px;
        padding-left: 50px;
    }

    .landing-page-content img {
        width: auto;
    }
}

/* Map component */
.map {
    padding: 0;
}

.map-row {
    margin: 0;
}

.map-image {
    width: 100%;
}

.map-content {
    padding-left: 36px;
    padding-right: 36px;
}

.map-container {
    padding: 0;
}

@media screen and (min-width: 768px) {
    .map {
        padding-left: 36px;
        padding-right: 36px;
    }

    .map-content {
        padding-left: 0px;
        padding-right: 0px;
    }

    .map-container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* Learn*/

.learn-image {
    max-height: 240px;
    -webkit-box-shadow: 20px 10px 20px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 20px 10px 20px 0px rgba(0,0,0,0.4);
    box-shadow: 20px 10px 20px 0px rgba(0,0,0,0.4);
    position: relative;
    border: 1px solid;
}

.learn-content {
    text-align: center;
    padding-bottom: 1em;
}

@media screen and (min-width: 991px) {

    .learn-content {
        text-align: right;
        padding-right: 3em;
        padding-bottom: 0;
    }

    .learn-image {
        top: 20px;
    }
}

/* Table */
.table-container {
    overflow-x: scroll;
    margin: 1em;
}


.table caption {
    caption-side: top;
    font-size: 1.5em;
    padding-bottom: 2em;
    text-align: center;
}




.table caption {
    caption-side: top;
    padding-bottom: 1em;
    font-size: 1.675em;
    font-weight: 500;
    text-align:left;
    color: var(--dark);
}

@media screen and (min-width: 991px) {
    .table-container {
        overflow-x: hidden;
        margin: 0;
    }

    .table caption {
        text-align: center;
        padding-left: 25%;
        padding-bottom: 2em;
    }
}

.scroll-text {
    font-size: 14px;
    font-weight: 400;
}

td:nth-child(2) {
    background-color: #f1f2f2
}

td:nth-child(3) {
    background-color: #ececed
}

td:nth-child(4) {
    background-color: #e5e5e6
}

td:nth-child(5) {
    background-color: #dedede
}

td:nth-child(6) {
    background-color: #d9d6d6
}

.td-color-1 {
    background-color: #d9d6d6 !important
}

.td-color-2 {
    background-color: #ececed !important
}

.td-color-3 {
    background-color: #e5e5e6 !important
}

.td-color-4 {
    background-color: #dedede !important
}

.td-color-5 {
    background-color: #dedede !important
}


.table td {
    min-width: 175px;
    text-align: center;
    font-size: .675em;
    font-weight: 400;
    line-height: 1.25;
    vertical-align: middle;
    border-left: 1px solid white;
    border-top: 1px solid white;
}

    .table td.light-blue-bg {
        background-color: var(--light-blue);
        padding: 1.5em .7em;
    }

.table thead th {
    vertical-align: middle;
    padding: .5em;
}

.table th {
    min-width: 175px;
    padding: 1em .7em;
    font-weight: 400;
    font-size: .875em;
    vertical-align: middle;
}

.table-purple-bg {
    background-color: #003399;
    color: white;
    font-weight: 400;
}

.table-green-bg {
    background-color: #2E9A91;
    color: white;
    font-weight: 400;
}

.table-yellow-bg {
    background-color: #dfda00;
    font-weight: 400;
}

.table-orange-bg {
    background-color: #ffc000;
    font-weight: 400;
}

.table-orange-bg-2 {
    background-color: #c65911;
    color:white;
    font-weight: 400;
}

.table-section {
    color: rgb(255,255,255);
    text-align: left !important;
    background-color: rgb(0,112,192);
    font-weight: 500 !important;
}

.cell-50 {
    width: 49%;
    display: inline-block;
    vertical-align: middle;
}

    .cell-50:first-child {
        border-right: 1px solid var(--gray-dark);
    }


.inner-table {
    margin: 1em auto;
    background-color: transparent !important;
}

    .inner-table td {
        min-width: auto;
        border-left: none;
        border-top: none;
        border-bottom: 1px solid var(--gray-dark);
        text-align: left;
    }

        .inner-table td:nth-child(2) {
            background-color: transparent !important;
        }



.inner-table-centered {
    margin: .5 auto;
    background-color: transparent !important;
}

    .inner-table-centered td {
        min-width: auto;
        border-left: none;
        border-top: none;
        border-bottom: 1px solid var(--gray-dark);
        text-align: center;
    }

    .inner-table tr:last-child td, .inner-table-centered tr:last-child td {
        border-bottom: none;
    }

.dental-services span {
    padding: .5em 1em;
    display: inline-block;
}

.dental-services-hr {
    width: 80%;
    border-top: 2px solid var(--gray-dark);
}


/* Footer */
footer.footer {
    border-top: 10px var(--blue) solid;
    font-size: .875em;
}

    footer.footer img {
        width: 100%;
    }

.footer-container {
    padding: 60px 36px;
}

.footer-disclaimer {
    font-size: .875em;
    font-weight: 300;
}

.footer-copyright {
    padding: 1em;
    text-align: center;
    font-size: .875em;
}

.mat_id {
    text-align: right;
    margin-top: 2em;
    margin-bottom: .5em;
}

@media screen and (min-width: 768px) {
    .footer-copyright {
        padding: 0 1em;
        text-align: left;
    }

    .copyright {
        float: left;
    }

    .mat_id {
        float: right;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.back-to-top {
    width: 100px;
    height: 100px;
    display: none;
    position: fixed;
    bottom: 1em;
    right: 1em;
    background-image: url(/assets/images/backtotop-full.svg);
    background-size: cover;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}



    /* landing pages 2023*/

.capital{
    font-family:Arial, Helvetica, sans-serif;
}

.capital strong{
    font-weight:600;
}

.capital .navbar-brand {
    margin: auto;
}

.capital .landing-page-top-right {
    padding: 0 20px;
}

.capital .landing-page-title {
    color: #004e72;
    font-weight: 600;
}

.capital #ContactUs select {
    -moz-appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background-color: initial;
    color: #495057;
}

.capital #btnContactUs, .capital #btnDownload {

    background-color: #ff8400;
    color: #fff;

}

.capital .contact-form-required {
    font-size: .9em;
}

.capital .mat_id{
    text-align:center;
}

.select2-selection {
    height: 45px !important;
    padding: 10px 6px;
    border: 1px solid #ccc !important;
}

.selection__rendered {
    color: #495057 !important;
}
.select2-selection__arrow {
    height: 46px !important;
    right: 14px !important;
}

    .select2-selection__arrow b {
        zoom: 2;
        border-width: 5px 5px 0 5px !important;
    }
.zipcodeContainer{
    display:flex;
    flex-direction:column;
}

.zipcodeContainer .select2{
    order:1;
}
.zipcodeContainer .parsley-errors-list{
    order:2;
}

.calender-icon {
    background-image: url(/assets/icons/ic_event_24px.svg);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 95% center;
}

.sub-header, .form-header {
    font-size: 1.325em;
    margin-bottom: 20px;
}

.capital select {
    background-image: url(/assets/icons/arrow_down.svg);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 95% center;
}

.thank-you-header {
    font-size: 2.25em;
    font-weight: 600;
    text-align: center;
    color: #004e72;
}

@media screen and (min-width: 991px) {

    .capital .navbar-brand {
        margin: 0;
    }
    .capital .landing-page-top-right {
        max-width: 480px;
        padding: 0px;
        font-size: 1.125em;
    }

    .thank-you-header {
        text-align: left;
    }

    .thank-you-text{
        font-size:1.5em;
    }
    .capital .landing-page-title {
        font-size: 2em;
        line-height: 1.25;
    }
    .capital .landing-page-content img {
        width: 100%;
        max-height:inherit;
    }

    .capital .mat_id {
        text-align: right;
    }
}

.image-12m {
    width:100%;
}

.image-6ntm, .image-8ntm, .image-12ntm, .image-retiree {
    width: auto;
}

@media screen and (min-width: 768px) {
    .image-12m {
        max-width: 580px;
        float:left;
    }

    .image-6ntm, .image-8ntm, .image-12ntm, .image-retiree {
        max-width: 340px;
        float: left;
    }

}

.thank-you-show{
    display:none;
}

.ty .thank-you-show {
    display: flex;
}

.datepicker-days td{
    background-color: white;
}




/* Capital Medicar Plans */


.capital-medicare-plans .landing-page-top-right {
   display: none;
}



.alert-primary a{
    color: white;
}