.eco-big-carrousel__parent {
	position: relative;
	width: 100%;
	max-width: 1600px !important;
	margin-top: 25px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	overflow: hidden;
}

.eco-big-carrousel__switch {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 520px;
	padding: 16px 4px;
	margin: auto;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 800;
	text-align: center;
	background-color: var(--wp--custom--color--primary--100);
	border: none;
	border-radius: 32px;
	cursor: pointer;
}

.eco-big-carrousel__switch::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: calc(50% - 8px);
	height: calc(100% - 8px);
	background-color: var(--wp--custom--color--neutral--050);
	border-radius: 32px;
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.eco-big-carrousel__switch--active::after {
	left: calc(50% + 4px);
}

.eco-big-carrousel__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	width: 100%;
	padding: 0;
	font-weight: 700;
	color: var(--wp--preset--color--primary);
}

.eco-big-carrousel__btn {
	padding: 8px 16px;
	list-style: none;
	border: 1px solid var(--wp--preset--color--neutral-300);
	border-radius: 24px;
	background-color: var(--wp--preset--preset--base);
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.eco-big-carrousel__btn:hover {
	border-color: var(--wp--preset--color--primary);
}

.eco-big-carrousel__btn--active {
	background-color: var(--wp--custom--color--primary--100);
}

.eco-big-carrousel__switch-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 100%;
	color: var(--wp--preset--color--primary);
	border-radius: 32px;
	z-index: 1;
}

.eco-big-carrousel__switch-item:nth-of-type(2) {
	color: var(--wp--custom--color--primary--400);
}

.eco-big-carrousel__switch--active .eco-big-carrousel__switch-item {
	color: var(--wp--custom--color--primary--400);
}

.eco-big-carrousel__switch--active .eco-big-carrousel__switch-item:nth-of-type(2) {
	color: var(--wp--preset--color--primary);
}

.eco-big-carrousel__slides {
	display: none;
	max-width: 100vw;
	padding: 35px 0;
	margin: 0;
	transition: all 0.3s ease-in-out;
	overflow-x: scroll;
	scroll-behavior: smooth;
}

.eco-big-carrousel__slides--active {
	display: flex;
}

.eco-big-carrousel__slides::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0); 
    -webkit-border-radius: 4px;
    border-radius: 4px;
	background: transparent;
	cursor: pointer;
}

.eco-big-carrousel__slides::-webkit-scrollbar-track {
	margin-left: 250px;
	margin-right: 250px;
    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0); 
    -webkit-border-radius: 4px;
    border-radius: 4px;
	background: #DAE9E7;
	cursor: pointer;
}

.eco-big-carrousel__slides::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #87B4AF;
    height: 4px; 
	cursor: pointer;
}

.eco-big-carrousel__slides::-webkit-scrollbar-thumb:hover {
	background: #0F695F; 
}

.eco-big-carrousel__slides::-webkit-scrollbar-corner {
	display: none; 
	height: 0px; 
	width: 0px; 
}

.eco-big-carrousel__slide {
	display: flex;
	flex-direction: column;
	width: 544px;
	min-width: 544px;
	margin-left: var(--wp--preset--spacing--50);
	font-size: var(--wp--preset--font-size--m);
	list-style: none;
	color: var(--wp--preset--color--primary);
	cursor: pointer;
}

.eco-big-carrousel__slide:last-of-type {
	margin-right: var(--wp--preset--spacing--50);
}

/* Images */
.eco-big-carrousel__figure {
	height: 600px;
	width: 100%;
	margin: 0;
	border-radius: 36px;
	overflow: hidden;
}

.eco-big-carrousel__image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.eco-big-carrousel__slide:hover .eco-big-carrousel__image {
	transform: scale(1.05);
}

.eco-big-carrousel__caption {
	color: var(--wp--preset--color--contrast)!important;
	padding-left: var(--wp--preset--spacing--60);
}

.eco-big-carrousel__informations {
	position: relative;
	padding: var(--wp--preset--spacing--40) var(--wp--preset--spacing--110) var(--wp--preset--spacing--40) var(--wp--preset--spacing--20);
}

.eco-big-carrousel__title {
	margin: 10px 0;
	font-size: 24px;
	font-weight: 900;
}

.eco-big-carrousel__text {
	font-size: 20px;
}

.eco-big-carrousel__arrows {
	position: absolute;
	top: 50%;
	left: 0;
	display: none;
	justify-content: space-between;
	width: calc(100% - var(--wp--preset--spacing--70) * 2);
	margin: 0 var(--wp--preset--spacing--70);
	opacity: 0;
	transform: translateY(-50%);
	transition: opacity 0.3s ease-in-out 0.3s;
	pointer-events: none;
	z-index: 1;
}

.eco-big-carrousel__arrows--active {
	display: flex;
}

.eco-big-carrousel__arrows:hover,
.eco-big-carrousel__parent:hover .eco-big-carrousel__arrows {
	opacity: 1;
}

.eco-big-carrousel__arrow {
	pointer-events: all;
	cursor: pointer;
}

.eco-big-carrousel__arrow--prev {
	transform: scaleX(-1);
}

@media all and (max-width: 768px) {
	.eco-big-carrousel__slides::-webkit-scrollbar-track {
		margin-left: 0;
		margin-right: 0;
	}

	.eco-big-carrousel__slide {
		width: 315px;
		min-width: 315px;
		font-size: var(--wp--preset--font-size--s);
	}

	.eco-big-carrousel__figure {
		height: 315px;
	}
}