@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap");
/* line 3, ../sass/_common.sass */
html {
  font-size: 100%;
}

/* line 5, ../sass/_common.sass */
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: 100%;
  background: #ffffff;
  color: #000000;
  text-align: left;
  font-weight: 400;
}

/* line 13, ../sass/_common.sass */
h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
}

/* line 20, ../sass/_common.sass */
h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

/* line 27, ../sass/_common.sass */
h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

/* line 34, ../sass/_common.sass */
p {
  margin-bottom: 0;
  font-size: 16px;
}

/* line 38, ../sass/_common.sass */
.bg-dark-grey {
  background: #464646;
}

/* line 41, ../sass/_common.sass */
.grey {
  color: #707070;
}

/* line 43, ../sass/_common.sass */
.grey1 {
  color: #959595;
}

/* line 47, ../sass/_common.sass */
.hover-grey1:hover, .hover-grey1:focus {
  color: #959595;
}

/* line 50, ../sass/_common.sass */
.scroll-down {
  position: relative;
  display: inline-block;
  color: #ffffff;
  margin-left: 4px;
  margin-top: 1px;
  width: 22px;
  height: 35px;
  border: solid 2px #000000;
  border-radius: 22px;
}
/* line 61, ../sass/_common.sass */
.scroll-down:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 7px;
  width: 4px;
  height: 4px;
  background-color: #000000;
  border-radius: 100%;
  animation-name: dot1;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
/* line 73, ../sass/_common.sass */
.scroll-down:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 4px;
  height: 4px;
  background-color: #000000;
  border-radius: 100%;
  opacity: 1;
  animation-name: dot2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes dot1 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0, 8px);
  }
}
@keyframes dot2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0, 8px);
  }
}
/* line 6, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight {
  margin-bottom: 10px;
}
/* line 9, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 8px;
  -moz-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
/* line 16, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner input[type=text],
.index-page .flights-wrapper .flights .flight .inner select,
.index-page .flights-wrapper .flights .flight .inner input[type=submit],
.index-page .flights-wrapper .flights .flight .inner button {
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 32px;
  border-radius: 5px;
  outline: none;
  border: none;
  margin: 4px;
}
/* line 26, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner input[type=text],
.index-page .flights-wrapper .flights .flight .inner select {
  color: #000000;
  background: left 5px center no-repeat #ebebeb;
  padding: 0 10px 0 25px;
}
/* line 61, ../../../../../../Ruby31-x64/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.index-page .flights-wrapper .flights .flight .inner input[type=text]:-moz-placeholder,
.index-page .flights-wrapper .flights .flight .inner select:-moz-placeholder {
  color: #959595;
}
/* line 64, ../../../../../../Ruby31-x64/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.index-page .flights-wrapper .flights .flight .inner input[type=text]::-moz-placeholder,
.index-page .flights-wrapper .flights .flight .inner select::-moz-placeholder {
  color: #959595;
}
/* line 67, ../../../../../../Ruby31-x64/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.index-page .flights-wrapper .flights .flight .inner input[type=text]:-ms-input-placeholder,
.index-page .flights-wrapper .flights .flight .inner select:-ms-input-placeholder {
  color: #959595;
}
/* line 56, ../../../../../../Ruby31-x64/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.index-page .flights-wrapper .flights .flight .inner input[type=text]::-webkit-input-placeholder,
.index-page .flights-wrapper .flights .flight .inner select::-webkit-input-placeholder {
  color: #959595;
}
/* line 34, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner input[type=text].error,
.index-page .flights-wrapper .flights .flight .inner select.error {
  color: #d40207;
  outline: 1px solid #d40207;
}
/* line 61, ../../../../../../Ruby31-x64/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.index-page .flights-wrapper .flights .flight .inner input[type=text].error:-moz-placeholder,
.index-page .flights-wrapper .flights .flight .inner select.error:-moz-placeholder {
  color: #d40207;
}
/* line 64, ../../../../../../Ruby31-x64/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.index-page .flights-wrapper .flights .flight .inner input[type=text].error::-moz-placeholder,
.index-page .flights-wrapper .flights .flight .inner select.error::-moz-placeholder {
  color: #d40207;
}
/* line 67, ../../../../../../Ruby31-x64/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.index-page .flights-wrapper .flights .flight .inner input[type=text].error:-ms-input-placeholder,
.index-page .flights-wrapper .flights .flight .inner select.error:-ms-input-placeholder {
  color: #d40207;
}
/* line 56, ../../../../../../Ruby31-x64/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.index-page .flights-wrapper .flights .flight .inner input[type=text].error::-webkit-input-placeholder,
.index-page .flights-wrapper .flights .flight .inner select.error::-webkit-input-placeholder {
  color: #d40207;
}
/* line 40, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner input[type=submit],
.index-page .flights-wrapper .flights .flight .inner button {
  width: 100px;
}
/* line 43, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner input[type=submit] {
  color: #ffffff;
  background: #000000;
}
/* line 46, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner button {
  display: none;
  color: #959595;
  background: #ffffff;
}
/* line 51, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner input[type=text].departure {
  flex-grow: 1;
  background-image: url(/images/icons/black/departure.png);
}
/* line 54, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner input[type=text].arrival {
  flex-grow: 1;
  background-image: url(/images/icons/black/arrival.png);
}
/* line 57, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner input[type=text].date {
  background-image: url(/images/icons/black/calendar.png);
}
/* line 59, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner select {
  color: #959595;
}
/* line 62, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner select.time {
  background-image: url(/images/icons/black/clock.png);
}
/* line 64, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .inner select.people {
  width: 100px;
  background-image: url(/images/icons/black/person.png);
}
@media (max-width: 991px) {
  /* line 9, ../sass/pages/_index.sass */
  .index-page .flights-wrapper .flights .flight .inner {
    flex-direction: column;
  }
  /* line 70, ../sass/pages/_index.sass */
  .index-page .flights-wrapper .flights .flight .inner > * {
    flex-grow: 0 !important;
    width: auto !important;
  }
}
/* line 73, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight .error-message {
  display: none;
  text-align: left;
  font-size: 14px;
  color: #d40207;
  margin-top: 7px;
}
/* line 80, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight.error input[type=submit] {
  background: #d40207;
}
/* line 82, ../sass/pages/_index.sass */
.index-page .flights-wrapper .flights .flight.error .error-message {
  display: block;
}
/* line 84, ../sass/pages/_index.sass */
.index-page .flights-wrapper .bottom-panel {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
/* line 89, ../sass/pages/_index.sass */
.index-page .flights-wrapper .bottom-panel > div {
  width: 33%;
}
@media (max-width: 767px) {
  /* line 92, ../sass/pages/_index.sass */
  .index-page .flights-wrapper .bottom-panel > div:first-child {
    display: none;
  }
}
/* line 96, ../sass/pages/_index.sass */
.index-page .flights-wrapper .bottom-panel > div:nth-child(2) .add-flight {
  color: #959595;
}
@media (max-width: 767px) {
  /* line 95, ../sass/pages/_index.sass */
  .index-page .flights-wrapper .bottom-panel > div:nth-child(2) {
    width: 40%;
    text-align: left;
  }
}
/* line 101, ../sass/pages/_index.sass */
.index-page .flights-wrapper .bottom-panel > div:last-child {
  text-align: right;
}
/* line 104, ../sass/pages/_index.sass */
.index-page .flights-wrapper .bottom-panel > div:last-child > div {
  display: none;
  border-radius: 8px;
  -moz-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}
/* line 109, ../sass/pages/_index.sass */
.index-page .flights-wrapper .bottom-panel > div:last-child > div input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 200px;
  height: 32px;
  border-radius: 5px;
  outline: none;
  border: none;
  margin: 4px;
  color: #ffffff;
  background: #000000;
}
@media (max-width: 767px) {
  /* line 101, ../sass/pages/_index.sass */
  .index-page .flights-wrapper .bottom-panel > div:last-child {
    width: 60%;
  }
}
/* line 125, ../sass/pages/_index.sass */
.index-page .flights-wrapper.multiple .flights .flight .inner input[type=submit] {
  display: none;
}
/* line 127, ../sass/pages/_index.sass */
.index-page .flights-wrapper.multiple .flights .flight .inner button {
  display: block;
}
/* line 132, ../sass/pages/_index.sass */
.index-page .flights-wrapper.multiple .bottom-panel > div:last-child > div {
  display: inline-block;
}
/* line 134, ../sass/pages/_index.sass */
.index-page .section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
/* line 140, ../sass/pages/_index.sass */
.index-page .section .image {
  flex-shrink: 0;
  width: 250px;
}
@media (max-width: 767px) {
  /* line 140, ../sass/pages/_index.sass */
  .index-page .section .image {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  /* line 146, ../sass/pages/_index.sass */
  .index-page .section .content {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  /* line 151, ../sass/pages/_index.sass */
  .index-page .section.reversed-section {
    flex-flow: column-reverse;
  }
}
@media (max-width: 767px) {
  /* line 134, ../sass/pages/_index.sass */
  .index-page .section {
    flex-direction: column;
  }
}
/* line 156, ../sass/pages/_index.sass */
.index-page .form-wrapper {
  display: none;
  position: relative;
  background: url(/images/pages/home/form-bg.jpg) center center repeat;
  color: #ffffff;
  padding-top: 30px;
  padding-bottom: 40px;
}
/* line 165, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 25px;
}
/* line 172, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line .left-side .departure {
  font-size: 14px;
}
/* line 175, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line .left-side .time {
  font-weight: 300;
  font-size: 12px;
}
/* line 178, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line .middle-side {
  position: relative;
  border-bottom: 1px dashed #feb70e;
  flex-grow: 1;
  height: 12px;
  margin-left: 15px;
  margin-right: 15px;
}
/* line 186, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line .middle-side:before, .index-page .form-wrapper .data .line .middle-side:after {
  content: ".";
  position: absolute;
  bottom: -6px;
  color: #feb70e;
  font-weight: 900;
}
/* line 193, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line .middle-side:before {
  left: 0;
}
/* line 195, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line .middle-side:after {
  right: 0;
}
/* line 197, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line .right-side {
  font-size: 14px;
}
/* line 200, ../sass/pages/_index.sass */
.index-page .form-wrapper .data .line .right-side .people {
  margin-left: 15px;
  padding-left: 15px;
  background: url(/images/icons/white/person.png) left center no-repeat;
}
/* line 204, ../sass/pages/_index.sass */
.index-page .form-wrapper .shadow-top,
.index-page .form-wrapper .shadow-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background: center center repeat-x;
}
/* line 211, ../sass/pages/_index.sass */
.index-page .form-wrapper .shadow-top {
  top: 0;
  background-image: url(/images/pages/home/shadow-top.png);
  background-position-y: top;
}
/* line 215, ../sass/pages/_index.sass */
.index-page .form-wrapper .shadow-bottom {
  bottom: 0;
  background-image: url(/images/pages/home/shadow-bottom.png);
  background-position-y: bottom;
}
/* line 219, ../sass/pages/_index.sass */
.index-page .form-wrapper input[type=text],
.index-page .form-wrapper select {
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 30px;
  border-radius: 0;
  outline: none;
  background: none;
  border: none;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  font-weight: 300;
}
/* line 230, ../sass/pages/_index.sass */
.index-page .form-wrapper input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 50px;
  background: #ffffff;
  border-radius: 5px;
  color: #000000;
  text-transform: uppercase;
}
/* line 239, ../sass/pages/_index.sass */
.index-page .form-wrapper select option {
  background: #000000;
}
/* line 241, ../sass/pages/_index.sass */
.index-page .form-wrapper input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 18px;
}
/* line 246, ../sass/pages/_index.sass */
.index-page .form-wrapper input[type="checkbox"]:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  cursor: pointer;
}
/* line 256, ../sass/pages/_index.sass */
.index-page .form-wrapper input[type="checkbox"]:checked:after {
  background: url(/images/icons/white/tick.png) center center no-repeat;
  border-color: #ffffff;
}
/* line 259, ../sass/pages/_index.sass */
.index-page .form-wrapper .errorMessage {
  font-weight: 300;
  font-size: 12px;
  color: #feb70e;
  margin-top: 2px;
}
/* line 264, ../sass/pages/_index.sass */
.index-page .form-wrapper .field-wrapper {
  margin-bottom: 25px;
}
/* line 267, ../sass/pages/_index.sass */
.index-page .form-wrapper .field-wrapper label {
  position: absolute;
  display: block;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0;
  top: 4px;
  left: 15px;
  cursor: text;
  -moz-transition: top 0.2s, font-size 0.2s;
  -o-transition: top 0.2s, font-size 0.2s;
  -webkit-transition: top 0.2s, font-size 0.2s;
  transition: top 0.2s, font-size 0.2s;
}
/* line 279, ../sass/pages/_index.sass */
.index-page .form-wrapper .field-wrapper label span {
  font-size: 12px;
}
/* line 282, ../sass/pages/_index.sass */
.index-page .form-wrapper .field-wrapper.active label {
  font-size: 9px;
  top: -10px;
  cursor: default;
}
/* line 287, ../sass/pages/_index.sass */
.index-page .form-wrapper .field-wrapper.active label span {
  font-size: 9px;
}
/* line 289, ../sass/pages/_index.sass */
.index-page .form-wrapper .allowance-wrapper {
  display: flex;
}
/* line 293, ../sass/pages/_index.sass */
.index-page .form-wrapper .allowance-wrapper > div:first-child {
  width: 25px;
  flex-shrink: 0;
}
/* line 296, ../sass/pages/_index.sass */
.index-page .form-wrapper .allowance-wrapper > div:last-child {
  flex-grow: 1;
}
/* line 298, ../sass/pages/_index.sass */
.index-page .success-wrapper {
  display: none;
}
