* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  margin: 0 auto;
  padding: 30px;
}

.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.tab-list li {
  list-style: none;
  width: 120px;
  border: 1px solid #333;
  border-left: none;
  border-bottom: none;
  font-size: 20px;
  text-align: center;
  padding: 10px;
  color: #333;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  cursor: pointer;
}

.tab-list li:first-child {
  border-left: 1px solid #333;
}

.tab-list li:hover {
  background: #333;
  color: #fff;
}

.tab-list li.active {
  background: #333;
  color: #fff;
}

.tab-container {
  border: 1px solid #333;
  padding: 20px;
  line-height: 2;
}

.tab-container .tab-content {
  display: none;
}

.tab-container .tab-content.active {
  display: block;
}
/*# sourceMappingURL=tab.css.map */