.form-header {
  gap: 5px;
  text-align: center;
  font-size: .9em;
}

.form-header .stepIndicator {
  position: relative;
  flex: 1;
  padding-bottom: 30px;
}

.form-header .stepIndicator.active {
  font-weight: 600;
}

.form-header .stepIndicator.finish {
  font-weight: 600;
  color: #e90101;
}

.form-header .stepIndicator::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9;
  width: 20px;
  height: 20px;
  background-color: #f8adad;
  border-radius: 50%;
  border: 3px solid #f8adad;
}

.form-header .stepIndicator.active::before {
  background-color: #e90101;
  border: 3px solid #f8adad;
}

.form-header .stepIndicator.finish::before {
  background-color: #e90101;
  border: 3px solid #f8adad;
}

.form-header .stepIndicator::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 100%;
  height: 3px;
  background-color: #f3f3f3;
}

.form-header .stepIndicator.active::after {
  background-color: #f8adad;
}

.form-header .stepIndicator.finish::after {
  background-color: #e90101;
}

.form-header .stepIndicator:last-child:after {
  display: none;
}

/*input {
          padding: 15px 20px;
          width: 100%;
          font-size: 1em;
          border: 1px solid #e3e3e3;
          border-radius: 5px;
      }

      input:focus {
          border: 1px solid #e90101;
          outline: 0;
      }

      input.invalid {
          border: 1px solid #ffaba5;
      }*/

.step {
  display: none;
}

.icon__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section.loader {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*.icon__loader img {
  -webkit-animation: l4 1s steps(4) infinite;
   animation: l4 1s steps(4) infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}*/




.animated_dots {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 2s infinite linear alternate;
  display: block;
  margin-bottom: 20px;
}

@keyframes l5 {
  0% {
    box-shadow: 40px 0 #1e73be, -40px 0 #0002;
    background: #1e73be
  }

  33% {
    box-shadow: 40px 0 #1e73be, -40px 0 #0002;
    background: #0002
  }

  66% {
    box-shadow: 40px 0 #0002, -40px 0 #1e73be;
    background: #0002
  }

  100% {
    box-shadow: 40px 0 #0002, -40px 0 #1e73be;
    background: #1e73be
  }
}

.animated_text {
  font-weight: bold;
  font-family: sans-serif;
  font-size: 30px;
  animation: l1 2s linear infinite alternate;
  display: inline-block;
}

.animated_text:before {
  content: "Loading..."
}

@keyframes l1 {
  to {
    opacity: 0
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 25px;
  margin-bottom: -6px !important;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked+.slider {
  background-color: #557eb3;
}

.switch input:focus+.slider {
  box-shadow: 0 0 1px #557eb3;
}

.switch input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*form styles*/
.pay_w .d-block {
  font-size: 15px;
}

.pay_w>span:last-child {
  display: inline-block;
  text-align: center;
}

.input-group {
  margin-bottom: 2px;
}

/*.input-group label,
  .all_input label,
  .ml20 {
    margin-left: 20px;
  }*/

.input-group label,
.all_input label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}

.small_box {
  display: flex;
  padding: 6px 10px;
  background-color: #fff;
  /*border-radius: 12px;*/
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.icon_close {
  color: red;
  display: flex;
}

.icon_close img {
  max-width: 24px;
}

.svalue {
  font-weight: 700;
  text-align: right;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

/*inputs*/
/*#msform input:not(.r-check),
  #msform textarea,
  #msform select {
    padding: 8px 24px;
    border: 1px solid #e7e7e7;
    border-radius: 25px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    background-color: #fff;
    
  }*/
#msform input:not(.r-check, .all_checkboxs input, .check_this input),
#msform textarea,
#msform select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  margin-bottom: 10px;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  font-family: Arial, Helvetica, sans-serif;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.hasDatepicker:focus {
  outline: #ced4da;
}

.ui-widget-content .ui-state-default {
  background-color: #fbfbfb !important;
  border-color: #fbfbfb !important;
  color: #404040 !important;
  background-image: none !important;
  text-align: center;
}

.ui-widget-content .ui-state-hover,
.ui-widget-content .ui-state-active {
  background-color: #557eb3 !important;
  border-color: #557eb3 !important;
  color: #fff !important;
}

.check_this {
  position: relative;
}

.check_this input.checked {
  position: absolute;
  top: 20px;
  height: 100%;
  left: 0;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  right: 0;
  z-index: 99;
  cursor: pointer;
}

#msform input:invalid {
  border-color: #dc3545;
}

#msform input:valid {
  border-color: #198754;
}

:valid~.cls_success {
  color: #198754;
}

:invalid~.cls_error {
  color: #dc3545;
}

#msform input,
#msform select {
  font-size: 16px;
}

#msform select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

/*buttons*/
#msform .action-button {

  background: #1e73be;
  color: #fff;
  border-color: #1e73be;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px;
  text-decoration: none;
}

#msform .action-button:hover,
#msform .action-button:focus {
  background-color: #000;
  border-color: #000;
}

/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}

.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/*progressbar*/
.steps ul {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
  display: flex;
}

.steps ul li {
  list-style-type: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  flex: 1;
  position: relative;
  text-align: center;
}

.steps ul li:before {
  content: counter(step);
  counter-increment: step;
  width: 50px;
  height: 50px;
  display: flex;
  font-size: 20px;
  color: #fff;
  background: #ccc;
  border-radius: 50px;
  margin: 0 auto 5px auto;
  justify-content: center;
  align-items: center;
  border: 4px solid transparent;
}

.actions ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
}

.form-footer {
  text-align: center;
}

.btn,
.actions ul li a,
.form-footer button {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.actions ul li {
  margin-right: 10px;
}

.site-btn,
.actions ul li a,
.form-footer button,
.form-footer #prevBtn:hover {
  background-color: #557eb3;
  color: #fff !important;
}

.form-footer #prevBtn {
  margin-right: 10px;
}

.steps ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
}

.actions ul li a,
.form-footer button {
  min-width: 120px;
  border-radius: 6px;
  border: 4px solid #fff9;
}


.site-btn:hover,
.form-footer button:hover,
.actions ul li:not(.disabled) a:hover,
.form-footer #prevBtn {
  background-color: #000;
}

/*progressbar connectors*/
.steps ul li:after {
  content: '';
  width: 100%;
  height: 10px;
  background: #ccc;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
  /*put it behind the numbers*/
}

.steps ul li:first-child:after {
  border-radius: 10px 0 0 10px;
}

.steps ul li:last-child:after {
  border-radius: 0 10px 10px 0;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
.steps ul li.done:before,
.steps ul li.done:after {
  background: #1e73be;
  color: #fff;
}

.steps ul li.done:before,
.steps ul li.current:before {
  border-color: #fff9;
  box-shadow: 0 0 10px 0 #fff9;
}

.steps ul li.done a {
  color: #557eb3;
}

.steps ul li.current:after,
.steps ul li.current:before {
  background: #000;
  color: #fff;
}

.steps ul li.current a {
  color: #000;
}

.mb-1 {
  margin-bottom: 4px;
}

.icon_add,
.icon_remove {
  margin-right: 2px;
  display: inline-block;
  display: inline-block;
}

.add_more,
.remove_icon {
  border-radius: 4px;
  min-width: 100px;
  font-size: 12px;
}



.add_more {
  background-color: #000;
  margin-right: 0px;
  display: block;
  margin-left: auto;
  margin-top: 20px;
}

.remove_icon {
  background-color: #bd2a2a;
}

.mb-2 {
  margin-bottom: 8px;
}

.d-block {
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 12px;
  margin-right: 12px;
}

.step5 .row {
  margin-right: 0;
  margin-left: 0;
}

.all_input {
  display: flex;
}

.all_input div:not(:last-child) {
  margin-right: 12px;
}

.row>* {
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.d-none,
#msform input .d-none {
  display: none !important;
}

.content .title,
span.current-info {
  display: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.main_box {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px 0 #0003;
  margin-bottom: 40px;
  border-radius: 10px 10px 0 0;
}

.main_box h4 {
  text-align: center;
  flex-direction: column;
}

.bx_head {
  display: flex;
  flex-direction: column;
}

.bx_head img {
  max-height: 200px;
  object-fit: cover;
}

.bx_head span {
  display: block;
  background-color: #5d738b;
  text-align: center;
  font-weight: 500;
  color: #fff;
  padding: 10px;
}

.body_content {
  padding: 20px 10px 2px;
}

.body_content p {
  margin-top: 0;
}

.body_content span {
  background-color: #1d62af
}

.blue_text {
  color: #1d62af;
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
}

.blue_text a {
  text-decoration: underline;
}

.box_step5 .btn {
  font-size: 12px;
  border-radius: 6px;
}

.select_btn {
  background-color: #1d62af;
  display: block;
  text-align: center;
  padding: 8px;
  color: #fff;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 20px;
  border-radius: 4px;
  cursor: pointer;
}

.w-full {
  width: 100%;
}

.checked:checked+.select_btn {
  background-color: #000;
}

.cards_icon {
  display: flex;
  justify-content: flex-end;
}

.cards_icon div {
  display: inline-flex;
  margin-bottom: 10px;
  background-color: #fff;
  padding: 0 10px;
}

.cards_icon img:not(:last-child) {
  margin-right: 6px;
}

.cards_icon img {
  width: 30px;
  height: 30px;
}

.text-center {
  text-align: center;
}

.section {
  background-color: #fbfbfb;
  border-radius: 20px;
  box-shadow: 0 0 30px 0 #0002;
  margin-bottom: 30px;
}

.actions .disabled {
  cursor: none;
  opacity: .3
}

.actions .disabled:hover {
  opacity: .3;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb30 {
  margin-bottom: 30px;
}

.v_key {
  list-style: none;
  padding-left: 0;
}

.v_key:not(.v_key2) {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.fs24 {
  font-size: 24px;
}

.fs20 {
  font-size: 20px;
}

.fs16 {
  font-size: 16px;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.text-white {
  color: #fff;
}

.site-btn2 {
  min-width: 50%;
  /*border-radius: 25px;*/
}

.my-0,
.mb-0 {
  margin-bottom: 0;
}

.my-0,
.mt-0 {
  margin-top: 0;
}

.d-block {
  display: block;
}

.d-flex:not(.d-flex2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.d-flex2 div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.box_step5 {
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #0003;
  margin-bottom: 1rem;
}

.r-check {
  margin-bottom: 0;
  width: 20px;
  display: inline-block;
  height: 20px;
  position: relative;
  top: 3px;
}

.pt-2 {
  padding-top: 20px;
}

.mr-2 {
  margin-right: 6px;
}

.text_ {
  font-size: 16px;
  font-weight: 600;
}

.box_step5:not(.grident_clr) {
  background-color: #fff;
}

.v__key:not(.active) h4>span,
.v__key:not(.active) h5,
.v__key:not(.active) .p_text,
.v__key:not(.active) .pay_w .d-block,
.v__key:not(.active) .d__d {
  color: #0009;
}

.v__key.active .d__d .icon__ {
  color: #43d742;
}

.v__key h4 {
  padding-top: 0;
}

.box_step5 ul.v__key {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.v__key li {
  flex: 1;
}

.icon__2 {
  top: 5px;
  right: 18px;
}

.one_liner {
  position: absolute;
  top: 68px;
  right: 30px;
  height: 60px;
  border-right: 2px dashed #0002;
}

.icon__2 img {
  width: 25px;
}

.grident_clr {
  background-image: linear-gradient(to bottom, #6de747, #60c51e);
  font-weight: bold;
}

.pay_now:not(.pay_now2) {
  display: flex;
  justify-content: space-around;
}

.pay_now2 div span.fs20:first-child,
.pay_now span.fs20:first-child {
  color: #557eb3;
  font-size: 26px;
}

.pay_now2 div span.fs20:last-child,
.pay_now span.fs20:last-child {
  color: #6de747;
  font-size: 26px;
}

.pay_now2 div {
  display: flex;
  justify-content: space-between;
}

.pay_now2 div:not(:last-child) {
  margin-bottom: 8px;
}

.v_key li {
  display: flex;
  justify-content: space-between;
}

.v_key li:not(:last-child),
.vehicle_details li {
  margin-bottom: 10px;
}

.pickup__this {
  margin-top: 20px;
}

.delivery_this,
.pickup__this {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.delivery_this h3,
.pickup__this h3 {
  padding-top: 0;
}

.delivery_this div,
.pickup__this div {
  font-size: 16px;
}

.delivery_this div span,
.pickup__this div span {
  display: flex;
  font-size: 16px;
}

.info_icon svg {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.bg-grey {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 12px;
}

.pay_w {
  display: flex;
  align-items: center;
  /*text-align: center;*/
}

.icon__ {
  display: inline-block;
  margin-right: 4px;
}

.p_text {
  margin-right: 10px;
  /*margin-bottom: 2px;*/
  display: block;
}

.nm_on_card {
  flex: 0 0 40%;
}

.icon_card {
  font-size: 24px;
  display: inline-block;
  margin-right: 6px;
}

.icon_money {
  display: inline-block;
  font-size: 24px;
}

.term_text {
  text-align: center;
  font-size: 1rem;
}

.term_text a {
  text-decoration: underline;
}

.pt-0 {
  padding-top: 0;
}

@media(min-width: 768px) {
  .hide_on_d {
    display: none;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .term_text {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .section:not(.step5, .last-step, .step6, .step4, .step_first, .step7),
  .step5 .col-md-6,
  .step4 .col-md-6,
  .step6 .col-md-6,
  .step7 .col-md-6,
  .step_first .col-md-6,
  .last-step .col-md-6 {
    padding: 50px;
  }

  .step7 .col-md-6:last-child {
    padding: 0;
    border-radius: 0 20px 20px 0;
  }

  .step7 .col-md-6:last-child .thank_you img {
    border-radius: 0 20px 20px 0;
  }

  .thank_you {
    display: flex;
    position: relative;
  }

  .thank_you:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1e73be;
    left: 0;
    right: 0;
    clip-path: polygon(0 0, 0 0, 45% 100%, 0% 100%);
  }

  .step5 .col-md-6:first-child,
  .step4 .col-md-6:first-child,
  .step6 .col-md-6:first-child,
  .step_first .col-md-6:first-child,
  .last-step .col-md-6:first-child,
  .step7 .col-md-6:first-child {
    border-radius: 20px 0 0 20px;
    background-color: #fff;
  }

  .step5 .col-md-6:first-child,
  .step6 .col-md-6:first-child {
    background-color: #f3f3f3;
  }

  .step4 .col-md-6:first-child,
  .step_first .col-md-6:first-child {
    background-color: #e7e7e7;
  }

  .step4 .col-md-6:first-child {
    background-image: linear-gradient(to right, #000, #0009);
  }

  .step7 .col-md-6:first-child {
    background-color: #1e73be;
  }

  .actions ul li a {
    padding: 8px 30px;
  }

  .step5 .row,
  .step4 .row,
  .step_first .row,
  .step6 .row,
  .step7 .row,
  .last-step .row {
    margin-right: 0;
    margin-left: 0;
  }

  .step4 .col-md-6:first-child,
  .step7 .col-md-6:first-child {
    color: #fff;
  }

  .v__key h5 {
    padding-top: 5px;
  }
}

.ps-relative {
  position: relative;
}

.autocomplete-items div {
  font-size: 15px;
}

.removeCustom {
  color: #ff0000;
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
}

.section {
  margin-bottom: 30px;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #ced4da;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow-y: scroll;
  text-align: left;
}

.d__d {
  display: flex;
}

.fvalue {
  min-width: 150px;
}

.icon_1_02 {
  right: 12px;
  top: 5px;
}

.icon_1_02 img {
  max-width: 24px;
  opacity: .5;
}

.autocomplete-items div {
  padding: 3px 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #0002;
}

.autocomplete-items div:hover {
  background-color: #f1f3f0;
}

.error {
  color: red;
  border-color: red !important;
}

@media(max-width: 767px) {
  .hide_on_m {
    display: none;
  }

  .section:not(.step5, .last-step, .step6, .step4, .step_first, .step7),
  .step5 .col-md-6,
  .step4 .col-md-6,
  .step6 .col-md-6,
  .step7 .col-md-6,
  .step_first .col-md-6,
  .last-step .col-md-6 {
    padding: 12px;
  }

  .v__key h5 {
    padding-top: 0;
  }

  .v_key:not(.v_key2) {
    width: 90%;
  }

  .all_input label,
  .input-group label {
    width: 95%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .step_first .col-md-6>h3,
  .bx_head h4 {
    padding-top: 0;
  }

  #wizard h2,
  #wizard h3,
  #wizard h4,
  #wizard h5,
  #wizard h6,
  .fs20 {
    font-size: 18px;
  }

  .form-footer button,
  #wizard .btn,
  #wizard .form-control,
  .body_content p,
  .v_key span,
  .blue_text {
    font-size: 14px;
  }

  .bx_head span,
  .select_btn {
    font-size: 16px;
  }

  .box_step5 ul.v__key {
    flex-direction: column;
  }

  .d__d {
    width: 100%;
  }

  .text__ {
    font-size: 16px;
  }

  .step5 .v__key li:last-child {
    display: flex;
    flex-direction: column;
  }

  .pay_w {
    margin-bottom: 20px;
  }

  .step5 .col-md-6:first-child,
  .step4 .col-md-6:first-child,
  .step6 .col-md-6:first-child,
  .step_first .col-md-6:first-child,
  .last-step .col-md-6:first-child,
  .step7 .col-md-6:first-child {
    background-color: #fff;
    border-radius: 20px 20px 0 0;
  }

  .step5 .col-md-6:first-child,
  .step6 .col-md-6:first-child {
    background-color: #f3f3f3;
  }

  .step4 .col-md-6:first-child,
  .step_first .col-md-6:first-child {
    background-color: #e7e7e7;
  }

  .step4 .col-md-6:first-child {
    background-image: linear-gradient(to right, #000, #0009);
  }

  .step7 .col-md-6:first-child {
    background-color: #1e73be;
  }

  .step5 .row,
  .step4 .row,
  .step_first .row,
  .step6 .row,
  .step7 .row,
  .last-step .row,
  .sec__02 .row {
    margin-right: 0;
    margin-left: 0;
  }

  .sec__02 .col-md-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .sec__03 .col-md-6:first-child {
    margin-bottom: 30px;
  }

  .step4 .col-md-6:first-child,
  .step7 .col-md-6:first-child {
    color: #fff;
  }

  .switch {
    width: 80px;
  }

  .pay_now2 div span.fs20:first-child,
  .pay_now span.fs20:first-child,
  .pay_now2 div span.fs20:last-child,
  .pay_now span.fs20:last-child {
    font-size: 20px;
  }
}

.sell_info {
  margin: 5px 25px 5px 25px;
}

@media screen and (max-width: 767px) {
  input, select, textarea {
    font-size: 16px !important;
  }

}

#wizard {
  visibility: hidden;
}

span.p_text {
  font-size: 16px;
}

span.text__ {
  font-size: 17px;
}

.confirm-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.confirm-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.confirm-box p {
  margin: 0 0 20px;
}

.confirm-buttons button {
  margin: 0 10px;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-confirm {
  background: #557eb3;
  color: white;
}

.btn-cancel {
  background: #7f8c8d;
  color: white;
}

.loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}