html {
    font-size: 0.9rem;
}

.main {
    cursor: pointer;
}

.cache {
    display: none;
}

.erreurMessage {
    color: var(--red)
}


/*
.btn-secondary{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}

.btn-secondary:hover{color:#fff;background-color:#cecece;border-color:#cecece}
.btn-secondary:focus,.btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(155, 155, 155, 0.5)}
.btn-secondary.disabled,
.btn-secondary:disabled{color:#fff;background-color:#cecece;border-color:#cecece}
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#cecece;border-color:#cecece}
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(155, 155, 155, 0.5)}

.btn-outline-secondary{color:#333;background-color:transparent;background-image:none;border-color:#ccc}
.btn-outline-secondary:hover{color:#343434;background-color:#cccccc;border-color:#343434}
.btn-outline-secondary:focus,
.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(212, 212, 212, 0.5)}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled{color:#333;background-color:transparent}
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show>.btn-outline-secondary.dropdown-toggle{color:#343434;background-color:#343434;border-color:#ccc}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(212, 212, 212, 0.5)}
*/

.navbar-logo {
    width: 100px;
    /* margin-top: 5px; */
    height: 25px;
    display: block;
    background-image: url(../image/logo.png);
    /* ??? background-image: url(../image/logo-brand.svg); */
    background-position: 50%;
    background-position-y: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    /* background-color: #ccc;*/
}

.offline .navbar-logo {
    background-image: url(../image/logo_offline.png);
}

.navbar-appname {
    padding-left: 5px;
    font-weight: 700;
    letter-spacing: 4px;
}

.wait>i {
    color: #ccc;
    -webkit-animation: color-change 2s infinite;
    -moz-animation: color-change 2s infinite;
    -o-animation: color-change 2s infinite;
    -ms-animation: color-change 2s infinite;
    animation: color-change 2s infinite;
}

@-webkit-keyframes color-change {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.8
    }
}

@-moz-keyframes color-change {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.8
    }
}

@-ms-keyframes color-change {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.8
    }
}

@-o-keyframes color-change {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.8
    }
}

@keyframes color-change {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.8
    }
}

.datetimepicker {
    padding: 1rem
}

select.form-control-sm:focus,
select.form-control:focus,
input.form-control-sm:focus,
input.form-control:focus {
    box-shadow: none;
    border-color: rgba(0, 123, 255, .5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled,
.btn-outline-primary:disabled:hover {
    border-color: var(--gray);
    color: var(--gray-dark);
    background-color: #00000003;
}

.btn-xs {
    padding: 0;
    font-size: 0.8rem
}

.body:not(.login) {
    background-color: #f5f5f5;
}

.dashboard {
    border: 1px solid #c2c2c9;
}

.offline .container.bread ol.breadcrumb {
    background-color: #505050 !important;
}

.container.bread ol.breadcrumb {
    border: 1px solid #c2c2c9;
    /*box-shadow: 0 1px 2px rgba(0,0,0,0.1);*/
    border-radius: 0;
    background-color: #fff;
}

.contToast {
    position: fixed;
    display: inline-block;
    top: 0;
    right: 0;
    /*max-width: 300px;*/
    z-index: 9999;
    /*float: right;*/
}

.contToast>.toast:first-child {
    margin-top: 4rem;
}

.contToast>.toast {
    z-index: 9999;
    /*float: right;*/
    min-width: 300px;
    /*margin-top: 1rem;*/
}

@media only screen and (min-width: 800px) {
    .contToast {
        padding-right: 5rem
    }
}


/* LOGIN */

.login {
    /*background-image: -ms-radial-gradient(center top, #ffffff 0%, #cacaca 60%);
    background-image: -moz-radial-gradient(center top, #ffffff 0%, #cacaca 60%);
	background-image: -webkit-gradient(radial, center top, 0, center top, 600, from(#ffffff), to(#cacaca));*/
    background-image: radial-gradient(circle at 50% 0, #ffffff 1%, rgb(202, 202, 202) 50%, #cacaca 60%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 600px;
    background-color: #cacaca;
    background-color: #cacaca;
    height: 100%;
    margin-top: -21px;
}

.login2 {
    -webkit-animation-name: changecolor;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 1s;
    /* Safari 4.0 - 8.0 */
    animation-name: changecolor;
    animation-duration: 1s;
}


/* Safari 4.0 - 8.0 */

@-webkit-keyframes changecolor {
    from {
        background-color: white;
    }
    to {
        background-color: #cacaca;
    }
}


/* Standard syntax */

@keyframes changecolor {
    from {
        background-color: white;
    }
    to {
        background-color: #cacaca;
    }
}

._authShow {
    display: none;
}

.bs-docs-section {
    margin-top: 0
}


/*.conteneur{
	 background-color: #f9f9f9;	
}*/

.account-wall {
    /*width:425px;*/
    margin: auto;
    /*margin-top: 55px;*/
    margin-top: 3rem;
    padding: 15px;
    padding-bottom: 5px;
    background-color: #fefefe;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    animation: showNav 500ms ease-in-out both;
}

.account-wall .logo {
    margin: auto;
    width: 200px;
    display: flex;
}

@media (min-width: 1px) {
    .form-horizontal .control-label {
        text-align: right;
    }
    .navbar-custom {
        color: rgb(51, 51, 51);
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
}


/*.body:not(.modesaisie){background-color:#fff}*/


/*.body:not(.modesaisie) .globalMenu, .body:not(.modesaisie) .globalContent{border: solid 1px #5f5f5f;}
.body:not(.modesaisie) .globalMenuSaisie, .body:not(.modesaisie) .globalTitreSaisie {display:none}
.body.modesaisie .globalMenuSaisie, .body.modesaisie .globalTitreSaisie{display:none}*/

.qt,
.ht {
    text-align: right
}


/*
.body:not(.modesaisie) .globalContent2{
  	background-color:#fff; 
	  border-top: 2px solid #ed1e24; 
	  margin-top: 0.5rem;
   
    border: 1px solid #c2c2c9;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    border-top: 2px solid #ed1e24;
}
 */


/*  MENU GENERAL  */


/* 	MENU TOP */

.globalContent .navbar {
    z-index: 998;
}

.globalMenu>table>tbody>tr {
    height: 24px;
}

.globalMenu>table>tbody>tr:first-child>td {
    padding-top: 8px;
}

.globalMenu>table>tbody>tr:last-child {
    height: 10px;
}

.globalMenu>table {
    font-weight: bold;
    font-size: 0.78em;
    color: #fff;
}


/*.globalMenu .col1{width: 20%} 
.globalMenu .col2,.globalMenu .col3,.globalMenu .col4{width: 16%}
.globalMenu .col5{text-align:right; padding-right:5px}*/

.userLib {
    font-size: 1.08em;
}

.bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 2px;
}

.globalMenu a:link,
.globalMenu a:visited,
.globalMenu a:hover,
.globalMenu a:active {
    color: #fff;
}

.globalMenu a:hover {
    color: #ccc
}

*/
/*  CONTENU GENERAL  */


/*.globalContent{min-height:500px; border-top:0;}*/

.table {
    font-size: 12px
}

.table .ico:hover {
    color: #007bff!important
}


/*.body:not(.modesaisie) .container{ margin : 0; margin-bottom: 10px;}*/


/*.body.modesaisie .container{ padding: 0; margin : 0;}*/

.table thead th {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.table .trie>.logoTrie {
    margin-left: 5px
}

.table ._tri ._carret {
    margin-left: 3px;
}


/* Moins de padding value defaut : 8px */

.table thead>tr>th,
.table tbody>tr>th,
.table tfoot>tr>th,
.table thead>tr>td,
.table tbody>tr>td,
.table tfoot>tr>td {
    padding: 2px 5px;
    font-size: 0.9rem;
}

.mfsmalltable th,
td {
    font-size: 0.8rem!important
}

.entete {
    padding-top: 1rem
}


/*## NAVBAR SEARCH ##*/

.navbar-search {
    border: solid 1px #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.navbar-search-actions .btn {
    margin-left: 0.5em
}


/* ###### bread ######## */

.container.bread {
    padding-right: 0;
    padding-left: 0;
    margin-top: 4.5rem
}

.newGlobalMenu>.container {
    padding-right: 0;
    padding-left: 0;
}


/*.bread{padding: 65px 0 15px 0;}*/


/*.bread .breadcrumb{margin:0; }*/


/*#ED1E1D*/

.offline .mfbox {
    border-top: 2px solid #505050;
}

.mfbox {
    padding: 0.6rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.mfbox {
    background-color: #fff;
    /*border-top: 2px solid #ed1e24; */
    border: 1px solid #c2c2c9;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #444;
}

.mfbox>h4:not(.notmfbox) {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem
}

.mfbox h5:not(.notmfbox) {
    width: 90%;
    border-bottom: solid 1px #000;
    color: #000;
    font-size: 1em;
    padding-left: 0.4rem;
    padding-bottom: 0.4rem;
    font-weight: normal;
    text-transform: uppercase;
}

.mfbox .mfwidget {
    max-height: 150px;
}

.mfbox .tablevalidate td:not(:last-child) {
    padding: .5rem
}

.mfbox .tablevalidate td:last-child .list-group-item {
    padding: .25rem
}

.mfbox .tablesearch .navbar {
    border-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 0;
    margin-bottom: 0;
}

.mfbox .tablesearch .table-responsive {
    border: solid 1px #ccc;
    border-top: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.classifs .classif {
    padding: 2px 0;
}

.classifs .classif>span {
    padding: 5px 10px;
    color: #444;
}

.classifs .classif>span:hover {
    background-color: #f9f9f9;
    cursor: pointer;
    color: #000
}


/**/

.tabSaisie .actionLigne .btn {
    font-size: 0.8rem;
}


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

.cadreimg {
    position: relative;
    vertical-align: center;
    text-align: center;
}

.vignettes .vignette {
    font-size: 0.9rem
}

.vignette .des {
    font-weight: 500;
}


/*.saisie{margin-right: -0.25rem!important; margin-left: -0.25rem!important;}*/


/*	########## MODE SAISIE ########## */

.body.modesaisie {
    /*background: rgba(210, 210, 210, 0.03);*/
}

.body.modesaisie .globalContent {
    padding-top: 0;
}


/* MENU TOP */

.conteneur_action {
    margin: 0;
    height: 50px;
    /* border-bottom: 1px solid #c2c2c9;*/
    /* border-top: 0px; */
    /* border-radius: 5px; */
    /*-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);*/
    display: block;
    position: fixed;
    left: 0;
    width: 100%;
}

.offline .newGlobalMenu {
    background-color: #505050 !important;
}

.newGlobalMenu {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.93);
    /*
	    background: -webkit-linear-gradient(315deg, #e2231a, #003a70);
    	background: -o-linear-gradient(315deg, #e2231a, #003a70);
    	background: linear-gradient(135deg, #e2231a6b, #003a7061);
    */
    border-bottom: 1px solid #c2c2c9;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.newGlobalMenu a,
.newGlobalMenu a:hover,
.newGlobalMenu .caret,
.newGlobalMenu .caret:hover {
    color: #333;
}

.offline .breadcrumb a,
.offline .breadcrumb a:hover,
.offline .breadcrumb .caret,
.offline .breadcrumb .caret:hover {
    color: #d9d9d9 !important;
}

.offline .newGlobalMenu a:not(.dropdown-item),
.offline .newGlobalMenu a:hover:not(.dropdown-item),
.offline .newGlobalMenu .caret,
.offline .newGlobalMenu .caret:hover {
    color: #d9d9d9 !important;
}

.offline .breadcrumb-item.active {
    color: #d9d9d9 !important;
}

.offline .breadcrumb-item {
    color: #d9d9d9 !important;
    text-decoration: inherit !important;
}

.newGlobalMenu .caret,
.newGlobalMenu .caret:hover,
.newGlobalMenu a:hover .caret {
    border-top-color: #777;
    border-bottom-color: #333;
}

.newGlobalMenu .navbar-nav>.active>a,
.newGlobalMenu .navbar-nav>.active>a:focus,
.newGlobalMenu .navbar-nav>.active>a:hover {
    color: #555;
    /*background-color: #f1f1f1*/
    ;
    cursor: default;
}

.newGlobalMenu .dropdown-menu>.active>a,
.newGlobalMenu .dropdown-menu>.active>a:hover,
.newGlobalMenu .dropdown-menu>.active>a:focus {
    color: #ed1e24;
    background-color: #fff;
}

.newGlobalMenu .disabled i,
.newGlobalMenu .disabled span {
    color: #777
}

.newGlobalMenu .dropdown-item i.fa,
.newGlobalMenu .dropdown-item i.fal,
.newGlobalMenu .dropdown-item i.far,
.newGlobalMenu .dropdown-item i.fas {
    margin-right: 0.3rem;
}

.newGlobalMenu .open .dropdown-menu>li>a:hover,
.newGlobalMenu .open .dropdown-menu>li>a:focus {
    color: #ED1E1D;
    background-color: transparent;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #f8f9fa;
    color: #333
}


/*.newGlobalMenu .nav-item.active a, .newGlobalMenu .nav-item a.active{color:#ED1E1D;}*/

a:hover {
    color: #f8f9fa
}

.btn>i {
    padding-right: 5px
}


/*Correction bug datetimepicker boostrap v3->v4*/

.form_datetime .input-group-addon {}

.conteneur_action.conteneur_g {
    position: relative;
}

.conteneur_action.conteneur_g {
    background-color: #fff;
    border-bottom: 1px solid #c2c2c9;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.conteneur_action.globalMenuSaisie {
    border-bottom: 1px solid #c2c2c9;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.conteneur_action.globalTitreSaisie {
    background-color: rgba(255, 255, 255, 0.8);
    /*border-bottom: 1px solid #c2c2c9;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);*/
    z-index: 999;
}

.conteneur_action.globalTitreSaisie>.contTitre>h4 {
    margin: 0;
    margin-top: 12px;
}

.conteneurActionSaisie .contText {
    display: inline-block;
    float: left
}

.conteneur_action .contPrev,
.conteneurActionSaisie .contPrev {
    display: inline-block;
    float: left
}

.conteneur_action .contNext,
.conteneur_action .contClose,
.conteneurActionSaisie .contNext,
.conteneurActionSaisie .contClose {
    display: inline-block;
    float: right
}

.conteneur_action .contClose,
.conteneurActionSaisie .contClose {
    margin-right: 5px;
}

.contNext>.btn>i,
.contPrev>.btn>i {
    margin-right: 0;
    padding: 0;
}

.globalMenuSaisie .action,
.globalTitreSaisie .contTitre {
    margin: auto;
    text-align: center;
    margin-top: 5px;
}

.globalMenuSaisie .action,
.globalTitreSaisie .contTitre {
    width: 1000px;
}

.saisie .brand {
    display: block;
    width: 180px;
    height: 36px;
    margin: 0;
    float: left;
    background-image: url(logo_200.jpg);
    background-size: 180px 36px;
    /* text-indent: -9999px; */
}

.saisie img.img-thumbnail {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.saisie .img-visu {
    display: none;
    position: fixed;
    /* top: 10%; */
    z-index: 999;
    background-color: #0003;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.saisie .img-visu .cadre {
    display: block;
    text-align: center;
    /* box-shadow: 1px 1px 5px #555; */
    /* z-index: 1001; */
    border: solid 0px;
    border-color: #ccc;
    border-radius: 5px;
    cursor: pointer;
    top: 10%;
    margin: auto;
    margin-top: 14rem;
}

.saisie .img-visu .cadre img {
    border: solid 1px #ababab;
    border-radius: 5px;
    padding: 4px;
    background-color: #fff;
}

.saisie .btn>i.fa-only,
.saisie .fa-only {
    margin: 0;
}


/*.contTotal{margin-top:20px;}*/

.saisie .contTotal {
    padding-top: 0
}

.saisie .actionLigne .btn-xs {
    height: 28px;
    vertical-align: middle;
}

.saisie .actionLigne .btn {
    outline: none;
}

.saisie .actionLigne .btn.copie {
    /*background-color:#eee*/
}

.saisie .titre {
    font-size: 1.1em;
    font-weight: bold
}

.saisie .contTotal .control-label {
    font-weight: normal;
    padding-right: 0;
}

.retailPrices>span {
    font-weight: bold;
    margin-top: 10px;
}

.retailPrices {
    margin-top: 5px;
}

.tabSaisie .cou>.libcou {
    text-transform: uppercase;
    /*font-weight: bold;*/
}

.tabSaisie .cou {
    min-width: 110px;
    padding: 0 5px
}

.saisie {
    padding-top: 0;
}

.saisie>.row {
    align-items: flex-start;
    justify-content: space-between;
}

.saisie .box {
    background-color: #fff;
    border: 1px solid #c2c2c9;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #ed1e24;
}


/*.saisie>.box{margin-left:-15px; margin-right:-15px}*/

.saisie .box+.box {
    margin-bottom: 10px;
}

.saisie .box.classifs {
    padding-bottom: 20px;
}

.saisie>.choix {
    width: 32%;
    padding-top: 15px;
    padding: 5px 0;
}

.choix .searchchx:focus {
    box-shadow: none;
    border-color: rgba(0, 123, 255, .5);
}

.saisie>.selection {
    float: right;
    width: 65%;
}

.saisie .search>*[class^="col-md"],
.saisie .search>*[class^="col-xs"] {
    padding-right: 5px;
    padding-left: 5px;
}

.autocomplete {
    font-size: 0.9em;
    margin-top: 10px;
}

.autocomplete>.complete {
    margin: 0;
    list-style-type: none;
    padding-bottom: 3px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 3px;
    border-bottom: solid #ccc 1px;
    border-left: solid #ccc 1px;
    border-right: solid #ccc 1px;
    cursor: pointer;
}

.autocomplete>.complete:first-child {
    border-top: solid #ccc 1px;
}

.autocomplete>.complete:hover {
    background-color: #ccc;
    color: #fff;
}

.autocomplete>.active {
    color: #ed1e24;
    text-decoration: none;
}

.saisie .lignes .table tr.active>td {
    background-color: #e4e4e4
}

.saisie .lignes .table {
    border: solid 1px #ccc;
}

.saisie .lignes {
    padding: 0 15px;
    margin-bottom: 0;
}

.saisie .lignes .table th {
    padding: 5px;
}

.saisie .lignes .table th:nth-child(3),
.saisie .lignes .table th:nth-child(4),
.saisie .lignes .table th:nth-child(5),
.saisie .lignes .table th:nth-child(6),
.saisie .lignes .table th:nth-child(7) {
    text-align: right
}

.saisie .lignes .table td:nth-child(8) {
    text-align: center
}

.saisie .lignes .table th:nth-child(8) {
    text-align: center
}

.saisie ._search .input-group input+.input-group-btn>button.btn {
    border-left: 0
}

.saisie .deleteLigne {
    color: #333
}

;
.saisie .qt,
.saisie .ht,
.table .qt,
.table .ht {
    text-align: right
}

.table .center {
    text-align: center
}

.tabSaisie tbody td {
    border: solid 1px #797979;
}

.tabSaisie tbody td.actionLigne {
    border: 0;
    height: 33px;
    padding: 0 0 0 5px;
    vertical-align: middle;
}

.tabSaisie tbody td.labelcou {
    text-align: right
}

.tabSaisie tbody td.totalligne {
    background-color: #eee
}


/* Gommette pour vignettes et saisie */

span.pastille {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    border-radius: 10px;
    box-shadow: 0px 1px 1px 0px #000;
}

.tabSaisie .cou>div.pastille {
    float: left;
    /* z-index: 999; */
    display: inline-block;
    position: absolute;
}

.tabSaisie:not(.maxsize) tbody td.cou {
    padding-right: 5px;
    padding-left: 5px;
}

.tabSaisie {
    border-collapse: collapse;
    border: solid black 0px;
    /*font-size: 8pt*/
}

.tabSaisie input[type="number"]::-webkit-outer-spin-button,
.tabSaisie input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/*-webkit-appearance: none;*/

.tabSaisie .labelDispo {
    text-align: right;
    padding-right: 15px;
}

.tabSaisie th {
    font-size: 0.85em;
    text-align: center
}

.tabSaisie tbody td {
    padding: 0;
    margin: 0;
}

.tabSaisie:not(.tabLegende) tbody tr:not(.stock):nth-last-child(2)>td {
    /*padding-bottom : 5px ;*/
}

.tabSaisie:not(.tabLegende) tbody tr:not(.stock) td:first-child {
    /* width: 17% */
    /*height : 30px*/
}

input.prixMarquage {
    width: 4rem !important;
    padding: 0.4rem;
    line-height: 1;
    font-size: 0.8rem;
    height: 1.5rem;
}

.tabSaisie tbody tr.ligneSaisie td input {
    border: 0;
    margin: 0 1px;
    text-align: center;
    max-width: 35px;
    height: 37px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tabSaisie.maxsize tbody td input {
    text-align: center;
    max-width: 28px;
    /*font-size: 0.9em*/
}

.tabSaisie.maxsize thead th {
    /*font-size:0.8em*/
}

.tabSaisie.maxsize {
    font-size: 0.9em
}

.tabSaisie .labelcou {
    font-size: 0.85em
}

.tabSaisie .brouillonLib {
    font-size: 0.85em;
    padding: 0 5px;
}

.tabSaisie tbody tr.lignesaisie td input:focus {
    outline: none;
}

.tabSaisie .enstock {
    border-color: #66c83f;
}

.tabSaisie .enCommande {
    border-color: #003cff;
}

.tabSaisie .pasDispo {
    border-color: rgb(235, 235, 228);
}

.tabSaisie .stockBas {
    border-color: #FFA500;
}

.tabSaisie .erreurProduit {
    border-color: rgb(175, 0, 0);
}

.tabSaisie .thPrix,
.tabSaisie .thTotal {
    padding: 0 5px;
}

.tabSaisie .thTotal {
    min-width: 30px
}

.tabSaisie .thPrix {
    text-align: left;
}

.tabSaisie .oldPrix {
    padding: 0 10px
}

.tabSaisie .txRemise {
    padding: 0 10px 0 0;
    font-size: 12px !important;
    font-style: italic;
    font-weight: bold;
    color: #565656;
    text-align: right;
}

.tabSaisie .prix {
    font-size: 12px !important;
    font-style: italic;
    font-weight: bold;
    color: #565656;
    text-align: right;
}

.tabSaisie .prix.soldes {
    background-color: yellow;
}

.tabSaisie .logoImg {
    min-width: 20px;
}

.tabSaisie .cou {
    text-align: left;
    padding: 0;
}

.tabSaisie .cou>div {
    vertical-align: middle;
    text-align: right;
    line-height: 1;
    margin: 2px
}


/*.tabSaisie .cou div+div{margin-top: 1px}*/

.tabSaisie .prixTaille {
    display: block;
    /* width: 50px; */
    min-height: 16px;
    margin-top: 2px;
    text-align: center;
}


/*.tabSaisie .tailPasDisp{background-color:var(--warning);height:32px;min-width: 30px;}*/

.tabSaisie div.tailPasDisp {
    background-color: #ccc;
    /*var(--warning);*/
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255, 255, 255, .9)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .9) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .9) 75%, transparent 75%, transparent);
    background-image: -ms-linear-gradient(45deg, rgba(255, 255, 255, .9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .9) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .9) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .9) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .9) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
    height: 32px;
    min-width: 37px;
}

.tabSaisie input.tailPasDisp {
    background-color: #ffc1073d;
    /* var(--warning);*/
}

.tabSaisie .titrecou {
    min-width: 10rem;
    max-width: 10rem;
}

.tabSaisie tr.sep {}

.tabSaisie tr.sep>td {
    border: 0;
}

.tabSaisie tr.sep>td>h4 {
    margin: 0;
    padding: 2px;
}

.tabSaisie .tlig {
    line-height: 0.95rem;
    padding: 2px 5px;
}

.tabSaisie .tlig hr {
    margin: 2px -5px;
    border-top: 1px solid #797979;
    min-width: 37px;
}


/* .tabSaisie .prixSolde span+span {
    border-bottom: solid 1px #ccc;
} */

.tabSaisie tr.sep .labelcou {
    margin-left: 1em;
}

.tabSaisie tr.sep .labelcou,
.tabSaisie tr.sep .pastille {
    display: inline-block;
}


/*vertical-align: middle; min-width:120px; margin-right: 5px; padding: 3px 5px 3px 3px; font-weight:bold ; vertical-align : middle; text-align: right;}*/


/*{vertical-align: middle; float : left;}*/


/*
.totalligne {background-color :#efefef}*/

.totaux td:not(.cou):not(.sansBordure):not(.tlig) {
    border-top: solid 1px #ccc;
    /*padding-top : 5px;*/
}

.tabSaisie tbody tr:not(.stock):not(.totaux) td:nth-last-child(3) {
    padding-right: 5px;
}

.tabSaisie tbody tr.totaux td:nth-last-child(2) {
    /* padding-right : 10px;*/
}

.totalligne {
    border-left: solid 1px #ccc;
    padding-left: 5px;
}

.tabSaisie .stock td:last-child {
    border-left: 0;
    padding-left: 5px;
}

.totaux td:last-child {
    border-top: 0;
}

#modesaisie tfoot tr:first-child {
    height: 30px;
}

.tabSaisie .grise {
    display: none
}

.tabSaisie .vide {
    background-color: #bbb;
    color: #bbb;
    text-align: center
}

.tabSaisie tbody .tbo {
    cursor: pointer;
    text-align: center;
    vertical-align: middle
}

.tabSaisie tbody .tbo a {
    display: block;
    width: 100%;
    text-align: center;
    vertical-align: middle
}

.tabSaisie tbody .tbo a:link {
    color: #555;
    text-decoration: none
}

.tabSaisie tbody .tbo a:visited {
    color: #555;
    text-decoration: none
}

.tabSaisie tbody .tbo a:hover {
    color: black;
    text-decoration: none
}

.tabSaisie .tlig,
.tabSaisie .totaux td {
    text-align: center;
}

.tabSaisie .tsel {
    width: 80px;
    height: 34px;
    text-align: center;
    ;
    border: solid black 1px
}

.tabSaisie .cm {
    width: 60px;
    ;
    padding: 0;
    margin: 0;
    border: 0;
    text-align: left;
    padding-right: 3px
}

.tabSaisie .ko {
    background-color: orange
}

.tabSaisie .nostock {
    background-image: url(./motif.png);
    background-repeat: repeat;
}

.tabSaisie .labelPackTai {

    display: block;
    position: absolute;
    top: -5px;


    float: left;
    padding: 0.2rem 0.3rem;
    background-color: #fffbf5;
    font-size: 0.8rem;
    word-spacing: 0.1rem;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.tabSaisie .affPrix {
    border: 0;
    background-color: unset;
    min-width: 3.8rem;
}

.tabSaisie .affPrix .prixMulti>div {
    padding: 2px 0;
}

.tabSaisie .affPrix .prixMulti .prixSold {
    background-color: rgb(255, 255, 221);
    padding: 1px 4px;
}

.tabSaisie td.separation {
    min-width: 1rem;
    border: 0;
}

.tabSaisie .affPrix.sold>span {
    background: #ffffdda3;
    border: solid 1px #cbcbae;
    border-radius: 3px;
    padding: 9px;
}

.tabSaisie ._coliv.active {
    /* font-style: italic; */
    text-decoration: underline;
}


/*.tabSaisie .active { background-color:red}*/

#saisieenligne {
    border: solid black 1px;
    width: 100%;
    height: 100%;
    background-color: silver;
    opacity: 0.1;
}

.tabSaisie .stock {
    font-size: 10px;
    color: #4f81bd;
    text-align: center;
    height: 10px;
    font-style: italic
}

.tabSaisie .stock .depot {
    text-align: right;
    padding-right: 25px
}

.tabSaisie .stock td {
    border: 0;
    /*height: 12px; */
    margin: 0;
    /*padding : 5px;*/
    padding-bottom: 2px;
}


/*.tabSaisie  tr.selected > td {border-bottom: solid 2px red;  border-top: solid 2px red; }
.tabSaisie  tr.selected > td:first-child { border-left:  solid 2px red;}
.tabSaisie  tr.selected > td:nth-last-child(2) { border-right: solid 2px red;}*/

.tabSaisie tr.selected>td:not(:first-child):not(:nth-last-child(-n+2)):not(.totalligne):not(.affPrix):not(.separation)>input[type='number'] {
    background-color: #e2e2e2/*#adadad*/
}

.tabSaisie tr.selected>td:not(:first-child):not(:nth-last-child(-n+2)):not(.totalligne):not(.affPrix):not(.separation) {
    background-color: #e2e2e2
}

.tabSaisie tr.selected>td.totalligne {
    background-color: #e2e2e2;
}

.tabSaisie tr:not(.selected)>td:nth-last-child(2)>input[type='number'] {
    background-color: #adadad;
}

.tabSaisie tr:not(.selected)>td:nth-last-child(2) {
    /*background-color: #adadad;*/
}


/* 
.tabSaisie tr.selected>td.totalligne>input[type='number'] {
    background-color: #ffbbbb;
} */

.tabSaisie tr.selected>td.totalligne {
    background-color: #ffbbbb;
}


/* 
.tabSaisie tr.selected>td:nth-last-child(2)>input[type='number'] {
    background-color: #ffbbbb;
}

.tabSaisie tr.selected>td:nth-last-child(2),
.tabSaisie tr.selected>td:first-child {
    background-color: #ffbbbb;
} */

.tabSaisie tr.selected>td:last-child {
    /*border: 0 ;*/
}

.tabSaisie .btn.active {
    background-color: #ababab;
    /*background-color:red*/
}

.tabSaisie .clicImg {
    cursor: pointer;
}

.tabSaisie .pack+td:not(.pack) {
    padding-left: 20px;
}

.tabSaisie .enCourReapro {
    border-color: #cd0a0a;
}

.tabSaisie .dernierePieces {
    border-color: #FF8100;
}

.tabSaisie .enStock {
    border-color: #85ba3e;
}

.tabSaisie .vignette {
    width: 50px;
    height: 68px;
    background-size: 50px 68px;
    background-repeat: no-repeat;
}

.tabSaisie .vignette.tronquePaysage {
    background-position: center;
    width: 60px;
    height: 25px;
    background-size: 60px;
}

.tabSaisie .enCourReaproLibel {
    z-index: 0;
    padding: 5px;
    position: fixed;
    display: block;
    background-color: #fff;
    color: #FF8100;
    margin-left: -60px;
    -moz-box-shadow: 0px 1px 1px 0px #656565;
    -webkit-box-shadow: 0px 1px 1px 0px #656565;
    -o-box-shadow: 0px 1px 1px 0px #656565;
    box-shadow: 0px 1px 1px 0px #656565;
    filter: progid: DXImageTransform.Microsoft.Shadow(color=#656565, Direction=180, Strength=1);
    border-radius: 2px;
}


/* couleur sélectionné pour la photo et la descr*/

.tabSaisie .select .fa-eye,
.tabSaisie .select .labelsaisie {
    color: #2a8fbd
}


/**/

.saisie .tabLegende input:disabled:not(.pasDispo) {
    background-color: #fff
}

.saisie .tabLegende tbody td input {
    margin: 2px;
    text-align: center;
    width: 16px;
    height: 11px;
    font-size: 1em;
}

.saisie .tabLegende {
    font-size: 8pt
}

.saisie .tabLegende {
    /*float: right;*/
    margin-top: 15px;
    /*margin-left: 10px;*/
}

.saisie .totalHt {
    padding-top: 15px;
}

.saisie .totalHt td {
    border-top: 1px solid #777;
}

.saisie .totalHt td div {
    padding-top: 10px;
    float: right;
}

.saisie .trait {
    border-bottom: solid 1px #ccc;
    padding-bottom: 10px;
}

.saisie .contTotal {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 10px;
}

.saisie .contTotal .labelsaisie {
    display: inline-block;
    width: 120px;
    text-align: right;
}

.saisie .contTotal .ht,
.contTotal .qt {
    display: inline-block;
    width: 60px;
    text-align: right;
}


/* VIGNETTE */

.saisie .noresult {
    margin-top: 0;
}

.saisie .vignette {
    /*padding:5px;
    background-color: #fff;*/
}

.saisie .current img {
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    max-width: 205px;
    height: auto;
    cursor: pointer;
    padding: 5px;
}

.saisie .conteneurVignette ol {
    list-style: none;
    padding: 0 0 50px 0;
    margin: 0;
}

.saisie .conteneurVignette .vignette {
    border-radius: 5px;
    cursor: pointer;
}


/* Small devices (landscape phones, 576px and up) */


/*@media (min-width: 576px) {  */

@media (max-width: 540px) {
    .saisie .conteneurVignette {
        margin-right: 0!important;
        margin-left: 0!important;
    }
    .cadreimg {
        min-height: 157px
    }
}

@media (min-width: 576px) {
    .saisie {
        margin-right: 0!important;
        margin-left: 0!important;
    }
    .cadreimg>img._img {
        /*max-height: 259px;*/
        max-width: 100%;
        max-height: 100%;
    }
    .cadreimg {
        min-height: 81px
    }
    .saisie .conteneurVignette .vignette {
        width: 100%;
        min-height: 100%;
    }
    .saisie .conteneurVignette {
        margin-right: -0.25rem!important;
        margin-left: -0.25rem!important;
    }
    .saisie .conteneurVignette .vignette .vignette_des {
        /*position: absolute;*/
        z-index: 2;
        padding: 0;
        max-width: 100%;
        padding-left: 5px;
        padding-right: 18px;
    }
    .saisie .conteneurVignette .vignette .vignette_totaux {
        /*position: absolute;*/
        z-index: 2;
        padding: 0;
        bottom: 0;
        padding-left: 5px;
        padding-right: 18px;
    }
}


/* Medium devices (tablets, 768px and up)*/

@media (min-width: 768px) {
    .cadreimg>img._img {
        max-width: 100%;
        max-height: 100%;
        /*180px;*/
    }
    .cadreimg {
        min-height: 143px
    }
    .saisie .conteneurVignette .vignette_cont {
        min-width: 190px;
    }
    /* SELEUEMNT POUR LG */
    .saisie .conteneurVignette .vignette {
        /* min-height: 300px; min-width: 180px; */
        padding: 5px;
        display: inline-block;
    }
    .saisie .conteneurVignette .vignette {
        min-height: 100%;
        min-width: 180px;
    }
}


/* Large devices (desktops, 992px and up)*/

@media (min-width: 992px) {
    .saisie .gotop,
    .tabStock .gotop {
        bottom: 1rem!important;
        right: 1rem!important;
    }
    .tabSaisie.maxsize .labelcou {
        font-size: 0.7em;
    }
}


/* Extra large devices (large desktops, 1200px and up)  230px*/

@media (min-width: 1200px) {
    .saisie .gotop,
    .tabStock .gotop {
        bottom: 1rem!important;
        right: 1rem!important;
    }
    .tabSaisie.maxsize .labelcou {
        font-size: 0.9em;
    }
}

@media (min-width: 1550px) {
    .saisie .gotop,
    .tabStock .gotop {
        bottom: 3rem!important;
        right: 10rem!important;
    }
}

.vignettes>div:hover>div {
    /*box-shadow: 0px 0px 1px #ececec;*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.conteneurVignette .activeVignette>div {
    border: 1px solid #ed1e24;
}

.memetheme {
    display: inline-flex;
    margin-left: 5px;
    margin-bottom: 5px;
}

.memetheme .vignette {
    width: 125px;
    max-height: 145px;
    padding: 5px;
    font-size: 0.8rem;
    cursor: pointer;
}

.memetheme .cadreimg>img._img {
    max-height: 100px;
}

.vignettes .vignette.active {
    border: 1px solid #ed1e24;
}

.vignettes .vignette.noclick {
    box-shadow: none;
    cursor: unset;
}

.vignettes {
    padding-right: 0;
    padding-left: 0;
}

.vignettes .vignette {
    background-color: #fff;
    border: solid 1px #c2c2c9;
    margin: 0;
}

.saisie .gotop,
.tabStock .gotop {
    position: fixed;
    /*bottom: 50px;  
    right: 60px; */
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(177, 177, 177, 0.1);
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    cursor: pointer;
}

.saisie .gotop:hover,
.tabStock .gotop:hover {
    /*color:#fff;*/
    background-color: rgba(169, 169, 169, 0.5);
}

.saisie .gotop>.fa,
.tabStock .gotop>.fa {
    font-size: 1.2em;
    padding: 10px;
}

.saisie .vignette>.conteneur_qt {
    right: 0;
    bottom: 0;
}

.saisie .vignette>.desRef {
    left: 0;
    bottom: 0;
    margin: 5px;
}

.saisie .vignette>.conteneur_img {
    top: 65px;
    /* margin: 5px; */
    /*width: 100%;*/
}

.saisie .vignette>.conteneur_img>img {}

.saisie .vignette>.conteneur_qt>div {
    font-weight: bold;
    display: inline-block;
    float: right;
    margin: 5px;
    bottom: 0;
}

.saisie .vignette>.contPastille {
    display: block;
    margin: 0;
    bottom: 20px;
    position: absolute;
}

.vignette .contPastille>.pastille {
    height: 15px;
    width: 15px;
    display: inline-block;
    background-color: #fff;
    border-radius: 20px;
}

.pastille.rouge {
    background-color: #dc4141;
    border: solid 1px #bce8f1;
}


/*

---------------------------------------------------------
---------------------------------------------------------
--------      MASQUES COMMANDE / CLIENT    ---------------
---------------------------------------------------------
---------------------------------------------------------

*/

.order .totaux>.row>.ligne {
    border-bottom: solid 1px #ccc;
}

.order .totaux {
    font-size: 0.9em;
    color: #444
}

.order .totaux *[class^="col-md"],
.order .totaux *[class^="col-xs"] {
    padding-right: 0;
    padding-left: 5px;
}

.order .action *[class^="col-md"],
.order .action *[class^="col-xs"] {
    padding-top: 0.2rem;
}

.order .totaux .ligne {
    margin-bottom: .3rem;
    padding-bottom: 0.3rem;
    padding-left: 0.5em;
}

.order .totaux .ligne p {
    margin-bottom: 0;
}


/*
.order.conteneur .control-label{font-weight: normal;}
.order.conteneur{ padding-top: 0.75rem}
.h4.title{
	color:#000;
}

.order.conteneur h4:not(.title){
    width: 90%;
    border-bottom: solid 1px #000;
    color: #000;
    font-size: 1em;
    padding-left: 0.4rem;
    padding-bottom: 0.4rem;
    font-weight: normal;
    text-transform: uppercase;
 }

  .order .vAligne{vertical-align:middle};

  .order.conteneur *[class^="col-md"],.order.conteneur *[class^="col-xs"]{padding-right: 5px; padding-left: 5px;}
  
  .order .totaux > .row > .ligne{border-bottom: solid 1px #ccc;}
  .order .totaux{font-size : 0.9em; color:#444}
  .order .totaux *[class^="col-md"],.order .totaux *[class^="col-xs"]{padding-right: 0; padding-left: 5px;}
  .order .action *[class^="col-md"],.order .action *[class^="col-xs"]{padding-top: 0.2rem;}
  .order .totaux .ligne{margin-bottom: .3rem; padding-bottom:0.3rem; padding-left: 0.5em;}
  .order .totaux .ligne p{margin-bottom: 0;}
  
  */

.action .btn {
    text-transform: uppercase;
    font-size: 0.85em;
}

.action .btn+.btn {
    margin-left: 5px
}

.body .datetimepicker table tr td.active,
.body .datetimepicker table tr td.active:hover,
.body .datetimepicker table tr td.active.disabled,
.body .datetimepicker table tr td.active.disabled:hover {
    background-image: none;
    border-color: #fff;
}

.body .datetimepicker table tr td.active,
.body .datetimepicker table tr td.active:hover,
.body .datetimepicker table tr td.active.disabled,
.body .datetimepicker table tr td.active.disabled:hover {
    background-color: #006dcc
}

.table.table-encadre {
    border: solid 1px #ccc;
}


/*
	--------------------------
	----- NEWS --------------
	-------------------------
*/

.secteurmenu {
    color: #333
}

.secteurmenu.acltive {
    color: #ed1e24
}

.lignenews {
    border-top: solid 1px #ccc;
}

.famnews {
    margin: 0;
    padding: 10px 10px 0 0;
    font-size: 1em;
    font-weight: normal;
    color: #333;
}

.famnews>ul {
    padding-top: 0;
    padding-left: 10px;
    margin-top: 0;
}

.famnews>ul>li {
    list-style: none;
    border-top: solid 1px #ccc;
    padding: 5px 0;
}

.famnews>ul>li.selected {
    text-decoration: underline;
}

.famnews>ul>li:first-child {
    border-top: 0;
}

.famnews>ul>li:hover {
    /*font-weight: bold;*/
    cursor: pointer;
    text-decoration: underline
}

.contnews {
    margin: 0;
    padding: 0;
    font-size: 0.85em;
}

.contnews>ul {
    padding-top: 0;
    margin-top: 0;
    padding-left: 0;
}

.contnews>ul>li:first-child {
    border-top: 0;
    margin-top: 0;
}

.contnews>ul>li:first-child>h3 {
    margin-top: 0;
    padding-top: 10px
}

.contnews>ul>li {
    list-style: none;
    border-bottom: solid 1px #ccc;
}


/*.contnews > ul > li:last-child{border-bottom: solid 1px #ccc; }*/


/**/

.formNews .groupeEtiquette li {
    margin-top: 2px;
    list-style: none
}


/*.formNews h3 > span{border-bottom: solid 1px #000;}*/

.formNews h3.section>span {
    border-bottom: solid 1px #000;
}

.formNews h3.section {
    margin-top: 15px
}

.formNews .pj>b {
    font-weight: normal;
    margin-top: 10px;
    display: block;
    font-size: 1.1em
}

.formNews .news .etiquette {
    float: none;
}


/*.formNews .groupeEtiquette li > input, .formNews .groupeEtiquette li > select{height : 20px;}*/

.news {
    padding: 5px 10px;
}

.news .file {
    display: block;
    border-left: solid 4px #747474;
    padding: 0;
}


/*inline-*/

.news .file a {
    border: solid 1px #ccc;
    border-radius: 2px;
    padding: 5px;
    background-color: #ececec;
    margin: 2px 5px;
    display: inline-block;
    /*float: right;*/
}

.news .file a i {
    margin-right: 5px;
}


/*.news .file a:first-child{ margin-left: 0;}*/

.news .file>a:hover>span,
.news .file>a:hover {
    text-decoration: none
}


/*.news{padding : 5px 10px;}*/

.news h3 {
    font-size: 1.1em;
    color: #000;
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 15px
}

.news .infos {
    font-size: 0.9em;
    font-weight: normal;
    color: #777;
    padding-left: 4px;
}

.news .corp {
    margin-bottom: 10px;
}

.news .fam {}

.news .etiquette {
    display: inline-block;
    float: right;
    z-index: 1001;
    padding: 2px 5px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0 5px;
    margin-top: 0;
    font-size: 0.9em;
}

.news .etiquette.style1 {
    background-image: linear-gradient(to right, #f16e00, #f06400);
    color: #fff;
}

.news .etiquette.style2 {
    background-image: linear-gradient(to top right, red, #f06d06);
    color: #fff;
}

.news .etiquette.style3 {
    background-image: linear-gradient(to top right, #5ea9f4, #6ebbf6);
    color: #fff;
}

.news .etiquette.el {
    background-image: linear-gradient(to top right, #15a575, #27b384);
    color: #fff;
}

.news .etiquette.br {
    background-color: #4a4a4a;
    color: #fff;
}


/* TABLEAU SAISIE */

@media only screen and (max-width: 767px) {
    /* Force table to not be like tables anymore */
    .contTabSaisie,
    .contTabSaisie table,
    .contTabSaisie thead,
    .contTabSaisie tbody,
    .contTabSaisie th,
    .contTabSaisie td,
    .contTabSaisie tr {
        display: block;
    }
    .contTabSaisie tfoot {
        display: none;
    }
    .contTabSaisie tbody {
        text-align: center;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    .contTabSaisie tr.tailles {
        display: none;
    }
    .contTabSaisie thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .contTabSaisie tr {
        border: 1px solid #ccc;
        margin-top: 5px;
    }
    .contTabSaisie tr.sep {
        display: block;
        border: 0;
    }
    .contTabSaisie tr.sep>td {
        text-align: left;
    }
    .contTabSaisie tbody tr:nth-child(2n) {
        margin-left: 3rem;
    }
    .contTabSaisie tr,
    .tabSaisie tbody tr {
        display: inline-block;
        width: 45%;
        /*margin-right:1rem;*/
        margin-top: 2rem;
    }
    .contTabSaisie td,
    .tabSaisie tbody td {
        /* Behave like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        /* padding-left: 40%; */
        white-space: normal;
        text-align: right;
        /* padding-right: 40%;*/
        padding: 0;
        margin: 0;
    }
    .tabSaisie .cou:before,
    .contTabSaisie tr.sep>td:before {
        border: 0;
        display: none;
    }
    .tabSaisie .brouillonLib:before {
        border: 0;
        display: none;
    }
    .tabSaisie .brouillonLib {
        /* titre du brouillon en multi saisie version tel*/
        vertical-align: middle;
        text-align: center;
        line-height: 2;
        padding: 2px;
        font-weight: bold;
    }
    .tabSaisie tr.selected>td.brouillonLib,
    .tabSaisie tr.selected>td.cou {
        background-color: unset;
    }
    .tabSaisie .cou>div,
    .tabSaisie .cou>.libcou {
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        line-height: 2;
        margin: 2px;
        font-weight: bold;
        font-size: 1em;
    }
    /*.contTabSaisie tr.sep*/
    .tabSaisie .cou>div.pastille {
        float: unset;
        z-index: unset;
        display: inline-block;
        position: unset;
        vertical-align: unset;
    }
    .contTabSaisie tr:not(.sep) td:not(.brouillonLib):not(.actionLigne):not(.cou):before {
        position: absolute;
        display: inline-block;
        height: 25px;
        left: 0;
        width: 25%;
        padding: 0;
        padding-right: 10px;
        vertical-align: middle;
        white-space: nowrap;
        text-align: right;
        font-weight: bold;
        border-right: solid 1px #ccc;
    }
    .contTabSaisie tr:not(.sep) td:not(.totalligne):not(.brouillonLib):not(.actionLigne):not(.cou):before {
        padding-top: 5px;
    }
    .contTabSaisie tr:not(.sep) td.cou {
        padding-left: 25%;
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .contTabSaisie td.actionLigne:before {
        border-right: 0;
        display: none;
    }
    .contTabSaisie td.actionLigne {
        text-align: center;
        border: 0;
        height: unset!important;
        padding: 5px!important;
        vertical-align: middle!important;
        /* background-color: #eee; */
    }
    /*
  .contTabSaisie tr td.totalligne:before{
    padding-top: unset;
  }*/
    .contTabSaisie .totalligne {
        padding-top: 5px;
        height: 25px;
        text-align: center
    }
    .tabSaisie tbody tr.ligneSaisie td input {
        text-align: right;
        border: 0;
        display: block;
        margin: 0 1px;
        min-width: 75%;
        padding-right: 20%;
        /* padding-right: 10px; */
        /* max-width: 100%; */
        height: 25px;
        margin-left: 25%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #fdfdfd;
    }
    .tabSaisie tbody td input:focus {
        /*background-color: #fefefe;*/
    }
    .tabSaisie tbody tr:not(.stock):not(.totaux) td:nth-last-child(3) {
        padding-right: 0;
    }
    /*
  Label the data
  */
    .contTabSaisie td:before {
        content: attr(data-title);
    }
}

.tabStock {
    border: 0
}

.tabStock tbody td {
    text-align: right;
    padding-right: 8px;
    width: 50px;
    height: 30px
}

.tabStock td.label {
    padding-left: 7px;
}

.tabStock>thead>tr>th {
    /*  height: 30px*/
}

.tabStock>thead>tr>th {
    border-collapse: collapse;
    border: solid black 0px;
    font-weight: 400;
    font-size: 0.8rem;
    text-align: center;
}

.tabStock tbody td {
    border: solid 1px #797979;
}

.tabStock th.cou {
    min-width: 150px;
    padding-right: 5px;
    padding-left: 5px;
}

.tabStock td.prix {
    /* width: auto; */
    min-width: 55px;
    /* padding-left: 1.5rem; */
    border: 0;
    font-weight: 500;
}

.tabStock thead tr:first-child th {
    padding-top: 0.6rem !important;
}

.conteneurTabStock {
    padding-left: 30%
}

.blocReference {
    font-size: 0.9rem;
}

.blocReference>div>label {
    padding: 0;
    margin: 0;
    padding-right: 5px;
    text-align: right;
    min-width: 9%;
    font-weight: 500;
}

.blocReference>div>div {
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 50%;
    margin-left: 0.3rem;
}

.blocReference>div {
    padding: 0 5px 0 0;
}

.blocReference>.souslabel {
    padding-left: 0;
}

.blocReference>.souslabel>span {
    display: inline-block;
    /* min-width: 150px; */
    /*font-weight: 500;*/
    /*margin-right: 1rem;*/
}

.ligneRef {
    margin-left: auto;
    margin-right: auto;
    /* margin-top: auto; */
    /* margin-bottom: auto; */
    /* position: absolute; */
    /* left: 32%; */
    margin-top: 23%;
}

.ligneRef {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    /* border-top: solid 1px #ccc; */
}


/*

    Menu Synchro

*/

.wrapper {
    display: block;
}

#sidebar {
    min-width: 100px;
    max-width: 450px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    /* top layer */
    z-index: 9999;
    background-color: rgb(247 247 247);
    display: block;
    border: solid 1px #ccc;
    border-top: 0;
    border-bottom: 0;
}

.overlay {
    display: none;
    position: fixed;
    /* full screen */
    width: 100vw;
    height: 100vh;
    /* transparent black */
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    opacity: 0;
    /* animate the transition */
    transition: all 0.5s ease-in-out;
}


/* display .overlay when it has the .active class */

.overlay.active {
    display: block;
    opacity: 1;
}

#dismiss {
    /* width: 35px;
    height: 35px;
    position: absolute; */
    /* top right corner of the sidebar */
    /* top: 10px;
    right: 10px; */
}




/**/


@media (min-width: 1200px){
	.container { 
		max-width:1280px;
	}
}