.phunk-cookie-wrapper {
	position: fixed;
	display: block;
	z-index: 9999;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0; 
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: cookieFadeIn;
	animation-duration: 0.5s;
	background-color: rgba(0, 0, 0, 0.5);
}

@keyframes cookieFadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

.phunk-cookie-modal {
	display: block;
	background-color: #fff;
	color: #000;
	padding: 2rem;
	width: 800px;
	max-width: 100%;
}

form[name=phunk-cookie] fieldset {
	border: 0;
	padding: 0;
	margin: 0;
	display: block;
}

form[name=phunk-cookie] input[type=submit],
a.phunk-cookie-submit-all {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: inline-block;
	cursor: pointer;
}