
/* components/_modal-solutions.css */

.js-solutions-modal[aria-expanded=true] {
	display: block;
}
.js-solutions-modal[aria-expanded=false] {
	display: none;
}
.c-modal-solutions { display: none;
	position: fixed;
	top: 40px;
	left: 0;
	z-index: 99;
	background-color: rgba(255,255,255,0.98);
	padding-bottom: 120px;
	min-height: 100vh;
}
.c-modal-solutions__link-more {
	text-align: center;
	margin-top: 10px;
	margin-inline: auto;
	display: block;
	font-size: calc( 1rem * 24 / 20 );
	line-height: calc( 100% * 40 / 24 );
	color: var(--color-grey-200);
}
.c-modal-solutions__close {
	appearance: none;
	border: 0;
	background-color: transparent;
	width: 100px;
	height: 100px;
	position: absolute;
	top: 20px;
	right: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
	.c-modal-solutions__close img {
		width: 50px;
		height: 50px;
	}




	