.container-tabs {
	position: relative;
	padding: 72px var(--space-2) 0;
	margin: 0 auto var(--space-6);
	/* background: url(/includes/public/assets/shared/decorations/background_green.svg) no-repeat top 0% left;
    background-size: 100%; */

	--color: var(--sw-key-color);
	--color-hover: var(--primary-color-800);
	--text-color: #2D2F2F;
	--button-color: var(--color);
	--border-color: var(--gray-200);

	&::after {
		content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url(../svg/background_green.svg) no-repeat top 0 left -65px;
        z-index: -1;
        background-size: 272%;
	}
}

/* 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: flex-start;
	flex-direction: column;
    margin: 0 auto var(--space-4);
    padding: 0 var(--space-5);
    max-width: var(--width-base);
}

.container-tabs .tabs-header {
	margin: 0 auto var(--space-6);
	gap: var(--space-6);
}

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

.container-tabs .tabs-header .title-cont .title {
    font-family: var(--font-header);
    font-size: var(--text-2xl);
	line-height: 1.1;
    color: var(--text-color);
}

/*Tabs*/
.container-tabs .tab-cont {
	display: flex;
    align-items: center;
    gap: var(--space-2);
	overflow-x: auto;
    width: 100%;
    white-space: nowrap;

	&::-webkit-scrollbar {
		display: none;
	}

	i {
		color: var(--text-color);
	}
}

.container-tabs .tabs {
	display: flex;
    flex-direction: row;
    gap: var(--space-2);
}

.container-tabs .tabs button {
	padding: var(--space-2);
	background-color: transparent;
	font-size: var(--text-sm);
	line-height: 1;
	width: max-content;
	border-radius: 2rem;
	border: 1px solid #000;
	color: var(--text-color);
	transition: var(--transition-appendix);
}

.container-tabs .tabs li.active button {
	background-color: var(--text-color);
	color: var(--white);
}

/* View All */
.container-tabs .tabs-footer .view-all {
	display: inline-block;
	padding: var(--space-3) var(--space-6);
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: var(--font-weight-semibold);
	color: var(--gray-100);
	border-radius: var(--rounded-full);
	background-color: var(--button-color);
	text-decoration: none;
}

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

	.container-tabs .tabs li button:hover {
		background-color: var(--text-color);
		color: var(--white);
	}
}

@media (min-width: 64em) {
	.container-tabs {
		padding: 103px var(--space-2) 0;

		&::after {
			height: 82%;
			background: url(../svg/background_green.svg) no-repeat;
			background-size: cover;
		}
	}

	.container-tabs .tabs-header {
		margin: 0 auto var(--space-10);
		gap: 0;
		padding: 0;
	}

	.container-tabs .tabs-header .title-cont {
		margin-bottom: 0;
		max-width: 361px;
	}
	.container-tabs .tabs-header .title-cont .title {
		font-size: 2.5rem;
		margin-right: var(--space-8);
	}

	.container-tabs .tabs-header,
	.container-tabs .tabs-footer {
		flex-direction: row;
    	align-items: flex-end;
	}

	.container-tabs .tabs button {
		padding: var(--space-5) 1.375rem;
		line-height: 1;
		font-size: var(--text-base);
	}

	.container-tabs .tab-cont {
		overflow: hidden;
		> ul {
			flex-wrap: wrap;
		}
		
		i {
			display: none;
		}
	} 
}