-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuividetail.html
491 lines (482 loc) · 41.5 KB
/
suividetail.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suivi detail</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body style="background-color: #a2c7cf; margin: Opx; padding: 0px;">
<div class="container-fluid">
<div class="row flex-nowrap d-flex">
<div class="col-auto col-md-3 col-xl-2 px-sm-2 px-0 bg-white">
<div class="d-flex flex-column align-items-center align-items-sm-start px-3 pt-2 text-white min-vh-100">
<a href="/" class="d-flex align-items-center pb-3 mb-md-0 me-md-auto text-white text-decoration-none">
<span class="fs-5 d-none d-lg-inline"><img src="img/enval_transparent.jpg" alt="" style="width:200px;"></span>
</a>
<ul class="nav nav-pills flex-column mb-sm-auto mb-0 align-items-center align-items-sm-start" style="font-size: 18px; padding-top: 0px;" id="menu">
<li class="nav-item">
<a href="dashboard.html" class="nav-link align-middle px-0" style="color: black;" id="ombre">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-grid" viewBox="0 0 16 16">
<path d="M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5v-3zM2.5 2a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3zm6.5.5A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5v-3zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3zM1 10.5A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5v-3zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3zm6.5.5A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5v-3zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3z"/>
</svg>
<i class="fs-4 bi-house"></i> <span class="ms-1 d-none d-lg-inline">Dashboard</span>
</a>
</li>
<li>
<a href="facture.html" data-bs-toggle="collapse" class="nav-link px-0 align-middle" style="color: black;" id="ombre">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-person-circle" viewBox="0 0 16 16">
<path d="M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0z"/>
<path fill-rule="evenodd" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1z"/>
</svg>
<i class="fs-4 bi-speedometer2"></i> <span class="ms-1 d-none d-lg-inline">Facture</span> </a>
</li>
<li>
<a href="command.html" class="nav-link px-0 align-middle" style="color: black;" id="ombre">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-car-front-fill" viewBox="0 0 16 16">
<path d="M2.52 3.515A2.5 2.5 0 0 1 4.82 2h6.362c1 0 1.904.596 2.298 1.515l.792 1.848c.075.175.21.319.38.404.5.25.855.715.965 1.262l.335 1.679c.033.161.049.325.049.49v.413c0 .814-.39 1.543-1 1.997V13.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1.338c-1.292.048-2.745.088-4 .088s-2.708-.04-4-.088V13.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1.892c-.61-.454-1-1.183-1-1.997v-.413a2.5 2.5 0 0 1 .049-.49l.335-1.68c.11-.546.465-1.012.964-1.261a.807.807 0 0 0 .381-.404l.792-1.848ZM3 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm10 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM6 8a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2H6ZM2.906 5.189a.51.51 0 0 0 .497.731c.91-.073 3.35-.17 4.597-.17 1.247 0 3.688.097 4.597.17a.51.51 0 0 0 .497-.731l-.956-1.913A.5.5 0 0 0 11.691 3H4.309a.5.5 0 0 0-.447.276L2.906 5.19Z"/>
</svg>
<i class="fs-4 bi-table"></i> <span class="ms-1 d-none d-lg-inline">Commande</span></a>
</li>
<li class="active">
<a href="suivi.html" data-bs-toggle="collapse" class="nav-link align-middle" style="color: black;" id="ombre">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-bag" viewBox="0 0 16 16">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"/>
</svg>
<i class="fs-4 bi-bootstrap"></i> <span class="ms-1 d-none d-lg-inline">Suivi</span></a>
</li>
<li>
<a href="serviceclient.html" data-bs-toggle="collapse" class="nav-link px-0 align-middle" style="color: black;" id="ombre">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chat-left-text" viewBox="0 0 16 16">
<path d="M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"/>
<path d="M3 3.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zM3 6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 6zm0 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z"/>
</svg>
<i class="fs-4 bi-grid"></i> <span class="ms-1 d-none d-lg-inline">Service Client</span> </a>
</li>
<li style="margin-top: 40rem;">
<a href="#" class="nav-link px-0 align-middle" style="color: black;" id="ombre">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-gear" viewBox="0 0 16 16">
<path d="M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z"/>
<path d="M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z"/>
</svg>
<i class="fs-4 bi-people"></i> <span class="ms-1 d-none d-lg-inline">Paramètres de Compte</span> </a>
</li>
<li>
<a href="index.html" class="nav-link px-0 align-middle" style="color: black;" id="ombre">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-box-arrow-left" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M6 12.5a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v2a.5.5 0 0 1-1 0v-2A1.5 1.5 0 0 1 6.5 2h8A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 5 12.5v-2a.5.5 0 0 1 1 0v2z"/>
<path fill-rule="evenodd" d="M.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L1.707 7.5H10.5a.5.5 0 0 1 0 1H1.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3z"/>
</svg>
<i class="fs-4 bi-people"></i> <span class="ms-1 d-none d-lg-inline">Déconnexion</span> </a>
</li>
</ul>
</div>
</div>
<div class="col py-3">
<div class="nav-haut position-relative" style="background-color: white; height: 80px; margin-top: -16px; margin-right: -20px;">
<div class="d-flex position-absolute top-50 end-0 translate-middle-y">
<div id="icons">
<img style="height: 25px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAAkFBMVEX///8AAADl5eXk5OTm5ubj4+P19fXu7u729vbw8PD39/f4+Pjv7+/5+fnt7e3s7OxXV1c6OjonJyfV1dUtLS11dXW8vLw2Njbd3d3CwsLJycmSkpJGRkaIiIhCQkLS0tKgoKB+fn6ysrKoqKgfHx9fX19oaGgUFBSjo6OKioqVlZVnZ2dNTU1dXV1xcXEYGBjvbMQjAAAUqElEQVR4nOVdbXviKhMmJpIQg7S1L2rbtdrdbU93t+f//7snMVHDzBBegu7p9fBhc3kvxSAwc3MzAGOMlZNsUtbPNJvk9SOfZGn9mHVo/Zgb0eqEFgiVHZplE2VExQnlA2gWijb//B/UcJZO0llTw0lXl8m0Q0sbWrWo7NDJpKvLES00NMWo0NEMoTwQTTuUleWMz/M5n5WzeZ6L+iHyfD6bBaH5ICqKpg6MixzkLckSPNHCgNY/ZbpvorRtoulk2jTnFKElQmWH1j/WvoksqJKru+skSZ4el4wf0a450+5nH0bbJvJA0wbNyMGXOg4+jEp6SGbVS3JM39bivEMy7aOXaUOWPSX99Cwu14bNOKy7LhxbJzSPgFb5v4mefrL+eClLogQTSn1bk3dOocX8Mra0ekhgehSXsqXs/P5wIraogkmyVhf0h9O0HXzpdF+X+mlEZf0oW1QZ0UpHJwuigskth3mbXyNN2wF1Qpu3nnigmYayaVNkU4F5CqrV2RRQAQOqMNq96r4Cz1QNk81AtYpR1dLRS3gLsoLJ88W8RVdDd/OS6+YFGx2dqmVzuobfBghcqHmh0NqoipphiXmPaM1qxzEWPZUryGFYJ4bz0iWcqBpEiyOam9DW0gS5eSfn3zTRvaGGQs874Oa9nH+qo00Nz+0tVoYaVhf0Fmdrw327bOgK3p6pDQHaI0/5rKNJZZ/6eKEliRps6R1zLsGKVmb07LY0U4r9Q9Zw0/SoyLY0JdAz+sOm3GKze7z7Rtbwz/blfiHYwOCL4w/TlpTNR1M1gGaqWN5vMeOG6epjzbjKRnKaQaZjompWAjdA1bJ5vv7nxlq7Q/r9smQq06qVkhVISao2jDK9a8bxFmx151y7Lr09LoQc12HTC2ltOeMv333rt09P94HmZRhle5o0b+nXvCNE83koWpXTbVD12vRSO5B+uUVXbn76ttIXjazT8DH1a9JroE6TmtGI3kKJj5H1q9O/q+aV/ptam1iHjT+YfkxVLK1t0mptGiGqPxKkrEPpvC0qZtso9WvSbs/nAP3C7+CGxrKlankbrYI1ZS2zkVQtutaWm2ZIgemh7qm+g++sWht7sb+0Z1ooFklr87I0KWlpUk5PHsalpYIeQCdwGoq8RVytTZyjgo6SsYGqxdXa7F7w5s/28X23WkyzxWKxnG5Wu5fnz99vtj9bqCgErke/5JF+SZKU0SjbDb3l0z/3y6bbC1HPtqWsqqoh2IXg9RuIxet20IVOMYGTDSmTFFpJSOD26HitLTOoME26u5805U9IBa7rPNPXK+PfP7B0UKcZoGrxtLZMwXWzQ/q1lrnK7JEKSkx2tAhQ/0Ti72tt4hf9btv5iULTCtypZeuX2BgacqfiaG2I+pSuqKTV3jvFhEe59eBkm2uypErCvHQJJ7QA6DhbOplRb/XvhtkDTzD6TpX1GUbVomltFbVu9ktJlNe8ytRDl5Sys+B/U2vLlsQrfQi0fnjSzwZRoYjR+CSjaG1eliY9WZotfqMdtik2S9NDf+IC12Mtjd41/Tosx+/zWuKuOXGMa2vQP6jEK5w39SFwjI2YH2K69sw7Q9KPr/CJa8uxhryMprXtSZmcyZr6KOmCMuTsf8tDXkj2bOiBaFUK1XDLDHlbqmZDR+g0xMonH1hom5JDcooUGVyq8qdqcbQ2hoTtF33w+XqLDv0Ni73P2KW0Nn1ZFC0L3uRMM7auBhSYyiks93POfA0o0tqqllJVHfWpcgdUoEnFPaPzVn4ochlvrJe3IEvQ0EpDw22pekQvEkDVGpvXR2tLWCEeMVXeVC2G1iYgAfmIFucNPcZO/RWtTcBfOjuuKoK4Nh8Ct6dfULn7zCNqbV2HnSIUWRpoEG4EWN3XbEpKWpqUXINBkX43oyxNsLeAfut5PhQF7eEtZCqgelPaqZqZwIXND+tyIGW7V+5UzULgcuhpl2O1tiMpk3tKVT8Vifbzsk84DPMTrdPzNlRNUWhhQMUr/PVYP2+FS8jNaGtp/HWaKX8Cb8Hw4HOhaiQKB+KLurzWlnIwVq6ZbfB57AqC07LnefhiaUAbtkMSOotfZBv6zoAPKCi8dhfhM+ADyakAKbOh8CWeZQXoF1WCFW3plwSKzQ9mzmtDg7U2CWr4UXhQNRuBE4DVXP0Nra0ENXznk1j+sGaEYAb1dDmtLT1qbRWo4SsPp2ooVj8HnPfbWK3Nnaod0QmcALxLbFNA1yRRQaKghrc8BXn1rjmEMr1rOnfYDLqsd7MM7KO1degPWEMfqqaj/TZ0oGpHFC2qvUo2jqpp+55+GWoYprXJmlIpgqoNohVsw1cJaN0pr0bKZOGAohrOTqRM9vM6oMFaWwpqeM91Wheste0tDRAybv+G1gYtzSqqtwA1/H4BrQ2ZVdhL1xzQumCtrUbR9GnMDLgoSl6zG14WLSkrWkp1QisSFWvYhqUxbw8t3FC2BaUL3xJOqI8t7aMZnOKvdFs6QmtrUKjjqctrbQpOUjcz2+DzOVMBCghn1tpSgsBl8B0WXd4YWhte8V5OxmhtYXML2IZc0F3Tj8B13Q31kOVfmFvAkTIT0bxFmik4yjeBWtvEQWtLDShcXPCiajYCl8Fw1fUorU0JKaWoOU/9aImWrKmaBYXc+DsDefVyC1e0pV+YE7JT3pqU9fPa0NbS+GttHAQ9PwgzKfPS2lo7kYEafqiLa21wiv9HWAefj7eAYtt2fh6tLTVrbXC5favMVC2AwEkQfPpnPlJr25OcqiyKPfUp+tSHRgVcl3lkTd6CLCEAhQts31hwuYH+EEVD7byomoHAnbwklDGSi/tD5LDWlhN4/GZPE3TQhIyvtVFU7YQquIipYN5RWtsULZIuWQytLT12WJObP6Fw5Wk56fYfdjtpRuo0HAaP7yrm5eZ7Oo3eNZ07LFx5EkPn07h4C51+cUhqXoQxb5DWZm9D8ALXApwxNLINBbRkWxHchj5U7YTClaefMyJvQZZgJXB7+gW/4EkSpEwpiqoBNExry6CG8aHRL2+tDe3pKaBDfGOmXUHn0drQ/O1+8AQef2/BoWKa8Cya1kYtYUCtTcGdTguNfo3W2moUagibLFxr00hO/ZGgPhBFobxKeJZgQ5G7eGcor6BKKCDat6VTd60NfH3tLA55R1C1vi1FI32r5z231paDr78Ssc8vzeCqwZN18DlpbX2qNkTgoD9+VNoS6nitTUwF3HzBQrW2oy3tHHqmd82MQCtkaO57TZRmetd0QI9OOut1N8gL15nu0I8lUG6+a87QuUWOAi+XuBM6eYt0gMBByfRdjdba7FTt2Ibgy5sI9jFaG0m/4BLsZx6otSnVkSfVkjLVEq0hlEMl7Iqd8hZkCVa0QiiUat6kTspUS8oUgZZ9tLU0flob2hf7yMKpmonApQIeYSCsG7ijaW1sC757xVwGn+dp1xVcQ1yN8BZ0tIlRa2MwwFUMU7UwAqdgT/lnhNaGqc8QOkOx9MyzBCdUQlPzwChSRlO1HhqitcEf9+e8ky7ctTZb8FDTGJA4Jcu+3XUncAH+EC7KvCpauhg1e6o/Qq/7Kp0Hn661DZ1BS2pt6Lfdv19Ura1BkZ73szEagVobaUtTsjnx/D5p8xINl5JK1BCR0VA43t/qWTAmZagEgDK9a9o7LJ793jHbWdCBNUSdZZOZ80bU2gQ8AOG+HdpxtbY9Cj3iowrW2hyo2gGdI18hIlI1DUVG+0FqeQeoWg/119qgCHXNEf0aIHDDVE1HUYRnoqi80bU2uMXzUbncjRDgLbLJDJKn9wha2yCBq/+zQjvUlxmiXzG0tgZFRu0pWGsTLXkSHfURlRGVsJMm0rOEAyrsKCJuyVT4lMBDtDa0JHOn2MmWDmttLnHeOilD/uLl8G0ucd5hWhsM0U9WGbP5w/C7gpC/+CbMg89DaxsicKiTKkDrYmltrVKGNucvWLjWBm0p2Zwcanw/B4jMWFvaoLCGH7nLIbUavfHzFmjorxxraKRqFgIHu+l3cV6tbb6FNWRBS9suWluLIpq/ylyoWrDWhpzhHYtN1QCKuumvop+XoGoQbS2Nq9aGTrhcZ2OpmoXAKdRrZmaqRqJNDd29BWRs37sZ2xlvlkMj/zWe1pZCrS2DEYPJY+FC1UYROCSb3vhqbUKIPckRgGgRKD6uZVG0mYgSYqH4aNRV958tKUMltKg4ol5aG/yu36K/mhEjzpugX2iR5Kow5iVRD3+I+MxOwejv6B6//ojOLZzaB5+71qZdDIAOHFVoZ2lMra0zqyg8qhGGfO57Yo62tEIqe/J4bCKbLc1IW+q6SwSdMu1jS/fni7ppbTCye68pDNdwpJp4QNHoeM4DtDbrsqhANP8P0+jXGbS2zmTAjfFJkk9sVC1Aa5PoqLg1OxdVAyi+t+1D4LwmAueqtaG9asm1eVm0b2lGaG0HlDiA8gynXXN0gOo9g9Fu5/EWAm8prRtRxtbasCFNBqhaLK3tgBKNqCbOWhvnBRcNyeEtyeEHBqSh8CiO5pQIU97jg0Dpb+NkCT1UonP4tsy1BKY1nFFrw00oIFXra21hVM1M4BSaCCe5XWubHr2F1eNX+F6xFwUPoD/T7KlFBRQxG4EootZWwM2GzThwo2rjtLajqoa26zWqm7PWlu0bLgMNd0Ab1oPmhcmL1nDZvuHavLMTKeuhkKrR6OSIcoSikWiQTnEJLt4CH32bM0xcEVWLobUdUWxO3415vbU23ENeVS/vWbW2I4p2QnXn1MXQ2rCZuZXnp2oQxVE8jdBXknl7BC530NryLSp6fXTo6LqS2FpbbwsCfo9VFkVrw67oCg2zs3uLxmTgKcZbHkVrw3dsTBk8W+mMWluPfuGD97eFKS/U2g5ch++pD+9RH4nvkNkyQ979xzOiJb5KY8GtJVi0NhwelCRSIKo2Z35UzUdrO6FoW2ed5tk4ra1S+LqbnfFmubPNng4o2iqUJJ98nNYmYcD8PljAcGHnmbS2HjpDJ/s2x6Z6aG06VaubaE5cA7RQh7xWqgZQA1XLSKpGozlx8ZLgwyUwvWvqHZa4MvyxIi/ziBK550Dg4IGKdbqWQ2RvUGubVPg6vNvGnOtS/vm1th5K3b205YFaWzH7gUtbyItSNUzKiIlc8spB3txNayuJ+/CeK7AxgaZqkbU2jZSh1bY6pUFaG+V8bkUGqNplvcVe0CD66ZtU/lobZWWSTaZRtfRSWptGyiqinz6JQa3tQHJ4x3max4y4Qib5YGReuoTzoXi635xiXJhKYP2G69lS4gat3wLb3Qo253m0Np2U0b++n9bGCTOapAcvTvjDS8yejihxUUsTwDB0VxDU2jgma/V0k4pgM9ytHl1r01G0JWr/fnOr1jY5Nid119gHC6JqWGsDBI6kapkNpa4T3BjyIm+REtc41YOQ4a6ZWrS2WFSNQAkK3uxkdYncSyecuvn2LdO2KxxqqGtth9JH7wN22PFLzFuTZFpSeaHWVpL3pi7yv0nVCJS+gXgjYF5CayP/8h5RtaOluZzWBlDiErr2BrNBrS2bEYRhH3RhvQrxgt6iQ9Fizb4VLVobp8xw8kMyiqo5ETir1uZG1SgUq4tNWkECx3okpyR0kKRZsP8PUDUC5ehyr316ZXrentaWUYQvSf7tUzWHhkvJhktJ5p0ONZy9OemriD8YS2mtjb7h/q2pRP1bsPbR9GZ5+hgNLV1R3kfpO+s/2YTS2qbwWpUuPfy5+u+mX/Td3h8Kam11XUuaCX3N9MJorY10MF8y7bC32NMv6yXwXyYttBoetTaDZfqKSdJaW0pNnb9k2jKD1jYnKekXTFNm0NpSvGD/JdMPs9ZWomDcL5mm3Ky1cRw48/XSbj6ktSm8tPPV0iMf1NoyReikXyo9o8VSoLVJRSmlXye98P39z9mQ1obuj/xC6XZRuWhtin/QjN037Ygg+3Omp3vG7Vpbo37VRmfz8uv3w83NzcP19XX9uK0ft/WzftjQ3hxTVviKbVu6ufX6tgN6e/X5Om0mjUiXM8W1Zfu5ZsHbRyG1j4NoL4Sw/ilxtJ0l7RhZbkGipY76x7UdjoOEZwzp6/hHtJUj8n4NiRh7Ww2VvzgccQ+pi9Y2P80yC5mivYO2tFbeB3s4xbVF1MR6cXALzr11g9Usui5niWtLB1A6ru3kbF5rSojj/obTgpmWRcPRoNOuB9DTkskdx1cX21KmDShn+TvWHlIz2lss7Q29xtD5Ed3rnHkuljruIW21tgOB6xY1aXRWfyyG0J4ouVIZsV9qKG17y6KYfoWhTO+aLifSDS+L9pY+fvC6+l6NuApYLHXbQ3r0fIH+UJ4WS0VPh95kqfRyiTJksdSCstjbCkRvSehKKk4vSNLpJzMvi+ah6EGnmYO4thQEquuWZmhZVPVW6FY1Sq/Ykek+C1ssxVQtYA+ps7eQWrwYb3aAulbxRoQulo7fQ+q1LNo/d/SaN8e7OHbUVxW6WGrZQxqbJpV943LVBJzJNd5HQDShPMvCKtMazk7VnOLa+t3y1/7wPDKEBaT73k2mo6ma5x5SpyHZj1Tov/i3WXuw4sqytvVDjBx8Y/aQWqkaiGAD12+s+P47pVqu1muj2ZmmvlTNjcD1tLaG32CqdkALhPao2hyiW+3lPwXrKFXtowx65ToqVRvQ2jyo2iCBA0EPzxuu2mFm0NU/WCAp8z6RbpiqwRoOxLXBqICHx3X9pYLjPcVNupPMSr9CUSNVG0fg8OFHTbp9IgNakp8ymJRZ0WFL4zophLGyDTpzV10/8aQwJW1KStqUYbSpYXxv0aJk4BmRnlkUqnYhra1P4NBVMXTatRP7uFTtfFqbhpIh5yDdTuV5Y+CaHy3HDReutenbCgrbUlYT2HkGqnZOrQ3sCpKrodF4N82jhJpeVGuDZjUTKzKms07PWT7x2kMaUWszEzistREETugoX76jIx/ePu+ba38pojUn0XFam0mJCtHaSFTN2OZ9e3X771vy9v3hx/Ou/qVVpI0JZ9PaYF3sGxPKvJ2Oikr1Z4KjNyY4am1FQ7QoqsYMpCwYLW0opl806kTgZiqCpelTtSG0MKKYlEUkcP8DpqJa8YBEJYAAAAAASUVORK5CYII=" alt="">
</div>
<div id="icons">
<img src="img/b.png" alt="" style="height: 40px;">
</div>
</div>
</div>
<div>
<h1 style="text-align: center; font-size: 18px; color: rgb(63, 61, 61);">Rapport : R-TE202303001</h1>
</div>
<div class="table-responsive" style="background-color: white; margin-top: 1rem; border-radius: 15px; height: 1100px;">
<img src="img/Capture d’écran 2023-04-09 à 00.34.26.png" style="width: 170px; margin: 40px;" alt="">
<h1 style="text-align: center; font-size: 20px; padding-bottom: 30px; color: rgb(146, 126, 126);">Rapport d’analyse (Moteur)</h1>
<div class="">
<table class="table border border-dark" style="font-size: 10px; width: 99%; margin: auto;">
<tbody>
<tr style="background-color: #a2c7cf;">
<th class="py-0 w-50">Information Client</th>
<td class="py-0"></td>
<td class="py-0"></td>
<td class="py-0"></td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Nom du client:</th>
<td class="py-0 border-bottom-0">BOLUDA</td>
<th class="py-0 border-bottom-0">Site de travail:</th>
<td class="py-0 border-bottom-0">ABIDJAN</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Nom du Navire:</th>
<td class="py-0 border-bottom-0">V8 SUPERENZO</td>
<th class="py-0 border-bottom-0">Compartiment</th>
<td class="py-0 border-bottom-0">MOOTEUR PRINCIPAL BABORD</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Marque:</th>
<td class="py-0 border-bottom-0">CATERPILLAR</td>
<th class="py-0 border-bottom-0">Marque huile:</th>
<td class="py-0 border-bottom-0">PREMIUM</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Numéro de serie:</th>
<td class="py-0 border-bottom-0"></td>
<th class="py-0 border-bottom-0">Grade huile</th>
<td class="py-0 border-bottom-0">20W50</td>
</tr>
</tbody>
</table>
</div>
<div class="" style="margin-top: 5px;">
<table class="table border border-dark" style="font-size: 10px; width: 99%; margin: auto;">
<tr style="background-color: #a2c7cf;">
<th class="py-0 border-bottom-0 w-75">Information Echantillons</th>
<td class="py-0 border-bottom-0"></td>
<td class="py-0 border-bottom-0"></td>
<td class="py-0 border-bottom-0"></td>
<td class="py-0 border-bottom-0"></td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Code échantillon :</th>
<td class="py-0 text-center border-start border-bottom-0">06-269-0030</td>
<td class="py-0 text-center border-start border-bottom-0">06-196-0014</td>
<td class="py-0 text-center border-start border-bottom-0">06-115-0016</td>
<td class="py-0 text-center border-start border-bottom-0">05-316-0020</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Date de prélèvement :</th>
<td class="py-0 text-center border-start border-bottom-0">01/09/2022</td>
<td class="py-0 text-center border-start border-bottom-0">11/07/2022</td>
<td class="py-0 text-center border-start border-bottom-0">15/04/2022</td>
<td class="py-0 text-center border-start border-bottom-0">18/11/2021</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Date d’analyse :</th>
<td class="py-0 text-center border-start border-bottom-0">28/09/2022</td>
<td class="py-0 text-center border-start border-bottom-0">21/07/2022</td>
<td class="py-0 text-center border-start border-bottom-0">25/04/2022</td>
<td class="py-0 text-center border-start border-bottom-0">18/11/2021</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Compte horaire H:</th>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Age huile H</th>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Vidange :</th>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Appoint :</th>
<td class="py-0 text-center border-start border-bottom-0">40</td>
<td class="py-0 text-center border-start border-bottom-0">29</td>
<td class="py-0 text-center border-start border-bottom-0">35.7</td>
<td class="py-0 text-center border-start border-bottom-0">127</td>
</tr>
<tr>
<th class="py-0 border-bottom-0">Filtre changé :</th>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
<td class="py-0 text-center border-start border-bottom-0">-</td>
</tr>
</table>
</div>
<div class="" style="margin-top: 8px;">
<table class="table border border-dark" style="font-size: 10px; width: 99%; margin: auto;">
<tr style="background-color: #a2c7cf;">
<th class="py-0">Paramètres</th>
<th class="py-0 text-center">Méthodes</th>
<th class="py-0 text-center">Unités</th>
<th class="py-0 text-center">Limites</th>
<th class="py-0 text-center" colspan="10">Résultats</th>
</tr>
<tr style="background-color: #b4afaf;">
<th class="py-0" colspan="10">Metals / Wear / Contaminants / Additives</th>
</tr>
<tr>
<td class="py-0">Aluminium</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><8/16<</td>
<td class="py-0 text-center border-start">1,6</td>
<td class="py-0 text-center border-start">1</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">1.32</td>
</tr>
<tr>
<td class="py-0">Chrome</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><5/25<</td>
<td class="py-0 text-center border-start">0.2</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0.22</td>
</tr>
<tr>
<td class="py-0">Cuivre</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><15/45<</td>
<td class="py-0 text-center border-start" style="background-color: red;">178</td>
<td class="py-0 text-center border-start" style="background-color: red;">204</td>
<td class="py-0 text-center border-start" style="background-color: red;">141</td>
<td class="py-0 text-center border-start" style="background-color: red;">288</td>
</tr>
<tr>
<td class="py-0">Etain</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><15/30<</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0.28</td>
</tr>
<tr>
<td class="py-0">Fer</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><45/95<</td>
<td class="py-0 text-center border-start">12.6</td>
<td class="py-0 text-center border-start">13</td>
<td class="py-0 text-center border-start">5.43</td>
<td class="py-0 text-center border-start">10.2</td>
</tr>
<tr>
<td class="py-0">Nickel</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><5/15<</td>
<td class="py-0 text-center border-start">1.2</td>
<td class="py-0 text-center border-start">1</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
</tr>
<tr>
<td class="py-0">Chrome</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><25/80<</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">1</td>
<td class="py-0 text-center border-start">0.80</td>
<td class="py-0 text-center border-start">0.67</td>
</tr>
<tr>
<td class="py-0">Silicium</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><20/40<</td>
<td class="py-0 text-center border-start">3.58</td>
<td class="py-0 text-center border-start">3</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">2.38</td>
</tr>
<tr>
<td class="py-0">Titan</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><10</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
</tr>
<tr>
<td class="py-0">Vadanium</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><5</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
</tr>
<tr>
<td class="py-0">Argent</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><10</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
</tr>
<tr>
<td class="py-0">Cadmium</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start"><10</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">0</td>
</tr>
<tr>
<td class="py-0">Sodium</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start">-</td>
<td class="py-0 text-center border-start" style="background-color: orange;"></td>
<td class="py-0 text-center border-start" style="background-color: orange;"></td>
<td class="py-0 text-center border-start" style="background-color: orange;"></td>
<td class="py-0 text-center border-start" style="background-color: red;"></td>
</tr>
<tr>
<td class="py-0">Calcium</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start">-</td>
<td class="py-0 text-center border-start">3577</td>
<td class="py-0 text-center border-start">2895</td>
<td class="py-0 text-center border-start">1158</td>
<td class="py-0 text-center border-start">3220</td>
</tr>
<tr>
<td class="py-0">Magnesium</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start">-</td>
<td class="py-0 text-center border-start">16.7</td>
<td class="py-0 text-center border-start">18</td>
<td class="py-0 text-center border-start">34.4</td>
<td class="py-0 text-center border-start">162</td>
</tr>
<tr>
<td class="py-0">Phosphore</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start">-</td>
<td class="py-0 text-center border-start">756</td>
<td class="py-0 text-center border-start">713</td>
<td class="py-0 text-center border-start">712</td>
<td class="py-0 text-center border-start">727</td>
</tr>
<tr>
<td class="py-0">Zinc</td>
<td class="py-0 text-center">ASTM D5185</td>
<td class="py-0 text-center">ppm</td>
<td class="py-0 text-center border-start">-</td>
<td class="py-0 text-center border-start">808</td>
<td class="py-0 text-center border-start">588</td>
<td class="py-0 text-center border-start">596</td>
<td class="py-0 text-center border-start">753</td>
</tr>
<tr style="background-color: #b4afaf;">
<th class="py-0" colspan="10">Oil Condition / Particule count</th>
</tr>
<tr>
<td class="py-0">Viscosité à 100°</td>
<td class="py-0 text-center">ASTM D445</td>
<td class="py-0 text-center">mm2/s</td>
<td class="py-0 text-center border-start"><12,5 / 21<</td>
<td class="py-0 text-center border-start" style="background-color: orange;">18.2</td>
<td class="py-0 text-center border-start" style="background-color: orange;">18.1</td>
<td class="py-0 text-center border-start" style="background-color: orange;">17.6</td>
<td class="py-0 text-center border-start" style="background-color: red;">20.3</td>
</tr>
<tr>
<td class="py-0">TBN</td>
<td class="py-0 text-center">ASTM D2896</td>
<td class="py-0 text-center">mgKOH/g</td>
<td class="py-0 text-center border-start"></td>
<td class="py-0 text-center border-start">5.69</td>
<td class="py-0 text-center border-start">3.21</td>
<td class="py-0 text-center border-start">4.47</td>
<td class="py-0 text-center border-start">9</td>
</tr>
<tr>
<td class="py-0">Point éclair</td>
<td class="py-0 text-center">ASTM D3828</td>
<td class="py-0 text-center">°C</td>
<td class="py-0 text-center border-start">>200</td>
<td class="py-0 text-center border-start">220</td>
<td class="py-0 text-center border-start" style="background-color: orange;">182</td>
<td class="py-0 text-center border-start">218</td>
<td class="py-0 text-center border-start">220</td>
</tr>
<tr>
<td class="py-0">Suie</td>
<td class="py-0 text-center">ASTM D2412</td>
<td class="py-0 text-center">ufm</td>
<td class="py-0 text-center border-start"><60</td>
<td class="py-0 text-center border-start">5.77</td>
<td class="py-0 text-center border-start">15.1</td>
<td class="py-0 text-center border-start">0</td>
<td class="py-0 text-center border-start">16.4</td>
</tr>
<tr>
<td class="py-0">Eau</td>
<td class="py-0 text-center">Crackle Test</td>
<td class="py-0 text-center">%</td>
<td class="py-0 text-center border-start"></td>
<td class="py-0 text-center border-start">N</td>
<td class="py-0 text-center border-start">N</td>
<td class="py-0 text-center border-start">N</td>
<td class="py-0 text-center border-start">N</td>
</tr>
<tr>
<td class="py-0">Dilution</td>
<td class="py-0 text-center"></td>
<td class="py-0 text-center">-</td>
<td class="py-0 text-center border-start"></td>
<td class="py-0 text-center border-start">N</td>
<td class="py-0 text-center border-start">N</td>
<td class="py-0 text-center border-start">N</td>
<td class="py-0 text-center border-start">N</td>
</tr>
</table>
</div>
<div class="container-fluid">
<div class="row gy-4 align-items-center mt-2">
<div class="col-12 col-md-6">
<div class="position-relative" style="height: 10rem; background-image: linear-gradient(to right, #16be31, #65b70c, #8baf00, #a9a600, #c09c00, #ca9100, #d48600, #dd7900, #de6900, #df5600, #df4000, #df2005);">
<span class="fs-1 fw-bolder position-absolute top-50 end-0 translate-middle-y">X</span>
</div>
</div>
<div class="col-12 col-md-6">
<div>
<p style="opacity: 0.4;">
<strong>Commentaires :</strong> Le taux de Cuivre reste très élevé. Le Sodium toujours aussi élevé : à suivre.
Vérifier ce compartiment et réparer si nécessaire. Voir les causes de présence de Sodium dans l’huile. Changer l’huile et le filtre. Refaire u prélèvement pour contrôle.
</p><br><br>
<p style="opacity: 0.4;">
Diagnostic établi sous réserve de représentativité de l’échantillon et des informations fournies.
</p>
</div>
</div>
</div>
</div>
<!-- <div class="container-fluid mt-3">
<div class="row">
<div class="col-7 col-md-6" style="width: 30rem; height: 120px; background-image: linear-gradient(to right, #16be31, #65b70c, #8baf00, #a9a600, #c09c00, #ca9100, #d48600, #dd7900, #de6900, #df5600, #df4000, #df2005);">
<h1 style="font-size: 22px; margin-left: 27rem; margin-top: 35px;">X</h1>
</div>
<div class="col-5 col-md-6" style="margin-top: 10px; padding-left: 15px;">
<p style="font-size: 20px; opacity: 0.4;"><strong>Commentaires :</strong> Le taux de Cuivre reste très élevé. Le Sodium toujours aussi élevé : à suivre.
Vérifier ce compartiment et réparer si nécessaire. Voir les causes de présence de Sodium dans l’huile. Changer l’huile et le filtre. Refaire u prélèvement pour contrôle.
</p>
<p style="font-size: 20px; opacity: 0.4;">Diagnostic établi sous réserve de représentativité de l’échantillon et des informations fournies.</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</body>
</html>