.pdBlockVisuelCarousel .blockVisuel__items {
    display: flex;
}

.pdBlockVisuelCarousel .swiper-pagination.swiper-pagination-hide {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
}

.pdBlockVisuelCarousel .swiper-pagination-bullet {
    position: relative;
    width: 100%;
    max-width: 8px;
    height: 8px;
    border-radius: 10px;
    background: var(--grey-d9);
    transition: all .3s linear;
    border: none;
    opacity: 1;
    overflow: hidden;
}

.pdBlockVisuelCarousel .swiper-pagination-bullet:focus {
    border: none;
    outline: none;
}

.pdBlockVisuelCarousel .swiper-pagination-bullet::after {
    display: block;
    content: '';
    width: 100%;
    max-width: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-blue);
}

.pdBlockVisuelCarousel .swiper-pagination-bullet-active {
    max-width: 24px;
}

.pdBlockVisuelCarousel .swiper-pagination-bullet-active:not(.waiting)::after {
    max-width: 100%;
    transition: all 8s linear;
}

@media screen and (max-width: 1023px) {
    .pdBlockVisuelCarousel .block-visuel-droite-container .img-and-text-container .text-block,
    .pdBlockVisuelCarousel .block-visuel-gauche-container .img-and-text-container .text-block {
        padding: 20px 20px 56px;
    }

    .pdBlockVisuelCarousel section {
        padding-bottom: 2.8rem;
    }
}

@media screen and (min-width: 1024px) {
    .pdBlockVisuelCarousel--left .swiper-pagination {
        display: flex;
        bottom: 80px;
        left: calc(50% + (50%/2));
    }

    .pdBlockVisuelCarousel--right .swiper-pagination {
        display: flex;
        bottom: 80px;
        left: calc(50%/2);
    }

    .pdBlockVisuelCarousel .swiper-pagination {
        bottom: 45px;
    }
}