.custom-tabs {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  border-bottom: 2px solid #f2f3f3;
  display: flex;
  flex-wrap: wrap;
}

.custom-tabs li {
  margin: 0 5px -2px 0;
}

.custom-tabs a {
  display: inline-block;
  padding: 10px 20px;
  background: #f2f3f3;
  color: #494e52;
  text-decoration: none;
  border: 2px solid transparent;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.custom-tabs a:hover {
  background: #e3e3e3;
  color: #52adc8;
}

.custom-tabs a.active {
  background: white;
  color: #52adc8;
  border-color: #f2f3f3;
  border-bottom-color: white;
  font-weight: bold;
}

.tab-content-wrapper {
  border: 2px solid #f2f3f3;
  border-top: none;
  margin-bottom: 20px;
}

.tab-content-item {
  display: none;
  padding: 20px;
}

.tab-content-item.active {
  display: block;
}

.tab-content-item h2,
.tab-content-item h3 {
  margin-top: 0;
}