/*
Colors:

blau: #037efc
bg grau: #f2f2f4

*/

body {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  margin: 20px 0 0 0;
  cursor: pointer;
}

a {
  color: #037efc;
  text-decoration: none;
}

a:focus, a:hover {
  color: #037efc;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* INDEX index.html */
#logo {
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
  width: 70%;
  float: left;
  height: 70px;
}

#helplink {
  width: 30%;
  float: left;
  height: 70px;
}

#helplink a {
  line-height: 70px;
  display: block;
  margin: 0 0 0 50px;
}

/* top nav */

#navigation {
  font-size: 0;
}

#navigation ul {
  margin: 0;
  padding: 0;
}

#navigation li {
  width: 50%;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  height: 70px;
  background-color: #f2f2f2;
}

#navigation li.active {
  background-color: #007eff;
  color: #fff;
}

#navigation li:first-child {
  border-right: 1px solid #fff;
  margin-left: -1px;
}

#navigation .circle {
  background-image: url("../img/step1_inactive2x.png");
  font-size: 14px;
  background-size: 100%;
  display: block;
  width: 20px;
  height: 20px;
  margin: 10px auto 6px auto;
}

#navigation .circle[data-num="1"] { background-image: url("../img/step1_active2x.png"); }
#navigation .active .circle[data-num="1"] { background-image: url("../img/step1_inactive2x.png"); }

#navigation .circle[data-num="2"] { background-image: url("../img/step2_active2x.png"); }
#navigation .active .circle[data-num="2"] { background-image: url("../img/step2_inactive2x.png"); }

#navigation li.active a {
  color: #fff;
}

#content {
  margin: 0 15px;
}

/* bottom nav */

#bottomNav {
  font-size: 0;
  margin: 5px 0 20px;
}

#bottomNav .leftlink {
  width: 30%;
  display: inline-block;
  font-size: 14px;
}

#bottomNav .rightlink {
  width: 70%;
  display: inline-block;
  font-size: 14px;
  text-align: right;
}

#bottomNav .button {
  background-color: #007eff;
  display: inline-block;
  padding: 18px 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  color: #fff;
  min-width: 70px;
  text-align: center;
  font-size: 15px;
}

#bottomNav span.arrow-right {
  background-image: url("../img/next-phone.png");
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin: 0px 6px 0px 0;
}

/* popups */

#popup {
  z-index: 10;
}

#popup > div {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.popupHeader {
  height: 60px;
  background-color: #007eff;
  padding: 0 15px;
}

.popupHeader .headline {
  color: #fff;
  font-size: 15px;
  line-height: 60px;
}

.popupHeader .column20 {
  text-align: right;
}

.popupHeader .closeButton {
  background-image: url("../img/close-phone.png");
  background-size: 100%;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 0 -4px 0;
}

.popupContent {
  margin: 0 15px;
  font-size: 14px;
  line-height: 17px;
}

/* error handling */

.hasError {
  color: #df081a !important;
}

.hasError input.textField {
  background-color: #f9e1e1;
}

.errorIcon {
  width: 20px;
  height: 20px;
  background-image: url("../img/error2x.png");
  background-size: 100%;
  margin: 0 0 -5px 0;
  display: none;
}

.errorPopup {
  width: 80%;
  min-height: 100px;
  position: absolute;
  z-index: 5;
  background-image: url("../img/popover_bg.png");
  background-position: top right;
  background-repeat: no-repeat;
  display: none;
}

.errorPopup .errorTitle {
  margin: 20px 16px 16px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.errorPopup .errorContent {
  margin: 0 16px;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

/* MAIN main.html */

.trenner {
  border: 1px solid #e1e1e1;
  margin: 15px 0;
}

.row {
  font-size: 0;
}

.column10, .column20, .column25, .column30, .column33, .column40, .column50,
.column60, .column66, .column70, .column75, .column80, .column90, .column100 {
  font-size: 14px;
  display: inline-block;
}
.column10 { width: 10%; }
.column20 { width: 20%; }
.column25 { width: 25%; }
.column30 { width: 30%; }
.column33 { width: 33.33333%; }
.column40 { width: 40%; }
.column50 { width: 50%; }
.column60 { width: 60%; }
.column66 { width: 66.66666%; }
.column70 { width: 70%; }
.column80 { width: 80%; }
.column90 { width: 90%; }

h2 {
  font-weight: bold;
  font-size: 18px;
}

input.textField {
  width: 70px;
  border: 1px solid #dadada;
  background-color: #f4f4f4;
  height: 26px;
  color: #007eff;
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  padding: 0 3px;
}

span.lighttext {
  font-size: 12px;
  font-style: italic;
  color: #7d7d7d;
}

/* RESULT result.html */
#result .textField {
  background-color: #fff;
}

/* SCHEMA schema.html */

.schemaBild {
  /*background-image: url("../img/schema-siphon.svg");*/
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin: 14px 0 0 0;
}