/* =====================================
   TABS
===================================== */
.tabs {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	gap: 6px;
	margin-bottom: 24px;
	padding-bottom: 2px;
	border-bottom: 2px solid #dbe3ef;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.tabs::-webkit-scrollbar {
	height: 6px;
}

.tabs::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 10px;
}

.tabs::-webkit-scrollbar-track {
	background: transparent;
}

/* =====================================
   TAB
===================================== */
.tab {
	flex: 1 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	height: 46px;
	padding: 0 22px;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 600;
	color: #475569;
	background: #f8fafc;
	border: 1px solid #dbe3ef;
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	transition: .2s;
}

.tab:hover {
	background: #e0ecff;
	color: #2563eb;
	text-decoration: none;
}

.tab.active {
	background: #2563eb;
	color: #fff;
	border-color: #2563eb;
}

/* =====================================
   MOBILE
===================================== */
@media ( max-width :768px) {
	.tab {
		flex: 0 0 auto;
		min-width: 140px;
	}
}