@media (min-width:551px) {
  .is-hidden--desktop {
    display: none;
  }
}

@media (max-width:550px) {
  .is-hidden--mobile {
    display: none;
  }
}

.tabs {
  overflow: auto;
  margin: 1em 0 0;
}

.tabs__item {
  width: 50%;
  float: left;
  box-sizing: border-box;
  border-color: #fff;
  border-width: 0 0 0 1px;
  border-style: solid;
}

.tabs__item:first-child {
  border-width: 0;
}

.tabs__trigger {
  display: block;
  width: 100%;
  padding: 10px 20px;
  color: #000;
  background-color: #eee;
  border: none;
}

.tabs__item.is-open .tabs__trigger {
  color: #fff;
  background-color: #ff0000;
}

.tabs__container {
  margin: 0 0px;
  background-color: #fff;
}

.tabs__content p {
  margin: 0;
  padding: 20px 5px;
}


/* Helpers */
.is-hidden {
  display: none;
}