.cookie-consent {
	position: fixed;
	height: auto;
	bottom:0;
	left:0;
	z-index: 99;
	background:#fff;
	color:#000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s;
	width: 100%;
	padding:10px;
	font-size:14px;
	border-top:1px solid #666;
}

.cookie-consent.visible {
	opacity: 1;
	pointer-events: initial;
}

.cookie-consent p {
	margin-bottom:1em;
}

.cookie-consent .button {
	padding:10px 25px;
}

.cookie-consent .button.button-light {
	background:#eee;
	border:1px solid #ddd;
}

.cookie-consent #cookie-tablist-content {
	max-height:15vh;
	overflow-y: auto;
}

#cookie-details-toggle .top-border {
	padding-top:15px;
	border-top:1px solid #ddd;
}

.cookie-consent .active .dropdown-toggle::after {
	transform: rotate(180deg);
}