/* Slider on Details */
.box{
  width: 130px;
  height: 78px;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #888;
  padding: 5px;
  overflow: hidden;
}

.slide-img{
  width: 118px;
  height: 66px;
  position: relative;
}

.slide-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-sizing: border-box;
}
/* End */

/* Property Slider */
.product-box
{
  width: 255px;
  height: 310px !important;
  box-shadow: -3px 5px 10px 3px rgba(0,0,0, 0.15); 
  border: 1px solid rgba(0,0,0, 0.15);
  overflow: hidden;
  border-radius: 10px;
  margin: 0 .5em 1em 0 !important;
  transition: .5s ease-in-out;
}

.product-box.interior-box
{
  height: 330px !important;
}

.product-box:hover
{
  box-shadow: -3px 5px 10px 3px rgba(14, 106, 210, 0.20);
  border: 1px solid rgba(14, 106, 210, 0.55);
}

.product-slide-img
{
  height: 170px;
  width: 260px;
  position: relative;
}

.product-slide-img img
{
  width: 100%;
  height: 170px;
  object-fit: cover;
  box-sizing: border-box;
}
/* End */

@keyframes fade{
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}
