@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.container-form {
  max-width: 62.5rem;
}
@media (max-width: 991.98px) {
  .container-form {
    padding: 0 1rem;
  }
}

.header-form {
  background: #0F1314;
}
.header-form__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media (max-width: 991.98px) {
  .header-form__content {
    gap: 1.5rem;
    height: 4rem;
  }
}
.header-form__content .leftSide {
  width: 100%;
}
.header-form__content .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .header-form__content .logo {
    flex-shrink: unset;
  }
}
.header-form__content .logo img {
  width: 13.875rem;
}
@media (max-width: 991.98px) {
  .header-form__content .logo img {
    width: 11rem;
  }
}
.header-form__content .rightSide {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .header-form__content .rightSide {
    width: unset;
  }
}
.header-form__content .button-back {
  width: -moz-max-content;
  width: max-content;
  padding: 0 2.5rem 0 1.375rem;
  height: 2.5rem;
  border-radius: 0.25rem;
  border: 1px solid #686d6e;
  font-size: 1rem;
  line-height: 2rem;
  color: #686d6e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: 0.3s;
}
.header-form__content .button-back .button-icon {
  filter: brightness(0) saturate(100%) invert(44%) sepia(3%) saturate(181%) hue-rotate(170deg) brightness(89%) contrast(84%);
}
.header-form__content .button-back:hover {
  background: #e3ca86;
  color: #3b372a;
  text-decoration: none;
  border-color: #e3ca86;
}
.header-form__content .button-back:hover .button-icon {
  filter: brightness(0) saturate(100%) invert(12%) sepia(11%) saturate(579%) hue-rotate(358deg) brightness(91%) contrast(90%);
}
.header-form__body {
  padding: 2.5rem 0 4.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #f9f9f9;
}
@media (max-width: 991.98px) {
  .header-form__body {
    padding: 1.875rem 0;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.header-form__body span {
  max-width: 43.5rem;
}
@media (max-width: 991.98px) {
  .header-form__body span {
    max-width: unset;
  }
}
.header-form__body .accent {
  font-weight: 600;
  color: #e3ca86;
}

.form-stepper {
  background: #0F1314;
}
.form-stepper .step-list {
  display: flex;
  gap: 3.625rem;
  align-items: flex-end;
  width: 100%;
  justify-content: center;
  padding: 0 5.125rem;
}
@media (max-width: 991.98px) {
  .form-stepper .step-list {
    padding: 0;
    gap: 0.75rem;
  }
}
.form-stepper .step {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.125rem;
  border-bottom: 0.375rem solid transparent;
  height: 100%;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .form-stepper .step {
    gap: 0.375rem;
    align-items: center;
  }
}
.form-stepper .step.active {
  border-color: #e3ca86;
}
.form-stepper .step.active .step__number {
  background: #e3ca86;
  color: #2a2c32;
}
.form-stepper .step.active .step__name {
  color: #f9f9f9;
}
.form-stepper .step.filled .step__number {
  border-color: #e3ca86;
  color: #e3ca86;
}
.form-stepper .step.filled .step__name {
  color: #f9f9f9;
}
.form-stepper .step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #3f4b4f;
  background: #0e171a;
  border: 1px solid #3f4b4f;
  border-radius: 0.5rem;
  font-weight: 500;
  flex-shrink: 0;
}
.form-stepper .step__name {
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: #3f4b4f;
  font-weight: 500;
  margin-top: 0.25rem;
}
@media (max-width: 991.98px) {
  .form-stepper .step__name {
    font-size: 0.75rem;
    line-height: 1.125rem;
    margin-top: 0;
  }
}

.form-main {
  padding: 3.75rem 0 4.375rem 0;
}
@media (max-width: 991.98px) {
  .form-main {
    padding: 2.5rem 0 5rem 0;
  }
}

.form-box {
  background: white;
  box-shadow: 0 0.3125rem 1.875rem rgba(88, 92, 101, 0.1);
  padding: 1.875rem;
}
@media (max-width: 991.98px) {
  .form-box {
    padding: 1rem;
  }
}
.form-box .form-container {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.form-box .step-body {
  display: flex;
  gap: 3.75rem;
}
@media (max-width: 991.98px) {
  .form-box .step-body {
    flex-direction: column;
    gap: 1rem;
  }
}
.form-box .step-body__left {
  flex-grow: 1;
  width: 100%;
}
.form-box .step-body__right {
  width: 18.4375rem;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .form-box .step-body__right {
    width: 100%;
  }
}
.form-box .step-footer {
  margin-top: 2rem;
  padding-top: 1.875rem;
  border-top: 1px solid #e1e3ec;
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
@media (max-width: 991.98px) {
  .form-box .step-footer {
    margin-top: 1rem;
    padding-top: 1.5rem;
  }
}
.form-box .step-footer__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991.98px) {
  .form-box .step-footer__left {
    flex-direction: column;
    gap: 1rem;
  }
}
.form-box .step-footer__left .step-footer-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .form-box .step-footer__left .step-footer-mobile {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .form-box .step-footer__left .form-button {
    width: 100%;
  }
}
.form-box .step-footer__right {
  width: 18.4375rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.form-box .step-footer .price {
  font-size: 1rem;
  line-height: 1.4375rem;
  color: #000000;
  text-align: right;
}
@media (max-width: 991.98px) {
  .form-box .step-footer .price {
    font-size: 15px;
  }
}
.form-box .step-footer .price .accent {
  font-weight: 600;
}

#form_step1 .step-body__right {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}
#form_step1 .form-time-info {
  text-align: left;
  margin-top: 3.75rem;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #form_step1 .form-time-info {
    margin-top: 0.625rem;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  #form_step1 .step-footer {
    padding-top: 0;
    border: 0;
  }
}

.limo-button.form-button {
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 4.6875rem;
  border-radius: 0.25rem;
  background: #e3ca86;
  font-size: 1rem;
  line-height: 21px;
  color: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  font-weight: 500;
  transition: 0.3s;
  border: 0;
}
.limo-button.form-button:hover {
  background: #101c1f;
  color: #bbbcbe;
  text-decoration: none;
}
.limo-button.form-button:hover img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(2%) saturate(3%) hue-rotate(324deg) brightness(99%) contrast(90%);
}
@media (max-width: 991.98px) {
  .limo-button.form-button {
    height: 3.125rem;
    font-size: 15px;
    padding: 1rem 2rem;
  }
}

.limo-button.form-button-small {
  width: -moz-max-content;
  width: max-content;
  padding: 0 1.875rem 0 2.5rem;
  height: 2.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 2rem;
  background: #e3ca86;
  color: #131313;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: 0.3s;
  border: none;
}
.limo-button.form-button-small:hover {
  background: #101c1f;
  color: #bbbcbe;
  text-decoration: none;
}
.limo-button.form-button-small:hover .button-icon {
  filter: brightness(0) saturate(100%) invert(83%) sepia(2%) saturate(3%) hue-rotate(324deg) brightness(99%) contrast(90%);
}

.step-form-tab {
  width: -moz-max-content;
  width: max-content;
  box-shadow: 0 0.3125rem 1.875rem rgba(88, 92, 101, 0.1);
}
@media (max-width: 991.98px) {
  .step-form-tab {
    width: 100%;
  }
}
.step-form-tab .nav-tabs {
  border-bottom: none;
}
.step-form-tab .nav-tabs .nav-link {
  height: 3.75rem;
  border: none;
  border-radius: 0;
  background: #162226;
  flex-grow: 1;
  font-size: 1.25rem;
  line-height: 21px;
  color: white;
  transition: 0.3s;
  padding: 0 3rem;
}
@media (max-width: 991.98px) {
  .step-form-tab .nav-tabs .nav-link {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.step-form-tab .nav-tabs .nav-link:hover {
  background: #e3ca86;
  color: #3b372a;
}
.step-form-tab .nav-tabs .nav-link.active {
  background: white;
  color: black;
}

.form-cars-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.625rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
@media (max-width: 991.98px) {
  .form-cars-list {
    gap: 0.75rem;
  }
}
.form-cars-list .form-car {
  background: #f4f6fb;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid transparent;
  transition: 0.3s;
  color: #333333;
}
@media (max-width: 991.98px) {
  .form-cars-list .form-car {
    padding: 0.75rem;
  }
}
.form-cars-list .form-car:hover {
  border-color: #e3ca86;
}
.form-cars-list .form-car:hover .button-choose-car {
  background: #e3ca86;
  color: #2a2c32;
}
.form-cars-list .form-car.active {
  border-color: #e3ca86;
  background: white;
}
.form-cars-list .form-car__image {
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .form-cars-list .form-car__image {
    width: 100%;
  }
}
.form-cars-list .form-car__name {
  font-size: 1rem;
  line-height: 1.25rem;
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin-top: 1.25rem;
  flex-grow: 1;
}
.form-cars-list .form-car__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0.75rem;
}
@media (max-width: 991.98px) {
  .form-cars-list .form-car__details {
    justify-content: center;
    gap: 0.625rem;
    margin-top: 0.375rem;
  }
}
.form-cars-list .form-car__details .detail {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.form-cars-list .form-car__details .detail span {
  font-size: 13px;
  line-height: 1.125rem;
}
@media (max-width: 991.98px) {
  .form-cars-list .form-car__details .detail span.passengers, .form-cars-list .form-car__details .detail span.bags {
    display: none;
  }
}
.form-cars-list .form-car__details .detail span.counter {
  display: none;
}
@media (max-width: 991.98px) {
  .form-cars-list .form-car__details .detail span.counter {
    display: inline-flex;
  }
}
.form-cars-list .form-car__details .detail span .accent {
  font-weight: 600;
}
.form-cars-list .form-car__details .detail .icon {
  width: 1rem;
}
.form-cars-list .form-car__footer {
  margin-top: 0.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e0e3eb;
  padding-top: 1.25rem;
  width: 100%;
  gap: 0.5rem;
}
@media (max-width: 991.98px) {
  .form-cars-list .form-car__footer {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0.375rem;
  }
}
.form-cars-list .form-car__footer .price {
  font-size: 1.125rem;
  line-height: 23px;
  color: black;
  font-weight: 600;
}
.form-cars-list .form-car__footer .button-counter-group {
  display: flex;
  align-items: center;
  border-radius: 0.375rem;
  overflow: hidden;
}
.form-cars-list .form-car__footer .button-counter-group .button-counter {
  width: 2.25rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
  font-size: 1.125rem;
  font-weight: 600;
  border: 0;
  background: #e3ca86;
  transition: 0.2s;
}
.form-cars-list .form-car__footer .button-counter-group .button-counter:hover {
  background: #101c1f;
  color: #fff;
}
.form-cars-list .form-car__footer .button-counter-group .counter {
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
  font-size: 1rem;
  line-height: 2rem;
}
.form-cars-list .form-car__footer .button-choose-car {
  font-size: 0.875rem;
  line-height: 2rem;
  color: #fff;
  background: #101c1f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 1rem;
  height: 2.5rem;
  text-align: center;
  border: 0;
  border-radius: 0.375rem;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .form-cars-list .form-car__footer .button-choose-car {
    width: 100%;
  }
}

.form-main .sectionTitle-small {
  font-size: 1.125rem;
  line-height: 1.3125rem;
  align-items: center;
  font-weight: 500;
  margin-bottom: 1.875rem;
}
@media (max-width: 991.98px) {
  .form-main .sectionTitle-small {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.ride-summary {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.ride-summary__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ride-summary__details .detail {
  display: flex;
  gap: 1.25rem;
}
.ride-summary__details .detail .icon {
  width: 1.25rem;
  flex-shrink: 0;
}
.ride-summary__details .detail .keyValue {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.ride-summary__details .detail .keyValue .key {
  font-size: 0.875rem;
  line-height: 1.4375rem;
  color: #b2a7a7;
  font-weight: 500;
}
.ride-summary__details .detail .keyValue .value {
  font-size: 1.125rem;
  line-height: 1.4375rem;
  color: #3f4b4f;
}
.ride-summary__map {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ride-summary__map .distance-container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .ride-summary__map .distance-container {
    justify-content: space-between;
    align-items: center;
  }
}
.ride-summary__map .distance-container .distance {
  font-size: 1rem;
  line-height: 1.4375rem;
  color: #000000;
  text-align: right;
}
.ride-summary__map .distance-container .distance .accent {
  font-weight: 600;
}

.login-notice {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .login-notice {
    gap: 0.75rem;
    align-items: center;
  }
}
.login-notice .login-text {
  font-size: 1rem;
  line-height: 1.4375rem;
  color: #131313;
}
@media (max-width: 991.98px) {
  .login-notice .login-text {
    font-size: 0.8125rem;
    line-height: 1.125rem;
  }
}

#form_step3 #passenger_number {
  width: 4.375rem;
}

.login-btn-width {
  min-width: 8.75rem;
  justify-content: flex-end;
}

.login-button-start.show {
  background: #101c1f;
  color: #bbbcbe;
  padding-left: 1.5rem;
  padding-right: 1.875rem;
}
.login-button-start.show img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(2%) saturate(3%) hue-rotate(324deg) brightness(99%) contrast(90%);
}

.dropdown-login {
  min-width: 21.875rem;
  border: 2px solid #e3ca86;
  padding: 1.875rem 1.25rem;
  gap: 1.25rem;
  flex-direction: column;
  align-items: center;
  border-radius: 0;
  box-shadow: 0 5px 3.125rem rgba(88, 92, 101, 0.2);
  animation: 0.5s slideup;
}
.dropdown-login.show {
  display: flex;
}
.dropdown-login .login-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}
.dropdown-login .login-form .form-button {
  margin-top: 0.5rem;
  width: 100%;
}
.dropdown-login .login-info {
  font-size: 0.875rem;
  line-height: 21px;
  color: #2a2c32;
  width: 100%;
  text-align: center;
}
.dropdown-login .login-info a {
  color: #2a2c32;
  font-weight: 400;
  text-decoration: underline;
}
.dropdown-login .login-info a:hover {
  color: #e3ca86;
}

@keyframes slideup {
  from {
    transform: translateY(4.5rem);
  }
  to {
    transform: translateY(3.5rem);
  }
}/*# sourceMappingURL=form.css.map */