@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --gold: #debc5f;
    --gold2: #c1933d;
    --dark: #000;
}

body{
  background: #f1f5f9
}
.container-xl{
  background: #fff;
  padding: 0 0 20px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px #ccc
}
.multi-step-form {
  padding: 25px 0
}
.multi-step-form h1{
  font-size: 36px;
  margin-bottom: 15px;
}
.multi-step-form h2{
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.step-buttons{
  margin-top: 30px;
}
.multi-step-form h3{
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #000
}
.multi-step-form h3.v-type{
  display: inline-flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  /*background: #ffd;*/
  /*border: 1px solid rgba(12,113,195,0.5);*/
  color: #333;
  border-radius: 50%;
  /*width: 50px;*/
  height: 50px;
  font-weight: 400;
}
.multi-step-form h4{
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #777;
}
.multi-step-form h5{
  font-size: 18px;
  margin-bottom: 12px;
}
.multi-step-form h6{
  font-size: 16px;
  margin-bottom: 12px;
}

.step-1{
  max-width: 700px;
  margin: 0 auto
}
.step-2{
  max-width: 1150px;
  margin: 0 auto
}
.step-3{
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

#container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc
}
.progress{
  position: absolute;
  top: 13px;
  width: 460px;
  left: 125px;
}
.step-container {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.step-circle{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33.3333%;
}
.step-circle p{
  text-align: center;
  font-weight: bold
}
.step-circle span{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: #000;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer; /* Added cursor pointer */
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: var(--gold);
  z-index: -1;
}

#multi-step-form{
  overflow-x: hidden;
}
a{
  text-decoration: none;
}
.multi-step-form .btn{
  min-height: 42px;
  padding: 8px 20px;
  border-radius: 30px;
}

.multi-step-form .btn-primary{background: #fff; border-color:#000;color:#000;}
.multi-step-form .btn-primary:hover,.multi-step-form .btn-primary:focus,.multi-step-form .btn-primary:active{background: #000; border-color:#000;color:#fff;}
.progress-bar{background: #000}
/* form css*/
.form-group{
  margin-bottom: 20px
}
.form-group label:not(.form-check-label){
  display: block;
  margin: 0 5px 3px 0;
  font-weight: 500;
  color: #000
}
label.btn{
  font-weight: 400
}
.form-control{
  min-height: 45px;
  border-radius: 30px;
  border-color: rgba(0,0,0,0.3);
  padding-left: 20px;
}
.btn:focus{
  box-shadow: none;
}
.form-control:focus{
  box-shadow: 0 0 0 .35rem rgb(222 188 95 / 19%);
  border-color: var(--gold);
}
.form-check-input{
  border: 1px solid #999;
  cursor: pointer
}
.form-check-label{
  cursor: pointer
}
.multi-step-form .nav-tabs{
  border: 0
}
.multi-step-form .nav-tabs .nav-item{
  margin: 0 5px 0 0;
}
.multi-step-form .nav-tabs .nav-link{
  margin: 0;
  font-size: 16px;
  /* border: #555; */
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 10px 30px;
  color: #555;
  font-weight: 500
}
.multi-step-form .nav-tabs .nav-link i{
  font-size: 18px
}
.multi-step-form .nav-tabs .nav-link.active, .multi-step-form .nav-tabs .nav-link:hover{
  margin: 0;
  border: 1px solid var(--gold);
  border-radius: 30px;
  color: #fff;
  background: var(--gold)
}
.passenger-counter a{
  height: 42px;
  width: 50px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.3);
  color: #333;
  background: #fff;
  transition: ease-in-out 0.2s;
  margin: 0;
}
.passenger-counter a.ic_minus{
  border-right: 0;
  border-radius: 30px 0 0 30px;
}
.passenger-counter a.ic_plus{
  border-left: 0;
  border-radius: 0 30px 30px 0;
}

.passenger-counter a:hover{
  color: #fff;
  background: var(--gold);
  border-color: var(--gold)
}
.passenger-counter .form-control{
  min-height: 42px;
  width: 70px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 0!important
}
.round-pick-up, .round-drop-off{
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 25px
}
.round-pick-up h3, .round-drop-off h3{
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

.request-summary{
  border-radius: 8px;
  padding: 20px;
  position: relative;
  background: #000
}
.request-summary a{
  position: absolute;
  top: 20px;
  right: 20px;
}
.summary{
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}
.summary p{
  font-size: 13px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
  font-weight: 500;
  font-family: 'Montserrat'
}
.summary span{
  font-size: 15px;
  color: #fff
}

.vehicle-item{
  padding: 30px 20px;
  background: #fdfdfd;
  transition: ease-in-out 0.15s
}
.vehicle-item:hover{
  background: #f5f5f5
}
.vehicle-item{
  border-top: 1px solid #ccc;
}
.border_bottom{
  border-bottom: 1px solid #ccc;
}
.vehicle-item i{
  font-size: 20px;
  margin-right: 5px;
}
.vehicle-item p{
  margin-bottom: 10px
}
small{
  font-weight: 500;
  color: #999;
  font-size: 75%;
  font-family: 'Montserrat'
}
.btn-info{
    border:0;
  color: #fff!important;
  background:#000;
}
.btn-info:hover,.btn-info:focus,.btn-info:active{
  color: #fff!important;
  background:var(--gold);
}

.review-summary, .review-vehicle, .review-price, .have-trouble{
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
}
.review-summary{
}
.pick-drop{
  position: relative
}
.pickup,.dropoff{
  padding-left: 30px;
  position: relative
}
.font-20{
  font-size: 20px
}
.font-16, small.font-16{
  font-size: 16px
}
.normal{
  font-weight: normal!important
}
.pic-icon, .drop-icon{
  position: absolute;
  top: -4px;
  left: -4px;
  font-size: 20px;
}
.pic-icon{
  color: rgb(252, 136, 29);
}
.pickup:before{
  content: '';
  position: absolute;
  top: 24px;
  left: 5px;
  width: 1px;
  background: #999;
  bottom: 0;
  z-index: 1
}
.drop-icon{
  color: rgb(164, 68, 183);
}
.font-14{
  font-size: 14px;
}
.form-check-inline{
  margin-right: 1px
}
label.btn{
  border-radius: 30px!important
}
.review-vehicle{
}

.btn-secondary{border: 1px solid #555; background: #555;color:#fff;}
.btn-secondary:hover,.btn-secondary:hover,.btn-secondary:focus{border: 1px solid #000; background: #000;color:#fff;}

label.btn-outline-primary{
  min-height: 38px!important;
  padding: 6px 24px!important;
  color: #555!important;
  border: 1px solid #999!important;
}
label.btn-outline-primary:hover{
  color: #fff!important;
  border: 1px solid var(--gold)!important;
  background: var(--gold)!important;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  color: #fff!important;
  border-color: var(--gold)!important;
  background: var(--gold)!important;
}
.review-price{
  background: #f1f5f95c
}
.have-trouble{
  background: #fff4f4a6;
  border-color: #ff000045;
}

.quote-form-wrap{
  width: 96%;
  max-width: 600px;
  margin: 0 auto
}
.quote-form-wrap .btn{
  border-radius: 30px;
  min-height: 45px;
}
.quote-form-wrap label.text-danger{
  font-size: 20px
}
.banner_quote{
  position: relative
}
.banner_quote span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Montserrat';
  background: #0d6efdb0;
  border-radius: 50px;
  padding: 8px 20px;
  color: #fff;
}

#dvLoading{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('//upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Phi_fenomeni.gif/50px-Phi_fenomeni.gif') 
              50% 50% no-repeat rgb(249,249,249);
}
/* Loader */
/* Main loader overlay */
.custom-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75);
    z-index: 99999; /* 💥 Way above all modal layers */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show loader */
.custom-loader.show-loader {
    opacity: 1;
    visibility: visible;
}

/* Loader container */
.loader-container {
    position: relative;
    width: 120px;
    height: 120px;
}

/* Logo circle */
.logo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 3px solid gold;
    background: white;
}

/* Logo image */
.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wave effect */
.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    z-index: 1;
    animation: wave 1.5s infinite ease-in-out;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* close loader */
@media (max-width: 575px){
  .multi-step-form h1{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .multi-step-form h2{
    font-size: 27px;
    margin-bottom: 15px;
  }
  .multi-step-form h3{
    font-size: 22px;
    margin-bottom: 15px;
  }
  .multi-step-form h4{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .multi-step-form h5{
    font-size: 17px;
    margin-bottom: 12px;
  }
  .multi-step-form h6{
    font-size: 16px;
    margin-bottom: 12px;
  }

  #container {
    max-width: 340px;
  }
  .step-circle{
    justify-content: flex-start
  }
  .step-circle p{
    font-size: 12px;
    line-height: 1
  }
  .progress{
    width: 248px;
    left: 50px;
  }
  .multi-step-form .nav-tabs .nav-link{
    padding: 8px 14px;
    font-size: 14px
  }
  .review-summary, .review-vehicle, .review-price, .have-trouble{
    padding: 15px
  }
  .container-xl{
    border-radius: 0 0 20px 20px;
  }
  .btn.btn-white-big.gold {
      background: #debc5f !important;
      color: #000;
      border: 0;
    }
    .btn.btn-white-big {
      border-radius: 6px;
      padding: 13px 24px;
      font-size: 16px;
      font-weight: 600;
      line-height: 28px;
    }
    .banner-form {
      position: relative;
    }
    
    .content {
      position: absolute;
      top: 0;
      right: 0;
      margin: 1rem;
    }
    .btn.btn-white-big.gold:hover {
      background: #fff;
      color: #000;
      border: 0;
    }
  
}

