body {
  padding-top: 100px;
  padding-bottom: 20px;
  overflow-y: scroll;
  -webkit-user-select: none;
  user-select: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100px;
  background: #fff;
  z-index: 50;
}

.header__menu {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fab900;
}

.header__menu ul {
  flex: 1 1 auto;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  padding: 0 10px;
  margin: 0;
}

.header__menu ul li {
  padding: 10px 18px;
  margin: 0 10px 0 0;
  font-size: 15px;
  font-weight: bold;
  color: black;
  border: 1px solid transparent;
  cursor: pointer;
}

.header__menu ul li:hover, .header__menu ul li.active {
  border: 1px solid white;
}

.header__logo-ytong {
  flex: 0 0 auto;
  width: 100px;
  margin: 0 12px;
  background: #fabb23 url(../img/logo-ytong.png) no-repeat center center;
}

.header__logo-silka {
  flex: 0 0 auto;
  width: 100px;
  background: #008aca url(../img/logo-silka.png) no-repeat center center;
}

.content {
  margin: 14px 0;
  padding: 0 10px;
}

.calc__navigation {
  height: 56px;
  background: #eeeeee url(../img/logo-statix.png) no-repeat right 18px center;
  border: 1px solid #dddddd;
  border-radius: 4px;
  list-style: none;
  overflow: hidden;
  margin: 0 0 10px 0;
  padding: 0;
  padding-right: 30%;
  display: flex;
}

.calc__navigation li {
  flex: 2;
  position: relative;
  padding: 0 35px 0 45px;
  line-height: 54px;
  background: #fab900;
  color: #333333;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.calc__navigation li:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 14px solid #fab900;
  position: absolute;
  top: 50%;
  margin-top: -27px;
  left: 100%;
  z-index: 2;
}

.calc__navigation li:first-child {
  padding-left: 30px;
  flex: 5;
}

.calc__navigation li:nth-child(2) {
  background: #eeeeee;
}

.calc__navigation li:nth-child(2):after {
  border-left-color: #eeeeee;
}

.calc__navigation li:nth-child(3) {
  background: #dccd52;
}

.calc__navigation li:nth-child(3):after {
  border-left-color: #dccd52;
}

.calc__navigation li:nth-child(4) {
  background: #85c520;
}

.calc__navigation li:nth-child(4):after {
  border-left-color: #85c520;
}

.calc__navigation li:hover {
  text-decoration: underline;
  color: black;
}

.calc__navigation li.active, .calc__navigation li.active:hover {
  text-decoration: underline;
  font-weight: bold;
  font-size: 16px;
  background: #008aca;
  color: white;
  text-shadow: 0 0 2px black;
}

.calc__navigation li.active:after, .calc__navigation li.active:hover:after {
  border-left-color: #008aca;
}

.calc .calc__tabpanel .nav {
  border-bottom: none;
  padding: 0 4px;
}

.calc .calc__tabpanel .nav > li > a {
  border: none;
  color: #333333;
}

.calc .calc__tabpanel .nav > li.active > a,
.calc .calc__tabpanel .nav > li.active > a:hover,
.calc .calc__tabpanel .nav > li.active > a:focus {
  background: #eeeeee;
}

.calc .calc__img {
  margin: 20px 0 0 0;
}

.calc .calc__content {
  padding: 18px;
  border: 1px solid #dddddd;
  border-radius: 4px;
}

.calc .calc__content table {
  font-size: 12px;
}

.calc .calc__content table tr th {
  white-space: nowrap;
  border-top: none;
  background: #EEE;
}

.calc .calc__content table tr th:first-child, .calc .calc__content table tr td:first-child {
  min-width: 170px;
}

.calc .calc__content table tr th:not(:first-child), .calc .calc__content table tr td:not(:first-child) {
  width: 100px;
}

.calc .calc__content table tr.final td {
  font-weight: bold;
  background: #fff1ca;
}

.calc .calc__content table tr.subfinal td {
  font-weight: bold;
  background: #fff1ca;
}

.calc .calc__content table .gaprow:first-child {
  display: none;
}

.calc .calc__content table .gaprow td {
  border: none;
  padding: 0;
  height: 30px;
}

.calc .calc__content table.table-hover .gaprow {
  background: none !important;
}

.calc .calc__content table .form-control {
  padding: 2px;
  border-radius: 0;
  margin: -4px -3px;
  height: auto;
  width: 60px;
}

.calc form {
  padding: 20px 30px;
  background: #eeeeee;
  border-radius: 4px;
  outline: none;
}

.calc form h3 {
  margin-top: 0;
}

.calc form .form-control {
  border-radius: 0;
}

footer {
  position: fixed;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  height: 20px;
  padding: 0 30px;
  background: #37373c;
  font-size: 10px;
  color: #fff;
  line-height: 20px;
  z-index: 50;
}

footer .copy {
  color: #9595a2;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  float: left;
  margin: 0 16px;
}

footer ul li:first-child {
  margin-left: 0;
}

footer ul li a {
  color: white !important;
}

footer ul li a.active {
  text-decoration: underline;
}

.flexrow {
  display: flex;
}

.flexrow .classic, .flexrow .thin {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flexrow .classic .custom-head .gaprow:first-child + tr, .flexrow .thin .custom-head .gaprow:first-child + tr {
  display: none;
}

h3.table-like {
  background: #EEE;
  margin: 0;
  padding: 8px;
  font-size: 12px;
  font-weight: bold;
}

.manual-button {
  margin-bottom: 10px;
}

.custom-result {
  padding: 15px;
}

.app-tooltip {
  color: grey;
}

.table > tbody > tr > td[rowspan] {
  vertical-align: middle;
}

/*# sourceMappingURL=main.css.map */