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