/* 

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;
    --primary-color: #1A2A4F;
    --secondary-color: #D52D33;
    --tertiary-color: #2455AF;
    --font-inverted-color: #F4F5F6;
    --disabled-color: #A7A7A7;
    --error-color: #E60000;
    --focus-color: #005fcc;
}

/*************** Content ***************/
.mainContent {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 0;
}

/*************** Font Styles ***************/
body {
	font-family: 'Lato', sans-serif;
	color: var(--black);
	-webkit-font-smoothing: antialiased;
}
.h1, .h2, .h3, h1, h2, h3 {
	font-family: 'Poppins', sans-serif;
}
h1, .h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
}
h2, .h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary-color);
}
h3, .h3 {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--primary-color);
}
p, .p, li, td {
	font-size: 1rem;
	font-weight: 500;
	color: var(--black);
}
a {
    font-weight: 600;
}
th {
    font-weight: 600;
}
caption {
	color: var(--primary-color);
	font-weight: 600px;
}
.noBold {
	font-weight: 500 !important;
}
.mdBold {
	font-weight: 600 !important;
}
.bold {
	font-weight: 700 !important;
}
@media (max-width: 767px) {
    h1, .h1 {
    	font-size: 1.2rem;
    }
    h2, .h2 {
    	font-size: 1rem;
    }
    h3, .h3 {
    	font-size: 1rem;
    }    
}

/*************** 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;
}
.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;
}

/*************** 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;
    }
}
.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 {
    padding: 3% 15% 3% 15%;
    min-height: 700px;
    background-color: var(--tertiary-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;
    }
}

/************** Info Cards **************/
.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);*/
    }
}

/*************** 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;
}

/*************** Nav Bar ***************/
.navbar {
    max-height: 100px;
    background-color: var(--white);
    padding: 0px 20px 0px 20px;
}
@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 ***************/
.land-logo {
    width: 25%;
}
@media (max-width: 991px) {
    .land-logo {
        width: 50%;
    }
}
@media (max-width: 565px) {
    .land-logo {
        width: 100%;
    }
}

/*************** Stepper ***************/
.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-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);
    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 ***************/
.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 {
    height: 200px;
    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%;
    left: 35%;
}
@media(max-width: 1200px){
    .prod-card-box {
        height: 240px;
    }
    .prod-card-box .card-enroll {
        left: 32%;
    }    
}
@media (max-width: 991px) {
    .prod-card-box {
        height: 220px;
    }
    .prod-card-box .card-enroll {
        left: 35%;
    }    
}
@media (max-width: 350px) {
    .prod-card-box {
        height: 220px;
    }
    .prod-card-box .card-enroll {
        left: 28%;
    }    
}

/*************** 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;
}
@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;
}
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: 18px 18px;
    text-align: center;
    line-height: 34px;
    color: var(--white);
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--tertiary-color) !important;
    border-radius: 25px;
    cursor: pointer;
    vertical-align: middle;
    border: none;
}
input.inerror {
    border-color: var(--error-color);
}
.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;
}
.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;
}
.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;
}
.yesNoDiv .productField {
    min-height: 32px;
}
.yesNoBtn span span span, .yesNoBtn .active span span {
    background: none;
}
.yesNoBtn .elementcaption {
    display: none;
}
.addBasicEnroll span span, .addOptionalEnroll span span {
    padding-left: 45px;
}
.stackedRadio .productField {
    display: block;
}

/*************** 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 (START) ***************/
#footer, .view-navigation.view-actions, #rightColumn, .ctlPanelButton {
    display:none !important;
}
input {
    width:100%;
}
.warning { 
    display: none;
    color: var(--error-color);
    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 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;
}

/*************** 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);
}

/*************** Footer ***************/
.footer {
    display: block;
    background: var(--primary-color);
    padding: 24px 0;
}
.ot-sdk-show-setting{
    display: block;
    color: var(--primary-color);
}
.footerNav li {
    padding: 0;
}
.footer .nav a, .footer p,
.ot-sdk-show-settings{
    color: var(--font-inverted-color)!important;
}
@media (max-width: 991px) {
    .footer p, .footerNav li {
        text-align: center;
    }
}
.footerNav li > a:hover,
.ot-sdk-show-settings:hover{
    background-color: var(--font-inverted-color);
    color: var(--primary-color)!important;
}

/*************** 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%;
    z-index: 10;
    color: var(--error-color);
}
.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;
}

/*************** Section ***************/
.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;
}

/*************** 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 var(--disabled-color);
}

/*************** 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;
}

/*************** 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;
}

/*************** Mobile ***************/
.hideMobile {
    display: none;   
}
.showMobile {
    display: inline-block;
}

/*************** 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;
}
