.produit_carousel{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15vh 32px 32px 32px;
}

.produit_carousel h2{
    text-align: center;
}

.carousel_choice{
    display: flex;
    padding-top: 7vh;
    max-width: 100vw;
    justify-content: center;
}

.carousel_choice_item {
    display: flex;
    justify-content: center;
    margin: 0 1vw 0 1vw;
    padding: 11.2px 32px 11.2px 32px;
    background-color: rgba(5, 184, 24, 0.1);
    font-weight: 600;
    border-radius: 50px;
    font-size: 19.2px;
    width: fit-content;
    border: none;
    color: var(--plain-grey);
    font-family: var(--font-family);
    cursor: pointer;
    max-width: 30%;
}

.carousel_choice_item_active{
    background-color: var(--brand-primary);
    color: white;
}

.carousel_container{
    width: 90%;
    height: fit-content;
    background-color: #F6F5F4;
    margin-top: 5vh;
    padding: 32px;
    border-radius:10px;
}

.carousel_container p{
    font-weight: 600;
}

.carousel_container img{
    width: 100%;
    filter: drop-shadow(0 0 4.8px rgb(200, 200, 200));
    border-radius: 5px;
    margin-top: 7vh;
}

.carousel_page_choice_container{
    display: flex;
    justify-content: center;
}

.carousel_page_choice{
    display: inline-block;
    width: fit-content;
    justify-content: center;
    margin-top: 5vh;
}

.carousel_page_choice_item{
    display: inline;
    justify-content: center;
    margin: 0 1vw 2vw 1vw;
    padding: 4.8px 16px 4.8px 16px;
    background-color: #F6F5F4;
    border: 2px solid #E8E7E6;
    font-weight: 600;
    border-radius: 5px;
    font-size: inherit;
    width: fit-content;
    color: black;
    font-family: var(--font-family);
    cursor: pointer;
}

.carousel_page_choice_item_active{
    background-color: #E8E7E6;
}

@media only screen and (max-width: 800px) {
    .carousel_choice_item{
        font-size: 16px;
    }

    .produit_carousel h2{
        font-size: 24px;
    }

    .produit_carousel {
        padding: 10vh 32px 2vh 32px;
    }
}