@charset "utf-8";

.bar {
	display: none;
}

.cookie_bar {
	background-color: #adcacb;
	color: white;
	padding-bottom: 1em;
	padding-top: 1em;
}

#chiudi_cookie {
	background-color: #f1bc8a !important;
	color: white !important;
	font-weight: 600 !important;
}

#chiudi_cookie:hover {
	color: #f1bc8a !important;
	background-color: #F7F6F5 !important;
}

/*Comprendo:
telefoni
tablet con orientamento verticale
telefoni larghi*/
@media only screen and (max-width: 767px) {
	.cookie_bar {
		background-color: #adcacb;
		color: white;
		padding-bottom: 1em;
		padding-top: 1em;
	}
	#chiudi_cookie {
		margin-top: 1em;
	}
}

/*Comprendo:
tablet orientamento orizzontale*/
@media only screen and (min-width: 768px) and (max-width: 992px) {
	.cookie_bar {
		background-color: #adcacb;
		color: white;
		padding-bottom: 1em;
		padding-top: 1em;
	}
	#chiudi_cookie {
		margin-top: 1em;
	}
}