
.carousel {
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
}

.carousel__track-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  -moz-user-select:none;
  -webkit-user-select:none;
}

.carousel__track {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  transition: transform 150ms ease-in;
  touch-action: none;
}

.carousel__slide {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: white;
  padding: 40px 30px 20px 30px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.carousel__button {
  position: absolute;
  top: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 100;
}

.is-disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.carousel__button--left {
  right: 40px;
}

.carousel__button--right {
  right: 0;
}

.carousel__button--left > img,
.carousel__button--right > img {
  height: 24px;
  width: 24px;
}

.carousel__button--left > img {
  transform: rotate(180deg);
}

.carousel__nav {
  display: flex;
  justify-content: center;
  padding: 0;
}

.carousel__indicator {
  border: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: rgba(0,0,0,.3);
  margin: 0 10px;
  cursor: pointer;
}

.carousel__indicator.current-slide {
  background: rgba(0,0,0,1);
}

.carousel__indicator.current-slide:hover {
  background: rgba(0,0,0,.75);
}
