    txtred 		    { color: #FF0000; }
    txtredbold 	    { color: #FF0000; font-weight: bold; }
    txtgris		    { color: #bbbbbb; }
    txtgrisbold	    { color: #bbbbbb; font-weight: bold; }
    txtgrey		    { color: #b3b2b2; }
    txtgreybold	    { color: #b3b2b2; font-weight: bold; }
    txtnoir		    { color: #000000; }
    txtnoirbold	    { color: #000000; font-weight: bold; }
    txtgreen	    { color: #1abc9c; }
    txtgreenbold    { color: #1abc9c; font-weight: bold; }
    txtblue	        { color: #3498db; }
    txtbluebold     { color: #3498db; font-weight: bold; }
    txtviolet       { color: #9b59b6; }
    txtvioletbold   { color: #9b59b6; font-weight: bold; }
    txtjaune        { color: #ffe600; }
    txtjaunebold    { color: #ffe600; font-weight: bold; }
    txtorange       { color: #ff8800; }
    txtorangebold   { color: #ff8800; font-weight: bold; }
    txtbeige        { color: #FFE3BB; }
    txtbeigebold    { color: #FFE3BB; font-weight: bold; }
    txtsaumon       { color: #FFA673; }
    txtsaumonbold   { color: #FFA673; font-weight: bold; }
    txtbordeau      { color: #A02334; }
    txtbordeaubold  { color: #A02334; font-weight: bold; }
    txtnavy         { color: #27548A; }
    txtnavybold     { color: #27548A; font-weight: bold; }
    
    .txtred 		{ color: #FF0000; }
    .txtredbold 	{ color: #FF0000; font-weight: bold; }
    .txtgris		{ color: #bbbbbb; }
    .txtgrisbold	{ color: #bbbbbb; font-weight: bold; }
    .txtgrey		{ color: #b3b2b2; }
    .txtgreybold	{ color: #b3b2b2; font-weight: bold; }
    .txtnoir		{ color: #000000; }
    .txtnoirbold	{ color: #000000; font-weight: bold; }
    .txtgreen	    { color: #1abc9c; }
    .txtgreenbold   { color: #1abc9c; font-weight: bold; }
    .txtblue	    { color: #3498db; }
    .txtbluebold    { color: #3498db; font-weight: bold; }
    .txtviolet      { color: #9b59b6; }
    .txtvioletbold  { color: #9b59b6; font-weight: bold; }
    .txtjaune       { color: #ffe600; }
    .txtjaunebold   { color: #ffe600; font-weight: bold; }
    .txtorange      { color: #ff8800; }
    .txtorangebold  { color: #ff8800; font-weight: bold; }
    .txtbeige       { color: #FFE3BB; }
    .txtbeigebold   { color: #FFE3BB; font-weight: bold; }
    .txtsaumon      { color: #FFA673; }
    .txtsaumonbold  { color: #FFA673; font-weight: bold; }
    .txtbordeau     { color: #A02334; }
    .txtbordeaubold { color: #A02334; font-weight: bold; }
    .txtnavy        { color: #27548A; }
    .txtnavybold    { color: #27548A; font-weight: bold; }



/*- Message erreur/success/etc... ---------------------------
    Exemple d'utilisation 
        #1 - pour une erreur
            <div class="erreur">Ici le message d'erreur</div>
        #2 - pour une action réussi
            <div class="success">Ici le message d'erreur</div>
*/
.espaceur{
    padding:5px;}
.erreur {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background:#f8d7da;
    color:#ab313c;
    font-size: initial;}
.erreur .titleMsg {
    padding:5px;
    font-style: normal;
    font-weight: bold;
    color:#ab313c;}    
.success {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background:#def0d8;
    color:#3c7542;
    font-size: initial;} 
.success .titleMsg {
    padding:5px;
    font-style: normal;
    font-weight: bold;
    color:#3c7542;}
.information {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background:#cff4fc;
    color:#4545b1;
    font-size: initial;
    font-style: italic;} 
.information .titleMsg {
    padding:5px;
    font-style: normal;
    font-weight: bold;
    color:#4545b1;}
.attention {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background:#f9f3cf;
    color:#c36c47;
    font-size: initial;}
.attention .titleMsg {
    padding:5px;
    font-style: normal;
    font-weight: bold;
    color:#c36c47;}


/*- ACCORDEON ----------------------------------------------------- */
input[type=radio] .invisible { 
    display: block;}
.input-radio-open:not(:checked) ~ .element__header .header__title--open {
    display: block;}
.input-radio-open:not(:checked) ~ .element__header .header__title--close {
    display: none;}
.input-radio-open:not(:checked) ~ .element__content {
    height: 0;
    opacity: 0;
    overflow: hidden;}
.input-radio-open:checked ~ .element__header .header__title--open {
    display: none;}
.input-radio-open:checked ~ .element__header .header__title--close {
    display: block;}
.input-radio-open:checked ~ .element__content {
    opacity: 1;
    overflow: auto;}
.accordeon{
    padding-left: 0;
    margin-bottom: 0;}
.accordeon__element {
    /* margin-top: 10px; */
    padding-left: 0;
    list-style-type: none;}
.header__title {
    background-color: #4aa3df;
    text-align: left;
    padding: 11px 0;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.25s ease;}
.header__title .fa {
    margin-right: 10px;
    margin-left: 10px;}
.header__title:hover, .header__title.header__title--close {
    background-color: #016fb3;}
.element__content {
    padding: 0 10px;
    transition: height 0.25s ease, opacity 0.25s ease, padding 0s ease;}
.content__wrapper {
    margin-top: 5px;
    margin-bottom: 30px;
    padding: 10px;
    border-left: 1px solid #ee875d;}         


/*- Upload image--------------------------------------------
    A utiliser avec :
        <script> 
            function submitForm()...
            function handleFiles(files)...
    Exemple d'utilisation 
        <label for="upload"><span id="preview"><br><br>Zone de prévisualisation<br><br><br></span></label>
        <div class="input-file 12u">
            <button class="icon fa-download button small fit">Choisir un fichier image</button>
            <input type="file" onchange="handleFiles(files)" id="upload" multiple name="file">
        </div>

        <input type="submit" onclick="submitForm()" name="EnrImg" class="special small fit" value="Valider l'image">
*/
.input-file {
    display: inline-block;
    position: relative;
    overflow: hidden;}
.input-file input[type=file] {
    left: 0;
    top: 0;
    opacity: 0;
    position: absolute;
    font-size: 90px;}
#preview{
    border: solid 1px;
    border-color: rgba(144, 144, 144, 0.25);
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #b7b7b7;}
#preview img{
    width: 100%;}
body, input, select, textarea{
    line-height:1.25;}


/* EDITEUR DE TEXT --------------------------------------------*/
.iframeTextarea {
    display: none;}
iframe {
    width:100%;
    height:500px;
    border:1px solid #999;}
.NavBarEditor {
    background-color: #f1f1f1;
    border: 1px solid;
    border-color: #a0a0a0;
    padding:10px;}
.btn-primary:hover {
    color: rgb(0, 0, 0);
    background-color: #acacac;
    border-color: #818286;}
.btn-primary {
    color: rgb(0, 0, 0);
    background-color: #e2e2e2;
    border-color: #d0d0d0;}			
.btn {
    display: inline-block;
    margin-bottom: 3px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;}
.btn-Color {
    width: 60px;
    height: 34px;
    padding: 3px;
    color: rgb(0, 0, 0);
    background-color: #e2e2e2;
    border-color: #d0d0d0;}
.btn-Color:hover {
    background-color: #acacac;
    border-color: #818286;}
#btn_fontSize {
    width: 35px;
    height: 34px;}


/*- BADGE ----------------------------------------------------- */
#header .panier {
    display: inline-block;
    height: inherit;
    right: 10.25em;
    line-height: inherit;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 2;
    color: #fff;
    font-size: 1em;
    text-decoration: none;}
.badge1 {
   position:relative;}
.badge1[data-badge]:after {
   content:attr(data-badge);
   position:absolute;
   top:-10px;
   right:-13px;
   font-size:.7em;
   background:red;
   color:white;
   width:18px;height:18px;
   text-align:center;
   line-height:18px;
   border-radius:50%;
   box-shadow:0 0 1px #333;}
.badge2 {
   position:relative;}
.badge2[data-badge]:after {
   content:attr(data-badge);
   position:absolute;
   top:-10px;
   right:-13px;
   font-size:.7em;
   background:green;
   color:white;
   width:18px;height:18px;
   text-align:center;
   line-height:18px;
   border-radius:50%;
   box-shadow:0 0 1px #333;}



/* ligne de barre au dessus et au dessous */
.teaser {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1em;
    border-top: 1px solid rgba(144, 144, 144, 0.25);
    border-bottom: 1px solid rgba(144, 144, 144, 0.25);
    padding: .5em 0;
    color: #535f6b;}

