.product-carousel {
  position: relative;
}
.product-carousel__container {
  overflow: hidden;
}
.product-carousel__content {
  display: -ms-flexbox;
  display: flex;
}
.product-carousel__item {
  -ms-flex: 0 0 33%;
      flex: 0 0 33%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.product-carousel__item a {
  text-decoration: none;
}
.product-carousel__item-image {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.product-carousel__item-name {
  margin-top: 32px;
  font-family: 'HelveticaNeueW01-45Ligh', Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  padding: 0 20px;
}
.product-carousel__dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 34px;
}
.product-carousel__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #d8d8d8;
}
.product-carousel__dot + .product-carousel__dot {
  margin-left: 3px;
}
.product-carousel__dot.current {
  background-color: #ffd500;
}
.product-carousel__arrow {
  position: absolute;
  top: 65px;
  cursor: pointer;
}
.product-carousel__arrow--left {
  left: -30px;
  display: none;
}
.product-carousel__arrow--right {
  transform: rotate(-180deg);
  right: -30px;
}
