.edventure-notice {
	position: fixed;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 3vw, 2rem);
	z-index: 99999;
	box-sizing: border-box;
	width: min(28rem, calc(100vw - 2rem));
	max-height: calc(100vh - 2rem);
	max-height: calc(100dvh - 2rem);
	border: 0;
	border-radius: 0.75rem;
	background: #08aaa5;
	box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.25);
	color: #082f2e;
	font-family: inherit;
	overflow: hidden;
}

.edventure-notice[hidden] {
	display: none;
}

.edventure-notice__content {
	box-sizing: border-box;
	max-height: calc(100vh - 2rem);
	max-height: calc(100dvh - 2rem);
	padding: 1.5rem 3rem 1.5rem 1.5rem;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.edventure-notice__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	line-height: 1.4;
	text-transform: uppercase;
}

.edventure-notice__title {
	margin: 0 0 0.65rem;
	color: inherit;
	font-size: clamp(1.35rem, 4vw, 1.75rem);
	font-weight: 700;
	line-height: 1.15;
}

.edventure-notice__message {
	margin: 0;
	color: inherit;
	font-size: 1rem;
	line-height: 1.55;
}

.edventure-notice__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 1;
	display: grid;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-size: 1.75rem;
	line-height: 1;
	place-items: center;
}

.edventure-notice__close:hover,
.edventure-notice__close:focus-visible {
	background: rgba(255, 255, 255, 0.35);
}

.edventure-notice__close:focus-visible {
	outline: 0.15rem solid currentColor;
	outline-offset: 0.1rem;
}

@media (max-width: 37.5rem) {
	.edventure-notice {
		right: 1rem;
		bottom: 1rem;
		left: 1rem;
		width: auto;
	}

	.edventure-notice__content {
		padding: 1.25rem 2.75rem 1.25rem 1.25rem;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.edventure-notice {
		animation: edventure-notice-in 240ms ease-out both;
	}

	@keyframes edventure-notice-in {
		from {
			opacity: 0;
			transform: translateY(1rem);
		}
	}
}
