.tab {
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.tablist.active {
  background: #01a32b;
  color: #fff;
}

.tablist {
  width: calc((100% - 5px) / 2);
  padding: 0;
  list-style-type: none;
  background: #f5f5f5;
  text-align: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: bold;
}
.tabcontents {
  background-color: #f5f5f5;
  border-top: solid #01a32b 6px;
  border-bottom: solid #01a32b 6px;
  padding: 26px;
}

@media (max-width: 767px) {
  .tabcontents {
    padding: 15px;
  }
  .tablist {
    padding: 10px 0;
  }
}
