/* 
==========================
Design Tokens
=========================
*/
:root {
    /* Colors */
    --theme-color: #006AA9;
    --primary-color: #000000;
    --text-primary: #333;
    --background-light: #f8f9fa;
    --background-gray: #f2f2f2;
    --background-darkgray: #C7C7C7;
    --primary-blue: #106cb7;
    --secondary-blue: #09589c;
    --dark-blue: #104470;
    --highlight-blue: #1570EF;
    --error-red: #cc1231;

    /* Dark mode specific tokens */
    --dark-background: #003453;
    --dark-surface: #004166;
    --dark-surface-lighter: #004d7a;
    --dark-text-primary: #ffffff;
    --dark-text-secondary: #9bb5c4;
    --dark-border: #005c8f;
    --dark-progress-bg: #002942;

    /* Typography */
    --font-family-base: 'Inter', sans-serif;
    --font-size-xs: 13px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-xxl: 24px;
    --font-size-xxxl: 28px;
    --font-size-huge: 32px;

    /* Spacing */
    --spacing-xs: 3px;
    --spacing-s: 6px;
    --spacing-m: 12px;
    --spacing-l: 24px;
    --spacing-xl: 36px;
    
     /* Border Tokens */
    --border-width-thin: 1px;
    --border-width-medium: 2px;
    --border-width-thick: 3px;
    --border-style-solid: solid;
    --border-style-dashed: dashed;
    --border-color-light: #ccc;
    --border-color-medium: var(--text-primary);
    --border-color-dark: var(--primary-color);
    
    /* Default border */
    --border-default: var(--border-width-thin) var(--border-style-solid) var(--border-color-light);

    /* Additional tokens */
    --card-radius: 12px;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    --transition-base: all 0.2s ease-in-out;

    /* Gradients */
    --thank-you-gradient: linear-gradient(
        75deg,
        rgba(16, 68, 112, 0.95) 0%,
        rgba(16, 68, 112, 0.85) 40%,
        rgba(16, 108, 183, 0.75) 100%
    );
}


/* 
==========================
Base Styles
==========================
*/
body {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--primary-text);
    margin: 0;
    padding: 0;
    /*background-color: #f8f9fa !important;*/

}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
}

a,
button {
    color: inherit;
    text-decoration: none;
    outline-offset: 2px !important;
}

a:focus,
a:hover,
button:focus {
    text-decoration: none;
}

button:focus,
input:focus,
textarea:focus {
    outline: 0;
}

#menu_mainform{
    display: none;
}
.hidden{
    display: none;
}

/* 
==========================
Typography
==========================
*/
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 700;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
}

h1 { font-size: var(--font-size-huge); line-height: 1.3; }
h2 { font-size: var(--font-size-xxxl); }
h3 { font-size: var(--font-size-xxl); }
h4 { font-size: var(--font-size-xl); }
h5 { 
    font-size: var(--font-size-lg); 
    font-weight: 600; 
    margin-bottom: var(--spacing-m); 
}
h6 { 
    font-size: var(--font-size-base); 
    font-weight: 600; 
    margin-bottom: var(--spacing-s); 
}

p, li, td {
    font-size: var(--font-size-base);
    line-height: 1.3;
}

th, strong, caption {
    font-weight: 600;
}
/* 
==========================
Buttons
==========================
*/

.btn-primary {
    color: #fff;
    background: linear-gradient(to bottom, var(--primary-blue) 6%, var(--secondary-blue) 100%);
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(to top, var(--dark-blue) -25%, var(--secondary-blue) 125%);
    border-color: var(--secondary-blue);
}

.btn-xlg {
    font-size: var(--font-size-xxl);
    padding: 10px var(--spacing-l);
    font-weight: 600;
}

.btn-xlg a {
    color: #fff;
}


/* 
==========================
Tables
==========================
*/

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.table-header {
    background-color: var(--light-gray);
    font-size: var(--font-size-sm);
    font-weight: bold;
    text-align: left;
}

.header-cell, 
.category-cell, 
.details-cell {
    padding: 8px;
    border-bottom: 1px solid var(--border-gray);
}

.category-cell {
    font-size: var(--font-size-xs);
    color: var(--primary-text);
    width: 200px;
    text-align: right;
}

/* 
==========================
Spacing Utilities 
==========================
*/

/* Padding Top */
.ptn { padding-top: 0; }
.ptxs { padding-top: var(--spacing-xs); }
.pts { padding-top: var(--spacing-s); }
.ptm { padding-top: var(--spacing-m); }
.ptl { padding-top: var(--spacing-l); }
.ptxl { padding-top: var(--spacing-xl); }

/* Padding Right */
.prn { padding-right: 0; }
.prxs { padding-right: var(--spacing-xs); }
.prs { padding-right: var(--spacing-s); }
.prm { padding-right: var(--spacing-m); }
.prl { padding-right: var(--spacing-l); }
.prxl { padding-right: var(--spacing-xl); }

/* Padding Bottom */
.pbn { padding-bottom: 0; }
.pbxs { padding-bottom: var(--spacing-xs); }
.pbs { padding-bottom: var(--spacing-s); }
.pbm { padding-bottom: var(--spacing-m); }
.pbl { padding-bottom: var(--spacing-l); }
.pbxl { padding-bottom: var(--spacing-xl); }

/* Padding Left */
.pln { padding-left: 0; }
.plxs { padding-left: var(--spacing-xs); }
.pls { padding-left: var(--spacing-s); }
.plm { padding-left: var(--spacing-m); }
.pll { padding-left: var(--spacing-l); }
.plxl { padding-left: var(--spacing-xl); }

/* Margin Top */
.mtn { margin-top: 0; }
.mtxs { margin-top: var(--spacing-xs); }
.mts { margin-top: var(--spacing-s); }
.mtm { margin-top: var(--spacing-m); }
.mtl { margin-top: var(--spacing-l); }
.mtxl { margin-top: var(--spacing-xl); }

/* Margin Right */
.mrn { margin-right: 0; }
.mrxs { margin-right: var(--spacing-xs); }
.mrs { margin-right: var(--spacing-s); }
.mrm { margin-right: var(--spacing-m); }
.mrl { margin-right: var(--spacing-l); }
.mrxl { margin-right: var(--spacing-xl); }

/* Margin Left */
.mln { margin-left: 0; }
.mlxs { margin-left: var(--spacing-xs); }
.mls { margin-left: var(--spacing-s); }
.mlm { margin-left: var(--spacing-m); }
.mll { margin-left: var(--spacing-l); }
.mlxl { margin-left: var(--spacing-xl); }

/* Margin Bottom */
.mbn { margin-bottom: 0; }
.mbxs { margin-bottom: var(--spacing-xs); }
.mbs { margin-bottom: var(--spacing-s); }
.mbm { margin-bottom: var(--spacing-m); }
.mbl { margin-bottom: var(--spacing-l); }
.mbxl { margin-bottom: var(--spacing-xl); }


/* 
==========================
Typography Utilities 
==========================
*/
/* Font Weights */
.noBold { font-weight: normal; }
.mdBold { font-weight: 600; }
.bold { font-weight: 700; }

/* Font Sizes */
.testcal {
    font-family: var(--font-family-base);
    font-size: var(--font-size-xs);
    color: var(--text-primary);
}

.slider_limit_min,
.slider_limit_max {
    font-size: var(--font-size-lg) !important;

}

/* Line Heights */
.profile-info {
    line-height: 1.4;
}

.consent-notice {
  text-align: center;
  
}

.consent-link {
  background: none;
  border: none;
  color: var(--theme-color);
  text-decoration: underline;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* 
==========================
Color Utilities 
==========================
*/
.white { color: #fff; }
.black, .blue { color: var(--text-primary); }
.red { color: var(--error-red); }
.highlight { color: var(--highlight-blue); }
.color-scheme-gray { background: var(--background-gray); }

/* 
==========================
Layout Utilities 
==========================
*/
.clearfix {
    clear: both;
}

.sliderlabel {
    display: none;
}

/* 
==========================
Media Queries
==========================
*/
@media (min-width: 768px) {
    .clearfixMobile {
        clear: none;
    }
}

/* 
==========================
Alert Card Start
==========================
*/

/* Base Alert Styles */
[class^="custom-alert"] {
    border-radius: 10px;
    padding: 16px;
    display: inline-flex;
    align-items: center;
}

/* Alert Variants */
.custom-alert {
    background-color: #FFF6D4;
    border: 1px solid #EFB34A;
}

.custom-alert2,
.custom-alert3 {
    background-color: #FFFFFF;
}

.custom-alert3 {
    border: 1px solid #ccc;
}

.custom-alert-red {
    background-color: #FDD2D0;
    border: 1px solid #C97B81;
}

/* Alert Components */
.alert-icon {
    width: 48px;
    height: 48px;
    margin-right: 16px;
}

.alert-title {
    color: #344054;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}
.alert-warning {
    font-weight: 700; 
}

.alert-copy {
    color: #475467;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* 
==========================
Alert Card End
==========================
*/

/* 
==========================
Border Utilities
==========================
*/
.rule {
    --border: var(--border-default);
}

/* Border Positions */
.rule-below {
    border-bottom: var(--border);
}

.rule-above {
    border-top: var(--border);
}

.rule-left {
    border-left: var(--border);
}

.rule-right {
    border-right: var(--border);
}

/* Border Widths */
.rule--medium {
    --border-width: var(--border-width-medium);
}

.rule--thick {
    --border-width: var(--border-width-thick);
}

/* Border Styles */
.rule--dashed {
    --border-style: var(--border-style-dashed);
}

.rule--dark {
    --border-color: var(--border-color-dark);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .rule {
        --border-color-light: var(--dark-border);
    }
}
/* 
==========================
Border Utilities End
==========================
*/
/* 
==========================
Card Start
==========================
*/
.card {
  position: relative;
  margin: 16px;
  border: 1px solid #e5e5e5;
  width: calc(100% - 32px);
  max-width: 100%;
  box-sizing: border-box;
}

.card-default {
  display: block;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  padding-left: 32px;
  padding-right: 32px;
}

.card-default-margin {
  margin: 16px 0;
}

.card-default .card-block {
  padding: 24px;
}

.card-default[data-clickable]:hover {
  border-color: #999;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.card-default .card-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-module-heading {
  color: #666;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .card {
    margin: 14px;
    width: calc(100% - 28px);
  }

  .card-default {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .card {
    margin: 12px;
    width: calc(100% - 24px);
  }

  .card-default {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 320px) {
  .card {
    margin: 10px;
    width: calc(100% - 20px);
  }

  .card-default {
    padding-left: 14px;
    padding-right: 14px;
  }
}


/* 
==========================
Card End
==========================
*/

/* 
==========================
Navigation Component
==========================
*/
/* Header Container */
.header-area {
   height: 80px;
   padding-top: var(--spacing-m);
   position: relative;
   top: 5px;
   width:850px;
   border-bottom: 8px solid var(--background-darkgray);
}

.container {
   max-width: 850px;
   padding: 0 var(--spacing-m);
   margin: 0 auto;
}

.row {
   margin-left: 0;
   margin-right: 0;
}

.col-12, .col-md-6 {
   padding-left: 10px;
   padding-right: 10px;
}

/* Logo Section */
.logo-area {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: var(--spacing-m);
   padding-left: 0;
}

.logo-area a {
   display: inline-block;
   max-width: 100%;
}

.logo-area img {
   height: auto;
   max-height: 40px;
   max-width: 100%;
}

/* Additional Logo Styles */
.logo-area .secondary-logo {
   display: inline-block;
}

/* Help Section */
.help_blk {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   padding-right: 0;
}

.help_blk > a {
   color: var(--primary-blue);
   font-size: var(--font-size-lg);
   text-align: right;
   text-decoration: none;
}

.help_blk > a p {
   color: #333;
   font-size: var(--font-size-sm);
   line-height: 1;
   margin: 0;
}

.help_blk > a p span {
   color: #333;
   font-weight: 700;
   text-decoration: underline;
}

/* Overlay */
.overly {
   height: 100vh;
   left: 0;
   position: fixed;
   top: 0;
   width: 100vw;
   z-index: -1;
}

.overly.active {
   z-index: 9;
}

/* 
==========================
Mobile Styles (< 768px)
==========================
*/
@media (max-width: 767px) {
   .header-area {
       height: 130px;
   }
   
   .logo-area {
       justify-content: center;
       margin-bottom: 15px;
       padding-left: 15px;
   }
   
   /* Hide secondary logos on mobile */
   .logo-area .secondary-logo {
       display: none;
   }
   
   .help_blk {
       justify-content: center;
       padding-right: 15px;
   }
   
   .help_blk > a {
       text-align: center;
   }
}

/* 
====================
Hero__area start
====================
*/
.hero__area {
    background-color: var(--theme-color);
}

.hero__area__wrapper {
    padding: var(--spacing-xl) 0 var(--spacing-xl) var(--spacing-xl);
    position: relative;
    overflow: hidden; 
}

.hero__wrapper__content {
    max-width: 400px;
    position: relative; 
    z-index: 2; 
}

.hero__wrapper__content h2 {
    color: #FFF;
    font-size: var(--font-size-sm) !important;
    line-height: 25.5px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase !important;
}

.hero__wrapper__content h1 {
    color: #FFF;
    font-size: var(--font-size-huge) !important;
    font-weight: 700;
    line-height: 43px;
    margin-top: var(--spacing-m);
}

.hero__thumb {
    bottom: 0;
    right: 0;
    z-index: 1;
    max-width: 450px;
    position: absolute;
    margin-right: var(--spacing-xl);
}

@media (max-width: 991px) {
    .hero__area__wrapper {
        padding: var(--spacing-l) var(--spacing-l);
    }
    
    .hero__wrapper__content {
        max-width: 100%;
        margin-bottom: var(--spacing-xl);
    }
    
    .hero__thumb {
        position: relative;
        margin: 0 auto;
        right: auto;
    }
}
/* 
==========================
Hero__area end
==========================
*/
.jumbotron, .mainContent {
    padding-top: var(--spacing-m);
    padding-bottom: var(--spacing-m);
    margin-bottom: 0;
}

.wide {
    background-size: 80%;
    min-height: 300px;
    background-repeat: no-repeat;
}

.wideLanding {
    background-size: 75%;
    min-height: 520px;
}

.wideLandingSimplified {
    background-size: 135%;
    min-height: 580px;
}

.wideRegistration {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-l);
}
/* 
==========================
Journey Banner Start
==========================
*/
.onboarding-header-wrapper {
    background-color: #cc0033;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.onboarding-header-wrapper::before {
    /* Remove background image and overlay */
    content: none;
}

.onboarding-header {
    position: relative;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.onboarding-header__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.onboarding-header__title {
    font-size: 24px !important;
    color: #ffffff !important;
    text-align: left !important;
    line-height: 1.2 !important;
}

.onboarding-header__title.member-title {
    font-size: 24px;
    color: #ffffff;
    text-align: left;
    line-height: 1.2;
}

.onboarding-header__title.member.onboarding-member-name {
    font-size: 21px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    padding-top: 0 !important;
}
/* 
==========================
Journey Banner End
==========================
*/
/* 
==========================
Subheader Start
==========================
*/

.subheader-2 {
   background-color: var(--theme-color);
}

.topnav-2 {
   padding: var(--spacing-m) 0;
   background-color: #fff;
   border-bottom: 8px solid var(--background-darkgray);
}

.topnav-2__container {
   max-width: 945px;
   margin: 0 auto;
   padding: 0 var(--spacing-m);
}

.topnav-2__wrapper {
   display: flex;
   gap: 20px;
   align-items: center;
   justify-content: space-between;
}

.topnav-2__logo {
   display: block;
}

.topnav-2__logo img {
   max-width: 275px;
   display: block;
}

.help-2 {
   display: flex;
   align-items: center;
   gap: var(--spacing-s);
}

/* Updated from h6 to span.help-2__label */
.help-2__label {
   color: var(--primary-color);
   font-weight: 700;
   line-height: 1.4;
   margin: 0;
}

.help-2__contact {
   display: flex;
   align-items: center;
}

.help-2__contact span {
   color: var(--text-primary);
   font-weight: 500;
   line-height: 1.4;
}

.help-2__contact a {
   color: var(--theme-color);
   font-weight: 700;
   text-decoration: none;
   transition: color 0.3s ease;
   margin-left: 4px;
}

.help-2__contact a:hover {
   text-decoration: underline;
}

.subheader-2__container {
   max-width: 800px;
   margin: 0 auto;
   padding: 0 var(--spacing-m);
}

.subheader-2__wrapper {
   display: flex;
   align-items: center;
   gap: 58px;
   padding-top: var(--spacing-m);
}

.subheader-2__thumb {
   max-width: 414px;
   width: 100%;
   flex-shrink: 0;
   line-height: 0;
}

.subheader-2__thumb img {
   width: 100%;
   display: block;
   vertical-align: bottom;
}

.subheader-2__content {
   max-width: 300px !important;
}

.subheader-2__label {
   color: #FFF;
   font-size: var(--font-size-sm);
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   margin-bottom: var(--spacing-m);
   display: block;
}

.subheader-2__title {
   color: #fff;
   font-size: var(--font-size-xxxl);
   font-weight: 600;
   line-height: 35px;
}

@media (max-width: 991px) {
   .help-2 {
      padding-right: 0;
   }
}

@media (max-width: 767px) {
   .topnav-2__logo img {
      max-width: 200px;
   }
   
   .help-2 {
      gap: var(--spacing-xs);
   }

   .subheader-2__wrapper {
      flex-direction: column;
      padding-top: var(--spacing-xl);
   }
}

@media (max-width: 575px) {
   .topnav-2__wrapper {
      flex-direction: column;
      gap: var(--spacing-m);
      text-align: center;
   }
   
   .help-2 {
      flex-direction: column;
      gap: var(--spacing-xs);
   }

   .subheader-2__wrapper {
      gap: var(--spacing-xl);
   }
}
/* 
==========================
Subheader End
==========================
*/

/* 
==========================
Background Image Start
==========================
*/

.landing-background {
    /* Base styles */
    position: relative;
    background-image: url('/uploads/00001358/landing-background.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Desktop screens (1024px and above) */
@media (min-width: 1024px) {
    .landing-background {
        background-size: 100% auto;
        margin: 0 auto;
    }
}

/* Tablet screens */
@media (max-width: 1023px) {
    .landing-background {
        background-size: cover;
        min-height: 500px;
    }
}

/* Mobile screens */
@media (max-width: 767px) {
    .landing-background {
        background-image: none;
        min-height: auto;
    }
}

/* 
==========================
Backgroud Image End
==========================
*/


/* 
==========================
Calculator Start
==========================
*/

.di calc styles 
.di-calc .big{
    font-size:30px;
    font-weight:700;
    color: #002d73;
    padding: 0 2px;
}
.di-calc .topPrice{
  padding-bottom: 8px;
  line-height: 40px;
}
.di-calc .btn br{
  border-bottom: 1px solid black;
  display: block;
  content: "";
  margin-bottom: 8px;
}

.di-calc .slidervalue {
    font-size:28px;
    font-weight:700;
    position:absolute;
    right:40px;
    margin-top:-38px;
}

.di-calc label{
    font-size:20px;
    font-weight: 600;
    width: 100%;
}

.di-calc .slidervalue:before{
    content:'$';
}

.di-calc .ui-widget-header{
    background: #61ccdc;
}

.di-calc .ui-slider{
    margin-bottom:30px;
}

.di-calc .sliderprompt{
    display:block!important;
    font-size: 20px;
    color: #333;
     margin: 4px 0 12px;
}

.di-calc .slidervalue.no_currency:before{
	content:"";
}
.ltd-choice-btn .btn{
    white-space:normal;
    margin-bottom:10px;
    border-radius: 4px;

    font-weight: 600;
    color: #000;
    background-color: #e3f2f4;
    background-image: none;
    border-color: #999;
    display: block;
    padding:  6px 16px;
    font-size: 16px;

}
.ltd-choice-btn .btn:hover{
    background-color:#a4d2d8;
}

.di-calc .answer{
	margin-top: -58px;
}

.ltd-calculator {
	color: #333;
	line-height: 1.5em;
}

.ltd-calculator h1{
	color: #333;
	line-height: 1.5em;
}
.ltd-calculator h6{
margin-bottom: 0;
}
.well-left label{
    margin-top: -4px;
}
.no_currency{
    display: none;
}
@media (min-width: 480px) {
.no_currency{
    display: inline-block;
}
}
.disclosures .glyphicon{
    top: 5px;
    left: -5px;
}

.buttonState{
    background:none !important;
}

.addButton .buttonState{
    border-color: #888;
}

@media(max-width:400px){
    .enrollDate img{
        width: 110px;
        height: auto;
    }
}

/* 
====================
Calculator End
====================
*/

/* 
====================
Slider Start
====================
*/
.ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    color: #0066cc;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: #014e9e;
    margin-top: -11px;
    outline: 3px solid #FFF;
}
span.slidervalue {
    visibility: hidden !important;
    padding: 0;
}
.ui-slider {
    margin-top: 12px;
}
.ui-widget-content {
    border: 2px solid #8E8E8E;
    background: #eeeeee;
    color: #333333;
    height: 2px;
    margin-top: 8px;
    margin-bottom: 24px;
}
.slider_limits {
    font-size: 14px;
    margin-bottom: 20px !important;
}
.slider-element .spacer{
    display: none;
}
.ui-widget :active, .ui-widget :focus {
    background: #0066cc;
    border: 2px solid #0066cc !important;
    /*outline: 3px solid #edf8ff;*/
}

/* 
====================
Slider End
====================
*/
/* 
====================
Radio Start
====================
*/
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[type="radio"] + label::before, input[type="checkbox"] + label::before {
    content: '';
    display: inline-block;
    position: relative;
    width: 36px;
    min-width: 36px;
    height: 36px;
    margin-right: .5em;
    border: 2px solid #888;
    border-radius: 200px;
    background: #fff;
    vertical-align: middle;
}

input[type="radio"] {
    position: absolute;
    left: -99999px;
}

input {
    width: 100%;
}

label, .spacer {
    color: #333333;
    font-weight: 600;
    font-size: 15px;
    margin-top: 6px;
    margin-bottom: 5px;
}

.productField input[type="radio"] + label {
    border: 2px solid rgba(0, 0, 0, 0);
    padding: 5px;
}

/* Modified hover state to exclude checked inputs */
input[type="radio"]:not(:checked) + label:hover::before,
input[type="checkbox"]:not(:checked) + label:hover::before {
    border: 3px solid #004ea5;
}

input:checked + label::before {
    content: '';
    background: url(/uploads/00001280/check-mark.svg) center no-repeat;
    text-align: center;
    line-height: 34px;
    color: #fff;
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #0066ff;
    border-radius: 25px;
    cursor: pointer;
    vertical-align: middle;
    border: none;
    min-width: 36px;
    min-height: 36px;
}

/* Focus outline */
.productField input[type="radio"]:focus + label {
    border: 2px solid #0066ff;
    padding: 5px;
    border-radius: 0px;
}
/* 
====================
Radio End
====================
*/

/* 
====================
Radio Grouup End
====================
*/

.radio-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1em;
  width: 100%;
}

/* Mobile devices (less than 768px) */
@media screen and (max-width: 767px) {
  .radio-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .radio-group input[type="radio"] + label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
}

/* Tablets and larger (768px and up) */
@media screen and (min-width: 768px) {
  .radio-group {
    flex-direction: row;
  }
}

/* 
====================
Radio group End
====================
*/

/* 
========================
Form input, select start
========================
*/
input[type="text"],
input[type="password"],
select {
    border: 1px solid #888 !important;
    font-weight: normal;  /* Added explicit font-weight */
}

.form-control,
.form-select {
    /* Base styling */
    padding: 10px 16px;
    font-size: 16px;
    line-height: 24px;
    border: 2px solid #333;
    border-radius: 6px;
    background-color: #ffffff;
    width: 100%;
    color: #1f2937;
    position: relative;
    font-weight: normal;  
    
    /* Enhanced placeholder styling */
    &::placeholder {
        color: #6b7280;
        opacity: 1;
        font-weight: normal;
    }

    /* Focus state */
    &:focus {
        outline: none;
        border: 2px solid #0066ff;
        background-color: #ffffff;
        font-weight: normal;
    }

    /* Disabled state */
    &:disabled {
        background-color: #f3f4f6;
        border-color: #d1d5db;
        cursor: not-allowed;
        font-weight: normal;  /* Added explicit font-weight */
    }
}

/* Specific styles for form-select */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%236B7280' d='M4.646 6.646a.5.5 0 0 1 .708 0L8 9.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    font-weight: normal;  /* Added explicit font-weight */
}

/* Form group label */
.form-group:focus-within label {
    color: #0066ff;
}

/* Success state with checkmark */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #00a854;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2300a854' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    font-weight: normal;  /* Added explicit font-weight */
}

/*.form-control:focus,*/
/*.form-select:focus {*/
/*    border: 2px solid #005fcc !important;*/
/*    padding: 5px;*/
/*    border-radius: 0.375rem;*/
    font-weight: normal;  /* Added explicit font-weight */
/*}*/
/* 
========================
Form input, select end
========================
*/
/* 
========================
Spouse Selection Section
========================
*/

.spouse-selection {
   background-color: #f8f9fa;
   border-radius: 12px;
   padding: 25px;
   margin: 30px 0;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   border: 1px solid #e9ecef;
}

.spouse-selection-title {
   color: #2c3e50;
   border-bottom: 2px solid #e9ecef;
   padding-bottom: 10px;
   margin-bottom: 20px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
   .spouse-selection {
       padding: 20px;
       margin: 20px 0;
   }
}

@media screen and (max-width: 576px) {
   .spouse-selection {
       padding: 15px;
       margin: 15px 0;
       border-radius: 8px;
   }
}

@media screen and (max-width: 320px) {
   .spouse-selection {
       padding: 10px;
       margin: 10px 0;
   }
   
   .spouse-selection-title {
       font-size: 14px;
       padding-bottom: 8px;
       margin-bottom: 15px;
   }
}

/* 
========================
Spouse Selection Section End
========================
*/

/* 
========================
Child Selection Styles
========================
*/

.child-selection {
    background-color: #faf9fa;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    width: 100%;
    position: relative;
}

.child-selection-inner {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.child-selection-title {
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .child-selection {
        padding: 20px;
        margin: 20px 0;
    }
    .child-selection-inner {
        padding: 15px;
    }
}

@media screen and (max-width: 576px) {
    .child-selection {
        padding: 15px;
        margin: 15px 0;
        border-radius: 8px;
    }
    .child-selection-inner {
        padding: 12px;
    }
}

@media screen and (max-width: 320px) {
    .child-selection {
        padding: 10px;
        margin: 10px 0;
    }
    .child-selection-inner {
        padding: 10px;
    }
    .child-selection-title {
        font-size: 14px;
        padding-bottom: 8px;
        margin-bottom: 15px;
    }
}

/* 
========================
Child Selection Styles End
========================
*/

/* 
====================
Coverage Card Start
====================
*/

.coverage-card {
   position: relative;
   max-width: 800px;
   margin: auto;
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
               0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.coverage-card.card {
   border: none;
   border-radius: 16px;
}
.coverage-card .card {
   border: none;
}
.coverage-card .gradient-header {
   position: relative;
   border-top-left-radius: 16px;
   border-top-right-radius: 16px;
   min-height: 100px;
   background: linear-gradient(to right, #1a365d 20%, #006AA9 60%, transparent 100%), 
               url('https://memberenroll-stage.com/uploads/00001358/gavel-backround-1200-400.jpg');
   background-position: right top;
   background-repeat: no-repeat;
   background-size: cover;
   padding: 40px;
   overflow: hidden;
   isolation: isolate;
}
.coverage-card .gradient-header h1,
.coverage-card .gradient-header p {
   position: relative;
   z-index: 2;
   max-width: 60%;
}
.coverage-card .gradient-bg {
   background: linear-gradient(135deg, #ffffff, #f0f7ff);
   border-bottom-left-radius: 16px;
   border-bottom-right-radius: 16px;
}
.coverage-card .stat-card {
   position: relative;
   overflow: hidden;
   border: 1px solid rgba(37, 99, 235, 0.1) !important;
   border-radius: 8px;
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
               0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.coverage-card .ripple {
   position: absolute;
   border-radius: 50%;
   transform: scale(0);
   animation: ripple 0.6s linear;
   background-color: rgba(255, 255, 255, 0.7);
   pointer-events: none;
}
@keyframes ripple {
   to {
       transform: scale(4);
       opacity: 0;
   }
}
.coverage-card .icon-wrapper {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 8px;
}
.coverage-card .progress {
   height: 8px;
   background-color: #e2e8f0;
   border-radius: 9999px;
   overflow: hidden;
}
.coverage-card .progress-bar {
   background-color: #2563eb;
   transition: width 0.3s ease;
}

/*Focus States*/
.coverage-card :focus-visible {
   outline: 3px solid #0066cc !important;
   outline-offset: 2px !important;
}
.coverage-card .btn:focus-visible {
   outline: 3px solid #93c5fd !important;
   outline-offset: 2px !important;
   box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.5);

/*.coverage-card input:focus-visible,*/
/*.coverage-card select:focus-visible {*/
/*   outline: 3px solid #93c5fd !important;*/
/*   outline-offset: 2px !important;*/
/*   box-shadow: none !important;*/
}
.coverage-card .btn-primary {
   background: linear-gradient(to right, #2563eb, #1d4ed8);
   border: none;
   padding: 16px 32px;
   transition: all 0.2s ease;
}

.coverage-card .btn-primary:hover {
   background: linear-gradient(to right, #1d4ed8, #1e40af);
}

.coverage-card .btn-primary:focus {
   outline: 3px solid #0066CC !important;
   outline-offset: 2px;
   box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.5);
}

.coverage-card .btn-primary:active {
   transform: translateY(1px);
}
@media (max-width: 768px) {
   .coverage-card .stat-card {
       margin-bottom: 16px;
   }

   .coverage-card .gradient-header {
       padding: 24px !important;
       background-size: cover;
   }

   .coverage-card .gradient-header h1,
   .coverage-card .gradient-header p {
       max-width: 100%;
   }

   .coverage-card .icon-wrapper {
       width: 32px;
       height: 32px;
   }
}

/* 
====================
Coverage Card End
====================
*/
/* 
=======================
LgButton Start
=======================
*/
.LgButton {
  padding: 0;
  width: 140px;
  margin-top: 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.21px;
  text-align: center;
  transition: all 0.3s ease;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
}

.button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Primary LgButton (Next Button Style) */
.LgButton.primary {
  background-color: #1570EF;
  color: #fff;
  overflow: hidden;
}

.LgButton.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.LgButton.primary:hover {
  background-color: #1264d7;
  transform: scale(1.05);
}

.LgButton.primary:hover::before {
  transform: translateX(200%);
}

.LgButton.primary:focus,
.LgButton.primary:focus-visible {
  outline: 2.5px solid #1570EF;
  outline-offset: 3px;
  background-color: #1570EF;
  transform: scale(1);
}

.LgButton.primary:active {
  background-color: #1264d7;
  transform: scale(1);
}

.LgButton.primary.disabled {
  background-color: #80B3E5;
  cursor: not-allowed;
}

/* Secondary LgButton (Back Button Style) */
.LgButton.secondary {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.LgButton.secondary:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.LgButton.secondary:focus,
.LgButton.secondary:focus-visible {
  outline: 2.5px solid #1570EF;
  outline-offset: 3px;
  background-color: transparent;
  color: #000;
}

.LgButton.secondary:active {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.LgButton.secondary.disabled {
  background-color: transparent;
  border-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

/* Custom Back Button Style */
.LgButton.custom-back {
  margin: 25px 0 0 auto;
  border: 1px solid #999;
  background-color: #fff;
  color: #000;
}

.LgButton.custom-back:hover {
  background-color: #f0f0f0;
  border-color: #000;
}

.LgButton.custom-back:focus,
.LgButton.custom-back:focus-visible {
  outline: 2.5px solid #0066CC;
  outline-offset: 3px;
  background-color: #f0f0f0;
}

/* Content styling */
.LgButton span {
  min-width: 60px;
}

.LgButton .button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.LgButton img {
  width: 20px;
  height: 20px;
}

.LgButton.custom-back span {
  font-size: 15px;
  font-weight: 700;
  padding-right: 4px;
}

/* Coverage Card Primary Button (Fixed Outline Offset) */
.coverage-card .LgButton.btn-primary {
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  border: none;
  padding: 16px 32px;
  transition: all 0.2s ease;
}

.coverage-card .LgButton.btn-primary:hover {
  background: linear-gradient(to right, #1d4ed8, #1e40af);
}

.coverage-card .LgButton.btn-primary:focus,
.coverage-card .LgButton.btn-primary:focus-visible {
  outline: 3px solid #0066CC !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.5);
  border: 2px solid white;
}

.coverage-card .LgButton.btn-primary:active {
  transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .button-container {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }
  
  .LgButton {
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }
  
  .LgButton.custom-back {
    width: 100%;
    margin: 12px 0 0 0;
  }
}

@media (max-width: 480px) {
  .LgButton {
    font-size: 14px;
    margin-top: 8px;
  }
  
  .button-container {
    gap: 8px;
  }
}

@media (max-width: 320px) {
  .LgButton {
    font-size: 13px;
    margin-top: 6px;
    border-radius: 50px;
  }
  
  .button-container {
    gap: 6px;
  }
  
  .LgButton.custom-back {
    font-size: 13px;
    margin-top: 6px;
  }
  
  .LgButton img {
    width: 16px;
    height: 16px;
  }
}

/* 
====================
LgButton End
====================
*/

/* 
======================
Progress Stepper Start
======================
*/
.progress-stepper-desktop {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
    padding: 0 2rem;
}

/* Added for new semantic structure */
.steps-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.steps-list li {
    flex: 1;
}

.progress-line {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E4E4E7;
    z-index: 1;
}

.progress-line-filled {
    position: absolute;
    top: 14px;
    left: 0;
    width: 25%;
    height: 2px;
    background-color: var(--theme-color);
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #E4E4E7;
    font-size: var(--font-size-sm);
    color: #71717A;
    position: relative;
    z-index: 2;
}

.step-marker.completed {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: white;
}

.step-marker.current {
    border-color: var(--theme-color);
    border-width: 2px;
    /*animation: pulse 2s infinite;*/
    animation: none !important;
    
}

.step-marker.current .dot {
    width: 6px;
    height: 6px;
    background-color: var(--theme-color);
    border-radius: 50%;
}

.step-content {
    text-align: center;
    width: 100%;
    margin-top: var(--spacing-l);
}

.step-title {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.step-description {
    font-family: var(--font-family-base);
    font-size: var(--font-size-sm);
    color: #71717A;
    margin: 0;
}

.checkmark {
    width: 14px;
    height: 14px;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 106, 169, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 106, 169, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 106, 169, 0);
    }
}

/* Mobile Progress Stepper */
.progress-stepper-mobile {
    display: none;
    background: white;
    padding: var(--spacing-l);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-l);
}

.mobile-title {
    font-size: var(--font-size-xxl);
    font-weight: 500;
    color: var(--text-primary);
}

.mobile-progress {
    font-size: var(--font-size-base);
    color: #71717A;
}

.mobile-progress-bar {
    width: 100%;
    height: 8px;
    background-color: #E4E4E7;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: var(--spacing-l);
}

.mobile-progress-fill {
    height: 100%;
    width: 25%;
    background-color: var(--theme-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.mobile-next {
    font-size: var(--font-size-lg);
    color: #71717A;
    margin-top: var(--spacing-m);
}

@media (max-width: 768px) {
    .progress-stepper-desktop {
        display: none;
    }
    .progress-stepper-mobile {
        display: block;
    }
}

/* Progress Stepper Dark Mode*/
.progress-stepper-desktop-darkmode {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
    padding: 0 2rem;
}

/* Added for dark mode semantic structure */
.progress-stepper-desktop-darkmode .steps-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.progress-stepper-desktop-darkmode .steps-list li {
    flex: 1;
}

.progress-stepper-desktop-darkmode .progress-line {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #004166;
    z-index: 1;
}

.progress-stepper-desktop-darkmode .progress-line-filled {
    position: absolute;
    top: 14px;
    left: 0;
    width: 25%;
    height: 2px;
    background-color: var(--theme-color);
    z-index: 1;
}

.progress-stepper-desktop-darkmode .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progress-stepper-desktop-darkmode .step-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #004166;
    border: 2px solid #005c8f;
    font-size: var(--font-size-sm);
    color: #9bb5c4;
    position: relative;
    z-index: 2;
}

.progress-stepper-desktop-darkmode .step-marker.completed {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: white;
}

.progress-stepper-desktop-darkmode .step-marker.current {
    border-color: var(--theme-color);
    border-width: 2px;
    animation: pulse-dark 2s infinite;
}

.progress-stepper-desktop-darkmode .step-marker.current .dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

.progress-stepper-desktop-darkmode .step-content {
    text-align: center;
    width: 100%;
    margin-top: var(--spacing-l);
}

.progress-stepper-desktop-darkmode .step-title {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
}

.progress-stepper-desktop-darkmode .step-description {
    font-family: var(--font-family-base);
    font-size: var(--font-size-sm);
    color: #9bb5c4;
    margin: 0;
}

.progress-stepper-desktop-darkmode .checkmark {
    width: 14px;
    height: 14px;
    color: white;
}

@keyframes pulse-dark {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 106, 169, 0.2);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 106, 169, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 106, 169, 0);
    }
}

/* Mobile Progress Stepper Dark Mode */
.progress-stepper-mobile-darkmode {
    display: none;
    background: #004166;
    padding: var(--spacing-l);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.progress-stepper-mobile-darkmode .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-l);
}

.progress-stepper-mobile-darkmode .mobile-title {
    font-size: var(--font-size-xxl);
    font-weight: 500;
    color: #ffffff;
}

.progress-stepper-mobile-darkmode .mobile-progress {
    font-size: var(--font-size-base);
    color: #9bb5c4;
}

.progress-stepper-mobile-darkmode .mobile-progress-bar {
    width: 100%;
    height: 8px;
    background-color: #002942;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: var(--spacing-l);
}

.progress-stepper-mobile-darkmode .mobile-progress-fill {
    height: 100%;
    width: 25%;
    background-color: var(--theme-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-stepper-mobile-darkmode .mobile-next {
    font-size: var(--font-size-lg);
    color: #9bb5c4;
    margin-top: var(--spacing-m);
}

@media (max-width: 768px) {
    .progress-stepper-desktop-darkmode {
        display: none;
    }
    .progress-stepper-mobile-darkmode {
        display: block;
    }
}
@media (prefers-reduced-motion: reduce) {
  .step-marker.current {
    animation: none !important;
  }
  
  .progress-line-filled,
  .mobile-progress-fill {
    transition: none !important;
  }
}

/* 
====================
Progress Stepper End
====================
*/

/* Screen Reader Only */
.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;
}



/* 
====================
Form Area Start
====================
*/
.form__area__top {
    margin-bottom: 25px;
}
.form__area__top p {
	font-size: 14px;
	line-height: 23px;
	text-align: left;
	margin-bottom: 25px;
}
.form__area__top a {
    gap: 5px;
    font-size: 14px;
    line-height: 20px;
    color: #0066CC;
}
.form__area__top h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}
.form__area {
	max-width: 1010px;
	/*padding: 30px;*/
}
.form__title {
    border-top: 2px solid #000000;
    padding-bottom: 5px;
}

.form__title h2 { /* Updated from .form__title p */
    font-size: 17px !important; 
    line-height: 1.4; 
    padding-top: 4px;
    color: #000000;
    margin-bottom: 0; 
    border-top: 5px solid #000000;
}

.form__title span {
    font-size: 13px;
    line-height: 23px;
    color: #333;
    padding-top: 10px;
}

.subtext {
    display: block;
    margin-top: 8px; 
}

.coverage__amount p {
    font-size: 16px;
}
.coverage__amount span {
    font-size: 14px;
    line-height: 23px;
    color: #1A1D1E;
    padding-top: 15px;
}

.form__area__wrapper .form {
    gap: 25px;
}
.detail__form .form__title h4 {
    color: #333;
    font-size: 14px;
    line-height: 25.5px; /* 182.143% */
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.input__block {
    gap: 20px;
}
.input__block .input__field {
    height: fit-content;
}
.input__field input, .input__field select, .input__field label {
	color: #1A1D1E;
	font-size: 15px;
	line-height: 23px;
	letter-spacing: -0.21px;
	color: #1A1D1E;
	font-weight: 600;
	margin-bottom: 4px;
}
.input__field label {
    display: flex;
    gap: 8px;
    align-items: center;
}
.input__field input,
.input__field select {
    height: auto !important;
    border-radius:  8px;
    border: 1px solid #888;
    background: #FFF;
    height: 56px !important;
    font-weight: 400;
}
.input__field input:focus, .input__field select:focus {
	box-shadow: none;
	outline: none;
	border: 2px solid #0066CC;
}
.input__field label .custom__tooltip img {
    width: 20px;
    height: 20px;
}
.input__field.dob {
	width: 136px !important;
}
.input__field.income input {
	width: 136px !important;
}

.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: #06C;
}

.form-check {
   min-height: unset !important;
   padding-left: 0 !important;
   margin-bottom: 0 !important;
}
/* 
====================
Form Area End
====================
*/



/* 
====================
Landing Cards Start
====================
*/
.landing_cards_container {
   display: flex;
   gap: var(--spacing-l);
   max-width: 1200px;
   padding: var(--spacing-m);
   margin: 0 auto;
}
.landing_card {
   background: white;
   border-radius: 16px;
   padding: var(--spacing-l);
   flex: 1;
   min-width: auto;
   width: 100%;
   position: relative;
   overflow: hidden;
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
               0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.landing_card_icon_wrapper {
   width: 64px;
   height: 64px;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: var(--spacing-l);
}
.landing_card:nth-child(1) .landing_card_icon_wrapper {
   background: linear-gradient(135deg, #ffafbd, #ffc3a0);
}
.landing_card:nth-child(2) .landing_card_icon_wrapper {
   background: linear-gradient(135deg, #96e6a1, #78dcfd);
}
.landing_card:nth-child(3) .landing_card_icon_wrapper {
   background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}
.landing_card_icon {
   width: 32px;
   height: 32px;
   fill: white;
}
.landing_card_title {
   font-size: var(--font-size-xxl);
   font-weight: 700;
   color: var(--primary-color);
   margin-bottom: var(--spacing-m);
   line-height: 1.3;
}
.landing_card_highlight {
   font-size: var(--font-size-sm);
   color: var(--text-primary);
   margin-bottom: var(--spacing-m);
   display: flex;
   align-items: center;
   gap: var(--spacing-s);
   font-weight: 600;
}
.landing_card_description {
   font-size: var(--font-size-base);
   line-height: 1.5;
   color: var(--text-primary);
}
.landing_card_check_icon {
   color: var(--primary-blue);
   margin-right: var(--spacing-xs);
}
@media (max-width: 900px) {
   .landing_cards_container {
       flex-direction: column;
       gap: var(--spacing-m);
   }
   
   .landing_card_title {
       font-size: var(--font-size-xl);
   }

   .landing_card_description {
       font-size: var(--font-size-sm);
   }
}
@media (max-width: 480px) {
   .landing_cards_container {
       padding: var(--spacing-s);
   }
   
   .landing_card {
       padding: var(--spacing-m);
   }

   .landing_card_icon_wrapper {
       width: 48px;
       height: 48px;
       margin-bottom: var(--spacing-m);
   }
}
/* 
====================
Landing Cards End
====================
*/

/*
====================
Member Cards Start
====================
*/
.member__customize__policy * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
.member__customize__policy h2 {
    font-size: 20px;
    font-weight: 700;
}
.member__customize__policy__body {
    background: #ffffff;
    min-height: 100vh;
}
.member__customize__policy__top {
    background: #ffffff;
    color: #1e293b;
    padding: 10px 0 0;
}
.member__customize__policy__container {
    max-width: 890px;
    margin: 0 auto;
    padding: 0 24px;
}
.member__customize__policy__coverage {
    background: #F8FAFC;
    border-radius: 42px;
    padding: 32px;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    border: 1px solid #E3E8EF;
    position: relative;
    margin-bottom: 32px;
}
.member__customize__policy__coverage-label {
    color: #64748b;
    font-size: 14px;
    margin-top: 8px;
}
.member__customize__policy__coverage-amount {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin: 8px 0 32px;
    background: linear-gradient(135deg, #000000 0%, #003453 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}
.member__customize__policy__monthly {
    position: absolute;
    top: 32px;
    right: 32px;
    text-align: right;
}
.member__customize__policy__payment {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
}
.member__customize__policy__payment-label {
    color: #64748b;
    font-size: 14px;
}
.member__customize__policy__placeholder {
    color: #64748b;
    font-size: 13px;
    margin-top: 16px;
}
.member__customize__policy__progress {
    position: static;
    margin-bottom: 8px;
}
.member__customize__policy__status {
    background: #0066cc;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

@media screen and (max-width: 414px) {
    .member__customize__policy__payment {
        font-size: 18px !important;
    }
}
/* iPhone SE, iPhone 12 Pro, Galaxy S8+, Galaxy Z Fold 5 */
@media screen and (max-width: 375px) {
    .member__customize__policy__coverage {
        padding: 20px;
        border-radius: 24px;
        margin-bottom: 16px;
    }
    
    .member__customize__policy__coverage-amount {
        font-size: 24px;
        margin: 8px 0 20px;
    }
    
    .member__customize__policy__monthly {
        position: static;
        text-align: left;
        margin-top: 12px;
    }
    
    .member__customize__policy__payment {
        font-size: 18px;
    }
    
    .member__customize__policy__container {
        padding: 0 16px;
    }
    
    .member__customize__policy__top {
        padding: 20px 0 40px;
    }
    
    .member__customize__policy__coverage-label {
        font-size: 14px !important;
    }
}
/* General small device optimization */
@media screen and (max-width: 390px) {
    .member__customize__policy__coverage {
        padding: 24px;
        border-radius: 32px;
    }
    
    .member__customize__policy__coverage-amount {
        font-size: 28px;
    }
    
    .member__customize__policy__payment {
        font-size: 18px !important;
    }
}
/* For very small devices (320px and below) */
@media screen and (max-width: 320px) {
    .member__customize__policy__coverage {
        padding: 16px;
        border-radius: 20px;
    }
    
    .member__customize__policy__coverage-amount {
        font-size: 22px;
        margin: 8px 0 16px;
    }
    
    .member__customize__policy__payment {
        font-size: 18px !important;
    }
}
/*
====================
Member Cards End
====================
*/

/* 
=======================
Dependent Cards Start
=======================
*/
.dependent__policy * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.dependent__policy__body {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.dependent__policy__coverage {
    background: #F8FAFC;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    border: 1px solid #E3E8EF;
    position: relative;
    width: calc(50% - 16px);
    min-width: 300px;
    flex: 1;
}

.dependent__policy__coverage-label {
    color: #5F6E85;
    font-size: clamp(12px, 0.875rem, 14px);
}

.dependent__policy__coverage-amount {
    font-size: clamp(28px, 2.25rem, 36px);
    font-weight: 700;
    line-height: 1.1;
    margin: 8px 0 20px;
    background: linear-gradient(135deg, #000000 0%, #003453 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dependent__policy__monthly {
    position: absolute;
    top: 24px;
    right: 24px;
    text-align: right;
}

.dependent__policy__payment {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
}

.dependent__policy__payment-label {
    color: #5F6E85;
    font-size: clamp(12px, 0.8125rem, 13px);
}

.dependent__policy__type {
    background: #0066cc;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: clamp(12px, 0.8125rem, 13px);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
}

.dependent__policy__slider-placeholder {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    min-height: 60px;
    border: 1px dashed #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5F6E85;
    font-size: clamp(12px, 0.875rem, 14px);
}

/* Tablet and smaller desktop screens */
@media screen and (max-width: 768px) {
    .dependent__policy__body {
        flex-direction: column;
        gap: 24px;
    }
    
    .dependent__policy__coverage {
        width: 100%;
        min-width: unset;
    }

    .dependent__policy__payment {
        font-size: 18px;
    }
}

/* Mobile devices */
@media screen and (max-width: 390px) {
    .dependent__policy__coverage {
        padding: 20px;
        border-radius: 20px;
    }
    
    .dependent__policy__monthly {
        position: static;
        text-align: left;
        margin-top: 0;
        margin-bottom: 24px;
    }
    
    .dependent__policy__payment {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .dependent__policy__coverage-amount {
        margin: 8px 0 16px;
    }
    
    .dependent__policy__slider-placeholder {
        margin-top: 24px;
    }
}

/* Small mobile devices (iPhone SE, etc.) */
@media screen and (max-width: 375px) {
    .dependent__policy__coverage {
        padding: 16px;
        border-radius: 16px;
    }
}

/* Extra small mobile devices */
@media screen and (max-width: 320px) {
    .dependent__policy__coverage {
        padding: 12px;
        border-radius: 12px;
    }

    .dependent__policy__coverage-amount {
        font-size: clamp(24px, 1.75rem, 28px);
    }

    .dependent__policy__type {
        font-size: 12px;
        padding: 3px 10px;
    }
}
/* 
=======================
Dependent Cards End
=======================
*/

/* 
==============================
Bridge Dependent Message Start
==============================
*/

.policy__bridge__message {
    background: rgba(59, 130, 246, 0.04);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.policy__bridge__message p {
    margin: 0;
    padding: 0;
    position: relative;
    padding-left: 24px;
}

.policy__bridge__message p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #3B82F6;
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    .policy__bridge__message {
        margin: 24px 0;
        padding: 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 320px) {
    .policy__bridge__message {
        margin: 16px 0;
        padding: 16px;
        font-size: 13px;
    }
    
    .policy__bridge__message p {
        padding-left: 16px;
    }

    .policy__bridge__message p::before {
        height: 20px;
        width: 3px;
    }
}

/* 
=============================
Bridge Dependent Message End
=============================
*/


/*
==============================
Policy Total Ver2 Start
==============================
*/

.policy__total__ver2 {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 16px;
    padding: 24px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #CBD5E1;
}

.policy__total__ver2-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.policy__total__ver2-label::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #3B82F6;
    border-radius: 4px;
}

.policy__total__ver2-label span {
    color: #475569;
    font-size: 16px;
    font-weight: 500;
}

.policy__total__ver2-amount {
    font-size: 40px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 24px;
}

.policy__total__ver2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.policy__total__ver2-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px;
}

.policy__total__ver2-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.policy__total__ver2-icon {
    color: #3B82F6;
    font-size: 18px;
}

.policy__total__ver2-item-label {
    color: #475569;
    font-size: 14px;
}

.policy__total__ver2-item-amount {
    font-size: 24px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.policy__total__ver2-item-rate {
    font-size: 14px;
    color: #64748B;
}

@media (max-width: 768px) {
    .policy__total__ver2 {
        padding: 20px;
    }
    
    .policy__total__ver2-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .policy__total__ver2-amount {
        font-size: 32px;
    }
    
    .policy__total__ver2-item-amount {
        font-size: 20px;
    }
}

/*
==============================
Policy Total Ver2 End
==============================
*/



/* 
=============================
Coverage Breakdown Start
=============================
*/
.coverage-breakdowns {
  background-color: rgba(var(--bs-primary-rgb), 0.9);
  color: white;
  padding: 0.75rem 1rem;
  display: inline-flex;
  gap: 1rem;
  border-radius: 0 0 0.375rem 0.375rem;
  margin-left: 10px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.05);
}

@media (max-width: 576px) {
  .coverage-breakdowns {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    gap: 0.75rem;
  }
}

@media (max-width: 380px) {
  .coverage-breakdowns {
    font-size: 0.75rem;
    padding: 0.5rem;
    gap: 0.5rem;
  }
}

/* Optional: to ensure spans space out evenly when wrapped */
.coverage-breakdowns span {
  white-space: nowrap;
  display: inline-block;
}


/*
=============================
Coverage Breakdown End
=============================
*/

.accordion-button {
  &:focus {
    z-index: 3;
    outline: none !important;
    box-shadow: 0 0 0 3px #2C61CC !important;
    border-radius: 8px;
  }

  &:focus:not(:focus-visible) {
    box-shadow: none !important;
    border-radius: 0;
  }

  &:focus-visible {
    box-shadow: 0 0 0 3px #2C61CC !important;
    border-radius: 8px;
  }
}


/* 
=======================
Back/Next Button Start
=======================
*/

.btn.btn-fill {
  padding: 0;
  width: 140px;
  margin-top: 25px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.21px;
  text-align: center;
  transition: all 0.3s ease;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.nextButton.btn.btn-fill {
  position: relative;
  background-color: #1570EF;
  color: #fff;
  overflow: hidden;
}

.nextButton.btn.btn-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.nextButton.btn.btn-fill:hover {
  background-color: #1264d7;
  transform: scale(1.05);
}

.nextButton.btn.btn-fill:hover::before {
  transform: translateX(200%);
}

.nextButton.btn.btn-fill:focus {
  outline: 2.5px solid #1570EF;
  outline-offset: 2px;
  background-color: #1570EF;
  transform: scale(1);
}

.nextButton.btn.btn-fill:active {
  background-color: #1264d7;
  transform: scale(1);
}

.nextButton.btn.btn-fill.disabled {
  background-color: #80B3E5;
  cursor: not-allowed;
}

.backButton.btn.btn-fill {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.backButton.btn.btn-fill:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.backButton.btn.btn-fill:focus {
  outline: 2.5px solid #1570EF;
  outline-offset: 2px;
  background-color: transparent;
  color: #000;
}

.backButton.btn.btn-fill:active {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.backButton.btn.btn-fill.disabled {
  background-color: transparent;
  border-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

.btn.btn-fill span {
  min-width: 60px;
}

.btn.btn-fill .button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nextButton.btn.btn-fill img {
  width: 20px;
  height: 20px;
}

.backButton.btn.btn-fill img {
  width: 20px;
  height: 20px;
}

.custom-back-btn {
  height: 48px;
  width: 140px;
  margin: 25px 0 0 auto;
  border: 1px solid #999;
  border-radius: 100px;
  background-color: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.21px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-back-btn:hover {
  background-color: #f0f0f0;
  border-color: #000;
}

.custom-back-btn:focus {
  outline: 2px solid #066C;
  outline-offset: 2px;
  background-color: #f0f0f0;
}

.custom-back-btn span {
  font-size: 15px;
  font-weight: 700;
  padding-right: 4px;
}

@media (max-width: 768px) {
  .button-container {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }

  .btn.btn-fill {
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }

  .custom-back-btn {
    width: 100%;
    margin: 12px 0 0 0;
  }
}

@media (max-width: 480px) {
  .btn.btn-fill {
    font-size: 14px;
    margin-top: 8px;
  }

  .button-container {
    gap: 8px;
  }
}

@media (max-width: 320px) {
  .btn.btn-fill {
    font-size: 13px;
    margin-top: 6px;
    border-radius: 50px;
  }

  .button-container {
    gap: 6px;
  }

  .custom-back-btn {
    font-size: 13px;
    margin-top: 6px;
  }

  .btn.btn-fill img,
  .custom-back-btn img {
    width: 16px;
    height: 16px;
  }
}

/* 
====================
Back/Next Button End
====================
*/

/* 
====================
Footer End
====================
*/

@media (min-width: 1200px) {  /* xl breakpoint */
  .condition-form > div {
    flex-basis: 0;
    min-width: 0;
  }
}

/* 
====================
Signature Start
====================
*/
#memberSignature {
   background: #f8f9fa;
   padding: 32px;
   border-radius: 8px;
   border: 1px solid #dee2e6;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
   margin: 24px 0;
   transition: all 0.3s ease;
   max-width: 100%;
   box-sizing: border-box;
}

#memberSignature p {
   font-family: 'Saucy Jack', cursive;
   font-size: 42px;
   color: #2c3e50;
   margin: 0;
   padding-bottom: 12px;
   padding-left: 5px;
   position: relative;
   display: inline-block;
   transform: rotate(-1deg);
   line-height: 1.2;
   text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
   opacity: 0;
   animation: revealSignature 2s forwards;
   word-break: break-word;
   max-width: 100%;
}

#memberSignature p::after {
   content: '';
   position: absolute;
   bottom: 12px;
   left: 0;
   width: 100%;
   height: 2px;
   background: #2c3e50;
   opacity: 1;
   animation: drawLine 2.5s ease forwards;
}

@keyframes revealSignature {
   0% {
       opacity: 0;
       clip-path: polygon(0 0, 0% 100%, 0 100%, 0 0);
   }
   100% {
       opacity: 1;
       clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }
}

@keyframes drawLine {
   0% {
       width: 0;
   }
   100% {
       width: 100%;
   }
}

#signature-heading {
   color: #333333; 
   margin-bottom: 16px;
   font-weight: 600;
}

.large-checkbox {
   width: 24px;
   height: 24px;
   border: 2px solid #333333;
   border-radius: 4px;
   cursor: pointer;
   transition: all 0.2s ease;
}

.large-checkbox:checked {
   background-color: #0066ff;
   border-color: #0066ff;
}

.large-checkbox:focus {
   outline: none;
   border-color: #0066ff;
   box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0066ff;
}

.form-check-label {
   color: #333333;
   font-size: 16px;
}

.container {
   margin-bottom: 32px;
   width: 100%;
   max-width: 100%;
   padding-left: 16px;
   padding-right: 16px;
   box-sizing: border-box;
}

#memberSignature:hover {
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
   transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
   #memberSignature {
       padding: 24px;
   }
   #memberSignature p {
       font-size: 36px;
   }
   .container {
       padding: 0 16px;
   }
   .form-check-label {
       font-size: 14px;
   }
}

@media (max-width: 576px) {
   #memberSignature {
       padding: 16px;
       margin: 16px 0;
   }
   #memberSignature p {
       font-size: 28px;
       padding-left: 3px;
   }
   #signature-heading {
       font-size: 18px;
   }
   .form-check-label {
       font-size: 13px;
   }
}

/* Additional breakpoint for very small screens */
@media (max-width: 320px) {
   #memberSignature {
       padding: 12px;
       margin: 12px 0;
   }
   #memberSignature p {
       font-size: 24px;
       padding-left: 2px;
       transform: rotate(0deg); /* Remove rotation on very small screens */
   }
   #signature-heading {
       font-size: 16px;
   }
   .container {
       padding: 0 8px;
   }
   .form-check-label {
       font-size: 12px;
   }
   .large-checkbox {
       width: 20px;
       height: 20px;
   }
}

/* Error styling */
.is-invalid {
    border-color: #dc3545 !important;
    border-width: 3px !important;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25) !important;
}

.alert-danger {
   color: #cc1231;
   font-size: 16px;
   font-weight: 600;
   --bs-alert-bg: none !important;
   --bs-alert-border-color: none !important;
}

#MemberESign-error {
    font-size: 14px;
    margin-top: 4px;
}

/* High Contrast & Print styles */
@media (prefers-contrast: high) {
   #memberSignature {
       border: 2px solid #000;
       box-shadow: none;
   }
   #memberSignature p {
       color: #000;
       text-shadow: none;
   }
   #memberSignature p::after {
       background: #000;
   }
   #signature-heading {
       color: #000;
   }
   .form-check-label {
       color: #000;
   }
   .large-checkbox {
       border: 2px solid #000;
   }
   .large-checkbox:checked {
       background-color: #000;
       border-color: #000;
   }
   .large-checkbox:focus {
       border-color: #000;
       box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
   }
}

@media print {
   #memberSignature {
       box-shadow: none;
       border: 1px solid #000;
   }
   #memberSignature p {
       color: #000;
       text-shadow: none;
   }
   #memberSignature p::after {
       background: #000;
   }
}
/* 
====================
Signature End
====================
*/

/* 
======================
Thank You Page Start
======================
*/
:root {
  --primary-blue-rgb: 59, 130, 246;
}

.thank-you {
    width: 100%;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.thank-you-hero {
    position: relative;
    flex: 1;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.thank-you-hero__background {
    position: absolute;
    inset: 0;
    background-image: url('https://memberenroll-stage.com/uploads/00001358/jumbotron-background-thankyou.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 0.3s ease-out;
}

.thank-you-hero:hover .thank-you-hero__background {
    transform: scale(1.0);
}

.thank-you-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, 
        rgba(16, 68, 112, 0.95) 0%,
        rgba(16, 68, 112, 0.85) 40%,
        rgba(16, 108, 183, 0.75) 100%
    );
}

.thank-you-hero__content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 36px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.thank-you-hero__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.thank-you-hero__description {
    font-size: 18px;
    color: var(--dark-text-primary);
    line-height: 1.5;
    max-width: 600px;
    margin: 0;
    opacity: 0.9;
}

/* Card Section */
.thank-you__card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: clamp(24px, 4vw, 36px);
}

.thank-you__icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.thank-you__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 36px;
}

.thank-you__application-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 36px;
    background-color: var(--background-gray);
    padding: 12px 24px;
    border-radius: 12px;
}

.thank-you__application-number {
    margin: 0;
    color: var(--text-primary);
}

.thank-you__number {
    font-weight: 600;
    font-family: monospace;
}

/* Copy Button */
.thank-you__copy-button {
    background: none;
    border: none;
    padding: 3px;
    cursor: pointer;
    position: relative;
    color: var(--primary-blue);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    outline: none;
}

.thank-you__copy-button:focus-visible {
    outline: 2px solid #2C61CC !important;
    outline-offset: 2px;
    border-radius: 4px;
}

.thank-you__copy-button:hover {
    color: var(--secondary-blue);
}

.thank-you__copy-icon,
.thank-you__check-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

.thank-you__check-icon {
    position: absolute;
    left: 8px;
    opacity: 0;
    transform: scale(0.5);
}

.thank-you__copy-button.copied .thank-you__copy-icon {
    opacity: 0;
    transform: scale(0.5);
}

.thank-you__copy-button.copied .thank-you__check-icon {
    opacity: 1;
    transform: scale(1);
}

.thank-you__copy-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    white-space: nowrap;
}

.thank-you__copy-button.copied .thank-you__copy-tooltip {
    opacity: 1;
    visibility: visible;
}

.thank-you__message {
    text-align: center;
    color: var(--text-primary);
    max-width: 672px;
    margin: 0 auto;
}

.thank-you__message--bold {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.thank-you__details {
    font-size: var(--font-size-sm);
}

.thank-you__hint {
    text-align: center;
    color: var(--text-primary);
    font-size: 14px;
    opacity: 0.8;
    margin-top: 36px;
}
.thank-you__button {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    padding: var(--spacing-l) var(--spacing-xl);
    border-radius: var(--card-radius);
    border: none;
    display: block;
    margin: 0 auto;
    font-size: 20px;
    width: 350px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
}

.thank-you__button:hover {
    background-color: var(--secondary-blue);
}

.thank-you__button:hover:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .7);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.7;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .thank-you-hero__content {
        padding: 24px;
    }

    .thank-you__card {
        padding: 24px;
    }

    .thank-you__application-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .thank-you__copy-button {
        margin-top: 6px;
    }

    .thank-you__button {
        width: 100%;
        max-width: 350px;
        font-size: 18px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .thank-you__button {
        font-size: 16px;
        padding: 12px 16px;
    }
}

@media (max-width: 320px) {
    .thank-you__button {
        font-size: 14px;
        padding: 10px 14px;
        max-width: 280px;
    }
}


/* 
====================
Thank You Page End
====================
*/

/* 
====================
Footer Start
====================
*/

.footer__area {
    padding: 24px 0px 40px;
    background-color: #003453;
}

.footer__wrapper p, .footer__wrapper a {
    color: #FFFFFF;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: -0.21px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all .3s;
    text-decoration: none !important;
}

.footer__wrapper .footer__copy {
    margin-top: 12px;
}

.footer__menu {
    padding: 35px 0px;
}

.footer__menu__link {
    gap: 32px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer__wrapper a:hover {
    color: #f88d2b;
}

.footer__wrapper a:focus {
    outline: 3px solid #f88d2b;
    outline-offset: 2px;
}

.footer__wrapper a::before,
.footer__wrapper a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    transform-origin: 100% 50%;
}

.footer__wrapper a:hover::before,
.footer__wrapper a:focus::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

.footer__wrapper a.footer__link--animated::before,
.footer__wrapper a.footer__link--animated::after {
}

/* 
====================
Footer End
====================
*/


/* 
====================
Thank You Page Start
====================
*/

.thank-you {
    width: 100%;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.thank-you-hero {
    position: relative;
    flex: 1;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.thank-you-hero__background {
    position: absolute;
    inset: 0;
    background-image: url('https://memberenroll-stage.com/uploads/00001358/jumbotron-background-thankyou.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 0.3s ease-out;
}

.thank-you-hero:hover .thank-you-hero__background {
    transform: scale(1.0);
}

.thank-you-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, 
        rgba(16, 68, 112, 0.95) 0%,
        rgba(16, 68, 112, 0.85) 40%,
        rgba(16, 108, 183, 0.75) 100%
    );
}

.thank-you-hero__content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 36px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.thank-you-hero__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.thank-you-hero__description {
    font-size: 18px;
    color: var(--dark-text-primary);
    line-height: 1.5;
    max-width: 600px;
    margin: 0;
    opacity: 0.9;
}

/* Card Section */
.thank-you__card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: clamp(24px, 4vw, 36px);
}

.thank-you__icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.thank-you__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 36px;
}

.thank-you__application-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 36px;
    background-color: var(--background-gray);
    padding: 12px 24px;
    border-radius: 12px;
}

.thank-you__application-number {
    margin: 0;
    color: var(--text-primary);
}

.thank-you__number {
    font-weight: 600;
    font-family: monospace;
}

/* Copy Button */
.thank-you__copy-button {
    background: none;
    border: none;
    padding: 3px;
    cursor: pointer;
    position: relative;
    color: var(--primary-blue);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    outline: none;
}

.thank-you__copy-button:focus-visible {
    outline: 2px solid #2C61CC !important;
    outline-offset: 2px;
    border-radius: 4px;
}

.thank-you__copy-button:hover {
    color: var(--secondary-blue);
}

.thank-you__copy-icon {
    width: 20px;
    height: 20px;
}

.thank-you__copy-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    white-space: nowrap;
}

.thank-you__copy-button.copied .thank-you__copy-tooltip {
    opacity: 1;
    visibility: visible;
}

.thank-you__message {
    text-align: center;
    color: var(--text-primary);
    max-width: 672px;
    margin: 0 auto;
}

.thank-you__message--bold {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.thank-you__details {
    font-size: var(--font-size-sm);
}

.thank-you__hint {
    text-align: center;
    color: var(--text-primary);
    font-size: 14px;
    opacity: 0.8;
    margin-top: 36px;
}


/* Responsive */
@media (max-width: 768px) {
    .thank-you-hero__content {
        padding: 24px;
    }

    .thank-you__card {
        padding: 24px;
    }

    .thank-you__application-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .thank-you__copy-button {
        margin-top: 6px;
    }
}
/* 
====================
Thank You Page End
====================
*/

/* 
==========================
Button State Start
==========================
*/
/* Base Button State Styles */
.buttonState {
    position: relative;
    outline: none;
    margin: 6px; /* Add margin to accommodate focus outline offset */
}
.buttonState span span {
    padding: 10px 8px 10px 42px !important;
    color: #333;
    font-weight: 400;
    font-size: 15px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"%3E%3Ccircle cx="18" cy="18" r="16" fill="none" stroke="%237F8489" stroke-width="2"/%3E%3C/svg%3E');
    background-size: 36px 36px;
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    border-radius: 4px; /* Add border radius for better focus appearance */
}
/* Remove Background for Nested Spans */
.buttonState span span span,
.buttonState.active span span {
    background: none;
    padding: 0 !important;
}
/* Active State */
.buttonState.active span {
    padding: 10px 8px 10px 42px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"%3E%3Ccircle cx="18" cy="18" r="18" fill="%23007AFF"/%3E%3Cpath 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.6c0.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"/%3E%3C/svg%3E');
    background-size: 36px 36px;
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    border-radius: 4px;
}
/* Focus States - Apply outline to the button container with offset to avoid overlap */
.buttonState:focus {
    outline: 2px solid #007AFF !important;
    outline-offset: 4px !important;
    border-radius: 8px;
}
.buttonState:focus-visible {
    outline: 2px solid #2864F6 !important;
    outline-offset: 4px !important;
    border-radius: 8px;
}
.buttonState:focus:not(:focus-visible) {
    outline: 2px solid #2864F6 !important;
    outline-offset: 4px !important;
    border-radius: 8px;
}
/* 
==========================
Button State End
==========================
*/

/* 
==========================
Product Radio Start
==========================
*/
.productField {
    min-height: 54px;
    float: left;
    display: flex;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
}

.productRadio .productField {
    margin-bottom: 36px;
}

.benefitRadio .productField {
    margin-bottom: 4px;
}

.yesNoDiv .productField {
    min-height: 32px;
}

.stackedRadio .productField {
    display: block;
}

label, .spacer {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    margin-top: 6px;
}

@media screen and (max-width: 1024px) {
    .productField {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .productField label {
        margin: 0;
        min-height: 54px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .productField {
        gap: 1px;
    }
}

@media screen and (max-width: 480px) {
    .productField {
        gap: 1px;
    }
    
    .productField label {
        min-height: 48px;
    }
}

@media screen and (max-width: 320px) {
    .btn-block .productField {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
    
    .btn-block .productField label {
        display: block;
        white-space: nowrap;
        min-height: 54px;
        margin: 0;
    }
}
/* 
==========================
Product Radio End
==========================
*/

/* 
==========================
Payment Alert Start
==========================
*/


.payment-alert {
  background-color: rgb(239 246 255);
  color: rgb(59 130 246);
  border: 1px solid;
  border-radius: 6px;
}

.payment-alert svg {
  color: rgb(59 130 246);
  flex-shrink: 0;
}

.payment-alert p {
  color: rgb(30 58 138);
}

@media (max-width: 575px) {
  .payment-alert {
    font-size: 14px;
  }
}

/* 
==========================
Payment Alert End
==========================
*/

/* 
==========================
Test Cals
==========================
*/

.insurance-form {
    width: 100%;
    margin: 20px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    background-color: #ffffff;
}

.header-cell {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    font-size: 13px;
    color: #333;
}

.category-column {
    width: 200px;
    text-align: right;
}

.data-row td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
}

.category-cell {
    font-weight: bold;
    font-size: 13px;
    color: #333;
    width: 200px;
    text-align: right;
}

.details-cell {
    font-size: 13px;
    color: #555;
}

.details-cell strong {
    color: #333;
}

.highlight {
    color: #1570EF;
}

/* Profile Information Sections */
.member-profile,
.spouse-profile {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
}

.member-profile {
    background-color: #ffffff;
}

.spouse-profile {
    background-color: #f0f9ff;
}

.member-profile td,
.spouse-profile td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.member-profile .category-cell,
.spouse-profile .category-cell {
    font-weight: bold;
    font-size: 13px;
    color: #333;
    width: 200px;
    text-align: right;
}

.member-profile .details-cell,
.spouse-profile .details-cell {
    font-size: 13px;
    color: #555;
}

.member-profile strong,
.spouse-profile strong {
    color: #333;
}

.member-profile .highlight,
.spouse-profile .highlight {
    color: #1570EF;
}

/* 
==========================
Test Cals End
==========================
*/

