#cookie_notification{
	display: none;
	justify-content: space-between;
	align-items: flex-end;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background:rgba(0, 0, 0, 0.83);
	z-index: 1000;
	color: white;
	line-height: 1.4;
    padding: 20px 25px 25px 25px;
	border-radius: 5px;
}
#cookie_notification a {
    text-decoration: underline;
    color: #ec4a4a;
	cursor: pointer;
}
#cookie_notification p{
	margin: 0;
	font-size: 0.85rem;
	text-align: left;
	padding: 5px 0 20px 0;
}
#cookie_notification p:first-child {
    padding: 5px 0 5px 0;
}
#cookie_notification p:nth-child(2) {
    padding: 5px 0 15px 0;
}
@media (min-width: 992px){
	#cookie_notification.show{
		display: flex;
		flex-direction: column;
		align-items: self-start;
		bottom: 40px;
		left: 40px;
		width: 350px;
		padding: 25px;
		background: rgb(255 255 255);
		z-index: 1000;
		color: #000000;
		border: 1px solid #e0e0e0;
		box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
	}
}
@media (max-width: 991px){
#cookie_notification.show{
	display: block;
	text-align: left;
}
}