/* PRINT STYLES */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* COLORS */
@font-face {
  font-family: frutiger;
  font-weight: normal;
  src: url(../fonts/frutiger-roman-webfont.woff);
}
@font-face {
  font-family: frutiger;
  font-weight: bold;
  src: url(../fonts/frutiger-bold-webfont.woff);
}
html, .text {
  font-size: 15.4px;
  line-height: 22px;
  color: #454545;
}

body * {
  font-family: frutiger, sans-serif;
}

h1 {
  font-size: 1.545rem;
  line-height: 2.208rem;
  color: #000;
}

b {
  font-weight: bold;
}

#search {
  font-size: 1rem;
}

/* PRINT STYLES */
/* ONLY SHOW LANGUAGE SPECIFIC THINGS */
body.de .fr {
  display: none !important;
}
body.de .it {
  display: none !important;
}

body.fr .de {
  display: none !important;
}
body.fr .it {
  display: none !important;
}

body.it .de {
  display: none !important;
}
body.it .fr {
  display: none !important;
}

body.loading {
  padding: 0;
}
body.loading * {
  display: none;
}

body .loading {
  display: none;
  padding: 0;
}

body.loading .message-container {
  display: block;
}

body.loading .loading-site {
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

body.loading .json-error {
  border: 2px solid #ff4143;
  line-height: 1.3rem;
  padding: 20px;
  color: #ff4143;
}
body.loading .json-error * {
  color: currentColor;
  display: inline-block;
}

body.loading .loading {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
}

/* LOADING ANIMATION */
body.loading .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
body.loading .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #CCC;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #CCC transparent transparent transparent;
}
body.loading .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
body.loading .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
body.loading .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.overlay {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  height: 120px;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.001)), to(white));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.001), white);
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.001), white);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.001), white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.001), white);
}

.custom-select {
  position: relative;
  cursor: pointer;
}
.custom-select .selected-container {
  position: relative;
  padding-left: 15px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1.5px solid #454545;
  border-radius: 6px;
  z-index: 3;
  background: white;
  width: calc(100% - 15px);
}
.custom-select .selected-container .selected {
  height: 100%;
  width: calc(100% - 42px);
  display: inline-flex;
  align-items: center;
  border-right: 1.5px solid #454545;
}
.custom-select .selected-container .arrow {
  transform: rotate(90deg);
  top: 16px;
  right: 18px;
  position: absolute;
  border-top: 4px solid transparent;
  border-left: 6px solid #454545;
  border-bottom: 4px solid transparent;
  transition: transform 200ms ease;
}
.custom-select.open .arrow {
  transform: rotate(270deg);
}
.custom-select .options {
  display: none;
  flex-direction: column;
  position: absolute;
  z-index: 2;
  background: white;
  width: 100%;
  border: 1.5px solid #454545;
  padding-top: 20px;
  transform: translateY(-20px);
}
.custom-select .options span {
  padding: 12px 15px;
  border-bottom: 1.5px dotted #CCC;
  cursor: pointer;
  transition: background 250ms ease;
}
.custom-select .options span:hover {
  background: #F5F5F5;
}
.custom-select .options span.active {
  cursor: default;
  background: #F5F5F5;
}
.custom-select.open .options {
  display: flex;
}

.first-letter, .search-query {
  width: 100%;
  margin-top: 30px;
  border-bottom: 1px solid #CCC;
  padding-bottom: 5px;
}

.search-relevant {
  display: none;
}

.search-query {
  display: none;
}
body.has-search-results .search-query {
  display: inline-block;
}

.search-results-container {
  margin-top: 102px;
  height: 650px;
  overflow-y: scroll;
  padding-right: 10px;
}
body.print-mode .search-results-container {
  height: auto;
  overflow-y: auto;
}
.search-results-container div:last-of-type {
  margin-bottom: 100px;
}

.search-results {
  padding: 30px 0;
  border-bottom: 1px dotted #CCC;
}
.search-results table {
  width: 100%;
}
.search-results table tr {
  display: flex;
  margin-bottom: 15px;
  justify-content: space-between;
}
.search-results table tr td {
  display: block;
}
.search-results table tr.recommend {
  padding: 10px 0;
}
.search-results table tr.recommend b {
  display: none;
}
.search-results table tr.recommend.train .mandatory {
  display: inline-block;
}
.search-results table tr.recommend.train .train {
  display: inline-block;
}
.search-results table tr.recommend.plane .recommended {
  display: inline-block;
}
.search-results table tr.recommend.plane .plane {
  display: inline-block;
}
.search-results table tr.recommend.both .recommended {
  display: inline-block;
}
.search-results table tr.recommend.both .both {
  display: inline-block;
}
.search-results table tr.recommend.none .none {
  display: inline-block;
}

/* PRINT STYLES */
.print {
  height: 15px;
  width: 15px;
  cursor: pointer;
  margin-left: 10px;
}

.info {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
}

.search {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  width: 100%;
  background: white;
}
.search #search {
  height: 38px;
  padding-left: 15px;
  border: 1.5px solid #454545;
  border-radius: 6px;
}
.search .from, .search .to {
  display: flex;
  flex-direction: column;
}
.search .from {
  width: 40%;
}
.search .to {
  width: 100%;
}
.search label {
  margin-bottom: 15px;
  display: inline-block;
}

/* PRINT STYLES */
@media print {
  body, h1, h2, h3, ol, ul, div {
    width: auto;
    border: 0;
    margin: 0 5%;
    padding: 0;
    float: none;
    position: static;
    overflow: visible !important;
  }

  .overlay {
    display: none;
  }

  .search {
    display: none;
  }

  .search-results {
    page-break-inside: avoid;
  }

  .search-results-container {
    margin-top: 72px;
    height: auto;
    overflow-y: auto;
    padding-right: 0;
  }
}

/*# sourceMappingURL=style.min.css.map */
