/*****************************************************************/


/**** Element html ****/


/*****************************************************************/

main {
    position: relative;
    width: 100%;
    grid-template-columns: repeat(13, 1fr);
    min-height: 90vh;
}

table tr {}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}


/*****************************************************************/


/**** FLEX ( un max ) ****/


/*****************************************************************/

.flex {
    display: flex;
}

.column {
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.center {
    align-items: center;
    justify-content: center;
}

.gap50 {
    gap: 50px;
}

.gap30 {
    gap: 30px;
}

.gap20 {
    gap: 20px;
}

.gap18 {
    gap: 18px;
}

.gap15 {
    gap: 15px;
}

.gap12 {
    gap: 12px;
}

.gap10 {
    gap: 10px;
}

.gap5 {
    gap: 5px;
}


/*****************************************************************/


/**** ID ****/


/*****************************************************************/

#banniere {
    padding: 20px 20px 20px 20px;
    background-color: #4173cf;
    color: white;
}

#banniere>h1 {
    margin-left: 2%;
}


/* #contenu-CA-commande > div > span {
  width: 100%;
} */


/*****************************************************************/


/**** Class ****/


/*****************************************************************/

.pointer {
    cursor: pointer;
}

.pointer:hover {
    cursor: pointer;
    background-color: #f3f3f3;
}

.gris {
    background-color: #dddddd;
}

.jour-CA-commande {
    margin-top: 5px;
}

.ligne-CA-commande>span {
    margin-left: 15px;
}

.hide {
    display: none;
}

.div-span100>span {
    width: 100%;
}

.weight {
    font-weight: bold;
}

.card_ {
    box-shadow: 0px 0px 14px rgb(0 0 0 / 15%);
    border-radius: 4px;
    padding: 30px 30px 30px 30px;
    margin: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


/*****************/


/**** Boutons ****/


/*****************/

.btn-save {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c;
    text-align: center;
    padding: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0.25rem;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-save:hover {
    background-color: #478847;
    border-color: #478847;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0.25rem;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


/*****************/


/**** ACCORDEON ****/


/*****************/

.accordion button {
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 100%;
    transition: all 100ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 100ms linear, max-height 100ms linear;
    will-change: opacity, max-height;
}


/*****************/


/**** Medias queries ****/


/*****************/


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
    /* CSS */
}


/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */

@media (min-width: 1025px) and (max-width: 1280px) {}


/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) {}


/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}


/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */

@media (min-width: 481px) and (max-width: 767px) {
    /* CSS */
}


/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */

@media screen and (max-width: 414px) {
    #dataDash {
        flex-direction: column!important;
    }
    #input-CA_objectif {
        width: 210px!important;
    }
    #resultDash {
        padding: 12px;
    }
    #globalAnnee {
        display: table!important;
    }
    #tableau-CA-commande {
        width: 1265px!important;
    }
    #totalCA {
        display: table!important;
    }
    #date {
        font-size: 18px;
    }
}

#selectorYearDashboard {
    display: inline-block;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#selectorYearDashboard p {
    margin-top: 2rem;
}