.right.carousel-control, .left.carousel-control {
    background-image: none;
}
.multi-item-carousel {
  .carousel-inner {
    > .item {
      transition: 500ms ease-in-out left;
    }
    .active {
      &.left {
        left: -33%;
      }
      &.right {
        left: 33%;
      }
    }
    .next {
      left: 33%;
    }
    .prev {
      left: -33%;
    }
    @media all and (transform-3d), (-webkit-transform-3d) {
      > .item {
        // use your favourite prefixer here
        transition: 500ms ease-in-out left;
        transition: 500ms ease-in-out all;
        backface-visibility: visible;
        transform: none !important;
      }
    }
  }
  .carouse-control {
    &.left, &.right {
      background-image: none;
    }
  }
}
.set-image-size{
  display:inline; 
  height:210px; 
  width: 329px;
}
// non-related styling:
body {
  background: #333;
  color: #ddd;
}
.remove-unwanted-height{
  min-height: 200px;
}