@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "Poppins";
  font-weight: 400;
  color: #221f1f;
  overflow-x: hidden;
  transition: opacity 0.5s 0.3s ease-in-out;
}
::selection {
  color: #fff;
  background-color: #1f88ef;
}
a,
li {
  text-decoration: none;
  list-style-type: none;
}
a:hover,
li:hover {
  text-decoration: none;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
  outline: none;
}

button {
  border: none;
  outline: 0;
  box-shadow: none;
}
.btn {
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  /* transition: 0.5s ease; */
  text-transform: capitalize;
}

@media only screen and (min-width: 1600px) {
  .btn {
    font-size: 18px;
  }
}

.btn.btn-block {
  display: block;
  width: 100%;
}

h1 {
  font-size: 37px;
  font-weight: 700;
  line-height: 50px;
}
@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 30px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 25px;
    line-height: normal;
  }
}

h2 {
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 22px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  h5 {
    font-size: 16px;
  }
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

p {
  font-size: 16px;
  color: #939ba4;
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 15px;
  }
}
/* Common Classes */
.text-primary-black {
  color: #221f1f;
}
.text-mid-black {
  color: #272424;
}
.text-light-grey {
  color: #939ba4;
}
.text-dark-grey {
  color: #7c7c7c;
}
.text-blue {
  color: #1c86ee;
}
.text-dark-blue {
  color: #0056aa;
}
.text-green {
  color: #59c700;
}
.bg-dark-blue {
  background: #0056aa;
}

.bg-green {
  background: #59c700;
}
.bg-grey {
  background: #f8f8f8;
}
.font-size-9 {
  font-size: 9px;
}
.font-size-12 {
  font-size: 12px;
}
.font-size-14 {
  font-size: 14px;
}
.font-size-15 {
  font-size: 15px;
}
.font-size-16 {
  font-size: 16px;
}
.font-size-18 {
  font-size: 18px;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.radius-0 {
  border-radius: 0;
}

.p-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pt-50 {
  padding-top: 50px;
}

.p-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.hidden {
  display: none;
}

.mh-75 {
  min-height: 75px;
}
.mh-95 {
  min-height: 95px;
}
.border-right {
  border-right: 1px solid #b4bdc6;
}
.border-bottom {
  border-bottom: 1px solid #b4bdc6;
}
.box-shadow-blue {
  box-shadow: 0px 0px 20px #429ce34d;
}
.box-shadow-grey {
  box-shadow: 0px 0px 20px #0000001f;
}
.sub-text {
  font-size: 18px;
  /* width: 48.5%; */
  margin: 0 auto;
}
ul.num li {
  color: #939ba4;
  list-style: auto;
}

ul.disc li {
  color: #939ba4;
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .sub-text,
  .download-now p {
    font-size: 16px;
  }
}

/* Loan Journey */
.lj-bg {
  background: url(../images/loan-journey/green-bg.png) no-repeat;
  background-size: contain;
  background-position: top;
}
.lj-init {
  background: url(../images/loan-journey/blue-gradient-bg.png) no-repeat;
  background-size: contain;
  background-position: top;
}
.lj-status-bar {
  padding: 20px 0 10px;
}
.back {
  border: 1px solid #f7f7f714;
  backdrop-filter: blur(15px);
  border-radius: 6px;
  padding: 5px 10px;
}
.border-play-icon {
  border: 1px solid #ffffff33;
  backdrop-filter: blur(15px);
  border-radius: 6px;
  padding: 8px 10px;
}
.form-lj,
.card-lj {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0px 8px 16px 0px #1c86ee29;
  max-width: 100%;
  margin: 0 auto;
  min-height: 320px;
}

.card-lj {
  min-height: auto;
  margin-bottom: 30px;
}

.form-lj .form-header {
  border-radius: 22px 22px 0 0;
  padding: 15px 20px;
  color: #ffffff;
  border-bottom: 1px solid #0000000f;
}
.form-lj .form-body {
  border-radius: 0 0 22px 22px;
  padding: 20px 15px;
}

.form-lj .form-label {
  font-weight: 500;
  font-size: 13px;
}

.form-lj input {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
}

.form-lj input:focus {
  border: 1px solid #1c86ee;
  box-shadow: none;
  outline: 0;
}

.form-lj .country {
  position: absolute;
  top: 12px;
  left: 20px;
}

.form-lj .form-check-icon {
  position: absolute;
  top: 0;
  right: 14px;
  margin-top: 45px;
}

.form-lj .form-check-icon .fa-circle-check {
  display: none;
  color: #59c700;
}

.form-lj input[type="date"].checked::-webkit-calendar-picker-indicator {
  background-image: none;
}

/* .form-lj input {
  -webkit-appearance: none;
  appearance: none;
} */

.form-lj .form-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.form-lj .form-flex .form-check {
  padding-left: 0;
  width: 47%;
}

.form-lj input[type="radio"] {
  opacity: 0;
  position: absolute;
  height: auto;
  width: auto;
  left: 0;
  z-index: 1;
}
.form-lj input.form-check-input {
  border: 1px solid #e0e0e0;
  padding: 0;
}

.form-lj .form-check-label {
  position: relative;
  padding: 15px 10px;
  display: block;
  font-size: 12px;
  font-weight: 400;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-align: center;
  color: #121212;
  min-width: 130px;
  cursor: pointer;
}

.form-lj input.form-check-input:checked[type="radio"] {
  background-image: none !important;
}

.form-lj input[type="radio"]:checked + label.form-check-label {
  background: #1c86ee1f;
  border: 1px solid #1c86ee;
  color: #221f1f;
  font-weight: 500;
}

.form-control.hide-select
  ~ .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

form.form-lj input[type="checkbox"].checked:checked {
  background-color: #58c727;
  border-color: #58c727;
}

.form-lj .form-field.selected .form-label {
  color: #12121266;
}

.form-lj .form-field.selected input {
  color: #121212;
}

.ps-80 {
  padding-left: 75px !important;
}

.form-lj input::placeholder {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.2);
}

.form-lj .otpHide,
.form-lj .hide {
  display: none;
}

.form-lj .otp-fields {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.form-lj input.otp__digit {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-weight: 600;
  padding: 10px;
  color: #121212;
}
.form-lj .count-down {
  border: 1px dashed #2b6100;
  /* border-image-source: linear-gradient(180deg, #59c700 0%, #2b6100 100%); */
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #59c700;
  /* display: inline-block; */
}
.w-90 {
  width: 90%;
}

.status {
  width: 85%;
  font-weight: 600;
  text-align: center;
}

.loan-amt-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.loan-amt label.form-label,
.loan-amt input {
  color: #121212;
  font-size: 25px;
  width: auto;
  margin-bottom: 0;
}

.loan-amt input {
  padding: 0 10px;
  overflow: hidden;
  min-width: 140px;
}
.loan-amt input,
.loan-amt input:focus {
  border: 0;
}

.loan-amt {
  display: flex;
  align-items: center;
  width: calc(100% - 20px - 72px);
  border-bottom: 1.5px dashed #00000066;
  overflow: hidden;
}

.lj-step-text {
  background: #f4f4f4;
  border-radius: 10px;
  font-size: 10px;
  color: #121212;
  padding: 10px;
  display: flex;
  align-items: center;
  margin: 50px 0 15px;
}

.lj-logo {
  max-width: 65px;
}

.sect-lj {
  padding: 15px 0 100px;
}

.card-lo {
  border: 1.5px solid #1c86ee;
  padding: 20px 12px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.card-lo-num {
  position: absolute;
  width: 40px;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1c86ee33;
  border-radius: 12px 0 0 12px;
  color: #121212;
  font-size: 18px;
  font-weight: 700;
  z-index: 1;
}
.card-lo-ribbon {
  background: url("../images/loan-journey/ribbon-bg.png") no-repeat;
  background-size: contain;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  padding: 5px 10px;
  position: absolute;
  top: -1px;
  left: -1px;
}
.card-lo p {
  font-size: 12px;
  color: #121212;
  font-weight: 500;
}
.card-lo .btn-box .btn {
  width: 100%;
}

.card-lo-logo {
  max-width: 100px;
}
.ptf {
  background: #0d0d0d08;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 15px;
}

.ptf h6 {
  font-size: 12px;
  font-weight: 600;
}

.ptf p {
  font-size: 9px;
  color: #121212cc;
  margin-bottom: 0;
}
.ptf .col-4:not(:last-child) {
  border-right: 0.5px solid #1c86ee33;
}

.btn-amt {
  width: 25px;
  height: 25px;
  border: 1px solid #0000004d;
  text-align: center;
  border-radius: 50%;
  background: transparent;
  color: #121212;
  padding: 0;
  line-height: 25px;
}
.btn-amt:hover,
.btn-amt:focus {
  border: 1px solid #58c727;
}

.btn-lj-blue {
  background: linear-gradient(182.63deg, #1c86ee 2.14%, #1875d0 97.76%);
  box-shadow: 0px 0px 28px 0px #1875d047;
  border-radius: 6px;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 14px;
}

.btn-lj-blue:hover {
  background: linear-gradient(182.63deg, #1c86ee 2.14%, #1875d0 97.76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  color: #ffffff;
}

.btn-google {
  border: 1px solid transparent;
}

.btn-google:hover {
  background: linear-gradient(
    180deg,
    rgba(28, 134, 238, 0.05) 0%,
    rgba(24, 117, 208, 0.05) 100%
  );
  border: 1px solid #1c86ee33;
}
.icon20 {
  max-width: 20px;
}

.selected-amt {
  background: #0154a6ad;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 8px;
}
.coin-img {
  max-width: 138px;
}
.confetti {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  height: 300px;
}
.coinspin {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-lj-tp {
  background: #ffffff;
  padding: 15px;
  box-shadow: 4px 0px 16.3px 0px #00000040;
}

.get-app p,
.get-app {
  font-size: 11px;
  color: #121212;
}

.gplay {
  height: 40px;
}

.footer-lj-btm {
  background: #000000;
  padding: 15px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.deadline {
  animation: spin 2s infinite ease;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* 31-3-2025 content css for different loans */
.benefits-lj .card {
  border-radius: 16px;
  align-items: center;
  padding: 20px;
}

.card_icon {
  max-width: 70px;
}

.benefits-lj-img {
  max-width: 100%;
}

.top-banks-offers-lj .row {
  border-radius: 22px;
  text-align: center;
}

.top-banks-offers-lj .row .col-lg-3.col-6:not(:last-child) {
  border-right: 0;
}

.loan-eligibility-lj .card {
  border: 2px solid #1c86ee;
  background: #f5faff;
  box-shadow: none;
  border-radius: 15px;
  padding: 20px;
}

.loan-eligibility-lj .card p {
  color: #121212;
  min-height: auto;
  margin-bottom: 0;
}

.docs-require-lj ul li {
  list-style-type: disc;
}

.loan-steps-lj .card {
  padding: 15px;
  margin-right: 12px;
  border-radius: 8px;
  max-width: 125px;
  margin-bottom: 15px;
}

.loan-steps-lj .card h6 {
  font-size: 14px;
  font-weight: 600;
}

/* 01-04-2025 updation */
.accordion-button {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
}
.accordion-button:focus {
  background: #f4f4f4;
  color: #1c86ee;
}
/* ./end */
.download-now-lj {
  background: linear-gradient(88deg, #075395 0%, #17a0d8 100%);
  color: #ffffff;
  padding: 50px 0;
  margin-bottom: 50px;
}

.btn-green-gradient-lj {
  background: linear-gradient(175deg, #58c727 0%, #5f9b5a 100%);
  color: #ffffff;
  padding: 10px 30px;
}

.btn-green-gradient-lj:hover {
  background: #272424;
  color: #ffffff;
}

/* 01-04-2025 */
.loan-eligibility-lj .business-lj .card h5,
.loan-eligibility-lj .business-lj .card p {
  min-height: auto;
}
.hero-cc li {
  color: #939ba4;
  font-weight: 500;
  font-size: 12px;
}

.hero-cc .fa-check {
  background: #59c727;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50px;
  margin-right: 5px;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}

.apply-loan-cc .row {
  background: linear-gradient(88deg, #075395 0%, #17a0d8 100%);
  border-radius: 22px;
  padding: 30px;
}

.apply-loan-cc h1 {
  font-size: 20px;
}

.benefit-lj-card {
  min-width: 166px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 8px !important;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  border: 0;
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
}
.lj-card-blue {
  border: 2px solid #1c86ee;
  background: #f5faff;
  box-shadow: none;
  border-radius: 15px;
  padding: 15px;
  flex-direction: column;
  display: flex;
  align-items: center;
}
.lj-card-blue .card-body {
  text-align: left;
  color: #000000;
  padding: 20px 15px 0;
  width: 100%;
}
.lj-card-blue .card-body p {
  color: #000000;
  font-weight: 500;
}

.nav-tabs.bestCC-tabs {
  border-bottom: 0;
  max-width: 100%;
  margin: 0 auto;
}
.nav-tabs.bestCC-tabs .nav-link {
  border: 0;
}
/* .nav-tabs.bestCC-tabs .nav-link img {
  max-width: 120px;
  margin: 0 auto;
}
.nav-tabs.bestCC-tabs .owl-carousel .owl-item {
  text-align: center;
} */

/* Welcome */
.note {
  font-weight: 500;
  font-size: 11px;
  color: #f60303;
  text-align: center;
  margin: 0 0 20px 0;
}

/* table */
.table tr th {
  border-radius: 5px 0 0 5px;
}
.table tr td {
  border-radius: 0 5px 5px 0;
}
.table tr th,
.table tr td {
  padding: 15px 15px;
}

.table tbody th {
  border-right: 0.5px solid #1a8fef;
}
.table > :not(caption) > * > * {
  border-bottom-width: 0;
  box-shadow: none;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background: #c8e8ff;
  border-radius: 5px;
}
.table-striped > tbody > tr:nth-of-type(even) {
  background: #f2faffcf;
  border-radius: 5px;
}
.table tr td {
  color: #1a8fef;
  font-weight: 600;
}

/* Select */
.form-lj select {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
}

.form-lj select:focus {
  border: 1px solid #1c86ee;
  box-shadow: none;
  outline: 0;
}

/* Select 2 CSS - 02-04-2025 */
.select2-container {
  width: 100% !important;
  display: block;
}
.select2-container--default .select2-selection--single {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
  height: 46.33px;
  line-height: 46.33px;
  width: 100%;
  display: block;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: auto;
  top: 50%;
  right: 20px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #121212 transparent transparent transparent;
  border-width: 7px 6px 0 6px;
}
.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #121212 transparent;
  border-width: 0 6px 7px 6px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #121212;
  line-height: normal;
  padding-left: 0;
}

.select2-results__option {
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 6px;
  color: #121212;
  font-size: 13px;
  margin: 0 10px 0 4px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: linear-gradient(
    0deg,
    rgba(28, 134, 238, 0.12),
    rgba(28, 134, 238, 0.12)
  ) !important;
  border: 1px solid #1c86ee;
  color: #121212;
}

.select2-dropdown {
  width: 100%;
  box-shadow: 0px 4px 14px 0px #0000001a;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px;
  margin-top: 8px;
  border: 0;
}

.read-text {
  display: none;
}
.currrency-sign {
  position: absolute;
  top: 12px;
  left: 12px;
}

/* 07-04-2025 */

.base-timer {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.base-timer__svg {
  transform: scaleX(1);
}
.base-timer__circle {
  fill: none;
  stroke: none;
}
.base-timer__path-elapsed {
  stroke-width: 6px;
  stroke: #59c70024;
}
.base-timer__path-remaining.green {
  color: #59c700;
}
.base-timer__path-remaining.transparent {
  color: transparent;
}
.base-timer__path-remaining.red {
  color: red;
}
.base-timer__path-remaining.warning {
  color: orange;
}
.base-timer__path-remaining {
  stroke-width: 6px;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__label {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -5%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #121212;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.base-timer__text-time {
  color: #121212;
  display: flex;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  position: absolute;
  top: 58%;
  width: 150px;
  margin: 0 auto;
}

#secondChanceModal .modal {
  background: rgba(0, 0, 0, 0.5);
}
#secondChanceModal .modal-content {
  border-radius: 22px;
  border: 0;
}
#secondChanceModal .modal-body p {
  color: #121212;
  font-size: 15px;
}
.time-end-icon {
  color: #59c700;
  font-size: 3rem;
  text-align: center;
}


.slide-up {
  animation: slideUp 1.2s ease-in-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
#popUpBlockedModal .logo img {
  max-width: 60px;
}
#popUpBlockedModal .modal-dialog .modal-content {
  background: #ecf6ff;
  border-radius: 0 0 12px 12px;
}
#popUpBlockedModal .modal-dialog p {
  color: #000000;
  font-size: 16px;
}
#popUpBlockedModal .modal-header .btn-close {
  background: none;
  width: 1.5em;
  color: rgb(0, 0, 0, 0.9);
  margin: -10px 0 0 auto;
  font-size: 16px;
}
#popUpBlockedModal .modal-header .btn-close:hover {
  color: rgb(0, 0, 0);
}
#popUpBlockedModal .modal-header .btn-close:focus {
  box-shadow: none;
}
.modal-custom {
  top: 0;
  margin: 0 0;
}
#popUpBlockedModal .btn-green-gradient-lj,
#popUpBlockedModal .btn-lj-blue {
  padding: 6px 15px;
  border-radius: 6px;
}
#popUpBlockedModal .btn-green-gradient-lj {
  padding: 6px 30px;
  min-width: 150px;
}
#popUpBlockedModal {
  background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 576px) {
  #popUpBlockedModal .modal-dialog {
    margin: 0 auto;
  }
}

.check-radio {
  position: absolute;
  right: -5px;
  top: -5px;
  background-color: #58C727;
  color: #fff;
  width: 15px;
  height: 15px;
  display: none;
  line-height: 16px;
  border-radius: 50px;
  text-align: center;
  font-size: 8px;
  margin-top: 4px;
}

.g-check .check-radio {
  display: block;
}

.modal-open {
}
@media (max-width: 576px) {
  #secondChanceModal .modal-dialog {
    width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 420px) {
  .succes-coin {
    margin-top: 10%;
  }
  .get-app,
  .get-app p {
    font-size: 16px;
  }
}

/* 01-04-2025 */
@media (min-width: 768px) and (max-width: 992px) {
  .loan-eligibility-lj .business-lj .card h5 {
    min-height: 44px;
  }
  .apply-loan-cc h1 {
    font-size: 22px;
  }

  .form-lj .form-flex .form-check {
    padding-left: 0;
    width: 22%;
  }
}

@media screen and (min-width: 768px) {
  .lj-bg,
  .lj-init,
  .lj-init.loan-offers {
    background: none;
  }

  .lj-init.loan-offers .topbar,
  .lj-init .lj-status-bar {
    background: linear-gradient(172.75deg, #1c86ee 5.49%, #0056ab 112.68%);
  }

  .lj-bg .topbar {
    background: #f2fbeb;
  }

  .lj-init .lj-status-bar {
    padding: 15px 0;
  }
  .card-lj .get-app {
    font-size: 22px;
  }
  .card-lo p,
  .ptf h6 {
    font-size: 15px;
  }

  .ptf p {
    font-size: 11px;
  }

  .confetti {
    top: -100%;
    width: 300px;
    height: 250px;
  }
  /* 31-03-2025 */
  .loan-eligibility-lj .card p {
    min-height: 72px;
  }
  .download-now-lj {
    padding: 90px 0;
  }
  /* 01-04-2025 */
  .accordion-button {
    padding: 20px 30px 20px 30px;
    font-size: 18px;
  }
  .lj-card-blue {
    flex-direction: row;
  }
  .lj-card-blue .card-img {
    width: 45%;
  }
  .lj-card-blue .card-body {
    width: 55%;
    padding: 0 0 0 15px;
  }
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-next,
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-prev,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-next,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    width: 30px;
    height: 30px;
    background: linear-gradient(182.63deg, #1c86ee 2.14%, #1875d0 97.76%);
    box-shadow: 0px 0px 28px 0px #1875d047;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    line-height: 26px;
  }
  .bestCC-carousel.owl-carousel .owl-nav button.owl-next,
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-next {
    right: -38px;
  }
  .bestCC-carousel.owl-carousel .owl-nav button.owl-prev,
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -38px;
  }
  /* Welcome */
  .note {
    font-size: 13px;
  }
}

@media screen and (min-width: 991px) {
  .selected-amt,
  .form-lj {
    max-width: 80%;
    margin: 0 0 0 auto;
  }
  .form-lj .form-body {
    padding: 20px;
  }
  .lj-desk {
    display: block;
  }
  .lj-logo {
    max-width: 100%;
  }
  .sect-lj {
    padding: 15px 0 150px;
  }
  .card-lj .get-app {
    font-size: 28px;
  }
  .card-lo .row > div {
    border-right: 0.5px solid #1c86ee33;
  }

  .ptf {
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
  }
  .row.ptf .col-4:last-child {
    border-right: 0;
  }
  .card-lo {
    padding: 30px 12px;
  }
  .card-lo .btn-lj-blue {
    padding: 14px 15px;
  }
  .lj-step-text {
    font-size: 11px;
  }
  /* 31-03-2025 */
  .benefits-lj-img img {
    max-width: 450px;
  }
  .top-banks-offers-lj .row .col-lg-3.col-6:not(:last-child) {
    border-right: 1px solid #b4bdc6;
  }
  .loan-eligibility-lj .card p {
    min-height: 48px;
  }
  /* 01-04-2025 */
  .apply-loan-cc .row {
    padding: 50px 30px;
  }
  .apply-loan-cc h1 {
    font-size: 28px;
  }
  .lj-card-blue h4 {
    min-height: 44px;
  }
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-next,
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-prev,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-next,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-prev {
    width: 35px;
    height: 35px;
    font-size: 30px;
    line-height: 32px;
  }
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-next,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-next {
    right: -50px;
  }
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-prev,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
  }
  .nav-tabs.bestCC-tabs {
    max-width: 70%;
  }
  /* 02-04-2025 */
  .declaration {
    max-width: 80%;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .card-lo-num {
    width: 30px;
    font-size: 16px;
  }
}

/* 404 not found page css */

.section-not-found {
  padding: 80px 0 200px;
  background: url(../images/notFound-bg.png) no-repeat;
  background-size: cover;
  background-position: top center;
}
#notFound {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}
.btn-blue-cap {
  padding: 15px 30px;
  background: #1443C3;
  color: #FFFFFF;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-blue-cap:hover {
  background: rgba(20, 67, 195, 0.96);
  color: #FFFFFF;
}
@media
 screen and (max-width: 575px) {
  #notFound {
    width: 90%;
  }
  .section-not-found .w-75 {
    width: 100% !important;
  }
}

/*404 page not found emd */

/*Button loader css start */
.btn-loader {
  border: 0.22em solid #FFFFFF;
  border-bottom-color: transparent;
  background: transparent;
  border-radius: 50%;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
  /* position: relative; */
  width: 20px;
  height: 20px;
  display: inline-flex;
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*Button loader css end */

