/* début Styles CONSTANTES */
/* ======================= */

    /* voir style_root.css */

    /* fin Styles CONSTANTES */
    /* = = = = = = = = = */

        /* Styles de base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body, html {
            height: 100%;
           /*font-family: var(--PromoFontFamily);*/
        }
        .container_mandat {
            display: flex;
            flex-direction: column;
            height: 100vh;
        }

        /* Espace 1 => LIGNE DU HAUT  */
        .espace1 {
            display: flex;
            height: calc( 100% - var(--PromoRatioVz));
            background-color: var(--PromoColorFondClair);
        }
.espace1 .colA {
    position: relative; /* Nécessaire pour le positionnement de l'élément pseudo */
    width: var(--PromoRatioHz);
    background-color: var(--PromoColorFondClair);
    padding-top: 0px; /* Ajoute une marge intérieure */
    padding-bottom: 0px; /* Ajoute une marge intérieure */
    padding-left: 20px; /* Ajoute une marge intérieure */
    padding-right: 20px; /* Ajoute une marge intérieure */
    overflow-y: auto;
    transition: width 0.5s, padding 0.5s;
}

.espace1 .colA.hidden {
    width: 0;
    padding: 0;
}

/* Pseudo-élément pour l'arrière-plan filtré */
.espace1 .colA::before {
    content: ""; /* Nécessaire pour afficher un élément */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url("logo/logo_fond.png");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: calc(100% - 80px); /* Réduit la taille de l'image pour simuler une marge */
    filter: opacity(10%); /* Applique la saturation et la luminosité */
   /* filter: saturate(0%) brightness(200%) contrast(200%); /* Applique la saturation et la luminosité */
    z-index: 0; /* Place cet élément en dessous du contenu */
}

/* Assurez-vous que le contenu de la colonne A soit au-dessus de l'arrière-plan */
.espace1 .colA > * {
    position: relative;
    z-index: 1; /* Rend le contenu visible par-dessus l'arrière-plan */
}

        .espace1 .colB {
            width: calc( 100% - var(--PromoRatioHz));
            background-color: var(--PromoColorFondFonce);
            padding: 0;
            position: relative;
            overflow: hidden;
            transition: width 0.5s;
        }

        .espace1 .colB.full-width {
            width: 100%;
        }

        /* Slideshow Styles */
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .slide {
            display: none;
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .active-slide {
            display: block;
        }

        /* Navigation Arrows */
        .nav-arrows {
            position: absolute;
            bottom: 0%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            opacity: 0; /* Masque par défaut */
            transition: opacity 0.3s;
        }
        .nav-arrows button {
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 1.2em;
        }
        .colB:hover .nav-arrows {
            opacity: 1; /* Affiche les flèches au survol */
        }



    
/* ligne séparation HZ du titre */
hr.solid {
  border-top: 2px solid  var(--PromoColorTextFonce);
}



/* Style pour le bouton V2 */
#toggleColA {
    position: absolute;
    top: 50%;
    left: 0px;
    height: 100px;
    width: 20px;
   /* background-color: var(--PromoColorFondFonce);
    color: var(--PromoColorTextClair);
    border: none;*/
   /* padding: 5px 10px;*/
    cursor: pointer;
    z-index: 92;
  /*  opacity: 0.7;*/
    text-align: center;
    transform: translate(0px,0px);
   /* margin-left:-10px;
    margin-right:10px;*/
}
/*
#toggleColA:hover {
    opacity: 1; /* Affiche les flèches au survol 
}
*/

/* Style pour masquer colB1 et ajuster la hauteur de colB2 */
.colB1.hidden {
    display: none;
}
/*
.colB2.expanded {
    height: 100% !important;
}*/

.colB2 {
    height: 500px;
    transition: height 0.5s; /* Ajoute une transition douce pour l'effet */
}

.expandedWidth {
    width: 100% !important;
		transition: width 0.5s;
}


.expandedWidth {
    width: 100% !important;
		transition: width 0.5s;
}



.hidden {
    display: none;
	transition: width 0.5s;
}


/* Etiquette */
.etiquette {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--PromoColorVert);
    color: white;
   /* padding: 10px; /* Utiliser un padding uniforme pour assurer la rondeur */
    border-radius: 50%; /* Garder la bordure arrondie */
    font-size: 20px;
    font-family: var(--PromoFontFamily);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 60px; /* Optionnel : pour éviter que l'étiquette ne soit trop petite */
    max-width: 120px; /* Optionnel : pour éviter que l'étiquette ne soit trop petite */
    min-height: 60px; /* Optionnel : pour éviter que l'étiquette ne soit trop petite */
    max-height: 120px; /* Optionnel : pour éviter que l'étiquette ne soit trop petite */
    /* z-index: 999; */
    padding: 80px;
    margin: 15px;
}



.abbr {
    text-decoration: none;
    border: none;
}
.button {
    cursor:pointer;
    
}



/* début style formulaire de contact */

/* Style général du formulaire */
form {
    /* max-width: 600px; */
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	    font-family: var(--PromoFontFamily);
}


/* Style général du formulaire */
.cadreapresform {
    /* max-width: 600px; */
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	    font-family: var(--PromoFontFamily);
}

/* Style général du formulaire */
.cadrecredit {
    /* max-width: 600px; */
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 20px;
    border: 0px solid #ccc;
    border-radius: 10px;
   /* background-color:  rgba(249, 249, 249, 0.5);*/
   /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
	    font-family: var(--PromoFontFamily);
}

/* Style des labels */
label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    color: #333;
	    font-family: var(--PromoFontFamily);
}

/* Style des champs de saisie */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
	    font-family: var(--PromoFontFamily);
}

/* Style du bouton d'envoi */
input[type="submit"] {
  background-color: var(--PromoColorFondFonce); 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
	font-weight:bold;
    transition: background-color 0.3s;
	    font-family: var(--PromoFontFamily);

}

input[type="submit"]:hover {
  background-color: var(--PromoColorFondFonceHover); 
}

/* Style du titre */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
/* fin style formulaire de contact */


.centered-hr {
   /*  width: 50%;
    margin: 10px auto; /* 10px de marge verticale et auto pour centrer horizontalement */
	width: calc( 100% - 400px );
    margin-top: 0px; 
    margin-bottom: 10px; 
    margin-left: 200px; 
    margin-right: 200px; 
    border: 0;
    border-top: 1px solid #000; /* Couleur et épaisseur du trait */
}

/* Style du bouton d'envoi */
.btn_connexion {
  background-color: var(--PromoColorFondFonce); 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
	font-weight:bold;
    transition: background-color 0.3s;
	    font-family: var(--PromoFontFamily);
}


/* Style du bouton d'envoi */
.btn_connexion:hover {
  background-color: var(--PromoColorFondFonceHover); 
}




/* 
/* 
/* 
/* 
/* 
/* /* début style message confirmation formulaire */
/* 
/* /* Style général du message */
/* .message-container {
/*     text-align: center;
/*     margin: 50px auto;
/*     padding: 20px;
/*     border-radius: 10px;
/*     max-width: 600px;
/*     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/* }
/* 
/* /* Style pour le message de succès */
/* .message-container.success {
/*     background-color: #d4edda;
/*     color: #155724;
/* }
/* 
/* /* Style pour le message d'erreur */
/* .message-container.error {
/*     background-color: #f8d7da;
/*     color: #721c24;
/* }
/* 
/* /* Style des boutons */
/* .button {
/*     display: inline-block;
/*     margin: 10px;
/*     padding: 10px 20px;
/*     background-color: #007bff;
/*     color: white;
/*     text-decoration: none;
/*     border-radius: 5px;
/*     transition: background-color 0.3s;
/* }
/* 
/* .button:hover {
/*     background-color: #0056b3;
/* }
/* 
/* /* Style du fond d'écran */
/* body {
/*     background: url('path_to_wallpaper.jpg') no-repeat center center fixed;
/*     background-size: cover;
/*     font-family: Arial, sans-serif;
/* }
/* 
/* /* début style message confirmation formulaire */