/* slider di tipo generico */

.slider_ser_container {
	width: 59%;
	float: left;
	padding-right: 2%;
}

@media screen and (max-width: 1280px){
	.slider_ser_container {
		width: 73%;
	}
}

@media screen and (max-width: 1024px){
	.slider_ser_container {
		width: 99%;
	}
}

/* slider di tipo "selected", "incorso", "realizzati" */

.slider_ser_container_selected {
	width: 100%;
	float: left;
}

.slider_ser_singleimage.tipo_selected, .slider_ser_singleimage.tipo_incorso, .slider_ser_singleimage.tipo_realizzati {
    margin: 0 auto 1%; 
    position: relative; 
    width: 100%;
}

.slider_ser_singleimage img {
	position: absolute;
}

.slider_ser.tipo_selected, .slider_ser.tipo_incorso, .slider_ser.tipo_realizzati { 
	margin-bottom: 1%;
	margin-top: 0;
	padding: 0;
}

.btn-titolo {
	z-index:7;
	background-color: #f8f7f3;
	outline:none;
	border:none;
	cursor:pointer;
	max-width: 96%;
	padding: 8px 2%;
	position: absolute;
	bottom: -1px;
	text-transform: uppercase;
}

/* SER */

.area-titolo {
	position: relative;
	width: 100%;
	height: 100%;
}

.area-titolo-interno {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	padding: 30px;
	opacity: 0;
	-webkit-transition: .3s ease-out opacity;
	transition: .3s ease-out opacity;
}

.slider_ser_singleimage img:hover .area-titolo-interno {
	opacity: 1;
}

/* FINE SER */

/* impostazioni comuni */

.slider_ser { 
    margin: 0 auto; 
    position: relative; 
    width: 100%;
    padding-top: 1%;
    padding-right: 1%;
    padding-left: 1%;
	box-sizing:border-box;
	margin-bottom: 2%;
}

.slider_ser > div { 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
}

.slider_ser > div > img {
	width:auto;
	height:auto;
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slider_ser:hover i, .slider_ser:hover .slider-dots{
	opacity: 1;
}

.slidebtn {
	z-index:6;
	background:transparent;
	outline:none;
	border:none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	cursor:pointer;
}

.slidebtn:active, .slidedtn:focus {
	outline:none;
}

.slidebtn i {
	color:#FFF;
	font-size:72px;
	opacity: 0.2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;

}

/* interfaccia: pulsanti PREV e NEXT */

.prev {
    position: absolute; 
    top: 10px; 
    left: 10px; 
    bottom: 10px;
	padding:0 40% 0 10px;
}

.next {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    bottom: 10px;
	padding:0 10px 0 40%;
}

/* interfaccia: pulsanti PREV e NEXT con SKIN bw  */

.skin_bw .prev, .skin_bw .prev:hover {
	background: no-repeat url('images/slider_prev_bw.svg');
	background-position: 2% 50%;
	padding: 0 16% 0 10px;
}

.skin_bw .next, .skin_bw .next:hover {
	background: no-repeat url('images/slider_next_bw.svg');
	background-position: 98% 50%;
	padding: 0 10px 0 16%;
}

.skin_bw .prev, .skin_bw .next {
	background-size: 36px;
}

.skin_bw .prev:hover, .skin_bw .next:hover {
	background-size: 48px;
}

.skin_bw .slider-dots li {
	background: url('images/slider_dot_bw.svg');
}

/* interfaccia: DOTS */

.slider-dots {
	opacity: 0.4;
	list-style: none;
	display: inline-block;
	padding-left: 0;
	margin: 0;
	position:absolute;
	left:50%;
	bottom:2%;
	transform: translate(-50%, 0);
	z-index:8;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;

}

.slider-dots li {
	background: url('images/slider_dot.svg');
}

.slider-dots li, .skin_bw .slider-dots li {
	display: inline-block;
	margin-right: 4px;
	cursor:pointer;
	background-position: 0 0;
	background-size: cover;
	width: 12px;
	height: 12px;
}

.slider-dots li.active-dot {
	background-position: 0 -12px;
}

/* MEDIA QUERIES */

@media screen and (max-width: 800px){

	.skin_bw .slider-dots {
		display: none;
	}
	
	.skin_bw .prev, .skin_bw .next {
		background-size: 24px;
	}
	
	.skin_bw .prev:hover, .skin_bw .next:hover {
		background-size: 36px;
	}

}