
/* ----------  base.html -------------- */
*{
    margin: 0px;
    padding: 0px;
    font-family: Avenir, sans-serif;
}
html {
    height: 100%;
} 
html, body {
    padding: 0;
    margin: 0;
    border: 0;
}
body {
    /* height: 100%; */
    font: 100% 'Comic Sans MS', Arial, Helvetica, sans-serif;
    /* background-color: rgb(66, 65, 65); */
    background-color: var(--color-fond);
    color: var(--color-text1);
    /* color: rgb(15, 14, 14); */
}
a {
    color: aquamarine;
}
.div-space-height {
    width: 100%;
    height: 80px;
}
.div-space-width {
    margin-left: 20px;
}
a {
    color: var(--lien1);
}

/* ----------  login.html -------------- */
.container-login {
    /* min-height: 600px; */
    min-height: 100vh;
    /* height: 100%; */
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-image: url('/static/img/fond1.png');
    background-size: cover;
    /* background-size: contain; */
    background-repeat: no-repeat;
    background-position: center;
}

.form-login {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    border:solid coral 1px;
    box-shadow: rgb(8, 8, 8) 0.5em 0.5em 0.3em;
    background-color: #8fb5e2;
    margin-top: 30px;
}
.input-login {
    display: block;
    margin-bottom: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 31px;
    padding: 8px;
    border-radius: 6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    box-shadow: inset 0px 1px 1px rgba(143, 141, 141, 0.33);
    -moz-box-shadow: inset 0px 1px 1px rgba(143, 141, 141, 0.33);
    -webkit-box-shadow: inset 0px 1px 1px rgba(143, 141, 141, 0.33);
    background-color: rgb(252, 244, 209);
    font: 100% 'Comic Sans MS', Arial, Helvetica, sans-serif;
  }
.text-login {
    /* margin-top: 15px; */
    padding-top: 20px;
    font-size: 1.6em;
    text-align: center;
    color: aliceblue;
}
.bt-code {
    width: 35px;
    padding: 5px;
    border: solid gray 1px;
    font-size: 17px;
}
.message-login {
   margin: 25px;
    text-align: center;
    font-size: 22px;
    color: #69f775;
}
.etoiles-input {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    text-align: center;
    background: #4a6b84;
    /* haut | droit | bas | gauche */
    padding: 10px 5px 0px 5px;
    border-radius: 10px;
    box-shadow: inset 2px 2px 2px #cbced1, inset -2px -2px 2px rgb(115, 114, 114);
  }
.boutton-login {
    /* color: white; */
    text-align: center;
    padding: 5px 5px 5px 5px;
    color: rgb(24, 24, 24);
    font-size: 16px;
    margin-top: 20px;
    width: 90px;
    background: #1DA1F2;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #cbced1, -1px -1px 1px rgb(221, 219, 249);
    transition: 0.5s;
}
.boutton-login:hover {
    /* box-shadow: none; */
    box-shadow: 1px 1px 1px #bcf6c0, -1px -1px 1px rgb(54, 245, 6);
}
.boutton-login-false {
    /* display: none; */
    text-align: center;
    padding: 5px 5px 5px 5px;
    /* color: rgb(163, 163, 166); */
    color: #8fb5e2;
    margin-top: 20px;
    width: 80px;
    /* background: #80c6f1; */
    background-color: #8fb5e2;
    border-radius: 10px;
    border: 1px solid rgb(147, 141, 186);
}
/* ********** Anim  *********************/

.anim-content {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .loader {
    max-width: 15rem;
    width: 100%;
    height: auto;
    stroke-linecap: round;
  }
  
  circle {
    fill: none;
    stroke-width: 3.5;
    -webkit-animation-name: preloader;
            animation-name: preloader;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    transform-origin: 170px 170px;
    will-change: transform;
  }
  circle:nth-of-type(1) {
    stroke-dasharray: 550px;
  }
  circle:nth-of-type(2) {
    stroke-dasharray: 500px;
  }
  circle:nth-of-type(3) {
    stroke-dasharray: 450px;
  }
  circle:nth-of-type(4) {
    stroke-dasharray: 300px;
  }
  circle:nth-of-type(1) {
    -webkit-animation-delay: -0.15s;
            animation-delay: -0.15s;
  }
  circle:nth-of-type(2) {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
  }
  circle:nth-of-type(3) {
    -webkit-animation-delay: -0.45s;
            animation-delay: -0.45s;
  }
  circle:nth-of-type(4) {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s;
  }
  
  @-webkit-keyframes preloader {
    50% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes preloader {
    50% {
      transform: rotate(360deg);
    }
  }
    
/* ********** Accueil  *********************/
.container-accueil {
    min-height: 100vh;
    /* background-color: black; */
    font-size: 1.2em;
    background-color: var(--color-fond);
}
.grisbi-accueil {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /* color: burlywood; */
    color: var(--color-text2);
    width: 100%;
    margin-bottom: 70px;
}
.grisbi-text-accueil {
    color: gray;
    font-size: 0.7em;
}
.titre-accueil {
    padding-top: 20px;
    min-height: 100px;
    text-align: center;
    /* color: aliceblue; */
    color: var(--color-text1);
}
.info-accueil {
    text-align: center;
}
.content-list-accueil {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
    /* justify-content: space-between; */
    max-width: 550px;

}
.solde-list-accueil {
    text-align: right;
    color: var(--color-text1);
}
.montant-accueil {
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    text-align: center;
    width: 200px;
    padding: 20px;
    border: 1px solid rgba(183, 186, 246, 0.8);
    color: var(--color-text1);
}
.content-bt1 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    text-align: center;
    width: 350px;
}
.bt1-accueil {
    display: inline-block;
    background-color: #494951;
    border-radius: 10px;
    border: 4px double #cccccc;
    color: #29ee3a;
    text-align: center;
    font-size: 21px;
    padding: 8px;
    width: 250px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    text-decoration: none;
}
.bt1-accueil:hover {
    display: inline-block;
    background-color: #0707f2;
    border-radius: 10px;
    border: 4px double #cccccc;
    color: #faf6a3;
    text-align: center;
    font-size: 25px;
    padding: 8px;
    width: 260px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    text-decoration: none;
  }

.grisbi-tonton {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 100px;
    width: 100%;
    margin-bottom: 30px;
}

/* ********** Liste compte  *********************/
.container-list-compte {
    /* color: #daedf5; */
    color: var(--color-text2);
    min-height: 100vh;
    /* font-size: 1.5em; */
    background-color: var(--color-fond);
}
.content-list-compte {
    margin-left: auto;
    margin-right: auto;
    /* width: 95%; */
    width: 1350px;
    /* color: aliceblue; */
    color: var(--color-text1);
    /* border: 1px solid rgba(251, 247, 247, 0.8); */
}
@media screen and (max-width: 400px) {
    .content-list-compte {
        width: 98%;
    }
}
.titre-solde {
    /* color: rgb(6, 205, 6); */
    color: var(--liste-num-credit);
    margin-left: 10px;
}
.titre-solde-nul {
    color: rgb(239, 14, 70);
    margin-left: 10px;
}

.grid-libel {
    display: grid;
    /* grid-template-columns: 180px 320px 220px 210px 140px 140px 15px; */
    grid-template-columns: 190px 390px 130px 300px 160px 120px 50px;
    padding: 5px;
    max-height: 800px;
    /* color: antiquewhite; */
    color: var(--color-text1);
}
@media screen and (max-width: 400px) {
    .grid-libel {
        display: none;
    }
}

.grid-container {
    display: grid;
    /* grid-template-columns: auto auto auto auto auto auto auto; */
    grid-template-columns: 160px 400px 130px 320px 140px 124px 30px 5px;
    padding: 5px;
    /* max-width: 950px; */
    max-height: 600px;
    border-top: 1px solid #8fb5e2;
    border-left: 1px solid #8fb5e2;
    border-right: 1px solid #8fb5e2;
    overflow-y: scroll;
  }
  @media screen and (max-width: 400px) {
    .grid-container {
        grid-template-columns: 130px 300px 100px 200px 110px 100px 30px;
        /* grid-template-columns: auto auto auto auto auto auto auto; */
        padding: 1px;
        max-height: auto;
        font-size: 0.8em;
    }
}
  /*  
  .grid-container-total {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    padding: 5px;
    width: 100%;
    max-height: 600px;
    border-top: 1px solid #8fb5e2;
    border-left: 1px solid #8fb5e2;
    border-right: 1px solid #8fb5e2;
    overflow-y: scroll;
  }
*/
.list-lign1 {
    padding: 6px;
    border-bottom: 1px solid #8fb5e2;
    border-right: 1px solid #8fb5e2;
    border-left: 1px solid #8fb5e2;
    /* background-color: #0e06a1; */
}
.list-lign1 > a {
    /* color: rgb(210, 212, 248); */
    color: var(--color-text1);
    text-decoration: none;
}
.list-lign2 {
    padding: 6px;
    min-width: 250px;
    border-bottom: 1px solid #8fb5e2;
    border-right: 1px solid #8fb5e2;
}
.list-lign2 > a {
    /* color: rgb(210, 212, 248); */
    color: var(--color-text1);
    text-decoration: none;
}
.list-lign3 {
    text-align: right;
    padding: 4px;
    border-bottom: 1px solid #8fb5e2;
    border-right: 1px solid #8fb5e2;
}
.list-lign3 > a {
    /* color: white; */
    color: var(--color-text1);
    text-decoration: none;
}
.list-lign3-credit {
    /* color: rgb(102, 248, 124); */
    color: var(--liste-num-credit);
    text-decoration: none;
}
.list-lign3-solde {
    color: rgb(244, 37, 51);
    text-decoration: none;
}

.list-lign4 {
    text-align: right;
    /* haut | droit | bas | gauche */
    padding: 4px 8px 4px 4px;
    border-bottom: 1px solid #8fb5e2;
}
.list-lign4 > a {
    color: white;
    text-decoration: none;
}
.list-lign7 {
    /* haut | droit | bas | gauche */
    padding: 5px 4px 4px 5px;
    text-align: right;
    border-right: 1px solid #8fb5e2;
    border-bottom: 1px solid #8fb5e2;
}
.list-lign7 > a {
    text-decoration: none;
    font-size: 0.8em;
}

.row1-check {
    /* background-color: #01000e; */
    background-color: var(--list-fond1);
}
.row2-check {
    /* background-color: #3c3c3c; */
    background-color: var(--list-fond2);
}
.list-pos {
    margin-top: 6px;
    margin-left: 3px;
}

/*  
.content-list-compte-total {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-height: 300px;
    color: aliceblue;
    overflow-y: scroll;
    padding: 10px;
    border: solid 1px rgb(247, 121, 121);
}
*/

.titre-list-compte-total {
    text-align: center;
    margin-bottom: 10px;
}
.content-bts-mois {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 250px;
    margin-bottom: 30px;
    /* border: solid 1px rgb(247, 121, 121); */
}
@media screen and (max-width: 400px) {
    .content-bts-mois {
        flex-wrap: nowrap;
        gap: 40px;
        margin-bottom: 10px;
    }
}

.content-bts-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

/* ----- Bouton - lien ----- */
.bt-mois-list {
    /* haut | droit | bas | gauche */
    padding: 5px 20px 5px 20px;
    text-align: center;
    width: 110px;
    height: 40px;
    color: rgb(2, 16, 72);
    border-radius: 5px;
    font-size: 1.0em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    background-color: rgb(208, 210, 243);
    cursor: pointer;
}
.bt-list-compte {
    display: inline-block;
    background: linear-gradient(rgb(61, 119, 245), rgb(5, 61, 243));
    border-radius: 10px;
    border: 4px double #cccccc;
    color: #eeeeee;
    text-align: center;
    font-size: 19px;
    padding: 8px;
    width: 300px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.bt1-list-compte {
    display: inline-block;
    /* background-color: #187702; */
    background-color: var(--bt-list);
    border-radius: 10px;
    border: 4px double #cccccc;
    color: #eeeeee;
    text-align: center;
    font-size: 19px;
    padding: 8px;
    width: 300px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
.bt1-list-compte span {
    cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
}
.bt1-list-compte span:after {
    content: "\00bb";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
.bt1-list-compte:hover {
    background-color: #070daf;
  }
.bt1-list-compte:hover span {
    padding-right: 25px;
  }
.bt1-list-compte:hover span:after {
    opacity: 1;
    right: 0;
  }
.content-bt2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
}
.bt-supr {
    text-decoration: none;
    /* haut | droit | bas | gauche */
    padding: 10px 15px 10px 15px;
    text-align: center;
    color: white;
    width: 100px;
    /* height: 55px; */
    border-radius: 10px;
    color: white;
    font-size: 1.1em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    background: linear-gradient(rgb(241, 34, 6), rgb(248, 54, 47));
    cursor: pointer;
}
.bt-retour {
    text-decoration: none;
    /* haut | droit | bas | gauche */
    padding: 10px 30px 10px 30px;
    text-align: center;
    color: white;
    /* height: 55px; */
    border-radius: 10px;
    color: white;
    font-size: 1.1em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    /* background: linear-gradient(rgb(112, 103, 246), rgb(41, 23, 240)); */
    background: linear-gradient(rgb(2, 122, 32), rgb(3, 146, 10));
    cursor: pointer;
}
.bt-valid {
    text-decoration: none;
    /* haut | droit | bas | gauche */
    padding: 10px 15px 10px 15px;
    text-align: center;
    /* width: 125px; */
    width: auto;
    color: white;
    border-radius: 10px;
    color: white;
    font-size: 1.1em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    background: linear-gradient(rgb(2, 122, 32), rgb(3, 146, 10));
    cursor: pointer;
}
.bt-anul {
    text-decoration: none;
    /* haut | droit | bas | gauche */
    padding: 10px 15px 10px 15px;
    text-align: center;
    /* width: 125px; */
    width: auto;
    color: white;
    border-radius: 10px;
    color: white;
    font-size: 1.1em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    background: linear-gradient(rgb(96, 90, 245), rgb(62, 85, 238));
    cursor: pointer;
}
.bt-autre {
    padding: 4px;
    text-align: center;
    width: auto;
    color: rgb(2, 16, 72);
    border-radius: 5px;
    font-size: 0.9em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    background-color: rgb(208, 210, 243);
    cursor: pointer;
}

/* ------- Pagination ---------- */
.pagination-content {
    margin-top: 20px;
    margin-bottom: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: rgb(249, 246, 246);
    display: grid;
    max-width: 650px;
    grid-template-columns: 1.5fr 1fr 1fr;
    justify-content: space-evenly;
    /* border: 0.01em dashed #66fa5396; */
    background-color: rgb(196, 194, 194);
    border-top: 0.01em dashed #66fa5396;
}
.pagination > span > a {
    color: rgb(162, 164, 250);
}
.pagination-span {
    margin-left: 15px;
}
.pagination {
    margin-left: 50px;
    color: #8fb5e2;
    /* border: 1px solid #daedf5; */
}

/* ********** Paramètres  *********************/
.container-list-param {
    color: #daedf5;
    height: auto;
    background-color: black;
    /* border: solid 1px rgb(247, 121, 121); */
}
.theme-lien {
    font-size: 0.8em;
}

/* ********** Prévisionnel  *********************/
.previ-container {
    /* min-height: 100vh; */
    background-color: var(--color-fond);
    color: var(--color-text1);
}
.container-list-previ {
    color: var(--color-text1);
    min-height: 100vh;
    height: auto;
    background-color: var(--color-fond);
    /* border: solid 1px rgb(247, 121, 121); */
}
.grid-container-previ {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    padding: 5px;
    /* max-width: 950px; */
    max-height: 800px;
    border-top: 1px solid #8fb5e2;
    border-left: 1px solid #8fb5e2;
    border-right: 1px solid #8fb5e2;
    overflow-y: scroll;
  }
.content-list-previ {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    /* min-height: 600px; */
    color: aliceblue;
    margin-bottom: 20px;
}
.titre-previ {
    text-align: center;
    margin-bottom: 30px;
}
.lign5-previ {
    padding: 6px;
    border-bottom: 1px solid #8fb5e2;
    border-right: 1px solid #8fb5e2;
}
.lign5-previ > a {
    color: var(--color-text1);
    text-decoration: none;
}
.previ-bt-content {
    margin-top: 20px;
    text-align: center;
}
.bt3-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    width: 630px;
    /* border: solid 1px wheat; */
}
.bt2-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    width: 630px;
    /* border: solid 1px wheat; */
}

.previ-bt-supr {
    text-decoration: none;
    /* haut | droit | bas | gauche */
    padding: 10px 15px 10px 15px;
    text-align: center;
    color: white;
    width: 120px;
    /* height: 55px; */
    border-radius: 10px;
    color: white;
    font-size: 1.1em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    background: linear-gradient(rgb(241, 34, 6), rgb(248, 54, 47));
    cursor: pointer;
}
.previ-message {
    text-align: center;
    color: red;
    margin-bottom: 35px;
}
/******************** Ajout - Credit / Debit  ***************** */

.space-height {
    height: 100px;
}
.space-height-mini {
    height: 40px;
}

.container-ajout-cpte {
    min-height: 100vh;
    /* background-color: black; */
    background-color: var(--color-fond);
    color: var(--text-ajout);
}
.form-ajout-cpte {
    /* haut | droit | bas | gauche */
    padding: 10px 10px 20px 20px;
    margin-left: auto;
    margin-right: auto;
    width: 760px;
    background-color: var(--fond-ajout);
    color: var(--text-ajout);
    border: solid 1px var(--border-color);
    box-shadow: 5px 5px 1px 1px var(--ombre-color);
    border-radius: 10px;
}
.input-ajout-cpte {
    text-align: left;
    font: normal 0.9em Helvetica, Arial,  sans-serif;
    /* max-width: 100%; */
    line-height: 1.5;
    border-radius: 5px;
    background-color: #dbd9d9;
    border-top: 0.15vw solid rgb(116, 114, 114);
    border-right: 0.1vw solid rgb(248, 246, 247);
    border-bottom: 0.1vw solid rgb(247, 243, 244);
    border-left : 0.15vw solid rgb(116, 114, 114);
    -moz-text-align-last: left;
    text-align-last: left;
    margin-left: 20px;
    margin-right: 30px;
}
.input-ajout-cpte-libel {
    /* text-align: left; */
    font: normal 0.9em Helvetica, Arial,  sans-serif;
    width: 250px;
    /* max-width: 100%; */
    line-height: 1.5;
    border-radius: 5px;
    background-color: #dbd9d9;
    border-top: 0.15vw solid rgb(116, 114, 114);
    border-right: 0.1vw solid rgb(248, 246, 247);
    border-bottom: 0.1vw solid rgb(247, 243, 244);
    border-left : 0.15vw solid rgb(116, 114, 114);
    /* -moz-text-align-last: left; */
    /* text-align-last: left; */
    /* margin-left: 5px; */
    margin-right: 4px;
}
.input-ajout-cpte-credit {
    text-align: left;
    font: normal 0.9em Helvetica, Arial,  sans-serif;
    width: 100px;
    /* max-width: 100%; */
    line-height: 1.5;
    border-radius: 5px;
    background-color: #a0efa3;
    border-top: 0.15vw solid rgb(116, 114, 114);
    border-right: 0.1vw solid rgb(248, 246, 247);
    border-bottom: 0.1vw solid rgb(247, 243, 244);
    border-left : 0.15vw solid rgb(116, 114, 114);
    -moz-text-align-last: left;
    text-align-last: left;
    margin-left: 10px;
    margin-right: 50px;
}
.input-ajout-cpte-debit {
    text-align: left;
    font: normal 0.9em Helvetica, Arial,  sans-serif;
    width: 100px;
    /* max-width: 100%; */
    line-height: 1.5;
    border-radius: 5px;
    background-color: #f9c5f2;
    border-top: 0.15vw solid rgb(116, 114, 114);
    border-right: 0.1vw solid rgb(248, 246, 247);
    border-bottom: 0.1vw solid rgb(247, 243, 244);
    border-left : 0.15vw solid rgb(116, 114, 114);
    -moz-text-align-last: left;
    text-align-last: left;
    margin-left: 10px;
    margin-right: 50px;
}
.label-ajout-cpte-debit {
    color: var(--text-debit);

}
.label-ajout-cpte-ctrdit {
    color: rgb(245, 136, 136);
}
.input-ajout-cpte-debit::placeholder {
    color: black;
    font-size: 1.0em;
    opacity: 1;
}
.input-ajout-cpte-credit::placeholder {
    color: black;
    font-size: 1.0em;
    opacity: 1;
}  

/*  
/* -- enlever les fléches champ numérique */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* -- enlever les fléches champ numérique pour firefox */
input[type=number] {
    /* -moz-appearance: textfield; */
    appearance: textfield;
}
.selct-form {
    width: 150px;
    height: 25px;
    padding: 2px;
    border: 1px solid #999;
    font-size: 15px;
    color: #023250;
    background-color: #dedbdb;
    border-radius: 5px;
    border-top: 0.15vw solid rgb(116, 114, 114);
    border-right: 0.1vw solid rgb(248, 246, 247);
    border-bottom: 0.1vw solid rgb(247, 243, 244);
    border-left : 0.15vw solid rgb(116, 114, 114);
}
.selct-form-vir {
    width: 200px;
    height: 25px;
    padding: 2px;
    border: 1px solid #999;
    font-size: 15px;
    color: #023250;
    background-color: #d4d7fb;
    border-radius: 5px;
    border-top: 0.15vw solid rgb(116, 114, 114);
    border-right: 0.1vw solid rgb(248, 246, 247);
    border-bottom: 0.1vw solid rgb(247, 243, 244);
    border-left : 0.15vw solid rgb(116, 114, 114);
}

/******************** MENU ***************** */
.grid-menu {
    margin: 15px 20% 5% 20%;
    display: grid;
    grid-template-columns: 200px 200px;
    grid-column-gap: 18px;
    grid-row-gap: 50px;
    justify-content: space-evenly;
    align-content: center;
    /* border: 1px solid #daedf5; */
}
@media screen and (max-width: 400px) {
    .grid-menu {
        display: grid;
        grid-template-columns: 200px;
        grid-column-gap: 18px;
        grid-row-gap: 50px;
        justify-content: space-evenly;
        align-content: center;
        margin-bottom: 15px;
    }
}
.bt-menu {
    width: 200px;
    text-decoration: none;
    /* haut | droit | bas | gauche */
    padding: 10px 10px 12px 10px;
    color: white;
    text-align: center;
    border-radius: 10px;
    font-size: 1.5em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    background: linear-gradient(rgb(61, 119, 245), rgb(5, 61, 243));
    cursor: pointer;
}
.newspaper {
    display: none;
    width: 200px;
    text-decoration: none;
    /* haut | droit | bas | gauche */
    padding: 10px 10px 12px 10px;
    color: white;
    text-align: center;
    border-radius: 10px;
    font-size: 1.5em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    background: linear-gradient(rgb(156, 233, 170), rgb(31, 123, 47));
    cursor: pointer;
}

.bt-menu-a {
    text-decoration: none;
    text-align: center;
    font-size: 0.8em;
}

.bt-menu-submit {
    min-width: 220px;
    text-decoration: none;
    /* haut | droit | bas | gauche */
    padding: 10px 10px 12px 30px;
    color: white;
    text-align: center;
    border-radius: 10px;
    font-size: 1.5em;
    font-family: 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    background: linear-gradient(rgb(61, 119, 245), rgb(5, 61, 243));
    cursor: pointer;
}

/* ************* Virement ******************** */
.vir-space {
    margin-right: 20px;
}

/* ********** Recherche dans un compte  *********************/
.container-rech-compte {
    color: var(--color-text1);
    min-height: 100vh;
    background-color: var(--color-fond);
}
.rech-compte {
    margin-left: auto;
    margin-right: auto;
    /* width: 50%; */
    width: 750px;
    padding: 12px;
    background-color: var(--fond-ajout);
    border: solid 1px var(--border-color);
    box-shadow: 5px 5px 1px 1px var(--ombre-color);
}
.rech-bt-content {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 550px;
}
.bt-rech-menu {
    text-decoration: none;
    display: inline-block;
    background-color: #187702;
    border-radius: 10px;
    border: 4px double #cccccc;
    color: #eeeeee;
    text-align: center;
    font-size: 19px;
    padding: 8px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
.bt-rech {
    /* haut | droit | bas | gauche */
    padding: 3px 9px 3px 9px;
    text-align: center;
    width: 125px;
    color: white;
    border-radius: 10px;
    color: white;
    font-size: 1.1em;
    font: Helvetica, 'Comic Sans MS', Arial, sans-serif;
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #daedf5;
    background: linear-gradient(rgb(2, 122, 32), rgb(3, 146, 10));
    cursor: pointer;
}
.bt-rech-align {
    margin-right: 0;
    margin-left: 100px;
}
.bt-rech-alignM {
    margin-left: 230px;
}
.bt-rech-alignR {
    margin-left: 80px;
}

/* ************* Listes pour rubriques et libellés ******************** */
.liste-content {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
    max-height: 600px;
    padding: 10px;
    border: 1px solid #424244;
    overflow-y: scroll;
}
.liste-form {
    margin-top: 30px;
    padding: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 460px;
    background-color: var(--fond-ajout);
    color: var(--text-ajout);
    border: solid 1px var(--border-color);
    border-radius: 10px;
    box-shadow: 5px 5px 1px 1px var(--ombre-color);
}
.liste-bt3-content {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 18px;
    max-width: 1040px;
    padding: 10px;
    border: solid 1px rgba(245, 222, 179, 0.487);
}

.liste-bt2-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    width: 460px;
    /* border: solid 1px wheat; */
}
.liste-bt-content {
    margin-top: 30px;
    text-align: center;
}

.liste-lign {
    padding: 6px;
    border-bottom: 1px solid #8fb5e2;
    /* border-right: 1px solid #8fb5e2; */
    /* background-color: #0e06a1; */
}
.liste-lign > a {
    color: var(--color-text1);
    text-decoration: none;
}


/* ************* Fenetre modal ******************** */
.modalDialog {
    position: fixed;
    text-align: center;
    /* font-family: Arial, Helvetica, sans-serif; */
    font: 100% 'Comic Sans MS', Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.336);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    }
.bt-modal {
    padding-left: 150px;
    text-align: center;
    background-color: #2A88AD;
    padding: 8px 20px 8px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
    font: normal 30px 'Bitter', serif;
    -moz-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    -webkit-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 2px solid #257C9E;
    font: 100% 'Comic Sans MS', Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    }
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
    }

.modalText {
    width: 400px;
    height: 140px;
    position: relative;
    margin: 20% auto;
    padding: 20px 20px 20px 20px;
    /* haut | droit | bas | gauche */
    border-radius: 10px;
    background-color: rgb(82, 78, 189);
    box-shadow: rgb(49, 49, 49) 0.5em 0.5em 0.3em;
    border: 1px solid #f30649;
}
.modalSpace {
    /* width: 150px; */
    margin-left: 25px;
    margin-right: 25px;
    height: 30px;
    color: rgb(82, 78, 189);
    /* border: 2px solid #257C9E; */

}
/*     
.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    }
    .close:hover { background: #6ed1d8; } */
