/*=====Reset CSS======*/
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-style: normal;
  color: var(--dark-gray);
  position: relative;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 30px;
}

.svg_container {
  display: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

::-moz-selection {
  background-color: #1f40cb;
  color: #fff;
}

::selection {
  background-color: #1f40cb;
  color: #fff;
}

/*=====Reset CSS======*/

/*===== Global CSS ======*/
:root {
  --bg-color: #FDFDFF;
  --bg-color-2: #f4f7fa;
  --primary-text-color: #161C2D;
  --white: #fff;
  --black: #000;
  --yellow: #ffdc00;
  --sky: #00bef1;
  --orenge: #f79548;
  --pink: #f073ab;
  --gray: #b9b9b9;
  --blue: #161c2d;
  --border-color: #e1e3e6;
  --dark-gray: #737373;
  --green: #4ade80;
}

h1 {
  font-family: 'Gilroy-Bold';
  font-size: 32px;
  letter-spacing: -1.8px;
  line-height: 1.81;
  color: var(--primary-text-color);
}

.email_sub {font-size: 14px; font-weight: 600}

.glb_btn {
  width: 100%;
  max-width: 410px;
  vertical-align: middle;
  padding: 4px 10px;
  border: 1px solid var(--yellow);
  border-radius: 6px;
  background-color: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.glb_btn img {
  margin-left: 5px;
}

.glb_btn:hover {
  background-color: #f3e8a4;
}

.glb_btn.glb_green {
  border-color: var(--green);
  background-color: var(--green);
}

.glb_btn.glb_green:hover {
  background-color: #4ade8086;
}



/*===== Global CSS ======*/

.required {font-size: 10px;}

.multi_step_header {
  background-color: var(--yellow);
}

.header_wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0px 6px;
}

.back_from_btn_wrp {
  display: flex;
  align-items: center;
}

.back_from_btn_wrp a {
  width: 62px;
  height: 48px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  margin-right: 45px;
}

.back_from_btn_wrp a:hover {
  background-color: var(--white);
}

.back_from_btn_wrp span {
  font-family: 'Gilroy-Bold';
  color: var(--black);
}

.outer_list>li {
  position: relative;
  padding-bottom: 35px;
  counter-increment: li;
}

.outer_list>li::before {
  content: counter(li);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  line-height: 26px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  left: -52px;
}

.outer_list>li.active::before {
  background-color: var(--yellow);
}

.outer_list>li.done::before {
  background-color: var(--green);
  content: '\f00c';
  font-family: 'fontawesome';
  color: #fff;
}

.outer_list .step_name {
  font-weight: 500;
  color: var(--black);
}

.outer_list {
  padding-left: 56px;
  position: relative;
}

.outer_list::before {
  content: '';
  position: absolute;
  width: 34px;
  border-radius: 109px;
  background-color: rgba(217, 217, 217, 0.44);
  left: 0px;
  top: -4px;
  bottom: 0px;
}

.inner_list {
  padding: 20px 0px 0px 12px;
}

.inner_list>li {
  position: relative;
}

.inner_list>li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: -56px;
  top: 50%;
  background-color: var(--gray);
  transform: translateY(-50%);
}

.inner_list>li:not(:last-child) {
  padding-bottom: 7px;
}

.multi_step {
  padding-top: 50px;
  padding-bottom: 125px;
}

.step_content h1 {
  margin-bottom: 15px;
}

.step_1_content {
  max-width: 410px;
}

.input_group {
  display: flex;
  margin: 0px -4px;
}

.input_group>input {
  margin: 0px 4px;
}

.form-label {
  font-size: 18px;
  font-weight: 500;
  color: #404d61;
}

.input_fld .form-label {
  margin-bottom: 0px;
}

.form-select,
.form-control {
  padding: 6px 16px;
  height: 35px;
  border-radius: 8px;
  border: solid 1px var(--border-color);
  line-height: 20px;
}

.form-select {
  background-image: url(../images/down-arrow.svg);
  background-size: 14px 7px;
  color: #757d8a;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--yellow);
}

.form-control::placeholder {
  color: #757d8a;
}

.input_fld {
  margin-bottom: 10px;
}

.error {
    border-color: red;  
}
.error-message {
    color: red;
    font-size: 0.8em;   
}


.inner_list li.current {
  color: var(--yellow);
}

.inner_list li.current::before {
  background-color: var(--yellow);
}

.multi_step .accordion-button {
  background-color: transparent;
  box-shadow: none;
  padding: 12px 16px;
  color: #757d8a;
  font-weight: 700;
  border: none;
}

.multi_step .accordion-button::after,
.multi_step .accordion-button:not(.collapsed)::after {
  background-image: url(../images/down-arrow.svg);
  background-size: 14px 7px;
  background-position: center;
}

.multi_step .accordion-item {
  border-radius: 8px;
  border: solid 1px var(--border-color);
}

.multi_step .accordion-body {
  padding: 16px;
}

.job_accordian_wrp .accordion-item:not(:last-child) {
  margin-bottom: 15px;
}

.job_accordian_wrp {
  margin-bottom: 25px;
}

.driver_tab {
  border: none;
  margin: -15px -10px 0px;
}

.driver_tab .nav-item {
  padding: 15px 10px 0px;
  width: 25%;
}

.driver_tab .nav-link {
  border: none;
  width: 100%;
  padding: 30px 30px 17px;
  background-color: var(--yellow);
  border-radius: 12px;
  text-align: center;
  color: #1c1c1c;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.driver_tab .nav-link.active {
  border: none;
  background-color: var(--black);
  color: var(--yellow);
}

.driver_tab .nav-link .svg_icon svg {
  transition: all 300ms ease-in-out;
}

.driver_tab .nav-link .svg_icon {
  margin-bottom: 19px;
}

.driver_tab .nav-link h3 {
  font-size: 20px;
  font-weight: 700;
}

.driver_tab .nav-link p {
  font-size: 14px;
}

.driver_tab .nav-link.active .svg_icon svg path {
  fill: var(--yellow);
}



.job_dtls_btm {
  display: flex;
}

.form-select:focus {
  box-shadow: none;
  border-color: var(--yellow);
}


.left_detls {
  max-width: 410px;
}

.left_detls .input_fld {
  margin-bottom: 25px;
}

.price_info .price {
  font-family: 'Gilroy-Bold';
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -1.8px;
  color: var(--blue);
  margin-bottom: 7px;
}

.price_info .price label {
  font-family: 'Gilroy-Light';
}

.price_info .price span {
  font-size: 16px;
}

/* New Price */
.price-details {
    width: 100%;
    max-width: 410px;
    vertical-align: middle;
    padding: 10px 10px 0px 20px;
    border: 1px solid var(--yellow);
    border-radius: 6px;
    background-color: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 25px;
}
.price-details .newprice {
  font-family: 'Gilroy-Bold';
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -1.8px;
  color: var(--blue);
  margin-bottom: 7px;
}

.price-details .newprice label {
  font-family: 'Gilroy-Light';
  font-size: 28px;
}

.price-details .newprice span {
  font-size: 16px;
}
/* End: New Price */


.price_info .hire_hour {
  color: #000;
}

.country_code {
  display: flex;
}

.country_code .form-select {
  width: 120px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-right-width: 0px;
  padding: 6px 12px 6px 44px;
  color: #101828;
  background-image: url(../images/ukflag.png), url(../images/down-arrow.svg);
  background-position: left 14px center, right .75rem center;
  /* background-position: right .75rem center; */
  background-size: 24px auto, 14px 7px;
  flex: 0 0 auto;
}


.country_code .form-control {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-left-width: 0px;
  width: auto;
  flex: 1;
  padding-left: 0px;
}

.country_code .form-control:focus,
.country_code .form-select:focus {
  border-color: var(--border-color);
}

.step_2_content.step_content {
  padding-right: 65px;
}


.step_3_wrp .date_wrp {
  max-width: 410px;
}

/* .date_picker input {
  display: none;
} */

.ui-widget.ui-widget-content {
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  padding: 0px 16px 16px;
  border: 1px solid var(--border-color);
}

.ui-datepicker .ui-datepicker-header {
  padding: 16px 0px;
  background-color: transparent;
  border: none;
}

.ui-datepicker .ui-datepicker-header::after {
  content: '';
  position: absolute;
  height: 1px;
  display: block;
  left: -16px;
  right: -16px;
  bottom: 0px;
  background-color: var(--border-color);
}

.ui-datepicker .ui-corner-all .ui-icon {
  display: none;
}


.ui-datepicker .ui-datepicker-prev {
  background-image: url(../images/prev_date.svg);
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover {
  background-color: transparent;
  border: none;
}

.ui-datepicker .ui-datepicker-next.ui-state-hover {
  background-color: transparent;
  border: none;
}

.ui-datepicker .ui-datepicker-next {
  background-image: url(../images/next_date.svg);
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  cursor: pointer;
}

.ui-datepicker table {
  margin: 0px;
  table-layout: fixed;
}

.ui-datepicker th {
  /* padding: 9px 4px; */
  font-size: 12px;
  line-height: 18px;
  padding: 10px 16px;
  color: rgba(28, 28, 28, 0.4);
  font-weight: 400;
}

.ui-datepicker td {
  padding: 0px;
}

.ui-datepicker td .ui-state-default {
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  padding: 10px 0px;
  border: none;
  background-color: transparent;
}

.ui-datepicker td .ui-state-active {
  background-color: var(--yellow);
  border-radius: 12px;
  color: #000;
}

/* .ui-datepicker td .ui-state-hover {
  background-color: #f7efbb;
  color: #000;
  border-radius: 12px;
} */

.ui-datepicker-other-month .ui-priority-secondary {
  color: rgba(28, 28, 28, 0.4);
  background-color: transparent;
  border: none;
  opacity: 1;
}



.ui-widget-content .ui-datepicker-today .ui-state-default {
  background-color: var(--gray);
  border-radius: 12px;
  color: #000;
}

.input_fld.date_picker .form-label {
  margin-bottom: 30px;
}

.ui-datepicker .ui-datepicker-title {
  font-family: "Inter", sans-serif;
  color: #1c1c1c;
  font-size: 16px;
  font-weight: 600;
}


/* range css */
.range-slider {
  position: relative;
}

.range {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 2px;
  border-radius: 1px;
  background-color: #3b4758;
  border: none;
  outline: none;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background-color: var(--yellow);
  box-shadow: 0px 0px 0px 3px rgba(57, 154, 243, 0.2);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  position: relative;
}

.selector {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  transform: translate(-50%, -50%);
  z-index: 2;

}


.selector_val {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #212529;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -27px;
}

.progressBar {
  width: 0%;
  height: 2px;
  border-radius: 1px;
  background-color: #212529;
  position: absolute;
  left: 0px;
  top: 0px;
}

/* range css */




.range_wrp .time_range {
  margin-top: 40px;
}

.range_value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  /*border-bottom: 1px solid var(--border-color);*/
}

.range_value span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 12px;
}

.range_wrp p {
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  color: #404D61;
}

.duration_wrp label {
  margin: 0px;
}

.timing_wrp {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.timing_wrp button[type='submit'] {
  margin-top: auto;
}

.duration_wrp {
  margin-top: 32px;
}

.step_content {
  display: none;
}

.date_wrp .input_fld.date_picker {
  margin-bottom: 0px;
}

.step_heading {
  margin-bottom: 15px;
}



/* step 4 start */
.step_4_content .step_heading {
  margin-bottom: 26px;
}

.driv_req_lft {
  max-width: 410px;
}

.driv_req_lft .policy {
  font-family: 'Gilroy-Regular';
  font-size: 10px;
  line-height: 12px;
  color: #737373;
  margin-top: 30px;
}

.driv_req_right {
  padding-left: 65px;
}

.driv_img_grp {
  position: relative;
  display: flex;
}

.driv_img_grp .img1 {
  margin-left: 65px;
  margin-bottom: 26px;
}

.driv_img_grp .img3 img,
.driv_img_grp .img1 img {
  max-width: 89px;
  border-radius: 10px;
  width: 100%;
}

.driv_img_grp .img2 img {
  max-width: 250px;
  border-radius: 10px;
  width: 100%;
}

.driv_img_grp .drv_img_grp2 .img3 {
  margin: 70px 0px 0px 16px;
}

/* step 4 end */

/* step 5 start */
.stp_five_job_dtl {
  max-width: 755px;
}

textarea.form-control {
  min-height: 210px;
  resize: none;
  padding: 16px;
}

/* step 5 end */

/* step 6 start */
.step6_bdtls {
  max-width: 410px;
}

.form-check {
  padding-left: 25px;
}

.form-check-input[type=checkbox] {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border-color: var(--border-color);
}

.form-check-input:checked[type=checkbox] {
  background-color: #68D585;
  border-color: #68D585;
}

.form-check-input:focus {
  box-shadow: none;
}

.form-check .form-check-label {
  font-size: 14px;
  font-weight: 700;
  color: #737373;
}

.step6_bdtls .form-check {
  margin-bottom: 30px;
}

.form-col .form-control+.form-control {
  margin-top: 16px;
}

/* step 6 end */

/* step 7 start */
.step_7_content .step_heading {
  margin-bottom: 26px;
}

.terms_condition_wrp p {
  color: #000;
  max-width: 866px;
}

.terms_condition_wrp p+p {
  margin-top: 5px;
}

.terms_condition_wrp p strong {
  display: block;
  margin-bottom: 5px;
}

.terms_condition_wrp .form-check {
  margin: 30px 0px;
}

/* step 7 end */

/* step 8 start */
.over_view_lft {
  position: relative;
}

.overview-box {
  position: absolute;
  top: 0;
  left: 51%;
}

.overview-txt {
  max-width: 410px;
}

.overview-txt .price_info {
  margin-bottom: 23px;
}

.dtl_overview {
  display: flex;
  flex-wrap: wrap;
}

.dtl_overview .dtl_full {
  width: 100%;
}

.dtl_overview .dtl_hlf {
  width: 50%;
}

.over_dtl_txt .dtl_hdng {
  font-weight: 700;
  font-size: 18px;
  color: var(--yellow);
}

.over_dtl_txt .dtl_pare {
  font-weight: 500;
  font-size: 18px;
  color: #404d61;
}

.over_dtl_txt {
  padding-bottom: 30px;
}

.overview-txt .form-check {
  margin-bottom: 30px;
}

.overview_btn_wrp button:not(:last-child) {
  margin-bottom: 30px;
}

.overview-box .blk_box {
  width: 200px;
  height: 200px;
  padding: 50px 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background-color: var(--black);
}

.overview-box .blk_box img {
  max-width: 120px;
  margin-bottom: 15px;
}

.overview-box .blk_box h3 {
  color: var(--yellow);
  font-size: 20px;
  font-weight: 700;
}

/* step 8 end */


/* modal design */
.pay_modal .modal-header {
  padding: 26px 26px 12px 26px;
  justify-content: flex-end;
  border: none;
}

.pay_modal .modal-header .close-btn {
  padding: 0px;
  width: 33px;
  height: 33px;
  background-image: url(../images/x-circle.svg);
  background-repeat: no-repeat;
  background-size: 33px;
  border: none;
  background-color: transparent;
}

.pay_modal .modal-body {
  padding: 0px 80px 70px;
}

.pay_modal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 25%)
}

.modal-backdrop {
  background-color: var(--yellow);
}

.modal-backdrop.show {
  opacity: 80%;
}

.pay_summery {
  margin-bottom: 35px;
}

.pay_summery p {
  font-family: 'Gilroy-Light';
  font-size: 28px;
  line-height: 58px;
  letter-spacing: -1.8px;
  color: var(--primary-text-color);
}

.pay_summery p span {
  font-family: 'Gilroy-Bold';
}

.payment_dtl .pay_card {
  margin-bottom: 30px;
}

.payment_dtl .pay_head {
  margin-bottom: 5px;
}

.pay_btn_wrp {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.pay_btn_wrp .power_by {
  margin-right: 20px;
  flex: 0 0 auto;
}

/* modal design */

/* step 9 start */
.complete_order_view h1 {
  margin-bottom: 18px;
}

/* step 9 end */

.stpe_width_controle {
  padding-right: 65px;
}



/* form responsvie */
.mob_step {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 90px;
}

.mob_step .parent {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  counter-increment: li;
  margin: 0 auto;
}

.mob_step>li.parent.done::before {
  content: '\f00c';
  font-family: 'fontawesome';
  color: #fff;
}

.mob_step>li.parent.done::before {
  background-color: var(--green);
}

.mob_step>li.parent::before {
  content: counter(li);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  line-height: 26px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  left: 0px;
  left: 0px;
}

.mob_step>li.active::before {
  background-color: var(--yellow);
}


.mob_step::before {
  content: '';
  position: absolute;
  height: 34px;
  border-radius: 109px;
  background-color: rgba(217, 217, 217, 0.44);
  left: 0px;
  right: 0px;
}

.mob_step>li.child {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray);
  margin: 0 auto;
}

.mob_step>li.child.current {
  background-color: var(--yellow);
}

.parent_step_name {
  position: absolute;
  top: 50px;
  text-align: center;
  left: 0;
  right: 0;
  font-weight: 600;
  color: var(--black);
  display: none;
}

.parent_step_name h4 {
  font-weight: inherit;
  font-size: 16px;
  line-height: 24px;
}

.child_step_name {
  position: absolute;
  top: 75px;
  text-align: center;
  left: 0;
  right: 0;
  font-weight: 700;
  color: var(--yellow);
  display: none;
}

.mob_step li.active+.parent_step_name {
  display: block;
}

.mob_step li.current+.child_step_name {
  display: block;
}

/* 25.04.34 start */
.driver_tab.workers_tab_orng .nav-link {
  background-color: var(--orenge);
}

.driver_tab.workers_tab_orng .nav-link.active {
  background-color: var(--black);
}

.driver_tab.workers_tab_orng .nav-link.active .svg_icon svg path {
  fill: var(--orenge);
}

.driver_tab.workers_tab_orng .nav-link.active h3 {
  color: var(--orenge);
}

/* .step_2_content .right_detls .tab-content+.tab-content {
  margin-top: 15px;
} */

/* 25.04.34 end */

 .scroll-box {
            width: 100%;
            height: 350px;
            overflow-y: scroll;
            border: 1px solid #ccc;
            padding: 10px;
            box-sizing: border-box;
        }