.cookie--note{
	display: grid;
	visibility: hidden;
	grid-template-columns: 2fr auto 1fr 2fr;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	z-index: 99;
	background: var(--blue-dark);
	color: var(--white);
	padding: 10px;
	line-height: 1.0em;
	font-size: .8em;
	box-sizing: border-box;
}
.cookie--note.show{
	visibility: visible;
}
.cookie--note .cookie--button{
	padding               : 5px 10px;
	line-height           : 20px;
	display               : inline-block;
	text-align            : center;
	text-decoration       : none;
	font-weight           : 500;
	color                 : var(--white);
	outline               : medium none;
	background            : transparent;
	border                : 1px solid var(--white);
	cursor                : pointer;
	border-radius         : 50px;
	-moz-border-radius    : 50px;
	-webkit-border-radius : 50px;
	box-shadow            : 0 0 0 0 rgba(0,0,0,.5);
}
.cookie--note .cookie--button:hover{
	background: var(--white);
	color: var(--blue);
}
.cookie--note a,
.cookie--note a:active{
	color: var(--orange-lite);
	font-weight: 800;
}
.cookie--note a:hover{
	color: var(--orange);
}
.cookie--buttonblock{
	padding-top: 10px;
}

@media (max-width: 767px) {

	.cookie--note{
		grid-template-columns: 2% auto 19% 2%;
		padding: 5px;
	}

}