/********************************
 * styling elementi als generico
 ********************************/
.als-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
}

.als-viewport {
	position: relative;
	overflow: hidden;
	margin: 0px auto;
}

.als-wrapper {
	position: relative;
	list-style: none;
	margin: 0;
}

.als-item {
	position: relative;
	display: block;
	text-align: center;
	float: left;
	background: none;
}

.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
	top: 50%;
	margin-top: -15px;
	font-size: 30px;
	color: #cdcdcd;
}


/**************************
 * styling elementi als
 * specifico lista1
 **************************/

#lista-prodotti {
	width: 1000px;
	margin: 20px 0 20px 0;
	left: -10px;
}

#lista-prodotti .als-item {
	width: 16.6666%;
	margin: 0;
	padding:  5px 10px;
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#lista-prodotti .als-item .rounded-box {
	height: 122px;
	overflow: hidden;
	text-align: center;
	position: relative;
	border: 2px solid #ffed00;
}

#lista-prodotti .als-prev, #lista1 .als-next {
	width: 15px;
	height: 22px;
	position: absolute;
}

#lista-prodotti .als-prev {
	left: -20px;
	text-align: left;
}

#lista-prodotti .als-next {
	right: -20px;
	text-align: right;
}

#lista-prodotti .als-item img {
	display: block;
	margin: 0 auto;
	width: 120px;
	height: auto;
	top: -0;
	position: relative;
    -webkit-transition: width .5s, height .5s, top .5s; /* Safari */
    transition: width .5s, height .5s, top .5s;
}

#lista-prodotti .als-item a:hover img {
	width: 130px;
	top: -10;
    -webkit-transition: width .3s, height .3s, top .3s; /* Safari */
    transition: width .3s, height .3s, top .3s;
}

#lista-prodotti .als-item span {
	position: absolute;
	background: rgba( 0,0,0,.6 );
	bottom: 0;
	padding: 5px 10px;
	display: block;
	z-index: 1;
	width: 100%;
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	text-align: center;
	font-size: 10px;
	color: #fff500;
	text-decoration: none;
	font-size: 12px;
	line-height: 1.1;
	height: 56px;
    -webkit-transition: height .5s; /* Safari */
    transition: height .5s; /* Safari */
	border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	-o-border-radius: 0 0 10px 10px;
	-webkit-border-radius: 0 0 10px 10px;
}
#lista-prodotti .als-item a:hover span {
	height: 70px;
    -webkit-transition: height .3s; /* Safari */
    transition: height .3s; /* Safari */
}