#carousel{
	position: relative;
	height: 60px;
	width: 100%;
	text-align: center;
	margin: auto;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.imagen-carousel{
	position: relative;
	width: 70px;
	height: 93%;
	display: inline-block;
	margin: 2px;
	z-index: 0;

	-webkit-transition:all .3s ease;
	-moz-transition:all .3s ease;
	-o-transition:all .3s ease;
	-ms-transition:all .3s ease;
}

.imagen-carousel:hover{
	z-index: 1;
	-webkit-transform:scale(1.3, 1.3) translateY(-7px);
	-moz-transform:scale(1.3, 1.3) translateY(-7px);
	-ms-transform:scale(1.3, 1.3) translateY(-7px);
	-o-transform:scale(1.3, 1.3) translateY(-7px);
	transform:scale(1.3, 1.3) translateY(-7px);
}

.imagen-carousel img{
	height: 50px;
	cursor: pointer;
	margin-top: 3px;
	width: 100%;
	background-color: #efeded;
}

.seleccionado:after{
	content: "";
	width: 40px;
	height: 15px;
	top: 70px;
	right: 42px;
	position: absolute;
	background-image: url('img/seleccion.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.4;
}

#slider{
	display: none;
}

#nombre-revista{
	position: absolute;
	width: 100%;
	bottom: -12px;
	text-align: center;
}

/* 			RESPONSIVE DESIGN 			*/

/*TABLET, IPAD*/
@media only screen and (min-width: 481px) and (max-width: 768px){
	.imagen-carousel{
		width: 100px;
	}
	
	.imagen-carousel img{
		height: 55px;
		margin-top: 0;
	}
}

/* DESKTOP, LAPTOP, MAC */
@media only screen and (min-width: 769px){
	#carousel{
		width: 600px;
	}
	
	.imagen-carousel{
		width: 126px;
	}
	
	.imagen-carousel img{
		height: 57px;
		margin-top: 0;
	}
}