verySmall,.verySmall {
    font-size: 65%
}

.layout-menu {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* Horizontal offset, vertical offset, blur radius, color */
    transition: box-shadow 0.3s; /* Transition for smooth effect on change */
}






.stepper .step {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #eee;
    margin-right: 5px;
}

.stepper .step.active {
    background-color: #4CAF50;
    color: white;
}


.marginRight20 {
    margin-right: 20px;
}

.marginLeft20 {
    margin-left: 20px;
}

.marginTop20 {
    margin-top: 20px;
}

.marginBottom20 {
    margin-bottom: 20px;
}


.change-color {
 filter: invert(1) brightness(0);
}



.parentFlexColumn {
    display: flex;
    flex-direction: column;
    height: 100vh; /* hauteur totale disponible */
}

.childFlex1 {
    flex: 1; /* Prend 1/6 de l'espace total */
}

.childFlex3 {
    flex: 3; /* Prend 3/6 de l'espace total */
}

.childFlex4 {
    flex: 4;
}

.childFlex5 {
    flex: 5;
}
.childFlex6 {
    flex: 6;
}

.childFlex10 {
    flex: 10;
}

.childFlex2 {
    flex: 2; /* Prend 2/6 de l'espace total */
}

#mainImage {
    width: auto; /* Laisse la largeur s'ajuster automatiquement */
    height: 100%; /* Définit la hauteur à 100% du conteneur */
    object-fit: cover; /* Ajuste l'image pour qu'elle remplisse tout l'espace disponible */
}




.rounded-6 {
    border-radius: .675rem !important
}




.img-container {
    position: relative;
}

.download-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
}

.img-container:hover .download-icon {
    display: block;
}

img {
    transition: 0.3s ease;
}

.img-container:hover img {
    opacity: 0.7;
}


.hoverJaune:hover {
    background: #ffc91f;
}

.hoverTextJaune:hover {
    color: #ffc91f;
}

.textJaune {
    color: #ffc91f;
}

.hoverBleuFonce:hover {
    background-color: black !important;
}

.hoverBleuClair:hover {
    background-color: #a1cafa !important;
}

.hoverCursorPointer:hover {
    cursor: pointer;
}


.activemenu {
    background-color: #ffc91f !important;
    color: black !important;
}

.activemenu:hover {
    background-color: #ffc91f !important;
    color: white !important;
}