/* 

BOOTSTRAP 5 BREAKPOINTS:
https://getbootstrap.com/docs/5.0/layout/breakpoints/

X-Small     N/A     <576px
Small       sm	    ≥576px
Medium      md  	≥768px
Large       lg	    ≥992px
XL          xl	    ≥1200px
XXL         xxl     ≥1400px

*/

:root {
    /* Colors */
    --white: #fff;
    --black: #333;
    --red: #FF0000;
    --primary-color: #1A2A4F;
    --secondary-color: #D52D33;
    --tertiary-color: #2455AF;
    --font-inverted-color: #F4F5F6;
    --disabled-color: #A7A7A7;
    --error-color: #E60000;
    --focus-color: #005fcc;
}

/*************** Font Styles (START) ***************/
body {
	font-family: 'Montserrat', sans-serif;
	color: var(--black);
	line-height: 1.5em;
	-webkit-font-smoothing: antialiased;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.5em;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
}
p, .p, li, td {
	font-size: 14px;
	line-height: 1.3;
	font-family: 'Montserrat', serif;
}
h1, .h1 {
	font-size: 32px;
	font-weight:700;
	color: var(--primary-color);
	line-height: 1.3em;
}
h2, .h2 {
	font-size: 28px;
	font-weight:600;
	color: var(--primary-color);
}
h3, .h3 {
	font-size: 24px;
	margin: 0;
	font-weight:600;
	color: var(--primary-color);
}
h4, .h4 {
	font-size: 18px;
	font-weight:500;
	color: var(--black);
}
h5, .h5 {
	font-size: 18px;
	font-weight:600;
	color: var(--black);
	font-family: 'Montserrat', serif;
	margin-bottom: 12px;
}
h6, .h6 {
	font-size: 15px;
	font-weight:500;
	color: var(--primary-color);
	margin-bottom: 6px;
}
th {
    font-weight: 600;
}
caption {
	color: var(--primary-color);
	font-weight: 600px;
}
strong {
    font-weight: 600;
}
.serif {
	font-family:'Montserrat', serif;
}
.sanSerif {
	font-family:'Montserrat', san-serif;
	font-weight: 500;
}
.noBold {
	font-weight: 500 !important;
}
.mdBold {
	font-weight: 600 !important;
}
.bold {
	font-weight: 700 !important;
}
@media (min-width: 980px) {
    p, .p, li, td {
    	font-size: 16px;
    	line-height: 1.3;
    	font-family: 'Montserrat', serif;
    }
    h1, .h1 {
    	font-size: 32px;
    	font-weight:700;
    	color: var(--primary-color);
    	line-height: 1.3em;
    }
    h2, .h2 {
    	font-size: 28px;
    	font-weight:600;
    	color: var(--primary-color);
    }
    h3, .h3 {
    	font-size: 24px;
    	margin: 0;
    }
    h4, .h4 {
    	font-size: 20px;
    	font-weight:500;
    	color: var(--black);
    }
    h5, .h5 {
    	font-size: 18px;
    	font-weight:600;
    	color: var(--black);
    	font-family: 'Montserrat', serif;
    	margin-bottom: 12px;
    }
    h6, .h6 {
    	font-size: 16px;
    	font-weight:500;
    	margin-bottom: 6px;
    }
    th {
        font-weight: 600;
    }
    .btn-xlg {
    	font-size: 22px;
    }
}

/*************** Padding (START) ***************/
.ptn {
	padding-top: 0;
}
.ptxs { 
	padding-top: 3px;
}
.pts { 
	padding-top: 6px;
}
.ptm { 
	padding-top: 12px;
}
.ptl { 
	padding-top: 24px;
}
.ptxl { 
	padding-top: 36px;
}
.prn {
	padding-right: 0;
}
.prxs { 
	padding-right: 3px;
}
.prs { 
	padding-right: 6px;
}
.prm { 
	padding-right: 12px;
}
.prl { 
	padding-right: 24px;
}
.prxl { 
	padding-right: 36px;
}
.pbn {
	padding-bottom: 0;
}
.pbxs { 
	padding-bottom: 3px;
}
.pbs { 
	padding-bottom: 6px;
}
.pbm { 
	padding-bottom: 12px;
}
.pbl { 
	padding-bottom: 24px;
}
.pbxl { 
	padding-bottom: 36px;
}
.pln {
	padding-left: 0;
}
.plxs { 
	padding-left: 3px;
}
.pls { 
	padding-left: 6px;
}
.plm { 
	padding-left: 12px;
}
.pll { 
	padding-left: 24px;
}
.plxl { 
	padding-left: 36px;
}

/*************** Margins (START) ***************/
.mtn {
	margin-top: 0;
}
.mtxs { 
	margin-top: 3px;
}
.mts { 
	margin-top: 6px;
}
.mtm { 
	margin-top: 12px;
}
.mtl { 
	margin-top: 24px;
}
.mtxl { 
	margin-top: 36px;
}
.mrn {
	margin-right: 0;
}
.mrxs { 
	margin-right: 3px;
}
.mrs { 
	margin-right: 6px;
}
.mrm { 
	margin-right: 12px;
}
.mrl { 
	margin-right: 24px;
}
.mrxl { 
	margin-right: 36px;
}
.mbn {
	margin-bottom: 0;
}
.mbxs { 
	margin-bottom: 3px;
}
.mbs { 
	margin-bottom: 6px;
}
.mbm { 
	margin-bottom: 12px;
}
.mbl { 
	margin-bottom: 24px;
}
.mbxl { 
	margin-bottom: 36px;
}
.mln {
	margin-left: 0;
}
.mlxs { 
	margin-left: 3px;
}
.mls { 
	margin-left: 6px;
}
.mlm { 
	margin-left: 12px;
}
.mll { 
	margin-left: 24px;
}
.mlxl { 
	margin-left: 36px;
}

/*************** Colors (START) ***************/
.white {
	color: var(--white) !important;
}
.black {
	color: var(--black) !important;
}
.red {
	color: var(--red) !important;
}
.primaryColor {
    color: var(--primary-color) !important;
}
.secondaryColor {
    color: var(--secondary-color) !important;
}
.tertiaryColor {
    color: var(--tertiary-color) !important;
}
.disabledColor {
    color: var(--disabled-color) !important;
}
.errorColor {
    color: var(--error-color) !important;
}

/*************** Clear Fix ***************/
.clearfix {
	clear: both;
}
.clearfixMobile {
    clear: both;
}
@media (min-width: 980px) {
    .clearfixMobile {
        clear: none;
    }
}
.noWrap {
    white-space: nowrap;
}

/*************** Button ***************/
.btn-primary {
    transition: all 0.2s;   
}
.btn-primary, .btn-primary.active, .btn-primary.active:visited {
    color: var(--white);
	border: none;
	border-radius: 6px;
	border-color: var(--secondary-color) !important;
	font-weight: 500;
	background: var(--secondary-color) !important;
}
.btn-primary:hover, .btn-primary.active:hover {
	transform: scale(1.05) perspective(1px);
	background: var(--primary-color);
}
.btn-primary:focus, .btn-primary.active:focus {
    border-color: var(--primary-color) !important;
}
.btn:focus, .btn:focus-visible {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--focus-color) !important;
}
.btn-xlg {
	font-size: 18px;
	padding: 10px 24px;
	font-weight: 500;
}
.btn-xlg a {
	color: var(--white);
}
.btn.btn-fill {
    text-transform: uppercase;
    font-size: 18px;
    padding: 12px 20px 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    line-height: 1.2em;
    transition: all 0.2s;
}
.btn.btn-fill span {
    font-size: 20px;
    padding-left: 4px;
    margin-right: 0;
}
.btn.btn-fill:focus, .btn.btn-fill:hover {
    transform: scale(1.05) perspective(1px);
    background: var(--primary-color);
    color: var(--white);
}
@media(max-width: 575px) {
    .btn.btn-fill {
        font-size: 15px;
    }
}

/*************** Back Button ***************/
.btn.back-btn {
    text-transform: uppercase;
    font-size: 18px;
    padding: 12px 20px 12px 20px;
    border-radius: 1px;
    font-weight: 500;
    line-height: 1.2em;
    color: #000;
    background-color: var(--white);
    border-color: #999;
    border-radius: 6px;
    transition: all 0.2s;
}
.btn.back-btn:focus, .btn.back-btn:hover{
    color:#000;
    background-color: #F5F5F5;
    border-color: #999;
}
.btn.back-btn:focus {
    border: 2px solid var(--primary-color);
}
.btn.back-btn span {
    font-size: 20px;
    padding-right: 4px;
    margin-right: 0;
}
@media(max-width: 575px) {
    .btn.back-btn {
        font-size: 15px;
    }
}

/*************** Link Button None (START) ***************/
a.btn-none {
    font-size: 18px;
    padding: 0;
    vertical-align: bottom;
}
a.btn-none:visited {
    color:#337ab7;
}

/*************** Footnote (START) ***************/
.footnote {
	font-size: 13px;
}
.footnoteSmall{
    font-size: 11px;
}

/*************** Jumbotron (START) ***************/
.jumbotron {
    font-family: 'Montserrat', san-serif;
    padding: 3% 15% 3% 15%;
    min-height: 700px;
    background-color: var(--tertiary-color);
}
.jumbotron p {
    font-size: 16px;
	color: var(--font-inverted-color);
    line-height: 1.5em;
}
.jumbotron h1 {
	font-size: 28px;
	font-weight: 700;
	color: var(--font-inverted-color);
}
.jumbotron h4 {
	color: var(--font-inverted-color);
	font-weight: 500;
	font-size: 20px;
}
.jumbotron .generatedInfo {
    color: var(--primary-color);
}
.landing-home-image {
    min-height: 500px;
}
.landing-home-image {
    background-position: 50% 22%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image:url(../../uploads/00001324/landing_jumbotron.png);
}
@media (max-width: 1300px) {
    .landing-home-image {
        min-height: 400px;
    }
}
@media (max-width: 1020px) {
    .landing-home-image {
        min-height: 300px;
    }
}
@media (max-width: 991px) { /* This is when product cards become column */
    .landing-home-image {
        display: none;
    }
}

/************** Calculator (START) **************/
.calculator h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}
.calculator h5 {
    color: var(--black);
    font-weight: 600;
    font-size: 20px;
}
.calculator p {
    color: var(--black);
    font-weight: 500;
}

/************** Info Section (START) **************/
.infoCards {
    padding-top: 24px;
    padding-bottom: 24px;
}
.infoCards h3 {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight:600;
}
@media (min-width: 1200px) {
    .infoCards {
        border-radius: 0% 0% 50% 50%;
        width: 300px;
        height: 300px; 
        border: 4px solid var(--secondary-color);
        padding-top: 20%;
    }
    .infoCards h3 {
        text-transform: uppercase;
        /*color: var(--black);*/
    }
}

/*************** Agree (START) ***************/
.agreeSingleDiv {
	margin: auto;
	width: 140px;
}
.agreeSingleDiv label {
	display: none;
}

/*************** Payment (START) ***************/
.paymentBtn .buttonState {
    padding:8px 10px 0px 0px;
    height: 42px;
    font-size: 15px;
    border-radius: 4px;
    background:	#f3f9fc;
    color: var(--black);
    border: solid 1px #abb6ba;
    margin: 8px;
}
.paymentBtn .buttonState:hover {
    border: 2px solid var(--black);
}
.paymentBtn span span {
    padding: 4px 6px 10px 18px;
    font-weight: 400;
    font-size: 16px;
}
.paymentBtn .buttonState.active {
	background: #07639D;
	color: var(--white);	
}
.paymentBtn .active span span {
	background: url('../../uploads/00001289/agree-check.svg');
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-position-x: 0px;
	background-position-y: 8px;
}
.paymentBtn.agreeBtn .buttonState.strm-bs-pos-2 {
    background:	var(--white);
    color: var(--black);
    border: none;
}
.paymentBtn.agreeBtn .buttonState.strm-bs-pos-1.active {
	background: #07639D;
	color: var(--white);
}
.paymentBtn.agreeBtn .buttonState.strm-bs-pos-2.active {
	background: #616a6d;
	color: var(--white);
	border: solid 1px var(--black);
}
.paymentBtn.agreeBtn .strm-bs-pos-1.active span span {
	background: url('../../uploads/00001289/agree-check.svg');
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-position-x: 0px;
	background-position-y: 8px;
}
.paymentBtn.agreeBtn .strm-bs-pos-2.active span span {
    background: url('../../uploads/00001289/disagree-cross.svg');
	background-size: 15px 15px;
    background-repeat: no-repeat;
	background-position-x: 0px;
	background-position-y: 8px;
}

/*************** Nav Bar (START) ***************/
#defaultNavbar1 .navbar-nav.navbar-fixed {
    float: right;
    margin-top: 36px;
}
#defaultNavbar1 .navbar-btn {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 16px;
}
#defaultNavbar1 .navbar-btn {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 12px;
    margin-right: 12px;
}
#defaultNavbar1 .navbar-nav {
    margin-top: 0px;
}
#defaultNavbar1 .navbar-btn {
    margin-top: 4px;
    margin-bottom: 0px;
    margin-left: 14px;
    margin-right: 12px;
    font-size: 15px;
    padding: 3px 10px;
}
.navbar-fixed > li {
    float: left;
}
.navbar-  .navbar-right {
    float: right !important;
    margin-right: -15px;
}
.container > .navbar-header {
    min-height: 76px
}
.navbar {
    min-height: 100px;
    background: linear-gradient(110deg, var(--white) 20%, var(--primary-color) 20%);
    padding-right: 20px !important;
}
.navbar li.dropdown {
    padding-bottom: 0px;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    background: var(--primary-color);
}
.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar-default .navbar-nav > li > a {
    color: var(--primary-color);
    font-size: 15px;
}
.navbar-default .navbar-nav > li > a.btnLink {
    padding: 0;
    margin: 0;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
    color: #2B75BB;
    background-color: transparent;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
    color: var(--white);
    background-color: var(--primary-color);
}
.nav > li.signup {
    display: none;
}
.navbar-default .navbar-toggle {
    border-color:#999;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 1px;
}
.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 2px solid transparent;
    border-radius: 4px;
}
.menu-label {
    position: absolute;
    top: 40px;
    right: 2px;
    color:#666;
    font-weight: bold;
}
.navbar h4, .navbar h5, .navbar p, .navbar a {
    color: var(--font-inverted-color);
}
.navbar-brand {
    width: 50%;
}
@media (max-width: 1500px) {
    .navbar h4, .navbar h5 {
        font-size: 1.4rem;
    }
    .navbar p {
        font-size: 14px;
    }
}
@media (max-width: 1300px) {
    .navbar h4, .navbar h5 {
        font-size: 1.3rem;
    }
    .navbar p {
        font-size: 13px;
    }
}
@media (max-width: 1100px) {
    .navbar h4, .navbar h5 {
        font-size: 1.2rem;
    }
    .navbar p {
        font-size: 12px;
    }
}
@media (max-width: 900px) {
    .navbar h4, .navbar h5 {
        font-size: 1.1rem;
    }
    .navbar p {
        font-size: 11px;
    }
}
/*************** Logo (START) ***************/
.land-logo {
    width: 35%;
}

/*************** Chart (START) ***************/
img.chart {
    display: block;
    margin: 0 auto;
    width: 60px;
    height: 60px;
}
a:hover img.chart {
    width: 64px;
    height: 64px;
}

/*************** Coverage (START) ***************/
.complete-coverage {
    background-image: linear-gradient(45deg, #455FAB -25%, #2B75BB 125%);
    padding: 0 0px;
    position: relative;
}
.complete-coverage .insurance-image {
    display: table;
    margin-bottom: 32px;
}
.insurance-circle {
    width: 60px;
    height: 60px;
    border: 1px solid var(--white);
    background-color: var(--white);
    border-radius: 50%;
    display: table;
    text-align: center;
    padding: 15px 0px 0px;
    margin: 0px 15px 0px 0px;
    z-index: 10;
    position: relative;
    transition: background-color 0.15s ease 0s;
    float: left;
}
.icon-label {
    color: var(--white);
    margin-left: 85px;
    vertical-align: middle;
    display: table-cell;

}
.coverage-left, .coverage-right {
    margin-top: 20px;
    color: var(--white);
}

/*************** Main Content (START) ***************/
.mainContent {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 0;
    font-family: 'Montserrat', san-serif;
}
#IntroductoryLife .mainContent, #Consent .mainContent, #LifeThankYou .mainContent, #LifeThankYouMail .mainContent, #CreditCardPayment .mainContent {
    margin-top: 0px;
}

/*************** Circle (START) ***************/
.circle {
    width: 130px;
    height: 130px;
    border: 3px solid #386CB5;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto;
    display: table;
    text-align: center;
    padding-top: 25px;
    margin-bottom: 22px;
    -webkit-transition: background-color .15s ease;
    transition: background-color .15s ease;
}
.circle span {
    background: url("../../uploads/00001101/large_icon_sprite.png") no-repeat;
    display: inline-block;
    width: 80px;
    height: 80px;
    vertical-align: middle;
}

/*************** Icon (START) ***************/
span.ci-icon {
    background-position: 0px 0;
}
span.life-icon {
    background-position: -80px 0;
}
span.ltd-icon {
    background-position: -160px 0;
}
span.add-icon {
    background-position: -240px 0;
}
span.acc-icon {
    background-position: -320px 0;
}
span.boe-icon {
    background-position: -400px 0;
}
.plansIcon {
    min-height: 360px;
}

/*************** Link Hover (START) ***************/
a:hover .circle {
    background-color: #386CB5;
}
a:hover .circle span.ci-icon {
    background-position: 0 -80px;
}
a:hover .circle span.life-icon {
    background-position: -80px -80px;
}
a:hover .circle span.ltd-icon {
    background-position: -160px -80px;
}
a:hover .circle span.add-icon {
    background-position: -240px -80px;
}
a:hover .circle span.acc-icon {
    background-position: -320px -80px;
}
a:hover .circle span.boe-icon {
    background-position: -400px -80px;
}

/*************** Panel (START) ***************/
.panel-group .panel {
    border-radius: 0px;
}
.panel {
    border: none;
    border-bottom: 1px solid #999;
}
.panel:first-child {
    border-top: 1px solid #999; 
}
.panel-default {
    border-color: #999;
}
.panel-group .panel + .panel {
    margin-top: 0px;
}
.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
    background: #f5f5f5;
    border-top: none;
    padding: 0 0 0 34px;
}
.panel-title {
    font-size: 18px;
    font-weight:500;
}
.panel-title a:focus, .panel-title a:hover {
    text-decoration: none;
}
.panel-default>.panel-heading{
    background-color:#f5f5f5 !important;
}
.panel-heading {
    border-bottom: none;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-default>.panel-heading+.panel-collapse>.panel-body {
    background: whitesmoke;
}

/*************** Step Indicator (START) ***************/
.step-indicator {
    width: 100%;
    z-index: 100;
    font-weight: 500;
}
.step-indicator-responsive li {
    display: table-cell;
    float: none;
    width: 1%;
    padding: 0;
}
.step-indicator-responsive .caption {
    padding-top: 8px;
}
.step-indicator-responsive {
    display: table;
    table-layout: fixed;
    border-collapse: separate;
    position: relative;
    vertical-align: middle;
    text-align: center;
}
.step-indicator-responsive {
    border-collapse: separate;
    text-align: center;
}
.step-indicator-horizontal li::before {
    content: "";
    background-color: #757575;
    height: 1px;
    display: block;
    top: 20px;
    position: relative;
    z-index: -1;
}
.step-indicator-horizontal li:first-child::before {
    left: 50%;
}
.step-indicator-horizontal li:last-child::before {
    right: 50%;
}
.step-indicator .info .caption, .step-indicator .warning .caption {
    font-weight: 700;
}
.step-indicator .step {
    background-color: #757575;
    color: var(--white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.step-indicator .info .step {
    background-color: var(--primary-color);
}
.step-indicator .success .step {
    background-color: var(--primary-color);
}
@media (max-width: 767px) {
    .step-indicator-responsive .caption {
        display: none;
    }
    .step-indicator-responsive .active .caption {
        display: inline;
    }
}

/*************** Card Box (START) ***************/
.card {
    position: relative;
    margin-bottom: 30px;
}
.card-box {
    padding: 16px;
    background: var(--white);
    border-radius: 8px;
}
.card-box a {
    text-decoration: none;
}
.card-default {
    display: block;
    transition: border-color .15s linear;
    background: var(--white);
    border-radius: 8px;
}
.card-default-margin {
    margin: 12px 0 12px 0;
}
.card-default .card-block {
    padding: 0 15px 15px;
}
.card-default[data-clickable]:hover {
    border: 1px solid #999;
}
.card-default .card-header {
    background-color: var(--white);
    border-bottom: 1px solid #ccc;
}
.card-module-heading {
    background-clip: #666;
}
@media (min-width: 480px) {
    .card-box {
        border-bottom: 1px solid #ccc;
        padding: 16px;
        box-shadow: 0 4px 5px 0 rgba(0,0,0,0.12);
    }
    a:hover .card-box {
        background: #f1f7f8;
    }
}
@media(min-width: 768px) {
    .card-box {
        border: 1px solid #ccc;
        padding: 32px;
        box-shadow: 0 4px 5px 0 rgba(0,0,0,0.12);
        border: 3px solid var(--white);
    }
}
@media screen and (max-width: 767px){
    .card-box{
        border-radius: 12px;
        border: 3px solid var(--white);
    }
}
.ltd-cards .card-box{
    padding: 0px;
    box-shadow: none;
}

/*************** Product Cards (START) ***************/
.productRow p {
    font-size: 16px;
    color: var(--black);
}
.productRow {
    margin-top: -70px;
}
@media (max-width: 991px) {
    .productRow {
        margin-top: 70px;
    }
}
.prod-card-box-link {
    text-decoration: none;
}
.prod-card-box-link:hover {
    text-decoration: none;
}
.prod-card-box {
    padding: 16px 16px 16px 16px;
    background-color: var(--white);
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 12%);
    transition: all 0.2s;
    border-radius: 10px;
    text-align: center;
    position: relative;
}
.prod-card-box:hover {
    transform: scale(1.02) perspective(1px); 
    background-color: var(--white);
}
.prod-card-box h4, .prod-card-box .card-enroll {
    color: var(--primary-color);
}
.prod-card-box .card-enroll {
    position: absolute;
    bottom: 0%;
}
@media(max-width: 991px){
    .prod-card-box {
        height: 200px;
    }
    .prod-card-box .card-enroll {
        left: 33%;
    }    
}
@media(min-width: 992px) and (max-width: 1199px){
    .prod-card-box {
        height: 250px;
    }
    .prod-card-box .card-enroll {
        left: 29%;
    }    
}
@media(min-width: 1200px) and (max-width: 1399px){
    .prod-card-box {
        height: 220px;
    }
    .prod-card-box .card-enroll {
        left: 32%;
    }    
}
@media(min-width: 1400px){
    .prod-card-box {
        height: 200px;
    }
    .prod-card-box .card-enroll {
        left: 35%;
    }
}

/*************** Row (START) ***************/
.row.card-default-row {
    margin: 0 0 0 0;
}
.row.card-calcuator-row {
    margin: 0 0 0 0;
}
.spouse-row {
    border-top: 1px solid #ccc;
    margin: 0 0 8px;
    padding-top: 10px;
}
.option-row {
    margin: 0 0 12px 0;
    border-bottom: 1px solid #ccc;
}

/*************** Promo (START) ***************/
.planPromo {
    margin: 0px auto 24px;
}
.promoContent {
    padding-left: 24px;
}

/*************** Benefits (START) ***************/
.benefitList ul {
    font-size: 16px;
    list-style: none;
    margin-left: -16px;
}
.benefitList ul li {
    padding: 0 0 20px 0;
}
.benefitList ul li:before { 
    font-family: 'Glyphicons Halflings';
    content: "\e013";
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    
}
.benefitHighlights {
    background: #f5f5f5;
    padding-right: 0;
    padding-left: 0;
}

/*************** Offers (START) ***************/
.lifeOffer {
    padding: 12px 0px 12px 0px;
}
.lifeOffer2 {
    padding: 0px 24px 0px 24px !important;
}
.lifeOfferUpdate {
    padding: 0px 0px 0px 0px;
}
.lifeOffer .spacer {
    color: var(--primary-color);
    font-size: 18px;
}
.crossSellOffers {
    padding: 0 12px 24px 12px;
}

/*************** Health (START) ***************/
.healthRow {
    border-top: 1px solid #ccc;
    padding: 24px 0 24px 0;
}
.healthQuestions {
    padding: 16px 24px 0 0;
}
.healthQuestions li {
    padding: 0 0 8px 0;
}
.healthQuestions .h6 {
    font-weight: 600;   
}
.healthAnswers {
    padding-left: 0;
    padding-right: 0;
}
.healthQ {
	text-align: center;
}
@media (min-width: 980px) {
    .healthQ {
    	text-align: left;
    }
}

/*************** Form Elements (START) ***************/
.productField {
    min-height: 54px;
    float: left;
    display: flex;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
}
.productRadio .productField {
    margin-bottom: 36px;
}
label, .spacer {
    color: var(--black);
    font-weight: 600;
    font-size: 15px;
    margin-top: 6px;
    margin-bottom: 6px;
}
@media (max-width: 1300px) {
    label, .spacer {
        font-size: 13px;
    }
}
.lgFormField .spacer {
    color: var(--primary-color);
    font-size: 18px;
}
.bigCheckbox .productField {
    width:auto;
    margin-right: 8px;
}
p.formLabels {
    padding-top: 22px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}
.textbox .spacer {
    display: none;
}

/*************** FORM ELEMENTS - CHILD (START) ***************/
.childForm label, .childForm .spacer {
    font-size: 12px;
}
.childForm input[type="radio"] + label, input[type="checkbox"] + label {
    margin-right: 0;
}
.childForm > * {
    padding-right: 0;
}
@media (max-width: 1430px) {
    .childForm label, .childForm .spacer {
        font-size: 10px;
    }
    .childForm input[type="radio"] + label::before, input[type="checkbox"] + label::before {
        min-width: 30px;
        min-height: 30px;
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 1240px) {
    .childForm label, .childForm .spacer {
        font-size: 8px;
    }
    .childForm input[type="radio"] + label::before, input[type="checkbox"] + label::before {
        min-width: 28px;
        min-height: 28px;
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 915px) {
    .childForm {
        flex-direction: column;
    }
    .childForm label, .childForm .spacer {
        font-size: 12px;
    }
    .childForm input[type="radio"] + label::before, input[type="checkbox"] + label::before {
        min-width: 36px;
        min-height: 36px;
        width: 36px;
        height: 36px;
    }
}

/*************** Answer (START) ***************/
.answer {
    margin-bottom: 0;
}
.memberGender .answer {
   float: right;
}

/*************** Add Button (START) ***************/
.addButton .answer {
    margin-bottom: 0;
}
.addButton label {
    color: #000;
    margin-bottom: 0;
    line-height: 1.5em;
}
.addButton .buttonState {
    text-align: center;
    border: 1px solid;  
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 15px;
    padding: 12px 20px 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    color: #000;
    background-color: var(--white);
    border-color: #999;
    display: block;
    width: 100%;
}
.addButton .buttonState:hover {
    color:#000;
    background-color:#e6e6e6;
    border-color:#595959
}
.addButton .productField {
    min-height: 10px;
}

/*************** Remove Button (START) ***************/
.removeButton .buttonState {
    text-align: center;
    border: 1px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 15px;
    padding: 12px 20px 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    color: #000;
    background-color: #e2e8cb;
    border-color: #bac0a3;
    display: block;
    width: 100%;
}
.removeButton .buttonState:hover {
    color:#000;
    background-color:#bac0a3;
    border-color:#bac0a3;
}
.removeButton .productField {
    min-height: 10px;
}

/*************** Input (START) ***************/
input[type="text"], input[type="password"], select {
    border: 1px solid #8A8A8A;
    cursor: text;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    padding: .5em;
    text-align: left !important;
    border-radius: 4px;
    height: 45px;
    position: relative;
}
input[type="radio"] {
    position: absolute;
    left: -99999px;
}
.stackedRadio input[type="radio"] {
    position: relative;
    visibility: hidden;
}
input[type="radio"] + label::before, input[type="checkbox"] + label span::before {
    content: '';
    display: inline-block;
    position: relative;
    min-width: 36px;
    min-height: 36px;
    margin-right: .5em;
    border: 2px solid #ccc;
    border-radius: 200px;
}
input[type="radio"] + label, input[type="checkbox"] + label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    float: left;
    font-weight: 400;
    width: auto;
    margin-right: 1em;
    border-radius: 100px;
}
input:checked + label::before {
    content: '';
    background-size: 36px 36px;
    text-align: center;
    line-height: 34px;
    color: var(--white);
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color) !important;
    border-radius: 25px;
    cursor: pointer;
    vertical-align: middle;
    border: none;
}
input.inerror {
    border-color: var(--red);
}
.lifeOffer input[type="radio"] + label, .lgFormField input[type="radio"] + label {
    color: var(--primary-color);
    font-size: 16px;
    font-weight:  400;
}
.productRadio input[type="radio"] + label {
    font-size: 18px;
    font-weight: 600;
    margin-left: 36px;
}
.eftRadio input[type="radio"] + label {
    font-size: 16px;
    font-weight: 600;
}

/*************** Overriding Affinium Styles (START) ***************/
#footer, .view-navigation.view-actions, #rightColumn, .ctlPanelButton {
    display:none !important;
}
input {
    width:100%;
}
.warning { 
    display:none;
    color: var(--red);
    font-size: 15px;
    font-weight: 600;
}

/*************** UI (START) ***************/
.ui-state-default .ui-icon, .ui-state-active .ui-icon, .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
    background-image: none;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-b, .ui-corner-top, .ui-corner-tr {
    border-radius: 0px;
}
.ui-state-default {
    color: #1c94c4;
    border: none;
}
.ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    color: #1c94c4;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    margin-top: -10px;
}
.ui-widget :active, .ui-widget :focus {
    background: var(--secondary-color) !important;
}
.ui-widget-content {
    border: 2px solid #ccc;
    background: #eeeeee; 
    color: var(--black);
    height: 2px;
    margin-top: 8px;
    margin-bottom: 24px;
}

/*************** Rate Table (START) ***************/
table.rateTable {
    width: 100%;
    margin-bottom: 16px;
}
table.rateTable tr {
    border-bottom: 1px solid #666;
}
table.rateTable tr td, table.rateTable tr th {
    padding: 4px 20px 4px 0;
}
table.rateTable tr td.cost, table.rateTable tr th.cost {
    text-align: right;
    line-height: 1.2em; 
}

/*************** Slider (START) ***************/
.formSlider {
    position: relative;
}
.formSlider .productField, .formSlider .spacer, .formSlider label {
    display: none;
}
.sliderlabel span.sliderprompt {
    display: none;
}
.sliderlabel span.slidervalue {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    line-height: 30px;
}
.slider-box {
    padding: 4px;
    border-radius: 4px;
    height: 44px;
    position: relative;
}
.slider-box .sliderLabelLeft {
    position: absolute;
    top: 6px;
    left: 0px;
}
.slider-box .sliderLabelRight {
    position: absolute;
    top: 6px;
    right: 0px;
}
.slider-box .ui-widget-content {
    margin: 16px 0px 6px 0px;
}
.sliderLabelLeft, .sliderLabelRight {
    font-weight: 500;
}
.slider_limits {
    font-size: 100%;
    font-weight: 500;
    color: var(--black);
}

/*************** Footer (START) ***************/
.footer {
    display: block;
    background: var(--primary-color);
    padding: 24px 0;
}
.footerNav li > a:hover {
    background-color: var(--font-inverted-color);
}
.footerNav li {
    padding: 0;
}
.footer .nav a, .footer p {
    color: var(--font-inverted-color);
}
@media (max-width: 991px) {
    .footer p, .footerNav li {
        text-align: center;
    }
}

/*************** Article (START) ***************/
.article h2 {
    font-size: 20px;
    font-weight: 700px;
    margin-top:12px
}
.article p {
    margin-bottom: 12px;
}
.article-callout {
    padding: 30px 20px;
}

/*************** Modal (START) ***************/
.modal-calculator .modal-content {
    height: 650px;
    overflow-x: auto
}
.modal-calculator .modal-header {
    border-bottom: none;
}
.modal-calculator .modal-body {
    height: 925px;
}
.modal-register .modal-header {
    border-bottom: none;
}
.modal-register .modal-title {
    padding: 16px 16px 0 16px;
}
.modal-register .modal-footer {
    padding: 0 30px 30px 30px;
    border-top: none;
}
.modal-footer {
    text-align: left !important;
}

/*************** Rounded Checkbox (START) ***************/
.roundedCheckBox {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 100%;
    position: relative;
}
.roundedCheckBox label {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 100px;
    transition: all .5s ease;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--white);
}
.roundedCheckBox input[type="checkbox"] + label span::before {
    margin-right: 0;
}
.roundedCheckBox input:checked + label span::before {
    content: '';
    background: url('/uploads/00001308/check.gif') center no-repeat;
    text-align: center;
    line-height: 34px;
    color: var(--white);
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    vertical-align: middle;
    border: 2px solid var(--primary-color);
    margin-top: -4px;

}
.roundedCheckBox label {
    margin-top: 0;
    margin-right: 0;
}
.roundedCheckBox input[type=checkbox] {
  visibility: hidden;
}
/*************** Rounded Checkbox (START) ***************/

/*************** List (START) ***************/
.list-unindented,
.module > ul,
.component ul,
.rte ul,
.rte ol,
.module > ol,
.component ol {
    margin-left: 0 !important;
    padding-left: 15px !important;
    -webkit-padding-start: 20px !important;
}

/*************** Key Takeaways (START) ***************/
.key-takeaways ul.list-unindented li,
.key-takeaways .module > ul li,
.key-takeaways .component ul li,
.component .key-takeaways ul li,
.key-takeaways .rte ul li,
.rte .key-takeaways ul li {
    margin-bottom: 10px;
}

/*************** Video Limelight (START) ***************/
.videolimelight {
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
}
.videolimelight object, .videolimelight embed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/*************** Errors (START) ***************/
.errorDiv {
    text-align: center;
    border: 1px solid;
    border-radius: 4px;
    font-size: 16px;
    padding: 20px 20px 20px 20px;
    border-radius: 4px;
    font-weight: 600;
    background-color: var(--white);
    display: block;
    width: 100%;
    z-index: 10;
    color: var(--red);
}
.errorDiv h5, .errorDiv h6, .errorDiv p {
    margin: 0;
}
.errorDiv p {
    color: var(--black);
}
.warningDiv {
    text-align: center;
    border: 1px solid;
    border-radius: 4px;
    font-size: 16px;
    padding: 20px 20px 20px 20px;
    border-radius: 4px;
    font-weight: 600;
    background-color: var(--white);
    display: block;
    width: 100%;
    color: var(--secondary-color);
    z-index: 10;
}
.warningDiv h5 {
    margin: 0;
}

/*************** Age (START) ***************/
.ageField {
    margin-top: 12px;
}
.ageField input[type="text"] {
    margin-left: 36px;
    width: 54px;
}
.ageField select {
    width: 170px;
    margin-left: 100px;
}
.ageField .productField {
    margin-top: -38px;
}

/*************** Enroll (START) ***************/
.enrollStepsDiv {
    margin: 36px 0 16px 0;
    padding: 5px;
}
.enrollStepsDiv .h2 {
    font-size: 30px;
    font-weight: 600;
    color: #083d71;
}
.enrollButton .buttonState {
    border: 1px solid;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 16px 84px 16px;
    border-radius: 4px;
    font-weight: 500;
    color: #000;
    border-color: #ccc;
    display: block;
    width: 100%;
    min-height: 76px;
    margin: 12px 0px 12px 0px;
}
.enrollButton .spacer {
    display: none;
}
.enrollButton .productField {
    display: block;
}
.enrollButton.spouseButton .buttonState {
    background: url('../../uploads/00001242/spouse-btn.svg');
    background-color: #f1f1f1;
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: 10px 8px;
}
.enrollButton.ciButton .buttonState {
    background: url('../../uploads/00001225/ci-btn.svg');
    background-color: #f1f1f1;
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: 10px 8px;
}
.enrollButton .buttonState.active {
    color: var(--primary-color);
    font-weight: 600;
    background: url('../../uploads/00001242/check-btn.svg');
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: 10px 8px;
    border: 3px solid; 
    border-color: #6d8844;
    background-color: var(--white);
}

/*************** Section (START) ***************/
.sectionName {
    border-top: 8px solid var(--primary-color);
    padding-top: 10px;
    display: inline-block;
    padding-right: 10px;
}
.sectionNameDisabled {
    border-top: 8px solid var(--disabled-color);
    color: var(--disabled-color);
    padding-top: 10px;
    display: inline-block;
    padding-right: 10px;
}
.sectionHeading {
    margin-top: 48px;
    border-bottom: 3px solid #ccc;
    padding-bottom: 6px;
}
h3.sectionName, h1.sectionName {
    font-weight: 700;
}

/*************** Radio Button (START) ***************/
.radioBtn span span {
    font-weight: 600;
    font-size: 20px;
}
.centerDivRadio {
    margin: 0 auto;
    width: 280px;
}
.radioButtonOneLine p {
    margin-bottom: 0;
}
.radioBlock legend {
    display: block !important;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*************** YesNo Button (START) ***************/
.yesNoDiv .productField {
    min-height: 32px;
}
.yesNoBtn span span span, .yesNoBtn .active span span {
    background: none;
}
.yesNoBtn span span {
    padding: 10px 8px 10px 22px;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    background-size: 36px 36px;
    background-repeat: no-repeat;
}
.yesNoBtn .elementcaption {
    display: none;
}
.yesNoBtn .answer .productField .buttonState {
    padding-top: 15px;
}
.yesNoBtnLg span span {
    padding: 10px 8px 10px 22px;
    font-weight: 500;
    font-size: 18px;
}
.addBasicEnroll span span, .addOptionalEnroll span span {
    padding-left: 45px;
}
.stackedRadio .productField {
    display: block;
}

/*************** Rule (START) ***************/
.ruleBelow {
    border-bottom: 1px solid #ccc;
}
.ruleAbove {
    border-top: 1px solid #ccc;
}
.ruleLeft {
    border-left: 1px solid #ccc;
}
.ruleRight {
    border-right: 1px solid #ccc;
}
.ruleNone {
    border: none;
}
.ruleAboveThick {
    border-top: 2px solid var(--primary-color);
}
.ruleAboveThickDisabled {
    border-top: 2px solid var(--disabled-color);
}

/*************** Dollar (START) ***************/
.dollar-prefix input#AnnualIncome {
    background: var(--white) url(/uploads/00001308/dollar-prefix.png) left center no-repeat;
    background-size: 9px;
    background-position: 10px 14px;
    padding: .5em .5em .5em 1.5em;
}
.dollarValue {
    position: relative;
}
.dollarSymbol {
    position: absolute;
    left: -8px;
    top: 18px;
}

/*************** Tooltip ***************/
.tooltip {
    min-width: 300px;
}
.iconTooltip {
    color: var(--primary-color);
}
.toggletip-bubble {
  display: inline-block;
  position: absolute;
  left: 100%;
  top: 0;
  width: 10em;
  padding: 0.5rem;
  background: #000;
  color: #fff;
}

/*************** Thank You (START) ***************/
.thank-you-box {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}
.thank-you-box h4 {
    color: var(--primary-color);
}
.thank-you-box p {
    color: var(--black);
    font-weight: 600;
}

/*************** Font Awesome (START) ***************/
.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 1px;
}
.fa, .fa-stack {
    display: inline-block;
}

/*************** Mobile (START) ***************/
.hideMobile {
    display: none;   
}
.showMobile {
    display: inline-block;
    
}

/*************** Misc. (START) ***************/
.success a {
    color: var(--primary-color);
}
.explainQuestions {
    padding: 0 24px;
}
.eSignBlock {
	background-color: #f3f9fc;
	padding: 5px 15px;
}
.registerBgDiv{
    background: #98c3de;
    margin-top: 76px;
    min-height: 800px;
}
.signinBox {
    margin-top: 48px;
    padding: 24px 24px 6px;
    margin-bottom: 96px;
}
.details {
    display: none;
}
.accountGreeting {
    position: absolute;
    font-size: 12px;
    top: -8px;
    text-align: left;
    left: 16px;
    z-index: 2;
    display: none;
}
.regForm {
    display: none;
}
tr.tableSubtitle td {
    border-bottom: none;
    color: var(--primary-color);
    padding-bottom: 0;
}
.wideRegistration {
        min-height: 900px;
        padding-top: 76px;
}
.substituteLogoutButton {
    float: left;
}
.updateInfo {
    display: none;
}
.householdDiv, .credentialDiv {
    display:none;
}
.require {
    display: none;
    /* lose the asterix by mandatory*/
}
.passwordCriteria {
    margin: 0 0 36px 0;
}
.indicator {
    width: 20px;
    color: var(--primary-color);
    margin: 2px 0 5px 0;
}
.dropdown-menu{
    border-radius: 0px;
    padding: 0px 0;
}
.anniversary {
    padding-top: 48px;
    margin: 0 auto;
    text-align: center
}
.contactInfo {
    background-color:#e3f2f4;
}
.landingInfo p {
    font-size: 16px;
    line-height: 1.5em;
}
.phoneLink {
    font-size: 24px;
    font-weight: 600;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.products {
    padding: 45px 0;
}
.elimDiv h4 {
    font-size: 16px;
}
@media (min-width: 480px) {
    .nav > li.signup {
        display: inline-block;
    }
}
@media (min-width: 768px) {
    .hideMobile {
        display: inline-block;
    }
    .showMobile {
        display: none;
    }
    p, .p, li, td {
        font-size: 16px;
    }
    h1, .h1 {
        font-size: 36px;
    }
    h2, .h2 {
        font-size: 30px;
    }
    h3, .h3 {
        font-size: 24px;
    }
    h4, .h4 {
        font-size: 20px;
    }
    h5, .h5 {
        font-size: 18px;
        line-height: 1.4;
    }
    h6, .h6 {
        font-size: 15px;
    }
    .panel-body li {
        padding-bottom: 6px;
    }
    .landingInfo p {
        font-size: 18px;
        line-height: 1.7em;
        margin-bottom: 32px;
    }
    .wide {
        background-size: cover;
        min-height: 300px;
    }
    .wideLanding {
        min-height: 520px;
    }
    .wideRegistration {
        padding-top: 148px;
        padding-bottom: 48px;
    }
    h1.landingHeadline {
        padding: 60px 0 24px;
        font-size: 34px;
        line-height: 1.3em;
    }
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        background: #F8F8F8;
    }
    #defaultNavbar1  .navbar-nav {
        margin-top: 36px;
    }
    .contactInfoDiv {
        display: table;
        height: 160px;
    }
    .contactInfoContent {
        display: table-cell;
        vertical-align: middle;
    }
    .card-default {
        border: 1px solid #ccc;
    }
    .card-default-none {
        border: none;
    }
    .lifeOffer-ruleRight {
        border-right: 1px solid #ccc;
    }
    .wideRegistration {
        background: #e3f2f4;
    }
    .is-table-row {
        display: table;
        border-spacing: 16px;
    }
    .is-table-row [class*="col-"] {
        float: none;
        display: table-cell;
        vertical-align: top;
    }
    .row-eq-height {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
    .row-eq-height [class*="col-"] {
        display: flex;
        flex-direction: column;
        margin-right: 12px;
    }
    .row-eq-height .crossSell {
      flex: 1;
    }
    .card430 {
        min-height: 430px;
        }
    .col-pathway {
        padding-left: 0;
        padding-right: 16px;
        }
    .lifeOffer {
        padding: 12px 24px 12px 24px;
    }
    .lifeOfferUpdate {
        padding: 0px 24px 0px 24px;
    }
    .lifeOfferpbn {
        padding: 12px 24px 0px 24px;
    }
    .lifeOfferptn {
        padding: 0px 24px 12px 24px;
    }
    .accountGreeting {
        display: block;
    }
    .modalContent {
        width: auto;
        height: 300px;
        overflow: scroll;
        padding:6px 18px;
        background: #f1f7f8;
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .heightFiller {
        min-height: 480px;
    }
}
@media (min-width: 992px) {
    .cross-sell {
        background-image:url(../../uploads/00001101/life-physician-img.png);
        background-repeat: no-repeat;
        background-size: 37%; 
        background-position: 58% 0; 
        height: 440px;
    }
    .cross-sell-bg2 {
        background-image:url(../../uploads/00001101/asian-physician.png);
    }
    .cross-sell-bg3 {
        background-image:url(../../uploads/00001101/female-physician.png);
    }
    .coverage-left, .coverage-right {
        margin-top: 96px;
    }
    .promoContent {
        padding-left: 24px;
    }
    .imageContainer {
        min-height: 260px;
        background-image:url(../../uploads/00001101/advisors.gif);
        background-repeat: no-repeat;
        background-position: bottom;
    }
    .enrollCardCol {
        margin-top: 122px;
    }
}
@media (min-width: 1366px) {
    .wide {
        background-size: 80%;
        background-position: 100% 20%;
        background-repeat:no-repeat;
    }
}

/********** Styles to update BACK and NEXT buttons on mobile (START) **********/
.hideMobile {
    display: none;
}
@media (min-width: 768px) {
    .hideMobile {
        display: inline-block;
    }
    .ltd-income {
        margin-top: 30px;   
    }
}
@media (min-width: 768px) {
    .btn.btn-fill {
        width: auto;
    }
}
.sub-accor {
    margin-top: -12px;
}
.menu_mainform {
    display: none;
}
.ci-accor .panel, .ci-accor .panel-group {
    margin-bottom: 0px;
}
.step-indicator-horizontal li::before {
    top: 16px;
}
#menu_mainform {
    height: 0px;
}
.dot {
    height: 12px;
    width: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
}
@media(min-width:992px) {
    .who-apply {
        float: right;
    }
}

/*************** LTD Table (START) ***************/
.ltd-categ{
    text-align: right;
    background-color: var(--white);
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #F1F7F8;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
    border-top: none;
}
.table>thead>tr>th{
    border-bottom: none;
}
.table-striped td, th.sticky-pos{
    padding: 20px!important;
}
.plus-tab {
    background: #F5F5F5 url(/uploads/00001308/protect-plus-icon.svg) no-repeat 20px 50%!important;
    border-radius: 20px 20px 0 0;
}
.six-month-tab {
    background: #F5F5F5 url(/uploads/00001308/protect-six-month-icon.svg) no-repeat 20px 50%!important;
    border-radius: 20px 20px 0 0;
}
.two-year-tab {
    background: #F5F5F5 url(/uploads/00001308/protect-two-year-icon.svg) no-repeat 20px 50%!important;
    border-radius: 20px 20px 0 0;
}
.comp-prod-tab {
    color: var(--primary-color);
    padding: 22px 20px 20px 80px!important;
    background-size: 50px 50px!important;
    font-size: 18px;
    vertical-align: middle!important;
    line-height: 23px!important;
}
.table-responsive th{
    white-space: normal!important;
}
.table-striped{
    border: none;
    border-collapse: separate;
    border-spacing: 10px 10px;
}
.pro-payment{
    font-size: 24px;
    font-weight: 600;
}
th.sticky-pos{
    max-width: 150px;
    white-space: normal!important;
    text-align: right;
    padding: 20px!important;
    position: sticky;
    left: 0;
    background-color: var(--white);
    z-index: 3;
}
@media screen and (max-width: 767px){
    .table-responsive {
        border: none;
    }
}

/*************** LTD Landing Cards (START) ***************/
.card-prod-tab{
    color: var(--white);
    font-weight: 700;
    min-height: 80px;
    margin-top: 8px;
}
.card-prod-tab img{
    margin-top: -8px;
}
.plus-row h4, .six-mo-row h4, .two-yr-row h4{
    padding: 20px 0px 20px 0px;
}
@media(max-width:767px){
    .hide-br{
        display: none;
    }
    .crossSell{
        margin-bottom: 50px;
    }
    .plus-row h4, .six-mo-row h4, .two-yr-row h4{
        padding: 26px 0px 20px 0px;
    }
    .jumbotron .crossSell, .productRow  .crossSell{
        margin-bottom: 20px;
    }
}
.plus-row, .six-mo-row, .two-yr-row{
    padding: 0;
    border-radius: 20px 20px 0 0;
    background: #0082ba;
    color: var(--white);
}
@media(min-width:768px){
    #trLTDEnrollCard .payment-amt{
        margin-top: 54px;
    }
}
.blue-row{
    background-color: #f1f7f8;
    /*margin: 12px 0 0 0;*/
    padding: 10px 0;
}
.blue-row h2{
    margin: 0;
    padding: 20px 0 10px 0;
    color: #012d73;
}
.bene-row{
    padding: 0 10px 6px 10px;
    background: #f1f7f8;
}
.bene-row p{
    font-size: 18px;
    line-height: 26px!important;
}
.elim-row{
    margin: 0;
    background: #f1f7f8;
}
.elim-row label{
    font-size: 14px;
    font-weight: 400;
    margin-top: 0px;
}
.ltd-card-row{
    background: #f1f7f8;
    border-radius: 0 0 20px 20px;
}
@media(min-width:768px) and (max-width: 991px){
    .ltd-card-img{
        width: 100%;
        margin: 6px 0 6px 0
    }
}
@media(min-width:1199px){
    .row-eq-height{
        margin: 0 80px;  
    } 
}
@media(min-width:600px) and (max-width: 767px){
    .row-eq-height{
        margin: 0 100px;
    }
}
.blue-row.elim-row .spacer{
    margin-top: -4px;
}
.crossSell .btn-primary{
    padding-left: 40px;
    padding-right: 40px;
}
.max-cov{
    font-size: 16px;
}
.ltd-table{
    margin-top: 80px;
}
.ltd-cards .text-center h3{
    font-weight: 400;
}

/*************** Ajax (START) ***************/
.h2 .substituteLTDCoverageMarketing,
.h3 .substituteCIMemberCoverageMarketing,
.ajaxRateResponse_614306 {
    font-weight: 700!important;
}
.ajaxRateResponse_615303,
.ajaxRateResponse_615307,
.ajaxRateResponse_615306,
.ajaxRateResponse_620190,
.ajaxRateResponse_615304{
    font-weight: 600;
}

/*************** Accordion ***************/
.btn[disabled] {
    opacity: .7;
}
.accordion-button:not(.collapsed){
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem var(--focus-color) !important;
}

/*************** Tri Agency ***************/
@font-face {
    font-family: 'calibri-regular';
    src: url('/uploads/00001203/fonts/calibri-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'calibri-bold';
    src: url('/uploads/00001203/fonts/calibri-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.triAgency p, .triAgency li {
    font-size: 14pt !important;
    font-family: 'calibri-regular', sans-serif !important;
}
.triAgency strong {
    font-family: 'calibri-bold', sans-serif !important;
}
.triAgency p, .triAgency ul {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.triAgency a {
    color: #000 !important;
    font-family: 'calibri-bold', sans-serif !important;
    text-decoration: none !important;
}
