.noticePopup
{
	position: fixed;
	top: 0;
	bottom: 0;
	z-index:999;
	border: 0;
	padding: 0;
	overflow: initial;
	box-shadow: 0 0 5px #0005;
}
.noticePopup img
{
	max-height: 80vh;
	max-width: 80vw;
	width: auto;
	height: auto;
}

::backdrop
{
	background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
	backdrop-filter: blur(5px); /* Optional blur effect */
}

.noticePopup .close
{
	position: absolute;
	top: -10px;
	right: -10px;
	border: 0;
	padding: 0;
	background: #FFF;
	box-shadow: 0 0 5px #0005;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
