
/*
 *	PLUGIN COOKIE ACCEPTANCE
 *	formattazione del foglio di stile
 */

.tpca.tpca-container{
	background: #333; 
	line-height: 20px; 
	color: #FFF; 
	text-align: left;
	padding: 20px 0 20px 0;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 12px;
	line-height: 18px;
	text-align: justify;
	z-index: 1000;

	-moz-transition: top 0.5s, bottom 0.5s; 
	-webkit-transition: top 0.5s, bottom 0.5s; 
	transition: top 0.5s, bottom 0.5s; 
}

.tpca.tpca-container.fixed{
	position: absolute;	
}

.tpca.tpca-container.bottom{
	top: auto;
	bottom: 0;
	position: fixed;
}

.tpca .tpca-content{
	position: relative;
}

.tpca .tpca-content.no-bootstrap{
	max-width: 700px;
	padding: 0 15px;
}

.tpca .tpca-content .tpca-close{
	text-align: right;
	position: absolute; 
	top: 5px;
	right: 0;
}

.tpca .tpca-content .tpca-close .tpca-close-action{
	display: block;
 	border: 1px solid #FFF;
	line-height: 16px;
	width: 20px;
	height: 20px;
	font-family: Tahoma;
	text-align: center;
	font-size: 10px;
	cursor: pointer;
}

.tpca .tpca-content .tpca-close .tpca-close-action:hover{
	background: #FFF;
	color: #333;
}

.tpca .tpca-content .tpca-message{
	margin: 0 50px 15px 0;
}

.tpca .tpca-content .tpca-button{
	background: #ffb254;
	color: #FFF;
	padding: 5px 10px 4px 10px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	text-decoration: none;
	display: inline-block;
	margin-right: 10px;
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 20px;
}

.tpca .tpca-content .tpca-button:hover{
	background: #FFF;
	color: #ffb254;
}


