.notice {
	position: fixed;
	left: 0;
	bottom: -100px;
	width: 100%;
	background: rgba(0,0,0,0.6);
	-webkit-backdrop-filter: saturate(180%) blur(5px);
	backdrop-filter: saturate(180%) blur(5px);

	z-index: 9;
	cursor: pointer;

	max-width: 1600px;
	min-width: 900px;

	width: auto;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50px;
	line-height: 1;

	transition: all 600ms;
}
.notice.show {
	bottom: 30px;
}
.notice .notice-content {
	width: 100%;
	text-align: center;
	color: var(--background);
	padding: 30px 0;
	font-size: .8em;
	cursor: pointer;
	font-weight: 300;

}
.notice .notice-content .notice-content-text {
	padding: 0 40px;
	padding-right: 80px;
	position: relative;
}
.notice .notice-content .notice-content-text a {
	color: var(--background);
	text-decoration: underline;
}
.notice .notice-content .close {
	position: absolute;
	right: 40px;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(33deg) brightness(113%) contrast(100%);

	cursor: pointer;
}



@media screen and (max-width: 1100px) {

	.notice {
		width: 90%;
		line-height: 1.6;
		border-radius: 10px;
		min-width: 0px;
	}
	.notice .notice-content {
		font-size: .9em;
		padding: 20px 0;
		text-align: left;
	}
	.notice .notice-content .notice-content-text {
		padding-left: 20px;
		padding-right: 50px;
	}
	.notice .notice-content .close { 
		top: 20px;
		right: 20px;
		margin: 0;
	}
}