/* 

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


USAG COLORS:

Red         #D3383A
Blue        #395B85
Light Blue  #6588A8
Gray        #323232
Light Gray  #F2F2F2

*/

:root {
    /* Colors*/
    --white: #fff;
    --black: #333;
    --red: #EB0000;
    --primary-color: #377996;
    --secondary-color: #E3A750;
    --tertiary-color: #303131;
    --background-gray: #F2F2F2;
    --focus-color: #005fcc;
}

/*************** Font Styles ***************/
body {
	font-family: 'Montserrat', sans-serif;
	color: var(--black);
	-webkit-font-smoothing: antialiased;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.5em;
	font-family: 'Montserrat', sans-serif;
}
p, .p, li, td {
	font-size: 16px;
	line-height: 1.3;
	font-family: 'Montserrat', serif;
	color: var(--black);
	font-weight: 500;
}
h1, .h1 {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
}
h2, .h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
}
h3, .h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--black);
}
h4, .h4 {
    text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
}
h5, .h5 {
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
}
strong {
    font-weight: 700;
}
.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 (max-width: 980px) {
    p, .p, li, td {
    	font-size: 14px;
    }
    h1, .h1 {
    	font-size: 20px;
    }
    h2, .h2 {
    	font-size: 18px;
    }
    h3, .h3 {
    	font-size: 18px;
    }
    h4, .h4 {
    	font-size: 16px;
    }
    h5, .h5 {
    	font-size: 16px;
    }
}

/*************** Padding ***************/
.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 ***************/
.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 ***************/
.white {
	color: var(--white) !important;
}
.black {
	color: var(--black) !important;
}
.blue {
	color: var(--primary-color) !important;
}
.red {
	color: var(--red) !important;
}
.orange {
    color: #ae5a1d !important;
}
.gray {
    color: #707070 !important;
}
.grayBackground {
    background: var(--background-gray) !important;
}

/*************** Nav Bar ***************/
.navbar {
    padding-left: 12px;
    padding-right: 12px;
    min-height: 100px;
    background-color: var(--tertiary-color);
}
@media (max-width: 350px) {
    #topNavTLText h5 {
        font-size: 14px;
    }
    #topNavHIPText h5 {
        font-size: 14px;
    }
}

/*************** Logo ***************/
.land-logo {
    width: 233px;
}
@media(max-width: 767px) {
    .land-logo, .enroll-logo {
        width: 200px;
    }
}

/*************** Footer ***************/
.footer {
    display: block;
    background: var(--tertiary-color);
    padding: 24px 0;
}
.footer p {
    color:var(--white);
}
.addfooter {
    background:#F5F5F5;
    padding: 0;
}
.addfooter .container {
    margin-top: 12px
}
.footerNav li > a:hover {
    background-color: var(--secondary-color);
}
.footerNav li {
    padding: 0;
}
@media (max-width: 991px) {
    .footer p, .footerNav li {
        text-align: center;
    }
}
.footer .nav a {
    color: var(--white);
}

/*************** Jumbotron ***************/
.jumbotron {
    margin-bottom: 0;
    min-height: 400px;
}
.landing-home-image, .landing-tl-image, .landing-add-image, .landing-ltd-image {
    background-color:#e4ecee;
}
.thank-you-banner-image {
    background-color:#eaf0f0;
}
.landing-home-image {
    background-position: 50% 22%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #e8f0f2;
    background-image:url(../../uploads/00001328/SBOT_combo_page_3450x1367.jpg);
}
.landing-tl-image {
    background-position: -300% 0%;
    background-size: 102%;
    background-repeat: no-repeat;
    background-color: #e8f0f2;
    background-image:url(../../uploads/00001328/term_life_jumbotron.jpg);
}
.landing-add-image {
    background-position: 143% 0%;
    background-size: 86%;
    background-repeat: no-repeat;
    background-color: #e8f0f2;
    background-image:url(../../uploads/00001328/ad&d_jumbotron.jpg);
}
.landing-ltd-image {
    background-position: 166% 0%;
    background-size: 90%;
    background-repeat: no-repeat;
    background-color: #e8f0f2;
    background-image:url(../../uploads/00001328/ltd_jumbotron.png);
}
.thank-you-banner-image {
    background-position: 50% 22%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #e8f0f2;
    background-image:url(../../uploads/00001328/SBOT_combo_page_3450x1367.jpg);
}
@media (max-width: 1199px) {
    .landing-home-image {
        min-height: 300px;
    }    
    .landing-tl-image, .landing-add-image, .landing-ltd-image, .thank-you-banner-image {
        background-image: none;
    }
}
@media (max-width: 767px) {
    .landing-home-image, .thank-you-banner-image {
        display: none;
    }
}

/*************** Product Cards ***************/
.prod-cards {
    margin-top: -100px;
}
.prod-card-box {
    padding: 20px 16px;
    background-color: var(--white) !important;
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 12%);
    transition: all 0.2s;
    border-radius: 10px;
    text-align: center;
    position: relative;
    height: 200px;
}
.prod-card-box:hover {
    transform: scale(1.02) perspective(1px); 
    background-color: var(--white);
}
.prod-card-box-link {
    text-decoration: none;
}
.prod-card-box-link:hover {
    text-decoration: none;
}
.prod-card-box h4, .prod-card-box .prod-card-link {
    color: var(--primary-color);
}
.prod-card-subtext {
    font-size: 12px;
}
.prod-card-box .prod-card-link {
    position: absolute;
    bottom: 0%;
    left: 33%;
}
@media(max-width: 1199px){
    .prod-card-box {
        height: 250px;
    }
    .prod-card-box .prod-card-link {
        left: 30%;
    }    
}
@media(max-width: 991px){
    .prod-card-box {
        height: 180px;
    }
    .prod-card-box .prod-card-link {
        left: 33%;
    }    
}
@media(max-width: 767px) {
    .prod-cards {
        margin-top: 50px;
    }    
    .prod-card-box {
        height: 160px;
    }    
    .prod-card-box .prod-card-link {
        left: 39%;
    }    
}

/*************** Marketing Cards **************/
.marketing-card {
    padding: 24px;
    margin: 24px;
    border-radius: 0% 0% 50% 50%;
    width: 280px;
    height: 280px; 
    border: 4px solid var(--secondary-color);
    text-align: center;
}
@media (max-width: 991px) {
    .marketing-card {
        width: 240px;
        height: 240px;
    }
}

/*************** Calculator ***************/
.calculator-div {
    background: var(--white);
    padding: 24px 24px 24px 24px;
    margin: 24px 80px 24px 80px;
}

/*************** Section ***************/
.sectionName {
    border-top: 8px solid var(--primary-color);
    padding-top: 10px;
    display: inline-block;
    padding-right: 10px;
}
.sectionNameDisabled {
    border-top: 8px solid #707070;
    padding-top: 10px;
    display: inline-block;
    padding-right: 10px;
}
.sectionHeading {
    margin-top: 48px;
    border-bottom: 3px solid #ccc;
    padding-bottom: 6px;
}

/*************** 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(--primary-color) !important;
	font-weight: 500;
	background: var(--primary-color) !important;
}
.btn-primary:hover, .btn-primary.active:hover {
	transform: scale(1.05) perspective(1px);
	background: var(--primary-color);
}
.btn:focus, .btn:focus-visible {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--focus-color) !important;
}
.btn[disabled] {
    opacity: .7;
}
.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;
    }
}
.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;
    }
}

/*************** Footnote ***************/
.footnote {
	font-size: 13px;
}
.footnoteSmall{
    font-size: 11px;
}

/*************** Step Indicator ***************/
.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;
    font-size: 13px !important;
}
.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: 14px;
    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 ***************/
.card {
    position: relative;
    margin-bottom: 30px;
}
.card-box {
    padding: 16px;
    background: var(--white);
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 12%);
    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;*/
/*}*/

/*************** Payment ***************/
.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;
}

/*************** Health ***************/
.healthRow {
    border-bottom: 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 ***************/
.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;
}
.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;
}
.calculator-div .textbox input[type="text"] {
    text-align: center !important;
}
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: 500;
    width: auto;
    margin-right: 1em;
    border-radius: 100px;
}
input:checked + label::before {
    content: '';
    background: url('/uploads/00001328/radio_select_bg.png') center no-repeat;
    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);
    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;
}
.answer {
    margin-bottom: 0;
}
.memberGender .answer {
   float: right;
}

/*************** Add Button ***************/
.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 ***************/
.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;
}

/*************** Overriding Affinium Styles ***************/
#footer, .view-navigation.view-actions, #rightColumn, .ctlPanelButton, #menu_mainform{
	display:none !important;
}
input {
    width: 100%;
}
.warning { 
    display: none;
    color: var(--red);
    font-size: 15px;
    font-weight: 600;
}
.require {
    display: none;
    /* lose the asterix by mandatory*/
}

/*************** UI ***************/
.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 #CA8621;
    background: var(--secondary-color);
    margin-top: -10px;
}
.ui-widget-content {
    border: 2px solid #ccc;
    background: #eeeeee; 
    color: var(--black);
    height: 2px;
    margin-top: 8px;
    margin-bottom: 24px;
}

/*************** Slider ***************/
.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);
}

/*************** Errors ***************/
.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%;
    color: var(--red);
    z-index: 10;
}
.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;
}

/*************** Radio Button ***************/
.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 ***************/
.yesNoDiv .productField {
    min-height: 32px;
}
.yesNoBtn .active span {
    background: url('../../uploads/00001328/radio_select_bg.png');
    background-size: 36px 36px;
    background-repeat: no-repeat;
}
.yesNoBtn span span span, .yesNoBtn .active span span {
    background: none;
}
.yesNoBtn span span {
    padding: 4px 8px 10px 22px;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    background: url('../../uploads/00001328/radio_bg.png');
    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 ***************/
.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 #707070;
}

/*************** Tooltip***************/
.iconTooltip {
    min-width: 300px;
    color: var(--primary-color);
}

/*************** Thank You ***************/
.thank-you-list li::marker {
    font-size: 20px;
    color: var(--secondary-color);
}
.thank-you-box {
    background: #f1f7f8;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}

/*************** Accordion ***************/
.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;
}

/*************** Font Awesome ***************/
.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;
}


