

/*
	 .box_sm{
	  width: 262px;
	  height: 262px;
	  background: #fff;
	  overflow: hidden;
	  display: block;
	  
	}
	
	
	 
	 .box_sm img{
		  width: 100%;
		  height: auto;
		  display: block;
	}
	
	@supports(object-fit: cover){
	    .box_sm img{
	      height: 100%;
	      object-fit: cover;
	      object-position: center center;
	      display: block;
	    }
	}
	*/
	
	.box_sm{
	  width: 100%;
	  max-width: 262px;
	  aspect-ratio: 1 / 1;
	  background: #fff;
	  overflow: hidden;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin: 0 auto;
	}

	.box_sm img{
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  object-position: center;
	  display: block;
	}
	
	
	
	
	
	.product_carrito{
	  width: 110px;
	  height: 90px;
	  background: #fff;
	  overflow: hidden;
	  display: block;
	}
	
	
	 
	 .product_carrito img{
		  width: 100%;
		  height: auto;
		  display: block;
	}
	@supports(object-fit: cover){
	    .product_carrito img{
	      height: 100%;
	      object-fit: cover;
	      object-position: center center;
	      display: block;
	    }
	}