#cookie_note{
	display: none;
	flex-direction: column;
	gap: 16px;
	position: fixed;
	bottom: 37px;
	left: 50%;
	width: 1036px;
	max-width: 90%;
	transform: translateX(-50%);
	padding: 25px;
	box-sizing: border-box;
	background-color: white;
	border-radius: 25px;
	box-shadow: 0px 1px 17px rgba(194, 199, 211, 0.6);
	z-index: 10;
}
#cookie_note p {
	margin: 0;
	font: 400 16px/140% aktiv-grotesk;
	text-align: left;
	color: #333333;
}
#cookie_note a {
	color: #333333;
	text-decoration: underline;
}
#cookie_note a:hover {
	color: #32436a;
}
#cookie_note div {
	margin-top: 20px;
}
#cookie_note button {
	width: 175px;
	height: 50px;
	box-sizing: border-box;
	color: #ffffff;
	font: 400 16px/48px aktiv-grotesk;
	background-color: #32436a;
	border: none;
	border-radius: 1000px;
	cursor: pointer;
}
#cookie_note button.cookie_accept {
}
#cookie_note button.cookie_no {
	margin-left: 10px;
	background: #fff;
	border: solid 1px #32436a;
	color: #32436a;
}

@media (max-width: 1200px){
    #cookie_note.show{
        width: 90%;
    }
}
@media (max-width: 480px){
	#cookie_note button {
		width: 127px;
	}
}
@media (min-width: 480px){
    #cookie_note.show{
        display: flex;
    }
}
