#cookie_note{
	display: none;
	position: fixed;
	bottom: 15px;
	left: 50%;
	max-width: 90%;
	transform: translateX(-50%);
	padding: 20px;
	background-color: white;
	border-radius: 4px;
	box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
	max-height: 200px;
    overflow-y: scroll;
}

#cookie_note p{
	margin: 0;
	text-align: left;
	color: black;
	padding-top: 0;
	font-size: 0.8rem;
}

#cookie_note .cookie_accept{
	width:50%; padding: 6px; height: 32px; margin-top: 1.7rem; margin-left: 1rem; min-width: 100px;
}

@media (min-width: 576px){
	#cookie_note.show{
		display: flex;
	}
}

@media (max-width: 575px){
	#cookie_note.show{
		display: block;
		text-align: left;
	}
}
