:root {
	--text-color: white;
	--link-color:#0E73C3;
	--primary-color: #0E73C3;
}

.ps-cookie-popup {
	display:none;
	position:fixed;
	right:15px;
	bottom:15px;
	z-index:999999999999;
	max-width:275px;
	background-color:white;
	border-radius:3px;
	box-shadow:0px 3px 6px rgba(0,0,0,0.2);
}

.ps-cookie-popup header {
	position:relative;
	background-color: var(--primary-color);
	color: var(--text-color);
	border-top-left-radius:3px;
	border-top-right-radius:3px;
}

.ps-cookie-popup header h2 {
	font-size:18px;
	margin:0px;
	padding:10px 20px;
}

.ps-cookie-popup header .close {
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	right:15px;
	background-color:transparent;
	color: var(--text-color);
	padding:0px;
	font-weight:bold;
	border:0px;
}

.ps-cookie-popup header .close:hover {
	cursor:pointer;
}

.ps-cookie-popup .body {
	padding:20px;
}

.ps-cookie-popup .body p {
	margin-top:0px;
	font-size:14px;
}

.ps-cookie-popup .body button {
	display:block;
	width:100%;
	background-color:var(--primary-color);
	color:white;
}

.ps-cookie-popup .body button:hover {
	cursor:pointer;
}

.ps-cookie-popup .body a {
	color:var(--link-color);
}

.ps-cookie-popup .body .agree {
	margin-bottom:10px;
}


