* {
  box-sizing: border-box;
}

:root {
  --pli-green: #306e6e;
  --header-color: #5e9b8a;
  --primary-color: #3b82f6;
  --save-color: #f59e0b;
  --success-color: #10b981;
  --light-green: #5e9b8a;
  --text-color: #1f2937;
  --light-gray: #f3f4f6;
  --border-gray: #d1d5db;
  --grey-bg: #e8ebe0;
  --white-bg: #ffffff;
}

body {
  font-family: Open Sans;
  background-color: var(--white-bg);
  min-height: 100vh;
  /* display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0; */
  margin: 0;
  --text-color: #1f2937;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat;
  font-weight: 700;
}

body .font-22 {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  /* text-align: right;
    vertical-align: middle; */
}
body .font-20 {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}
.mt-40 {
  margin-top: 40px;
}

a {
  text-decoration: none;
  --text-color: #1f2937;
}

/* header css */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content a {
  color: #5e9b8a;
}

.pli-logo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pli-logo-header h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--pli-green);
  margin: 0;
}

.pli-logo-header p {
  color: #6b7280;
  font-size: 14px;
}

.step-indicators {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  width: 100%;
  margin: 50px auto 30px auto;
  position: relative;
}

.step-indicators::after {
  content: "";
  position: absolute;
  background: #5e9b8a;
  opacity: 10%;
  width: calc(100%);
  left: 0px;
  top: 50%;
  height: 20px;
  border-radius: 100px;
  transform: translateY(-50%);
  z-index: -1;
}

.step-indicators .steps-slice {
  flex: 1;
}

.step-indicators .steps-slice:last-child {
  flex: auto;
  width: unset;
  max-width: 40px;
}

.step {
  height: 39px;
  width: 39px;
  background-color: var(--grey-bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s;
  position: relative;
  font-family: Open Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
}

.step.active {
  background-color: var(--header-color);
}

.step.complete {
  background-color: #5e9b8a;
  font-size: 18px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--border-gray);
  transform: translateY(-50%);
  z-index: -1;
}

.pli-welcome-bar {
  background-color: var(--header-color);
  color: white;
  padding: 50px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.pli-welcome-bar h2 {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 38px;
  letter-spacing: 0%;

  margin-top: 0;
}

.pli-welcome-bar ul {
  margin-left: 20px;
  padding-left: 0;
  list-style: disc;
  font-size: 14px;
}

.pli-welcome-bar ul li {
  margin: 10px 0;
}

.pli-welcome-bar p:last-child {
  font-size: 14px;
  margin-top: 15px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.applicant-details-title {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 0%;
  color: var(--pli-green);
  margin-bottom: 20px;
}

.section-header {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 26px;
  leading-trim: NONE;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--text-color);
  margin-top: 25px;
}

.section-description {
  max-width: 1372px;
  color: #6b7280;
  margin-bottom: 15px;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  margin-bottom: 11px;
  color: var(--text-color);
}

.input-group input:not([type="radio"]),
.input-group select {
  padding: 17px;
  border: 1px solid var(--border-gray);
  border-radius: 0px;
  box-sizing: border-box;
  background: transparent;
}
.input-group select {
  background: var(--light-gray);
}

/* .entity-group {
    border: 1px solid #e5e7eb;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    background-color: #fafafa;
} */

.entity-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.add-entity-btn {
  background-color: var(--light-green);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
}

input[type="date"] {
  text-transform: uppercase;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #727272;
}

.add-entity-btn:hover {
  background-color: #059669;
}

.remove-entity-btn {
  background-color: #dc2626;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
  font-size: 13px;
}

.remove-entity-btn:hover {
  background-color: #b91c1c;
}

.state-split-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  margin-bottom: 15px;
  text-align: center;
}

.state-split-grid span {
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 5px;
  grid-column: span 1;
}

.state-split-grid input {
  padding: 6px;
  font-size: 14px;
  text-align: center;
}

.state-split-grid span:nth-child(9),
.state-split-grid span:nth-child(10),
.state-split-grid input:nth-child(22),
.state-split-grid input:nth-child(23) {
  grid-column: span 2;
}

.state-split-grid input:nth-child(24) {
  grid-column: span 2;
  background-color: #e5e7eb;
  font-weight: bold;
}

.quote-total-box {
  background-color: var(--header-color);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.quote-total-box .quote-left {
  display: flex;
  flex-direction: column;
}

.quote-total-box h3 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.quote-total-box p {
  font-size: 14px;
  margin: 5px 0 0 0;
  opacity: 0.9;
}

.quote-total-box .quote-amount {
  font-size: 36px;
  font-weight: bold;
  margin-top: 10px;
}

.key-benefits h2 {
  font-size: 20px;
  color: var(--pli-green);
  margin-bottom: 10px;
}

.key-benefits p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-color);
}

.benefit-icon {
  font-size: 24px;
  color: var(--success-color);
  margin-right: 15px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.nav-btn {
  padding: 10px 18px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.2s, opacity 0.2s;
  margin-left: 10px;
}

.back-btn {
  background-color: var(--light-gray);
  color: var(--text-color);
  border-color: var(--border-gray);
}

.back-btn:hover:not(:disabled) {
  background-color: #e5e7eb;
}

.save-btn {
  background-color: var(--save-color);
  color: white;
}

.save-btn:hover:not(:disabled) {
  background-color: #5e9b8a;
  color: #fff;
}

.custom-btn {
  background-color: var(--primary-color);
  color: white;
}

.custom-btn:hover:not(:disabled) {
  background-color: #5e9b8a;
}

.nav-btn.back-btn {
  color: #fff;
}
.nav-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
ul.declare-list.section-description {
    padding-left: 0px;
}
@media (max-width: 600px) {
  .state-split-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .state-split-grid span,
  .state-split-grid input {
    grid-column: span 1;
  }

  .state-split-grid span:nth-child(9),
  .state-split-grid span:nth-child(10),
  .state-split-grid input:nth-child(22),
  .state-split-grid input:nth-child(23) {
    grid-column: span 2;
  }

  .state-split-grid input:nth-child(24) {
    grid-column: span 2;
  }

  .quote-total-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}

/* New CSS to hide the income details by default */
/* .income-details-container {
    display: none;
} */

.add-country-button-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.add-country-btn {
  background-color: var(--success-color);
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
}

.add-country-btn:hover {
  background-color: #059669;
}

.input-grid .input-group input {
  margin-top: auto;
}
.entity-add-btn {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.entity-add-btn .entity-add-btn-group {
  width: 100%;
}

.entity-add-btn .entity-actions {
  /* width: 100%; */
  white-space: nowrap;
}

.form-head-dd {
  margin-bottom: 40px;
}

.nav-btn.back-btn {
  background: #5e9b8a;
}
.nav-btn {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  border-radius: 0;
}
.nav-btn.save-btn {
  border: 1px solid #0000001a;
  background: transparent;
  color: #000000;
}
.nav-btn.custom-btn {
  background: #26283b;
}

.copy-right-text {
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  color: #000000;
  border-top: 1px solid var(--border-gray);
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
  margin-bottom: 0;
}

.income-row {
  position: relative;
}
.income-row button.remove-income-btn.cross-icon {
  position: absolute;
  right: -50px;
  top: -12px;
  border: none;
  background: transparent;
  font-size: 30px;
  color: #e81b1b;
}
.income-totals-container .input-grid {
  align-items: center;
}

.form-head-yes-no {
  display: flex;
  align-items: center;
  gap: 30px;
}

.form-head-yes-no input[type="radio"] {
  color: #5e9b8a;
  width: 24px;
  height: 24px;
  accent-color: #5e9b8a;
}
.form-head-yes-no p.section-description {
  margin-bottom: 0;
  color: #000;
  font-weight: 600;
}
.form-head-poi p.section-description {
  font-weight: 600;
  color: #000;
}
.form-navigation .nav-btn.back-btn {
  margin-left: 0;
}

.steps-slice.complete {
  position: relative;
}
.steps-slice.complete:after {
  content: "";
  position: absolute;
  background: #5e9b8a;
  width: calc(100%);
  left: 3px;
  top: 50%;
  height: 20px;
  transform: translateY(-50%);
  z-index: -1;
}

.benefit-item span {
  font-family: Open Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
}
.entity-add-btn .entity-add-btn-group .entity-group {
  position: relative;
}

.entity-add-btn
  .entity-add-btn-group
  .entity-group
  button.remove-entity-btn.cross-icon {
  position: absolute;
  right: -30px;
  padding: 3px 10px;
  font-size: 30px;
  top: 4px;
  background: transparent;
  color: red;
}
.claims-header .dollar-input::before {
    content: "$";
    position: absolute;
    left: 12px;
    top: 99px;
    transform: translateY(-50%);
    color: #555;
    font-size: 16px;
    pointer-events: none;
}
.radio-option-group label {
  display: inline-flex;
}
.previous-ins-app-flx .section-description {
  margin: 10px 0;
}

.note-block {
  background: rgba(0, 0, 0, 1.5%);
  border-block: 1px solid rgba(0, 0, 0, 10%);
  color: #727272;
  padding: 32px 40px;
}

.form-step.active[data-step="3"] .section-description {
  max-width: 1170px;
  font-size: 18px;
  margin: 10px 0;
}
.recious-ins-btm .previous-ins-app-flx {
  justify-content: space-between;
}

.input-row-flx .input-group {
  flex-direction: row;
  gap: 50px;
}
.input-row-flx .input-group label {
  flex: 0 0 60%;
}

.pro-act-three .section-description {
  color: #000;
}
.pro-act-three .question {
  margin: 10px 0;
  align-items: center;
}
.pro-act-three .question > label {
  flex: 0 0 80%;
}
.pro-act-three .question label input[type="radio"] {
  margin-right: 5px;
}
.pro-act-three-input .section-description {
  font-family: Open Sans;
  font-weight: 600;
  font-style: SemiBold;
  margin-bottom: 20px;
  color: #000;
}
.pro-act-four-input .previous-ins-app-flx {
  gap: 50px !important;
}
.pro-act-four-input .previous-ins-app-flx .section-description {
  max-width: 1121px;
}

.thankyou-box {
  background: #5e9b8a;
  padding: 110px 40px;
}
.thankyou-box h2 {
  max-width: 674px;
  margin: auto;
  font-family: Open Sans;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 48px;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: center;
}
/* today */
.light-green {
  color: #5e9b8a;
}
.applicant-details-title.light-green {
  margin-bottom: 0;
}
.hd-fields.input-grid label {
  color: #000;
}

.component-wrap-input .input-group {
  justify-content: center;
}
.main-lbl {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.input-group .black-lbl {
  color: #000;
}
.full-details-brokered .form-head-yes-no p.section-description {
  color: #727272;
  font-weight: 400;
  line-height: 1.5;
  font-size: 18px;
  max-width: 1100px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-60 {
  margin-top: 60px;
}
.textarea-grp {
  border: 1px solid #0000001f;
}
.declaration-row h6 {
  font-size: 26px;
  color: #000;
}
.dec-list-wrp h6 {
  font-size: 18px;
  font-weight: 600;
  font-family: Open Sans;
}

.section-description.para {
  font-size: 18px;
}
.declare-list li {
  line-height: 1.5;
  margin-bottom: 15px;
}
.bottom-frm-wrp {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.agree-div .form-head-yes-no p.section-description {
  color: #727272;
  font-weight: 400;
  line-height: 1.2;
}
.ques-list {
  width: 100%;
  padding: 0;
}
.ques-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
}
.info-icon {
  border: 1px solid #0000007a;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.ques-list p.section-description {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #727272;
  font-weight: 400;
  font-size: 18px;
}

.follow-ques {
  box-shadow: 0px 14px 54px 0px #00000014;
  padding: 40px;
}
.declare-list li {
  position: relative;
  list-style: none;
}
.declare-list li::before {
  position: absolute;
  content: "";
  background-image: url("https://sagmeticinfotech.com/wp/2025/pli-brokers/wp-content/uploads/2025/11/greenarrw.png");
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  background-size: contain;
  left: -35px;
  top: 4px;
}
.input-text-with-label {
  display: flex;
}
.input-broke-wrp {
  grid-template-columns: repeat(6, 1fr);
}
.staff--grid {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.claim--row {
  grid-template-columns: repeat(5, 1fr);
}
.form-head-yes-no label {
  display: flex;
  align-items: center;
}
.top-txt {
  position: relative;
  width: 100%;
}

.info-txt {
  display: none;
  position: absolute;
  top: 20px;
  background-color: #fff;
  padding: 10px;
  font-size: 12px;
  z-index: 1;
  line-height: 1.5;
  width: 100%;
  box-shadow: 0px 14px 54px 0px #00000014;
}
.top-txt p:hover + .info-txt {
  display: block;
}
.top-txt p {
  width: fit-content;
  cursor: pointer;
}

.info-txt span {
  text-decoration: underline;
}
.income-row:not(:first-child) .input-group label {
  display: none;
}
.enti--grid {
  grid-template-columns: 2fr 1fr 1fr;
}
.indemity--grid {
  grid-template-columns: 1fr 3fr;
}
.part-awr-grd {
  grid-template-columns: repeat(3, 1fr);
}
.hd--fld--grd {
  grid-template-columns: 1fr 1fr;
}
.comp--grd {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
