.purple-cookie-info {
	z-index: 1000001;
	color: white;
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	transition: all 0.3s ease;
	transform: translateY(100%);
	padding: 5px 10px;
	text-align: center;
	box-sizing: border-box;
	line-height: 1.4;
}

.purple-cookie-info a, .purple-cookie-info a:visited {
	color: white;
	text-decoration: underline;
}

.purple-cookie-info button {
	border: 1px solid white;
	outline: none;
	border-radius: 20px;
	min-width: 90px;
	height: 40px;
	color: white;
	font-size: 1em;
	padding: 10px;
	margin: 5px 15px;
	background-color: transparent;
}

.purple-cookie-info button:active {
	background-color: white;
	color: #555;
}

.purple-cookie-info-visible {
	background-color: #555;
	transform: translateY(0);
}