#cookie_notification{
		z-index: 9999999999999;
		display: none;
		justify-content: space-between;
		align-items: flex-end;
		position: fixed;
		bottom: 15px;
		left: 50%;
		width: 900px;
		max-width: 90%;
		transform: translateX(-50%);
		padding: 25px;
		background-color: white;
		border-radius: 4px;
		box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
	}

	#cookie_notification p{
		margin: 0;
		font-size: 0.85rem;
		text-align: left;
		color: #252b33;
	}

	#cookie_notification p a{
		color: #005693;
		text-decoration: underline;
	}
	.cookie_accept_custom {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background-color: #39434E;
		border: none;
		color: #e5e5e5;
		text-decoration: none;
		padding: 15px 40px;
		white-space: nowrap;
		cursor: pointer;
		border-radius: 4px;
		max-width: 100%;
		transition: all 0.1s linear;
	}
	@media (min-width: 576px){
		#cookie_notification.show{
			display: flex;
		}
		.cookie_accept{
			margin: 0 0 0 25px;
		}
	}
	@media (max-width: 575px){
		#cookie_notification.show{
			display: block;
			text-align: left;
		}
		.cookie_accept{
			margin: 15px 0 0 0;
		}
	}