.tab__header {
  display: block;
  clear: both;
  text-align: center;
}

.tab__header > div {
  display: inline-block;
  color: #ffffff;
  margin-right: 7.5px;
  margin-left: 7.5px;
  margin-top: 15px;
  padding-top: 0.90rem;
  padding-right: 1.875rem;
  padding-bottom: 0.90rem;
  padding-left: 1.875rem;
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 500;
  font-family: 'Jost', serif;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.tab__header > div:hover {
  cursor: pointer;
}

.tab__header > div.tab__header--active {
  border: 0;
  background: -moz-linear-gradient(top, rgba(255,252,182,1) 0%,rgba(54,242,227,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,252,182,1) 0%,rgba(54,242,227,1) 100%);
  background: linear-gradient(to bottom, rgba(255,252,182,1) 0%,rgba(54,242,227,1) 100%);
  transition: all .5s ease;
}

.tab__content {
  display: block;
  clear: both;
  color: #212121;
  width: 100%;
  height: inherit;
  overflow: auto;
  padding: 1.875rem 5px;
}

.tab__content > div {
  display: inline-block;
  vertical-align: top;
  float: left;
  display: none;
}

.tab__content > div.tab__content--active {
  display: block;
  width: 100%;
}
