.component-tabs {
	margin-bottom: 25px;
}

.component-tabs .tabs-wrap {
	display: flex;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 2px solid #ebebeb;
}

.component-tabs .tabs-wrap .tab {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px 7px;
	font-size: 16px;
	color: #231F20;
	font-weight: 300;
	margin-bottom: -2px; /* we want the tab border to be completely on top of the wrapper border */
	cursor: pointer;
}

.component-tabs .tabs-wrap .tab:not(.active):hover {
	border-bottom: 2px solid #dfdfdf;
}

.component-tabs .tabs-wrap .tab.active {
	color: var(--color-primary);
	font-weight: 500;
	border-bottom: 2px solid var(--color-primary);
	background-color: #EBF3FF;
}

.component-tabs .tabs-wrap .tab .count {
	display: inline-block;
	width: 26px;
	height: 26px;
	color: var(--color-white);
	background-color: black;
	font-size: 12px;
	line-height: 27px;
	text-align: center;
	border-radius: 50%;
}

.component-tabs .tabs-wrap .tab.active .count {
	background-color: var(--color-primary);
}