.wp-block-gallery-slide-animate__{
    /* aspect-ratio: 1; */
    position: relative;
}

.wp-block-gallery-slide-animate__ .gallery{
    position: relative;
    aspect-ratio: 2;
    /* position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; */
}
.wp-block-gallery-slide-animate__ .gallery figure{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.wp-block-gallery-slide-animate__ .gallery figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-block-gallery-slide-animate__ .gallery figure:not(:first-child)
{
    left: 100%;
}


/* how images are animated */
.wp-block-gallery-slide-animate__ .gallery figure.visible:nth-child(1)
{
    opacity: 0;
    transition: all 1s;
}
.wp-block-gallery-slide-animate__ .gallery figure.visible:nth-child(1)
{
    opacity: 1;
}
.wp-block-gallery-slide-animate__ .gallery figure.visible:nth-child(2)
{
    animation-name: slideImage;
    animation-duration: 4s;
    animation-delay: 1s;
}
.wp-block-gallery-slide-animate__ .gallery figure.visible:nth-child(3)
{
    animation-name: slideImage;
    animation-duration: 4s;
    animation-delay: 1s;
}

@keyframes slideImage {
    0% {left: 100%;}
    1% {left: 100%;}
    40% {left: 0%;}
    60% {left: 0%;}
    99% {left: -100%;}
    100% {left: 100%;}
}