.sf-divtabs {
	margin: 16px 0;
}

.sf-divtabs.is-sticky {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
}

.sf-divtabs__bar {
	display: flex;
	gap: 8px;
	align-items: center;
	overflow-x: auto;
	padding: 8px 4px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	-webkit-overflow-scrolling: touch;
}

.sf-divtabs__tab {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 10px 12px;
	border-radius: 999px;
	cursor: pointer;
	white-space: nowrap;
	font: inherit;
	line-height: 1;
	box-shadow: none;
}

.sf-divtabs__tab:hover {
	background: rgba(0, 0, 0, 0.06);
}

.sf-divtabs__tab.is-active {
	background: rgba(0, 0, 0, 0.08);
	font-weight: 600;
}

.division-section.is-hidden {
	display: none;
}

.division-section.is-active {
	display: block;
}

@media screen and (max-width: 600px) {
	.sf-divtabs__bar {
		gap: 4px;
		padding: 8px 2px;
		max-width: calc(100vw - 40px);
	}
	
}