#aviso_cookie {
	width: 900px;
	background: rgb(255,226,146,100%);
	border: 1px solid #D2691E;
	xbox-shadow: 0 0 20px rgb(191,167,100,100%);
	box-shadow: 0 0 10px rgb(150,150,150,100%);
	border-radius: 15px;
	padding: 10px;
	z-index: 50;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translatex(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#aviso_cookie_mensagem {
	width: 100%;
	padding: 10px;
}

#aviso_cookie_botao {
	margin: 10px;
	padding: 10px;
	width: 150px;
	border: 1px;
	border-radius: 5px;
	background: #64bc7c;
	color: white;
	xbox-shadow: 0 0 8px rgb(39,17,63,50%);
	cursor: pointer;
}

#aviso_cookie_botao:hover {
	font-weight: bold;
	background: #2e610f;
}

@media(max-width: 1024px) {
	
	#aviso_cookie {
		width: 90%;
	}
	
}

@media(max-width: 768px) {
	
	#aviso_cookie {
		width: 90%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
}