.swal-modal {
  border-radius: 25px;
  box-shadow: 0px 4px 88.5px 0px rgba(0, 0, 0, 0.09);
}
.swal-modal .swal-title {
  color: #1b1b1b;
  font-weight: 700;
  letter-spacing: -1px;
  font-family: "DM Sans", Sans-serif;
}
.swal-modal .swal-button-container {
  width: 100%;
}
.swal-modal .swal-button-container .swal-button {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin: auto;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #450a86, #736dc2, #9957c1);
  border: none;
  padding: 0;
  min-width: 200px;
}
.swal-modal .swal-button-container .swal-button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.calculator-card {
  border-radius: 25px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 4px 88.5px 0px rgba(0, 0, 0, 0.09);
  margin: 50px 0;
}
.calculator-card .error-border {
  border-color: red !important;
}
.calculator-card .text-danger {
  color: red !important;
  font-weight: bold;
  font-size: 15px;
  position: relative;
  top: -5px;
}
.calculator-card .card-header {
  overflow: hidden;
  padding: 43px 0 32px;
}
.calculator-card .card-header h3 {
  text-align: center;
  color: #fff;
  margin: 0 0 20px;
  font-size: 45px;
  font-weight: 700;
}
.calculator-card .card-header .steps {
  display: flex;
  list-style: none;
  gap: 120px;
  margin: 0 auto;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.calculator-card .card-header .steps li {
  text-align: center;
  width: 75px;
  position: relative;
}
.calculator-card .card-header .steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 120px;
  background: #d7d7d7;
  left: 100%;
  top: 25px;
}
.calculator-card .card-header .steps li .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f1f1f1;
  color: #f1f1f1;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #968fd0;
  font-size: 18px;
  margin: 0 auto 10px;
}
.calculator-card .card-header .steps li .text {
  color: #fff;
  font-size: 14px;
}
.calculator-card .card-header .steps li.active .icon {
  border-color: #54eb63 !important;
  background-color: #7d91b0 !important;
}
.calculator-card .card-header .steps li.prev:before {
  background: #54eb63 !important;
}
.calculator-card .card-body {
  padding: 70px;
}
.calculator-card .card-body .intro-loader {
  min-height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #000;
}
.calculator-card .card-body .next-step-btn {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  width: 276px !important;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #450a86, #736dc2, #9957c1);
  border: none;
  padding: 0;
}
.calculator-card .card-body .next-step-btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.calculator-card .card-body a.next-step-btn {
  border-radius: 100px 100px 100px 100px;
  transition: all 0.3s;
  margin: auto;
  margin-top: 46px !important;
}
.calculator-card .card-body .prev-step-btn {
  border-radius: 100px;
  border: 1px solid #C7C7C7;
  background: #FFF;
  color: #C7C7C7;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 276px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calculator-card .card-body .prev-step-btn:hover {
  background-color: #C7C7C7;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.calculator-card .card-body .card-body-inner-wrapper {
  max-width: 1126px;
  display: flex;
  margin: auto;
  width: 100%;
}
.calculator-card .card-body .card-body-inner-wrapper hr {
  height: 1px;
  background-color: #d1d1d1;
  border: none;
}
.calculator-card .card-body .check-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 7px;
  cursor: pointer;
}
.calculator-card .card-body .check-wrapper input[type=checkbox] {
  display: none;
}
.calculator-card .card-body .check-wrapper .check {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 1px solid #cfd3d4;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}
.calculator-card .card-body .check-wrapper .check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  background-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}
.calculator-card .card-body .check-wrapper input:checked + .check {
  border-color: #8e73e7;
}
.calculator-card .card-body .check-wrapper input:checked + .check::before {
  background-color: #8e73e7;
}
.calculator-card .card-body .check-wrapper .text {
  color: #83898c;
  font-size: 16px;
  font-weight: 400;
}
.calculator-card .card-body .check-wrapper .text.active {
  color: #2b2f32 !important;
}
.calculator-card .card-body .buttons-wrapper {
  display: flex;
  width: 100%;
}
.calculator-card .card-body .buttons-wrapper .next-step-btn {
  margin-left: auto;
}
.calculator-card .card-body .single-step-wrapper {
  width: 100%;
}
.calculator-card .card-body .single-step-wrapper h1,
.calculator-card .card-body .single-step-wrapper h2,
.calculator-card .card-body .single-step-wrapper h3,
.calculator-card .card-body .single-step-wrapper h4,
.calculator-card .card-body .single-step-wrapper h5,
.calculator-card .card-body .single-step-wrapper h6 {
  color: #1b1b1b;
}
.calculator-card .card-body .step1-wrapper .steps-header {
  margin: 0 0 19px;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper {
  display: flex;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper .step-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper .step-col .next-step-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper .single-accordion {
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  overflow: hidden;
  transition: border 0.3s ease-in-out;
  margin-bottom: 7px;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper .single-accordion.active {
  border-color: #d1d1d1 !important;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper .single-accordion .accordion-header {
  background: #f1f1f1;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  padding: 17px 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper .single-accordion .accordion-header .check-wrapper {
  margin-left: auto;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper .single-accordion .accordion-body {
  padding: 12px 13px;
}
.calculator-card .card-body .step1-wrapper .steps-col-wrapper .single-accordion .accordion-body p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 40px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper {
  margin-top: 45px;
  margin-bottom: 45px;
  display: flex;
  gap: 20px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .step-col:first-child {
  width: 59%;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .step-col:last-child {
  width: 40%;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper {
  border-radius: 7px;
  border: 1px solid #D1D1D1;
  padding: 20px 25px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .txt {
  margin-top: 21px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper svg {
  font-size: 16px !important;
  color: #AF38B3 !important;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper:not(:last-child) {
  margin-bottom: 8px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .title {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .title .txt {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .icon {
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid #CFD3D4;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .icon svg {
  visibility: hidden;
  opacity: 0;
  position: relative;
  z-index: 10;
  left: 0.5px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper.active .icon {
  border: 1px solid #8E73E7 !important;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper.active .icon:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #8E73E7;
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper.active .icon svg {
  visibility: visible;
  opacity: 1 !important;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .content {
  color: #8B8B8B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .toggler {
  display: flex;
  align-content: center;
  margin-top: 11px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .toggler .points {
  margin-left: auto;
  border-radius: 7px;
  background: linear-gradient(107deg, #3B637B 1.01%, #804974 100%);
  color: #FFF;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .toggler .read-more-link {
  color: #AF38B3;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  cursor: pointer;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #D1D1D1;
  background: #F8F8F8;
  color: #fff;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-price-inner-wrapper {
  border-radius: 8px;
  background: linear-gradient(90deg, #450a86, #736dc2, #9957c1);
  padding: 42px 30px;
  margin-bottom: 20px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-price-inner-wrapper .intro-txt {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 0px;
  margin-bottom: 37px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-price-inner-wrapper .total-amount {
  margin-bottom: 0px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-price-inner-wrapper .total-amount .symbol {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-price-inner-wrapper .total-amount #totalPrice {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .items-wrapper {
  padding-bottom: 20px;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .items-wrapper .cart-item {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .items-wrapper .cart-item:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .items-wrapper .cart-item .text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .items-wrapper .cart-item .points {
  margin-left: auto;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-points {
  border-radius: 7px;
  background: #EDEDED;
  padding: 16px 18px;
  display: flex;
  align-items: center;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-points .text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-points .points {
  margin-left: auto;
  color: #AF38B3;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .show-hide-list-toggler {
  color: #AF38B3;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
  cursor: pointer;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .show-hide-list-toggler svg {
  font-size: 10px;
  transition: all 0.2s ease-in-out 0s !important;
}
.calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .show-hide-list-toggler.active svg {
  transform: rotate(-180deg) !important;
}
.calculator-card .card-body .step3-wrapper .form-wrapper {
  margin-top: 45px;
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 17px 38px !important;
}
.calculator-card .card-body .step3-wrapper .form-wrapper label {
  color: #000;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}
.calculator-card .card-body .step3-wrapper .form-wrapper label strong {
  color: #AF38B3;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.calculator-card .card-body .step3-wrapper .form-wrapper label span {
  color: #8B8B8B;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.calculator-card .card-body .step3-wrapper .form-wrapper .form-control {
  border-radius: 10px;
  border: 1px solid #DDD;
  padding-top: 15px;
  padding-bottom: 15px;
}
.calculator-card .card-body .step4-wrapper .final-icon {
  display: flex;
  justify-content: center;
}
.calculator-card .card-body .step4-wrapper h3 {
  margin-top: 35px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
  .calculator-card .card-body .step3-wrapper .form-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-price-inner-wrapper {
    padding: 42px 20px !important;
  }
  .calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-price-inner-wrapper .total-amount #totalPrice {
    font-size: 35px !important;
  }
  .calculator-card .card-body .step2-wrapper .activity-wrapper .total-price-wrapper .total-price-inner-wrapper .intro-txt {
    margin-bottom: 15px;
  }
  .calculator-card .card-body .buttons-wrapper {
    flex-direction: column;
    gap: 7px;
  }
  .calculator-card .form-wrapper {
    display: flex;
    flex-direction: column;
  }
  .calculator-card .card-header .steps {
    gap: 80px;
  }
  .calculator-card .card-header .steps li:before {
    width: 80px !important;
  }
  .calculator-card .card-body {
    padding: 37px 15px !important;
  }
  .calculator-card .card-body .steps-col-wrapper {
    flex-direction: column;
  }
  .calculator-card .card-body .steps-col-wrapper .step-col {
    width: 100% !important;
  }
  .calculator-card .card-body .steps-col-wrapper .step-col .single-accordion .accordion-body p {
    margin-bottom: 17px;
  }
  .calculator-card .card-body .next-step-btn, .calculator-card .card-body .prev-step-btn {
    width: 100% !important;
  }
  .calculator-card .card-body .step1-wrapper .next-step-btn {
    margin-top: 43px !important;
  }
  .calculator-card .card-body .step2-wrapper .activity-wrapper {
    flex-direction: column !important;
    width: 100% !important;
  }
  .calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .title {
    gap: 30px;
    align-items: start !important;
  }
  .calculator-card .card-body .step2-wrapper .activity-wrapper .single-activity-wrapper .toggler .points {
    font-size: 10px !important;
  }
  .calculator-card .card-body .step2-wrapper .activity-wrapper .step-col {
    width: 100% !important;
  }
}