.cookie_warning_container {
	padding: 10px 10px;
	position: fixed;
	bottom: 0;
	left: 0;
	color: #fff;
	border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
	font-size: 15px;
	z-index: 10000;
	max-width: 40rem;
	width: 100%;
	display: flex;
	align-items: center;
}

.cookie_warning_Color {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.8;
	z-index: -1;
}

.cookie_text {
	position: relative;
	z-index: 20
}
.cookie_text a {
	color: #fff;
	text-decoration: underline;
}

.cookie_btn {
	position: relative;
	z-index: 20;
	padding-left: 2rem;	
}

#agree {
	display: flex;
	justify-content: center;
	border: 1px solid #fff;
	color: #fff;
	background: none;
}

#agree:hover {
	background: #fff;
	color: #000;
}

@media (max-width: 576px) {
	.cookie_warning_container {
	    max-width: 100%;
		display: flex;
		flex-direction: column;
		border-right: none;
	}
	.cookie_btn {
		padding-left: 0;
		padding-top: 1.5rem;
	}
}