/*----------------------------
  Progress Bar
----------------------------*/
#booking-form .progress-bar {
  margin: 0 0 30px 0;
  overflow: hidden;
  counter-reset: step;
  list-style: none;
  text-align: center;
}
#booking-form .progress-bar > li {
  color: #111;
  text-transform: uppercase;
  font-size: 14px;
  width: 25%;
  float: left;
  position: relative;
}
#booking-form .progress-bar > li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: #e8e8e8;
  margin: 0 auto 5px auto;
  border-radius: 3px;
}
#booking-form .progress-bar > li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #e8e8e8;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
}
#booking-form .progress-bar > li:first-child:after {
  content: none; 
}
#booking-form .progress-bar > li.active:before,  #booking-form .progress-bar > li.active:after {
  background: #fcc71f;
  color: #2041AC;
}

/*----------------------------
  Steps
----------------------------*/
#booking-form .steps { position: relative; }
#booking-form .step {
  background-color: #f6f6f6;
  border: none;
  border-radius: 3px;
  /*box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.4);*/
  padding: 20px 30px;
  box-sizing: border-box;
  width: 100%;
  display: none;
  margin-bottom: 20px;
}
#booking-form .step.current {
  display: block;
}

#booking-form .step .step-header {
  text-align: center;
}
#booking-form .step .step-header .title {
  font-size: 24px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}
#booking-form .step .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}
#booking-form .step .step-body {
  text-align: center;
}
#booking-form .step .step-footer {
  text-align: center;
  min-height: 70px;
  margin-top: 20px;
}
/*#booking-form .part-steps {}
#booking-form .part-steps .part {
  display: none;
}
#booking-form .part-steps .part.current {
  display: block;
}*/
@media (max-width: 768px) {
  #booking-form .step {
    padding: 0;
  }
  #booking-form .step .step-header {
    border-bottom: 3px solid #fcc71f;
    padding: 10px;
    margin-bottom: 20px;
  }
  #booking-form .step .step-header .title {
  }
  #booking-form .step .subtitle {
    margin-bottom: 0;
  }
  #booking-form .step .step-body {
    padding: 15px;
  }
}

/*----------------------------
  Form controls
----------------------------*/
#booking-form input[type=text],
#booking-form input[type=email],
#booking-form input[type=date],
#booking-form select,
#booking-form textarea {
  padding: 6px 12px;
  color: #555;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  font-size: 13px;
  -webkit-appearance: none;
  border-radius: 0px;
  font-family: inherit;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  outline: none;
  height: 34px;
  background-color: #fff;
  display: inline-block;
}
#booking-form input[type=text]:focus,
#booking-form input[type=email]:focus,
#booking-form input[type=date]:focus,
#booking-form select:focus,
#booking-form textarea:focus {
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 2px rgba(252,199,31,.4);
  border-color: #FFD03D;
}
#booking-form input[type=text].error,
#booking-form input[type=email].error,
#booking-form input[type=date].error,
#booking-form select.error,
#booking-form textarea.error {
  border-color: #a94442;
}
#booking-form textarea {
  max-width: none;
}
#booking-form .form-group-inline > label {
  display: inline-block;
  width: auto;
  padding-right: 10px;
  text-align: right;
  min-width: 100px;
  margin-left: -100px;
}
#booking-form .form-group-inline > input {
  display: inline-block;
}
#booking-form .form-label {
  display: block;
  margin-bottom: 3px;
}
#booking-form input:disabled {
  background-color: #e8e8e8;
  color: #a1a1a1;
}
@media (max-width: 768px) {
  #booking-form .form-group-inline > label {
    margin: auto;
    display: block;
    text-align: left;
    font-size: 16px;
  }
  #booking-form .form-group-inline > input {
    display: block;
  }
}

/*----------------------------
  Buttons
----------------------------*/
.btn-action {
  width: 100px;
  background: #2041AC;
  cursor: pointer;
  padding: 10px 5px;
  margin-right: 5px;
  color: #fff;
  border: none;
  box-shadow: 0 3px 0 #09206B;
  outline: none;
  text-transform: uppercase;
}
.btn-action:hover {
  background-color: #2C52D3;
}
.btn-action:active {
  margin-top: 2px;
  box-shadow: 0 1px 0 #09206B;
  background-color: #2040AC;
}
.btn-action:disabled {
  opacity: 0.8;
  background-color: #ccc;
  color: #999;
  box-shadow: none;
  cursor: not-allowed;
}

/*----------------------------
  Helpers
----------------------------*/
#booking-form .hide {
  display: none;
}
#booking-form .error-message {
  background-color: rgb(247, 75, 75);
  color: rgb(77, 13, 13);
  padding: 10px;
}
#booking-form .error-message:before {
  content: '!!! ';
  float: right;
}
#booking-form .text-center {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
#booking-form .text-right {
  text-align: right;
}
#booking-form .pull-right {
  float: right;
}
#booking-form .resend-code a {
  color: #12c;
  font-size: 14px;
  cursor: pointer;
}
#booking-form .resend-code a:hover {
  text-decoration: underline;
}
#booking-form .checkbox label {
  display: inline-block;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 5px 15px 5px 5px;
}
#booking-form .checkbox label.selected {
  background-color: #fff;
  border-color: #ccc;
  border-radius: 2px;
}

/*----------------------------
  STEP: Select a service
----------------------------*/
#booking-form .services-container {
  text-align: center;
}
#booking-form .services-container .service {
  display: inline-block;
  width: 120px;
  margin-right: 15px;
  margin-left: 15px;
  padding: 8px;
  vertical-align: top;
  border: 2px solid transparent;
  cursor: pointer;
}
#booking-form .services-container .service.selected {
  /*box-shadow: 1px 1px 5px #ccc;*/
  /*outline: 3px solid #2041AC;*/
  background-color: #fff;
  border-radius: 3px;
  border-color: #fcc71f;
}
#booking-form .services-container .service img {
  width: 100%;
  height: 100px;
  background-color: #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
}
#booking-form .services-container .service i{
  width: 100%;
  height: 100px;
  background-color: #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 55px; 
  line-height: 102px;
}
#booking-form .services-container .service:hover {border: 2px solid #ccc;border-radius: 2px;}
@media (max-width: 768px) {
  #booking-form .services-container .service img {
    display: none;
  }
  #booking-form .services-container .service {
    font-size: 24px;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
    border-radius: 0px;
  }
  #booking-form .services-container .service.selected {
    background-color: #e1e1e1;
    color: #444;
  }
}

/*----------------------------
  STEP: Choose a depot
----------------------------*/
#booking-form #depot-details {
  display: none;
}

#booking-form #depot-details .depot-container > div {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  padding: 1%;
  line-height: 1.3em;
  text-align: center;
}
#booking-form #depot-details .depot-map {
  margin-top: 20px;
  margin-bottom: 20px;
  display: none;
}
@media (max-width: 768px) {
  #booking-form #depot-details .depot-container {
    margin-top: 15px;
  }
  #booking-form #depot-details .depot-container > div {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
  }
  #booking-form #depot-details .depot-container > div h3 {
    margin-bottom: 5px;
  }
}
/*----------------------------
  STEP: Choose a vehicle
----------------------------*/
/*#booking-form .vehicles-found {
  width: 100%;
}
#booking-form .vehicles-found tr {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
#booking-form .vehicles-found tr:hover {
  cursor: pointer;
  background-color: #ccc;
}
#booking-form .vehicles-found tr.selected {
  background-color: #2040AC;
  color: #fff;
}*/
#booking-form .vehicles-found {
  width: 50%;
  text-align: left;
  margin: auto;
}
#booking-form .vehicles-found .vehicle {
  padding: 15px 10px;
  cursor: pointer;
}
#booking-form .vehicles-found .vehicle:hover {
  background-color: #eee;
}
#booking-form .vehicles-found .vehicle .btn-select {
  float: right;
  font-weight: normal;
  text-transform: uppercase;
}
#booking-form .vehicles-found .vehicle > div {
  padding-left: 20px;
  border-bottom: 1px solid #ccc;
}
#booking-form .vehicles-found .vehicle label {
  display: inline-block;
  min-width: 100px;
}
#booking-form .vehicles-found .vehicle span {
  color: #444;
  font-size: 18px;
}
#booking-form .vehicles-found .separator {
  height: 1px;
  width: 100%;
  background-color: #111;
}

@media (max-width: 768px) {
  #booking-form .vehicles-found {
    width: 100%;
  }
}

/*----------------------------
  STEP: Confirm booking
----------------------------*/
#booking-form #confirm-booking .step-body {
  text-align: left;
}
#booking-form table {
  border: none;
}
#booking-form .col-50 {
  display: inline-block;
  width: 49%;
  vertical-align: top;
}
#booking-form .col-50.with-margin {
  margin-right: 1.4%;
}
@media (max-width: 768px) {
  #booking-form .col-50 {
    width: 100%;
  }
  #booking-form .col-50.with-margin {
    margin-right: 0;
  }
}
#booking-form .confirm-booking > div {
  margin-bottom: 15px;
}
#booking-form .small-margin-bottom {
  margin-bottom: 5px !important;
}
#booking-form .panel {
  background-color: #fff;
  padding: 15px;
  /*box-shadow: 0 3px 3px #888;*/
  /*border: 1px solid #ccc;*/
}
#booking-form .additional-services h3 {
  margin: 15px 0 10px 0;
  font-size: 20px;
  text-transform: uppercase;
}
#booking-form #confirm-booking input[type=date] {
  margin-bottom: 0px;
}
#booking-form #confirm-booking textarea {
  height: 120px;
}

#booking-form .calculate-discount input[type=text] {
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 75%;
}
#booking-form .calculate-discount .check {
  text-transform: uppercase;
}

#booking-form .book-now {
  margin-top: 20px;
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 22px;
}

#booking-form table td {
  padding: 5px 10px;
}

#booking-form .loading {
  font-size: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #005DA4;
  display: none;
}
#booking-form .loading.show { display: block; }

#booking-form .start-over {
  position: absolute;
  background-color: #CA3F3F;
  line-height: 25px;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  right: 0;
  top: -25px;
  text-transform: uppercase;
  display: none;
  cursor: pointer;
}
#booking-form .start-over:hover { background-color: #B33232 }
#booking-form .start-over.show { display: block; }
/*
#booking-form #conf-prev.btn-action {
  position: absolute;
  background-color: #2041AC;
  padding: 0 10px;
  line-height: 25px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  left: 0;
  top: -25px;
  text-transform: uppercase;
  box-shadow: none;
  cursor: pointer;
  display:none;
}
#booking-form #conf-prev.btn-action:active{margin-top: 0px;}
#booking-form #conf-prev.btn-action:hover{background-color: #162E7B;}
#booking-form #conf-prev.show { display: block; }
*/
#booking-form .booking {
  opacity: 0;
  margin-right: -2em;
  margin-left: 1em;
}
#booking-form .booking.show { opacity: 1; }

span.add-ask{color:#0076c0;}
span.add-services{font-size: 11px;}

#booking-form select{
  background: url('../images/select-arrow.png') no-repeat right #fff;
}
td.error{
  border:1px solid #FF0000;
}
.select-date{
  background-color: #FFF;
  padding:20px;
}
.select-date h3{font-size: 20px;text-transform: uppercase;}
.date-wrap{text-align: center;max-width: 400px;margin: 0 auto;}
.date-picker{
  width: 120px;
  padding: 8px;
  vertical-align: top;
  border: 2px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  margin: 20px auto;
}
.date-picker:hover{
  border: 2px solid #FFDF39;
  border-radius: 2px;
}
.date-picker i{
  width: 100%;
  height: 100px;
  background-color: #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 55px;
  line-height: 102px;
}
span.date-info{font-size: 11px;}
.vec-select{
  background-color: #0076c0;
  color:#FFF;
  margin: 0px;
  padding: 7px 13px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  border-width: 0px;
  border-style: solid;
  text-transform: uppercase;
  text-align: center;
  float: right;
}
#confirm-booking .order-complete{    
  color: #0076C0;
  padding: 25px;
  background-color: #FFDE39;
  border: 5px solid;
  border-radius: 50%;
  width: 75px;
  font-size: 46px;
  text-align: center;
  margin: 25px auto;
}
p.oc-p{text-align: center;}
a.sub-btn{background: #0076C0; color: #FFF; padding: 10px; margin-top: 10px;}
a.sub-btn:hover {background: #fcc71f; color: #0076C0; }