.crcesu_tab_faq {
	width: 100%;
	box-shadow: 0px 0px 20px rgba(70,79,83,0.2);
	border-radius: 35px;
	margin-bottom: 20px;	
}

/* Filtres */

.titles_filters {
	font-weight: 600;
}

.crcesu_filters_single {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.crcesu_filters_single ul.wpgb-hierarchical-list {
	display: flex;
    align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.crcesu_filters_single ul.wpgb-hierarchical-list li {
	margin: 0 !important;
}

.crcesu_filters_single .wpgb-search-facet .wpgb-input {
	border: 2px solid #dbdbdb !important;
    border-radius: 30px !important;
    padding: 10px 40px !important;
    height: auto !important;
    font-family: 'DM Sans' !important;
}

.crcesu_filters_single .wpgb-search-facet .wpgb-input-icon {
	left: 5px;
}

.crcesu_filters_single > .wpgb-facet {
	width: 100%;
}

.crcesu_filters_single .wpgb-facet.wpgb-facet-1 > fieldset {
	margin-bottom: 25px;
}

.crcesu_filters_single .wpgb-facet.wpgb-facet-2 > fieldset {
	margin-bottom: 30px;
}

/* header */

.crcesu_tab_faq_label {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	align-items: center;
	padding: 5px 80px 5px 40px;
	background-color: var(--color_blue);
	border-radius: 35px;
	position: relative;
	height: 63px;
}

.crcesu_tab_faq_label div {
	position: relative;
	font-size: 1rem;
}

.crcesu_tab_faq input {
	display: none;
}

.crcesu_tab_faq_label::after {
	content: "";
	width: 26px;
	height: 15px;
	-webkit-mask: url('/wp-content/uploads/2023/02/link-arrow.svg') no-repeat;
	mask: url('/wp-content/uploads/2023/02/link-arrow.svg') no-repeat;
	display: block;
	transition: .3s;
	background-color: var(--color_blue);
	position: absolute;
	right: 16px;
}

.crcesu_tab_faq_label::before {
	content: "";
    width: 63px;
    height: 63px;
    background-color: var(--color_light_blue);
    position: absolute;
    right: -1px;
    border-radius: 50%;
}

input:checked+.crcesu_tab_faq_label::after {
	transform: rotate(90deg);
}

/* Content */

.tab-content {
	max-height: 0;
	background: white;
	opacity: 0;
	height: 0;
	padding: 0px 90px 0 40px;
    border-bottom-left-radius: 35px;
	border-bottom-right-radius: 35px;
	overflow: hidden;
}

input:checked~.tab-content {
	max-height: 1000px;
	min-height: 50px;
	opacity: 1;
	transition: all 0.3s ease-in;
	height: 100%;
	padding-top: 30px;
    padding-bottom: 40px;
}

/* .tab-content p {
	margin: 0;
} */

.tab-content a {
	color: var(--color_dark_grey);
	text-decoration: underline;
}

@media screen and (max-width: 768px) {

	.tab-content {
		padding: 0px 40px 0 40px;
	}

}

@media screen and (max-width: 480px) {

	.crcesu_tab_faq_label {
		padding: 5px 80px 5px 30px;
	}

	.crcesu_tab_faq_label div {
		font-size: 0.85rem;
	}

	.tab-content {
		padding: 0px 30px 0 30px;
	}

	.crcesu_tab_faq_label {
		height: 80px;
		border-radius: 50px;
	}

	.crcesu_tab_faq_label::before {
		width: 80px;
		height: 80px;
	}

	.crcesu_tab_faq_label::after {
		right: 25px;
	}

	.crcesu_tab_faq {
		border-radius: 50px;
	}

}