@keyframes cookiesshowholo {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes cookiesmoveup {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cookiesremoveholo {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes cookiesmovedown {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(20px);
	}
}

.cookiesremove {
	animation: cookiesremoveholo 0.2s ease !important;
}

.cookiesremove > div {
	animation: cookiesmovedown 0.2s ease !important;
}

.cookieoptionlabel {
	margin-top: 0.7rem;
	font-size: 2rem;
	line-height: 2.3rem;
	user-select: none;
	-ms-user-select: none;
}

.cookiefinish {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
}

.cookiehead {
	font-size: 2rem;
	font-weight: bold;
}

#cookiecontainer label {
	padding: 1rem;
}

.cookiebtn {
	font-size: 1.8rem;
	line-height: 1.8rem;
	margin: 1rem !important;
	padding: 1rem;
	border: none;
	background-color: #FF9900;
	color: white !important;
	font-weight: bold;
	text-decoration: none !important;
	cursor: pointer;
}

#cookiemeta {
	position: fixed;
	z-index: 4;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	overflow: auto;
	animation: cookiesshowholo 0.2s ease;
}

#cookiecontainer > * {
	width: 100%;
}

#cookiecontainer * {
	flex-shrink: 0;
	margin-left: auto;
	margin-right: auto;
}

#cookiecontainer {
	flex-shrink: 0;
	flex-basis: auto;
	flex: 1 1 auto;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1.5rem;
	height: auto;
	width: auto;
	max-width: 80rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 60rem;
	overflow: visible;
	border: thin solid gray;
	border-radius: 5px;
	padding: 1rem;
	background-color: white;
	animation: cookiesmoveup 0.2s ease;
}

@media screen and (max-width:44rem) {
	#cookiecontainer {
		min-width: unset;
		max-width: 100%;
	}

	#cookiecontainer * {
		font-size: 1.5rem;
		line-height: 1.8rem;
	}

	.cookiebtn {
		padding: 0.5rem 1rem;
	}
}
