
.tabs ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	background: #ECE6FD;
	padding: 3px 10px;
  }
  
  .tabs li {
	align-items: center;
	border-bottom: 0;
	cursor: pointer;
	display: flex;
	font-weight: bold;
	height: 2.5rem;
	line-height: 1;
	margin-right: 0.25rem;
	padding: 0 1.5rem;
	position: relative;
  }
  
  .tabs.ulist li {
	margin-bottom: 0;
  }
  
  .tabs li + li {
	margin-top: 0;
  }
  
  .tabset.is-loading .tab-pane:not(:first-child),
  .tabset:not(.is-loading) .tab-pane:not(.is-active) {
	display: none;
  }
  
  .tab-pane > :first-child {
	margin-top: 0;
  }
  
 .tabs li.is-active::before, 
 .doc .tabs li:hover::before {
	background-color: #7863B7;
	content: "";
	display: block;
	height: 3px;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1;
	margin: auto;
  }
  
  .doc .tabset.is-loading .tabs li:first-child::after, 
  .doc .tabs li.is-active::after {
	background-color: #fff;
	content: "";
	display: block;
	height: 3px;
	position: absolute;
	bottom: -1.5px;
	left: 0;
	right: 0;
  }
  .doc .tabset > .content {
	width: 100%;
	padding: 1rem;
	border: 1px solid #ECE6FD;
  }
.tabs p{
	font-size: 15px;
}