*, .standard {
  font-family: Verdana,Arial,Helvetica,sans-serif;
  font-size: 11px;
  color: #000000;
  font-weight: normal;
  background-color: transparent;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
}

body {
  background-color: #ffffff;
}

#page-area{
  display:block;
  min-height: calc(100vh - 25px);
  /*background-color:#ffd8d8;*/
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 259px 400px;
}
#footer-area{
  position: fixed;
  display:block;
  bottom: 0;
  left:0;
  width: 100% !important;
  padding: 6px 0 6px 0 !important;
  margin: 0 !important;
  border: 0 !important;
  text-align: center;
  background-color: #CC0000;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;

}
#footer-area b{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
}

#corps{
  display:block;
  /*width: 100%;*/
  min-height: calc(100vh - 135px);
  padding: 0 15px 0 15px;
}

h1.title-page{
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  padding: 10px 5px 0px 5px;
  vertical-align: top;
}

.user-menu-container {
    position: fixed;
    top: 2px;
    right: 3px;
    z-index: 1000;
}

.user-button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #dc3545;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    margin-top: 3px;
}

.user-button:hover {
    background: #c82333;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    transform: translateY(0px);
}

.user-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.dropdown-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.user-menu-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
    border-bottom: none;
}

.user-name {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.user-email {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 4px;
}

.logout-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.logout-link:hover {
    background: #fff5f5;
    color: #c82333;
}

.logout-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}



.nav-top-left{
  padding-left: 15px;
}

input, .input, select, .select {
  border-width: 1px;
  border-style: solid;
  border-color: #7F9DB9;
  margin:3px;
  background-color: #ffffff;
}

input.checkbox {

border-width: 0px;
border-style: solid;
margin:3px;
}


.ico-step{
  margin-right: 15px;
}

.btn-a-new {
  background-color: #0077B620;
  color: #0077B6;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid #0077B6;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-a-new:hover {
  background-color: #005A8E30;
}

.btn-a-new:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

input[type="button"], input.btn-standard {
  background-color: #0077B620;
  color: #0077B6;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid #0077B6;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="button"]:hover, input:hover.btn-standard {
  background-color: #005A8E30;
}

input[type="button"]:focus, input:focus.btn-standard {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

input[type="reset"], input[type="submit"].btn-reset, input[type="button"].btn-reset {
  background-color: #0077B605;
  color: #0077B6;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid #0077B6;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="reset"]:hover, input[type="submit"]:hover.btn-reset, input[type="button"]:hover.btn-reset {
  background-color: #005A8E10;
}

input[type="reset"]:focus, input[type="submit"]:focus.btn-reset, input[type="button"]:focus.btn-reset {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

input.btn-mini-standard {
  background-color: #0077B620;
  color: #0077B6;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 2px 6px;
  border: 1px solid #0077B6;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input:hover.btn-mini-standard {
  background-color: #005A8E30;
}

input:focus.btn-mini-standard {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

input[type="text"], input[type="password"] , textarea, select{
  padding: 2px 5px 2px 5px;
  border-radius: 3px;
}
input[type="file"]{
  margin: 4px !important;
  padding: 2px 5px 2px 5px !important;
  border-radius: 3px;
}


.image {
  border-width: 0px;
  border-style: none;
  margin: 0px;
}

.nodisplay {
  display :none;
}

table.tableau_icones {
color: #CF0B0D;
background-color: #ffffff;
text-align:right;
margin-right:0px;
padding-right:0px;
padding-left:0px;
}

td.icones {
text-align:right;
margin-right:0px;
padding-right:0px;
padding-left:0px;
}

td.docspe {
width:1700px;
text-align:left;
}

.bon_tableau {
text-align:right;
width:100%;
margin-right:0px;
padding-right:0px;
}

span.icones1 {
  white-space: nowrap;
  background-image:url("/icones/doc_up2.gif");
  width:25px;
  height:25px;
  display:block;
  background-repeat:no-repeat;
  cursor: pointer;
}

span.icones2 {
  white-space: nowrap;
  background-image:url("/icones/doc_down2.gif");
  width:25px;
  height:25px;
  display:block;
  background-repeat:no-repeat;
  cursor: pointer;
}

span.icones3 {
  white-space: nowrap;
  background-image:url("/icones/doc_supp2.gif");
  width:25px;
  height:25px;
  display:block;
  background-repeat:no-repeat;
  cursor: pointer;
}

span.icones4 {
  white-space: nowrap;
  background-image:url("/icones/doc_cut2.gif");
  width:25px;
  height:25px;
  display:block;
  background-repeat:no-repeat;
  cursor: pointer;
}

span.icones5 {
  white-space: nowrap;
  background-image:url("/icones/doc_paste2.gif");
  width:25px;
  height:25px;
  display:block;
  background-repeat:no-repeat;
  cursor: pointer;
}

span.icones6 {
  white-space: nowrap;
  background-image:url("/icones/doc_pagespe_in.gif");
  width:25px;
  height:25px;
  display:block;
  background-repeat:no-repeat;
  cursor: pointer;
}

span.icones7 {
  white-space: nowrap;
  background-image:url("/icones/doc_pagespe_sup.gif");
  width:25px;
  height:25px;
  display:block;
  background-repeat:no-repeat;
  cursor: pointer;
}

span.icones8 {
  white-space: nowrap;
  background-image:url("/icones/ico_plus.gif");
  width:40px;
  height:20px;
  display:block;
  background-repeat:no-repeat;
  cursor: pointer;
}

.classeur {
background-color:#ffffff;
color:#666666;
}


/*Style ne s'appliquant qu'aux <option> des <select> à qui on a attribué la classe classeur*/
select.classeur option{
background-color:#ffffff;
color:#666666;
padding-right:5px;
}

option {
background-color:#ffffff;
color:#000000;
padding-right:5px;
}

textarea {
  vertical-align: middle;
  border-width: 1px;
  border-style: solid;
  border-color: #7F9DB9;
  margin: 3px;
  padding: 0 3px 0 3px;
}


p {
  margin: 3px;
  padding: 3px;
}



h1 {
  font-size:16px;
  color: #CF0B0D;
  /*background-color: #ffffff;*/
  font-weight: 600;
  padding: 5px 15px 15px 15px;
}
h2 {
  font-size:12px;
  color: #552222;
  font-weight: bold;
  margin-bottom: 3px;
  border-width: 1px;
  border-style: solid;
  border-color: #E3E1E2;
}
.h2 {
  font-size:12px;
  color: #552222;
  font-weight: bold;
}

.erreur {
  color: #cf0b0d;
  font-size:14px;
}
.obligatoire {
  color: blue;
  font-size:14px;
}


input.nbPages {
  width: 3em;
}
input.commentaire {
  width: 20em;
}

.titre2 {
  font-size:14px;
  color: #000000;
  margin-bottom: 3px;
}

.marge {
 padding-left: 3px;
}


th {
 padding-right: 5px;
}

.textetechnique0 {  color: #666666; }
.textetechnique1 {
  color: #000000;
  background-color: #e5e5e5;
}
.textetechnique {  color: #666666; }


.recapitulatif {
  background-color : #eeeeee;
  margin-left: 15px;
  margin-right: 10px;
}

a.lien {
  color: #cc0000;
  background-color: transparent;
  text-decoration: none;
}

a:hover.lien {
  text-decoration: underline;
  background-color: transparent;
}

.submit {
  color: #000000;
  background-color: #ededed;
  border-color: #B0B0B0;
  padding: 3px;
  padding-top: 1px;
  padding-bottom: 1px;
}
input:hover.submit {
  border-color: #000000;

}

.g { text-align: left; vertical-align: top; }
.m { text-align: center; vertical-align: top; }
.d { text-align: right; vertical-align: top; }


legend {
        margin-left: 1em;
        margin-right: 1em;
        margin-top: 2px;
        margin-bottom: 0px;

}
.actiondirecte {
  background-color: #ffffe2;
  text-align: left;
  border-color: #cccccc;
  border-style: solid;
  border-width: 1px;
  margin-left: auto;
  margin-right: 5px;
}




/* *********************************** */
/* table de listing de resulat         */
/* *********************************** */
table.listing tbody tr td {
  padding-left: 3px;
  padding-right: 3px;
}

table.listing-home tbody tr td {
  padding: 3px 6px 3px 6px;

}





/* *********************************** */
/* pour le debug uniquement            */
/* *********************************** */

div {
 border-width: 0px;
 border-style: solid;
 border-color: #ffffff;
}




/* *********************************** */
/* les div des blocs parents           */
/* *********************************** */

div.Parent,
div.ContenantClasseurTypeCegos, div.ContenantClasseurTypePersonnalisable, div.ContenantClasseurTypeFourni,
div.ContenantDosCarreColle, div.ContenantWireoA4, div.ContenantWireoA5, div.ContenantDCCA4, div.ContenantDCCA5,div.ContenantChemise,div.ContenantCahierA4,div.ContenantCahierA5,div.ContenantHorsclasseur,div.ContenantCdrom,
div.livraison_reste_du_monde, div.livraison_ile_de_france, div.livraison_france_metropolitaine,
div.course,div.ContenantSupportPedagogique

 {

 border-width: 1px;
 border-style: solid;
 border-color: #cf0b0d;
 margin-left: 10px;
 margin-top: 8px;
 margin-right: 6px;
 margin-bottom: 5px;
 padding: 0px;

}
div.ContenantSupportPedagogique {
  border-color: #552222;
  border-style: solid;
  border-width: 1px;
}
div.Parent {
 border-color: #ffffff;
 margin-left: 6px;
}

a.ParentLiens {
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
  margin-left: 6px;
  margin-right: 4px;
}
a:hover.ParentLiens {
  text-decoration: underline;
}

*.Parent option, *.ParentBasTitre option{
  color: #cf0b0d;
  background-color: #ffffff;
  margin-right: 9px;
}


*.Parent select, *.ParentBasTitre select{
  color: #cf0b0d;
  background-color: #ffffff;
  margin-right: 12px;
}
div.Parent {
  color: #cf0b0d;
  background-color: #ffffff;
}
/* *********************************** */
/* la table de l'entete du bloc parent */
/* *********************************** */

table.ParentTable {
  width:100%;
  color: #ffffff;
  background-color: #ffffff;
}

tr.ParentTr {
}

td.ParentTitre {
  vertical-align: middle;
  text-align: left;
  padding-left: 10px;
  color: #CF0B0D;
  font-weight: bold;
  font-size: 12px;
  background-color: #ffffff;
}

td.nombreexemplaire {
padding-left :2px;
font-weight : bold;
}

span.optionflottante {
  text-align: right;
  padding-left: 15px;
  color: #666666;
  font-weight: normal;
  font-size: 11px;
  background-color: #ffffff;
}

/* *********************************** */
/* la table du bas du bloc parent */
/* *********************************** */

table.ParentBasTable {
  width:100%;
  color: #CF0B0D;
  background-color: #ffffff;
}

tr.ParentBasTr {
}

td.ParentBasTitre {
  vertical-align: top;
  text-align: left;
  padding:7px;
  color: #CF0B0D;
  background-color: #ffffff;
}

td.ParentBasTitreIcones {
  vertical-align: top;
  text-align: left;
  padding:7px;
  color: #CF0B0D;
  background-color: #ffffff;
  padding-right: 450px;
}

td.ParentBasAction {
  vertical-align: bottom;
  text-align: right;
  padding-right: 6px;
  color: #CF0B0D;
  background-color: #ffffff;
}

a.ParentBas {
  color: #CF0B0D;
  background-color:#ffffff;
  text-decoration: none;
  padding-right: 7px;
  padding-left: 7px;
  padding-top: 0px;
  padding-bottom: 0px;

  border-width: 1px;
  border-style: solid;
  border-color: #CF0B0D;
}

a:hover.ParentBas {
  color:#ffffff;
  background-color:#ff0000;
  text-decoration: none;
}

/* *********************************** */
/* la table du bas du bloc enfant      */
/* *********************************** */

table.EnfantBasTable {
  width:100%;
  color: #CF0B0D;
  background-color: #ffffff;
}

td.EnfantBasTitre {
  vertical-align: top;
  text-align: left;
  padding-left: 8px;
  color: #99284c;
  background-color: #ffffff;
}

td.EnfantBasAction {
  vertical-align: bottom;
  text-align: right;
  padding-right: 6px;
  color: #99284c;
  background-color: #ffffff;
}

a.EnfantBas, a.EnfantMasquer, a.EnfantAfficher {
  color: #666666;
  background-color: #ffffff;
  text-decoration: none;
  padding-right: 7px;
  padding-left: 7px;
  border-width: 1px;
  border-style: solid;
  border-color: #cfcfcf;
}

a:hover.EnfantBas, a:hover.EnfantMasquer, a:hover.EnfantAfficher {
  color:#ffffff;
  background-color:#cfcfcf;
  text-decoration: none;
  padding-right: 7px;
  padding-left: 7px;
}

/* *********************************** */
/* les div des blocs enfants           */
/* *********************************** */

div.Document, div.Intercalaire, div.Commentaire, div.Document_couverture, div.Document_cahier_agrafe {

 border-width: 1px;
 border-style: solid;
 border-color: #cfcfcf;
 margin-left: 10px;
 margin-top: 8px;
 margin-right: 6px;
 margin-bottom: 5px;
 padding: 0px;

}

div.Intercalaire {
 background-color: #f7f7f7;
}
div.discrete {

 border-width: 1px;
 border-style: solid;
 border-color: #ffffff;
 margin-left: 10px;
 margin-top: 8px;
 margin-right: 6px;
 margin-bottom: 5px;
 padding: 0px;
}

/* *********************************** */
/* les div des blocs petit enfants           */
/* *********************************** */

div.DocumentPagesSpecifiques {

 border-width: 1px;
 border-style: solid;
 border-color: #7F9DB9;
 background-color: #ffffff;
 margin-left: 30px;
 margin-top: 8px;
 margin-right: 6px;
 margin-bottom: 5px;
 padding: 0px;

}

a.PetitEnfantBas, a.PetitEnfantMasquer, a.PetitEnfantAfficher {
  color: #7F9DB9;
  background-color: transparent;
  text-decoration: none;
  padding-right: 7px;
  padding-left: 7px;
  border-width: 1px;
  border-style: solid;
  border-color: #7F9DB9;
}

a:hover.PetitEnfantBas, a:hover.PetitEnfantMasquer, a:hover.PetitEnfantAfficher {
  color:#ffffff;
  background-color:#7F9DB9;
  text-decoration: none;
  padding-right: 7px;
  padding-left: 7px;
}

.insecable {
  white-space: nowrap;
}

.gras {
  font-weight:bold;
}


td.fourniture {
  font-weight:bold;
  text-align: left;
}

.header-ban img{
  margin-bottom: 4px;
}
div.logo {
  text-align:right;
  vertical-align: top;
}
.logo img{
  margin: 2px 4px 2px 4px;
}

td.celltxtacceuil {
  vertical-align:top;
}

p.txtacceuil {
  display: block;
  font-family: Arial,Helvetica,sans-serif;
  color:#000000;
  text-align:left;
  margin-bottom: 350px;
  font-size: 14px;
  line-height: 20px;
}

td.checkbox {
  border-width: 0px;
}

td.imputation {
  font-weight:bold;
  text-align:center;
}

table.tableau1 {
  margin-left: 30px;
  margin-right: 380px;

}

#fsUploadProgress {
  z-index: 1000;
  left: 0px;
  top: 0px;
  font-size: 40pt;
  font-weight: bold;
  background-color: #cccccc;
  border: #000000 1px solid;
  padding: 20px;


  width: 100%;
  margin: auto;
  text-align: center;
  vertical-align: middle;

/** tous nav **/
  height: 5000px;
  position: absolute;
}
/** moz ie7 **/
html>body #fsUploadProgress {
  position: fixed;
  height: 100%;
}

.production {
  color: #196a4b;
  font-weight: bold;
}
.production input {
  background-color: #fffbde
}

.total {
 font-size: 14pt;
}

.detail_commande{
  display:inline-block;
  width:50%;
  vertical-align: top;
  padding-left:10px;
}

.detail_operator_op{
  display:inline-block;
  vertical-align: top;
  width:50%;
  max-width: 470px;
  background-color: #ffffe2;
  border: 1px solid #cccccc;
  border-radius: 3px;
  margin: 0 35px 10px 15px;
  padding: 5px;
}
@media (max-width: 1160px){
  .detail_commande{
    display:block;
    width:98%;
  }
  .detail_operator_op{
    display:block;
    width:98%;
  }
}

.noborder-table, .noborder-table tbody, .noborder-table th, .noborder-table td{
  padding: 0;
  margin: 0;
  border-spacing: 0;
}

#login-form-area{
  display:inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 70px);
  margin: 0 auto 0 auto;
}
#login-form-area .login-block{
  width: 300px;
  padding: 25px;
  border: 1px solid #7F9DB9;
  border-radius: 15px;
  margin-bottom: 120px;
  background-color: #f5ffff;
}
#login-form-area h1{
  background-color: inherit;
}
#login-form-area td{
  width: 50%;
}

#home-area{
  display:inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 117px);
  margin: 0 auto 0px auto;
}

.block-expand{
  border: 1px solid #0077B6;
  padding-top: 4px;
  border-radius: 3px;
  margin-bottom: 5px;
}
