.cl-tabs-container {
	width: 100%;
}

.cl-tabs-nav {
	list-style: none;
	padding: 0;
	display: flex;
	border-bottom: 2px solid #ddd;
	align-items: center;
	justify-content: center;
}

.cl-tabs-nav li {
	padding: 10px 20px;
	cursor: pointer;
	background: #f1f1f1;
	border: 1px solid #ddd;
	border-bottom: none;
	margin-right: 5px;
}

.cl-tabs-nav li.active {
	background: #fff;
	font-weight: 700;
}

.cl-tabs-content {
	padding: 2px;
	border: 0;
}

.cl-tab-panel {
	display: none;
}

.cl-tab-panel.active {
	display: block;
}