

#contenu,
#contenu_local,
#page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
}

#containerAll {
    padding: 0 !important;
    margin: 0 !important;
}

.ligneFilAriane {
    display: flex;
    align-items: center;
    z-index: 1;
    position: absolute;
    width: 60%;
}
.hidden {
    display: none;
}
.elementsContact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: white;
    font-size: 1.7rem;
    padding: 40px 0;
    padding-top:20px;
    height: 2vh;
    cursor:pointer;
}
.elementsContact i {
    font-size: 2.5rem; /* Adjust this value to make your icons larger. */
    margin-right: 10px; /* Add some space between the icon and the text. */
    color:#f5b800;
}
.elementsContact a{
    color:white;
    text-decoration: none;
}
.bandeauJaune {
    display: flex;
    background-color: #fbbe2a;
    height: 6vh;
    color: #112f4e;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 5vh;
    font-family: Roboto;
}



#lienFacebookMagasinConteneur {
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: 20px; 
    margin-bottom: 2vh;
}
#lienFacebookMagasinConteneur a {
    color: #fbbe2a;
    font-size: 5vh;
}

#TitrePageMag {
    margin-top: 5vh;
    margin-bottom: 2.5vh;
    margin-left: 25px;
    font: bold 30px Roboto;
    color: #f5b800;
    text-align: center;
    text-transform: uppercase;
}
#TitrePageMagMobile{
    margin-top: 5vh;
    margin-bottom: 2.5vh;
    font: bold 30px Roboto;
    color: #f5b800;
    text-align: center;
    text-transform: uppercase;
}
.orange {
    color: #ff8a00;
}
.redColor {
    color: #ff0000;
}
.green {
    color: #00ff00;
}

#adresseAvisContactPC {
    padding: 40px 0;
    padding-top:20px;
}


.marginBottom5vh{
    margin-bottom: 5vh;
}

/* Styles des Boutons */
.boutonAvis {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    height: 8vh;
    color: #112f4e;
    text-decoration: none;
    flex-direction:column;
    font-weight: bold;
    text-transform:uppercase;
    font-size: 1.3rem;
}



.boutonAvis i {
    margin-right: 8px; /* Espacement entre l'icône et le texte */
}

.iconeMobileAdresseAvisContact{
    font-size: 1.5em;
}

/* A VERIFIER */
.services-grid-css {
    display: flex;
    flex-wrap: wrap;
    align-items:flex-start;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 80%;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-css-mobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; 
    gap: 20px; 
    padding: 20px;
    margin: 0 auto; 
}
.service-card-css {
    display: flex;
    flex-direction: column;
    background-color: #112f4e;
    border-radius: 15px;
    padding: 20px;
    color: white;
}
.service-card-css .description {
    font-size: 1.75rem;
    line-height: 1.5;
    text-align: justify;
}
.service-card-css .title {
    font-size: 1.7rem;
    font-weight: bold;
    height: 50px;
    text-transform: uppercase;
    text-align: center;
    font-family: Roboto !important;
}



.toggle-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0d1f30;
    color: #FFFFFF;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 10px;

}
.service-card-css .title {
    display: flex;
    color: white;
    font-size: 15pt;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
    align-items: center;
    justify-content: center;
}



@media (min-width: 992px) {
    .service-card-css .toggle-button {
        display: none; 
    }
    .service-card-css {
        width: calc(33.33% - 20px);
    }
}

.service-card-css.expanded.uniform-height {
    height: var(--height);
}
.uniform-height {
    height: var(--height);
}

@media (max-width: 992px) {
    .service-card-css {
        width: calc(50% - 20px); /* 3 colonnes sur les tablettes */
        height: auto;
        cursor:pointer;
        position:relative;
    }
    .service-card-css .description {
        display: none;
        max-height: 0; /* Cache la description */
        overflow: hidden; /* Empêche le débordement */
        transition: max-height 0.3s ease; /* Animation pour l'affichage */
    }

    .service-card-css.expanded .description {
        max-height: none; /* Affiche toute la description */
        overflow: visible;
        display: block;
        font-size: 12pt;
        color: white; /* Couleur du texte de description */
        line-height: 1.5;
        flex-grow: 1; /* Permet à la description de prendre l'espace restant et pousse le texte vers le bas */
    }
    
}


.service-card-css-mobile {
    background-color: #112f4e;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: #ffffff; 
    position: relative; 
    padding: 1vh 0;
    cursor:pointer;
}
.service-card-css-mobile.expanded .description {
    font-size: 11pt;
    color: white;
    line-height: 1.5;
    flex-grow: 1;
    padding: 0 30px;
}
.service-card-css-mobile .title {
    color: white;
    font-size: 10pt;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 20px;
}
.carousel-item {
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom:5vh;
}
#conteneurDescriptionMagasinMobile {
    background-color: #112f4e;
    border-radius: 15px;
    padding: 20px;
    color: white;
    font-size: 1.5rem;
    line-height: 1.5;

}
#contenuDescriptionMagasinMobile p{
    font-size: 2rem;
    line-height: 1.5;
}

.carousel-nav-team {
    display:flex;
    overflow-x: scroll; 
    white-space: nowrap; 
    width: 100%; 
    scrollbar-width: none; 
}
@media (min-width: 768px) {
    .carousel-nav-team {
        justify-content: center;
    }
}
.team-card {
    flex: 0 0 auto;
  width: 62%;
  text-align: center;
  background-color: #0A2A4C;
  border-radius: 15px;
  padding: 20px;
  color: white;
  margin: 0px 20px;
  max-width: 400px;
}

#teamContainer {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: flex-start; 
    gap: 20px; 
    min-height: 150px; 
    height: auto; 
    background-color: #000; 
    overflow-x: auto; 
}
#conteneurDescriptionMagasin {
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    background-color: #112f4e;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1.5rem;
    width: 65%;
}
#conteneurDescriptionMagasin p {
    column-gap: 20px;
    font-size: 2rem;
    line-height: 1.5;
    width: 75%;
    margin: auto;
    text-align: justify;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 992px) {

        #conteneurDescriptionMagasin {
            width: 100%;
        }


}

#horairesConteneur {
    margin:0;
    padding:0;
    padding-right: 20px;
    padding-left: 20px;
 }


#listeJours {
    padding: 0;
    list-style: none;
    text-transform: uppercase;
}

#listeJours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.2rem; 
    padding: 5px 0;
}

#listeJours li span {
    flex: 1;
    text-align: center;
}

#listeJours li span:first-child {
    text-align: left;
    font-weight: bold;
}

#listeJours li span:last-child {
    text-align: right;
}


#listeJoursTablette {
    padding: 0;
    list-style: none;
    text-transform: uppercase;
    width: 60%;
    margin: auto;
    font-size:14px;
}

#listeJoursTablette li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.5rem; 
    padding: 5px 0;
}

#listeJoursTablette li span {
    flex: 1;
    text-align: center;
}

#listeJoursTablette li span:first-child {
    text-align: left;
    font-weight: bold;
}

#listeJoursTablette li span:last-child {
    text-align: right;
}
/* Pas corrigé */


#bandeauOperationsCommerciales {
    margin: 15px 0;
    margin-bottom:5vh;
}


#adresseAvisContactTablette{
    margin-bottom:5vh;
}




#bandeauVenezNousSuivre {
    margin-bottom: 2vh
}


#structure-mobile {
width: 100%;
margin: 0;
padding: 0;
}

#emplacementPointDeVentePC {
    display: flex;
    padding: 0 3vh;
    flex-direction: column;
    align-items: center;
}

#map-magasin {
    position: relative;
    z-index: 1; /* Assurez-vous que la carte est en dessous */
    height: 440px;
    width:95%;
}

#villeJaune {
    text-transform: uppercase;
    white-space: nowrap;
}

#adresseCarte {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    padding: 3vh;

}



#adresseCarte > i {
    font-size: 3em;
    color: #f5b800;
    margin: 0 20px;
}
.carousel-nav {
    display: flex;
    overflow-x: scroll; 
    box-sizing: border-box;
    scrollbar-width: none;
}

.carousel-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto; 
    cursor: pointer;
    background-color: #112f4e;
    color: #f5b800;
    min-width: 40vw; 
    font-size: 2rem;
    height: 6vh;
    font-weight: 900;
    margin-bottom: 5vh;
    padding: 0 15px;
}

.carousel-nav-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5b800;
    color: #112f4e;
    font-size: 2rem;
    height: 6vh;
    font-weight: 900;
    margin-bottom: 5vh;
}

.operation-content {
    flex: 1;
}


.operation-close {
    margin-left: 10px;
    cursor: pointer;
    font-size: 2em;
}

@media screen and (min-width: 990px) and (max-width: 1500px) {
    .titreEtIcone {
        flex-direction: column;
    }
}

#listeJours li span:first-child {
    flex: 0 0 auto;
    min-width: max-content;
    text-align: left;
    width:var(--width);
}

/* 🔹 Plus de 1300px */
@media screen and (min-width: 1301px) {
    #listeJours li {
        font-size: 1.5rem;
    }
}
#listeJours li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Premier span : prend la largeur du plus long */


/* Horaire (centre) : garde sa largeur naturelle */
#listeJours li span:nth-child(2) {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: center;
    padding-left: 5%
}

/* Dernier span : prend le reste de l’espace */
#listeJours li span:last-child {
    flex: 1;
    text-align: right;
}


@media (min-width: 768px) and (max-width: 990px) {
    #horairesConteneur {
        padding: 0 15%;
        position: relative;
    }

    #listeJours {
        padding: 0;
        text-transform: uppercase;

    }

    #listeJours li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-size: 1.5rem;
        padding: 5px; /* Ajout d'un padding pour éviter les chevauchements */
    }

    #listeJours li span {
        flex: 1; /* Tous les éléments prennent une part égale */
        text-align: center; /* Centre le texte dans chaque colonne */
    }

    #listeJours li span:first-child {
        text-align: left; /* Jour/Date aligné à gauche */
    }

    #listeJours li span:last-child {
        text-align: right; /* Commentaire aligné à droite */
    }
}


#listeJoursMobile {
    padding: 0;
    list-style: none;
    text-transform: uppercase;
}

#listeJoursMobile li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.5rem; /* s’adapte à la largeur de l’écran */
    padding: 5px 0;
    font-weight: bold;  
}

#listeJoursMobile li span {
    flex: 1;
    text-align: center;
}

#listeJoursMobile li span:first-child {
    text-align: left;
    font-weight: bold;
    width: 20%;
}

#listeJoursMobile li span:last-child {
    text-align: right;
}


#separationContact {
    border-top: 1px solid white;
    margin: 20px 0;
}



/* 🔹 Entre 990px et 1024px */
@media screen and (min-width: 990px) and (max-width: 1024px) {
    #listeJoursMobile li {
        font-size: 1.1rem;
    }
}

/* 🔹 Entre 1025px et 1155px */
@media screen and (min-width: 1025px) and (max-width: 1155px) {
    #listeJoursMobile li {
        font-size: 1.2rem;
    }
}

/* 🔹 Plus de 1155px */
@media screen and (min-width: 1156px) and (max-width: 1300px) {
    #listeJoursMobile li {
        font-size: 1.3rem;
    }
}

/* 🔹 Plus de 1300px */
@media screen and (min-width: 1301px) {
    #listeJoursMobile li {
        font-size: 1.5rem;
    }

}

#listeJoursMobile li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Premier span : prend la largeur du plus long */
#listeJoursMobile li span:first-child {
    flex: 0 0 auto;
    min-width: max-content;
    text-align: left;
}

/* Horaire (centre) : garde sa largeur naturelle */
#listeJoursMobile li span:nth-child(2) {
    white-space: nowrap;
    text-align: center;
    padding-left: 5%
}

/* Dernier span : prend le reste de l’espace */
#listeJoursMobile li span:last-child {
    flex: 1;
    text-align: right;
}


.style1 {
    background-color: #f5f7fa;
    border-radius: 15px;
    padding: 12px 16px;
    display: flex;
    color: black;
}

.style1 > .operation-icon {
    margin-right: 10px;
    color: #f5b800;
    font-size: 3em;
    @media (max-width: 768px) {
        font-size:2.5em;
    }
}

.style2 {
    background-color: #ffc107;
    border-radius: 15px;
    padding: 12px 16px;
    display: flex;
    color: black;
}

.style2 > .operation-icon {
    margin-right: 10px;
    color: #0031f5;
    font-size: 3em;
    @media (max-width: 768px) {
        font-size:2.5em;
    }
}

.style3 {
    background-color: #6c757d;
    border-radius: 15px;
    padding: 12px 16px;
    display: flex;
    color: black;
}

.style3 > .operation-icon {
    margin-right: 10px;
    color: #f5b800;
    font-size: 3em;
    @media (max-width: 768px) {
        font-size:2.5em;
    }
}


.titreEtIcone {
    display: flex;
    align-items: center;
    flex-direction:column;
}

.titreEtIconeMobile {
    display: flex;
    align-items: center;
    padding:0 10px;
}




.blockDisplay {
    display: block;
}

.team-photo {
    border-radius: 15px;
    background: white;
    object-fit: cover;
    margin: 0 auto;
}

.prenom {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 15px;
    text-transform: capitalize;
}

.fonction {
    font-size: 1.5rem;
    color: #FFC833;
    font-weight: bold;
    word-break: break-word;
}




@media (min-width: 390px) {
    .operation-dates {
        font-size: 13pt;
    }

    .operation-details > * {
        font-size: 11pt;
    }

    .operation-details {
        font-size: 11pt;
    }
}

@media (min-width: 990px) {
    .operation-dates {
        font-size: 15pt;
    }

    .operation-details > * {
        font-size: 12pt;
    }

    .operation-details {
        font-size: 12pt;
    }
}

.prenomFonction {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.prenomFonctionMobile {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}
@media (max-width: 768px) {
    #map-magasin {
        height: 200px
    }

    .ligneFilAriane{
        font-size: 1rem;

    }
}

#recenterMap {
    position: absolute;
    top: 10px;
    right: 65px;
    z-index: 10; 
    padding: 8px 12px;
    background-color: #112F4E;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: Roboto;
}

#recenterMap:hover {
    background-color: #0056b3;
}

@media(min-width: 768px) {
    #telPageMag {
        cursor:default;
    }
}

#adresseAvisContactMobile {
    margin-bottom:5vh;
}

#h1PageMag {
margin:0;
height: 16px;
padding:0;
font-family: Roboto;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
    padding: 15px; 
}
.flex-item {
    flex: 1 1 100%; 
    max-width: 100%;
    padding: 10px; 
    box-sizing: border-box; 
}


.flex-item-half-width {
    flex: 1 1 calc(50% - 30px); 
    max-width: calc(50%);
}

.full-width-button {
    width: 100%;
    box-sizing: border-box;
}
