.carousel7-inner {
  position: relative;
  width: 100%;
  min-height: 300px;
  }
 
 .carousel7-control.right {
  right: 0;
  left: auto;
  background-image: none !important;
  background-repeat: repeat-x;
}
 .carousel7-control.left {
  left: 0;
  right: auto;
  background-image: none !important;
  background-repeat: repeat-x;
}
#carousel7-example-generic {
    margin: 20px auto;
    width: 100%;
}

#carousel7-custom {
    margin: 20px auto;
    width: 400px;
}
#carousel7-custom .carousel7-indicators {
    margin: 10px 0 0;
    overflow: auto;
    position: static;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    overflow:hidden;
}
#carousel7-custom .carousel7-indicators li {
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    height: auto;
    margin: 0 !important;
    width: auto;
}
#carousel7-custom .carousel7-indicators li img {
    display: block;
    opacity: 0.5;
}
#carousel7-custom .carousel7-indicators li.active img {
    opacity: 1;
}
#carousel7-custom .carousel7-indicators li:hover img {
    opacity: 0.75;
}
#carousel7-custom .carousel7-outer {
    position: relative;
}
.carousel7-indicators li img {
  height: 66px;
  width: 52px;}

* {box-sizing: border-box;}

.img-zoom-container2 {
  position: relative;
}

.img-zoom-lens {
  position: absolute;
  border: 1px solid #d4d4d4;
  /*set the size of the lens:*/
  width: 40px;
  height: 40px;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  /*set the size of the result div:*/
  width: 250px;
  height: 250px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 18
  padding-left: 300px;
}  
/* Created by Rohan Hapani */
*
    {
      margin: 0;
      padding: 0;
    }
    .zoom-area
    {
      position: relative;
      cursor: none
    }
    /* for create magnify glass */
    .large
    {
      width: 350px;
      height: 350px;
      position: absolute;
      border-radius: 100%;
    
      /* for box shadow for glass effect */
      box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 
      0 0 7px 7px rgba(0, 0, 0, 0.25), 
      inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
      
      /*for hide the glass by default*/
      display: none;
    }
    .small
    {
      display: block;
    }