*{
    margin: 0;
    padding: 0;
}
.carousel-wrapper{
    width: 400px;
    height: 300px;
    margin: 0 auto;
    /* border: 10px solid black; */
    overflow: hidden;
    border: 10px solid black;
}
.carousel-wrapper>.images-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    /* justify-content: flex-start; */
    /* border: 10px solid red; */
    transition: all 0.5s;
    /* border: 10px solid black; */
    position: relative;
}
.carousel-wrapper>.images-wrapper>img{
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    /* opacity: 0.5; */
    /* transition: all 800ms ease-in-out; */
    transition: all 800ms linear;
}
img.current{
    transform: translateX(0);
    /* transition: all 800ms ease-in-out; */
    z-index: 1;
}
img.leave{
    transform: translateX(-100%);
    /* transition: all 800ms ease-in-out; */
}
img.queue{
    transform: translateX(100%);
    /* transition: all 800ms ease-in-out; */
}