:host {
  display: block;
  position: relative;
}
:host .carousel-container {
  z-index: 1;
}
:host .prev-slide, :host .next-slide {
  position: absolute;
  top: 0;
  z-index: 3;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
  cursor: pointer;
}
:host .prev-slide javo-icon, :host .next-slide javo-icon {
  width: 2.5rem;
  height: 2.5rem;
}
:host .prev-slide {
  left: 0;
  padding-right: 5rem;
}
:host .prev-slide.shadow {
  background: linear-gradient(90deg, rgba(55, 55, 55, 0.5), transparent);
}
:host .next-slide {
  right: 0;
  padding-left: 5rem;
}
:host .next-slide.shadow {
  background: linear-gradient(90deg, transparent, rgba(55, 55, 55, 0.5));
}
:host .indicator {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
:host .indicator .step {
  width: 1rem;
  height: 1rem;
  background-color: white;
  border-radius: 100%;
  margin: 0 5px;
  border: 0.1rem solid white;
  cursor: pointer;
}
:host .indicator .step.active {
  background-color: transparent;
}