.tab-wrap{
  background-color: #fff;
}

.tab-wrap ul {
  display: flex;
  background: #eee;
}

.tab-btn {
  width: 50%;
  padding: 10px 0;
  text-align: center;
  list-style: none;
  cursor: pointer;
}

.tab-btn.show {
  background: #44c7ff;
  border-top: 2px solid #44c7ff;
  color: #555555;
}

.tab-contents {
  display: none;
}

.tab-contents.show {
  display: block;
  padding: 20px;
}