#products-container {
    width: auto;
    height: auto;
    min-width: 190px;
    max-width: 1114px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
    grid-gap: 15px;
    justify-content: center;
    padding: initial;
    /* border: 1px solid blue; */
}
.product {
    text-decoration: none;
    position: relative;
    height: 400px;
    width: 240px;
	background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    /* border: 1px solid rgba(3, 10, 75, 0.2); */
}
.product:hover {
    outline: 2px solid rgba(3, 10, 75, 0.75);
}
.container-product-photo {
    width: 100%;
    height: 245px;
    padding: 0 20px;
    background: white;
}
.product-photo {
	width: 100%;
	height: 100%;
	display:block;
}
.product-title {
    width: 100%;
    height: 112px;
    display: grid;
    align-items: center;
    padding: 5px;
    text-align: center;
    color: rgb(8, 1, 67);
    font-size: 0.95rem;
    font-weight: 500;
    overflow: auto;
    /* border: 1px solid black; */
}
.product-price {
    width: 100%;
    height: 40px;
    text-align: center;
    padding: 5px;
    color: rgb(25, 50, 175);
    font-size: 1.3rem;
    /* border: 1px solid green; */
}
.product-price-installments {
	font-size:0.8rem;
}
.fav-icon {
	position: absolute; 
	right:30px;
	bottom:27px;
	cursor: pointer;
	opacity:0.4;
}
.fav-icon::before, .fav-icon::after {
	content: "";
	position: absolute;
	top: 0;
	width: 12.48px;
	height: 19.2px;
	border-radius: 50px 50px 0 0;
	background: rgb(255, 91, 91);
}
.fav-icon::before {
	left: 12px;
	transform: rotate(-45deg);
	transform-origin: 0 100%;
}
.fav-icon::after {
	left: 0;
	transform: rotate(45deg);
	transform-origin: 100% 100%;
}
.fav-icon:hover {
	opacity: 0.7;
}
.fav-icon-active {
	opacity: 1.0;
}