html {
    margin: 0;
    padding: 0;
  }
  body {
    background-color: #e0d5eb;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    margin: 0;
  }
  .page {
    padding: 5vh 5vw;
    overflow: hidden;
    position: relative;
    background-color: #fff;
  }
  .page.step-1 {
    background: url("../images/style100/checkmarks-purple.png") no-repeat;
  }
  .important-note {
    background-color: #ffee80;
    border: 1px solid #fffadb;
    border-radius: 0.4em;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1em;
  }
  /* Colors */
  :root {
    --purple-color: #753bbd;
  }


  /* Typography */

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  .font-heading {
    font-family: "KumbhSans-Regular_SemiBold", "Kumbh Sans SemiBold", "Kumbh Sans", sans-serif;
    color: #022d5f;
    font-weight: bold;
  }

  /* Links */

  a {
    color: #022d5f;
    text-decoration-color: rgb(2, 45, 95, 0.3);
  }

  /* Header */

  header {
    padding: 1em;
    background-color: #fff;
    display: flex;
    flex-direction: column;  
    justify-content: space-between;
    align-items: center;
  }

  .header-line {
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  margin-top: 8px;   /* optional */
  }


  .myprogress {
    margin-top: 22px;
    display: flex;          
    flex-direction: column;  
    margin-left: auto;
    text-align: center;
  }

  .myprogress .myprogress-title {
    font-weight: 700;
    font-family: "KumbhSans-Regular_Bold", "Kumbh Sans Bold", "Kumbh Sans", sans-serif;
    font-size: 0.75em;
    color: #003a70;
  }
  

  .myprogress .myprogress-bar {
    width: 180px;
    height: 8px;
    border: 1px solid #d2d3d2;
    border-radius: 5px;
    background-color: #ffffff;
    box-sizing: border-box;
;
  }
  .myprogress .myprogress-status {
    background-color: #003a70;
    height: 100%;
    border-radius: 5px;
  }

  /* Forms */

  .input-group-text {
    background: #f3f3f3;
    color: var(--purple-color);
    border-radius: 0.25em;
    border-bottom: 3px solid var(--purple-color);
  }
  .input-group:focus-within .input-group-text {
  border-color: var(--purple-color);
  border-width: 2px;
  border-right: none;
  border-bottom: 3px solid var(--purple-color);
  border-top: 1px solid var(--purple-color);
  border-left: 1px solid var(--purple-color);
}


  .form-control,
  .form-select {
    border-radius: 0.25em;
    border-bottom: 3px solid var(--purple-color);
    color: var(--purple-color);
    font-weight: 500;
    background-color: #f3f3f3;
    font-family: "KumbhSans-Regular_Medium", "Kumbh Sans Medium", "Kumbh Sans", sans-serif;
  }
  .form-control:focus,
  .form-select:focus {
    border-color: var(--purple-color);
    color: var(--purple-color);
    background-color: #f0f0f0;
    box-shadow: none;
  }
  .input-group {
    flex-wrap: nowrap;
    color: var(--purple-color);
  }
  .input-group .input-group-text {
    color: var(--purple-color);
    font-weight: 500;
    font-family: "KumbhSans-Regular_Medium", "Kumbh Sans Medium", "Kumbh Sans", sans-serif;
  }
  .input-group .form-control {
    border-radius: 2px;
    color: var(--purple-color);
    background-color: #f3f3f3;
    font-weight: 500;
    font-family: "KumbhSans-Regular_Medium", "Kumbh Sans Medium", "Kumbh Sans", sans-serif;
  }

  .input-group {
    color: var(--purple-color);
    font-weight: 500;
    font-family: "KumbhSans-Regular_Medium", "Kumbh Sans Medium", "Kumbh Sans", sans-serif;
  }

  .total-box {
    border: 6px solid #d0bef3;
    padding: 1.5em;
    border-radius: 1rem;
  }

  /* Buttons */
  .btn {
    padding-left: 1.5em;
    padding-right: 1.5em;
    border-radius: 1em;
    border-color: var(--purple-color);
    font-family: "KumbhSans-Regular_SemiBold", "Kumbh Sans SemiBold", "Kumbh Sans", sans-serif;
    font-weight: 650;
  }

  .btn-primary {
    background-color: var(--purple-color);
    color: #ffffff;
    font-family: "KumbhSans-Regular_SemiBold", "Kumbh Sans SemiBold", "Kumbh Sans", sans-serif;
    font-weight: 650;
    border-color: var(--purple-color);
    border-radius: 40px;
    padding: 4px 16px 4px 16px;
    width: 160px;
    height: 37px;
    font-size: 1.0625rem;

  }

  .btn-primary:hover {
    color: var(--purple-color);
    background-color: #ffffff;
    border-color: var(--purple-color);
  }

  .btn-primary:disabled,
  .btn-primary.disabled {
    background-color: var(--purple-color);
    color: #ffffff;
    border-color: var(--purple-color);
    opacity: 1;
    cursor: not-allowed;
    box-shadow: none;
  }

  .btn-primary:focus,
  .btn-primary:active,
  .btn-primary:focus-visible,
  .btn-primary:active:focus,
  .btn-check:checked + .btn-primary,
  .btn-check:active + .btn-primary {
    background-color: var(--purple-color) !important;
    border-color: var(--purple-color) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
  }


  .btn-secondary {
    background: #ffffff;
    border-color: var(--purple-color);
    color: var(--purple-color);
    font-family: "KumbhSans-Regular_SemiBold", "Kumbh Sans SemiBold", "Kumbh Sans", sans-serif;
    font-weight: 650;
    border-radius: 40px;
  }
  .btn-secondary:hover {
    background-color: var(--purple-color);
  }

  /* Layout */
  .container-fluid {
    max-width: 1600px;
  }

  /* Footer */
  footer {
    background-color: #786BAE;
    color: #fff;
    padding: 4em;
  }

  footer .agency-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    max-width: 1280px;
    justify-self: center;
    margin: 3em auto;
  }
  footer .agency-logos > * {
    width: 100%;
    text-align: center;
  }

  footer .agency-logos img {
    max-width: 100%;
  }
  @media (min-width: 768px) {
    footer .agency-logos > * {
      width: 25%;
    }

  }

  /* Footer Nav */
  footer .footer-nav {
    display: flex;
    gap: 1em;
    color: #fff;
    justify-content: center;
  }
  footer .footer-nav a {
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, 0.5);
  }

  /* STEP1 */

  .step-1 {
    overflow: hidden;
  }
  .step-1 h1 {
    font-size: 2.6em;
    @media (min-width: 768px) {
      font-size: 3.6em;
    }
  }

  .help-info {
    max-width: 300px;
    margin: 2em auto;
    text-align: center;
  }
  .step-1 .help-info {
    @media (min-width: 768px) {
      margin-top: 37vw;
    }
  }
  .main-image {
    width: 50vw;
    left: 50%;
    top: 10vh;
    float: right;
    shape-outside: url("../images/style100/welcome.png");
    shape-margin: 0.5rem;
  }

  @media (min-width: 768px) {
    .main-image {
      position: absolute;
      width: 60vw;
      left: 50%;
      top: 10vh;
    }
  }

  .step-5 {
    background: #7b6eaf;
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }

  @keyframes fadeInAnimation {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .offer-table {
    border: 6px solid #d0bef3;
    padding: .3em .5em;
    border-radius: 2rem;
    background-size: 50% auto;
    background-position: right bottom;

    font-size: .8em;
    @media (min-width: 768px) {
    padding: 1.5em 2em;
    font-size: calc(.2em + .9vw);
    margin: 1em;

  }
  }

  .offer-table .row {

     font-family: "Poppins", Arial, Helvetica, sans-serif;
    color: #022d5f;
    font-weight: normal;
  }
  .offer-table .row .col {
    padding: .8em;
    margin: .5em
  }


  .offer-table .row.table-head  .col {
    background-color: transparent;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0;
  }
  .offer-table .row .table-col-1 {
    font-weight: bold;
    width: 40%;
  }
    .offer-table .row .table-col-2 {
      background: #EDEDED;
      }
      .offer-table .row .table-col-3 {
        background-color: #FFEE80;
        font-weight: bold;
        font-size: 1.2em;
        }
  .offer-box {
    border: 6px solid #d0bef3;
    padding: 2.5em 3em;
    border-radius: 2rem;

    margin: 1em 0;
    background: url("../images/style100/savings.png") #fff no-repeat;
    background-size: 50% auto;
    background-position: right bottom;

    animation: zoomInAnimation ease-in 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
    clip-path: circle(0%);
  }

  .title {
    font-size: 2.5em;
    color: #003a70;
    font-family: "KumbhSans-Regular_ExtraBold", "Kumbh Sans ExtraBold", "Kumbh Sans", sans-serif;
    font-weight: 900;
    margin-bottom: 0.5em;
  }

  .div-text {
    font-size: 1em;
    color:  #212322;
    font-family: "KumbhSans-Regular", "Kumbh Sans", sans-serif;
  }

  .subtitle {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 0.5em;
    color:  #003a70;
    font-family: "KumbhSans-Regular_Bold", "Kumbh Sans Bold", "Kumbh Sans", sans-serif;
  }

  .subtext {
    margin-top: 0.5rem;
    font-size: 0.85em;
    color: #212322;
    font-family: "KumbhSans-Regular", "Kumbh Sans", sans-serif;
  }

  .label-text {
    font-size: 0.75em;
    font-family: "KumbhSans-Regular_Medium", "Kumbh Sans Medium", "Kumbh Sans", sans-serif;
    margin: 0;           
    margin-left: 0.85em;  
    display: block;     
    font-weight: 500;
    color: #003a70;
    text-align: left;
  }

  @keyframes zoomInAnimation {
    0% {
      clip-path: circle(0%);
    }
    100% {
      clip-path: circle(100%);
    }
  }
  .offer-comparison {
    border: 6px solid #d0bef3;
    padding: 2em 2em;
    border-radius: 2rem;
   font-family: "Poppins", Arial, Helvetica, sans-serif;
    margin: 1em 0;
    max-width: 400px;
    line-height: 1.4;
    text-align: center;
  }
  .offer-comparison.with-dmp {
  border-color: #00F5C3;
  }
  .offer-comparison.with-dmp .title {
    border-color: #00856A;
    }
  .offer-comparison.with-dmp .item-title {
       color: #00856A;
    }
  .offer-comparison .title {
    font-size: 1.6em;
     color: #022d5f;
    line-height: 1.2;
  }
  .offer-comparison .item {
    margin: 1em 0;
  }
  .offer-comparison .item .item-title {

    font-size: 1.2em;
  }
  .offer-comparison .item .item-amount {
    font-weight: bold;
    font-size: 1.2em;
  }
  .offer-comparison .note {
    border-top: #CCC 1px solid;
    padding: .5em 0;
  }

  .offer-item {
    margin: 0.8em 0;
  }
  .offer-item .offer-title {
    font-weight: bold;
    font-size: 1.2em;
  }
  .offer-item .offer-amount {
    font-weight: bold;
    font-size: 1.6em;
  }



  .checkmark {
    margin: 0;
  }
  .checkmark li {
    list-style-image: url("../images/style100/checkmark.svg");
    padding-bottom: 0.8em;
    font-size: 1.2em;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    padding-left: 0.6em;
    animation-name: fadeInBullets;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
    opacity: 0;
    transform: translatex(1em);
  }
  .checkmark li:nth-child(1) {
    animation-delay: 2s;
  }
  .checkmark li:nth-child(2) {
    animation-delay: 4s;
  }
  .checkmark li:nth-child(3) {
    animation-delay: 6s;
  }
  .checkmark li:nth-child(4) {
    animation-delay: 8s;
  }

  .checkmark li:marker {
    font-size: 1.5em;
    opacity: 0;


  }
  .checkmark svg {
    color: #ffd359;
  }

  @keyframes fadeInBullets {
    0% {
      opacity: 0;
      transform: translatex(1em);
    }
    100% {
      opacity: 1;
      transform: translatex(0);
    }
  }


  .help-section {
    background: #fff;
    padding: 2em 0;
  }
  .temp-nav {
      display: flex;

  align-items: center;
      justify-content: end;
      position: absolute;
      top: 4em;
      z-index: 1000;
      right: 1em;
  }
  .temp-nav a.btn {
    padding-right: .5em;
    padding-left: .5em;
  }
  .temp-nav .dropdown {

      margin: 5px;
  }
  .temp-nav .dropdown-item.active {
      background: #a39cc5;
    color: #212529;
  }
.spinwheel-dim-description {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  margin-left: 5rem;
  margin-right: 5rem;
  font-size: 0.75em;
  color: #212322;
  font-family: "KumbhSans-Regular", "Kumbh Sans", sans-serif;
}

.spinwheel-dim-loading-spinner {
  width: 3.5rem;
  height: 3.5rem;
  background: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0.5rem;
  line-height: 0;
  overflow: visible;
}

.spinwheel-dim-loading-spinner img {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: 50% 50%;
  animation: spinwheel-dim-spinner-rotate 1s linear infinite;
}



@keyframes spinwheel-dim-spinner-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.spinwheel-dim-wait-wrap {
  max-width: 780px;
}

.spinwheel-dim-wait-card {
  border: 2px solid #c7ccd2;
  border-radius: 0.9rem;
  overflow: hidden;
}

.spinwheel-dim-wait-header {
  background-color: #003a70;
}

.spinwheel-dim-wait-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.spinwheel-dim-wait-body {
  background: #ffffff;
}

.spinwheel-dim-wait-lead {
  color: #003a70 !important;
  font-weight: 700;
  text-align: left !important;
  line-height: 1.25;
}

.spinwheel-dim-wait-footer {
  border-top-color: #cfd4da !important;
}
  