.custom-columns-tabs {
	width: 100%;
}

.custom-columns-tabs .tabs-content .tab-content h3 {
	display: none;
}

@media(min-width: 768px) {
	.tabs-nav {
		display: none;
	}
	.tabs-content {
		display: flex;
		gap: 20px;
	}
	.tab-content {
		flex: 1;
		display: block !important;
	}
}
@media(max-width: 767px) {
	.tabs-nav {
		display: flex;
		gap: 0px;
		margin-bottom: 10px;
	}
	.tabs-nav button {
		flex: 1;
		/* padding: 10px; */
		/* background: #eee; */
		padding: 8px 18px !important;
		background: transparent !important;
		border: none;
		cursor: pointer;
		color: white !important;
	}
	.tabs-nav button.active {
		/* background: #ccc; */
		background: #FFE106 !important;
		color: #4C0675 !important;
	}
	.tab-content {
		display: none;
	}
	.tab-content.active {
		display: block;
	}
}
