.container-tabs {
	margin: 0 auto var(--space-10);

	--color: var(--primary-color-700);
	--color-hover: var(--sw-collections-read-more-bg-hover);
	--text-color: var(--off-white);
	--button-color: #67777a;
	--border-color: var(--gray-200);
}
@media (min-width: 64em) {
	.container-tabs {
		margin-bottom: var(--space-20);
	}
}
/* 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);
}

.container-tabs .tabs-header {
	background: linear-gradient(to top, var(--dark-gray) 93%, transparent 7%);
	padding-bottom: 120px;
	position: relative;
	padding-top: 40px;
	margin-bottom: -90px;
}

.container-tabs .tabs-header::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: calc(100% - 50px);
	width: 100%;
	background: url(/includes/public/assets/shared/tabbed-panel-grunge-mobile.png);
	mix-blend-mode: multiply;
	pointer-events: none;
	
}
.container-tabs .tabs-header::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: url(/includes/public/assets/shared/tabbed-panel-top.svg) top left, url(/includes/public/assets/shared/distressed-edge-dark-slate.svg) bottom -40px left repeat-x;
	pointer-events: none;
}

.container-tabs .tabs-header .title-cont {
	margin-bottom: var(--space-3);
	padding-top: 70px;
	width: 100%;
}

.container-tabs .tabs-header .title-cont .title {
	color: var(--text-color);
	text-align: center;
	font-family: var(--font-display-script);
	font-size: 45px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
}

.container-tabs .tabs-header .widget-subtitle {
	text-align: center;
	font-family: var(--font-display);
	font-size: .8687rem;
	font-style: normal;
	font-weight: 400;
	line-height: 0.8;
	text-transform: uppercase;
	letter-spacing: -.05em;
	color: var(--off-white);
}

.container-tabs .tabs-header .subtitle-cont {
	display: grid;
	grid-template-columns: auto minmax(max-content, 0.1fr) auto;
	align-items: center;
	gap: 10px;
	justify-items: center;
	margin-bottom: var(--space-8);
	max-width: 794px;
	margin-inline: auto;
}

.container-tabs .tabs-header .subtitle-cont .dotted-line {
	position: relative;
	min-width: 104px;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, var(--off-white) 50%, rgba(255,255,255,0) 0%);
	background-position: bottom;
	background-size: 3px 2px;
	background-repeat: repeat-x;
}

.container-tabs .tabs-header .subtitle-cont .dotted-line::before,
.container-tabs .tabs-header .subtitle-cont .dotted-line::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 3px;
	top: -1px;
	left: 0;
	background-color: var(--off-white);
	rotate: 135deg;
}

.container-tabs .tabs-header .subtitle-cont .dotted-line::after {
	left: unset;
	right: 0;
}

.container-tabs .tabs-header .subtitle-cont .texas {
	height: 17px;
	width: 17px;
}

.container-tabs .tabs-header .subtitle {
	display: flex;
	justify-content: center;
	gap: var(--space-1);
	align-items: center;
	position: relative;
	top: 4px;
}

/*Tabs*/
.container-tabs .tabs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-4);
}

.container-tabs .tabs button {
	padding: 0;
	background-color: transparent;
	width: max-content;
	font-size: 20px;
	font-style: italic;
	font-weight: 800;
	line-height: normal;
	text-transform: capitalize;
	text-decoration: underline 1px transparent;
	transition: text-decoration-color 300ms , color ease 300ms;
	text-underline-offset: 2px;
	color: var(--off-white);
}

.container-tabs .tabs li.active button,
.container-tabs .tabs li button:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

/* View All */
.container-tabs .tabs-footer .view-all {
	font-family: var(--font-body);
	display: inline-block;
	padding: var(--space-3) var(--space-6);
	font-weight: 800;
	font-size: var(--text-sm);
	text-transform: uppercase;
	font-style: italic;
	text-decoration: none;
	text-align: center;
	color: var(--sw-collections-read-more-color);
	background-color: var(--button-color);
	border-radius: 8px;
	transition: color var(--transition-appendix), background-color var(--transition-appendix);
}

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

@media (max-width: 374px) {
	.container-tabs .tabs-header .subtitle-cont .dotted-line { min-width: 84px; }
	.container-tabs .tabs-header .widget-subtitle { font-size: .625rem; }
}

@media (min-width: 64em) {
	.container-tabs .tabs-header .title-cont {
		margin-bottom: 40px;
		padding-top: 70px;
	}

	.container-tabs .tabs-header .title-cont .title { font-size: 6.25rem; }
	.container-tabs .tabs-header .widget-subtitle { font-size: 1.0625rem; }

	.container-tabs .tabs-header .subtitle-cont .texas {
		height: 22px;
		width: 22px;
		position: relative;
		top: -3px;
	}

	.container-tabs .tabs-header .subtitle-cont .dotted-line { background-size: 4px 2px; }

	.container-tabs .tabs-header .subtitle-cont .dotted-line::before, .container-tabs .tabs-header .subtitle-cont .dotted-line::after {
		width: 4px;
		height: 4px;
		top: -2px;
	}

	.container-tabs .tabs-header .subtitle-cont {
		margin-inline: auto;
		padding-inline: var(--space-5);
		margin-bottom: 47px;
	}

	.container-tabs .tabs button {
		font-size: 1.6875rem;
		padding-bottom: 32px;
	}

	.container-tabs .tabs { gap: 55px; }

	.container-tabs .tabs li.active button {
		text-decoration: underline 1px transparent;
		background: url(/includes/public/assets/shared/art-deco-decoration.svg) bottom 0 center no-repeat;
	}

	.container-tabs .tabs-header {
		background: linear-gradient(to top, var(--dark-gray) calc(100% - 30px), transparent 5%);
		padding-bottom: 275px;
		padding-top: 40px;
		margin-bottom: -225px;
	}

	.container-tabs .tabs-footer .view-all {
		padding: 15px 29px;
		font-size: var(--text-lg);
	}

	.container-tabs .tab-outer { margin-bottom: -50px; }
}