.tab-wrap{
  background-color: #fff;
}
 
.tab-wrap ul {
  display: flex;
  background: #eee;
}

.tab-wrap ul li{
	font-size: 1.1em;
	font-weight: bold;
}

.tab-btn {
  width: 50%;
  padding: 10px 0;
  text-align: center;
  list-style: none;
  cursor: pointer;
  color:#CBCBCB;
}
 
.tab-btn.show {
  background: #4F4F4F;
  border-top: 2px solid #4F4F4F;
  color: #fff;
}
 
.tab-contents {
  display: none;
}
 
.tab-contents.show {
  display: block;
  padding: 5px;
}