.js-tabs {
  max-width: 100%;
}
.js-tabs ul.js-tabs__header {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.js-tabs ul.js-tabs__header li {
  display: inline-block;
  float: left;
  margin-bottom: 0;
  padding: 0;
}
.js-tabs ul.js-tabs__header li:before {
  display: none;
}
.js-tabs__title {
  background: #f5f5f5;
  border: 1px solid #ccc;
  cursor: pointer;
  display: block;
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  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.75rem;
}
.js-tabs__content {
  border: 1px solid #ccc;
  line-height: 1.5;
  margin-top: -1px;
  padding: 1em 2em 3em;
}
