@charset "UTF-8";
@import "/assets/fonts/gilroy/stylesheet.css";
* {
  margin: 0;
  padding: 0;
}
* :focus-visible {
  outline: none;
}

html {
  height: 100%;
  background: #232C77;
}

body {
  font-family: "Gilroy", serif;
  height: 100%;
}

#app {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

button, input {
  font-family: "Gilroy", serif;
  border-radius: 4px;
}

textarea {
  font-family: "Gilroy", serif;
  resize: none;
}

button {
  cursor: pointer;
}

.header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .header img {
    height: 30%;
  }
}

.header__top {
  background-color: #232C77;
}

.header__container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  height: 40px;
  min-height: 40px;
  max-width: 1568px;
  margin: auto;
  width: 100%;
  padding: 0px 20px;
  box-sizing: border-box;
}

.header__middle {
  width: 100%;
  height: 87px;
  min-height: 87px;
  margin: auto;
  background-color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.header__middle .header__container {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
.header__middle .header__container a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.header__language-panel {
  z-index: 100;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

.language-panel__select-container {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  display: none;
  position: absolute;
  top: 100%;
}

.language-panel__select {
  padding: 5px 10px;
  cursor: pointer;
  color: #232C77;
}

.language-panel__select:hover {
  color: #EB5E50;
  transition: color 0.2s;
}

.language-panel__select:not(:hover) {
  transition: color 0.2s;
}

.language-panel__button {
  background: transparent;
  border: none;
  display: -webkit-box;
  display: flex;
}
.language-panel__button p {
  color: #fff;
}
.language-panel__button span {
  margin-right: 10px;
  display: block;
  width: 17px;
  height: 17px;
}
.language-panel__button span svg {
  fill: transparent;
  stroke: #fff;
}

.bg {
  position: absolute;
  background-image: url("/assets/images/bg2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .bg {
    top: 44px;
  }
}

.title {
  margin: 40px auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  max-width: 1056px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.3em;
}
@media (max-width: 1024px) {
  .title {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .title {
    margin: 30px auto;
  }
}

.form-container {
  background: #fff;
  position: relative;
  min-width: 300px;
  margin: 0 0 55px;
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
@media (max-width: 920px) {
  .form-container {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .form-container {
    margin: auto 0 55px;
  }
}
@media (max-width: 600px) {
  .form-container {
    margin: auto 0 30px;
    border-radius: 0;
  }
}
.form-container input:disabled {
  background-color: transparent;
}

.step.painted {
  color: #232C77;
  transition: color 0.3s 0.2s, border-color 0.3s 0.2s;
  -webkit-transition: color 0.3s 0.2s, border-color 0.3s 0.2s;
  border-color: #232C77;
}

.step {
  font-size: 18px;
  font-weight: 800;
  color: #D4D4D4;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border: 3px solid #D4D4D4;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  z-index: 30;
  margin-left: 5px;
  margin-right: 5px;
}
@media (max-width: 600px) {
  .step {
    font-size: 16px;
    width: 28px;
    height: 28px;
    border-width: 3px;
    font-weight: 800;
  }
}

.step--1 {
  margin-left: 0;
  color: #232C77;
  border-color: #232C77;
}

.step--4 {
  margin-right: 0;
}

.progress-bar {
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  padding: 34px 52px 0;
  opacity: 0;
  transition: opacity 0.3s;
  box-sizing: border-box;
}

.progress-bar.show {
  opacity: 1;
  transition: opacity 0.3s;
}

.segment {
  height: 10px;
  flex: 1;
  position: relative;
}
@media (max-width: 600px) {
  .segment {
    height: 8px;
  }
}

.segment__layer {
  display: block;
  height: 100%;
  width: 100%;
  background: #D4D4D4;
  position: relative;
  z-index: 4;
}

.segment:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 0;
  background: #232C77;
  top: 0;
  bottom: 0;
  z-index: 5;
  margin: auto;
  transition: width 0.3s;
  -webkit-transition: width 0.3s;
}

.segment.painted:after {
  width: 100%;
  transition: width 0.3s;
  -webkit-transition: width 0.3s;
}

.segment:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("/assets/images/hole-2.png");
  background-size: contain;
  background-repeat: repeat-x;
  height: 10px;
  width: 100%;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 600px) {
  .segment:before {
    height: 8px;
  }
}

.footer {
  position: relative;
  z-index: 50;
  background-color: #232C77;
  margin: auto auto 0;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding: 21px 20px;
  box-sizing: border-box;
}

.footer__text {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1.3em;
}
@media (max-width: 600px) {
  .footer__text {
    font-size: 12px;
  }
}

.footer__links {
  margin-top: 10px;
  display: -webkit-box;
  display: flex;
  gap: 20px;
}

.footer__link {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 600px) {
  .footer__link {
    font-size: 12px;
  }
}

.stage {
  background: #fff;
  width: 865px;
  padding: 34px 53px 53px;
  position: absolute;
  border-radius: 5px;
  display: none;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .stage {
    padding: 25px 20px 40px;
  }
}
.stage .stage__text {
  color: #EB5E50;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.61em;
  margin-bottom: 10px;
}
.stage .form__field-set {
  flex-basis: calc(50% - 5px);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.stage .form__field-set p {
  margin-top: 8px;
  font-size: 12px;
  padding: 8px 15px;
  box-sizing: border-box;
  border: 1px dashed #D4D4D4;
  border-radius: 4px;
  flex-basis: 100%;
  line-height: 1.61em;
}
@media (max-width: 680px) {
  .stage .form__field-set p {
    margin-top: 4px;
  }
}
@media (max-width: 680px) {
  .stage .form__field-set {
    flex-basis: 100%;
  }
}
.stage label {
  flex-basis: calc(50% - 5px);
  border: 1px solid #D4D4D4;
  box-sizing: border-box;
  border-radius: 4px;
  display: block;
  padding: 9px 14px;
  position: relative;
}
.stage label span, .stage label input {
  display: block;
}
.stage label input {
  border: none;
  min-height: 23px;
  width: 100%;
}
@media (max-width: 680px) {
  .stage label {
    flex-basis: 100%;
    padding: 5px 10px;
  }
}
.stage .form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 680px) {
  .stage label[for=end_utc--from] {
    margin-right: 10px;
  }
}

.form--3 .error-message {
  right: auto;
  bottom: -23px;
}

.stage.stage--2 .checkbox-container {
  padding: 10px 0 30px;
}
.stage.stage--2 .checkbox-container input {
  display: none;
}
.stage.stage--2 .checkbox-container input:checked + label[for=luggage-confirm]:before {
  background-image: url("/assets/images/checked.svg");
  background-repeat: no-repeat;
  background-size: 11px 9px;
  background-position: center;
}
.stage.stage--2 label[for=luggage-confirm] {
  cursor: pointer;
  padding: 0;
  border: none;
  flex-basis: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.stage.stage--2 label[for=luggage-confirm] .stage__text {
  margin-bottom: 0;
}
.stage.stage--2 label[for=luggage-confirm]:before {
  content: "";
  display: block;
  border: 1px solid #D4D4D4;
  border-radius: 5px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 15px;
}
.stage.stage--2 .stage__text {
  color: #232C77;
  flex-basis: 100%;
  margin-bottom: 5px;
}
.stage.stage--2 label {
  flex-basis: calc(32.8% - 5px);
  padding-right: 10px;
}
@media (max-width: 680px) {
  .stage.stage--2 label {
    flex-basis: calc(50% - 5px);
  }
}
.stage.stage--2 label span {
  width: 100%;
}
.stage.stage--2 label input {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  color: #232C77;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}
.stage.stage--2 .stage__text--second {
  padding-top: 5px;
}

.stage--3 .stage__text {
  color: #232C77;
}
.stage--3 .stage__text.stage__text--red {
  color: #EB5E50;
}
.stage--3 .client-message__container {
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  padding: 8px 15px;
  flex-basis: 100%;
}
.stage--3 .client-message__container textarea {
  border: none;
  width: 100%;
}
.stage--3 .client-message__container .client-message__title {
  color: #232C77;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 14px;
}
.stage--3 .stage__text--message {
  margin-bottom: 0;
}

.input__title {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: bold;
  color: #232C77;
  text-transform: uppercase;
}
.input__title i {
  font-style: normal;
  color: #EB5E50;
}
@media (max-width: 780px) {
  .input__title {
    font-size: 12px;
  }
}

.tabs__navigation {
  display: -webkit-box;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.tabs__tab {
  flex: 1;
  height: 83px;
  box-sizing: border-box;
  border: 1px solid #232C77;
  background: #fff;
  border-radius: 4px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #232C77;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}
.tabs__tab .icon {
  height: 22px;
  width: 97px;
  margin-bottom: 12px;
}
.tabs__tab .icon .sprite-icon {
  fill: #232C77;
}

.tabs__tab.tabs__tab--active {
  background: #232C77;
  cursor: default;
  color: #fff;
}
.tabs__tab.tabs__tab--active .sprite-icon {
  fill: #fff;
}

.tabs__pane {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.tabs__pane_show {
  opacity: 1;
  height: auto;
  transition: all 0.3s;
}

.sprite-icon {
  height: 100%;
  width: 100%;
}

.form__button {
  width: 100%;
  height: 54px;
  border: none;
  background: #D4D4D4;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  cursor: default;
}

.form__button.active {
  background: #232C77;
  cursor: pointer;
}

.form__button.active#step_zero_btn {
  background: #EB5E50;
}

.form__field-set--rec p {
  color: #232C77;
}

.form__field-set--chosen p {
  color: #EB5E50;
}

.resume-container {
  opacity: 0;
  -webkit-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.05);
  max-width: 470px;
  background: #fff;
  border-radius: 5px;
  margin-left: 0;
  width: 0;
  box-sizing: border-box;
  transition: margin-left 0.3s, opacity 0.3s, width 0.3s, padding 0.3s;
  -webkit-transition: margin-left 0.3s, opacity 0.3s, width 0.3s, padding 0.3s;
}
.resume-container h3 {
  color: #232C77;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
}

.resume-container.show {
  margin-left: 30px;
  width: 470px;
  padding: 34px 53px 53px;
  opacity: 1;
  transition: margin-left 0.3s, opacity 0.3s, width 0.3s, padding 0.3s;
  -webkit-transition: margin-left 0.3s, opacity 0.3s, width 0.3s, padding 0.3s;
}

.modify__button {
  width: 100%;
  border: 1px solid #232C77;
  color: #232C77;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  background: #fff;
  height: 54px;
  box-sizing: border-box;
  margin-bottom: 10px;
  margin-top: 15px;
}

.book__button {
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  background: #232C77;
  height: 54px;
  box-sizing: border-box;
  border: none;
}

.section__content {
  padding: 0px 30px;
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  z-index: 20;
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
}
@media (max-width: 580px) {
  .section__content {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  .section__content.it-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .section__content.it-column .form-container {
    margin-bottom: 30px;
    width: 100%;
  }
  .section__content.it-column .resume-container.show {
    margin-left: 0;
    width: 660px;
    max-width: none;
    margin-bottom: 55px;
  }
}
@media (max-width: 760px) {
  .section__content.it-column .resume-container.show {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .section__content.it-column .resume-container.show {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  .error-message--tariff {
    bottom: -72vh !important;
  }
}

.authentication-container {
  width: 520px;
  box-sizing: border-box;
  display: none;
  background: #fff;
  border-radius: 5px;
  padding: 30px 50px 60px;
  margin-left: 20px;
}
@media (max-width: 1200px) {
  .authentication-container {
    width: 700px;
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  .authentication-container {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .authentication-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 580px) {
  .authentication-container {
    margin-top: 0;
  }
}
.authentication-container h3 {
  color: #232C77;
  text-align: left;
  font-size: 12px;
  line-height: 1.2em;
  text-transform: uppercase;
}
.authentication-container p {
  font-size: 12px;
  line-height: 1.61em;
}
.authentication-container .form__button {
  margin-top: 30px;
}

.stage--4 {
  padding: 40px 50px 60px;
  min-width: 560px;
  width: 700px;
}
@media (max-width: 760px) {
  .stage--4 {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .stage--4 {
    min-width: 0;
    padding: 30px 0 50px;
  }
}
.stage--4 h3 {
  color: #232C77;
  font-size: 34px;
  text-align: center;
}
@media (max-width: 680px) {
  .stage--4 h3 {
    font-size: 24px;
  }
}
.stage--4 p {
  color: #232C77;
  text-align: center;
  line-height: 1.61em;
  max-width: 454px;
  margin: 15px auto 35px;
  font-size: 18px;
}
@media (max-width: 680px) {
  .stage--4 p {
    font-size: 14px;
  }
}
.stage--4 a {
  text-decoration: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  background: #232C77;
  color: #fff;
  max-width: 372px;
  margin: auto;
  height: 54px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.reactive-container {
  transition: height 0.1s;
  position: relative;
}

.stage.stage--active {
  z-index: 100;
  opacity: 1;
  -webkit-transition: opacity 0.3s, transform 0.2s;
  transition: opacity 0.3s, transform 0.2s;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.stage--2 .label__qnt {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.stage--2 .input__title {
  flex-basis: 100%;
}
.stage--2 .button__qnt {
  flex-basis: 40%;
  background: #fff;
  border: none;
  color: #232C77;
  font-size: 32px;
}
.stage--2 input {
  flex-basis: 20%;
  cursor: default;
}
.stage--2 .button__minus {
  opacity: 1;
  transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
  cursor: pointer;
  padding-left: 30px;
}
.stage--2 .button__plus {
  padding-right: 30px;
}
@media (max-width: 600px) {
  .stage--2 .button__plus {
    padding-right: 0;
  }
}
.stage--2 .button__minus.invisible {
  opacity: 0;
  transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
  cursor: default;
}

label.auto-disabled {
  background-color: #F5F5F5;
}

.ui-widget.ui-widget-content {
  border-radius: 4px;
  padding: 15px;
}
.ui-widget.ui-widget-content .ui-menu-item {
  padding-bottom: 5px;
}
.ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper {
  font-family: "Gilroy", serif;
  font-size: 14px;
}

.form__field-set--chosen label {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.form__field-set--chosen label .input__title {
  flex-basis: 100%;
}
.form__field-set--chosen label input {
  flex-basis: auto;
  width: 50px;
  text-align: center;
}
.form__field-set--chosen label button {
  opacity: 0;
  flex-basis: 35px;
  border: none;
  background: rgba(255, 255, 255, 0);
  font-size: 20px;
  color: #232C77;
}
.form__field-set--chosen label button.visible {
  opacity: 1;
}
.form__field-set--chosen label button.visible.hidden {
  cursor: default;
  opacity: 0;
}

.error-message, .quantity-error-message, .error-message--address, .error-message--tariff, .error-verify, .error-message--attempts {
  position: absolute;
  bottom: -4px;
  right: 0;
  font-size: 12px;
  background: #EB5E50;
  color: #fff;
  padding: 3px 5px;
  border-radius: 4px;
  display: none;
}

.error-message--tariff {
  z-index: 100;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  max-width: 270px;
}

.quantity-error {
  height: 0;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.quantity-error-message {
  right: auto;
  left: auto;
  top: -5px;
  height: 15px;
}

.form__label {
  position: relative;
}

.error-message.show, .quantity-error-message.show, .error-message--address.show, .error-message--tariff.show, .error-message--attempts.show {
  display: block;
}

.form--1 button, .form--2 button {
  cursor: default;
}

.form--1.filled button, .form--2.filled button {
  cursor: pointer;
}

.tariffs__tariff {
  height: 70px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #232C77;
  border-radius: 4px;
  background-color: #fff;
}

.tariff__name p {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #232C77;
  text-align: center;
  margin-top: 3px;
}

.tariff__name {
  flex-basis: 53%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
}
@media (max-width: 480px) {
  .tariff__name {
    flex-basis: 65%;
  }
}

@media (max-width: 480px) {
  .tariff-shared__container {
    width: 100%;
  }
}

.tariff__cost {
  flex-basis: 47%;
  width: 75px;
  border-left: 1px dashed #232C77;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.tariff__cost p {
  margin-right: 3px;
}
@media (max-width: 480px) {
  .tariff__cost {
    flex-basis: 35%;
  }
}

.tariff__cost * {
  font-weight: bold;
  font-size: 18px;
  color: #232C77;
}

.tariffs__tariff .icon {
  width: 45px;
  max-height: 17px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.tariffs__container--no-shared {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}

.tariffs__container--no-shared .stage__text {
  flex-basis: 100%;
}

.tariffs__tariff .sprite-icon {
  fill: #232C77;
  max-height: 17px;
}

.tariffs__tariff.selected .sprite-icon {
  fill: #fff;
}

.tariffs__tariff.selected {
  background-color: #232C77;
}

.tariffs__tariff.selected .tariff__name p {
  color: #fff;
}

.selected .tariff__cost * {
  color: #fff;
}

.selected .tariff__cost {
  border-left-color: #fff;
}

.tariffs__tariff--no-shared {
  flex-basis: 32%;
}

.tariffs__tariff--green {
  order: 1;
}

.tariffs__tariff--business {
  order: 2;
}

.tariffs__tariff--van {
  order: 3;
}

@media (max-width: 600px) {
  .shared__content {
    margin-bottom: 10px;
  }
}
.shared__content .icon {
  height: 35px;
  width: 23px;
  min-width: 23px;
}

.shared__content {
  display: -webkit-box;
  display: flex;
  gap: 15px;
}

.tariffs__container--no-shared {
  display: none;
}
.tariffs__container--no-shared .stage__text {
  margin-bottom: 0;
}

.tariffs__container--shared {
  display: none;
  padding: 9px 9px 6px 20px;
  border: 1px dashed #5ACB7A;
  box-sizing: border-box;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .tariffs__container--shared {
    flex-wrap: wrap;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-pack: center;
    justify-content: center;
    padding-right: 20px;
  }
}
.tariffs__container--shared .stage__text {
  margin-bottom: 0;
}

.tariffs__tariff {
  cursor: pointer;
}
@media (max-width: 600px) {
  .tariffs__tariff {
    flex-basis: 48%;
  }
}
@media (max-width: 480px) {
  .tariffs__tariff {
    flex-basis: 100%;
  }
}

.tariffs__tariff--shared {
  flex-basis: 235px;
  min-width: 235px;
  margin-left: 13px;
}
@media (max-width: 480px) {
  .tariffs__tariff--shared {
    margin-left: 0;
  }
}
.tariffs__tariff--shared .tariff__name {
  flex-basis: 60%;
}
.tariffs__tariff--shared .tariff__cost {
  flex-basis: 40%;
}
.tariffs__tariff--shared .icon {
  max-height: none;
}

.tariffs__tariff.tariffs__tariff--shared .sprite-icon {
  max-height: 25px;
}

.tariff-shared__notice {
  margin-left: 13px;
  padding: 4px 5px;
  background-color: #5ACB7A;
  margin-top: 3px;
  border-radius: 4px;
  line-height: 1em;
  font-size: 14px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .tariff-shared__notice {
    margin-left: 0;
  }
}

.resume__field {
  display: -webkit-box;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: end;
  align-items: end;
}

.resume__field-value {
  border-bottom: 1px solid #D4D4D4;
  flex: 1;
  margin-left: 10px;
  height: 30px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: end;
  -webkit-box-pack: end;
  justify-content: end;
  font-size: 14px;
  color: #232C77;
  text-align: right;
}

.resume__field-value.overriden {
  color: #EB5E50;
}

.field-value--symbol {
  margin-left: 3px;
}

.resume__field-name {
  font-size: 14px;
  color: #232C77;
  font-weight: bold;
}

.resume__field--category .resume__field-value {
  text-transform: capitalize;
}

.ajax__waiting {
  top: 0;
  left: 0;
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 5px;
}

.start__waiting {
  top: 0;
  left: 0;
  z-index: 100;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 5px;
}

.tariffs__alert-container {
  padding-right: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.tariffs__alert-container .stage__text {
  margin: 0;
  display: inline;
  line-height: 1.3em !important;
}

.error-message__empty-orders {
  display: none;
}

.error-message__empty-orders.show {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 200px;
  gap: 20px;
}
.error-message__empty-orders.show p {
  text-align: center;
  line-height: 1.61em;
  color: #EB5E50;
}

.address-result {
  border-radius: 4px;
  border: 1px solid #D4D4D4;
  position: absolute;
  z-index: 100;
  background: #fff;
  top: 100%;
  right: -1px;
  left: -1px;
  padding: 10px 0;
}
.address-result .result-item {
  font-size: 14px;
  padding: 5px 10px;
  color: #232C77;
}
.address-result .result-item:hover {
  color: #fff;
  background: #232C77;
}

.address-result#result--from {
  top: auto;
  right: auto;
  left: 90%;
  width: 100%;
  bottom: -80%;
}
@media (max-width: 680px) {
  .address-result#result--from {
    top: auto;
    left: -1px;
    bottom: 54px;
  }
}

.global-error.fancybox__content, .warning.fancybox__content {
  border-radius: 5px;
  text-align: center;
  align-items: center;
  padding: 50px 50px 60px;
}
.global-error.fancybox__content .f-button.is-close-btn, .warning.fancybox__content .f-button.is-close-btn {
  position: relative;
  display: none !important;
}
.global-error.fancybox__content .f-button.is-close-btn svg, .warning.fancybox__content .f-button.is-close-btn svg {
  display: none;
}
.global-error.fancybox__content p, .warning.fancybox__content p {
  font-size: 18px;
  color: #232C77;
}

.fancybox__container {
  --fancybox-bg: rgba(0,0,0,0.5)!important;
}

.fancy-close-button {
  height: 60px;
  background: #232C77;
  color: #fff;
  text-transform: uppercase;
  width: 200px;
  border: none;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
  margin-top: 30px;
  font-size: 14px;
}

.global-error, .warning-window {
  display: none;
}

.tabs__tab .icon {
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.tabs__tab--to .icon {
  background-image: url("/assets/images/to-tab.svg");
  width: 115px;
  background-position: 0;
}

.tabs__tab--to.tabs__tab--active .icon {
  background-position: -115px;
}

.tabs__tab--from .icon {
  background-image: url("/assets/images/from-tab.svg");
  width: 115px;
  background-position: 3px;
}

.tabs__tab--from.tabs__tab--active .icon {
  background-position: -106px;
}

.tariff-shared__wrapper {
  position: relative;
  flex-basis: 275px;
  min-width: 275px;
  max-width: 275px;
  margin-left: 13px;
  height: 70px;
}
@media (max-width: 600px) {
  .tariff-shared__wrapper {
    margin-left: 0;
  }
}
.tariff-shared__wrapper .tariffs__tariff--shared {
  flex-basis: 275px;
  min-width: 275px;
}
.tariff-shared__wrapper .tariff-shared__container {
  position: absolute;
  left: 0;
  top: 0;
}
.tariff-shared__wrapper .tariffs__tariff {
  margin: 0;
}
.tariff-shared__wrapper .tariff__name {
  position: relative;
}
.tariff-shared__wrapper .tariff__name button {
  position: absolute;
  width: 35px;
  border: none;
  height: 35px;
  color: #232C77;
  background-color: transparent;
  font-size: 32px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.tariff-shared__wrapper .selected .tariff__name button {
  color: #fff;
}
.tariff-shared__wrapper .shared-change--plus {
  right: 5px;
  top: 5px;
}
.tariff-shared__wrapper .shared-change--minus {
  left: 5px;
  top: 5px;
}

.tariffs__tariff--one_seat .shared-change--minus {
  display: none;
}

.tariffs__tariff--two_seats .shared-change--plus {
  display: none;
}

.tariff-shared__wrapper .tariff-shared__notice {
  width: 100%;
  margin-left: 0;
}

.tariffs__alert-container {
  color: #EB5E50;
  font-size: 14px;
  line-height: 1.3em;
}

.alert--chose-time {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 20px;
  font-size: 12px;
  padding: 40px 14px 30px;
  cursor: pointer;
  box-sizing: border-box;
}
.alert--chose-time span {
  padding: 3px 5px;
  display: inline !important;
  text-decoration: underline;
  border-radius: 4px;
  color: #333;
}
.alert--chose-time .warning {
  background-color: #EB5E50;
  color: #fff;
  text-decoration: none;
}

.emerging-container {
  position: relative;
}

.preview-container {
  width: 100%;
  position: relative;
}

.section {
  position: relative;
  background-image: url(/assets/images/bg2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 60px;
  box-sizing: border-box;
}
@media (max-width: 500px) {
  .section {
    padding-bottom: 40px;
  }
}

.stage__description {
  color: #232C77;
  line-height: 1.61em;
}
@media (max-width: 920px) {
  .stage__description {
    text-align: center;
    padding-bottom: 25px;
  }
}

.stage__title-title {
  font-size: 32px;
  line-height: 1.3em;
  color: #232C77;
  padding-bottom: 23px;
}
@media (max-width: 920px) {
  .stage__title-title {
    text-align: center;
    padding-bottom: 15px;
  }
}
.stage__title-title span {
  color: #EB5E50;
  display: block;
}

.stage__title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 865px;
  padding-top: 120px;
  padding-bottom: 120px;
  box-sizing: border-box;
}
@media (max-width: 920px) {
  .stage__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 60px;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .stage__title .stage__title-title {
    font-size: 24px;
  }
  .stage__title .stage__description {
    font-size: 14px;
  }
}

.title-stage__text, .form--title {
  flex-basis: 50%;
}

.form--title {
  padding-left: 55px;
  box-sizing: border-box;
}
@media (max-width: 920px) {
  .form--title {
    padding: 0;
  }
}
.form--title label {
  flex-basis: 100%;
}

.stage--1, .stage--2, .stage--3 {
  width: 660px;
}

.header__back {
  display: none;
  height: 54px;
  border: 1px solid #232C77;
  box-sizing: border-box;
  width: 206px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: #fff;
  text-transform: uppercase;
  font-weight: bold;
  color: #232C77;
}
.header__back span {
  display: block;
  width: 13px;
  height: 13px;
  margin-right: 15px;
}

.buttons {
  padding-top: 25px;
  border-top: 1px dashed #D4D4D4;
  margin-top: 5px;
}

#step_three_add_btn {
  margin-bottom: 10px;
  border: 1px solid #232C77;
  box-sizing: border-box;
  background: #fff;
  color: #232C77;
  font-size: 14px;
}

.trips__trip {
  border-radius: 0px 4px 4px 4px;
  padding: 15px 18px;
  border: 1px dashed #232C77;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media (max-width: 760px) {
  .trips__trip {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 500px) {
  .trips__trip {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 6px;
  }
}

.trip__label {
  position: absolute;
  padding: 6px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  background: #232C77;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  top: -27px;
  left: -1px;
}

.warning__buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 10px;
}
.warning__buttons .fancy-close-button {
  border: 1px solid #232C77;
  box-sizing: border-box;
  background: #fff;
  color: #232C77;
}
.warning__buttons .fancy-close-button.fancy-accept-button {
  background: #EB5E50;
  border: none;
  color: #fff;
}

#step_three_add_btn {
  cursor: pointer;
}

.trip__fields--left, .trip__fields--middle {
  flex-basis: 49%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 6px;
}

.trip__comment {
  display: -webkit-box;
  display: flex;
  margin-top: 8px;
  flex-basis: 100%;
  border-top: 1px dashed #D4D4D4;
  padding-top: 8px;
}
.trip__comment .trip__field-value {
  -webkit-box-align: center;
  align-items: center;
}

.trip__fields--buttons {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 185px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.trip__button {
  width: 90px;
  height: 30px;
  border-radius: 0 0 4px 4px;
  background: #fff;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  border-style: solid;
  border-width: 1px;
}

.trip__button--remove {
  border-color: #EB5E50;
  color: #EB5E50;
}

.trip__button--modify {
  border-color: #232C77;
  color: #232C77;
}

.trip__field {
  display: -webkit-box;
  display: flex;
}
.trip__field > div {
  -webkit-box-align: center;
  align-items: center;
}

.trip__field-name {
  color: #232C77;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
  box-sizing: border-box;
  display: inline-flex;
  display: -webkit-inline-box;
  white-space: nowrap;
}

.trip__field-value {
  font-size: 12px;
  color: #232C77;
  display: -webkit-box;
  display: flex;
}

.trips__trip:nth-child(2) {
  margin-top: 40px;
}

.default-radio-button {
  position: absolute;
  opacity: 0;
}

.custom-radio-button {
  height: 18px;
  width: 18px;
  min-width: 18px;
  box-sizing: border-box;
  border: 1px solid #232C77;
  border-radius: 50%;
  background: #fff;
  display: block;
  position: relative;
  margin-top: 3px;
}

.label--radio {
  cursor: pointer;
}

.label--radio input:checked + .custom-radio-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: #EB5E50;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.authentication__label {
  display: -webkit-box;
  display: flex;
  gap: 10px;
}

.authentication__label:last-child {
  margin-top: 10px;
}

.authentication__radio-content > * {
  color: #232C77;
}

.authentication__radio-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
}

.authentication__fieldset {
  margin-top: 30px;
}

.authentication__forms {
  display: -webkit-box;
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
}
.authentication__forms label {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
.authentication__forms label p {
  font-size: 14px;
  color: #232C77;
  font-weight: 500;
}
.authentication__forms .authentication__checkbox {
  align-items: flex-start;
  gap: 15px;
}
.authentication__forms .authentication__checkbox p {
  font-size: 12px !important;
}
.authentication__forms .authentication__checkbox p a {
  color: #232C77;
}
.authentication__forms label.label--code p {
  margin-right: 30px;
}
.authentication__forms .input__name {
  text-transform: capitalize;
}
.authentication__forms .input__lastname {
  text-transform: capitalize;
}

.authentication__form.move {
  transform: translateX(-100%);
  transition: all 0.3s;
}

.authentication__input {
  height: 40px;
  width: 80%;
  border-radius: 4px;
  border: 1px solid #D4D4D4;
  box-sizing: border-box;
  max-width: 344px;
  padding: 0px 10px;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .authentication__input {
    max-width: none;
  }
}

.authentication__form.invisible {
  opacity: 0;
  transition: all 0.2s;
}

.authentication__form {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s;
  min-width: 100%;
  margin-top: 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 10px;
}

.label--phone > div {
  width: 80%;
}
.label--phone > div .iti {
  width: 100%;
}

.label--phone > div.error-message {
  width: auto;
}

.label--phone .input__phone {
  width: 100%;
}

.payment-container {
  border-radius: 4px;
  border: 1px dashed #232C77;
  padding: 0 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 65px;
  -webkit-box-pack: start;
  justify-content: flex-start;
  display: none;
}
.payment-container p {
  line-height: 1em;
  font-size: 12px;
  color: #232C77;
  font-weight: bold;
  text-transform: uppercase;
}
.payment-container p span {
  font-size: 10px;
  text-transform: none;
  line-height: 1em;
}

.payment__radio-fake {
  width: 18px;
  height: 18px;
  min-height: 18px;
  min-width: 18px;
  border: 1px solid #232C77;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}

.payment__method--card .payment__method-name > div {
  width: 18px;
  height: 16px;
}
.payment__method--card .payment__radio-fake:before {
  content: "";
  display: block;
  border-radius: 50%;
  background: #EB5E50;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.payment__method--paypal .payment__method-name > div {
  width: 16px;
  height: 18px;
}
.payment__method--paypal p {
  color: #D4D4D4 !important;
}
.payment__method--paypal p span {
  color: #D4D4D4 !important;
  display: block;
  font-weight: normal;
}
.payment__method--paypal .payment__radio-fake {
  border-color: #D4D4D4 !important;
}

.payment__methods, .payment__method, .payment__method-name {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.payment__method-name > div {
  height: 100%;
}

.payment__method-name {
  gap: 8px;
}

.payment__method {
  flex-basis: 142px;
  gap: 8px;
  max-width: 131px;
}

.payment__method.payment__method--paypal {
  max-width: 120px;
  flex-basis: 125px;
}

.payment__title {
  margin-right: 30px;
  line-height: 1em !important;
}

.payment__radio-fake {
  gap: 9px;
}

.payment__methods {
  gap: 20px;
  flex: 1;
}

.authentication__form--reg .label--phone {
  flex: 1;
}

.verification-button {
  display: -webkit-inline-box;
  display: inline-flex;
  border: 1px solid #232C77;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  padding: 0px 10px;
  -webkit-box-align: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  background: #fff;
  color: #232C77;
  width: 106px;
  min-width: 106px;
  -webkit-box-pack: center;
  justify-content: center;
}

.register__input, .authentication__input--code {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right: 0;
}

.authentication__element {
  display: -webkit-box;
  display: flex;
}

.verification-text--resend {
  display: none;
  color: #D4D4D4 !important;
  line-height: 1em !important;
}
.verification-text--resend span {
  display: block;
}

.verification-button--code {
  padding: 0px 30px !important;
  height: 40px;
}

.authentication__element--code {
  display: none;
  -webkit-box-align: center;
  align-items: center;
}

.authentication__forms label.register__label--hidden, .verification-text--reg {
  display: none;
}

.verification-button.no-border {
  border-left: 0;
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding: 5px;
  box-sizing: border-box;
}

.verification-text--reg {
  padding: 0px 9px;
  box-sizing: border-box;
  color: #5ACB7A !important;
  line-height: 1em !important;
  border: 1px dashed #5ACB7A;
  height: 100%;
  border-radius: 4px;
  -webkit-box-align: center;
  align-items: center;
}

.register__label--hidden .register__input {
  border-radius: 4px;
  border: 1px solid #D4D4D4;
}

.reg-phone__text {
  margin-right: 37px;
  white-space: nowrap;
}

.authentication__checkbox-input {
  display: none;
}

.authentication__checkbox-container span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: 1px solid #D4D4D4;
  box-sizing: border-box;
}
.authentication__checkbox-container span .sprite-icon {
  width: 50%;
  height: 50%;
  display: none;
}

#c_checkbox:checked + span .sprite-icon {
  display: block;
}

#r_checkbox:checked + span .sprite-icon {
  display: block;
}

#r_checkbox:not(:checked) + span .sprite-icon {
  display: none;
}

.authentication__checkbox-container {
  margin-top: 5px;
}

.authentication__checkbox {
  cursor: pointer;
}

.form__button--single-page, .form__button--success {
  margin-top: 30px;
}

.empty-chosen {
  background-color: #F5F5F5;
}
.empty-chosen .button__qnt {
  display: none;
}

.finish_date_time--to {
  opacity: 0;
}

.authentication__forms .authentication__checkbox--register {
  display: none;
}

#reg_btn.form__button {
  display: none;
  background-color: #fff;
  border: 1px solid #232C77;
  color: #232C77;
  margin-top: 15px;
}

#reg_btn {
  cursor: pointer;
}

.authentication__checkbox--customer .error-message {
  bottom: 1px;
}

.train_container {
  flex-basis: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.train_container label {
  flex-basis: calc(50% - 5px);
}

.train_container.train_container--from {
  flex-basis: calc(50% - 5px);
}
.train_container.train_container--from label {
  flex-basis: 100%;
}

.error-error .error__title {
  color: #EB5E50;
}

.warning-error .error__title {
  color: #232C77;
}

.original__message-label {
  color: #B5B5B5;
  position: absolute;
  left: 16px;
  top: -15px;
  background: #fff;
  padding: 7px;
  font-size: 12px;
  display: -webkit-box;
  display: flex;
}

.original__message {
  font-size: 12px !important;
  color: #EB5E50 !important;
  text-align: center !important;
  line-height: 1.3em !important;
  display: -webkit-box !important;
  display: flex !important;
  height: 1.3em;
  overflow: hidden;
  transition: height 0.2s;
}

.original__message.open {
  height: auto;
}

.original__message-container {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.global-error.fancybox__content.error__template {
  width: 100%;
  max-width: 670px;
}

.error__img {
  display: block;
  height: 35px;
  width: 35px;
}
.error__img svg {
  height: 100%;
  width: 100%;
}

.error__title-container {
  display: -webkit-box;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 35px;
}
.error__title-container h3 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 36px;
}

.message__template {
  font-size: 14px !important;
  margin-bottom: 20px;
}

.error-error .message__template {
  color: #EB5E50 !important;
}

.warning-error .message__template {
  color: #232C77 !important;
}

.description__message {
  font-size: 14px !important;
}

.error-error .sprite-icon {
  fill: #EB5E50;
}

.warning-error .sprite-icon {
  fill: #232C77;
}

.error-arrow {
  display: block;
  height: 10px;
  width: 13px;
  min-width: 13px;
}
.error-arrow .sprite-icon {
  fill: #D4D4D4;
  height: 100%;
  width: 100%;
  display: block;
}

.language-overflow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
}

.stage__tabs {
  position: relative;
}

.stage.stage--1 .stage__text {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
}

.t-val {
  margin-right: 3px;
}

.resume__field--luggage .resume__field-value {
  flex-wrap: wrap;
}
.resume__field--luggage .resume__field-value > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.trip__field--luggage .trip__field-value {
  flex-wrap: wrap;
}

.verification-text--send {
  line-height: 1.1em !important;
}

@media (max-width: 760px) {
  .stage--1, .stage--2 {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .stage--3 {
    width: 100% !important;
  }
}

@media (max-width: 680px) {
  .stage__tabs {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .stage.stage--1 .stage__text {
    top: -70px;
  }
}
@media (max-width: 680px) {
  .stage.stage--1 .stage__text {
    top: -80px;
  }
}
@media (max-width: 580px) {
  .stage.stage--1 .stage__text {
    top: -75px;
  }
}
@media (max-width: 370px) {
  .stage.stage--1 .stage__text {
    top: -102px;
  }
}

@media (max-width: 580px) {
  .progress-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 680px) {
  .header img {
    height: 15px;
  }
}

@media (max-width: 500px) {
  .header__back {
    width: 56px;
  }
  .header__back p {
    display: none;
  }
  .header__back span {
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .resume-container.show {
    width: 100%;
  }
}
.stage.stage--5 {
  display: block;
  max-width: 660px;
  width: 100%;
  padding: 130px 100px;
  position: relative;
}
@media (max-width: 600px) {
  .stage.stage--5 {
    padding: 50px;
  }
}
.stage.stage--5 .stage__text {
  color: #232C77;
  text-align: center;
}

.static-page .section__content {
  padding: 0 20px;
}
.static-page h3 {
  font-size: 34px;
  text-align: center;
  color: #232C77;
  margin-bottom: 15px;
}
.static-page h3 span {
  color: #EB5E50;
}
@media (max-width: 600px) {
  .static-page h3 {
    font-size: 24px;
  }
}
.static-page .stage__text {
  font-size: 18px;
}
@media (max-width: 600px) {
  .static-page .stage__text {
    font-size: 14px;
  }
}

.trip__field-value.overriden {
  color: #EB5E50;
}

.bonus-price {
  color: #5ACB7A;
  margin-left: 5px;
}

#trip_remove_warning .f-button.is-close-btn {
  display: none !important;
}

.hide {
  display: none;
}

#с-error-msg, #r-error-msg {
  position: absolute;
  right: 10px;
  font-size: 12px;
  background: #EB5E50;
  color: #fff;
  padding: 3px 5px;
  border-radius: 4px;
}

#с-valid-msg, #r-valid-msg {
  display: none;
}

#r-error-msg {
  right: 1px;
  bottom: -14px;
}
@media (max-width: 460px) {
  #r-error-msg {
    right: 10px;
    bottom: 10px;
  }
}

.trips__total__price {
  display: -webkit-box;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: end;
  justify-content: flex-end;
  color: #232C77;
  font-weight: bold;
}

@media (max-width: 760px) {
  .trips__total__price {
    margin-right: 20px;
  }
}
.total-price__price {
  margin-left: 5px;
}

.total-price__symbol {
  margin-left: 3px;
}

@media (max-width: 600px) {
  .it-column .form-container {
    margin-bottom: 5px !important;
  }
}
@media (max-width: 460px) {
  .authentication__element--phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .authentication__element--phone label {
    width: 100%;
  }
  .authentication__element--phone label input {
    border-right: 1px solid #B5B5B5;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  #send_code_btn {
    border: none;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    min-width: 0;
    margin-top: 0px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    height: 40px;
    z-index: 10;
  }
}
@media (min-width: 1200px) {
  .resume-container.show, .authentication-container {
    margin-top: 50px;
  }
}
.section.static-page {
  padding-top: 50px;
  height: 100%;
}

.stage--3__promocode {
  padding-bottom: 30px;
}

.promocode {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.promocode__state--inactive {
  flex-basis: 270px;
  height: 40px;
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.promocode__state--active {
  display: none;
}

.promocode__apply {
  display: none;
  border: 1px solid #232C77;
  background-color: #fff;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  font-size: 14px;
  color: #232C77;
  padding: 0px 30px;
  box-sizing: content-box;
  height: 100%;
  font-weight: 600;
}

#promocode_active {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 18px;
  box-sizing: border-box;
  height: 100%;
  border: none;
  width: 100%;
}

#promocode_active::placeholder {
  text-transform: none;
  color: #D4D4D4;
  font-weight: 500;
}

.promocode__title {
  font-weight: 500;
  color: #232C77;
}

.promocode__state--active {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  position: relative;
}
.promocode__state--active .promocode__value {
  text-transform: uppercase;
  font-weight: 500;
  color: #232C77;
  flex-basis: 100%;
  text-align: center;
}

.promocode__remove {
  background-color: transparent;
  border: none;
  height: 100%;
  width: 34px;
  min-width: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.promocode__remove svg {
  height: 10px;
  width: 10px;
  display: block;
}

.promocode__applied {
  color: #5ACB7A;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 15px;
}
.promocode__applied span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 8px;
  width: 12px;
}

.promocode__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-width: 125px;
  border-radius: 4px;
  border: 1px dashed #232C77;
  padding: 0 0 0 15px;
  height: 34px;
}

#name--to span, #name--from span {
  display: inline;
  font-size: 13.3333px;
  color: rgb(84, 84, 84);
}

.resume__field--to span, .resume__field--from span {
  margin-left: 5px;
}

.resume__field--from span:empty {
  display: none;
}

.resume__field--to span:empty {
  display: none;
}

.trip__field--from .trip__field-value, .trip__field--to .trip__field-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}

/*# sourceMappingURL=styles.css.map */
