@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
img { border: 0; box-shadow: none; }
form {margin : 0;}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('SourceSansPro-Regular.woff2') format('woff2'),
        url('SourceSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('SourceSansPro-SemiBold.woff2') format('woff2'),
        url('SourceSansPro-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('SourceSansPro-Bold.woff2') format('woff2'),
        url('SourceSansPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
body {
  position: relative;
  transition: all .4s;
  color: #000;
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.4;
}
h1, h2, h3, h4, h5, h6 {
  color: #003A5D;
}
p {
    margin: 0;
    font-size: 16px;
    line-height: 140%;
    color: #33617D;
}
html {
	font-size:100%;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%
}
input,
textarea,
button,
select {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #ccc;
  font-family: inherit;
}
input:hover,
textarea:hover,
button:hover,
select:hover,
input:focus,
textarea:focus,
button:focus,
select:focus,
input:active,
textarea:active,
button:active,
select:active {
  outline: none !important;
  box-shadow: none !important;
}



.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.dspot-container {
  max-width: 1170px;
  margin: auto;
}
.dspot-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* height: 80px; */
    border-bottom: 1px solid #ECF1F3;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 50;
}
.dspot-header .dspot-container { width: 100%; display: flex; justify-content: space-between; align-items: center;}
.logo {
    width: 184px;
    height: 36px;
    background-image: url("../images/dspot-logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin: 16px 0;
}
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 16px 0;
}
.icon-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #ECF1F3;
    border-radius: 10px;
    background: #F2FCFB;
    cursor: pointer;
}
.icon-btn:focus {
    outline: 3px solid #a3c7ff;
}
.dspothelp-icon {
    background: url("../images/dspot-help.svg");
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
}
.close-icon {
    background: url("../images/dspot-close.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    width: 22px;
    height: 22px;
    border: none;
    cursor: pointer;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(0, 58, 93, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 99;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0 32px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid #CCD8DF;
  color: #33617D;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
/* Hover */
.btn-outline:hover:not(.dspot-disabled) {
  background: #00C8B3;
  color: #fff;
}
.btn-outline:focus-visible {
  outline: 2px solid #00C8B3;
  outline-offset: 3px;
}
.btn-outline.dspot-active {
  background: #00C8B3;
  color: #fff;
  border-color: #00C8B3;
}
.btn-outline.dspot-active:hover {
  background: #fff;
  color: #00C8B3;
  border-color: #00C8B3;
}
.btn-outline.dspot-disabled,
.btn-outline[aria-disabled="true"] {
  opacity: 1;
  pointer-events: none;
  cursor: not-allowed;
  background: rgba(0, 58, 93, 0.1);
  color: rgba(0, 58, 93, 0.3);
  border-color: rgba(0, 58, 93, 0.1);
}
.btn-outline svg { width: 16px; height: 16px; position: relative; top: 2px;}
.btn-dspotlink {color: #00C7B2; text-align: center; font-size: 18px;
  line-height: 20px;  font-weight: 600; text-decoration: none; padding: 12px 16px;}

.otbtn-sml { font-size: 14px; padding: 10px 14px;}
.otbtn-sml svg { width: 14px; height: 14px;}


.dspot-btngroup {display: flex; gap: 8px; flex-direction: column;}

.dspot-btnborder { border-color: #00C8B3; color: #00C8B3;}

.dspot-modalbotbtn { margin-top: 20px; text-align: center;}
.dspot-modalbotbtn .dspot-btnborder { min-width: 180px;}
.dspot-center {text-align: center;}

.dspot-back-btn {
    position: relative;
    padding-left: 44px;
}
.dspot-back-btn::before {
    content: "";
    background: url(../images/dspot-arrowback.svg) no-repeat center;
    background-size: 24px 24px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}
.dspot-back-btn:hover::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(25%) hue-rotate(70deg) brightness(108%) contrast(108%);
}
.dspot-prev-btn {
  position: relative;
  padding-right: 44px;
}
.dspot-prev-btn::before {
  content: "";
  background: url(../images/dspot-arrowprev.svg) no-repeat center;
  background-size: 24px 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.dspot-prev-btn:hover:not(.dspot-disabled)::before {
  filter: brightness(0) saturate(100%) invert(77%) sepia(28%) saturate(189%) hue-rotate(159deg) brightness(90%) contrast(84%);
}
.dspot-prev-btn.dspot-active::before {
  filter: brightness(0) saturate(100%) invert(100%);
}
.dspot-prev-btn.dspot-active:hover::before {
  filter: brightness(0) saturate(100%) invert(50%) sepia(68%) saturate(1115%) hue-rotate(134deg) brightness(98%) contrast(105%);
}
.dspot-prev-btn.dspot-disabled::before,
.dspot-prev-btn[aria-disabled="true"]::before {
  opacity: 0.4;
  filter: none;
}

.dspot-main {
    padding: calc(80px + 46px) 0 calc(102px + 1rem);
    width: 100%;
    max-width: calc(100% - 2rem);
    margin: auto;
}
.dspot-main a.dspotlink { color: #00C8B3; font-weight: 600;}

.dspotfaq-panel {
    position: fixed;
    top: 0;
    right: -560px;
    width: 520px;
    height: 100vh;
    background: #ffffff;
    transition: right .4s ease;
    z-index: 999;
}
.dspotfaq-panel.open {
    right: 0;
}
.dspotfaq-title {
    margin-bottom: 16px;
}
.dspotfaq-contact {
    margin-top: 24px;
    padding: 20px;
    background: #F7FBFF;
    border-radius: 12px;
}
.dspotfaq-contact h3 {
    margin: 0 0 8px;
    font-size: 16px; font-weight: 600; color: #003A5D;
}
.dspotfaq-handle {
    position: absolute;
    left: -40px;               
    bottom:0;
    width: 40px;               
    height: 140px;  
    background: none;
    transform: translateY(-100px);            
    /* background-image: url("images/dspot-faqcurve.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; */
    border: none;
    cursor: pointer;
}
.dspotfaq-handle::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 140px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
     background-image: url("../images/dspot-faqcurve.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .3s;
}
.dspotoverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 980; 
}
.dspotfaq-panel.open ~ .dspotoverlay,
.dspotoverlay.active {
    opacity: 1;
    visibility: visible;
}
.helpmain {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 40px 40px 40px;
  overflow-y: auto;
}
body.no-scroll {
    overflow: hidden;
}
.dspot-faqaccordion {
            width: 100%;
        }
        .dspot-faqaccordion-item {
            margin-bottom: 12px;
            box-shadow: 1px 2px 30px rgba(13, 15, 70, 0.05);
            border-radius: 12px;
            overflow: hidden;
            border: 0;
        }
        .dspot-faqaccordion-header {
            margin: 0;
        }
        .dspot-faqaccordion-button {
            width: 100%;
            padding: 16px 42px 16px 16px;
            background-color: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            color: #33617D;
            cursor: pointer;
            position: relative;
            text-align: left;
            transition: color 0.3s ease;
        }
        .dspot-faqaccordion-button::after {
            content: '';
            position: absolute;
            right: 16px;
            /* top: 50%; */
            top: 24px;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background: #fff;
            border-radius: 4px;
            background-repeat: no-repeat;
            background-position: center;
            background-image: url("../images/dspot-faqarrow.svg");
            transition: all 0.3s ease;
        }

        .dspot-faqaccordion-button.active::after {
            background-image: url("../images/dspot-faqarrowactive.svg");
            background-repeat: no-repeat;
            background-position: center;
        }

        .dspot-faqaccordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .dspot-faqaccordion-body {
            padding: 0px 16px 18px;
            font-size: 12px;
            font-weight: 400;
            color: #33617D;
            line-height: 120%;
        }
        .dspot-faqaccordion-body p {font-size: 12px; font-weight: 400; color: #33617D; line-height: 120%; margin-bottom: 4px;}
        .dspot-faqaccordion-body ul li {margin-left: 12px;}
        .dspotfc-botpan {display: flex; align-items: center; gap: 16px;}
        .dspotfc-botpan p, .dspotfc-botpan p a {font-size:14px; font-weight: 400; color: #003A5D; text-decoration: none;}
        .dspotfc-botpan p { display: flex; gap: 8px; align-items: center; }
        .dspotfc-botpan p svg { color: #00C7B2; width: 16px; height: 16px; position: relative; top: 2px;}

.dspot-panwrapper { display: flex; gap: 60px; align-items: start;}
.dspot-pansteps { width: 406px;flex-shrink: 0; flex-grow: 0;}
.dspot-panselection {flex-grow: 1;}

h1.dspot-head { font-size: 36px; line-height: 120%; font-weight: 700; color: #003A5D; letter-spacing: -2%; margin-bottom: 12px;}
.dspot-panelbox {background: #fff; padding: 32px; border-radius: 12px; border: 1px solid rgba(0, 58, 93, 0.1);
box-shadow: 0 4px 25px rgba(184, 198, 218, 0.25);}
h2.dspot-subhead {font-size: 20px; font-weight: 700;  line-height: 120%; margin-bottom: 24px;}

ol.dspot-stepnum { 
  list-style: none; 
  padding: 0;
  margin:24px 0 0;
}
ol.dspot-stepnum li {
  counter-increment: item;
  border: 1px solid rgba(28, 121, 255, 0.25);
  padding: 14px 16px;
  border-radius: 12px; 
  margin-bottom: 16px;
}
ol.dspot-stepnum li:last-child {margin-bottom: 0;}

ol.dspot-stepnum li h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 20px; line-height: 120%; color: #003A5D; font-weight: 600;
}

ol.dspot-stepnum li h3::before {
  content: counter(item, decimal-leading-zero) "";
  font-weight: inherit;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: #308ABA;
}




.dspot-proceedopt {}
  .dspot-option {
      display: flex;
      align-items: flex-start;
      padding: 20px 0;
      border: 1px solid #E9E9E9;
      border-radius: 10px;
      padding: 16px;
      margin-bottom: 12px;
  }
  .dspot-option:last-child {
      margin-bottom: 0;
  }


  .dspot-option input[type="radio"] {
      appearance: none;
      width: 20px;
      height: 20px;
      border: 2px solid #ccc;
      border-radius: 50%;
      margin-top: 5px;
      margin-right: 15px;
      cursor: pointer;
      flex-shrink: 0;
      position: relative;
  }

  .dspot-option input[type="radio"]:checked {
      border-color: #00C7B2;
  }

  .dspot-option input[type="radio"]:checked::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #00C7B2;
  }
  .dspot-option:has(input[type="radio"]:checked) {
      border-color: #00C7B2;
  }
  .dspot-option label {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      flex: 1;
  }
  .role-title {
      font-size:18px;
      line-height: 120%;
      font-weight: 600;
      color: #003A5D;
      margin-bottom: 4px;
  }
  .role-description {
      font-size: 14px;
      color: #33617D;
      line-height: 120%;
  }
  .continue-claimant,
  .continue-advisor {
        display: none;
    }
.visually-hidden { position:absolute; left:-9999px; }
.dspot-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99;
}
.dspot-modal-overlay:target {
  display: flex;
}
.dspot-modal-overlay h2.dspot-subhead { font-size: 28px;}

.dspot-modal-dialog {
  width: 512px;
  max-width: 100%;
  background: #fff;
  padding: 40px 56px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.dspot-modal-dialog.dspot-modal-md {width: 564px;}
.dspot-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: none;
  background: none;
  font-size: 18px;
  line-height: 16px;
  cursor: pointer;
  width: 22px; height: 22px;
}
.dspot-modalcenter {text-align: center;}
.dspot-modalcenter h2 {margin-bottom: 4px;}
.dspot-modalstart {text-align: left;}
.dspot-modal-dialog h2.dspot-subhead { font-weight: 600;}

.dspot-modaldesc {
  color: rgba(0, 58, 93, 0.6);
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  width: 75%;
  margin: 0 auto 24px;
}
.dspot-phone-field {
  display: flex;
  align-items: center;
  border: 1px solid #cfd9e3;
  border-radius: 4px;
  padding: 8px 12px;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
}
.dspot-phone-field select,
.dspot-phone-field input {
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.dspot-phone-field select, .dspot-phone-field input {
  border: none;
  outline: none;
  font-size: 24px;
  /* background: none; */
  background-position: right 12px;
  color: #003A5D;
}
.dspot-phone-field select { width: 80px;}
.dspot-phone-field input {  width: 100%; }
.dspot-phone-field input:disabled {color: rgba(0, 58, 93, 0.4);}
.dspot-phone-field.readonly-field select {color: rgba(0, 58, 93, 0.4);}




.readonly-field span {
  padding: 12px;
  background: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 90px;
}
.readonly-field button {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  padding: 0;
  right: 12px;
  position: absolute;
  color: #00C7B2;
}
.readonly-field button svg {max-width: 100%;}

.dspot-otp-boxes {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dspot-otp-input {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.dspot-otp-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
#dspot-resend {
  flex: 1;
  white-space: nowrap;
}
#dspot-timer {
  flex-shrink: 0;
  color: #777;
  width: 120px;
}
.dspot-resendoutline, #dspot-verify-btn {
  flex: 1;
}
.dspot-w100 {width: 100%;}

.dspot-resendoutline { border: 1px solid rgba(0, 58, 93, 0.1); border-radius: 4px; 
  display: flex; justify-content: space-between; align-items: center; }
.dspot-btnlink { font-size: 20px; line-height: 22px; font-weight: 600; color: #00C7B2; padding: 11px 16px;
background: #fff; border: 0; text-align: left; cursor: pointer;}
.dspot-btnlink.dspot-disabled { color: rgba(0, 199, 178, 0.5); pointer-events: none;}
.dspot-timer {padding: 12px 16px;}

.dspot-form-control, .dspot-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #CCD8DF;
  border-radius: 4px;
  font-size: 16px; line-height: 140%;
  transition: border-color 0.2s;
  background-color: #fff;
  color: #003A5D;
}
.dspot-select {
    background: #ffffff url("assets/images/dspot-down.svg") no-repeat right 14px center;
    background-size: 20px;
    appearance: none;
    cursor: pointer;
}


.dspot-mbpan { margin-bottom: 20px;}
.dspot-mb12 {margin-bottom: 12px !important;}
.dspot-mb4 {margin-bottom: 4px !important;}

.dspot-form-control::placeholder { color: #66899E;}
.dspot-orgalertbox { border: 1px solid #FFDCB0; padding: 14px; border-radius: 12px; display: flex; gap: 12px;}
  .dspot-alerticon {}
  .dspot-orgalerttext {text-align: left;}
  .dspot-orgalerttext h3 { font-size: 16px; font-weight: 600; line-height: 140%;}
  .dspot-orgalerttext ul.dspot-lightlist { margin-left: 18px;}
  .dspot-orgalerttext ul.dspot-lightlist li {color: #66899E;}
  .dspot-lighttxt {color: #66899E;}

.dspt-form-row {
  display: flex; flex-wrap: wrap;
  column-gap: 24px;
  row-gap:12px;
  
  margin-bottom: 20px;
  border: none;
  padding: 0;}
.dspt-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dspt-form-group.dspot-w50 {
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
}
.dspt-form-group.dspot-w100 {
    flex: 0 0 100%;
    max-width: 100%;
  }

.dspt-form-group label {
    font-size: 14px;
    color: #013A63;
    margin-bottom: 8px;
    font-weight: 600;
}
.dspt-group-label {
    font-size: 14px;
    color: #013A63;
    margin-bottom: 8px;
    font-weight: 600;}

.dspt-radio-group {
    display: flex;
    gap: 16px;
}
.dspt-radio-group.dspot-rgcolmob {margin-bottom: 20px; flex-wrap: wrap;}
.dspt-radio-group.dspot-rgcolmob label {flex: auto; margin-bottom: 0;}
.dspt-radio-group.dspot-rgcolmob.dspot50 label {flex: 0 0 calc(50% - 8px);}
.dspt-radio-group.dspot-rgcol {flex-direction: column; gap: 4px;}

.dspt-radio-group label {flex: 1;}


.dspt-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid #C3D4E9;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #013A63;
}

.dspt-radio-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.dspt-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #00C7B2;
    position: relative;
    flex: 0 0 auto;
}

.dspt-radio-item input:checked + .dspt-radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #00C7B2;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

.dspt-longlabel {}


.dspot-step-row {display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px;}
  .dspot-step-label { font-size: 18px; line-height: 140%; font-weight: 600; color: #66899E;}
  .dspot-step-steps { display:flex;
    align-items:center;
    gap:8px;
    flex:1 1 auto;}
  .dspot-segment {height:4px;  background: #ECF1F3; border-radius:2px; flex:1 1 0;}
  .dspot-segment.dspot-active { background: #36BD6C; box-shadow:0 0 0 1px rgba(0,0,0,0.02) inset;}

.dspot-bluetxt {color: #0B80C6;}


.dspot-grouphead { margin-bottom: 20px;}
.dspot-grouphead h2.dspot-subhead { margin-bottom: 4px;}

.dspot-mbsml {margin-bottom: 14px !important;}
.dspot-mtsml {margin-top: 14px !important;}
.dspot-mt20 {margin-top: 20px !important;}

/* .dspot-viewinline {display: flex; flex-direction: row; margin-bottom: 8px;}
.dspot-viewinline label {flex: 0 0 200px; font-size: 16px; font-weight: 400; color: #61889B;}
.dspot-viewinline .dspot-output  {font-size: 16px; font-weight: 600; color: #003A5D;}
.dspot-editsmlbtn {margin-left: 8px;}
.dspot-editsmlbtn svg {width: 20px; height: 20px; color: #00C7B2;} */

.dspot-viewinline {
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}
.dspot-label {
  flex: 0 0 200px;
  font-size: 16px;
  font-weight: 400;
  color: #61889B;
}
.dspot-output {
  font-size: 16px;
  font-weight: 600;
  color: #003A5D;
}
.dspot-editsmlbtn {
  margin-left: 8px;}
.dspot-editsmlbtn svg {
  width: 20px;
  height: 20px;
  color: #00C7B2;
}

/* ul.dspot-formlisthand {font-size: 16px; color: #33617D; font-weight: 400; margin-left: 14px; padding-left: 4px;
display: flex; flex-wrap: wrap; gap: 24px;}
ul.dspot-formlisthand li {padding: 12px 0; margin-bottom: 4px; border-bottom: 1px dashed #E9E9E9; flex: 50%;} */

.dspot-formlisthand {
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  color: #33617D;
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  position: relative;
}
.dspot-formlisthand li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 20px;
  line-height: 1;
  color: #33617D;
}
.dspot-formlisthand li {
  width: calc(50% - 12px);
  padding: 12px 0 12px 22px;
  margin-bottom: 4px;
  border-bottom: 1px dashed #E9E9E9;
  position: relative;
}
.dspot-formlisthand li a {
  color: #33617D;
  text-decoration: none;
  font-weight: 700;
}
.dspot-formlisthand li a svg {width: 16px; height: 16px; color: #00C8B3; position: relative; top: 2px;}

.dspot-hrline {margin: 20px 0; border: none; border-top: 1px solid #EDF1F6; }

.dspot-proceedform {display: flex; flex-wrap: wrap; gap: 14px;}
.dspot-proceedform .dspt-radio-item {flex: 1;}
.dspot-proceedform .dspt-radio-item {white-space: nowrap;}


.dspot-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
}
.dspot-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #33617D;
}

/* Green filled circle */
.dspot-icon-circle {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-color: #05B160; /* Accessible green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

/* White check icon */
.dspot-icon-circle svg {
  width: 10px;
  height: 10px;
  stroke: #ffffff;
  stroke-width: 3;
}

.dspot-feature-item strong {
  font-weight: 600;
}

.dspot-loader {
    width: 62px;
    height: 62px;
    border: 5px solid rgba(184, 198, 218, 0.25);
    border-bottom-color: #00C8B3;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-bottom: 24px;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
  } 

  .dspot-btnrecommended { font-size: 12px; font-weight: 600; color: #003A5D; padding: 4px 10px; border-radius: 24px; font-style: italic;
  background: linear-gradient(to right, rgba(140, 200, 0, 0.3), rgba(17, 143, 0, 0.3));
  display: flex; align-items: center; gap: 4px;
    }
  .dspot-btnrecommended svg {width: 14px; height: 14px;}

/* Tooltip */
.dspot-dotlinetxt {
  border-bottom: 2px dotted #003A5D;
  padding-bottom: 4px;
  display: inline-block;
  cursor: pointer;
}
.dspot-tooltip {
  position: relative;
  display: inline-block;
}
.dspot-tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 240px;
  background-color: #003A5D;
  color: #fff;
  text-align: left;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  position: absolute;
  /*bottom: 100%;*/
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: opacity 0.2s ease;
}
.dspot-tooltiptext::after {
  content: "";
  position: absolute;
  /*top: 100%;*/
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  /*border-color: #003A5D transparent transparent transparent;*/
  border-color: transparent transparent #003A5D transparent;
}
.dspot-tooltip:hover .dspot-tooltiptext,
.dspot-dotlinetxt:focus + .dspot-tooltiptext {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {  
  .dspot-tooltiptext {
    max-width: 90vw;
    left: 0;
    transform: none;
  }

  .dspot-tooltiptext::after {
    left: 24px;
    transform: none;
  }
}

/*  */
.dspot-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.dspot-steps::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 34px;   
  bottom: 34px;
  width: 1px;
  background: #33617D;
}
.dspot-steps .otstep {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  position: relative;
}
.otstep-box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #EDF6FB;
  border: 1px solid #DCE9F7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #fff;
}
.otstep.active .otstep-box {
  background: #33617D;
  border-color: #33617D;
}
.otstep.active svg {
  width: 16px;
  height: 16px;
  stroke: #EDF6FB;
  stroke-width: 3;
}
.otstep svg {width: 16px; height: 16px;}
.otstep.progress .otstep-box {
  border-color: #33617D;
  background: #EDF6FB;
  color: #fff;
}
.otstep-text {
  font-size: 18px;
  color: #A3B8C5;
}

.otstep.active .otstep-text {
  color: #33617D;
  font-weight: 400;
}

.otstep.progress .otstep-text {
  color: #33617D;
}

/* Success Icon */
.dspot-success {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

/* Green circle */
.dspot-check-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #16a34a;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: popIn 0.4s ease-out forwards;
}

/* Feather icon */
.dspot-check-circle svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.5s ease forwards;
  animation-delay: 0.5s;
}

/* Animations */
@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 100; /* or your original starting value */
  }
}
/*  */

.dspot-link, a.dspot-link { font-size: 20px; line-height: 140%; font-weight: 600; color: #00C7B2; text-decoration: none;
display: flex; align-items: center; gap: 8px;}
.dspot-link svg {width: 24px; height: 24px;}

.dspot-splitpanelbox {display: flex; gap: 18px;}
.dspot-splitpanelbox .dspot-spanelbox {flex: 1;}
.dspot-spanheadbox {border-bottom: 1px solid #ccc;}
.dspot-spanelbox {background: #fff; padding: 24px; border-radius: 12px; border: 1px solid rgba(0, 58, 93, 0.1);
box-shadow: 0 4px 25px rgba(184, 198, 218, 0.25); position: relative;}
.dspot-spanelbox h2.dspot-subhead {font-size: 19px; font-weight: 600;  line-height: 120%; margin-bottom: 4px;}
.dspot-spanelbox p {letter-spacing: -2%;}

.dspot-spanelbox .dspot-hrfull {margin-left: -24px; margin-right: -24px; width: calc(100% + 48px);}

.dspot-spanelbox .dspotnextarrow { color: #003A5D; width: 44px; height: 44px; padding: 10px; border-radius: 12px;
  background: #fff; border: 1px solid #D9E1EB; box-shadow: 0 0 4px 4px rgba(184, 198, 218, 0.25); 
position: absolute;right: 0px; top: 50%; transform: translate(30px, -50%); z-index: 2;}
.dspot-spanelbox .dspotnextarrow {}

.dspot-splitpanelbox.dspot-splitpbnext {gap: 12px;}
.dspot-splitpbnext .dspot-spanelbox {padding: 28px 44px;}


ul.dspot-formdownload-list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 232px;
  overflow-y: auto;
}

.dspot-fditem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed #D6DEE6;
  gap: 12px;
}
.dspot-fdleft {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dspot-fdlabel {
  font-size: 16px;
  color: #003A5D;
  font-weight: 500;
}

.dspot-formdownload-list .dspot-icon-circle {
  width: 14px;
  height: 14px;
}
.dspot-formdownload-list .dspot-icon-circle svg {
  width: 8px;
  height: 8px;
  stroke-width: 3;
}

.dspot-fdright {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dspot-badge {
  background-color: #FFF2D4;
  color: #836C06;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  font-style: italic;
  white-space: nowrap;
}
.dspot-badgepending {background-color: #FFEAD4;  color: #EE8D1E; font-weight: 600;}
.dspot-badgeverified {background-color: #E0F8E8;  color: #0D9D5B; font-weight: 600;}

/* .dspot-eye-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #00B5A6;
}
.dspot-eye-btn svg {
  width: 16px;
  height: 16px;
}
.dspot-eye-btn:focus-visible {
  outline: 2px solid #003A5D;
  outline-offset: 2px;
} */

.dspot-eye-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  color: #00B5A6;
  text-decoration: none;
}

.dspot-eye-link svg {
  width: 16px;
  height: 16px;
}
.dspot-eye-link:focus-visible {
  outline: 2px solid #003A5D;
  outline-offset: 2px;
}
.dspot-eye-link:hover svg {
  stroke-width: 2.5;
}
.dspot-kyc-link {color: #33617D; font-size: 16px; font-weight: 500; text-decoration: none;}
.dspot-kyc-link svg {width: 16px;  height: 16px;  color: #00C8B3;  position: relative;  top: 2px;}
.kyc-validated {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
  font-weight: 600; 
}
.kyc-validated a {color: #013A63; text-decoration: none;}
.kyc-validated a:hover {color: #00C8B3;}

.dspot-downloadall {text-align: center; margin-top: 32px;}
.dspot-downloadallsml {text-align: center; margin-top: 20px;}
.dspot-btndownload {
  padding: 4px;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  color: #00C7B2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dspot-btndownload svg {
  width: 24px;
  height: 24px;
}
.dspot-btndownload:focus-visible {
  outline: 3px solid #005FCC;
  outline-offset: 4px;
}

ul.dspot-starlist { list-style: none;height: 294px;overflow-y: auto;}
ul.dspot-starlist li { font-size: 16px; line-height: 140%; font-weight: 500!important; color: #33617D; position: relative;
  padding-left: 18px; margin-bottom: 16px;
}
ul.dspot-starlist li::before {background: url(../images/dspot-starlist.svg) no-repeat center;  background-size: contain; 
content: ""; position: absolute;  width: 10px; height: 10px;  top: 8px; left: 0;
}

.rs{font-family: "DejaVu Sans", sans-serif; font-size: 12px;}
.dspot-almostcontent { max-width: 650px; margin: auto;}
.dspot-almostbox {background: #fff; padding: 24px; border-radius: 12px; border: none;
  box-shadow: 0 4px 25px rgba(184, 198, 218, 0.25); position: relative; overflow: hidden;}
.dspot-almostbox::before {background: url(../images/dspot-submitform.svg) no-repeat center;
  width: 282px; height: 227px;
  content: "";  position: absolute;
  right: 0; bottom: -20px;}

.dspot-almostleft { width: 64%;}
.dspot-almostbox h2.dspot-subhead {font-size: 28px; font-weight: 700;  line-height: 120%; margin-bottom: 4px;}
.dspot-almostleft p{ font-size: 16px; color: #003A5D;}

ul.dspot-datetimelist { list-style: none; display: flex; gap: 16px;}
ul.dspot-datetimelist li{ font-size: 14px; line-height: 140%; font-weight: 400; color: #003A5D; position: relative;}
ul.dspot-datetimelist li:first-child::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: #003A5D;
    border-radius: 50%;
}
.dspot-helpbox {background: #fff; padding: 20px 24px; border-radius: 12px; border: 1px solid rgba(0, 58, 93, 0.1);
box-shadow: 0 4px 25px rgba(184, 198, 218, 0.25); margin: 24px 0; display: flex; align-items: center; justify-content: space-between;}
.dspot-helpbox h3 {font-size: 16px; line-height: 20px; font-weight: 700; color: #003A5D; margin-bottom: 4px;}
.dspot-helpbox p {font-size: 14px; line-height: 140%; font-weight: 400; color: #003A5D; }

.dspot-helpbox .dspot-hbleft {}
.dspot-helpbox .dspot-hbright {}

.dspot-supportbtn {
    position: relative;
  display: inline-block;
  padding: 12px 16px 12px 44px;
  background: transparent;
  border: 1px solid #00C7B2;
  color: #00C7B2;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}
.dspot-supportbtn:focus-visible {
  outline: 2px solid #00C8B3;
  outline-offset: 3px;
}
.dspot-supportbtn::before {
    content: "";
    background: url(../images/dspot-support.svg) no-repeat center;
    background-size: 24px 24px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}

.dspot-detectlink { font-size: 16px; line-height: 140%; font-weight: 600; color: #00C7B2; text-decoration: none;
position: relative; padding: 4px 4px 4px 32px; display: inline-block;}
.dspot-detectlink::before {content: ""; 
 background: url(../images/dspot-target.svg) no-repeat center;
position: absolute; width: 24px; height: 24px; left: 0; top: 4px; }

/*continue modal css*/
 
.dspot-modal-overlay.openmodal {
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}
.dspot-modal-overlay.openmodal.show {
  visibility: visible;
  opacity: 1;
}
.dspot-cnspacebtn {display: flex; gap: 8px; justify-content: space-between; margin-top: 24px}

/* Find Location */
.dspot-input-container {
          position: relative;
          margin-bottom: 12px;
      }
      
    input.dspot-inputpin {padding: 12px 16px; font-weight: 600; font-size: 16px;}
      input.dspot-inputpin:focus {
          outline: none;
          border-color: #00C8B3;
          box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
          background-color: white;
      }
      
      .dspot-search-btn {
          position: absolute;
          right: 2px;
          top: 0;
          border: none;
          width: 48px;
          height: 48px;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all 0.3s;
          background: transparent;
      }
      .dspot-search-btn svg {
          width: 24px;
          height: 24px;
      }
      
      .dspot-dropdown {
          display: none;
          margin-bottom: 16px;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 2px 6px rg ba(0, 0, 0, 0.1);
          animation: fadeIn 0.4s ease;
          border: 1px solid #e1e8ed;
      }
      
      @keyframes fadeIn {
          from { opacity: 0; transform: translateY(-15px); }
          to { opacity: 1; transform: translateY(0); }
      }
      
      .dspot-dropdown-header {
          color: #003A5D;
          padding: 12px 16px 6px 16px;
          font-weight: 600;
          font-size: 16px;
      }
      
      .dspot-branch-list {
          list-style: none;
          background-color: white;
          max-height: 206px; overflow-y: auto;
          padding: 6px 16px 12px;
      }
      
      .dspot-branch-item {
          padding: 8px 8px 6px;
          border-bottom: 1px solid #E5EBEF;
          display: flex;
          justify-content: space-between;
          align-items: center;
          transition: background-color 0.2s;
      }
      
      .dspot-branch-item:hover {
          background-color: #f8fafc;
      }
      
      .dspot-branch-item:last-child {
          border-bottom: none;
      }
      
      .dspot-branch-name {
          font-weight: 500;
          color: #003A5D;
          font-size: 16px;
      }
      
      .dspot-maps-link {
          color: #00C8B3;
          text-decoration: none;
          font-weight: 600;
          font-size: 14px;
          font-style: italic;
          display: flex;
          align-items: center;
          gap: 6px;
          flex: 0 0 82px;
          align-self: start;
      }
      
      
      .dspot-maps-link svg {
          width: 16px;
          height: 16px;
      }
      
      .dspot-error-message {
          color: #e74c3c;
          margin-top: 12px;
          font-size: 15px;
          display: none;
          padding: 12px 16px;
          background-color: #fdf2f2;
          border-radius: 8px;
      }
      
      .no-branches-message {
          display: none;
          margin-bottom: 16px;
          padding: 24px;
          text-align: center;
          background-color: #FFF2D4;
          border-radius: 8px;
          animation: fadeIn 0.4s ease;
      }
      
      .no-branches-message h3 {
          color: #836C06;
          margin-bottom: 10px;
          font-size: 20px;
      }
      
      .no-branches-message p {
          color: #003a5d;
          line-height: 1.5;
      }

 @media (max-width: 767px) {  
    .dspot-dropdown-header {font-size: 14px;}
    .dspot-branch-item {
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
      }
      
      .dspot-maps-link {
          align-self: flex-end;
      }
  }
/*  */

/* Responsive Media Query */
@media (min-width:1330px) {
}
@media (min-width: 992px) and (max-width: 1180px) {
  .dspot-container {
    max-width: 962px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {

}
@media (min-width: 992px) {
  .dspot-pansteps {position: sticky; top: 94px;}
}

@media (max-width: 991px) {
  .dspot-container { padding: 0 16px;}
  p { font-size: 14px;}
  .logo {width: 150px; height: 29px;}
  .icon-btn { width: 40px; height: 40px;}
  .dspothelp-icon, .close-icon { background-size: 18px;}
  .footer-inner.dspot-container { padding: 16px 16px 18px;}
  .dspot-main { padding: calc(74px + 32px) 0 calc(80px + 1rem); margin: 0; max-width: 100%;}

  .dspot-faqaccordion-button { padding: 12px 36px 12px 12px; font-size: 14px;}
    .dspot-faqaccordion-button::after {right: 12px;}
    .dspot-panwrapper { flex-direction: column; gap: 40px;}
    .dspot-pansteps { width: 100%; max-width: 100%;}
    .dspot-panselection {width: 100%;}
    .dspot-splitpanelbox.dspot-splitpbnext {gap: 12px; flex-direction: column;}

    .dspot-spanelbox .dspotnextarrow { left: 50%; top: 100%;  transform: translate(-50%, -16px) rotate(90deg);
    transform-origin: center;}

}
@media (max-width: 767px) {  

    h1.dspot-head {font-size: 26px; margin-bottom: 8px;}
    h2.dspot-subhead {font-size: 18px;}

    .btn-outline {
      padding: 10px 14px;
      font-size: 16px;}
    .dspot-prev-btn {padding-right: 40px;}
    .dspot-prev-btn::before {right: 14px;}
    .dspot-back-btn {padding-left: 40px;}
    .dspot-back-btn::before {left: 14px;}

    .dspot-mbpan { margin-bottom: 16px;}
    
    .helpmain { padding: 24px 24px; }
    .dspotfaq-handle {
      left: -30px;               
      bottom:0;
      width: 30px;               
      height: 105px;}
    .dspotfaq-handle::after {
    width: 30px;
    height: 105px;}
    .dspotfaq-panel { right: -760px;}
    .dspotfaq-panel {
        width: calc(100% - 30px);
    }
    .dspotfaq-panel.open {  right: 0;}
    ol.dspot-stepnum li { padding: 12px 14px;  margin-bottom: 12px;}
    ol.dspot-stepnum li h3 {
      gap: 12px;
      font-size: 18px;
    }
    ol.dspot-stepnum li h3::before {
      font-size: 32px;
    }    

    .dspot-panelbox {padding: 16px;}
    .dspot-option {padding: 12px;}
    .dspot-modal-dialog {
      max-width: 100%;
      padding: 40px 16px 20px;
      border-radius: 16px;
    }
    .dspot-modal-overlay h2.dspot-subhead { font-size: 20px;}
    .dspot-phone-field {
      padding: 6px 10px;
      gap: 4px;
      margin-bottom: 16px;
    }
  .dspot-phone-field select,
  .dspot-phone-field input {
    padding: 4px;
    font-size: 14px;
  }
  .dspot-phone-field select, .dspot-phone-field input {
    font-size: 18px;
  }
  .dspot-modaldesc {font-size: 16px;}

  .dspot-phone-field select { width: 64px;}
  .dspot-phone-field input {  width: 100%; }
  .dspot-otp-boxes {
    gap: 4px;
    margin-bottom: 16px;  
  }

  
  .dspot-otp-input {
    width: 100%;
    height: 46px;
    font-size: 18px;
  }
  .dspot-btnlink { font-size: 16px; line-height: 20px; padding: 10px 14px;}
  .dspot-timer {padding: 10px 14px;}
  .dspot-modal-overlay { padding: 16px;}
  .readonly-field button {width: 22px; height: 22px;}
  .dspt-form-group.dspot-w50 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .dspt-radio-group.dspot-rgcolmob.dspot50 label {flex: unset;}

  .dspot-formlisthand li {width: 100%;}
  .dspot-proceedform {flex-direction: column; gap: 8px;}
  .dspt-radio-group.dspot-rgcolmob {flex-direction: column; gap: 4px;}

  .dspot-splitpanelbox { gap: 18px; flex-direction: column;}
  .dspot-spanelbox {padding: 16px;}
  .dspot-spanelbox .dspot-hrfull {margin-left: -16px; margin-right: -16px; width: calc(100% + 32px);}
  .dspot-splitpbnext .dspot-spanelbox {padding: 24px 16px;}
  
  .dspot-almostleft { width: 100%;}
  .dspot-almostbox h2.dspot-subhead {font-size: 22px;}

  ul.dspot-formdownload-list, ul.dspot-starlist {height: auto;}
    
}


@media(max-width:481px) {
  .dspot-resendoutline {flex: 0 0 auto;}
  .dspot-modaldesc {width: 100%;}
  
}