#cookie_notification{
	z-index: 10;
	display: none;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	bottom: 15px;
	left: 50%;
	width: 100%;
	max-width: 1122px;
	transform: translateX(-50%);
	padding: 30px 40px;
	background-color: #fff;
	border-radius: 0; 
	box-shadow: 0 0 5.3px #1B1B1B1F;
	font-weight:500;
}
#cookie_notification p {
	margin: 0;
	font-size: 14px;
	text-align: left;
}

#cookie_notification a {
	text-decoration: none;
	color: #098394;;
}

.button.cookie_accept {
	font-size: 14px;
	font-weight: 500;
	background: #098394;
	color: #fff;
	padding: 14px 33px;
	border: 0;
	transition: 0.4s;
	cursor: pointer;
	text-wrap-mode: nowrap;

}
.button.cookie_accept:hover {
	opacity: 0.8;
}
@media (min-width: 576px){
	#cookie_notification.show{
		display: flex !important;
	}
	.cookie_accept{
		margin: 0 0 0 25px;
	 }
}
@media (max-width: 575px){
	#cookie_notification.show{
		display: block;
		text-align: left;
	}
	.cookie_accept{
		margin: 10px 0 0 0;
	}
}