.logo-simple-slider-grid-vive {
    .splide__track {
        @apply overflow-visible !important;

        @screen lg {
            /* The apply class doesn't override the overflow-visible, so brut CSS here */
            overflow: hidden !important;
        }
    }

    .splide__pagination {
        @apply absolute hidden flex-row items-center justify-center w-full -bottom-10;
        @screen lg {
            @apply flex;
        }
    }

    .splide__arrow {
        background-color: inherit !important;
    }

    &.has-arrows {
        .splide__track {
            @media screen and (max-width: 1023px) {
                @apply overflow-hidden !important;
            }
        }
    }
}