<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


.cookie-alert{
	display: none;
	position: fixed;
	bottom: 20px;
	left:20px;
	width: 600px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	padding: 32px 32px 24px;
	line-height: 24px;
	font-size: 14px;
}
.cookie-alert .links{
	color: rgb(28, 99, 165);
	text-decoration: underline;
	cursor: pointer;
}
.cookie-alert-btn-box{
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}
.cookie-alert-btn{
	color: #fff;
	background: #333;
	text-align: center;
	border-radius: 8px;
	padding: 6px 15px;
	line-height: 24px;
	font-size: 14px;
	cursor: pointer;
}
.cookie-alert-btn:hover{
	background: rgba(0, 0, 0, 0.7);
}
.cookie-alert-close-icon{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
@media screen and (max-width:600px) {
	html{
		/* font-size: calc(100vw / 375); */
	}
	.cookie-alert{
		width: 21.5625rem;
		border-radius: 0.625rem;
		box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
		padding: 1.625rem 1.625rem 1.25rem;
		line-height: 1.5rem;
		font-size: 0.875rem;
		
		top: 50vh;
		left:50vw;
		transform: translate(-50%,-50%)
	}
	.cookie-alert-btn-box{
		margin-top: 1.25rem;
		justify-content: center;
	}
	.cookie-alert-btn{
		border-radius: 0.5rem;
		padding: 0.375rem 0.9375rem;
		line-height: 1.5rem;
		font-size: 0.875rem;
	}
	.cookie-alert-close-icon{
		top: 0.625rem;
		right: 0.625rem;
		width: 1rem;
		height: 1rem;
	}
}</pre></body></html>