@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  overflow-x: hidden;
}
.h1tag {
}
#interestrate table tr th,
#interestrate table tr td {
  border: none;
}

/* slider */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 12px;
  height: 12px;
  /* margin-top: 8px; */
}

/* Optionally, you can also change the arrow color */
.carousel-control-prev,
.carousel-control-next {
  color: #333; /* Change to your desired color */
}
/* slider end */
.border.none {
  border: none;
}
.display-none {
  display: none;
}

/*  */
.pd-lt-rt {
  padding-left: 30px;

  /* padding-right: 4%; */
}
.expand-all {
  font-size: 16px;
  color: #ff8901;
  display: flex;
  align-items: center;
  padding-right: 0;
  padding-left: 25px;
  padding-top: 30px;
}
.expand-all:focus {
  box-shadow: none;
}
.expand-all:hover {
  color: #ff8901;
}
.expand-all::after {
  float: right !important;
  content: url("../assets/accordion_close.png");
  padding-left: 5px;
  padding-top: 5px;
}
.expand-all.active::after {
  float: right !important;
  content: url("../assets/accordion_open.png");
  padding-left: 5px;
  padding-top: 5px;
}
.expand-all-card {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.pad-lt {
  padding-left: 5%;
}
.deposit_online_cta {
  text-align: left;
  margin-top: 30px;
}
.mobile-show {
  display: none;
}
.bg-green-elig {
  background-color: #009f7f;
}
.howtpapplybtn {
  margin-left: 20px;
}
/* range */
/* range */

input[type="range"] {
  width: 12.5em;
}

input[type="range"] {
  color: #f78f35;
  --thumb-height: 1.125em;
  --track-height: 0.125em;
  --track-color: rgba(0, 0, 0, 0.2);
  /* --brightness-hover: 180%; */
  --brightness-down: 80%;
  --clip-edges: 0.125em;
}

input[type="range"].win10-thumb {
  color: #2b2d42;

  --thumb-height: 1.375em;
  --thumb-width: 0.5em;
  --clip-edges: 0.0125em;
}

/* === range commons === */
input[type="range"] {
  position: relative;
  background: #fff0;
  overflow: hidden;
}

input[type="range"]:active {
  cursor: grabbing;
}

input[type="range"]:disabled {
  filter: grayscale(1);
  opacity: 0.3;
  cursor: not-allowed;
}

/* === WebKit specific styles === */
input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  transition: all ease 100ms;
  height: var(--thumb-height);
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  position: relative;
}

input[type="range"]::-webkit-slider-thumb {
  --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
  --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
  --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
  --clip-further: calc(100% + 1px);
  --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
    100vmax currentColor;

  width: var(--thumb-width, var(--thumb-height));
  background: linear-gradient(currentColor 0 0) scroll no-repeat left center /
    50% calc(var(--track-height) + 1px);
  background-color: currentColor;
  box-shadow: var(--box-fill);
  border-radius: var(--thumb-width, var(--thumb-height));

  filter: brightness(100%);
  clip-path: polygon(
    100% -1px,
    var(--clip-edges) -1px,
    0 var(--clip-top),
    -100vmax var(--clip-top),
    -100vmax var(--clip-bottom),
    0 var(--clip-bottom),
    var(--clip-edges) 100%,
    var(--clip-further) var(--clip-further)
  );
}

input[type="range"]:hover::-webkit-slider-thumb {
  filter: brightness(var(--brightness-hover));
  cursor: grab;
}

input[type="range"]:active::-webkit-slider-thumb {
  filter: brightness(var(--brightness-down));
  cursor: grabbing;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
    100% calc(var(--track-height) + 1px);
}

input[type="range"]:disabled::-webkit-slider-thumb {
  cursor: not-allowed;
}
/* range */
/* range */

/*  */

/* radio */

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer !important;
  line-height: 15px;
  display: inline-block;
  color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #f78f35;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.text-middle {
  font-size: 20px;
  font-family: "Ubuntu", sans-serif;
}

/*  */
.pull-right {
  float: none;
}
.vb-transactions {
  background-color: #fafafa;
}
.mar-4 {
  margin-top: 4px;
}
p.margin-0.footer-text.text-center {
  margin: 0 !important;
}
.bg-grey {
  background-color: #ececec;
}
.desk-hide {
  width: 100%;
}
.nav {
  height: 67px;
  background-color: #108a70;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 3;
}
.navbar {
  /* padding: 0 1rem; */
  padding-bottom: 4px;
  padding-top: 0 !important;
}
.navbar-nav {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  margin-top: 10px;
}
.navbar-toggler-icon div {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
}
.navbar-nav li.active::after,
.navbar-nav li:hover::after {
  display: block;
  content: "";
  border-top: 4px solid #d7be0e;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-top: 4px;
}
.carousel-item li.active ::after {
  display: block;
  content: "";
  border-top: 4px solid #d7be0e;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.nav li a {
  color: #ffffff;
  font-size: 13px;
  padding: 15px 0;
}
nav ul {
  margin-bottom: 0;
}
.mobile-res {
  display: none;
}
/* .logo img {
  position: absolute;
  left: 0;
  z-index: 99999999;
  top: 0;
  margin-top: -10px;
} */
.banner-text {
  position: absolute;
  left: 10%;
  top: 30%;
}
.accordion-row {
  justify-content: space-between;
  padding-right: 20px;
}
.clr-org {
  color: #ffca43;
}
.banner-text h4 {
  color: #fff;
  font-size: 36px;
  font-weight: 400 !important;
}
.banner-text h2 {
  font-size: 45px;
  color: #fff;
  font-weight: bold;
  line-height: 50px;
  margin-bottom: 33px;
}
.banner-text h2 span {
  color: #ffc531;
}
.banner-text img {
  margin-bottom: 30px;
}
.banner-text a.invest-btn {
  background-color: #ffc531;
  border-radius: 25px;
  padding: 10px 50px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-size: 19px;
}

.clr-blue {
  color: #1ea185;
}

.card-space {
  padding-top: 40px;
  padding-bottom: 50px;
}

/*  */
img.img-fluid.fix {
  position: absolute;
}
img.abs {
  position: absolute;
}
.intrest {
  position: relative;
  top: 8rem;
}
.intrest {
  position: relative;
  top: 8rem;
}
p.senior-fixed {
  font-size: 30px;
  line-height: 44px;
  width: 50%;
  color: #ffffff;
  font-weight: bold;
  padding: 10px;
}
p span.span-senior {
  color: orange;
}
button.btn.btn-warning {
  position: relative;
  top: 8rem;
  left: 33rem;
  padding: 0.6rem 3rem;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px;
}
.sec-head {
  position: relative;
  text-align: center;
  margin-top: 6rem;
  display: flex;
}
.custom-row {
  margin-left: 0px;
  margin-right: 0px;
}
h1 {
  padding: 5px 10px;
}
span.digi-line {
  background-color: #ecae3b;
  width: 4px;
  height: 24px;
}
.digi-text {
  margin-left: 1rem;
  font-weight: bold;
}
.digital-head {
  display: flex;
}
.digital-head.d-flex {
  justify-content: flex-start;
}
.digi-bg {
  background-color: #fbeabe;
}
.border-0 {
  background-color: #fbeabe;
}
a.click {
  color: #ff8802;
  text-decoration: none !important;
}
a.invest {
  color: #ffffff;
  text-decoration: none !important;
}
.digi-bg.p-5 {
  border-radius: 0rem 0rem 3rem 3rem;
  box-shadow: 0px 12px 1px 1px #fff2d2;
}

.card.p-5 {
  border-radius: 0 0 0rem 3rem;
  background-color: #009f7f;
}
span.span-sep {
  padding: 6px 15px;
  border: 2px solid #30a396;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
}

.side-header {
  color: #209b80;
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  line-height: 42px;
}

/* Benefits */

.Benefits_header {
  color: #076162;
}
.benefits_para {
  font-size: 16px;
  color: #333333;
  padding-top: 15px;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
.benefits_sec {
  padding: 1.1rem;
}

.requirements {
  background-color: #209b80;
  border-radius: 10px;
  padding: 30px;
  height: 90%;
}

.requirements p {
  font-size: 30px;
  color: #fafafa;
  letter-spacing: 0;
  line-height: 42px;
  font-weight: 700;
}

.aadhar p {
  font-size: 16px;
  color: #fafafa;
  letter-spacing: 0;
  line-height: 33px;
  font-weight: 500;
  padding-left: 20px;
}
.aadhar_sec {
  border-bottom: 1px solid #fafafa;
  padding: 13px 0px;
}
.how-to-apply-steps .list-para {
  font-size: 14px;
}
/* end */

/* calculator */

.rupee {
  text-align: center;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}
.rupees_align {
  padding-left: 140px;
}
.dot {
  /* border: 1px solid #000; */
  background: #f5f5f5;
  margin: 14px;
}
.dot p {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #ecae3b;
  padding: 10px;
  margin: 10px;
}
.dot_green {
  background-color: #f5f5f5;
  margin: 14px;
}
.dot_green p {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #076162;
  padding: 10px;
  margin: 10px;
}
.maturity_blk {
  border: 1px solid rgba(130, 130, 130, 0.58);
  border-radius: 10px;
  width: 100%;
  padding: 15px 0px;
}
.maturity_blk p {
  color: #1ea185;
  font-size: 23px;
  line-height: 35px;
}
.maturity_blk span {
  color: #1ea185;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
}
/* end */

.bitmap {
  width: 50px;
  height: 47px;
}
.sec-heading i {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
}
.interest-rates-for-p {
  color: #0d0d0d;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  line-height: 42px;
  text-align: left;
}

.below-mentioned-are {
  color: #1f1f1f;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 30px;
  opacity: 0.5;
}
.interest-rates-are-s {
  color: #1f1f1f;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  margin-top: 28px;
}
.rates-table {
  background-color: #c2fff2;
  border-radius: 15px 15px 15px 15px;
}
.rates-table th {
  background-color: #92f4df;
  padding: 19px;
  font-size: 15px;
  width: 50%;
}
tbody {
  font-size: 15px;
}

.rates-table td {
  /* padding: 18px 20px; */
  border-bottom: 1px solid #a4eadb;
}
.features-col {
  background-color: #209b80;
  border-radius: 10px;
  height: 90px;
  display: flex;
  margin: 0px 10px;
}

.space {
  padding: 10px;
}
.cls-span {
  font-size: 20px;
  color: #fff;
}
.pd-lft {
  padding-left: 10px;
}
.cls-span-1 {
  font-size: 18px;
  color: #fff;
}
.num-span {
  font-size: 20px;
  color: #fff;
}
.num-span-percent {
  padding: 30px;
}
.padd-10 {
  padding: 10px 20px;
}
ul.additional-interes {
  line-height: 20px;
  margin-right: 12px;
  margin-left: 12px;
  list-style: disc;
  padding-left: 1rem;
}
ul.additional-interes li {
  font-size: 12px;
  color: #000;
}
.interestratebtn {
  margin-left: 10px;
}
.per-text {
  color: #209b80;
  font-family: "Ubuntu", sans-serif;
  font-size: 69px;
  line-height: 48.3px;
  opacity: 1;
  text-align: left;
  padding: 0px 26px;
  font-weight: bold;
  filter: brightness(0.1);
}
.per-decs {
  color: #209b80;
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  line-height: 42px;
  opacity: 0.800000011920929;
  text-align: left;
  padding: 20px 20px;
}
.per-box-1 {
  background-color: #c2fff2;
  border-radius: 0 0 0;
  opacity: 0.5;
  width: 426px;
  height: 187px;
  margin-top: 0;
  border-radius: 0px 0px 60px 0px;
}
.per-box-2 {
  background-color: #c2fff2;
  border-radius: 0 0 0;
  opacity: 0.5;
  width: 426px;
  height: 187px;
  margin-top: 13%;
  border-radius: 0px 0px 60px 0px;
}
.per-sec {
  margin-left: 20%;
}

.footer-text {
  padding: 20px 0px;
  background-color: #1ea185;
  color: #ffffff;
}

.footer-fixed {
  background-color: #d7d7d7;
  position: fixed;
  bottom: -1px;
  width: 100%;
  float: left;
  z-index: 3;
  display: none !important;
}
.imgAlter {
  margin-top: 100px;
}

.fixed-links {
  padding: 20px 0;
  display: block;
  width: 100%;
  text-align: center;
}
.fixed-links a,
.fixed-links > span {
  display: inline-block;
  line-height: 1.2em;
  margin: 0 50px;
  font-size: 21px;
  color: #b4975a;
}
.link-text {
  margin: 3px;
}
.link-text a {
  background-color: #ff8901;
  border: 1px solid #ff8901;
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
}
.start-btn a {
  padding: 8px 15px;
  font-size: 14px;
}
.csr-initiatives {
  margin-top: 6rem;
}
.how-to-apply-steps ul li::before {
  content: "\2022";
  color: #fff;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.how-to-apply-steps ul {
  list-style: none !important;
}
.list-para {
  color: #fff;
  margin: 11px 10px 22px 10px;
}
.white-para {
  color: #fff;
  margin: 10px 0;
}
.how-to-apply-steps ul li .list-para:before {
  content: "";
  display: block;
  width: 2px;
  height: 68px;
  background: #aba74d;
  position: absolute;
  transform: translate(-24px, -18px);
}
.how-to-apply-steps ul li:last-child .list-para::before {
  display: none;
}

.side-logo {
  margin-bottom: 2rem;
}
.side-logo h2 {
  color: #fff;
}

.eligibility-points {
  display: flex;
  margin-top: 6%;
}
.eligibility-desc {
  margin-left: 1rem;
  margin-bottom: 0;
  line-height: 27px;
  width: 100%;
}
.accordion-item p {
  margin-bottom: 0;
}
.eligibility-sec-1 {
  width: 80%;
}
.eligibility-sec-2 {
  width: 80%;
  float: right;
}
.eligibility-line:before {
  content: "";
  display: block;
  width: 1px;
  height: 90%;
  background: #000;
  opacity: 0.3;
  left: 5%;
  top: 4%;
  transform: rotateY(39deg);
  position: absolute;
}
#faq {
  padding-bottom: 0 !important;
}
.frequently-accordion {
  width: 99%;
  margin: auto;
}
.frequently-accordion .card {
  margin-bottom: 10px;
  background: #ffffff;
  border-radius: 8px !important;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%) !important;
}
.frequently-accordion .card.active .collapse.show,
.frequently-accordion .card.active .card-header,
.frequently-accordion .card.active {
  background-color: #fff !important;
  border-radius: 8px !important;
}
.frequently-accordion .card.active .card-header {
  box-shadow: none !important;
}
.frequently-accordion .card-header {
  background-color: #ffffff !important;
  border: 0 !important;
  border-radius: 8px !important;
}
.card .card-header h5 button {
  color: #333333;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  width: 100%;
  font-weight: 500;
}
.card .card-header button:focus {
  outline: 0;
  box-shadow: none !important;
}
.card-body {
  color: #333333;
  font-family: Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  padding: 0 33px 30px;
}
.card-header button:before {
  float: right !important;
  content: url("../assets/accordion_close.png");
  padding-right: 5px;
}
.card.active .card-header button:before {
  float: right !important;
  content: url("../assets/accordion_open.png");
}
.card-all section.bg-blue-image {
  background-color: #fbeabe;
  margin-bottom: 5%;
  border-radius: 0 0 3rem 3rem;
  box-shadow: 0px 12px 1px 1px #fff2d2;
}
.main-heading {
  margin-bottom: 7%;
}
.depo_bg {
  background-color: #f5f5f5;
}
.fixed_deposit_calcul h2 {
  color: #209b80;
  font-family: Ubuntu;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
}
.check_returns_on_you {
  color: #0d0d0d;
  font-family: Ubuntu;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
}
.toll-free {
  font-size: 20px;
  color: #209b80;
  padding: 5px 0px;
}
.toll-free:hover {
  color: #ffc600;
  text-decoration: none;
}
.toll-free-click {
  font-size: 20px;
  color: #209b80;
  padding: 5px 0px;
  text-decoration: underline;
}
.toll-free-click:hover {
  color: #ffc600;
  text-decoration: none;
}
.tel {
  color: #212529;
}
.main_sec {
  width: 90%;
  margin: auto;
  background-color: #e0e0e063;
  padding: 30px 30px 0px 30px;
  border-radius: 1rem;
}
.load {
  display: flex;
}
.loader {
  border: 25px solid #ffc531;
  border-radius: 50%;
  border-top: 25px solid #1ea185;
  width: 150px;
  height: 150px;
  transform: rotate(120deg);
  /* margin: 4% 8% 9% 28%; */
  box-shadow: 0px 0px 5px 0px;
  margin-top: 5rem;
  /* margin-left: 16%; */
}
.maturity {
  text-align: end;
}
.invest {
  visibility: hidden;
}
/* .deposit {
    position: relative;
    bottom: 6rem;
    left: -44%;
    right: 2rem;
    top: 55%;
} */
.column1 {
  /* float: left;
width: 33.33%; */
  padding: 10px;
  display: flex;
}
.check_returns {
  left: 4%;
  top: -10px;
}
.toll-free1 {
  border-right: 1px solid #c5c5c5;
  padding: 5px 50px 5px 20px;
  font-size: 14px !important;
}
.toll-free2 {
  border-right: 1px solid #c5c5c5;
  padding: 5px 100px 5px 20px;
  font-size: 14px !important;
}
.toll-free3 {
  padding: 5px 100px 5px 20px;
  font-size: 14px !important;
}

h2 {
  padding: 5px 10px;
}
p.eligibility-desc.num {
  margin-top: 5px;
}
.digital-head {
  margin-top: 80px;
}
h3 {
  font-size: 1.2rem;
}
/* #eligibility {
  margin: 0% 8%;
} */
.Eligibility_Criteria h4 {
  font-size: 1.4rem;
}
.fixed_deposit_calcul h2 {
  color: #209b80;
  font-family: Ubuntu;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
}
.check_returns_on_you {
  color: #0d0d0d;
  font-family: Ubuntu;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
}
/* .main_sec {
    width: 80%;
    margin: auto;
    background-color: #e0e0e063;
    padding: 30px;
    border-radius:10px;
} */

.maturity {
  text-align: end;
}
.invest {
  visibility: hidden;
}
/* .deposit {

    position: relative;
    bottom: 9rem;
    left: 3%;
    right: -1rem;
} */
.range_blk {
  display: flex;
  justify-content: space-between;
}
.calc-summary {
  background-color: #fff;
  margin: auto;
  border-radius: 5%;
  padding: 10px 10px;
}
.citizenship p {
  border: 1px solid #aeaeae;
  padding: 3px 9px;
  border-radius: 17px;
}
.calc-button {
  margin: auto;
}
#calc_note {
  margin: 10px;
  font-size: 14px;
}
#astrik_symbol {
  top: 9px !important;
  position: relative;
}
.month_sec {
  border-bottom: 2px solid #000 !important;
  color: #333333 !important;
  cursor: pointer;
}
#FdepType {
  color: #333333 !important;
}
p.maturity-para {
  display: flex;
  justify-content: center;
}
h3 {
  font-size: 1.5rem;
  font-weight: 800;
}
span.intrest-rate {
  font-size: 14px;
  background-color: rgba(53, 53, 53, 0.62);
  border-radius: 13.5px;
  color: #ffffff;
  padding: 0.3rem 1rem;
}
td.cust-border-2 {
  border-bottom: none !important;
  border-right: none !important;
}
td.cust-border-1 {
  border-bottom: none !important;
}
section.how-to-apply {
  background-color: #fbeabe;
  padding-left: 0;
  padding-right: 0;
}
.col.green.howToApplyGreen:first-child {
  box-shadow: 20px 0px 0px #009f7f85;
  z-index: 1;
}
.rupee-top {
  margin-top: 5%;
}
.load-top {
  top: -50px;
  left: 12%;
}

.howToApplyGreen .card {
  border: 0;
}
.howToApplyImgSection {
  padding-left: 0;
  height: 100%;
}
.green.howToApplyGreen {
  padding: 0;
}
.text-secondary {
  color: #6c757d !important;
  margin-bottom: 5%;
}
.main-need {
  display: flex;
  /* justify-content: center; */
  align-items: flex-start;
}
.main-need-assist {
  display: flex;
  justify-content: center;
  /* align-items: center; */
}
.main-need-fixed {
  display: flex;
}
.switch {
  position: relative;
  display: block;
  width: 70px;
  height: 27px;
  padding: 3px;
  margin: 0 33px 10px 0;
  border-radius: 18px;
  cursor: pointer;
  vertical-align: top;
}
.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #eceeef;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before,
.switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaaaaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: #ffffff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
  background: #1ea185;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15),
    inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 25px;
  height: 25px;
  background: linear-gradient(to bottom, #ffffff 40%, #f0f0f0);
  background-image: -webkit-linear-gradient(top, #ffffff 40%, #f0f0f0);
  border-radius: 100%;
  box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
}
.switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: linear-gradient(to bottom, #eeeeee, #ffffff);
  background-image: -webkit-linear-gradient(top, #eeeeee, #ffffff);
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
  left: 41px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
/* Transition
      ========================== */
.switch-label,
.switch-handle {
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
}

@media (max-width: 991px) {
  .rates-table,
  .per-box-1,
  .per-box-2 {
    width: auto;
    height: auto;
  }
  .per-box-1 {
    margin-bottom: 20px;
  }
  .per-sec {
    margin-left: 0px;
  }
  .per-text {
    font-size: 38px;
    padding-bottom: 20px;
  }
  .per-decs {
    padding-bottom: 0px;
  }
  .rates-table {
    margin-bottom: 20px;
  }
  .per-box-2 {
    margin-top: 20px;
  }
  .eligibility-sec-2 {
    width: auto;
  }
  .howToApplyGreen .card {
    padding: 15px;
  }
  .book_fix {
    text-align: center;
    margin: 30px;
  }
  #fixedcal #btn_FD {
    top: 20px !important;
  }
  .calc-summary {
    margin-top: 65px;
  }
  .radioBtn.setMrg input:checked + label,
  .radioBtn.setMrg input:not(:checked) + label {
    margin: 0 10px !important;
  }
}

@media (max-width: 667px) {
  .calc-summary {
    padding: 0px;
  }
}

@media (max-width: 768px) {
  .sliderWithLabels > div.step-labels span {
    cursor: pointer;
    font-size: 12px;
  }
  .text-middle {
    text-align: center;
  }
  .navbar-nav li.active::after,
  .navbar-nav li:hover::after {
    display: none;
  }
  .how-to-apply-steps ul li::before {
    width: 8px;
  }
  .navbar-nav {
    margin: 9px 0;
  }
  .expand-all {
    padding-top: 0;
  }
  .navbar-toggler-icon div {
    background-color: #076162;
  }
  .nav {
    background-color: #fff;
  }
  .navbar-collapse {
    background-color: #076162;
  }
  .nav .container-fluid {
    padding: 0;
  }
  .nav .navbar {
    padding: 0;
  }
  .how-to-apply-steps ul li .list-para:before {
    content: "";
    display: none !important;
  }
  .maturity {
    text-align: center;
    padding: 20px 0px;
  }
  .frequently-accordion {
    width: auto;
  }
  .card .card-header h5 button {
    font-size: 15px;
  }
  .img.img-fluid.fix {
    position: inherit;
  }
  .digi-bg.p-5,
  .digital-fd.p-5 {
    padding: 15px !important;
  }
  .eligibility-line:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    opacity: 0.3;
    left: -6%;
    top: 4%;
    position: absolute;
  }
  .split-line-space {
    padding: 10px 0;
  }
  .howToApplyGreen .card {
    border-radius: 0;
  }
  p.senior-fixed {
    width: 100%;
  }
  p.senior-fixed {
    color: #212529;
    margin-top: 20px;
  }
  img.abs {
    position: inherit;
  }
  .card-space {
    padding: 40px 30px 50px 30px;
  }
  .interest-rates-for-p {
    line-height: 26px;
    padding: 10px 0;
  }
  /* .calc-summary{
        padding: 1rem 2rem;
    } */
  .invested_amount {
    background-color: rgba(241, 241, 241, 0.14);
    /* border: 1.2px solid rgba(130, 130, 130, 0.58); */
    border-radius: 9.18px;
    margin: 0px;
    /* padding: 15px; */
  }
  .load-top {
    /* top: -50px;*/
    left: 0px;
    justify-content: center;
    margin-left: 12%;
  }
  .loader {
    border: 20px solid #ffc531;
    border-radius: 50%;
    border-top: 20px solid #21ac62;
    width: 190px;
    height: 190px;
    transform: rotate(120deg);
    margin: 0% 0% 0% 0%;
    box-shadow: 0px 0px 5px 0px;
    margin-top: 5rem;
  }
  .deposit {
    bottom: 8rem;
    right: 0rem;
    left: -25%;
  }
  .digital-head {
    margin-top: 30px;
  }
  img.img-fluid.fix {
    position: inherit;
  }
  .intrest {
    top: 0;
  }
  .sec-head {
    margin-top: 2rem;
  }
  .book_fix {
    text-align: center;
    margin: 30px;
  }
  .toll-free {
    font-size: 13px;
    color: #209b80;
    padding: 5px 0px;
  }
  .toll-free-click {
    font-size: 17px;
  }
  .toll-free1 {
    padding: 5px 0px 5px 20px;
  }
  .toll-free2 {
    padding: 5px 20px 5px 20px;
  }
  .toll-free2 {
    padding: 5px 10px 5px 20px;
  }
}

.howto-apply {
  background-image: url("../assets/final_image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.cls-padd {
  padding-left: 15px;
}
.card {
  border: none !important;
  /* background-color: transparent !important; */
}

.card p {
  color: #000;
}

.bg-green {
  background-color: #076162;
}
.digital-head {
  margin-top: 50px;
  display: flex;
}
.deposit {
  position: relative;
  bottom: 6rem;
  left: -40%;
  right: 2rem;
  top: 55%;
}

/* @media only screen 
and (min-device-width : 390px) 
and (max-device-width : 844px) 
and (orientation : portrait) {
    .mobile-res {
        width: 100%;
    }
}
@media only screen 
and (min-device-width : 390px) 
and (max-device-width : 844px) 
and (orientation : landscape) {
    .mobile-res {
        width: 100%;
    }
    .load-top {
        left: 50px;
    }
    .deposit {
        left: -29% !important;
    }
    .rates-table {
        width: 435px !important;
    }
} */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .space {
    padding-bottom: 5%;
  }
  ul.additional-interes {
    font-size: 16px;
    line-height: 25px;
  }

  .load-top {
    justify-content: center;
    margin-left: 0%;
  }
  .loader {
    border: 20px solid #ffc531;
    border-radius: 50%;
    border-top: 20px solid #21ac62;
    width: 190px;
    height: 190px;
    transform: rotate(120deg);
    margin: 0% 0% 0% 0%;
    box-shadow: 0px 0px 5px 0px;
    margin-top: 5rem;
  }

  .requirements p {
    font-size: 22px;
    color: #fafafa;
    letter-spacing: 0;
    line-height: 42px;
    font-weight: 700;
  }
  .p-5 {
    padding: 3rem 0rem 0rem 3rem !important;
  }
  .features-col {
    background-color: #209b80;
    border-radius: 10px;
    height: 90px;
    display: flex;
    margin: 15px 10px;
  }
  .deposit {
    position: relative;
    bottom: 6rem;
    left: -44% !important;
    right: 2rem;
    top: 55%;
    font-size: 15px;
  }

  /* .toll-free1 {
        padding: 5px 50px 5px 20px;
    }
    .toll-free2 {
        padding: 5px 100px 5px 20px;
    }*/
  .toll-free3 {
    padding: 5px 5px 5px 20px;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  .benefits_sec {
    padding: 1.1rem;
    text-align: center;
  }
  .pd-lt-rt {
    padding-left: 8%;
    padding-right: 4%;
  }
  .mobile-hide {
    display: none !important;
  }
  .mobile-show {
    display: block;
  }
  .mobile-res {
    display: block;
  }
  .desk-hide {
    display: none !important;
  }

  .side-header {
    color: #209b80;
    font-family: "Ubuntu", sans-serif;
    font-size: 24px;
    line-height: 34px;
  }
  .cls-span {
    font-size: 19px;
    color: #fff;
  }
  .cls-span-1 {
    font-size: 17px;
    color: #fff;
  }
  .eligibility-image {
    background-image: url("./assets/how-to-apply-bg.jpg");
  }

  .howto-apply {
    background-color: #009f7f;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .benefits_sec {
    text-align: center;
  }
  /* .benefits_title {
        margin-left: 17%;
    } */
  .column1 {
    display: block;
    width: 100%;
    text-align: center;
  }
  .main-need {
    display: flex;
    /* margin-left: 15%; */
    /* margin-right: 10%; */
  }
  /* .rupee-top {
        margin-left: 20%;
    } */
  .deposit_online_cta {
    text-align: center;
  }
  .invested_amount {
    background-color: rgba(241, 241, 241, 0.14);
    /* border: 1.2px solid rgba(130, 130, 130, 0.58); */
    border-radius: 9.18px;
    margin: 0px;
    padding: 15px;
  }
  .loader {
    border: 20px solid #ffc531;
    border-radius: 50%;
    border-top: 20px solid #21ac62;
    width: 150px !important;
    height: 150px !important;
    transform: rotate(120deg);
    margin: 0% 0% 0% 0%;
    box-shadow: 0px 0px 5px 0px;
    margin-top: 4rem;
  }
  .main_sec {
    width: 90%;
    padding: 20px;
  }

  .load-top {
    top: -50px;
    left: 0%;
  }
  .deposit {
    position: relative;
    bottom: 6rem;
    left: -47%;
    right: 2rem;
    top: 53%;
  }
  .toll-free1 {
    padding: 5px 20px 5px 20px;
  }
  .toll-free2 {
    padding: 5px 20px 5px 20px;
  }
  .toll-free3 {
    padding: 5px 30px 5px 20px;
  }
  .link-text {
    margin: 30px 0px;
  }
  .book_fix {
    text-align: center;
    margin: 30px;
  }
}

@media screen and (max-device-width: 740px) and (min-device-width: 360px) and (orientation: portrait) {
  a.btn.btn-primary {
    font-size: 16px;
    width: 85%;
    margin: 0;
  }
  .howtpapplybtn {
    margin-left: 20px !important;
    width: 90% !important;
  }
  .side-logo h2 {
    font-size: 26px;
    color: #fff;
  }
  .side-header {
    color: #209b80;
    font-family: "Ubuntu", sans-serif;
    font-size: 22px;
    line-height: 26px;
  }
  span.intrest-rate {
    font-size: 11px;
    background-color: rgba(53, 53, 53, 0.62);
    border-radius: 13.5px;
    color: #ffffff;
    padding: 0.3rem 1rem;
  }
  .benefits_sec,
  .featuretext {
    padding: 1.1rem;
    text-align: center !important;
  }
  /* .load-top {
        left: 20px;
    } */

  .toll-free1 {
    border-right: none !important;
    padding: 5px 30px 5px 20px;
    font-size: 14px !important;
  }
  .toll-free2 {
    border-right: none !important;
    padding: 5px 20px 5px 20px;
    font-size: 14px !important;
  }
  .deposit {
    left: -49%;
  }
  .loader {
    border: 20px solid #ffc531;
    border-radius: 50%;
    border-top: 20px solid #21ac62;
    width: 140px;
    height: 135px;
    transform: rotate(120deg);
    margin: 0% 0% 0% 0%;
    box-shadow: 0px 0px 5px 0px;
    margin-top: 5rem;
  }
  .pd-lt-rt {
    padding-left: 8%;
    padding-right: 4%;
  }
  .mobile-res {
    display: block;
  }
  .mobile-hide {
    display: none !important;
  }
  .mobile-show {
    display: block;
  }
  .desk-hide {
    display: none !important;
  }
  .cls-span {
    font-size: 19px;
    color: #fff;
  }
  .cls-span-1 {
    font-size: 17px;
    color: #fff;
  }
  .deposit_online_cta {
    text-align: center;
  }
  .main-need {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .main-need-fixed {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .column1 {
    display: block;
    width: 100%;
    text-align: center;
  }
  .toll-free3 {
    padding: 5px 15px 5px 20px;
    font-size: 14px !important;
  }
}

/* lanscape 360 */
@media screen and (max-device-width: 640px) and (min-device-width: 360px) and (orientation: landscape) {
  .mobile-hide {
    display: none !important;
  }
  .mobile-show {
    display: block;
  }
  .load-top {
    justify-content: center;
    margin-left: 14%;
  }
  .how-to-apply-steps ul li::before {
    content: "\2022";
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-top: 3%;
  }
}

/* lanscape 375 */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {
  .how-to-apply-steps ul li::before {
    content: "\2022";
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-top: 3%;
  }

  a.btn.btn-primary {
    font-size: small;
  }

  .head-h3 h3 {
    font-size: 1.2rem;
  }

  span.intrest-rate {
    font-size: 11px;
    background-color: rgba(53, 53, 53, 0.62);
    border-radius: 13.5px;
    color: #ffffff;
    padding: 0.3rem 1rem;
  }

  .mobile-hide {
    display: none !important;
  }
  .mobile-show {
    display: block;
  }
  .rates-table {
    width: 650px;
  }
  .load-top {
    margin-left: 12%;
  }
  .loader {
    border: 20px solid #ffc531;
    border-radius: 50%;
    border-top: 20px solid #21ac62;
    width: 130px !important;
    height: 130px !important;
    transform: rotate(120deg);
    margin: 0% 0% 0% 0%;
    box-shadow: 0px 0px 5px 0px;
    margin-top: 5rem;
  }
  .deposit {
    position: relative;
    bottom: 6rem;
    left: -45% !important;
    right: 2rem;
    top: 58%;
    font-size: 9px;
  }
  .main-need {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

@media only screen and (min-device-width: 360px) and (max-device-width: 740px) and (orientation: landscape) {
  p.para-font {
    font-size: 12px;
  }

  span.intrest-rate {
    font-size: 11px;
    background-color: rgba(53, 53, 53, 0.62);
    border-radius: 13.5px;
    color: #ffffff;
    padding: 0.3rem 1rem;
  }

  .rates-table {
    width: 100%;
  }
  .deposit {
    left: -45% !important;
  }
  .loader {
    border: 20px solid #ffc531;
    border-radius: 50%;
    border-top: 20px solid #21ac62;
    width: 190px;
    height: 140px;
    transform: rotate(120deg);
    margin: 0% 0% 0% 0%;
    box-shadow: 0px 0px 5px 0px;
    margin-top: 5rem;
  }
  .mobile-hide {
    display: none !important;
  }
  .mobile-show {
    display: block;
  }
  .benefits_sec {
    padding: 1.1rem;
    text-align: center;
  }
  .deposit_online_cta {
    text-align: center;
  }
  .toll-free3 {
    padding: 5px 5px 5px 20px;
  }
  .main-need {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .main-need- {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .main-need-fixed {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media only screen and (max-device-width: 490px) {
  .tenureSel {
    width: 100% !important;
  }
  .tenureSel span {
    left: 10% !important;
  }
  .inpt-slider .dskRight label {
    font-size: 14px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 992px) and (orientation: landscape) {
  .howto-apply {
    background-size: 100% 100% !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  p.para-font {
    font-size: 13px;
  }

  .load-top {
    justify-content: center;
    margin-left: 0% !important;
  }
  .toll-free1 {
    border-right: 1px solid #c5c5c5;
    padding: 5px 15px 5px 20px;
    font-size: 14px !important;
  }
  .toll-free2 {
    border-right: 1px solid #c5c5c5;
    padding: 5px 50px 5px 20px;
    font-size: 14px !important;
  }
  .toll-free3 {
    padding: 5px 25px 5px 20px;
    font-size: 14px !important;
  }
  .cls-span-sm {
    font-size: xx-small;
    color: #fff;
  }
  .padd-10 {
    padding: 10px 10px;
  }
  .rates-table {
    width: 100%;
  }
  .deposit {
    left: -49%;
  }

  .loader {
    border: 25px solid #ffc531;
    border-radius: 50%;
    border-top: 25px solid #1ea185;
    width: 150px;
    height: 137px;
    transform: rotate(120deg);
    /* margin: 4% 8% 9% 28%; */
    box-shadow: 0px 0px 5px 0px;
    margin-top: 5rem;
    /* margin-left: 16%; */
  }
}

@media only screen and (min-device-width: 390px) and (max-device-width: 844px) and (orientation: portrait) {
  .mobile-res {
    width: 100%;
  }
  .deposit {
    left: -46%;
  }
}
@media only screen and (min-device-width: 390px) and (max-device-width: 844px) and (orientation: landscape) {
  .pad-bt-10 {
    padding-bottom: 5%;
  }
  .rates-table {
    width: 100%;
  }
  .deposit {
    position: relative;
    bottom: 6rem;
    left: -28% !important;
    right: 2rem;
    top: 55%;
  }

  .loader {
    border: 25px solid #ffc531;
    border-radius: 50%;
    border-top: 25px solid #1ea185;
    width: 130px;
    height: 130px;
    transform: rotate(120deg);
    /* margin: 4% 8% 9% 28%; */
    box-shadow: 0px 0px 5px 0px;
    margin-top: 5rem;
    /* margin-left: 16%; */
  }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation: portrait) {
  .deposit {
    left: -42%;
  }
  .how-to-apply-steps ul li::before {
    content: "\2022";
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-top: 1%;
  }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (orientation: landscape) {
  .deposit {
    left: -26%;
  }
  .rates-table {
    width: 100%;
  }
  .loader {
    border: 25px solid #ffc531;
    border-radius: 50%;
    border-top: 25px solid #1ea185;
    width: 137px;
    height: 137px;
    transform: rotate(120deg);
    /* margin: 4% 8% 9% 28%; */
    box-shadow: 0px 0px 5px 0px;
    margin-top: 5rem;
    /* margin-left: 16%; */
  }
}

input[name="mnthsavings"]:focus {
  border: 0px;
}
.borderrange {
  border-bottom: 2px solid #333;
}

input[type="range"] {
  margin: 14px 0;
  width: 100%;
}
input[type="range"]:focus {
  outline: none !important;
}
.range-value span {
  width: auto;
  padding: 0px 10px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #ffc531;
  color: #fff;
  font-size: 12px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
}
.range-value span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #ffc531;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}
.range-wrap {
  width: 100%;
  position: relative;
}
.range-value {
  position: absolute;
  top: -50%;
}

#FdepType {
  outline: none !important;
}
.addarrow {
  color: #fff;
}

.book_Fix .link-text a {
  position: relative;
  z-index: 2;
}

/* new styles */

.tenureSel {
  position: relative;
  display: inline-block;
  width: 32%;
  margin: 15px 5px 0 0;
}

.tenureSel input {
  width: 90%;
  /* border-radius: 5px; */
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 2px solid #333333;
  padding: 4px 6px;
  background: none !important;
}

.typeOf {
  position: relative;
  float: right;
  width: 57%;
  margin: 0;
}

.typeOf select,
.tenureSel select {
  /* -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important; */
  padding: 3px 6px;
  background: none !important;
  position: relative;
  font-family: Lato;
  width: 90%;
  cursor: pointer;
  border-bottom: 2px solid #333333;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

.selArrow:after {
  /* content: '&#8964;'; */
  display: inline-block;
  position: absolute;
  pointer-events: none !important;
  font-size: 25px;
  color: #ae285d;
  top: -3px;
  right: 10px;
}

.currentDate {
  float: right;
  color: #ae285d;
  font-weight: 600;
}

.fdCalc .selArrow:after {
  content: "&#8964;";
  /* background: url(/images/default-source/revamp_new/loans/desktop/down-select.png) no-repeat center center; */
  font-size: inherit;
  top: 10px;
  width: 14px;
  height: 8px;
}
.accessibility * {
  line-height: 1.5 !important;
}
.tenureSel input {
  padding: 0px 0px 0px 36px;
}
.tenureSel input:active,
.tenureSel input:focus {
  outline: none !important;
}
.typeOf select,
.tenureSel select,
.tenureSel input {
  width: 100%;
}
.tenureSel:before {
  content: "";
  background: none !important;
  width: 35px;
  height: 27px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  position: absolute;
  left: 0;
  z-index: 9;
}

.tenureSel span {
  position: absolute;
  font-size: 14px;
  padding: 2px 0px 4px 4px;
  left: 7%;
  transform: translateX(-50%);
  z-index: 2;
  color: #8a8a8a;
}
.hideY {
  visibility: hidden;
}
.tenureSel select {
  padding: 3px 0 3px 36px !important;
}
.fdNames {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}
.setMrg,
#tenure_main {
  display: flex;
  justify-content: space-between;
}
.dskRight {
  display: flex;
  justify-content: left;
}
.inpt-slider {
  margin: 20px 0 0;
}
.radioBtn.setMrg input:checked + label,
.radioBtn.setMrg input:not(:checked) + label {
  margin: 0 30px;
}
.designin {
  background-color: #eee;
  text-align: right;
  border: 0px;
  width: 100%;
  display: inline;
  font-weight: 800;
  max-width: 100px;
}
.designin:active,
.designin:focus,
.tenureSel select:active,
.tenureSel select:focus {
  outline: none !important;
}

input[name="mnthsavings"]:focus {
  border: 0px;
}

#btn_FD_main {
  position: relative;
}
#btn_FD {
  position: absolute;
  top: 35px !important;
  left: -20px !important;
}

input[type="range"]::-moz-range-progress {
  background-color: #f78f35 !important;
}
input[type="range"]::-moz-range-track {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

@media only screen and (max-width: 767px) {
  .dskRight {
    float: none !important;
  }
}
.mob-hide {
  display: none !important;
}
@media only screen and (max-width: 1100px) {
  .mob-hide {
    display: block;
  }
}
.card-body ul {
  margin-top: 1rem;
  padding: 0 29px;
}
.card-body ul li {
  list-style: disc;
  color: #000;
}
.card-header {
  padding: 0.75rem 1.25rem 0.5rem;
}
.dfd-h1 p {
  padding-bottom: 13px;
}
.howtoapply {
  padding-left: 120px;
}
.conpandding {
  padding: 0 70px;
}
.Eligibility_Criteria {
  padding-top: 15px;
}
.featuretext {
  text-align: left;
}
.btn-primary:hover {
  color: #ff8901;
  background-color: #ffffff;
  border-color: #ff8901;
}
.scrolled {
  position: relative;
  top: 90px;
}

.clr-yellow:hover {
    color: #f78f35;
}
.clr-yellow {
    color: #00a482;
}
