﻿.image-wrapper {
    position: relative;
    display: inline-block;
}

.caroussel-navigation {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.EAC-carousel-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: auto;
    gap: 2rem;
}

@media (max-width: 768px) {
    .EAC-carousel-container {
        flex-direction: column-reverse;
    }
}

.EAC-carousel-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.EAC-section-item {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .EAC-section-item:hover {
        background-color: #f0f0f0;
    }

    .EAC-section-item.active {
        background-color: #e0e0e0;
        border-color: #007bff;
    }

.EAC-btn-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #007bff;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.EAC-carousel-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .EAC-carousel-right img {
        max-width: 100%;
    }

.EAC-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

    .EAC-carousel-nav button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .EAC-carousel-nav span {
        font-weight: bold;
    }

.bckg--white {
    background-color: white;
}

.responsive-row {
    display: table-row; 
}


@media (max-width: 720px) {
    .responsive-row {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

        .responsive-row .first-col {
            font-weight: bold;
            border-bottom: 1px solid #b3b4b5;
            display: block;
            width: 100%;
        }

        .responsive-row .responsive-group {
            display: flex;
            flex-direction: row;
            width: 100%;
            min-width: 70px;
            box-sizing: border-box;
            padding: 4px;
        }

            .responsive-row .responsive-group .toolbar {
                display: flex;
                flex-wrap: nowrap;
                justify-content: flex-start;
            }
}

.EAC-image-container {
    width: 100%;
    max-width: 100%;
}

.EAC-responsive-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%; /* Ajuste selon besoin */
    overflow: hidden;
}

.swiper-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

    .swiper-slide.active {
        opacity: 1;
        z-index: 1;
        pointer-events: auto;
    }

.swiper-pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 6px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
}

.swiper-pagination-bullet-active {
    background-color: #000;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
}