:root {
  --primary: #1e3190;
  --success: #2ca387;
}

body {
  font-family: "Poppins", serif;
}

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

.custom-checkbox input {
  height: 22px;
  width: 22px;
  border: 1px solid var(--primary);
  position: relative;
}
.custom-checkbox input:checked {
  background-color: transparent !important;
}
.custom-checkbox input:checked::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  background-color: var(--primary);
}
.custom-checkbox label {
  color: #2c3c94;
  font-weight: 500;
  line-height: 17px;
}

.submit-btn {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  display: none;
}
.submit-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  opacity: 0.9;
}
.submit-btn.submitted {
  background-color: #5464a4;
  cursor: not-allowed;
}

.back-btn {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.back-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  opacity: 0.9;
}

.next-btn {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.next-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  opacity: 0.9;
}

.progressBar-wrapper {
  position: relative;
  width: 100%;
  height: 14px;
  background-color: #f3f3f3;
  border-radius: 5px;
  margin-bottom: 40px;
}
.progressBar-wrapper .progressBar {
  height: 100%;
  width: 0;
  background-color: #4caf50;
  border-radius: 5px;
  transition: width 0.3s;
}
.progressBar-wrapper img {
  position: absolute;
  top: -48px;
  left: -30px;
  height: 100px;
  transition: left 0.3s;
}

.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-wrapper .card {
  box-shadow: 0px 0px 20px rgba(7, 91, 169, 0.16);
  border: 0;
  border-radius: 10px;
}
.login-wrapper .card .card-body .card-img {
  display: flex;
  align-items: center;
  gap: 10px;
}
.login-wrapper .card .card-body .card-img .supported-text {
  font-size: 26px;
  font-weight: 500;
  color: var(--primary);
}
.login-wrapper .card .card-body .card-type {
  position: relative;
  padding-bottom: 60px;
}
.login-wrapper .card .card-body .card-type span {
  left: -20px;
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 5px 30px 5px 25px;
  border-radius: 0 18px 18px 0;
  position: absolute;
}
.login-wrapper .card .card-body .card-type span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  border-top: 5px solid var(--primary);
  border-left: 4px solid transparent;
}
.login-wrapper .card .card-body .card-type span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  border-bottom: 5px solid var(--primary);
  border-left: 4px solid transparent;
}

.home-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.home-wrapper .title {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 500;
  color: var(--primary);
  padding-top: 10px;
  margin-bottom: 40px;
}
.home-wrapper .listing-steps {
  background-color: #FAFAFA;
  margin-bottom: 40px;
  padding: 20px 0;
}
.home-wrapper .listing-steps .timeline {
  justify-content: center;
  overflow-x: hidden;
}
.home-wrapper .listing-steps .timeline ol {
  width: 100%;
  transition: all 1s;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.home-wrapper .listing-steps .timeline ol li {
  list-style: none;
  position: relative;
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
  padding: 0 5px;
}
.home-wrapper .listing-steps .timeline ol li .ring {
  content: "";
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
  color: var(--primary);
  width: 40px;
  height: 40px;
  border: 3px solid #E3E3E3;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px auto;
  z-index: 9;
}
.home-wrapper .listing-steps .timeline ol li .ring:hover {
  cursor: pointer;
}
.home-wrapper .listing-steps .timeline ol li .ring.inactive {
  border: 3px solid #f8a4a3;
}
.home-wrapper .listing-steps .timeline ol li.active .ring {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}
.home-wrapper .listing-steps .timeline ol li:not(:last-child)::after {
  content: "";
  width: calc(100% - 50px);
  height: 3px;
  display: block;
  background: #E3E3E3;
  margin: 0;
  position: absolute;
  top: 20px;
  left: calc(50% + 25px);
  z-index: 8;
}
@media (max-width: 767.98px) {
  .home-wrapper .listing-steps .timeline ol li .ring {
    height: 40px;
    width: 40px;
  }
  .home-wrapper .listing-steps .timeline ol li:not(:last-child)::after {
    top: 20px;
  }
}
@media (max-width: 576.98px) {
  .home-wrapper .listing-steps .timeline ol li .ring {
    height: 30px;
    width: 30px;
    font-size: 14px;
  }
  .home-wrapper .listing-steps .timeline ol li:not(:last-child)::after {
    top: 15px;
  }
}
.home-wrapper .questionary-card {
  position: relative;
  box-shadow: 0px 0px 20px rgba(7, 91, 169, 0.16);
  border: 0;
  border-radius: 10px;
  animation: fadeIn 1s ease-in-out;
}
.home-wrapper .questionary-card .question {
  margin-bottom: 20px;
  display: none;
}
.home-wrapper .questionary-card .question .question-label {
  position: relative;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}
.home-wrapper .fireworks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}/*# sourceMappingURL=style.css.map */

#loader {
  font-size: 16px;
  font-weight: bold;
}
