.carousel {
  margin: 20px;
}

.carousel__view {
  height: 425px;
  background: white;
  box-shadow: 0 1px 8px #888888;
  margin: auto;
  overflow: scroll;
  white-space: nowrap;
  position: relative;
}

h4.carousel_discription{
  text-align: center;
}

/* Hide scrollbar for Chrome, Safari and Opera */

.carousel__view::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */

.carousel__view {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.sticky_carousel_button {
  position: sticky;
  top:45%;
  z-index: 1;
  right: 0;
  left: 0;
}

.carousel__control {
  background-color: #500000;
  /* transition: background-color 0.3s; */
  border-radius: 50%;
  padding: 8px 16px;

}

.carousel__control .icon {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: white;
}

.carousel__control:hover {
  background-color: rgba(221, 221, 221, 0.8);
}

.carousel__control:first-of-type {
  float:left;
}

.carousel__control:last-of-type {
  float:right;
}

.contains-image {
  width:222px;
  height:166.5px;
  object-fit:cover;
}
  
.product-list {
  position: absolute;
  margin: 0;
  padding: 0;
  transition: transform 0.3s;
  transform: translateX(0px);
  height: 325px;
  top: 10%;
}

.product-list_item {
  width: 222px;
  height: 325px;
  display: inline-block;
  margin: 10px;
}

.product {
  display: table;
  height: 100%;
  width: 100%;
}

.product:hover{
  box-shadow: 8px 8px 8px 8px rgba(221, 221, 221, 0.8);
  transform:scale(1.1);
}

.product{
  transition:.3s;
}

.product span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.rpwe-title {
  white-space: normal;
  max-height: 3.6em;  
  overflow: hidden;
}

.ellipsis {
  content: " ...";
  right: -12px;
  bottom: 5px;
}

@media only screen and (min-width: 1120px){
  .carousel__view {
    width: calc(242px*4);
  }
}

@media only screen and (max-width: 1119px){
  .carousel__view {
    width: calc(242px*3);
  }
}

@media only screen and (max-width: 820px){
  .carousel__view {
    width: 242px;
  }

  .sticky_carousel_button {
    display: none;
  }
}