 .section_accordion .layout_mirror > *:last-child
{
	order: -1;
}
.section_accordion .section_contener
{
/*	--section_contener_max_width: 1620px; */
}

.section_accordion .squeezebox
{
	--min_icon_width: 48;
	--max_icon_width: 64;
	--icon_width:
		clamp(calc(var(--min_icon_width) * 1px),
		calc((((-1 * var(--global_scm_var)) * ((var(--max_icon_width) - var(--min_icon_width)) / (var(--global_sc_var) - var(--global_scm_var))) + var(--min_icon_width)) * 1px)
		+ ((var(--max_icon_width) - var(--min_icon_width)) / (var(--global_sc_var) - var(--global_scm_var)) * 100vw)),
		calc(var(--max_icon_width) * 1px));
/*	background-color: var(--root_color_light_grey);
	border-radius: 20px; */
	border-top: 1px solid #dfdfe0;
}

.section_accordion .squeezebox .squeezebox_contener
{
	display: grid;
	grid-template-rows: 0fr;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
/*	box-shadow: 0 0 0 100vmax #f7f5f4;
	clip-path: inset(0 -100vmax);
	background-color: #f7f5f4; */
/*	border-bottom: 1px solid var(--root_color_black); */
}

.section_accordion .squeezebox.is_open .squeezebox_contener
{
	grid-template-rows: 1fr;
}

.section_accordion .squeezebox .squeezebox_contener > div
{
	overflow: hidden;
}

.section_accordion .squeezebox .squeezebox_title
{
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
/*	padding-left: var(--global_size_30); */
/*	padding-right: var(--global_size_30); */
/*	border-bottom: 1px solid var(--global_color_lead); */
	padding-top: var(--global_size_40);
	padding-bottom: var(--global_size_40);
/*	border-bottom: 1px solid var(--root_color_black); */
}

.section_accordion .squeezebox.is_open .squeezebox_title
{
/*	border-bottom-color: transparent; */
}

.section_accordion .squeezebox .squeezebox_title .title_inner
{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
/*	max-width: 1200px; */
	font-size: calc(var(--global_font_size_h3) * 1);
	color: var(--root_color_dark);
	font-weight: 500;
}

.section_accordion .squeezebox .squeezebox_title .icon
{
	min-width: var(--icon_width);
	width: var(--icon_width);
	height: var(--icon_width);
	margin-left: var(--global_size_20);
	display: grid;
	align-items: center;
	justify-content: center;
/*	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='64' height='65' viewBox='0 0 64 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_535_10957)'%3e%3cpath d='M32 56.5C45.2548 56.5 56 45.7548 56 32.5C56 19.2452 45.2548 8.5 32 8.5C18.7452 8.5 8 19.2452 8 32.5C8 45.7548 18.7452 56.5 32 56.5Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M22 32.5H42' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M34 24.5L42 32.5L34 40.5' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_535_10957'%3e%3crect width='64' height='64' fill='white' transform='translate(0 0.5)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e"); */
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* .section_accordion .squeezebox .squeezebox_title .icon::before
{
	content: '';
	width: var(--icon_width);
	height: 2px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: var(--root_color_dark);
	grid-column: 1/2;
	grid-row: 1/2;
} */

.section_accordion .squeezebox .squeezebox_title .icon::after
{
	content: '';
	width: calc(var(--icon_width) * 0.78125);
	height: 2px;
	height: calc(var(--icon_width) * 0.78125);
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: var(--root_color_dark);
	background-color: transparent;
/*	grid-column: 1/2;
	grid-row: 1/2; */
/*	transform: rotate(90deg); */
	border: 1px solid var(--root_color_black);
	border-radius: 50%;
/*	z-index: -1; */
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_535_10931)'%3e%3cpath d='M22 32H42' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M34 24L42 32L34 40' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_535_10931'%3e%3crect width='64' height='64' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: contain;
}

.section_accordion .squeezebox.is_open .squeezebox_title .icon
{
	transform: rotate(90deg);
}

.section_accordion .squeezebox.is_open .squeezebox_title .icon::after
{
	transform: rotate(180deg);
	transform: rotate(0deg);
	background-color: #f6f0e7;
	border-color: transparent;
}

.section_accordion .squeezebox .squeezebox_content
{
	padding-top: var(--global_size_30);
	padding-top: 0;
	padding-bottom: var(--global_size_40);
/*	padding-left: var(--global_size_30); */
	padding-right: calc(var(--icon_width) + var(--icon_width) + var(--global_size_20));
	display: flex;
	justify-content: center;
}

.section_accordion .squeezebox .squeezebox_content > *
{
	width: 100%;
	max-width: 1200px;
}

.section_accordion .squeezebox .squeezebox_content .heading 
{
	font-size: var(--global_font_size_h4);
	display: none;
}

/**********************************************************************************/

@media screen and (max-width: 1680px)
{
}

@media screen and (max-width: 1600px)
{
}

@media screen and (max-width: 1440px)
{
}

@media screen and (max-width: 1366px)
{
}

@media screen and (max-width: 1300px)
{
}

@media screen and (max-width: 1200px)
{
}

@media screen and (max-width: 1024px)
{
	.section_accordion .squeezebox .squeezebox_title .title_inner
	{
		font-size: calc(var(--global_font_size_h5) * 1);
	}

	.section_accordion .squeezebox .squeezebox_content
	{
		padding-right: 0;
	}
}

@media screen and (max-width: 800px)
{
}

@media screen and (max-width: 640px)
{
}

@media screen and (max-width: 480px)
{
}

@media screen and (max-width: 360px)
{
}