.eco-footer-accordion {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--40);
	padding: 24px 0 !important;
	margin: 0 !important;
}

/* .eco-footer-accordion + .eco-footer-accordion {
	border-top: 0;
} */

.eco-footer-accordion__heading > * {
	font-size: 14px;
	font-weight: 800;
	color: var(--wp--preset--color--primary);
}

.eco-footer-accordion__heading {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.eco-footer-accordion__heading:focus { outline: none }

.eco-footer-accordion__heading:hover { cursor: pointer }

.eco-footer-accordion a {
	display: flex;
	align-items: center;
	text-decoration: none !important;
}

.eco-footer-accordion a:hover {
	text-decoration: underline !important;
}

.eco-footer-accordion__heading::after,
.eco-footer-accordion__heading a::after {
    content: '';
    display: none;
    height: 20px;
    width: 20px;
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.9101 4.41073C7.23553 4.0853 7.76317 4.0853 8.08861 4.41073L13.0886 9.41073C13.414 9.73617 13.414 10.2638 13.0886 10.5892L8.08861 15.5892C7.76317 15.9147 7.23553 15.9147 6.91009 15.5892C6.58466 15.2638 6.58466 14.7362 6.91009 14.4107L11.3208 9.99999L6.91009 5.58925C6.58466 5.26381 6.58466 4.73617 6.9101 4.41073Z' fill='%230F695F'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
	transition: transform .3s ease-in-out;
}

.eco-footer-accordion__heading a::after {
	display: block;
}

/* content */
.eco-footer-accordion__content {
	display: flex;
	flex-direction: column;
	transition:  opacity .5s, max-height .25s;
	border-radius: 0 !important;
}

.eco-footer-accordion__content p {
	margin-top: 27px;
}

.eco-footer-accordion__content a {
    color: var(--wp--preset--color--contrast) !important;
    transition: all .3s ease-in-out;
}

.eco-footer-accordion__content > .eco-footer-accordion__content__mainlink {
	text-decoration: underline !important;
	text-underline-offset: 8px;
}

@media all and (max-width: 1024px) {
	.eco-footer-accordion {
		gap: 0;
		border-top: 1px solid var(--wp--custom--color--primary--100);
		border-bottom: 1px solid var(--wp--custom--color--primary--100);
	}

	.eco-footer-accordion--open {
		gap: var(--wp--preset--spacing--40);
	}

	.eco-footer-accordion__heading a::after {
		display: none;
	}

	.eco-footer-accordion__heading::after {
		display: block;
		transform: rotate(90deg);
	}

	.eco-footer-accordion--open .eco-footer-accordion__heading::after {
		transform: rotate(270deg);
		transform-origin: 10px 10px;
	}

	.eco-footer-accordion__content {
		display: none;
		max-height: 0;
		opacity: 0;
	}

	.eco-footer-accordion--open .eco-footer-accordion__content {
		display: flex;
		max-height: 500rem;
		opacity: 1;
	}
}