.carousel-item {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.carousel-item img {
  width: auto;
  height: 100%;
}
.carousel-control-prev-icon{
  background-color:orange;
  border-radius: 8px;
}
.carousel-control-next-icon{
  background-color:orange;
  border-radius: 8px;
}


.imagebox {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.column {
  width: 12%;
  padding: 5px;
  margin: 5px;
}

.column img {
  border-radius: 8px;
}

.demo {
  opacity: 0.6;
  border-radius: 8px;
}

.cursor {
  cursor: pointer;
}

.product_image_detail_active,
.demo:hover {
  opacity: 1;
  border: 2px solid orange;
  border-radius: 8px;
}


@media screen and (max-width: 992px) and (min-width: 768px) {
  .column {
    width: 15%;
  }
}

@media screen and (max-width: 500px) and (min-width: 200px) {
  .column {
    width: 14%;
  }
}