

.kwb-handpicked{
  max-width: 100%;
  overflow-x: scroll;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.kwb-handpicked::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

.kwb-handpicked::-webkit-scrollbar-track {
  background: #f1f1f1;        /* color of the tracking area */
  border-radius: 20px;
}

.kwb-handpicked::-webkit-scrollbar-thumb {
  background-color: #003c73;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 4px solid #f1f1f1;  /* creates padding around scroll thumb */
}

.kwb-handpicked ul{
  display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.kwb-handpicked ul li{
  padding-left: calc(15px / 2);
  padding-right: calc(15px / 2);
  flex: 0 0 80%;
  max-width: 80%;
}

@media (min-width: 549px){
  .kwb-handpicked ul li{
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media (min-width: 930px){
  .kwb-handpicked ul li{
    flex: 0 0 30%;
    max-width: 30%;
  }
}



.kwb-handpicked .image{
  height: 400px;
  width: 100%;
  position: relative;
  overflow:  hidden;
  margin-bottom: .5rem;
}


.kwb-handpicked .image img{
  height: 100%;
  max-width: none;
  width: auto;
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  transition: transform .7s ease;
}

.kwb-handpicked ul li:hover .image img{
  transform: translateX(-50%) scale(1.2);
}

.kwb-handpicked .product-description{
  margin-bottom: 1rem;
}