.collectionCarouselView-outer { height: 100%; position: relative; background-color: white; } .carousel-wrapper { display: flex; position: absolute; top: 15%; align-items: center; transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955); .collectionCarouselView-item, .collectionCarouselView-item-active { flex: 1; transition: opacity 0.3s linear, transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955); pointer-events: none; } .collectionCarouselView-item-active { pointer-events: unset; } } .dot-bar { display: flex; position: absolute; justify-content: center; bottom: 5%; width: 100%; .dot, .dot-active { height: 15px; width: 15px; border-radius: 50%; margin: 3px; display: inline-block; background-color: lightgrey; cursor: pointer; } .dot-active { background-color: grey; } } .carouselView-back, .carouselView-forward { cursor: pointer; }