@charset "utf-8";

/* da 0 a 320px*/
@media only screen and (min-width: 0px) {
	.fascia-avviso-coockie {
		position: fixed;
		bottom: 0;
		z-index: 10;
	}
	.contenitore-avviso-coockie {
		max-width: inherit;
		border-top-width: 1px;
		border-top-style: solid;
	}
	.testo-avviso-coockie {
		font-size: 10px !important;
		text-align: center!important;
	}
	.link-testo-avviso-cookie {}
	.button-avviso-cookie {
		padding-top: 10px;
		padding-bottom: 10px;
		margin-bottom: 10px;
		min-width: 150px !important;
	}
	.label-check-cookie{
		margin: 3px;
	}
	.contenitore-check-cookie{		
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-content: center;
		justify-content: space-evenly;
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 10px;
		height: 0;
		overflow: hidden;
		position: relative;
		transition: all .2s ease-out;
		transform: scale(1,0);
		transform-origin: top center;
	}
	.contenitore-check-cookie-aperto{
		margin: 10px auto;
		height: auto;
		transform: scale(1,1);
	}
	.elemento-non-disponibile{
		height: 0;
		overflow: hidden;
		padding-bottom: 56.25%;
		position: relative;
	}
	.testo-elemento-non-disponibile{
		font-size: 15px;
		margin-top: 25%;
	}
	.testo-elemento-non-disponibile p{
		margin: 2px;
	}
}

/* da 321 a 480*/
@media only screen and (min-width: 321px) {
}

/* da 481px a 768px*/
@media only screen and (min-width: 481px) {
	.testo-avviso-coockie {
		font-size: 14px !important;
	}
	.label-check-cookie{
		margin: 0px 10px;
	}
}

/* da 769px a 1200px*/
@media only screen and (min-width: 769px) {
}