:root {
  --gray: #6a6a6a;
  --lightblue: #297f87;
  --black: #121212;
  --step-gap: clamp(80px, 10vw, 180px);
}

.grey {
  color: var(--gray) !important;
}

.lightblue {
  color: var(--lightblue) !important;
}

.black {
  color: var(--black) !important;
}

.front.bg {
  background-image: url('../images/widgetbg.png');
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.btn-primary {
  background: var(--lightblue) !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 10px 15px !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  -ms-border-radius: 6px !important;
  -o-border-radius: 6px !important;
  border-radius: 6px !important;
}

.awz-section-box {
  background: #fff;
  width: 100%;
  position: relative;
}

#awz-response {
  padding: 15px;
}

.heading-title {
  font-family: 'Inter', Sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: #6a6a6a;
}

#awz-form-container {
  position: relative;
}

.section1,
.section2,
.booking-section1,
.booking-section2,
.booking-sectioin3 {
  transition: all 0.4s ease-in-out;
}

.disclaimer {
  font-size: 12px;
  line-height: normal;
}

.qoute-text {
  font-size: 12px !important;
  line-height: normal;
  font-style: italic;
}

.section1 input[id='origin_location'] {
  margin-bottom: -1px !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.section1 input[id='destination_location'] {
  margin-bottom: 10px !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.hr-alert {
  width: 100%;
  /*max-height: 90px;*/
  background-color: rgba(41, 127, 135, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border-left: 5px solid #297f87;
  padding: 10px;
  color: #121212;
  font-size: 16px;
}

/* Radio Button ko chupa dein */
.price-radio-input {
  display: none;
}

/* Card ka default look (Label) */
.price-card {
  border: 1px solid #ddd !important;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 250px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}


.price-radio-input:checked+.price-card {
  border: 1px solid #297f87 !important;
  box-shadow: 0 0 10px rgba(41, 127, 135, 0.5) !important;
}

.price-card h1 {
  position: relative;
  color: var(--black) !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  padding: 1rem 0;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-radio-input:checked+.price-card h1::before {
  content: '';
  position: absolute;
  background: url(../images/check.png) no-repeat;
  background-size: contain;
  height: 100%;
  left: -10px;
  top: 50%;
  width: 73px;
  transform: translateY(-50%);
  display: block;
}

.price-card h1::before {
  content: none;
  display: none;
}

/* .regular-price-card {
  border: 1px solid #297f87 !important;
  padding: 10px;
  width: 318px;
} */
.regular-price-card h1 {
  position: relative;
  color: var(--black) !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  padding: 1rem 0;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .regular-price-card h1::before {
  content: '';
  position: absolute;
  background: url(../images/check.png) no-repeat;
  background-size: contain;
  height: 100%;
  left: -10px;
  top: 50%;
  width: 73px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
} */
.regular-price-card p {
  color: var(--black);
}

.tdbg {
  background-color: rgba(41, 127, 135, 0.1) !important;
}


/* Step Wizard */

.stepwizard {
  display: table;
  width: 100%;
  position: relative;
  height: 120px;
}

.stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}

.stepwizard .btn.disabled,
.stepwizard .btn[disabled],
.stepwizard fieldset[disabled] .btn {
  opacity: 1 !important;
  color: #bbb;
}

.stepwizard-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 80px;
  position: relative;
}

.stepwizard-step {
  position: relative;
  text-align: center;
}

/* Connector line between steps */
.stepwizard-row::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--lightblue);
  z-index: 0;
}

/* Circle styling */
.stepwizard-step a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  border: 1px solid var(--lightblue);
  color: var(--lightblue);
  background-color: rgb(238 250 251);
  z-index: 1;
  position: relative;
  margin: 0 auto;
}

.stepwizard-step a.active {
  background-color: var(--lightblue);
  color: #fff !important;
  font-weight: bold;
  position: relative;
}

/* Car icon */
.car-icon {
  position: absolute;
  bottom: -35px;
  width: 100px;
  height: 45px;
  background: url('../images/car-icon.png') no-repeat center bottom;
  background-size: contain;
  opacity: 0.3;
  left: 0;
  transition: left 1s ease-in-out;
  /* Animation */

}

/* .stepwizard-step a.active::after{
  content: "";
  position: absolute;
  width: 100px;
  height: 50px;
  background:url('../images/car-icon.png') no-repeat center bottom;
  background-size: cover;
  opacity: .1;
  bottom: -80px;
} */

/* Label styling */
.stepwizard-step p {
  margin: 5px 0 0 0 !important;
  color: var(--black) !important;
  font-weight: normal !important;
  text-align: center;
}

.stepwizard-step a.active+p {
  color: var(--lightblue);
  font-weight: bold;
}



/* Init Phone Google */
.iti {
  width: 100% !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.iti input {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
}

.iti__country-list {
  z-index: 5 !important;
}

.iti__flag-container {
  max-height: 38px !important;
}

.iti__flag-container {
  box-sizing: border-box !important;
}

.iti .is-invalid {
  border-color: #dc3545 !important;
}


.submitting {
  position: relative;
  z-index: 9998;
  color: var(--black);
  /* ensure text stays visible */
}

.fs-small {
  font-size: 0.75rem;
}


/* Blur background only */
.submitting::before {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 998;
}

/* Centered loader + text */
.submitting::after {
  content: 'Please wait...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
  color: var(--black);
  z-index: 9999;
  text-align: center;
  padding-left: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='20' stroke='%23417f87' stroke-width='4' fill='none' stroke-dasharray='90' stroke-dashoffset='0'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='1s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
}

.check-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 2% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none
  }

  50% {
    transform: scale3d(1.1, 1.1, 1)
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142
  }
}