.layer {
	background-color: #fff;
	display: none;
	inset: 0;
	margin-inline: auto;
	max-width: 2560px;
	overflow: auto;
	position: fixed;
	z-index: 10;
	width: 100%;
	height: 100%;
}

.layer.level-2 {
	z-index: 20;
}

.layer-open {
	display: block;
}

.layer-content {
	height: 100%;
	overflow: auto;
}

.disable-scroll {
	overflow-y: hidden;
}

.layer-button-close {
	background-color: var(--green-border);
	border: 0;
	top: 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%);
	color: white;
	cursor: pointer;
	font-family: 'Cresta';
	font-size: var(--font-size-22-16);
	padding: .6em 3em .6em 1.8em;
	position: fixed;
	right: 0;
	z-index: 10;
}

.layer-button-close::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg transform = 'rotate(45 50 50)' fill='%23fff'%3E%3Crect x='-12' y='41.5' width='124' height='17'/%3E%3Crect x='41.5' y='-12' width='17' height='124'/%3E%3C/g%3E%3C/svg%3E%0A");
	content: '';
	display: block;
	height: 1.2em;
	position: absolute;
	right: .8em;
	top: 50%;
	transform: translateY(-50%);
	width: 1.2em;
}
