body {
  background: #f9fcff;
  margin: 0;
  padding: 0;
  position: relative;
  width: inherit;
  overflow-x: hidden !important;
}
.navigation {
  height: 56px;
  background: #fff;
  margin: 0;
}
.brand {
  position: absolute;
  float: left;
  padding: 16px 0;
  display: flex;
}
.brand .newback {
  display: none;
}
.brand .newback a {
  color: #333;
  font-size: 14px;
  width: 30px;
  text-align: center;
  height: 28px;
  background: #e8ecff;
  border-radius: 6px;
  box-shadow: 0px 0px 6px -3px #7e7e7e;
  text-decoration: none;
}
.brand .newback a:hover,
.brand .newback a:focus {
  text-decoration: none;
}

.brand .newback {
  margin: 0px 14px 0 0;
  padding: 2px 0;
  line-height: 28px;
  height: 30px;
}

nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 15px;
  line-height: 56px;
  color: #91959e;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  text-decoration: none;
}

nav ul li ul li {
  min-width: 115px;
}
nav ul li ul li a {
  padding: 10px 15px;
  line-height: inherit;
  text-decoration: none;
  border-bottom: 1px solid #91959e;
}

nav ul li ul li:last-child a {
  border: 0;
}
.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 999;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
}
/* Mobile navigation */
.nav-mobile {
  display: none;
  /* position: absolute; */
  /* top: 0; */
  /* right: 0; */
  /* background: #262626; */
  /* height: 56px; */
  /* width: 58px; */
  /* z-index: 999; */
}
#nav-toggle {
  position: absolute;
  left: 16px;
  top: 26px;
  cursor: pointer;
  padding: 2px 12px 12px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 4px;
  width: 30px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

main .page-title {
  color: #222;
  margin: 20px 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}

.tab-set {
  display: flex;
  position: relative;
  list-style-type: none;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab .nav-tabs {
  border: none;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
  display: block;
}

.tab .nav-tabs li {
  list-style-type: none;
  margin-bottom: 12px;
  margin-right: 8px;
}
.tab .nav-tabs li a img {
  vertical-align: middle;
  margin-right: 2px;
  max-height: 20px;
}
.tab .nav-tabs li a {
  padding: 10px 12px 10px 10px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease 0s;
  background: #fff;
  box-shadow: 0px 4px 8px -1px rgb(0 0 0 / 5%);
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #91959e;
  border: 1px solid #e3e7fc;
  display: block;
}

.tab .nav-tabs li:last-child a {
  margin-right: 0;
}
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a {
  text-decoration: none;
  color: #111;
  background: #eaedfe;
}

.tab .nav-tabs li a:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s ease-out 0s;
  background: #eaedfe;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.favorite .checkBox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  height: 16px;
  width: 16px;
  background-color: #fff;
  display: inherit;
  position: absolute;
}
.favorite .checkBox input ~ .checkmark {
  border: 2px solid #2341d5;
  background-color: #fff;
}

.favorite .checkBox input:checked ~ .checkmark {
  background-color: #2341d5;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.favorite .checkBox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 3.6px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.favorite .checkBox .check-label {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #000000;
  padding-left: 25px;
}

.favorite .checkBox label {
  color: #000;
  margin: 2px 0;
  font-size: 13px;
}

.favorite p {
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #91959e;
}

.favorite h4 {
  color: #faaf56;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 5px;
}

.favorite {
  margin-top: 30px;
  color: #444;
  font-size: 12px;
  padding: 15px 20px;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}

.tab .card {
  color: #444;
  font-size: 12px;
  padding: 30px 20px 40px;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background-image: url(../images/glass.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
}

.tab .tab-content h3 {
  font-weight: 600;
  margin-top: 0;
  color: #162133;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
.tab .tab-content h4 {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  color: #162133;
  font-weight: 600;
}
.tab .tab-content h5 {
  margin-top: 0;
  color: #162133;
  line-height: normal;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.side-wallet h3 {
  font-weight: 600;
  margin-top: 0;
  color: #162133;
  font-size: 20px;
  margin-bottom: 0;
}
.side-wallet p {
  font-size: 14px;
  line-height: 18px;
  margin: 6px 0;
}
.side-wallet span {
  color: #91959e;
  font-weight: 400;
  font-size: 12px;
}

.back {
  width: 100%;
  display: block;
  margin: 5px 0 20px;
}
.back a {
  text-decoration: none;
  background: #fafaff;
  border: 1px solid #e3e7fc;
  color: #111;
  font-size: 14px;
  padding: 8px 12px 9px 8px;
  border-radius: 6px;
  line-height: 1;
}

/* Promo modal */

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 999;
  padding: 0;
}
.modal-content .coupanBox img {
  width: 40px;
  margin-top: 8px;
}
.modal-content .coupanBox {
  background: linear-gradient(180deg, #ffffff 0%, #ddeefc 100%);
  margin: auto;
  display: block;
  width: 60px;
  text-align: center;
  border-radius: 50%;
  height: 60px;
  margin-top: -45px;
  position: absolute;
  left: calc(50% - 30px);
}
.modal-content .btnEnj {
  background: linear-gradient(90deg, #b37cff 0%, #f895e7 100%);
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #ffffff;
  padding: 9px 24px;
  margin: 0 auto 6px;
  display: block;
  border: 0;
}
.modal-content .promoText p {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #91959e;
  margin: 25px 0 5px;
}
.modal-content .promoText h2 b {
  color: #efab2d;
}
.modal-content .promoText h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0;
}
.modal-content .promoText h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #91959e;
  margin: 0px 0 24px;
}

.blast {
  opacity: 0;
  visibility: hidden;
}
.show-blast {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
  z-index: 9;
  animation: fadeOut 2s;
  -webkit-animation: fadeOut 2s;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 0.6;
    visibility: inherit;
  }
  50% {
    opacity: 1;
    visibility: inherit;
  }
  99% {
    opacity: 0.01;
    visibility: inherit;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 0.6;
    visibility: inherit;
  }
  50% {
    opacity: 1;
    visibility: inherit;
  }
  99% {
    opacity: 0.01;
    visibility: inherit;
  }
  100% {
    opacity: 0;
  }
}
.modal-content {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 25px;
  width: 100%;
  max-width: 350px;
  margin: auto;
  background: linear-gradient(180deg, #ffffff 0%, #ddeefc 100%);
  border-radius: 12px;
}
.close-button {
  float: right;
  width: 20px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  background: #91959e;
  color: #fff;
  height: 20px;
  margin-top: -8px;
  margin-right: -8px;
}
.close-button:hover {
  background-color: darkgray;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

/*-----------------------------------------------*/

.selectService .InputGroup {
  margin: 15px 0;
  width: fit-content;
  position: relative;
}

.selectService input[type="radio"] {
  visibility: hidden;
  height: 0;
  width: 0;
  display: none;
}

.selectService .InputGroup label img {
  max-width: 35px;
  height: 45px;
}
.selectService .InputGroup label {
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  padding: 5px 0px;
  border-radius: 10px;
  user-select: none;
  margin: 0px 4px 10px;
  width: 55px;
  height: auto;
}
.selectService .InputGroup label:last-of-type {
  /*display: none;*/
  margin-right: 0;
}

.selectService .InputGroup .more img {
  width: 28px;
}
.selectService .InputGroup .more,
.selectService .InputGroup input[type="radio"]:checked + label,
.selectService .InputGroup input[type="radio"]:hover:not(:checked) + label {
  background: #eaedfe;
}

.myRupeeBox .selectMyrupee label:hover,
.myRupeeBox .selectMyrupee label:has(input[type="checkbox"]:checked),
.suggestBox .suggestBankBox label:hover,
.suggestBox .suggestBankBox label:has(input[type="radio"]:checked) {
  background: #dee3ff !important;
  border: 1px solid #2341d5 !important;
}

/*.selectService .InputGroup input[type="radio"]:hover:not(:checked) + label::before ,*/
.selectService .InputGroup input[type="radio"]:checked + label::before {
  content: "\2713";
  color: #fff;
  position: absolute;
  background: #4c9d21;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  font-size: 8px;
  line-height: 15px;
  float: left;
  margin: -7px 0 0 -13px;
  padding: 0px 1px 0px 0px;
}

.inputGroups .trimCol {
  padding: 0 0px 0 15px;
}

.inputGroups select.input-item:focus,
.inputGroups input.input-item:focus {
  outline: none;
}
.inputGroups select.input-item {
  padding: 12px 12px !important;
}

.inputGroups select.input-item,
.inputGroups input.input-item {
  border: 1px solid #eaedfe;
  border-radius: 10px;
  width: 100%;
  margin: 6px 0px 0;
  font-size: 16px;
  line-height: 1.2;
  color: #111;
  height: 45px;
  padding: 0px 12px;
}

.inputGroups button.proceedUpi {
  background: #2341d5;
  border-radius: 10px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  margin: 22px 0 0px;
  border: 0;
  font-weight: 600;
}

.inputGroups button.commonProceed {
  background: #2341d5;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
  margin: 10px 0 10px;
  border: 0;
  font-weight: 600;
  display: block;
  width: 100%;
}

.inputGroups p.infoData {
  color: #91959e;
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
}

/* ---------------------  */
.field-container {
  position: relative;
  height: 46px;
  border-radius: 10px;
  padding: 2px 2px;
  margin-top: 6px;
  margin-bottom: 12px;
  border: 1px solid #eaedfe;
}
.field-container input.field-input {
  color: #000;
  padding: 0px 14px;
  font-size: 16px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-top: 0;
  border: 0;
  background: transparent;
  height: 40px;
}
.field-container input.field-input:focus {
  outline: none;
}
.field-container input.field-input.c-fix,
.field-container input.field-input:focus,
.field-container input.field-input:not(:placeholder-shown) {
  border-color: transparent;
}
.suggestBox .suggestBankBox label .custom-cvv input.field-input:focus ~ label,
.suggestBox
  .suggestBankBox
  label
  .custom-cvv
  input.field-input:not(:placeholder-shown)
  ~ label {
  top: -5px;
  left: 0px;
  color: #2341d5;
  background: #fff;
  padding: 0 2px;
  font-size: 10px;
  border-radius: 2px;
}
.field-container input.field-input.c-fix ~ label,
.field-container input.field-input:focus ~ label,
.field-container input.field-input:not(:placeholder-shown) ~ label {
  color: #162133;
  font-size: 11px;
  top: -10px;
  transform: translate(5px, 0%);
  background: #fefefeab;
  border-radius: 10px 8px 0 0;
  padding: 2px 0px 0 0px;
  left: 8px;
}
.field-container input.field-input::-webkit-input-placeholder {
  color: transparent;
}
.field-container input.field-input::-moz-placeholder {
  color: transparent;
}
.field-container input.field-input:-ms-input-placeholder {
  color: transparent;
}
.field-placeholder {
  position: absolute;
  top: 50%;
  transform: translate(5px, -50%);
  pointer-events: none;
  transition: all 0.14s ease-in-out;
  font-size: 16px;
  color: #878787eb;
  font-weight: 500;
  padding-left: 10px;
}

/* Wallet side section */
.wall-amt {
  background-color: #eaedfe;
  border-radius: 15px;
  padding: 20px 20px 15px 20px;
  margin-top: 30px;
  background-image: url(../images/pattern1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.wall-amt h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0 4px;
}

.wall-amt span {
  font-size: 16px;
}

.wall-amt h2 {
  margin: 10px 0 15px;
  color: #2341d5;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
}

/*-----------------------------------------------*/

.check-progress-bar-container {
  position: relative;
  height: 55px;
  margin: -8px 20px 10px;
}

.check-progress-bar-container.check-count-5
  .progress-steps
  > li:nth-of-type(1) {
  left: 10%;
  transform: translateX(-10px);
}
.check-progress-bar-container.check-count-5
  .progress-steps
  > li:nth-of-type(2) {
  left: 50%;
  transform: translateX(-10px);
}
.check-progress-bar-container.check-count-5
  .progress-steps
  > li:nth-of-type(3) {
  left: 90%;
  transform: translateX(-10px);
}

.progress-steps > li {
  display: inline-block;
  list-style: none;
  margin: 0;
  border: none;
  height: 25px;
  width: 33%;
  border-radius: 50%;
  position: absolute;
  box-sizing: unset;
}

.progress-step-item {
  display: inline-block;
  height: 25px;
  width: 25px;
  border: none;
  border-radius: 50%;
  background-color: #91959e;
  position: relative;
}

.progress-step-item::after {
  position: absolute;
  color: #003c4160;
  font-size: 20px;
  font-family: "rubik", sans-serif;
  font-weight: 600;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translatey(-50%);
  -moz-transform: translateX(-50%) translatey(-50%);
  transform: translateX(-50%) translatey(-50%);
}

.progress-steps-connector {
  background-color: #91959e;
  overflow: hidden;
  height: 4px;
  border: none;
  border-radius: 4px;
  width: 80%;
  position: absolute;
  top: 12px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  z-index: -5;
  left: 10%;
}
.progress-indicator {
  width: 0%;
  background-color: #4c9d21;
  height: 100%;
  border-radius: 30px;
}

.check-count-5 .progress-steps-connector.check-1 .progress-indicator {
  width: 0% !important;
}
.check-count-5 .progress-steps-connector.check-2 .progress-indicator {
  width: 25% !important;
}
.check-count-5 .progress-steps-connector.check-3 .progress-indicator {
  width: 50% !important;
}

.progress-steps > li.check-completed .progress-step-item {
  background-color: #4c9d21 !important;
}
.progress-steps > li.check-completed .progress-step-item::after {
  color: #ffffff !important;
}

.progress-steps > li.check-active .progress-step-item::after,
.progress-steps > li.check-completed .progress-step-item::after {
  content: "\2713" !important;
  font-family: FontAwesome;
  font-style: normal;
  font-size: 14px;
}

.progress-steps > li.check-active .progress-step-item {
  background-color: #4c9d21 !important;
}
.progress-steps > li.check-active .progress-step-item::after {
  color: #ffffff !important;
}

.progress-steps > li p {
  text-align: center;
  margin-left: -70%;
  margin-top: 0;
}

/*-----------------------------------------------*/

.d-flex {
  display: flex;
  vertical-align: middle;
}
.summary {
  color: #444;
  font-size: 12px;
  padding: 30px 20px;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
  border-radius: 15px;
  background-image: url(../images/recGlass.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.summary h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  line-height: 32px;
}
.summary .details {
  padding: 8px 0;
  margin: 10px 0 0;
  background: #f5f6ff;
  border: 1px solid #e3e7fc;
  border-radius: 10px;
}
.summary .details .operator {
  width: 42px;
  background: #fff;
  padding: 5px 5px;
  box-shadow: 0px 1px 6px rgb(219 219 219 / 35%);
  border-radius: 4px;
  height: 100%;
  vertical-align: middle;
}
.summary .details .operatorDetail {
  margin-left: 8px;
}

.summary .details p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.summary .details h5 {
  font-size: 15px;
  margin: 0;
}
.summary .billAssured {
  margin: 0 -22px;
  height: 42px;
}

.offerSection {
  margin-top: 25px;
}
.offerSection button.showOffer {
  margin: 0 0 0 auto;
  width: auto;
}

.offerSection .amount .subAmt {
  display: flex;
}

.offerSection .amount .close {
  margin: 0px 0 0 10px;
  background: #b5c0ff;
  color: #fff;
  padding: 0 4px 4px;
  border-radius: 50%;
  opacity: 0.6;
  font-weight: 500;
  height: 22px;
  width: 22px;
  display: initial;
  text-align: center;
}

.offerSection .amount {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.offerSection .amount span {
  font-size: 16px;
  color: #91959e;
  line-height: 1.3;
}

.offerSection .amount h5 {
  font-size: 18px;
  margin: 0;
  color: #162133;
  line-height: 24px;
}

.offerSection .amount h5.green {
  color: #4c9d21;
}

.offerSection .btn-blue {
  color: #2341d5;
  background: transparent;
  border: 0;
  display: block;
  text-align: right;
  width: 100%;
  padding: 10px 0 10px 0;
  margin: 0;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  border-top: 1px dashed #bebebe;
}

.offerSection .btn-blue:hover {
  text-decoration: none;
}
.offerSection .promoInput {
  display: flex;
  margin: 10px 0;
}

.validate {
  color: #d52323;
  font-size: 14px;
  text-align: right;
  font-weight: 500;
}

.validate_blue {
  color: #2341d5;
}

.offerSection .promoInput input:focus {
  outline: none;
}
.offerSection .promoInput input {
  background: #f4f5f7;
  border-radius: 5px;
  height: 35px;
  border: 0;
  padding: 4px 15px;
  width: 90%;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
}
.offerSection .promoInput .btn-apply {
  height: 34px;
  background: #2341d5;
  color: #fff;
  padding: 4px 16px;
}

.offerSection .cashbackTotal {
  border-top: 1px solid #e9e9e9;
  padding-top: 10px;
}

.borderShadow {
  border-top: 1px dashed #91959e;
  padding: 0;
}

.cashbackTotal .amount {
  padding: 4px 0;
}

.borderShadow2 {
  border-top: 1px dashed #dadada;
  margin: 40px 0 20px;
}

/*-----------------------------------------------*/

main {
  margin-bottom: 6%;
  overflow-x: hidden;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  margin-top: auto;
  z-index: 99;
}
footer div {
  background-color: #222;
  color: #fff;
  border-radius: 6px 6px 0 0;
}
footer .d-flex ul {
  display: flex;
  margin-left: 0;
  padding-left: 0;
}
footer .d-flex ul li {
  margin: 0;
  list-style-type: none;
  padding-right: 15px;
}
footer .d-flex ul li a:hover {
  text-decoration: none;
}
footer .d-flex ul li a {
  color: #fff;
  font-size: 12px;
}

footer .d-flex {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
footer p {
  font-size: 12px;
  padding: 6px 0 0 0;
}

.hide-mob {
  display: inherit;
}
.show-mob {
  display: none;
}

.validCard {
  position: absolute;
  right: 0px;
  top: 3px;
  width: 54px;
  height: 38px;
  text-align: center;
  display: flex;
}
.validCard img {
  margin: auto;
  height: 100%;
  max-height: 24px;
}

.errortext {
  color: #d52323;
  font-size: 14px;
  margin: -3px 5px 10px;
}

.showPopup {
  display: none;
}
/* ----------------------------------------- */
.showOffer b {
  font-size: 16px;
  background: #fff;
  color: #59d119;
}
.showOffer {
  display: none;
}
.infobox p {
  padding: 2px;
  margin: auto;
  text-decoration: none;
  opacity: 0.5;
  background: #000;
  right: 6px;
  top: 14px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  height: 20px;
}
.infobox {
  position: absolute;
  right: 6px;
  top: 12px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.tooltip {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.tooltiptext {
  visibility: hidden;
  background-color: #111;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  position: absolute;
  z-index: 999;
  bottom: 125%;
  opacity: 1;
  transition: opacity 0.3s;
  max-width: 200px;
  width: max-content;
  padding: 10px;
  left: -90px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.mobButton {
  display: none;
  border-radius: 7px;
  border: 0;
  width: 100%;
  text-align: left;
}
.upiselector .InputGroup label {
  padding: 5px 12px;
  width: auto !important;
  height: 100% !important;
  color: #222;
  font-weight: 400;
  border: 1px solid #7e7e7e;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.tab-pane .inputGroups button {
  display: none;
}

.myRupeeBox {
  max-width: 80%;
  margin-bottom: 20px;
}
.myRupeeBox .selectMyrupee {
  margin-bottom: 15px;
}
.myRupeeBox .selectMyrupee label {
  display: flex;
  align-items: center;
  padding: 14px 25px;
  background: #fafaff;
  border: 1px solid #e3e7fc;
  border-radius: 10px;
  cursor: pointer;
}
.myRupeeBox .selectMyrupee input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-top: 0;
}
.myRupeeBox .selectMyrupee img {
  max-height: 28px;
  height: 28px;
}
.myRupeeBox .selectMyrupee b {
  font-size: 26px;
  font-weight: 600;
  margin: 0 8px;
}

.suggestBox {
  padding: 0 0 20px 0;
}
.suggestBox .suggestBankBox {
  display: block;
}
.suggestBox .suggestBankBox label {
  background: #fafaff;
  border: 1px solid #e3e7fc;
  border-radius: 10px;
  margin: 15px 0;
  width: 100%;
  display: flex;
  padding: 12px 15px;
  line-height: normal;
  align-items: center;
  cursor: pointer;
}
.suggestBox .suggestBankBox label .custom-cvv label {
  margin: 0;
  border: 0;
  padding: 0px;
  width: auto;
  background: transparent;
  font-size: 13px;
}

.suggestBox .suggestBankBox label .custom-cvv .cvvBox2 {
  display: flex;

  position: relative;
}

.suggestBox .suggestBankBox label .custom-cvv p {
  font-size: 10px;
  margin: 0;
  padding: 2px;
}
.suggestBox .suggestBankBox label .custom-cvv input {
  width: auto;
  max-width: 98px;
  margin: 0;
  padding: 0 8px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #2341d5;
  font-size: 14px;
}
.suggestBox .suggestBankBox label .custom-cvv {
  height: auto;
  padding: 0;
  position: absolute;
  margin: 0;
  left: auto;
  right: 25%;
  border-radius: 8px;
  border: 0;
}
.suggestBox .suggestBankBox label .custom-cvv .infobox {
  margin-top: -6px;
  line-height: 17px;
  right: 6px;
}
.suggestBox .suggestBankBox label input {
  margin: auto 14px;
  height: 20px;
  width: 20px;
}
.suggestBox .suggestBankBox label h6 b {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}
.suggestBox .suggestBankBox label h6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #91959e;
  margin: 0;
  letter-spacing: 0.6px;
}

label.addNewbank {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  border: 1px solid rgba(145, 149, 158, 0.5);
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  background: #ededfd;
  font-size: 18px;
  font-weight: 600;
  height: 60px;
}
label.addNewbank img {
  max-height: 26px;
  height: 24px;
}
.tab-content label.addNewbank h5 {
  padding: 0 14px;
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
}

.mobileTotal1 {
  display: none;
}

button.close {
  display: none;
}
.accept-section {
  margin-bottom: 30px;
}
.accept-section .acceptedImg {
  display: flex;
  margin: 10px 0;
}
.accept-section .acceptedImg img {
  height: 28px;
  margin-right: 20px;
}

.accept-section h3 {
  font-size: 16px;
  line-height: 1.3;
  color: #162133;
}

.errorBoxpage {
  background: #fff;
  margin: 15px auto 30px;
  max-width: 90%;
  border-radius: 12px;
  padding: 6% 6% 8%;
  text-align: center;
  box-shadow: 0px 0px 6px -3px #7e7e7e;
}
.errorBoxpage img {
  max-height: 150px;
  margin: 20px auto 30px;
}
.errorBoxpage h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 10px auto;
  color: #162133;
}
.errorBoxpage p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #91959e;
}
.effect h6 {
  font-weight: 400;
  font-size: 20px;
  color: #162133;
}

.errorBoxpage .logorefresh {
  margin: 0;
  max-height: 60px;
}

.effect {
  background: #fff;
  margin: 20px auto 30px;
  max-width: 70%;
  border-radius: 12px;
  padding: 8% 4% 6%;
  text-align: center;
}

.refreshbox {
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  top: 0;
  left: 0;
  width: 90px;
  margin: auto;
  height: auto;
}
.effect.effect-six .refreshbox:before {
  height: 40px;
  width: 80px;
  content: "";
  position: absolute;
  animation-duration: 0.6s;
  animation-name: trans1;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  background: #d9d9d908;
}
@keyframes trans1 {
  from {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale3d(2, 1.4, 1) rotate3d(0, 0, 1, -45deg)
      translate3d(0, -100%, 0);
    transition: all 0.6s;
    -webkit-transform: scale3d(2, 1.4, 1) rotate3d(0, 0, 1, -45deg)
      translate3d(0, -100%, 0);
    -webkit-transition: all 0.6s;
  }

  to {
    transform: scale3d(2, 1.4, 1) rotate3d(0, 0, 1, -45deg)
      translate3d(0, 100%, 0);
    -webkit-transform: scale3d(2, 1.4, 1) rotate3d(0, 0, 1, -45deg)
      translate3d(0, 100%, 0);
  }
}

.processing1 {
  background: #fff;
  margin: 15px auto 30px;
  max-width: 90%;
  border-radius: 12px;
  padding: 3% 6% 4%;
  text-align: center;
  box-shadow: 0px 0px 6px -3px #7e7e7e;
}

.approBox h2 {
  font-size: 26px;
  line-height: 1.2;
  color: #162133;
  margin-top: 0;
  padding-top: 0;
}

.approBox h2 span.amtP {
  color: #2341d5;
}

.approBox small span {
  color: #d32f2f;
}
.approBox small {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.25px;
  color: #91959e;
  font-weight: 500;
}

.approBox p b {
  color: #222;
}
.approBox p {
  margin: 30px 0 20px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  color: #91959e;
}

.processing1 .logo1 {
  max-width: 400px;
  margin: auto;
  padding: 25px 10px;
}

.processing1 .logo1 img.mlogo {
  height: 35px;
}

.processing1 .logo1 hr {
  margin: 20px 0 8px;
}

.processing1 #loading {
  display: inline-block;
  width: 35px;
  height: 35px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #2341d5;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  margin: 15px auto;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.nProcess {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  gap: 10px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #e3e7fc;
  border-radius: 13px;
  margin: 4% auto;
}

.nProcess ul {
  margin: 0;
  padding: 0;
  text-align: left;
}
.nProcess ul li:first-child {
  margin-top: 10px;
}
.nProcess ul li {
  display: flex;
  margin: 20px 15px 10px 5px;
  list-style-type: none;
  text-align: left;
  align-items: center;
  width: 95%;
}

.nProcess ul li:last-child div {
  padding: 10px 10px 4px 10px;
}

.nProcess ul li div {
  width: 32px;
  height: 32px;
  background: #e3e7fc;
  border-radius: 30px;
  text-align: center;
  line-height: 0;
  margin-right: 12px;
  display: block;
  padding: 7px 10px 4px 9px;
}

.nProcess ul li b {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
}

.bankTabel {
  border: 1px solid #e9eefd;
  width: 100%;
  margin-bottom: 20px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}

.bankTabel th,
.bankTabel td {
  border: 1px solid #e9eefd;
  padding: 8px 15px;
}

.bankTabel td {
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  line-height: 1.3;
}
.bankTabel tr th {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

ul.terms {
  padding: 15px 20px;
  margin: 0 auto;
}
ul.terms li {
  margin-left: 5px;
  list-style-type: disc;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #91959e;
}

.b2bpBtn {
  background: linear-gradient(
    109.33deg,
    #2341d5 -8.25%,
    #051b88 88.29%
  ) !important;
}

.b2bOpdetail {
  margin-left: 12px !important;
  justify-content: center !important;
  align-items: center !important;
  vertical-align: middle !important;
  display: flex !important;
}

.qrBox {
  color: #444;
  font-size: 12px;
  padding: 15px;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background-image: url(../images/glass.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
  text-align: center;
  justify-content: center;
  display: block;
  margin-bottom: 20px;
}
.qrBox .qrImg {
  height: 100%;
  max-width: 320px;
}
.qrBox h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: #162133;
  margin: 0 0 5px;
}
.qrBox p {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 16px;
  color: #162133;
}
.qrBox p b {
  font-weight: 400;
  font-size: 16px;
  padding-top: 5px;
  color: #2c4087;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(35, 65, 213, 0.5);
  z-index: 9999;
}

.loader-spinner {
  width: 100px;
  height: 100px;
  border: 4px solid #fff;
  border-top: 4px solid #2341d5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lBox {
  position: absolute;
  width: 100px;
  height: 100px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(176, 180, 201, 0.5);
  z-index: 9999;
}

.loader-spinner {
  background-color: #fff;
  width: 110px;
  height: 110px;
  border: 4px solid #fff;
  border-top: 6px solid #5370ffe3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lBox {
  position: absolute;
  width: 100px;
  height: 100px;
}
.logoref {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 50px;
  height: 50px;
  animation: zoomInOut 1s infinite ease-in-out;
  z-index: 99;
}

@keyframes zoomInOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  20% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  40% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  80% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  20% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  40% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
  }
  60% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

@-moz-keyframes zoomInOut {
  0% {
    -moz-transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  20% {
    -moz-transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  40% {
    -moz-transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
  }
  60% {
    -moz-transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  80% {
    -moz-transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

/* -----------Media Query------------------- */

@media only screen and (max-width: 1100px) {
  .inputGroups .trimCol {
    padding: 0 15px;
  }
}

@media screen and (max-width: 799px) {
  .tab .card,
  .summary {
    margin: 15px auto 0;
    padding: 15px 15px 15px;
  }
  .summary {
    margin-top: 20px;
  }
}

@media screen and (max-width: 786px) {
  .effect h6 {
    font-size: 14px;
  }

  .field-placeholder {
    font-size: 14px;
  }
  .effect img {
    max-width: 50px;
  }
  .myRupeeBox {
    max-width: 90%;
  }
  .suggestBox .suggestBankBox label .custom-cvv {
    right: 15%;
  }
  .summary {
    bottom: 0;
    position: fixed;
    width: 100%;
    transition: all 1s ease-in;
    border-radius: 14px 14px 0 0;
    padding-top: 20px;
  }
  .summary .close {
    background: transparent;
    color: #162133;
    font-size: 18px;
    max-width: 22px;
    width: auto;
    display: block;
    font-weight: 400;
  }

  #shoDetail2 {
    left: 0;
    right: 0;
    height: 100%;
    z-index: 999;
    width: 100%;
    position: fixed;
    bottom: 0;
    padding-top: 30px;
    box-shadow: 0px 0px 6px 0px #beb6b6;
    background: #1111118f;
  }

  .showPopup .inputGroups button {
    padding: 8px 24px;
  }
  .showPopup button {
    width: auto;
  }
  .showPopup {
    display: block;
  }
  .showPopup .offerSection button {
    margin: 0;
  }
  .showPopup .offerSection {
    padding: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .moPayBtn {
    display: block;
    width: 100%;
  }
  .mobileTotal1 {
    display: block;
    background: #eaedfe;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    padding: 22px 15px;
  }
  .mobileTotal1 .amt12 {
    display: flex;
    justify-content: space-between;
  }

  .mobileTotal1 h6,
  .mobileTotal1 h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    margin: 0;
  }
  .tab-set {
    overflow-x: scroll;
  }
  .side-wallet {
    margin-top: 20px;
  }
  .mobileHide2 {
    display: none;
  }
  .showOffer {
    display: block;
    top: -12px;
    color: #2341d5;
    border-radius: 4px;
    border: 0;
    padding: 0;
    width: 100%;
    margin-bottom: 4px;
    background: transparent;
    text-align: end;
    font-weight: 600;
    font-size: 14px;
    height: fit-content;
    margin: auto 0;
  }
  .offerSection {
    margin-top: 15px;
  }
  .tooltiptext {
    max-width: 200px;
    width: max-content;
    padding: 10px;
    left: auto;
    right: -10px;
  }
  .tooltip .tooltiptext::after {
    left: 90%;
  }
  .progress {
    padding-top: 25px;
  }

  .progress .progress-steps-connector {
    background-color: #4c9d21;
    z-index: -1;
    height: 3px;
  }

  .progress-steps > li p {
    font-size: 11px;
  }
  .head-mob {
    background-color: #fdeac6;
    height: 170px;
    position: absolute;
    padding: inherit;
    width: 100%;
    z-index: -1;
    margin: 0 -15px;
    border-radius: 8px;
  }

  .mob-wallet .wall-amt {
    margin: 15px 0;
    padding: 12px 20px;
  }
  .mob-wallet .wall-amt h2 {
    background: #2341d5;
    color: #fff;
    padding: 2px 15px;
    width: max-content;
    font-size: 16px;
    border-radius: 4px;
    margin: 15px auto 5px;
  }
  .mob-wallet .wall-amt h3 {
    font-size: 16px;
    margin: 0 0 2px;
  }
  .mob-wallet .wall-amt span {
    color: #91959e;
    font-size: 12px;
  }
  .mob-wallet .wall-amt p {
    font-size: 12px;
    color: #111;
    margin: 0;
  }

  .inputGroups .trimCol {
    padding: 0 15px;
  }
  .pull-right {
    float: none !important;
  }
  .hide-mob {
    display: none;
  }
  .show-mob {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .terms {
    display: none;
  }
  .showPopup .terms {
    display: block;
  }
  .qrBox {
    margin: 20px auto;
  }
  .bankTabel {
    display: block;
    overflow-x: auto;
  }

  .bankTabel tr th {
    font-size: 12px;
  }
  .back {
    display: none;
  }
  .brand .newback {
    display: inherit;
  }
  .effect.effect-six .refreshbox:before {
    height: 40px;
    width: 55px;
  }
  .effect h6 {
    font-size: 14px;
  }

  .effect {
    padding: 20% 5% 15%;
  }

  .effect img {
    max-width: 45px;
  }
  .modal-content {
    top: 39%;
    left: 50%;
    padding: 20px 20px;
    width: 100%;
    max-width: 300px;
  }
  .modal-content .promoText h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0;
  }
  .modal-content .promoText h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0;
  }
  .modal-content .promoText p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #91959e;
    margin: 28px 0 4px;
  }
  .modal-content .btnEnj {
    font-size: 14px;
    line-height: 22px;
    color: #ffffff;
    padding: 6px 24px;
  }
  .accept-section .acceptedImg img {
    height: 14px;
    margin-right: 3px;
    margin-bottom: 12px;
  }
  .accept-section .acceptedImg {
    display: contents;
    margin: 8px 0;
  }
  .tab-content > .active {
    padding-top: 5px;
  }
  .suggestBox .suggestBankBox label .custom-cvv {
    right: 0;
    position: relative;
    left: 5px;
  }

  .suggestBox .suggestBankBox label .custom-cvv input {
    max-width: 75px;
  }
  .suggestBox .suggestBankBox label .custom-cvv .tooltip p {
    width: 15px;
    height: 15px;
    font-size: 9px;
    line-height: 11px;
  }
  .suggestBox .suggestBankBox label .custom-cvv p {
    font-size: 9px;
  }

  .suggestBox .suggestBankBox label h6 b {
    color: #000;
    font-size: 14px;
    line-height: 1.3;
  }
  .myRupeeBox .selectMyrupee img {
    height: 22px;
    width: 22px;
  }
  .myRupeeBox .selectMyrupee b {
    font-size: 18px;
  }
  .myRupeeBox .selectMyrupee label {
    padding: 10px 10px;
  }
  .suggestBox .suggestBankBox label input {
    margin: auto 14px auto 2px;
    height: 16px;
    width: 16px;
  }
  label.addNewbank {
    padding: 12px 15px;
  }
  .mobButton.change1 {
    background: #e8ecff;
  }
  .mobButton {
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 15px auto;
    padding: 0;
    font-weight: 600;
    justify-content: center;
    display: flex;
  }
  .mobButton input {
    /* margin: auto 0px auto 15px; */
    /* height: 16px; */
    /* width: 16px; */
    visibility: hidden;
    width: 0;
    margin: 0;
    height: 0;
  }

  .field-container,
  .inputGroups select.input-item,
  .inputGroups input.input-item {
    /* background: transparent; */
    border: 1px solid #e1e1e1;
  }
  .mobButton a img {
    height: 20px;
    margin-top: -3px;
    margin-right: 5px;
  }
  .mobButton a span.caret {
    font-size: 16px;
    margin-left: auto;
    float: right;
  }
  .mobButton a {
    text-decoration: none;
    /* padding: 10px 10px 10px 45px; */
    display: block;
    width: 100%;
    color: #111;
    font-size: 15px;
    /* margin-left: -30px; */
    margin-left: 0;
    padding: 10px 15px;
  }
  .inputGroups button {
    margin-bottom: 15px !important;
    border-radius: 8px !important;
    margin-top: 10px !important;
  }
  /* End of the new accordian */

  .tab .tab-content h3 {
    font-size: 16px;
  }

  .tab-set {
    display: none !important;
  }
  .progress {
    display: none;
  }
  .summary .details {
    background: #eaedfe;
    padding: 10px 0;
    margin: 15px 0 0;
    border-radius: 6px;
  }
  .progress-steps > li.check-active .progress-step-item::after,
  .progress-steps > li.check-completed .progress-step-item::after {
    font-size: 12px;
  }
  .progress-step-item::after {
    top: 55%;
  }
  .progress-step-item {
    height: 20px;
    width: 20px;
  }
  .offerSection {
    margin-top: 20px;
  }
  .offerSection .btn-blue,
  .offerSection .amount span {
    font-size: 14px;
  }
  .tab .tab-content h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .favorite .checkBox label,
  .favorite h4,
  .favorite p {
    font-size: 12px;
  }
  .favorite .checkBox .check-label {
    padding-left: 20px;
  }
  .checkmark {
    height: 14px;
    width: 14px;
  }
  footer {
    display: none;
  }
  main {
    margin-bottom: 20px;
  }
  footer .d-flex ul li a {
    padding-right: 8px;
  }
  footer .d-flex {
    display: contents;
  }
  footer .d-flex ul li {
    white-space: nowrap;
    text-align: center;
    display: contents;
  }
  footer .d-flex ul {
    width: 100%;
    text-align: center;
    display: block;
  }
  footer .d-flex p {
    display: block;
    width: 100%;
    text-align: center;
  }
  .summary .details p {
    font-size: 12px;
  }
  .summary .details h5 {
    font-size: 14px;
  }
  .summary .details .operator {
    width: 36px;
  }
  .summary .billAssured {
    margin: 0;
    height: 36px;
    float: right;
    margin-right: -5px;
  }
  .wall-amt {
    background-image: url(../images/back2.png);
    background-size: 68% 100%;
    background-repeat: no-repeat;
    background-position: right;
    padding: 12px 10px 15px 15px !important;
  }
  .myRupeeBox {
    max-width: 100%;
  }

  .tab-content label.addNewbank h5 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 479px) {
  .suggestBox .suggestBankBox label {
    padding: 12px 10px;
  }

  .showPopup .inputGroups button {
    padding: 10px 12px 10px 15px;
    font-size: 12px;
    font-weight: 500;
  }
  .side-wallet {
    /* margin-top: 20px; */
    margin-top: 30px;
  }
  .mob-wallet .wall-amt h3 {
    font-size: 14px;
  }
  .mob-wallet .wall-amt p {
    font-size: 10px;
  }
  .inputGroups button.proceedUpi {
    font-size: 14px;
    padding: 8px;
    font-weight: 500;
  }
  .inputGroups select.input-item,
  .inputGroups input.input-item {
    margin: 0px 0 8px;
    font-size: 14px;
    padding: 8px 12px;
  }
  main .page-title {
    margin-top: 20px;
  }
  .tab-set {
    overflow-x: scroll;
    height: 48px;
    margin-top: 00px;
  }
  .tab .nav-tabs {
    overflow-x: scroll;
    width: 100%;
    position: absolute;
    display: flex;
    margin: 0;
  }
  .tab .nav-tabs li {
    text-align: center;
    white-space: nowrap;
    margin: 0 6px 10px 0;
  }
  .tab .nav-tabs li a {
    display: block;
    padding: 5px 6px 5px 6px;
    line-height: 24px;
    font-size: 14px;
  }
  .selectService .InputGroup label img {
    max-width: 35px;
    height: 38px;
  }
  .selectService .InputGroup label {
    width: 50px;
    height: 50px;
  }
  .offerSection .btn-blue {
    padding: 10px 0 10px 0;
  }
  .offerSection .amount {
    padding: 10px 0;
  }
  .cashbackTotal .amount {
    padding: 4px 0;
  }
  .tab .tab-content h4 {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 6px;
    padding-left: 5px;
  }
  .summary h3 {
    font-size: 18px;
    line-height: 20px;
  }
  .suggestBox .suggestBankBox label h6 {
    font-size: 10px;
  }
}

@media only screen and (max-width: 360px) {
  .showOffer {
    font-size: 12px;
  }
  .accept-section .acceptedImg img {
    height: 12px;
    margin-right: 2px;
  }
  .suggestBox .suggestBankBox label h6 b {
    color: #000;
    font-size: 12px;
    line-height: 1.2;
  }
  .tab-set {
    overflow-x: scroll;
    height: 48px;
    margin-top: 0;
  }
  .tab .nav-tabs li {
    margin: 0 5px 10px 0;
  }
  .tab .nav-tabs li a {
    padding: 5px 10px 5px 10px;
    font-size: 12px;
  }
}

@-webkit-keyframes fadeInUpA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpA {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInUp {
  visibility: visible;
  animation-duration: 1s;
  animation-delay: 0s;
  -webkit-animation-name: fadeInUpA;
  animation-name: fadeInUpA;
  animation-fill-mode: both;
}

.total_amount,
.total_payable {
  color: #162133 !important;
  font-size: 18px !important;
}

.green_span {
  color: #4c9d21 !important;
  font-size: 18px !important;
}

/*Toaster*/
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #e30000;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 30px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 4s;
  animation: fadein 0.5s, fadeout 0.5s 4s;
}

@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
/*End Toaster*/
