/*
product feed carousel
*/

.product-carousel .carousel-inner {
  height:auto;
 /* min-height:420px; */
}

.product-carousel .carousel-indicators {
  background:#333; /* replace w/ brand colour */
  margin:0;
}

.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
  width:auto;
	background-color:transparent !important;
	border:none !important;
}

.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon {
  filter:invert(1);
  width: 2rem;
  height: 2rem;
}

.product-carousel .carousel-control-prev{
  left:-5%;
}

.product-carousel .carousel-control-next {
  right:-5%;
}

.product-carousel .carousel-item {
  text-align:center !important;
}

.product-carousel .carousel-item a {
  text-decoration:none;
}

.product-carousel .carousel-item .col-carousel {
  align-items: center !important;
}

.product-carousel .carousel-item .col-carousel .col-carousel-inner {
  margin: 2rem !important;
}

.product-carousel .carousel-item .col-carousel .col-carousel-inner h3 {
	margin-top:1rem !important;
	text-align:center !important;
}
.product-carousel .carousel-item .col-carousel .btn {
  margin:auto;
  display:block;
  opacity:0;

  opacity:0;
  transition:opacity ease-in-out 0.5s;
}

.product-carousel .carousel-item .col-carousel:hover .btn {
  opacity:1;
}

.product-carousel .carousel-item .col-carousel img {
  transition:width ease-in-out 0.5s;
}

.product-carousel .carousel-item .col-carousel:hover img {
  width:80% !important;
}