.tsp-component-carousel {
  position: relative;
}

.tsp-component-carousel-hammer {
  overflow: hidden;
  position: relative;
}


.tsp-component-carousel-slider-item {
  float: left;
}

.tsp-component-carousel-children {
  display: none;
}

.tsp-component-carousel-left-arrow, .tsp-component-carousel-right-arrow {
  @include center-translate(y);
}

.tsp-component-carousel-left-arrow {
  left: 5px;
}

.tsp-component-carousel-right-arrow {
  right: 5px;
}

.tsp-component-carousel-dots {
  @include center-translate(x);
  display: flex;
  bottom: 8px;
}
.tsp-component-carousel-dots-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  margin-right: 6px;
  &:last-of-type {
    margin-right: 0;
  }
}
.tsp-component-carousel-dots-item-current {
  background: #fff;
}