@charset "UTF-8";
.transfer .body {
  width: 100%;
}
.transfer .body .travellingBy input {
  display: none;
}
.transfer .body .travellingBy label {
  position: relative;
  display: inline-flex;
  margin-left: 20px;
  cursor: pointer;
}
.transfer .body .travellingBy label::before {
  content: "✓";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  color: #fff;
  font-weight: 600;
  font-size: 10.5px;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}
.transfer .body .travellingBy input[type=radio]:checked + label::before {
  background-color: var(--green-light);
}
.transfer .body .inputFields div {
  position: relative;
  margin-top: 20px;
}
.transfer .body .inputFields div input {
  padding: 0 40px;
}
.transfer .body .inputFields div img {
  position: absolute;
  top: 38px;
  left: 13px;
  width: 16px;
}
.transfer .body .inputFields .email img {
  top: 42px;
  width: 16px;
}
.transfer .body .inputFields .phoneNumber img {
  top: 38px;
  left: 129px;
  width: 12px;
}
.transfer .body .inputFields .phoneNumber img.prefix {
  top: 38px;
  left: 10px;
  width: 24px;
}
.transfer .body .inputFields .travellingByDetails input {
  cursor: not-allowed;
}
.transfer .body .inputFields .travellingByDetails label {
  color: #acabab;
}
.transfer .body .inputFields .phoneNumber {
  position: relative;
  display: grid;
  grid-template: 25px 1fr/115px 1fr;
}
.transfer .body .inputFields .phoneNumber label {
  grid-column: 1/3;
  width: -moz-fit-content;
  width: fit-content;
}
.transfer .body .inputFields .phoneNumber .code {
  grid-column: 1/2;
  grid-row: 2/3;
  width: 100%;
  padding: 0px 20px;
  text-align: center;
}
.transfer .body .inputFields .phoneNumber .number {
  grid-column: 2/3;
  width: 100%;
}
.transfer .body .inputFields .phoneNumber .countryPhoneNumberVisible {
  visibility: visible;
  opacity: 1;
  top: calc(100% - 10px);
}
.transfer .body .inputFields .phoneNumber ul {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  max-width: 380px;
  width: 100%;
  height: 200px;
  background-color: #f6f6f6;
  padding: 0;
  overflow: auto;
  border-radius: 0 0 4px 4px;
  box-shadow: var(--shadow-small);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.4s;
}
.transfer .body .inputFields .phoneNumber ul li {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.transfer .body .inputFields .phoneNumber ul li .country {
  width: 70%;
  background-repeat: no-repeat;
  background-size: 25px auto;
  padding-left: 40px;
  text-wrap: pretty;
  background-position-y: 50%;
}
.transfer .body .inputFields .phoneNumber ul li .code {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  color: var(--gray);
}
.transfer .body .inputFields .phoneNumber ul li:hover {
  background-color: #f0eeee;
}
.transfer .body .promotions {
  margin: 40px 0;
  display: flex;
  align-items: center;
}
.transfer .body .information div {
  width: 100%;
  padding: 30px 40px 30px 20px;
  background: rgba(106, 226, 166, 0.2196078431);
  border-radius: 4px;
  position: relative;
}
.transfer .body .information div span {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  padding: 4px 12px;
  background-color: var(--green-light);
  color: #fff;
  border-radius: 30px;
}
.transfer .body .information div p {
  position: relative;
  padding-left: 25px;
}
.transfer .body .information div p::before {
  content: "✓";
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  color: var(--green);
  top: -4px;
  left: 5px;
}
.transfer .body hr {
  opacity: 0.25;
  margin: 20px 0 30px;
}
.transfer .body .checkboxes .childSeatsCheckbox,
.transfer .body .checkboxes .bigLuggage,
.transfer .body .checkboxes .pet,
.transfer .body .checkboxes .wheelchair,
.transfer .body .checkboxes .notesCheckbox {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.transfer .body .checkboxes .childSeatsCheckbox label,
.transfer .body .checkboxes .bigLuggage label,
.transfer .body .checkboxes .wheelchair label,
.transfer .body .checkboxes .pet label,
.transfer .body .checkboxes .notesCheckbox label {
  margin-bottom: 0;
}
.transfer .body .checkboxes .childSeats {
  margin-bottom: -10px;
  transition: margin-bottom 0.1s ease;
}
.transfer .body .checkboxes .childSeats .childSeatsDetails {
  padding: 0 20px;
  height: 0;
  background-color: #e9e9e9;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  row-gap: 20px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, height 0.5s ease, padding 0.2s ease;
}
.transfer .body .checkboxes .childSeats .childSeatsDetails div {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.transfer .body .checkboxes .childSeats .childSeatsDetails div input {
  width: 180px;
  text-align: center;
}
.transfer .body .checkboxes .childSeats .childSeatsDetails div span {
  position: absolute;
  font-size: 20px;
  top: 1px;
  color: var(--gray-light);
  cursor: pointer;
  width: 30px;
  height: 41px;
  line-height: 2;
  padding: 0 8px;
  background-color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.transfer .body .checkboxes .childSeats .childSeatsDetails div span:hover {
  color: var(--gray);
}
.transfer .body .checkboxes .childSeats .childSeatsDetails div .subtraction {
  right: 149px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.transfer .body .checkboxes .childSeats .childSeatsDetails div .add {
  right: 1px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.transfer .body .checkboxes .notes .textarea {
  height: 0;
  transition: height 0.4s;
  overflow: hidden;
}
.transfer .body .checkboxes .notes .textarea textarea {
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid var(--gray-light);
  resize: vertical;
  min-height: 70px;
  border-radius: 4px;
  width: 100%;
  resize: none;
}
.transfer .body .buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

@media (max-width: 500px) {
  .transfer .body .checkboxes .childSeats .childSeatsDetails div input {
    width: 120px;
  }
  .transfer .body .checkboxes .childSeats .childSeatsDetails div .subtraction {
    right: 89px;
  }
}
@media (max-width: 400px) {
  .transfer .body .travellingBy label {
    margin-left: 5px;
  }
  .transfer .body .checkboxes .childSeats .childSeatsDetails div input {
    width: 80px;
    padding-left: 13px;
  }
  .transfer .body .checkboxes .childSeats .childSeatsDetails div .subtraction {
    right: 49px;
  }
}/*# sourceMappingURL=transfer.css.map */