.js-tabs {
  max-width: 100%;
}
.js-tabs__header {
  display: block;
  margin: 0;
  padding: 0;
}
.js-tabs__header li {
  display: inline-block;
  float: left;
}
.js-tabs__title {
  background: #f5f5f5;
  border: 1px solid #ccc;
  cursor: pointer;
  display: block;
  margin-right: .5em;
  padding: 1em 1.5em;
  transition: all .25s;
}
.js-tabs__title:hover {
  text-decoration: none;
}
.js-tabs__title-active {
  background: #fff;
  border-bottom-color: #fff;
  border-top-left-radius: .75em;
}
.js-tabs__content {
  line-height: 1.5;
  margin-top: -1px;
  display: none;
}
.js-tabs__content.show {
  display: block;
}
