﻿/*
#productos{
	border: 0px solid red;
	width: 100%;
	float: left;
	margin: 20px 0 45px 0;
}

.producto{
	position: relative;
	width: 20%;
	float: left;
	margin: 0 2.4%;
	cursor: pointer;
}

.producto:hover .titulo-producto{
	color: #eb1f27;
}

.producto:hover .imagen-producto img{
	width: 110%;
	margin: -4% 0 0 -4%;
}

.imagen-producto{
	border: 0px solid red;
	width: 100%;
	min-height: 90px !important;
	max-height: 90px !important;
	padding: 20px 0;
	float: left;
}

.imagen-producto img{
	border: 0px solid red;
	width: 100%;
	float: left;

	transition:all 0.4s;
}

.titulo-producto{
	width: 100%;
	font-weight: bold;
	text-align: center;
	font-size: 1.2em;
	float: left;

	transition:all 0.4s;
}
*/