/* 

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: #000;
    --primary-color: #1D2A4C;
    --secondary-color: #3575B1;
    --tertiary-color: #F0A400;
    --interactive-color: #0066FF;
    --disabled-color: #757575;
    --error-color: #B30300;
    --focus-color: #005fcc;
}

/*************** Font Styles ***************/
body {
	font-family: 'Montserrat', sans-serif;
	color: var(--black);
	line-height: 1.5em;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', serif;
	color: var(--primary-color);
}
p, li, td {
	font-family: 'Montserrat', sans-serif;
	color: var(--primary-color);
	font-weight: 500;
}
em {
    font-weight: 600;
}
th {
    font-weight: 600;
}
caption {
	color: var(--primary-color);
	font-weight: 600;
}
strong {
    font-weight: 600;
}
.serif {
	font-family:'Montserrat', serif;
}
.sansSerif {
	font-family:'Montserrat', sans-serif;
	font-weight: 500;
}
.noBold {
    font-weight: 400 !important;
}
.smBold {
	font-weight: 500 !important;
}
.mdBold {
	font-weight: 600 !important;
}
.bold {
	font-weight: 700 !important;
}

/*************** 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;
}

/*************** Clear Fix ***************/
.clearfix {
	clear: both;
}
.clearfixMobile {
    clear: both;
}
@media (min-width: 980px) {
    .clearfixMobile {
        clear: none;
    }
}
.noWrap {
    white-space: nowrap;
}

/*************** Button ***************/
.btn.btn-primary {
    padding: 12px 20px 12px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2em;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transition: all 0.2s;
}
.btn.btn-primary span {
    font-size: 20px;
    padding-left: 4px;
    margin-right: 0;
}
.btn.btn-primary:hover {
    transform: scale(1.05) perspective(1px);
    background-color: var(--primary-color);
    color: var(--white);
}
.btn.btn-primary.disabled, .btn.btn-primary:disabled, fieldset:disabled .btn.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.btn.btn-primary:focus, .btn.btn-primary:focus-visible {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--focus-color);
    outline-offset: 3px !important;
}
.btn.btn-secondary {
    padding: 12px 20px 12px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2em;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white);
    transition: all 0.2s;
}
.btn.btn-secondary:hover {
    transform: scale(1.05) perspective(1px);
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn.btn-secondary.disabled, .btn.btn-secondary:disabled, fieldset:disabled .btn.btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.btn.btn-secondary:focus, .btn.btn-secondary:focus-visible {
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem var(--focus-color);
}
@media(max-width: 575px) {
    .btn.btn-primary, .btn.btn-secondary {
        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;
    }
}

/*************** Jumbotron ***************/
.jumbotron-main,
.jumbotron-tl,
.jumbotron-ltd, 
.jumbotron-add,
.jumbotron-thanks {
    min-height: 500px;
    background-repeat: no-repeat;
    background-color: aliceblue;
}
.jumbotron-main {
    background-position: 50% 0%;
    background-size: 100%;
    background-image:url(../../uploads/00001345/ait_landing_main.jpg);
}
.jumbotron-tl {
    background-position: 100% 50%;
    background-size: 75%;
    background-image: url(../../uploads/00001345/ait_landing_tl.jpg);
}
.jumbotron-ltd {
    background-position: 100% 0%;
    background-size: 75%;
    background-image:url(../../uploads/00001345/ait_landing_ltd.jpg);
}
.jumbotron-add {
    background-position: 100% 50%;
    background-size: 75%;
    background-image:url(../../uploads/00001345/ait_landing_add.jpg);
}
.jumbotron-thanks {
    background-position: 100% 0%;
    background-size: 75%;
    background-image:url(../../uploads/00001345/ait_thanks_ltd.jpg);
}
@media (max-width: 1399px) {
    .jumbotron-main,
    .jumbotron-tl,
    .jumbotron-ltd, 
    .jumbotron-add,
    .jumbotron-thanks {
        min-height: 400px;
    }
}
@media (max-width: 1199px) {
    .jumbotron-main,
    .jumbotron-tl,
    .jumbotron-ltd, 
    .jumbotron-add,
    .jumbotron-thanks {
        min-height: 300px;
    }
}
@media (max-width: 991px) { /* This is when product cards become column */
    .jumbotron-main,
    .jumbotron-tl,
    .jumbotron-ltd, 
    .jumbotron-add,
    .jumbotron-thanks {
        background-image: none;
    }
}

/*************** Landing Pages ***************/
.landing-page {
    font-family: 'Montserrat', sans-serif;
}
.landing-page h1 {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
}
.landing-page h4 {
	font-size: 23px;
	font-weight: 500;
	color: var(--primary-color);
}
.landing-page p {
    font-size: 18px;
	color: var(--primary-color);
    line-height: 1.5em;
}
.landing-page a {
    color: var(--primary-color);
}

/************** Calculator **************/
.calculator h5,
.calculator h6,
.calculator h3 {
    font-weight: 700;
}
.calculator .spacer {
    text-align: center;
}
.calculator .yesNoBtn span span {
    font-weight: 700;
}
.calculator input[type="text"], .calculator input[type="password"], .calculator select {
    text-align: center !important;
}

/*************** Nav Bar ***************/
.navbar {
    min-height: 100px;
    background: linear-gradient(110deg, var(--white) 20%, var(--primary-color) 20%);
}
.navbar-brand {
    width: 50%;
}
.navbar-logo {
    width: 30%;
    padding-left: 5%;
}
.navbar-text {
    padding: 0 30px 0 0 !important;
}
.navbar-text h5, .navbar-text h6, .navbar-text p, .navbar-text a {
    text-align: right;
    color: var(--white) !important;
    margin: 0;
}
.navbar-text h5 {
    font-size: 1.4rem;
    font-weight: 700;
}
.navbar-text h6 {
    font-size: 1.4rem;
    font-weight: 700;
}
.navbar-text p, .navbar-text a {
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 1199px) {
    .navbar-text h5 {
        font-size: 1.3rem;
    }
    .navbar-text h6 {
        font-size: 1.3rem;
    }    
    .navbar-text p, .navbar-text a {
        font-size: 13px;
    }
}
@media (max-width: 991px) {
    .navbar-text h5 {
        font-size: 1.2rem;
    }
    .navbar-text h6 {
        font-size: 1.2rem;
    }   
    .navbar-text p, .navbar-text a {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .navbar-text h5 {
        font-size: 1.1rem;
    }
    .navbar-text h6 {
        font-size: 1.0rem;
    }    
    .navbar-text p, .navbar-text a {
        font-size: 11px;
    }
}
@media (max-width: 575px) {
    .navbar {
        background: linear-gradient(110deg, var(--white) 50%, var(--primary-color) 50%);
    }
    .navbar-logo {
        width: 70%;
    }
    .navbar-text h5 {
        font-size: 1.0rem;
    }
    .navbar-text h6 {
        font-size: 0.7rem;
    }    
    .navbar-text p, .navbar-text a {
        font-size: 10px;
    }
}

/*************** Main Content ***************/
.container {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

/*************** 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;
}
.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 ***************/
.card-box {
    padding: 30px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 12%);
}
.card-box-inverted {
    padding: 24px;
    background: var(--primary-color);
    border-radius: 16px;
}
.card-box-inverted h1,
.card-box-inverted h2, 
.card-box-inverted h3, 
.card-box-inverted h4, 
.card-box-inverted h5, 
.card-box-inverted h6, 
.card-box-inverted p, 
.card-box-inverted a, 
.card-box-inverted label, 
.card-box-inverted .displayNumber,
.card-box-inverted .slider_limits, 
.card-box-inverted .spacer, 
.card-box-inverted .yesNoBtn span span {
    color: var(--white);
}
.card-box a, .card-box-inverted a {
    text-decoration: none;
}
.card-box .displayNumber, .card-box-inverted .displayNumber {
    font-size: 2rem;
    font-weight: 700;
}
@media(max-width: 575px) {
    .card-box .displayNumber, .card-box-inverted .displayNumber {
        font-size: 1.5rem;
    }
}

/*************** Coverage Card ***************/
@media(max-width: 991px) {
    .coverage-card-box h4,  .coverage-card-box .displayNumber {
        font-size: 18px;
    }
    .coverage-card-box p {
        font-size: 16px;
    }    
}
@media(max-width: 767px) {
    .coverage-card-box h4,  .coverage-card-box .displayNumber {
        font-size: 16px;
    }
    .coverage-card-box p{
        font-size: 14px;
    }    
}
@media(max-width: 575px) {
    .coverage-card-box h4,  .coverage-card-box .displayNumber {
        font-size: 14px;
    }
    .coverage-card-box p {
        font-size: 12px;
    }    
}

/*************** Payment Card ***************/
.payment-card-box h4 {
    font-weight: 600;
}
.payment-card-box h5 {
    margin: 0;
    padding: 0;
    text-align: right;
}
.payment-card-box p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-align: left;
}
@media (max-width: 992px) {
    .payment-card-box h5 {
        text-align: center;
    }
    .payment-card-box p {
        text-align: center;
    }
}

/*************** Product Cards ***************/
.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-inverted {
    padding: 16px 16px 16px 16px;
    background-color: var(--primary-color);
    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-inverted:hover {
    transform: scale(1.02) perspective(1px); 
    background-color: var(--primary-color);
}
.prod-card-box h3,
.prod-card-box-inverted h3,
.prod-card-box h4,
.prod-card-box-inverted h4 {
    font-weight: 700;
} 
.prod-card-box p,
.prod-card-box-inverted p {
    font-weight: 500;
}
.prod-card-box h5, 
.prod-card-box p, 
.prod-card-box .prod-card-apply-link {
    color: var(--primary-color);
}
.prod-card-box-inverted h5, 
.prod-card-box-inverted p, 
.prod-card-box-inverted .prod-card-apply-link {
    color: var(--white);
}
.prod-card-box .prod-card-apply-link,
.prod-card-box-inverted .prod-card-apply-link {
    position: absolute;
    bottom: 0%;
    left: 33%;
}
.prod-card-box,
.prod-card-box-inverted {
    height: 220px;
    width: 100%;
}
@media(max-width: 1199px){
    .prod-card-box,
    .prod-card-box-inverted {
        height: 260px;
    }
}
@media(max-width: 991px){
    .prod-card-box,
    .prod-card-box-inverted {
        height: 220px;
    }
}
@media(max-width: 767px){
    .prod-card-box,
    .prod-card-box-inverted {
        height: 200px;
    }
}
@media(max-width: 575px){
    .prod-card-box,
    .prod-card-box-inverted {
        height: 300px;
    }
}


/*************** Health Page ***************/
.healthRow {
    border-top: 1px solid #ccc;
    padding: 24px 0 24px 0;
}
.healthAnswers p {
    text-align: right;
    margin: 0;
    padding-top: 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
@media(max-width: 767px) {
    .healthQuestions p, .healthQuestions li {
        font-size: 14px;
    }
}

/*************** Fields ***************/
.require {  /* Override automatic asterisk */
    display: none;
}
.warning { /* Override automatic warning messages */
    display: none;
    color: var(--error-color);
    font-size: 15px;
    font-weight: 600;
}
label, .spacer {
    color: var(--black);
    font-weight: 600;
    font-size: 15px;
    margin-top: 6px;
    margin-bottom: 6px;
}
@media (max-width: 1430px) {
    label, .spacer {
        font-size: 13px;
    }
}
@media (max-width: 1240px) {
    label, .spacer {
        font-size: 11px;
    }
}
@media (max-width: 915px) {
    label, .spacer {
        font-size: 11px;
    }
    .childForm {
        flex-direction: column;
    }
}
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.inerror {
    border-color: var(--red);
}

/*************** Overriding Affinium Styles ***************/
#footer, .view-navigation.view-actions, #rightColumn, .ctlPanelButton {
    display: none !important;
}
input {
    width: 100%;
}

/*************** 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 {
    border-radius: 15px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    background: var(--secondary-color);
    margin-top: -10px;
}
.ui-widget :active, .ui-widget :focus {
    background: var(--secondary-color);
}
.ui-widget-content {
    border: 2px solid #949494;
    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 .sliderprompt {
    display: none;
}
.sliderlabel .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);
}
@media (max-width: 575px) {
    .slider_limits {
        font-size: 80%;
    }
}

/*************** Footer ***************/
.footer {
    display: block;
    background: var(--primary-color);
    padding: 24px 0;
}
.footer li > a:hover, .footer li > a:focus {
    background-color: var(--white);
    color: var(--primary-color);
}
.footer li {
    padding: 0;
}
.footer .nav a, .footer p {
    color: var(--white);
}
.footer .nav a {
    text-align: center;
}

/*************** List ***************/
.list-unindented,
.module > ul,
.component ul,
.rte ul,
.rte ol,
.module > ol,
.component ol {
    margin-left: 0;
    padding-left: 15px;
    -webkit-padding-start: 20px;
}

/*************** Alerts/Errors ***************/
.alert {
    text-align: center;
}
.alert p {
    font-weight: 500;
    margin: 0;
}
.alert a {
    color: var(--black);
    text-decoration: underline;
}

/*************** Section ***************/
.sectionHeader {
    border-top: 8px solid var(--primary-color);
    display: inline-block;
    padding-top: 18px;
    width: 100%;
}
.sectionHeader h1, .sectionHeader h2 {
    font-weight: 700;
	font-size: 28px;
	margin-bottom: 36px;
}
.sectionHeaderDisabled {
    border-top: 8px solid var(--disabled-color);
    display: inline-block;
    padding-top: 18px;
    width: 100%;
}
.sectionHeaderDisabled h1, .sectionHeaderDisabled h2 {
    color: var(--disabled-color);
    font-weight: 700;
	font-size: 28px;
}
.sectionHeaderDisabled p {
    color: var(--disabled-color);
}
@media (max-width: 767px) {
    .sectionHeader h1, .sectionHeader h2 {
    	font-size: 24px;
    }
}
@media (max-width: 575px) {
    .sectionHeader h1, .sectionHeader h2 {
    	font-size: 20px;
    }
}

/*************** Radio Button ***************/
input[type="radio"] {
    position: absolute;
    left: -99999px;
}
input[type="radio"] + label::before, input[type="buttonState"] + 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;
}
@media (max-width: 575px) {
    input[type="radio"] + label::before, input[type="buttonState"] + label span::before {
        content: '';
        display: inline-block;
        position: relative;
        min-width: 30px;
        min-height: 30px;
        margin-right: .5em;
        border: 2px solid #ccc;
        border-radius: 200px;
    }
}
input[type="radio"] + label, input[type="buttonState"] + 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: '';
    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;
}
@media (max-width: 575px) {
    input:checked + label::before {
        content: '';
        text-align: center;
        line-height: 34px;
        color: var(--white);
        display: inline-block;
        width: 30px;
        height: 30px;
        background-color: var(--primary-color);
        border-radius: 25px;
        cursor: pointer;
        vertical-align: middle;
        border: none;
    }    
}

/*************** Radio Block ***************/
.radioBlock {
    padding-top: 2px;
}
.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;
}
.productField { /* Used for horizontal radio buttons */
    display: flex;
}

/*************** YesNo Button ***************/
.yesNoBtn span span span, .yesNoBtn .active span span {
    background: none;
}
.yesNoBtn .elementcaption {
    display: none;
}
.yesNoBtn span span {
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    background-size: 36px 36px;
    background-repeat: no-repeat;
}
@media (max-width: 575px) {
    .yesNoBtn span span {
        font-size: 13px !important;
    }
}
/*************** Rule ***************/
.ruleBelow {
    border-bottom: 1px solid var(--primary-color);
}
.ruleLeft {
    border-left: 1px solid var(--primary-color);
}
.ruleRight {
    border-right: 1px solid var(--primary-color);
}
.ruleNone {
    border: none;
}
.ruleAbove {
    border-top: 1px solid var(--primary-color);
}

/*************** Tooltip ***************/
.tooltip {
    min-width: 300px;
}
.iconTooltip {
    color: var(--primary-color);
    font-size: 1rem;
}
.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;
}
.tooltip-inner {
    text-align: left !important;
}
.tooltip-inner li {
    color: white !important;
    font-size: .8rem;
}

/*************** Accordion ***************/
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem var(--focus-color) !important;
}

/*************** Mobile ***************/
.hideMobile {
    display: none;   
}
.showMobile {
    display: inline-block;
}


