.pop-up {
	position: fixed;
	top: var(--header-height);
	right: 0;
	z-index: 40;
	width: fit-content;
	max-width: 468px;
	height: calc(100svh - var(--header-height));
	max-height: calc(100svh - var(--header-height));
	padding: var(--wp--preset--spacing--70);
	overflow-y: auto;
	border-left: 1px solid var(--wp--preset--color--custom-gris-clair);
	background-color: white;
	transition: all 0.5s ease-in-out;
	transform: translateX(100%);
}

@supports (height: 100dvh) {
	.pop-up {
		height: calc(100dvh - var(--header-height));
		max-height: calc(100dvh - var(--header-height));
	}
}

.pop-up.active {
	transform: translateX(0);
}

.pop-up__close {
	position: absolute;
	top: var(--wp--preset--spacing--30);
	left: var(--wp--preset--spacing--30);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--wp--preset--color--custom-gris-clair);
	border-radius: var(--wp--preset--spacing--80);
	background-color: white;
	font-size: 24px;
	color: var(--wp--preset--color--custom-bleu-fonc);
	transition: background-color 0.3s ease-in-out;
	cursor: pointer;
}

.pop-up__toggle {
	cursor: pointer;
}
