#opartDevisForm textarea{
    height:100px;
}
#opartDevisForm .opartDevisConteneurTextarea {    
    max-width:100%;
}
#opartDevisForm textArea{
    width:100%;
}
#opartDevisForm .opartDevisConteneurTextareaLeft {
    float:left;
}
#opartDevisForm .opartDevisConteneurTextareaRight {
    float:right;
}
#opartDevisForm .opartDevisConteneurQuotationName {
    /*text-align: right;*/
}
#opartDevisForm .opartDevisConteneurQuotationName input{
    width:100%;
}
#opartDevisForm .opartDevisInfos {
    font-style:italic;
    text-align:right;
    padding-bottom:15px;
}
#opartDevisForm .opartDevisConteneurFieldCustomerInformation {
    width:22%;    
    float:left;
    margin:0 4% 0 0;
}
#opartDevisForm .opartDevisConteneurFieldCustomerInformationLast {
    margin:0;
}
#opartDevisForm .opartDevisConteneurFieldCustomerInformation input {
    width:100%;    
}
#opartDevisForm #cart_summary {
    width:100%
}
#opartDevisForm .invoice_address,
#opartDevisForm .delivery_address {
    max-width:100%;
}
#opartDevisForm .opartDevisTextArea {
    /*max-width:90%;*/
}
#opartDevisForm #cart_summary thead th {
    padding: 4px;
}
.OpartMaxWidthDevice {
   width:50px;
   display:block;
   word-wrap: break-word;
}
@media screen and (min-width: 500px)
{
  .OpartMaxWidthDevice {
    width:auto;
 }
}



#cart_summary.table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Bordures globales */
#cart_summary th,
#cart_summary td {
    border: 1px solid var(--ciel);
    padding: 10px 12px;
    vertical-align: middle;
}

/* En-têtes */
#cart_summary thead th {
    background: var(--ciel);
    color: #fff;
    font-weight: 600;
    text-align: left;
    font-size: 13px;
    letter-spacing: .3px;
}

/* Lignes produits */
#cart_summary tbody tr:nth-child(even) {
    background: rgba(0,0,0,0.02);
}

#cart_summary tbody td {
    color: #333;
    font-size: 14px;
}

/* Totaux */
#cart_summary tfoot td {
    background: #f7fafd;
    font-weight: 600;
    border-top: 2px solid var(--ciel);
}

#cart_summary tfoot tr:last-child td {
    background: var(--ciel);
    color: #fff;
    font-size: 15px;
}

/* Alignement */
#cart_summary .text-right {
    text-align: right;
}

/* Colonne prix */
#cart_summary .price {
    text-align: right;
    white-space: nowrap;
}

/* modification pour que le texte aucun fichier sélectionné ne dépasse pas en mobile */
#quotation_file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    pointer-events: none;
}
label[for="quotation_file"] {
    display: inline-block;
    padding: 10px;
    font-size: 14px;
    background: var(--ciel);
    border: 2px solid var(--ciel);
    color: var(--navy);
    border-radius: 6px;
    cursor: pointer;
    max-width: 100%;
    font-style: normal;
    line-height: 1.4;
}
label[for="quotation_file"]:hover {
    background: var(--cielLight);
}
label[for="quotation_file"]::after {
    content: attr(data-filename);
    margin-left: 8px;
    font-style: italic;
    color: var(--navy);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    max-width: 60vw;
    display: inline-block;
}
label[for="quotation_file"]:not([data-filename])::after,
label[for="quotation_file"][data-filename=""]::after {
    content: "Aucun fichier sélectionné";
    color: var(--txtNight);
}
