/* custom styles */

:root { /* these can be overwritten by evaluations */
    --primary: #0066CC;
    --primary-accent: #175CD3;
    --primary-dark: #002D73;
    --widget-border-size:0.15em;
}

/* hide the asterisk for required, and replace it with a bold capxftion */
.require, .answer br{
    display:none;
}

.sliderlabel{
    display:none;
}

.pill{
    background: #d8d8d8;
    padding: 5px 15px 5px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
}


.mandatory .elementcaption{
    
}

/* set the colours for warning text, in-error and valid controls */
.warning{
    color:#8f0000;
    font-size:0.9em;
}
.form-control.inerror{
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat:no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.form-select.inerror{
    border-color: #dc3545;
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat:no-repeat;
    background-position: right .75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
}
.form-control.valid{
    /* border-color: #198754;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem); */
}
.form-select.valid{
    /* border-color: #198754;
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat:no-repeat;
    background-position: right .75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem); */
}
.optional .form-control.valid{
    /* background-image:none;
    border-color:rgb(222, 226, 230); */
}

.form-control, .form-select {
  border: 2px solid #7F8489 !important; /* Adjusted for 3:1 ratio */
  padding: 5px;
  border-radius: 0.375rem;
}

.form-control:hover, .form-select:hover {
  border-color: #7F8489; /* Slightly lighter for hover */
}

/* Focus styles remain the same as specified */
.form-select:focus {
  border: 2px solid #005fcc !important;
  padding: 5px;
  border-radius: 0.375rem;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}


/* style radio buttons */
input[type="radio"] { /* hides the real control, the label is clickable */
    position: absolute;
    left: -99999px;
}

.productField input[type="radio"] + label {
    border: 2px solid transparent;
    padding: 5px;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.productField { /* allows answers to float side by side */
    float: left;
    display: flex;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
}

input[type="radio"] + label::before,
input[type="checkbox"] + label::before { /* draws a grey circle for unselected radio*/
    content: '';
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: .5em;
    border: 2px solid #7F8489;
    border-radius: 50%;
    vertical-align: middle;
    
/* Longform Button */
.btn-primary.longform {
    padding: 16px 32px;
    border-radius: 100px;
    background-color: #007DC3; 
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.25px;
    width: auto;
    min-width: 250px;
    margin-top: 25px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-primary.longform {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .btn-primary.longform {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 180px;
    }
}

@media (max-width: 320px) {
    .btn-primary.longform {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 160px;
    }
}

.btn-primary.longform::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-primary.longform:hover::before {
    left: 100%;
}

.btn-primary.longform:hover {
    background-color: #0066CC;
    transform: scale(1.05);
}

.btn-primary.longform:focus::before, 
.btn-primary.longform:active::before {
    left: -100%;
}

.btn-primary.longform:focus, 
.btn-primary.longform:active {
    background-color: #0066CC;
    transform: scale(1);
}

.btn-primary.longform:active {
    background-color: #005BB5;
}

.btn-primary.longform.disabled {
    background-color: #80B3E5 !important;
    cursor: not-allowed;
}

/* Enhanced focus state for ADA compliance */
.btn-primary.longform:focus {
    outline: 3px solid #0056b3 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.5) !important;
    transition: outline-offset 0.1s ease;
}
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

input:checked + label::before { /* puts a tick in the selected item */
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve"><style type="text/css">.st0{fill:%23FFFFFF;}</style><g><path class="st0" d="M16.8,2.5l-9.3,9.3L3.2,7.6C3,7.3,2.6,7.3,2.3,7.6L0.2,9.7c-0.2,0.2-0.2,0.6,0,0.9l4.3,4.3L7,17.5 c0.2,0.2,0.6,0.2,0.9,0l2.6-2.6l9.3-9.3c0.2-0.2,0.2-0.6,0-0.9l-2.2-2.2C17.4,2.3,17,2.3,16.8,2.5z"/></g></svg>') center no-repeat;
    display: inline-block;
    background-color: #0066CC !important;
    border: none;
}

/* Hover effect for the radio button */
input[type="radio"] + label:hover::before,
input[type="checkbox"] + label:hover::before {
    border-color: #0066CC;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

/* Focus effect for accessibility */
input[type="radio"]:focus + label::before,
input[type="checkbox"]:focus + label::before {
    border-color: #0066CC;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

.pColor {
    color: #1570EF;
}

.sColor {
    color: #002D73;
}

.bColor {
    color: #333333;
}

#defaultNavbar1 .navbar-nav.navbar-fixed{
    float: right;
    margin-top: 36px;
}
.navbar-fixed > li {
    float: left;
}
.navbar-  .navbar-right {
    float: right !important;
    margin-right: -15px;
}
.navbar > .container-fluid{
    height: 76px;
}
.container > .navbar-header{
    min-height: 76px
}
.navbar {
    position: relative;
    margin-bottom: 0px;
    min-height: 100px;
    background-color: #FFFFFF;
    border-bottom: 5px solid #f99d1c;
}
.navbar h4{
    margin-top: 8px;
    font-size: 16px;

}
.navbar li.dropdown{
        padding-bottom: 0px;
    }
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    background: #FFF;
}
.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar-brand > img {
    width: 100%;
}
.wide {
    background: none;
    padding: 20px 0 20px 0;
}
.portal-home-image{
    background-color:#f3f3f3;
}
.life-banner-image{
    background-color:#dddacd;
}
.acc-banner-image{
    background-color:#e9e5e2;
    }
.boe-banner-image{
    background-color:#f2f3ee;
    }
.ltd-banner-image{
    background-color:#e4ecee;
    }
.add-banner-image{
    background-color:#e7ebee;
    }
.ci-banner-image{
    background-color:#d5d9dc;
    }
.landing-image{
    background-color:#f2e9d6;
}
.thank-you-banner-image{
    background-color:#eaf0f0;
}
.registration-image{
    background-color:#f2e9d6;
}
.infoData{
    padding: 24px 15px 0;
}
img.chart{
    display: block;
    margin: 0 auto;
    }
.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 #FFF;
    background-color: #FFF;
    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: #fff;
    margin-left: 85px;
    vertical-align: middle;
    display: table-cell;

}
.coverage-left, .coverage-right {
    margin-top: 20px;
    color: #fff;
    }
.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;
}
.jumbotron, .mainContent {
    padding-bottom: 12px; 
    margin-bottom: 0;
    min-height: 240px;
}

#IntroductoryLife .mainContent,
#Consent .mainContent,
#LifeThankYou .mainContent,
#LifeThankYouMail .mainContent,
#CreditCardPayment .mainContent {
    margin-top: 0px;
 
}
#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;
}
.benefitHighlights{
    background: #f5f5f5;
    padding-right: 0;
    padding-left: 0;
}
.anniversary{
    padding-top: 48px;
    margin: 0 auto;
    text-align: center
}
.plansIcon {
    min-height: 360px;
}
.circle {
    width: 130px;
    height: 130px;
    border: 3px solid #386CB5;
    background-color: #fff;
    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;
}
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;
}
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-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:600;
}
.panel-title a:focus,
.panel-title a:hover{
    text-decoration: none;
}
i.indicator{
    width: 20px;
    color: #07639D;
    margin: 2px 0 5px 0;
}
.navbar-default .navbar-nav > li > a {
    color: #002d73;
    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: #ffffff;
    background-color: #002d73;
}
#defaultNavbar1 .navbar-btn {
    margin-top: 4px;
    margin-bottom: 0px;
    margin-left: 14px;
    margin-right: 12px;
    font-size: 15px;
    padding: 3px 10px;
}
.dropdown-menu{
    border-radius: 0px;
    padding: 0px 0;
}
/* Step Indicator  */

.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;
}
.step-indicator {
    width: 100%;
    z-index: 100;
}
.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: #ccc;
    height: 1px;
    display: block;
    top: 20px;
    position: relative;
    z-index: -1;
}
.step-indicator-horizontal li:first-child::before {
    left: 50%;info
}
.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: #ccc;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
}

.step-indicator .info .step {
    background-color: #004CCB;
}
.step-indicator .success .step {
    background-color: #004CCB;
}
/* Card styles
.card {
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
}

.card-default {
    display: block;
    border-radius: 3px;
    transition: border-color .15s linear;
    background: #fff;
}

.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: #fff;
    border-bottom: 1px solid #ccc;
}

.card-module-heading {
    background-clip: #666;
}
*/

/* Responsive card 
.card-responsive {
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    transition: border-color .15s linear;
    background: #f0f8ff;
    padding: 15px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .card-responsive {
        margin: 12px 0;
    }
}
*/

.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;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.planPromo{
    margin: 0px auto 24px;
}
.promoPhoto{
    margin-bottom: 24px
}
.promoContent{
    padding-left: 24px;
}
.products{
    padding: 45px 0;
}

.benefitList{
    
}
.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:#07639d;
}

.contactInfo{
    background-color:#e3f2f4;
}
.landingInfo p{
        font-size: 16px;
        line-height: 1.5em;
}
.phoneLink{
    font-size: 24px;
    font-weight: 600;
}

.nav > li.signup{
    display: none;
}
.lifeOffer{
 padding: 12px 0px 12px 0px;
}
.lifeOfferUpdate{
 padding: 0px 0px 0px 0px;
}


.crossSellOffers{
 padding: 0 12px 24px 12px;
}

.healthRow{
    border-bottom: 1px solid #ccc;
}
.healthQuestions{
    padding: 16px 24px 0 0;
}
.healthQuestions li{
    padding: 0 0 8px 0;
}

.healthAnswers{

}
/* Registration and Forms */

.registerBgDiv{
    background: #98c3de;
    margin-top: 76px;
    min-height: 800px;
}
.signinBox {
    margin-top: 48px;
    padding: 24px 24px 6px;
    margin-bottom: 96px;
}
.productField {
    float: left;
    display: flex;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
}
.productRadio .productField {
    margin-bottom: 36px;
}
.yesNoDiv .productField {
    min-height: 32px;
}

.stackedRadio .productField {
    display: block;
}
label, .spacer{
    color: #333;
    font-weight: 400;
    font-size: 15px;
    margin-top: 6px;
}

.lifeOffer .spacer,
.lgFormField .spacer{
    color: #002d73;
    font-size: 18px;
    
}
.lifeOffer label{
    
}

.answer {
    margin-bottom: 0;
}
.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: 16px;
    padding: 12px 20px 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    color: #000;
    background-color: #fff;
    border-color: #999;
    display: block;
    width: 100%;
}

.addButton .buttonState:hover{
    color:#004CCB;
    background-color:#003ED24d;
    border-color:#004CCB;
}
.addButton .productField{
    min-height: 10px;
}

.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: 16px;
    padding: 13px 20px 13px 20px;
    border-radius: 4px;
    font-weight: 600;
    color: #3B3B3B;
    background-color: #a7a7a7b3;
    border-color: #8c8c8c;
    display: block;
    width: 100%;
    margin-top: 10px;
}


.removeButton .buttonState:hover{
    background-color:#ffffff;
    border-color: #333;
    color: #333;

}
.memberGender .answer {
   float: right;
}
.require {
    display: none;
    /* lose the asterix by mandatory*/
}
.passwordCriteria{
    margin: 0 0 36px 0;
}


/* Custom label styles */
.lifeOffer .form-check-input + .form-check-label,
.lgFormField .form-check-input + .form-check-label {
    color: #002d73;
    font-size: 16px;
    font-weight: 400;
}

.productRadio .form-check-input + .form-check-label {
    font-size: 18px;
    font-weight: 600;
    margin-left: 36px;
}

.eftRadio .form-check-input + .form-check-label {
    font-size: 16px;
    font-weight: 600;
}



.householdDiv, .credentialDiv{
    display:none;
}


/* Overriding Afinium styles */
#footer, .view-navigation.view-actions, #rightColumn, .ctlPanelButton{
    display:none !important;
}

.warning{ 
    display:none;
    color: #cc1231;
    font-size: 15px;
    font-weight: 600;
}
.ui-accordion{
    font-family:  Helvetica, Arial, sans-serif;
    border-bottom: 1px solid #999;
    margin-bottom: 18px;
}
.ui-accordion-header{
    background-color: white;
    border: none !important;
    font-size: 18px;
    color: #002d73 !important;
    background: none;
    border-top: 1px solid #999 !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    
}

.ui-accordion-header.ui-helper-reset.ui-state-default a,
.ui-state-active a, .ui-accordion a, .ui-state-active a:link, 
.ui-accordion-content{
   color:#333333 !important;
    border:none!important;
}

.ui-accordion-content{
    border-bottom: none;
}
.ui-accordion-header a:before{
    content: "\f054";
     -webkit-font-smoothing: antialiased;
    display: inline-block;
    font: normal normal normal 16px/1 FontAwesome;
    margin-right: 2px;
    width:1em;
    color:#07639D!important;
}
.ui-accordion-header:last-of-type {
    border-bottom: 1px solid #999;
}
.ui-accordion-header.ui-state-active a:before{
  content: "\f078";
}

.ui-widget-content {
    /*background: none !important;*/
}

.ui-accordion .ui-accordion-content {
    max-height: 160px;
    height: auto !important;
    top: 0px;
    padding: 0em 2.2em;
    margin-top: 0px;
    padding-left: 34px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.4em;
}
.portalAccordian .ui-accordion .ui-accordion-content {
    max-height: 360px;
}

.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;
}
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; 
}
.formSlider{
    position: relative;
}
.formSlider .productField{
    display: none;
}

.sliderlabel span.sliderprompt{
    display: none;
}
.sliderlabel span.slidervalue{
    font-size: 20px;
    font-weight: 600;
    color: #333;

}

.labelHidden span.slidervalue{
   visibility: hidden !important;
   padding: 0;
}


.calculatorDiv .sliderlabel span.slidervalue{
    color: #767676;
    display: none;
}


.footer{
    position: relative !important;
    background:#292929;
    padding: 24px 0;
}
.addfooter{
    background:#F5F5F5;
    padding: 0;
}
.addfooter .container{
    margin-top: 12px
}

.wideRegistration{
    }
p.formLabels{
    padding-top: 28px;
    color: #002d73;
    font-weight: 600;
    margin-bottom: 12px;
}
.substituteLogoutButton{
    float: left;
    
}
.updateInfo{
    display: none;
}
.article h2{
    font-size: 20px;
    font-weight: 700px;
    margin-top:12px
}
.article p{
    margin-bottom: 12px;
}
.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-body {
    padding: 0 30px; 
}
.modal-register .modal-footer {
    padding: 0 30px 30px 30px;
    border-top: none;
}

.bigCheckbox .productField {
    width:auto;
    margin-right: 8px;
}



/* .roundedCheckBox */
.roundedCheckBox {
    width: 36px;
    height: 36px;
    background: #fff;
    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: #fff;

    }
.roundedCheckBox input[type="checkbox"] + label span::before{
    margin-right: 0;
}
.roundedCheckBox input:checked + label span::before {
    content: '';
    background: url('/uploads/00001203/check.gif') center no-repeat;
    text-align: center;
    line-height: 34px;
    color: #fff;
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #004CCB;
    border-radius: 25px;
    cursor: pointer;
    vertical-align: middle;
    border: 2px solid #004CCB;
    margin-top: -4px;

}

.roundedCheckBox label{
    margin-top: 0;

    margin-right: 0;
}
    .roundedCheckBox input[type=checkbox] {
  visibility: hidden;
}

/* end .roundedCheckBox */


a.btn-none{
    font-size: 18px;
    padding: 0;
    vertical-align: bottom;
}
a.btn-none:visited{
    color:#337ab7;
}
.sectionHeading{
    margin-top: 48px;
    border-bottom: 3px solid #ccc;
    padding-bottom: 6px;
}
.accountGreeting{
    position: absolute;
    font-size: 12px;
    top: -8px;
    text-align: left;
    left: 16px;
    z-index: 2;
    display: none;
}
.regForm{
    display: none;
}
.article-callout {
    background-color: #f2f2f2;
    padding: 30px 20px;
}
.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 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;
}
.videolimelight {
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
}
.videolimelight object, .videolimelight embed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/*
#BenePctError, #LifeBenePctError, #ADDBenePctError{
    position: absolute;
    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: #fff;
    display: block;
    width: 100%;
    color: #cc1231;
    z-index: 10;
}*/
.calculatorDiv{
    background: #f1f7f8;
    padding: 12px 24px;
}
.calculatorDiv input[type="radio"] + label{
    font-weight: 600;
}
.ageField{
    margin-top: 12px;
}

.ageField input[type="text"]{
    margin-left: 36px;
    width: 54px;
}
.ageField select{
    width: 154px;
    margin-left: 86px;
}
.ageField .productField{
margin-top: -38px;
    }
tr.tableSubtitle td{
    border-bottom: none;
    color:#002d73;
    padding-bottom: 0;
}
.enrollStepsDiv {
    background: #f1f7f8;
    margin: 20px 0;
    padding: 10px 20px;
}
.enrollStepsDiv .h2{
    font-size: 32px;
    font-weight: 400;
    color: #444;
}
.sectionName{
    border-top: 8px solid #004CCB;
    padding-top: 10px;
    display: inline-block;
    padding-right: 10px;
}

.SectionRuleAbove {
    border-top: 2px solid #004CCB;
}

/* Focus styles for interactive elements */
.yesNoBtn span:focus,
.yesNoBtnSm span:focus,
.radioBtn span:focus {
    outline: 2px solid #0066CC !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.4) !important;
}

/* Ensure the focus state is visible on high-contrast mode */
@media screen and (-ms-high-contrast: active) {
    .yesNoBtn span:focus,
    .yesNoBtnSm span:focus,
    .radioBtn span:focus {
        outline: 2px solid currentColor !important;
    }
}

/* ButtonState (radiobutton) */
.yesNoBtn span span {
    padding: 10px 8px 10px 22px;
    color: #333;
    font-weight: 400;
    font-size: 15px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><circle cx="18" cy="18" r="16" fill="none" stroke="%237F8489" stroke-width="2"/></svg>');
    background-size: 36px 36px;
    background-repeat: no-repeat;
}

.radioBtn span span {
    font-weight: 600;
    font-size: 16px;
}

.yesNoBtn span span span,
.yesNoBtn .active span span {
    background: none;
}

.yesNoBtn .active span {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><circle cx="18" cy="18" r="18" fill="%230066CC"/><path d="M24.3,11.5l-9.3,9.3l-4.3-4.2c-0.2-0.3-0.6-0.3-0.9,0l-2.1,2.1c-0.2,0.2-0.2,0.6,0,0.9l4.3,4.3l2.5,2.6 c0.2,0.2,0.6,0.2,0.9,0l2.6-2.6l9.3-9.3c0.2-0.2,0.2-0.6,0-0.9l-2.2-2.2C24.9,11.3,24.5,11.3,24.3,11.5z" fill="white"/></svg>');
    background-size: 36px 36px;
    background-repeat: no-repeat;
}

.yesNoBtnSm span span {
    padding: 2px 0px 10px 20px;
    color: #333;
    font-weight: 400;
    font-size: 15px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 26 26"><circle cx="13" cy="13" r="11" fill="none" stroke="%23999999" stroke-width="2"/></svg>');
    background-size: 26px 26px;
    background-repeat: no-repeat;
}

.yesNoBtnSm span span span,
.yesNoBtnSm .active span span {
    background: none;
}

.yesNoBtnSm .active span {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 26 26"><circle cx="13" cy="13" r="13" fill="%230066CC"/><path d="M17.1,8.3L10.4,15l-3.1-3.1c-0.2-0.2-0.4-0.2-0.6,0L5.1,13.5c-0.2,0.2-0.2,0.4,0,0.6l3.1,3.1l1.8,1.8c0.2,0.2,0.4,0.2,0.6,0l1.9-1.9l6.7-6.7c0.2-0.2,0.2-0.4,0-0.6l-1.6-1.6C17.5,8.1,17.3,8.1,17.1,8.3z" fill="white"/></svg>');
    background-size: 26px 26px;
    background-repeat: no-repeat;
}

/* Maintain focus styles for active elements */
.yesNoBtn .active span:focus,
.yesNoBtnSm .active span:focus,
.radioBtn .active span:focus {
    outline: 2px solid #0066CC !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.4) !important;
}

/* Additional styles to ensure focus visibility */
.yesNoBtn span:focus-visible,
.yesNoBtnSm span:focus-visible,
.radioBtn span:focus-visible {
    outline: 2px solid #0066CC !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.4) !important;
}

/* Remove outline for non-keyboard focus */
.yesNoBtn span:focus:not(:focus-visible),
.yesNoBtnSm span:focus:not(:focus-visible),
.radioBtn span:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

.ruleBelow{
    border-bottom: 1px solid #767676;
}
 .ruleAbove{
        border-top: 1px solid #767676;
    }
.ruleLeft{
        border-left: 1px solid #767676;
    }
.ruleRight{
        border-right: 1px solid #767676;
    }
.greenRuleAbove{
        border-top: 2px solid #767676;
    }
.tooltip {
    min-width: 300px;
}
.hideMobile{
    display: none;
}


@media (min-width: 480px) {
.nav > li.signup{
    display: inline-block;
    }

.testImage{
    background-image: none;

    }    

.navbar-fixed-bottom {
    position: relative !important;
    right: 0;
    left: 0;
    z-index: 1030;
    }
}


@media (min-width: 768px) {
     .navbar-brand > img {
    width: 100%;
    margin-top: 0;
    }
    .navbar h4{
    margin-top: 16px;

    }
    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: 16px;
    }

    .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{
        background-image:url(../../uploads/00001203/AFSPA_Landing.png);
        background-repeat: no-repeat;
        background-size: 140%;
        background-position: 0% 40%;
    }

    .portal-home-image {
        background-position: 100% 22%;
        background-size: 75%;
        background-repeat: no-repeat;
        background-color: #f0f0f0;
        background-image:url(../../uploads/00001147/sbow-life-banner.jpg);
    }
    
    .life-banner-image{
        background-image:url(../../uploads/00001147/sbow-life-banner.jpg);
        background-position: 70% 30%;
    }
    .add-banner-image{
        background-image:url(../../uploads/00001147/sbow-add-banner.jpg);
        background-position: 100% 22%;
    }
    .acc-banner-image{
        background-image:url(../../uploads/00001101/man_on_crutches.jpg);
        background-position: 70% 10%;
    }
    .boe-banner-image{
        background-image:url(../../uploads/00001101/doctor_with_tablet.jpg);
        background-position: 70% 0%;
    }
    .ltd-banner-image{
        background-image:url(../../uploads/00001101/senior_with_doctor.jpg);
        background-position: 70% 10%;
    }
    .ci-banner-image{
        background-image:url(../../uploads/00001101/elderly_woman_hugging.jpg);
        background-position: 70% 20%;
    }
    .landing-image{
        background-image:url(../../uploads/00001101/mother-child-beach.jpg);
        background-position: 70% 30%;
    }
    .registration-image{
        background-image:url(../../uploads/00001101/mother-child-beach.jpg);
        background-position: 50% 30%;
    }
    .thank-you-banner-image{
        background-image:url(../../uploads/00001101/doctor_filling_form.jpg);
        background-position: 70% 30%;
    }
    .introlife-image {
        background-position: 100% 22%;
        background-size: 65%;
        background-repeat: no-repeat;
        background-color: #e8f0f2;
        background-image:url(../../uploads/00001152/nea-introlife-banner.jpg);
    }
    h1.landingHeadline{
    padding: 60px 0 24px;
    font-size: 34px;
    line-height: 1.3em;
    }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    background: #F8F8F8;
    }
    
    .jumbotron {
    padding-top: 24px;
    min-height: 260px;
    }
    #defaultNavbar1  .navbar-nav {
        margin-top: 36px;
    }

    .contactInfoDiv{
        display: table;
        height: 160px;
    }
    .contactInfoContent{
        display: table-cell;
        vertical-align: middle;
    }
    .card-default{
        border: 1px solid #ccc;
        border-radius: 10px;
    }

    .card-landing{
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: #fafafa;
        opacity: 0.8;
    }

    .card-default-none{
        border: none;
    }

    .card-box{
        border: 1px solid #ccc;
        padding: 16px;
        box-shadow: 0 4px 5px 0 rgba(0,0,0,0.12);
    }

    .lifeOffer-ruleRight{
        border-right: 1px solid #ccc;
    }

    .wideRegistration{
    background-image:url(../../uploads/00001203/AFSPA_Landing.png);
    }

    .lifeOffer{
     padding: 12px 24px 12px 24px;
    }

    .lifeOfferUpdate{
     padding: 0px 24px 0px 24px;
    }
}

@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;
    }
    .wideRegistration{
        background-image:url(../../uploads/00001219/SambaLandingDraft.jpg);
        background-repeat: no-repeat;
        background-size: 55%;
        background-position: 0% 40%;
    }
}


@media (min-width: 1366px) {
    .wide {
        background-size: 80%;
        background-position: 100% 20%;
        background-repeat:no-repeat;
    }
    .portal-home-image {
            background-size: 47%;
        }
    
.wideRegistration{
        background-image:url(../../uploads/00001219/SambaLandingDraft.jpg);
        background-repeat: no-repeat;
        background-size: 55%;
        background-position: 0% 40%;
    }

}

.parent {
    position: relative;
}

.child {
    position: absolute;
    bottom: 0;

}

.enrollCardCol{
    margin-top: 122px;
}

 .modalContent{
        width: auto;
        height: 300px;
        overflow: scroll;
        padding:6px 18px;
        background: #f1f7f8;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .hideMobile{
        display: inline-block;
    }
    
.reduce_coverage h3 {
  font-size: 18px; 
}

.reduce_coverage h4 {
  font-size: 14px; 
  margin-top: 8px; 
} 

.custom-width {
  width: 75%; 
}
    
    
.subtext {
    margin-top: 0.5rem; /* Adjust this value as needed */
    margin-bottom: 0;
    width: 100%;
}
    
    
.large-checkbox {
    transform: scale(2);
    width: 24px;
    height: 24px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1.5px solid #555 !important;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.large-checkbox:checked {
    background-color: #007bff;
    border: none !important;
    box-shadow: none !important; 
}

.large-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}


.Childreninfo {
  background-color: #F9F9F9;
  border-radius: 10px;
  padding-right: 10px;
  padding-bottom: 20px !important;
  padding-left: 10px;

}
.info-button {
    background: none;
    border: none;
    color: #007bff;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    margin-left: 5px;
}

.info-button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.required-field-text {
    font-size: 13px;
    background-color: white;
    border-radius: 6px;
    padding: 7px;
}

/* Longform Button */

.btn-primary.longform {
    padding: 16px 32px;
    border-radius: 100px;
    background-color: #007DC3; 
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.25px;
    width: auto;
    min-width: 250px;
    margin-top: 25px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary.longform::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-primary.longform:hover::before {
    left: 100%;
}

.btn-primary.longform:hover {
    background-color: #0066CC;
    transform: scale(1.05);
}

.btn-primary.longform:focus::before, 
.btn-primary.longform:active::before {
    left: -100%;
}

.btn-primary.longform:focus, 
.btn-primary.longform:active {
    background-color: #0066CC;
    transform: scale(1);
}

.btn-primary.longform:active {
    background-color: #005BB5;
}

.btn-primary.longform.disabled {
    background-color: #80B3E5 !important;
    cursor: not-allowed;
}

/* Enhanced focus state for ADA compliance */
.btn-primary.longform:focus {
    outline: 3px solid #0056b3 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.5) !important;
    transition: outline-offset 0.1s ease;
}

/* shortform Button */

.btn-primary.shortform {
    padding: 16px 32px;
    border-radius: 100px;
    background-color: #007DC3; 
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.25px;
    width: auto;
    min-width: 250px;
    margin-top: 25px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary.shortform::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-primary.shortform:hover::before {
    left: 100%;
}

.btn-primary.shortform:hover {
    background-color: #0066CC;
    transform: scale(1.05);
}

.btn-primary.shortform:focus::before, 
.btn-primary.shortform:active::before {
    left: -100%;
}

.btn-primary.shortform:focus, 
.btn-primary.shortform:active {
    background-color: #0066CC;
    transform: scale(1);
}

.btn-primary.shortform:active {
    background-color: #005BB5;
}

.btn-primary.shortform.disabled {
    background-color: #80B3E5 !important;
    cursor: not-allowed;
}

/* Enhanced focus state for ADA compliance */
.btn-primary.shortform:focus {
    outline: 3px solid #0056b3 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.5) !important;
    transition: outline-offset 0.1s ease;
}

.info-text {
   font-size: 13px;
   margin-bottom: 15px;
}
.update-info-link {
    color: #0066cc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
    .update-info-link:hover {
        text-decoration: underline;
}
.sso_update {
    display: inline-block;
    padding: 10px 18px;
    font-size: 13px;
    text-decoration: none;
    color: #0066CC;
    background-color: transparent;
    border: 1px solid #0066CC;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    margin-left: 5px;
    vertical-align: middle;
}

.sso_update:hover,
.sso_update:focus {
    background-color: #0066CC;
    color: white;
    outline: none;
    text-decoration: none;
}

.sso_update:focus {
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.3);
}

.sso_update:active {
    transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
    .sso_update {
        transition: none;
    }
    .sso_update:active {
        transform: none;
    }
}
@media (min-width: 1200px) {  /* xl breakpoint */
  .condition-form > div {
    flex-basis: 0;
    min-width: 0;
  }
}

.coverage-title {
    font-size: 28px !important;
    font-weight: 500;
}
.left-border {
    border-left: 1px solid #ccc;
}

.accordion-button:focus {
    outline: 2.5px solid #0056b3 !important;
    outline-offset: 3px !important;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



