.container-tabs {
	margin: 0 auto var(--space-24);
	max-width: var(--width-feature);

	--color: var(--primary-color-700);
	--color-hover: var(--primary-color-800);
	--text-color: var(--color);
	--button-color: var(--color);
	--border-color: var(--gray-200);
}

/* Tab Active/Inactive Functionality */
.container-tabs .tab-outer {
	opacity: 1;
	transition: opacity 150ms ease;
	overflow: hidden;
}

.container-tabs .tab-outer.animating {
	opacity: 0;
}

.inner-tab-cont:not(.active),
.inner-tab-cont:not(.active) .contentRender,
.container-tabs .tab-outer > div.contentRender:not(.active):not(.contentRender_name_plugins_common_custom_tab_inner) {
	opacity: 0;
	height: 0;
	pointer-events: none;
}

.container-tabs .tabs-header,
.container-tabs .tabs-footer {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 auto var(--space-4);
	padding: 0 var(--space-5);
	max-width: var(--width-base);
}

.container-tabs .tabs-header {
	background-image: url(/includes/public/assets/shared/lake-graphic.svg);
	background-repeat: no-repeat;
	padding: var(--space-4) var(--space-5);
	background-position: top 0px left -184px;
	background-size: 812px;
	margin-bottom: var(--space-2);
}

.container-tabs .tabs-header .title-cont {
	margin-bottom: var(--space-2);
}

.container-tabs .tabs-header .title-cont .title {
	margin-right: var(--space-8);
	font-family: var(--font-cursive);
	font-size: var(--text-5xl);
	font-weight: 400;
	color: var(--text-color);
	text-align: center;
	line-height: 1.03;
}

/*Tabs*/
.container-tabs .tabs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
}

.container-tabs .tabs button {
	padding: 2px var(--space-4);
	background-color: transparent;
	line-height: var(--leading-relaxed);
	font-family: var(--font-display);
	width: max-content;
	font-size: var(--text-xl);
	font-weight: 700;
	letter-spacing: 0.05em;
	position: relative;
}

.container-tabs .tabs li.active button {
	background-color: var(--dark-blue);
	color: var(--white);
	border-radius: 5px;
}

/* View All */
.container-tabs .tabs-footer .view-all {
	display: inline-block;
	padding: var(--space-2) var(--space-6);
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 800;
	line-height: var(--leading-none);
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--sw-collections-view-all-color);
	background-color: var(--sw-collections-view-all-bg);
	border: 2px solid transparent;
	border-radius: 6px;
	transition: color var(--transition-appendix), background-color var(--transition-appendix);
}

.container-tabs .tabs li:not(.active):not(:last-child) button::after {
	content: '';
	width: 2px;
	height: 24px;
	background-color: var(--teal);
	position: absolute;
	top: 8px;
	right: -2px;
}

@media (hover: hover) {
	.container-tabs .tabs-footer .view-all:hover {
		--button-color: var(--color-hover);
		text-decoration: none;
	}
}

@media (min-width: 64em) {
	.container-tabs .tabs-header {
		margin-bottom: var(--space-10);
		background-position: top 0px center;
		background-size: 95%;
		padding-top: 42px;
	}
	.container-tabs .tabs-header .title-cont .title {
		font-size: 4rem;
		line-height: 1;
	}

	.container-tabs .tabs button {
		font-size: 1.3438rem;
		padding: 2px 21px;
	}
}
