
.cookie-consent {
	position: fixed;
	bottom: 12px;
	left: 12px;
	right: 12px;
	background-color: #222;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.9);
	text-align: left;
	padding: 12px 60px 12px 12px;
	z-index: 999999;
	font-size: 10px;
	line-height: 1.25;
	letter-spacing: 0.0625em;
}

@media (min-width: 45em) {
	.cookie-consent {
		left: 20%;
		right: 20%;
	}
}

.cookie-consent__button {
	color: rgba(255, 255, 255, 0.9);
	border-radius: 0;
	display: inline-block;
	text-decoration: underline;
}

.cookie-consent__button--close {
	position: absolute;
	right: 0;
	top: 0;
	width: 48px;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	text-indent: -999px;
	overflow: hidden;
	border-left: 1px solid #444;
	background: url('yacc-close.png') center center no-repeat;
	background-size: 50%;
}

.cookie-consent__button:hover {
	color: #ccc;
	cursor: pointer;
}
.cookie-consent__button--close:hover {
	background-color: #333;
}
.cookie-consent__link {
	color: rgba(255, 255, 255, 0.9);
}
.cookie-consent__link:hover {
	color: #ccc;
}

.cookie-consent-nocookies {
	position: fixed;
	bottom: 12px;
	left: 12px;
	right: 12px;
	background-color: red;
	opacity: 0.9;
	color: #fff;
	text-align: center;
	padding: 24px;
	z-index: 999999;
	font-size: 10px;
	letter-spacing: 0.0625em;
}
@media (min-width: 45em) {
	.cookie-consent-nocookies {
		left: 15%;
		right: 15%;
	}
}

/* Codice usato nella pagina privacy per formattare tabella cookie */

.table--cookie {
	border: 1px solid #ccc;
	border-collapse: collapse;
	font-size: 1em;
}
.table--cookie .table--responsive {
}
.table--cookie .table__head {
}
.table--cookie .table__body {
}
.table--cookie .table__row {
	border-bottom: 1px solid #ccc;
	border-collapse: collapse;
}
.table--cookie .table__cell {
	padding: 6px 12px;
}
.table--cookie .table__cell--head {
	text-align: left;
	font-weight: normal;
	background-color: #000;
	color: #fff;
}
.table--cookie .table__cell--w15 {
	width: 15%;
}
.table--cookie .table__cell--w25 {
	width: 20%;
}
.table--cookie .table__cell--w25 {
	width: 25%;
}
.table--cookie .table__cell--w25 {
	width: 40%;
}
.table--cookie .table__cell--w45 {
	width: 45%;
}
.table--cookie .table__cell--w45 {
	width: 60%;
}

/* Animation */

.animate-slide-in-up {
	animation-duration: 0.8s;
	animation-fill-mode: both;
	animation-name: slide-in-up;
}
.animate-slide-in-down {
	animation-duration: 0.8s;
	animation-fill-mode: both;
	animation-name: slide-in-down;
}

@keyframes slide-in-up {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slide-out-down {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}
