html * {
  font-family: Arial !important;
}

body {
  font-family: 'Courier Prime', monospace;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body,
html {
  height: 100%;
  background-color: #00AFDC;
}

.top {
  height: 100%;
  flex-direction: row;
  display: flex;
  flex: 1 1 auto;
  order: 1;
}

.bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  order: 2;
}

#car-route-parameters,
#combi-table-1,
#combi-table-2,
#take-journey-button {
  flex: 1;
  margin: 1%;
  max-width: 600px;
}

.route-parameter-table {
  width: 30%;
}

#take-journey-button {
  max-width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: inherit;
  color: white;
  background-color: #104264;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  ;
}

#take-journey-button:hover {
  background-color: #2980b9;
}

#take-journey-button:active {
  background-color: #1c6ca6;
}

#comparison-overlay-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

#comparison-overlay {
  display: flex;
  max-width: 80%;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.comparison-close-icon {
  margin-right: 10px;
  cursor: pointer;
  color: #000;
}

.comparison-overlay-box {
  flex: 1;
  padding: 20px;
}

.sidebar {
  width: 30%;
  order: 1;
}

.sidebar-top {
  position: relative;
  margin-top: 8px;
  margin-left: 8px;
  margin-right: 8px;
}

.map {
  display: flex;
  width: 70%;
  order: 2;
}

.info-button {
  height: 20px;
  width: 20px;
}

.sidebar-button {
  position: absolute;
}

#language {
  right: 0;
  position: absolute;
  background: #00afdc;
  color: white;
}

#predefined_destinations_dropdown {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 5px;
  background: #f5f5f5;
}

.info-button, .dropdown {
  top: 50%;
  font-weight: 700;
  border: none;
}

#info-overlay {
  position: fixed;
  top: 0;
  right: 0;  
  bottom: 0;
  left: 0;
  max-width: 800px;
  width: 80%;
  max-height: 600px;
  height: 90%;
  border: 10px;
  border-color: #00AFDC;
  border-style: solid;
  background: #fff;
  margin: 20px auto;
  z-index: 2;
  border-radius: 10px;
}

#info-overlay-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

#info-overlay-header {
  height: 10%;
  background-color: #00AFDC;
  display: flex;
  align-items: center;
}

.overlay-icon {
  margin-left: 20px;
}

.overlay-logo {
  height: 90%;
  width: auto;
  margin: auto;
}

img.info-journey-bottom-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  height: auto;
}

img.environment-icon {
  width: 90px;
  height: auto;
}

#popup-text {
  width: 95%;
  margin: auto;
  font-size: 13px;
  position: relative;
}

#popup-text-text-13 {
  font-style: italic;
  font-size: 12px;
  line-height: 17px;
}

.popup-enumeration {
  display: inline;
}

.popup-close-icon {
  float: right;
  margin-right: 20px;
  width: 20px;
  height: auto;
  cursor: pointer;
  color: #000;
}

#popup-bottom-text {
  display: flex;
  position: absolute;
  font-style: italic;
  bottom: 0;
  left: 50%;
  line-height: 14px;
  transform: translate(-50%, -50%);
  width: 95%;
  align-items: center;
}

#popup-bottom-text > p {
  font-size: 11px;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 5px;
}

.overlay-list-icon {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 8px;
}

.logo img {
  width: 100%;
  height: auto;
}

.nav-icon {
  width: 15px;
  height: auto;
}

.route-parameters-icon, .expand-button {
  margin-right: 10px;
  height: auto;
}

.route-parameters-icon {
  width: 18px;
  float: left;
}

.expand-button {
  width: 25px;
  float: right;
}

.input-parameters {
  padding: 15px;
  padding-bottom: 45px;
}

.input-parameters button {
  background: #025E7B;
  color: white;
  padding: 8px;
  border-radius: 5px;
  font-weight: 600;
  float: right;
  border: none;
}

.input-parameters button:hover {
  background: #A63387;
}

.input-parameters-container-top {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  background-color: #ffffff;
  width: 85%;
}

.input-parameters-container-top header {
  background-color: #025E7B;
  color: #fff;
  padding: 3px;
  border-radius: 5px 5px 0 0;
}

.input-parameters-container-top header p {
  margin-left: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  font-weight: 600;
}

.input-parameters-container-bottom {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.input-parameter label {
  font-family: Arial;
  margin-left: 10px;
}

.input-parameter input {
  border: none;
  margin-top: 5px;
  margin-bottom: 15px;
  width: 100%;
  background: #F5F5F5;
  padding: 8px;
  box-sizing: border-box;
  font-size: 14px;
}

.input-parameter input::-webkit-input-placeholder {
  font-family: 'Courier Prime', monospace;
}

.input-parameter input:-ms-input-placeholder {
  font-family: 'Courier Prime', monospace;
}

.input-parameter input::-moz-placeholder {
  font-family: 'Courier Prime', monospace;
}

.input-parameter img {
  float: left;
}

#feedback-text {
  float: right;
}

#version-text {
  float: right;
}

#past-warning {
  padding-top: 1rem;
  width: 85%;
  margin: auto;
}

#click-hub-message {
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  color:#ffffff;
  width: 85%;
}

table {
  border-radius: 10px;
  border-collapse: collapse;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  width: 100%;
}

.route-parameter-table {
  margin-top: 5px;
}


thead {
  background: #025E7B;
  height: 60px;
}

thead.car-route-gray {
  background: #7D8597;
}

thead.combi-table-purple {
  background: #A63387;
}


th {
  color: white;
  text-align: left;
  font-size: 13px;
  padding-left: 10px;
}

td {
  padding: 10px;
  font-size: 13px;
}

tbody tr:nth-child(2n) {
  background-color: #f5f5f5;
}

tr {
  height: 50px;
  color: grey;
  margin-left: 5px;
  margin-right: 5px;
}


.infowindow-info {
  margin: 8px;
}

.infowindow-image {
  width: 100%;
  height: auto;
}

/* Google Maps's InfoWindow classes */
.gm-style .gm-style-iw-c {
  padding: 0px !important;
}

/* Remove X from top right of InfoWindow */
.gm-ui-hover-effect {
  display: none !important;
}

/* Without this, there's some white space to the right of the infowindow on Chrome. */
.gm-style-iw-d {
  overflow: auto !important;
}


@media only screen and (max-width: 1410px) {
  th, td {
    text-align: left;
    padding: 8px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 1315px) {
  th, td {
    font-size: 11px;
  }
}

@media only screen and (max-width: 1230px) {
  th, td {
    font-size: 10px;
  }
}