.tracking-consent-message {
	display: none; /* Don't show until we know the user hasn't given consent */
	position: fixed;
	bottom: 0;
	left: 0;
	font-size: 90%;
	width: calc( 100% - 20px );
	z-index: 1;
	background: white;
	box-sizing: border-box;
	padding: 15px;
	margin: 10px;
	text-align: center;
	border-radius: 4px;
	box-shadow: 0 0 20px 20px rgba( 0, 0, 0, 0.2 );
}
.tracking-consent-message p {
	margin: 0.2em auto 0.6em;
}
.tracking-consent-message .more-tracking-details {
	display: none;
	margin: 1em auto;
	max-width: 65ch;
	font-size: 90%;
}
.tracking-consent-message .show-more-tracking-details::after {
	content: '▾';
}
.tracking-consent-message .show-more-tracking-details.expanded::after {
	content: '▴';
}
.dormant-tracking-code {
	display: none;
}
.stop-using-tracking-cookies-para {
	text-align: center;
	font-size: 90%;
	margin: 0.5em;
	display: none;
}
.tracking-consent-message button {
	border: 2px solid currentColor;
	border-radius: 5px;
	padding: 0.4em 1.2em;
	font-size: 110%;
}
.tracking-consent-message button:hover {
	cursor: pointer;
}