.tab__header {
  display: block;
  clear: both;
}

.tab__header > div {
  display: inline-block;
  vertical-align: top;
  float: left;
  padding: 10px;
  background: #FC654C;
  color: #FFF;
  /*-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);*/
  width: 80px;
  text-align: center;
      border-right: 1px solid #d85039;
}

.tab__header > div:hover {
  background: #0288D1;
  cursor: pointer;
}

.tab__header > div.tab__header--active {
  background: #041c35;
}

.tab__content {
  display: block;
  clear: both;
  background: #fafafa;
  color: #212121;
  width: auto;
  max-width:100%;
  height: inherit;
  overflow: auto;
  padding: 0 0 20px 0;
}

.tab__content > div {
  display: inline-block;
  vertical-align: top;
  float: left;
  display: none;
}

.tab__content > div.tab__content--active {
  display: block;
}
