-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
966 lines (962 loc) · 107 KB
/
index.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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dashboard</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/adaptive.css">
</head>
<body>
<div class="main-layout">
<aside class="sidebar">
<div class="sticky-block">
<a href="#" class="logo">
<svg width="88" height="22" viewBox="0 0 88 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.56481 16C2.14881 16 1.82881 15.888 1.60481 15.664C1.38081 15.44 1.26881 15.12 1.26881 14.704V6.016C1.26881 5.6 1.38081 5.28 1.60481 5.056C1.82881 4.832 2.14881 4.72 2.56481 4.72H6.43681C7.23681 4.72 7.91948 4.83733 8.48481 5.072C9.05015 5.30667 9.47681 5.64267 9.76481 6.08C10.0635 6.51733 10.2128 7.04 10.2128 7.648C10.2128 8.32 10.0208 8.89067 9.63681 9.36C9.25281 9.82933 8.72481 10.144 8.05281 10.304V10.048C8.83148 10.1867 9.43415 10.496 9.86081 10.976C10.2981 11.4453 10.5168 12.0587 10.5168 12.816C10.5168 13.8187 10.1701 14.6027 9.47681 15.168C8.78348 15.7227 7.82881 16 6.61281 16H2.56481ZM3.63681 14.16H6.27681C6.91681 14.16 7.38615 14.0373 7.68481 13.792C7.98348 13.536 8.13281 13.1627 8.13281 12.672C8.13281 12.1813 7.98348 11.8133 7.68481 11.568C7.38615 11.3227 6.91681 11.2 6.27681 11.2H3.63681V14.16ZM3.63681 9.36H6.00481C6.62348 9.36 7.08215 9.24267 7.38081 9.008C7.67948 8.77333 7.82881 8.42133 7.82881 7.952C7.82881 7.49333 7.67948 7.14667 7.38081 6.912C7.08215 6.67733 6.62348 6.56 6.00481 6.56H3.63681V9.36ZM13.4338 16.144C13.0285 16.144 12.7191 16.0373 12.5058 15.824C12.2925 15.6107 12.1858 15.3067 12.1858 14.912V9.232C12.1858 8.83733 12.2871 8.53867 12.4898 8.336C12.7031 8.12267 12.9965 8.016 13.3698 8.016C13.7538 8.016 14.0471 8.12267 14.2498 8.336C14.4525 8.53867 14.5538 8.83733 14.5538 9.232V10.064H14.3938C14.5218 9.424 14.8045 8.928 15.2418 8.576C15.6791 8.224 16.2445 8.02667 16.9378 7.984C17.2045 7.96267 17.4071 8.032 17.5458 8.192C17.6951 8.34133 17.7751 8.592 17.7858 8.944C17.8071 9.27467 17.7378 9.536 17.5778 9.728C17.4285 9.92 17.1725 10.0373 16.8098 10.08L16.4418 10.112C15.8338 10.1653 15.3805 10.3413 15.0818 10.64C14.7938 10.9387 14.6498 11.3707 14.6498 11.936V14.912C14.6498 15.3067 14.5431 15.6107 14.3298 15.824C14.1271 16.0373 13.8285 16.144 13.4338 16.144ZM19.9956 16.128C19.6009 16.128 19.2969 16.016 19.0836 15.792C18.8809 15.5573 18.7796 15.232 18.7796 14.816V9.344C18.7796 8.91733 18.8809 8.592 19.0836 8.368C19.2969 8.13333 19.6009 8.016 19.9956 8.016C20.3796 8.016 20.6729 8.13333 20.8756 8.368C21.0889 8.592 21.1956 8.91733 21.1956 9.344V14.816C21.1956 15.232 21.0942 15.5573 20.8916 15.792C20.6889 16.016 20.3902 16.128 19.9956 16.128ZM19.9956 6.704C19.5476 6.704 19.2009 6.60267 18.9556 6.4C18.7209 6.18667 18.6036 5.888 18.6036 5.504C18.6036 5.10933 18.7209 4.81067 18.9556 4.608C19.2009 4.39467 19.5476 4.288 19.9956 4.288C20.4436 4.288 20.7849 4.39467 21.0196 4.608C21.2542 4.81067 21.3716 5.10933 21.3716 5.504C21.3716 5.888 21.2542 6.18667 21.0196 6.4C20.7849 6.60267 20.4436 6.704 19.9956 6.704ZM26.8368 19.056C26.2608 19.056 25.7061 19.008 25.1728 18.912C24.6501 18.816 24.1861 18.672 23.7808 18.48C23.5355 18.3733 23.3595 18.2347 23.2528 18.064C23.1568 17.8933 23.1141 17.712 23.1248 17.52C23.1461 17.328 23.2101 17.1573 23.3168 17.008C23.4341 16.8587 23.5781 16.752 23.7488 16.688C23.9195 16.6347 24.1008 16.6507 24.2928 16.736C24.7621 16.9493 25.1941 17.088 25.5888 17.152C25.9941 17.216 26.3408 17.248 26.6288 17.248C27.3115 17.248 27.8235 17.0933 28.1648 16.784C28.5061 16.4747 28.6768 16 28.6768 15.36V14.144H28.8208C28.6608 14.6347 28.3301 15.0347 27.8288 15.344C27.3275 15.6533 26.7728 15.808 26.1648 15.808C25.4608 15.808 24.8475 15.648 24.3248 15.328C23.8021 14.9973 23.3968 14.5387 23.1088 13.952C22.8208 13.3547 22.6768 12.6667 22.6768 11.888C22.6768 11.3013 22.7568 10.768 22.9168 10.288C23.0875 9.808 23.3221 9.39733 23.6208 9.056C23.9301 8.71467 24.2981 8.45333 24.7248 8.272C25.1621 8.08 25.6421 7.984 26.1648 7.984C26.7941 7.984 27.3488 8.13867 27.8288 8.448C28.3195 8.74667 28.6448 9.14133 28.8048 9.632L28.6448 10.144V9.232C28.6448 8.83733 28.7461 8.53867 28.9488 8.336C29.1621 8.12267 29.4608 8.016 29.8448 8.016C30.2288 8.016 30.5221 8.12267 30.7248 8.336C30.9275 8.53867 31.0288 8.83733 31.0288 9.232V15.088C31.0288 16.4 30.6661 17.3867 29.9408 18.048C29.2261 18.72 28.1915 19.056 26.8368 19.056ZM26.8848 14C27.2475 14 27.5568 13.9147 27.8128 13.744C28.0795 13.5733 28.2875 13.3333 28.4368 13.024C28.5861 12.704 28.6608 12.3253 28.6608 11.888C28.6608 11.2267 28.4955 10.7147 28.1648 10.352C27.8448 9.97867 27.4181 9.792 26.8848 9.792C26.5221 9.792 26.2075 9.87733 25.9408 10.048C25.6741 10.208 25.4661 10.448 25.3168 10.768C25.1781 11.0773 25.1088 11.4507 25.1088 11.888C25.1088 12.5493 25.2688 13.0667 25.5888 13.44C25.9088 13.8133 26.3408 14 26.8848 14ZM34.1206 16.144C33.7259 16.144 33.4219 16.0373 33.2086 15.824C33.0059 15.6107 32.9046 15.3067 32.9046 14.912V5.808C32.9046 5.40267 33.0059 5.09867 33.2086 4.896C33.4219 4.68267 33.7259 4.576 34.1206 4.576C34.5046 4.576 34.7979 4.68267 35.0006 4.896C35.2139 5.09867 35.3206 5.40267 35.3206 5.808V9.616H35.0966C35.3419 9.09333 35.7046 8.69333 36.1846 8.416C36.6752 8.128 37.2299 7.984 37.8486 7.984C38.4779 7.984 38.9952 8.10667 39.4006 8.352C39.8059 8.58667 40.1099 8.94933 40.3126 9.44C40.5152 9.92 40.6166 10.5333 40.6166 11.28V14.912C40.6166 15.3067 40.5099 15.6107 40.2966 15.824C40.0939 16.0373 39.7952 16.144 39.4006 16.144C39.0166 16.144 38.7179 16.0373 38.5046 15.824C38.3019 15.6107 38.2006 15.3067 38.2006 14.912V11.392C38.2006 10.848 38.0992 10.4587 37.8966 10.224C37.7046 9.97867 37.4059 9.856 37.0006 9.856C36.4886 9.856 36.0779 10.016 35.7686 10.336C35.4699 10.656 35.3206 11.0827 35.3206 11.616V14.912C35.3206 15.7333 34.9206 16.144 34.1206 16.144ZM46.2762 16.176C45.5402 16.176 44.9215 16.0533 44.4202 15.808C43.9295 15.5627 43.5615 15.2053 43.3162 14.736C43.0815 14.2667 42.9642 13.6747 42.9642 12.96V9.952H42.2922C41.9935 9.952 41.7589 9.872 41.5882 9.712C41.4282 9.552 41.3482 9.33333 41.3482 9.056C41.3482 8.75733 41.4282 8.53333 41.5882 8.384C41.7589 8.224 41.9935 8.144 42.2922 8.144H42.9642V6.928C42.9642 6.52267 43.0709 6.21867 43.2842 6.016C43.4975 5.80267 43.7962 5.696 44.1802 5.696C44.5749 5.696 44.8735 5.80267 45.0762 6.016C45.2789 6.21867 45.3802 6.52267 45.3802 6.928V8.144H46.9002C47.1989 8.144 47.4282 8.224 47.5882 8.384C47.7482 8.53333 47.8282 8.75733 47.8282 9.056C47.8282 9.33333 47.7482 9.552 47.5882 9.712C47.4282 9.872 47.1989 9.952 46.9002 9.952H45.3802V12.864C45.3802 13.312 45.4815 13.648 45.6842 13.872C45.8975 14.096 46.2335 14.208 46.6922 14.208C46.8522 14.208 47.0015 14.192 47.1402 14.16C47.2789 14.128 47.4069 14.1067 47.5242 14.096C47.6735 14.0853 47.7962 14.1333 47.8922 14.24C47.9882 14.336 48.0362 14.5547 48.0362 14.896C48.0362 15.152 47.9935 15.376 47.9082 15.568C47.8229 15.76 47.6735 15.8987 47.4602 15.984C47.3215 16.0373 47.1295 16.08 46.8842 16.112C46.6495 16.1547 46.4469 16.176 46.2762 16.176Z"
fill="#467DF2"/>
<path d="M57.7417 16.144C57.4004 16.144 57.123 16.064 56.9097 15.904C56.6964 15.7333 56.5257 15.4773 56.3977 15.136L53.1657 6.048C53.027 5.64267 53.0537 5.296 53.2457 5.008C53.4484 4.72 53.795 4.576 54.2857 4.576C54.627 4.576 54.8884 4.656 55.0697 4.816C55.2617 4.976 55.4164 5.22667 55.5337 5.568L58.1737 13.424H57.4857L60.2697 5.584C60.3977 5.24267 60.5524 4.992 60.7337 4.832C60.9257 4.66133 61.1764 4.576 61.4857 4.576C61.7844 4.576 62.0244 4.66133 62.2057 4.832C62.387 4.992 62.5417 5.248 62.6697 5.6L65.3257 13.424H64.7337L67.4217 5.568C67.5284 5.23733 67.6777 4.992 67.8697 4.832C68.0617 4.66133 68.323 4.576 68.6537 4.576C69.0697 4.576 69.3737 4.72 69.5657 5.008C69.7577 5.296 69.779 5.64267 69.6297 6.048L66.3657 15.152C66.2484 15.4827 66.0884 15.7333 65.8857 15.904C65.683 16.064 65.4057 16.144 65.0537 16.144C64.7124 16.144 64.4404 16.064 64.2377 15.904C64.035 15.7333 63.8697 15.4773 63.7417 15.136L61.2137 7.984H61.5977L59.0377 15.152C58.9097 15.4827 58.7444 15.7333 58.5417 15.904C58.3497 16.064 58.083 16.144 57.7417 16.144ZM74.3283 16.176C73.4003 16.176 72.6003 16.0107 71.9283 15.68C71.267 15.3387 70.755 14.864 70.3923 14.256C70.0403 13.6373 69.8643 12.912 69.8643 12.08C69.8643 11.2693 70.035 10.56 70.3763 9.952C70.7176 9.33333 71.1923 8.85333 71.8003 8.512C72.419 8.16 73.1176 7.984 73.8963 7.984C74.4616 7.984 74.9736 8.08 75.4323 8.272C75.891 8.45333 76.2856 8.72 76.6163 9.072C76.947 9.41333 77.1976 9.83467 77.3683 10.336C77.539 10.8267 77.6243 11.376 77.6243 11.984C77.6243 12.1867 77.5603 12.3413 77.4323 12.448C77.3043 12.544 77.1176 12.592 76.8723 12.592H71.8483V11.344H75.8803L75.6243 11.568C75.6243 11.1307 75.5603 10.768 75.4323 10.48C75.3043 10.1813 75.1176 9.95733 74.8723 9.808C74.6376 9.65867 74.3443 9.584 73.9923 9.584C73.5976 9.584 73.2616 9.67467 72.9843 9.856C72.707 10.0373 72.4936 10.2987 72.3443 10.64C72.195 10.9813 72.1203 11.392 72.1203 11.872V12C72.1203 12.8107 72.307 13.408 72.6803 13.792C73.0643 14.176 73.6296 14.368 74.3763 14.368C74.6323 14.368 74.9256 14.336 75.2563 14.272C75.587 14.208 75.8963 14.1067 76.1843 13.968C76.4296 13.8507 76.6483 13.8133 76.8403 13.856C77.0323 13.888 77.1816 13.9733 77.2883 14.112C77.395 14.2507 77.4536 14.4107 77.4643 14.592C77.4856 14.7733 77.4483 14.9547 77.3523 15.136C77.2563 15.3067 77.0963 15.4507 76.8723 15.568C76.5096 15.7707 76.099 15.92 75.6403 16.016C75.1923 16.1227 74.755 16.176 74.3283 16.176ZM83.8776 16.176C83.2482 16.176 82.6882 16.0213 82.1976 15.712C81.7176 15.392 81.3976 14.9707 81.2376 14.448L81.4136 13.92V14.912C81.4136 15.3067 81.3122 15.6107 81.1096 15.824C80.9069 16.0373 80.6136 16.144 80.2296 16.144C79.8456 16.144 79.5469 16.0373 79.3336 15.824C79.1309 15.6107 79.0296 15.3067 79.0296 14.912V5.808C79.0296 5.40267 79.1309 5.09867 79.3336 4.896C79.5469 4.68267 79.8509 4.576 80.2456 4.576C80.6296 4.576 80.9229 4.68267 81.1256 4.896C81.3389 5.09867 81.4456 5.40267 81.4456 5.808V9.6H81.2536C81.4242 9.12 81.7496 8.73067 82.2296 8.432C82.7096 8.13333 83.2589 7.984 83.8776 7.984C84.5709 7.984 85.1736 8.14933 85.6856 8.48C86.1976 8.81067 86.5976 9.28 86.8856 9.888C87.1736 10.496 87.3176 11.2213 87.3176 12.064C87.3176 12.9067 87.1736 13.6373 86.8856 14.256C86.5976 14.8747 86.1922 15.3493 85.6696 15.68C85.1576 16.0107 84.5602 16.176 83.8776 16.176ZM83.1576 14.368C83.4989 14.368 83.7976 14.2827 84.0536 14.112C84.3202 13.9413 84.5229 13.6907 84.6616 13.36C84.8109 13.0187 84.8856 12.5867 84.8856 12.064C84.8856 11.2853 84.7256 10.7147 84.4056 10.352C84.0856 9.97867 83.6696 9.792 83.1576 9.792C82.8162 9.792 82.5122 9.872 82.2456 10.032C81.9896 10.192 81.7869 10.4427 81.6376 10.784C81.4882 11.1147 81.4136 11.5413 81.4136 12.064C81.4136 12.8427 81.5736 13.424 81.8936 13.808C82.2136 14.1813 82.6349 14.368 83.1576 14.368Z"
fill="#4F4E4F"/>
</svg>
</a>
<nav class="navigation">
<ul>
<li class="navigation-item dashboard-active">
<a href="#">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M15.84 4.21149C7.56 1.57149 0 7.69149 0 15.6115C0 16.6915 0.12 18.7315 0.48 19.9315C0.48 20.1715 0.72 20.4115 0.96 20.4115H22.92C23.16 20.4115 23.4 20.1715 23.52 19.9315C23.76 18.7315 24 16.6915 24 15.6115C24 10.4515 20.76 5.77149 15.84 4.21149ZM12 6.01149C12.72 6.01149 13.2 6.49149 13.2 7.21149C13.2 7.93149 12.72 8.41149 12 8.41149C11.28 8.41149 10.8 7.93149 10.8 7.21149C10.8 6.49149 11.28 6.01149 12 6.01149ZM3.6 16.8115C2.88 16.8115 2.4 16.3315 2.4 15.6115C2.4 14.8915 2.88 14.4115 3.6 14.4115C4.32 14.4115 4.8 14.8915 4.8 15.6115C4.8 16.3315 4.32 16.8115 3.6 16.8115ZM6.96 10.5715C6.48 11.0515 5.76 11.0515 5.28 10.5715C4.8 10.0915 4.8 9.25149 5.16 8.77149C5.64 8.29149 6.36 8.29149 6.84 8.77149C7.32 9.25149 7.32 10.0915 6.96 10.5715ZM12 18.0115C10.68 18.0115 9.48 16.8115 9.84 15.6115C10.2 14.4115 12 10.8115 12 10.8115C12 10.8115 13.8 14.4115 14.16 15.6115C14.52 16.8115 13.32 18.0115 12 18.0115ZM18.84 10.5715C18.36 11.0515 17.64 11.0515 17.16 10.5715C16.68 10.0915 16.68 9.37149 17.16 8.89149C17.64 8.41149 18.36 8.41149 18.84 8.89149C19.2 9.25149 19.2 10.0915 18.84 10.5715ZM20.4 16.8115C19.68 16.8115 19.2 16.3315 19.2 15.6115C19.2 14.8915 19.68 14.4115 20.4 14.4115C21.12 14.4115 21.6 14.8915 21.6 15.6115C21.6 16.3315 21.12 16.8115 20.4 16.8115Z"
fill="white"/>
</svg>
<span>Dashboard</span>
</a>
</li>
<li class="navigation-item">
<a href="#">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_148)">
<path d="M7.93548 12.7031H16.3729C16.7617 12.7031 17.0761 12.3885 17.0761 12V3.51561C17.0761 3.12706 16.7617 2.81249 16.3729 2.81249H14.2636V2.10937C14.2636 0.946285 13.3173 0 12.1542 0C10.9911 0 10.0448 0.946285 10.0448 2.10937V2.81249H7.93548C7.54693 2.81249 7.23236 3.12706 7.23236 3.51561V12C7.23236 12.3885 7.54693 12.7031 7.93548 12.7031ZM11.4511 2.10937C11.4511 1.72137 11.7669 1.40624 12.1542 1.40624C12.5415 1.40624 12.8573 1.72137 12.8573 2.10937V2.81249H11.4511V2.10937Z"
fill="#858796"/>
<path d="M22.3976 11.636C22.2713 11.4259 22.0418 11.2968 21.7961 11.2968C20.5572 11.2968 19.4207 11.9844 18.8456 13.0817L16.6888 17.1979C16.3222 17.8956 15.6066 18.3281 14.8198 18.3281H10.0448C9.65628 18.3281 9.3417 18.0135 9.3417 17.6249C9.3417 17.2364 9.65628 16.9218 10.0448 16.9218H14.8196C15.082 16.9218 15.321 16.7777 15.4433 16.5448C15.5651 16.3123 15.9329 15.6101 16.2491 15.0065C16.3488 14.8165 16.3418 14.5882 16.2307 14.4045C16.1193 14.221 15.9203 14.1093 15.7057 14.1093H8.39688C7.45756 14.1093 6.57591 14.4754 5.91124 15.1393L1.75293 19.2976C1.47827 19.5723 1.47827 20.0172 1.75293 20.2919L5.26854 23.7939C5.40587 23.9313 5.58586 24.0001 5.76567 24.0001C5.94548 24.0001 6.12547 23.9313 6.2628 23.7939L8.92972 21.1406H14.8196C16.6558 21.1406 18.327 20.1298 19.1799 18.5031L22.4181 12.3268C22.5335 12.1091 22.5252 11.8469 22.3976 11.636Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_148">
<rect width="24" height="24" fill="858796"/>
</clipPath>
</defs>
</svg>
<span>Products</span>
</a>
</li>
<li class="navigation-item">
<a href="#">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M20.5355 12.8119H18.6794C18.8686 13.3299 18.972 13.8889 18.972 14.4715V21.4863C18.972 21.7292 18.9297 21.9624 18.8528 22.1792H21.9213C23.0675 22.1792 24 21.2467 24 20.1005V16.2764C24 14.3661 22.4458 12.8119 20.5355 12.8119Z"
fill="#858796"/>
<path d="M5.02806 14.4715C5.02806 13.8889 5.13142 13.3299 5.3206 12.812H3.46454C1.55419 12.812 0 14.3661 0 16.2765V20.1006C0 21.2468 0.932486 22.1793 2.07872 22.1793H5.14726C5.07034 21.9624 5.02806 21.7293 5.02806 21.4864V14.4715Z"
fill="#858796"/>
<path d="M14.1216 11.007H9.87841C7.96807 11.007 6.41388 12.5612 6.41388 14.4715V21.4864C6.41388 21.869 6.7241 22.1793 7.10679 22.1793H16.8933C17.276 22.1793 17.5862 21.8691 17.5862 21.4864V14.4715C17.5862 12.5612 16.032 11.007 14.1216 11.007Z"
fill="#858796"/>
<path d="M12 1.82063C9.70259 1.82063 7.8335 3.68973 7.8335 5.98722C7.8335 7.54558 8.69361 8.9066 9.96382 9.62116C10.5663 9.96007 11.2609 10.1538 12 10.1538C12.7392 10.1538 13.4337 9.96007 14.0362 9.62116C15.3065 8.9066 16.1666 7.54553 16.1666 5.98722C16.1666 3.68978 14.2975 1.82063 12 1.82063Z"
fill="#858796"/>
<path d="M4.68365 5.70419C2.96544 5.70419 1.56763 7.10201 1.56763 8.82022C1.56763 10.5384 2.96544 11.9362 4.68365 11.9362C5.11949 11.9362 5.53453 11.846 5.91154 11.6837C6.56339 11.403 7.10086 10.9063 7.43343 10.284C7.66687 9.84725 7.79967 9.34901 7.79967 8.82022C7.79967 7.10206 6.40185 5.70419 4.68365 5.70419Z"
fill="#858796"/>
<path d="M19.3164 5.70419C17.5982 5.70419 16.2004 7.10201 16.2004 8.82022C16.2004 9.34906 16.3332 9.8473 16.5666 10.284C16.8992 10.9063 17.4367 11.4031 18.0885 11.6837C18.4655 11.846 18.8806 11.9362 19.3164 11.9362C21.0346 11.9362 22.4324 10.5384 22.4324 8.82022C22.4324 7.10201 21.0346 5.70419 19.3164 5.70419Z"
fill="#858796"/>
</svg>
<span>Work Team</span>
</a>
</li>
<li class="navigation-item statistic-margin-left">
<a href="#">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_5_36)">
<path d="M2.96875 9.375C3.44147 9.375 3.86932 9.18533 4.18549 8.88077L5.91995 9.74792C5.91125 9.81857 5.89844 9.888 5.89844 9.96094C5.89844 10.9302 6.68701 11.7188 7.65625 11.7188C8.62549 11.7188 9.41406 10.9302 9.41406 9.96094C9.41406 9.6904 9.34753 9.4371 9.23782 9.20792L11.5907 6.85501C11.8199 6.96472 12.0732 7.03125 12.3438 7.03125C13.313 7.03125 14.1016 6.24268 14.1016 5.27344C14.1016 5.09094 14.0657 4.91837 14.0138 4.75281L16.0582 3.21991C16.3371 3.40622 16.6714 3.51562 17.0312 3.51562C18.0005 3.51562 18.7891 2.72705 18.7891 1.75781C18.7891 0.788574 18.0005 0 17.0312 0C16.062 0 15.2734 0.788574 15.2734 1.75781C15.2734 1.94031 15.3093 2.11288 15.3612 2.27844L13.3168 3.81134C13.0379 3.62503 12.7036 3.51562 12.3438 3.51562C11.3745 3.51562 10.5859 4.3042 10.5859 5.27344C10.5859 5.54398 10.6525 5.79727 10.7622 6.02646L8.40927 8.37936C8.18008 8.26965 7.92679 8.20312 7.65625 8.20312C7.18353 8.20312 6.75568 8.39279 6.43951 8.69736L4.70505 7.8302C4.71375 7.75955 4.72656 7.69012 4.72656 7.61719C4.72656 6.64795 3.93799 5.85938 2.96875 5.85938C1.99951 5.85938 1.21094 6.64795 1.21094 7.61719C1.21094 8.58643 1.99951 9.375 2.96875 9.375Z"
fill="#858796"/>
<path d="M19.4141 18.8281H18.7891V6.44531C18.7891 6.12152 18.5269 5.85938 18.2031 5.85938H15.8594C15.5356 5.85938 15.2734 6.12152 15.2734 6.44531V18.8281H14.1016V9.96094C14.1016 9.63715 13.8394 9.375 13.5156 9.375H11.1719C10.8481 9.375 10.5859 9.63715 10.5859 9.96094V18.8281H9.41406V14.6484C9.41406 14.3246 9.15192 14.0625 8.82812 14.0625H6.48438C6.16058 14.0625 5.89844 14.3246 5.89844 14.6484V18.8281H4.72656V12.3047C4.72656 11.9809 4.46442 11.7188 4.14062 11.7188H1.79688C1.47308 11.7188 1.21094 11.9809 1.21094 12.3047V18.8281H0.585938C0.262146 18.8281 0 19.0903 0 19.4141C0 19.7379 0.262146 20 0.585938 20H19.4141C19.7379 20 20 19.7379 20 19.4141C20 19.0903 19.7379 18.8281 19.4141 18.8281Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_5_36">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
<span>Statistic</span>
</a>
</li>
</ul>
</nav>
</div>
<div class="feedback-block">
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M34.4236 36.3195V39.6472C34.4236 41.8174 32.6646 43.5764 30.4944 43.5764H17.5916C15.4215 43.5764 13.6625 41.8174 13.6625 39.6472V11.0521C13.6625 8.88195 15.4215 7.12292 17.5916 7.12292H30.4941C32.6642 7.12292 34.4232 8.88195 34.4232 11.0521V18.7014"
stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.6625 11.1111V11.0521C13.6625 8.88195 15.4215 7.12292 17.5916 7.12292H30.4941C32.6642 7.12292 34.4232 8.88195 34.4232 11.0521V11.1111H13.6625Z"
stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path opacity="0.3"
d="M13.6049 11.1111V11.0521C13.6049 8.88195 15.3639 7.12292 17.534 7.12292H30.4365C32.6066 7.12292 34.3656 8.88195 34.3656 11.0521V11.1111H13.6049Z"
fill="#528AC8"/>
<path d="M34.4236 39.5886V39.6476C34.4236 41.8177 32.6646 43.5768 30.4944 43.5768H17.5916C15.4215 43.5768 13.6625 41.8177 13.6625 39.6476V39.5886H34.4236Z"
stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path opacity="0.3"
d="M34.4236 39.5886V39.6476C34.4236 41.8177 32.6646 43.5768 30.4944 43.5768H17.5916C15.4215 43.5768 13.6625 41.8177 13.6625 39.6476V39.5886H34.4236Z"
fill="#528AC8"/>
<path d="M22.2025 41.7965H25.8837" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M22.2025 9.11703H25.8837" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M3.30835 17.5434V21.408" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M5.47118 19.4757H1.14514" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M8.05347 27.0191V29.609" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M9.3486 28.3139H6.75867" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M47.0639 25.4792L48.4319 24.8858L47.0333 21.6611L45.4597 22.3434C44.8778 21.574 44.2541 21.0007 43.576 20.5476L44.1802 18.8688L40.8583 17.5271L40.2288 19.1115C39.2555 18.9511 38.1993 18.9604 37.2538 19.1358L36.6469 17.7368L33.6371 19.042L34.2441 20.441C33.0399 21.1979 32.5812 21.8243 32.033 22.6448L30.3555 22.0399L29.0146 25.3615L30.6666 26.1462C30.534 26.9507 30.509 27.8059 30.6732 28.7563L28.975 29.4927L30.3736 32.7174L31.8666 32.0698C32.4982 33.0729 33.2882 33.808 34.2472 34.449L33.5854 35.9948L36.8785 37.2698L37.6462 35.5861C38.6194 35.7465 39.3837 35.8243 40.7594 35.4625L41.4694 37.0997L44.4792 35.7945L43.7691 34.1573C44.5434 33.5868 45.2795 32.8399 45.8278 32.0198L47.4288 32.6577L48.7316 29.3528L47.1757 28.842C47.3635 27.7038 47.3649 26.6257 47.0639 25.4792ZM40.8812 32.2097C38.208 33.3691 35.1014 32.142 33.942 29.4688C32.7826 26.7955 34.0097 23.6889 36.683 22.5295C39.3562 21.3702 42.4628 22.5972 43.6222 25.2705C44.7816 27.9434 43.5545 31.0504 40.8812 32.2097Z"
stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path opacity="0.3"
d="M47.1024 25.508L48.4705 24.9146L47.0719 21.6899L45.4983 22.3722C44.9163 21.6028 44.2927 21.0295 43.6146 20.5764L44.2188 18.8976L40.8969 17.5559L40.2674 19.1403C39.2941 18.9799 38.2379 18.9892 37.2924 19.1646L36.6854 17.7656L33.6757 19.0708L34.2826 20.4698C33.0785 21.2267 32.6198 21.8531 32.0715 22.6736L30.3941 22.0688L29.0531 25.3903L30.7052 26.175C30.5726 26.9795 30.5476 27.8347 30.7118 28.7851L29.0135 29.5215L30.4122 32.7462L31.9052 32.0986C32.5368 33.1017 33.3267 33.8368 34.2858 34.4778L33.624 36.0236L36.917 37.2986L37.6847 35.6149C38.658 35.7754 39.4222 35.8531 40.7979 35.4913L41.508 37.1285L44.5177 35.8233L43.8076 34.1861C44.582 33.6156 45.3181 32.8688 45.8663 32.0486L47.4674 32.6865L48.7701 29.3816L47.2142 28.8708C47.4017 27.7326 47.4031 26.6545 47.1024 25.508ZM40.8813 32.2097C38.208 33.3691 35.1014 32.142 33.942 29.4688C32.7826 26.7955 34.0097 23.6889 36.683 22.5295C39.3563 21.3701 42.4629 22.5972 43.6222 25.2705C44.7816 27.9434 43.5545 31.0504 40.8813 32.2097Z"
fill="#528AC8"/>
<path d="M16.4445 15.4705H28.9445" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M16.4445 19.2899H25.125" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M43.5573 9.88092V13.7455" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
<path d="M45.7201 11.8132H41.3941" stroke="#3D6CB4" stroke-miterlimit="10" stroke-linecap="round"
stroke-linejoin="round"/>
</svg>
<div class="feedback-block-text">
To get user feedback, some developers make new apps or features available before their official
release.
You can try these apps or features when you join early access or beta programs.
<a class="feedback-block-text-link" href="#">
Check out here
</a>
</div>
</div>
</aside>
<div class="main-content">
<div class="header">
<div class="header-menu">
<div class="header-menu-burger-menu">
<a href="#">
<svg width="38" height="22" viewBox="0 0 38 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="38" height="2" rx="1" fill="#4F4E4F"/>
<rect y="10" width="38" height="2" rx="1" fill="#4F4E4F"/>
<rect y="20" width="26" height="2" rx="1" fill="#4F4E4F"/>
</svg>
</a>
</div>
<div class="header-menu-item team-item">
<a href="#">My Team</a>
</div>
<div class="header-menu-item tasks-item">
<a href="#">
Tasks
<svg class="tasks-item-svg" width="12" height="12" viewBox="0 0 12 12"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_86)">
<path d="M11.8534 2.89662C11.6579 2.70113 11.3419 2.70113 11.1464 2.89662L5.99998 8.04301L0.853593 2.89662C0.658105 2.70113 0.342104 2.70113 0.146616 2.89662C-0.048872 3.0921 -0.048872 3.40811 0.146616 3.60359L5.64651 9.10348C5.744 9.20098 5.87199 9.24999 6.00001 9.24999C6.12802 9.24999 6.25601 9.20098 6.35351 9.10348L11.8534 3.60359C12.0489 3.40811 12.0489 3.0921 11.8534 2.89662Z"/>
</g>
<defs>
<clipPath id="clip0_2_86">
<rect width="12" height="12"/>
</clipPath>
</defs>
</svg>
</a>
<div class="tasks-result">
<div class="task-result-item">Tasks Today</div>
<div class="task-result-item">Tasks Yesterday</div>
</div>
</div>
<div class="divider"></div>
</div>
<div class="header-actions">
<div class="header-search-action">
<form class="header-search-form" action="#" method="post">
<svg class="search-form-icon" width="14" height="14" viewBox="0 0 14 14" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1_119)">
<path d="M9.68747 8.3076C11.368 5.93452 10.806 2.64849 8.43288 0.968347C6.05979 -0.7118 2.77377 -0.150145 1.09362 2.22334C-0.586526 4.59642 -0.0248708 7.88204 2.34861 9.56219C4.04241 10.7614 6.28181 10.8537 8.06834 9.79866L11.9501 13.6572C12.3693 14.0984 13.0666 14.1161 13.5078 13.6969C13.9491 13.2782 13.9667 12.5808 13.548 12.1396C13.5347 12.1256 13.5219 12.1127 13.5078 12.0995L9.68747 8.3076ZM5.38733 8.66732C3.51207 8.66772 1.99171 7.14856 1.9905 5.2733C1.9901 3.39804 3.50926 1.87767 5.38492 1.87687C7.25778 1.87607 8.77734 3.39282 8.78095 5.26567C8.78416 7.14133 7.26581 8.6641 5.38974 8.66732C5.38894 8.66732 5.38854 8.66732 5.38733 8.66732Z"
fill="#B3B3B3"/>
</g>
<defs>
<clipPath id="clip0_1_119">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>
<label for="search-input"></label>
<input class="header-search-input"
type="text" id="search-input"
placeholder="Search...">
</form>
</div>
<div class="header-statistic-action">
<a class="header-statistic-action-link" href="#">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_69)">
<path d="M2.96875 9.375C3.44147 9.375 3.86932 9.18533 4.18549 8.88077L5.91995 9.74792C5.91125 9.81857 5.89844 9.888 5.89844 9.96094C5.89844 10.9302 6.68701 11.7188 7.65625 11.7188C8.62549 11.7188 9.41406 10.9302 9.41406 9.96094C9.41406 9.6904 9.34753 9.4371 9.23782 9.20792L11.5907 6.85501C11.8199 6.96472 12.0732 7.03125 12.3438 7.03125C13.313 7.03125 14.1016 6.24268 14.1016 5.27344C14.1016 5.09094 14.0657 4.91837 14.0138 4.75281L16.0582 3.21991C16.3371 3.40622 16.6714 3.51562 17.0312 3.51562C18.0005 3.51562 18.7891 2.72705 18.7891 1.75781C18.7891 0.788574 18.0005 0 17.0312 0C16.062 0 15.2734 0.788574 15.2734 1.75781C15.2734 1.94031 15.3093 2.11288 15.3612 2.27844L13.3168 3.81134C13.0379 3.62503 12.7036 3.51562 12.3438 3.51562C11.3745 3.51562 10.5859 4.3042 10.5859 5.27344C10.5859 5.54398 10.6525 5.79727 10.7622 6.02646L8.40927 8.37936C8.18008 8.26965 7.92679 8.20312 7.65625 8.20312C7.18353 8.20312 6.75568 8.39279 6.43951 8.69736L4.70505 7.8302C4.71375 7.75955 4.72656 7.69012 4.72656 7.61719C4.72656 6.64795 3.93799 5.85938 2.96875 5.85938C1.99951 5.85938 1.21094 6.64795 1.21094 7.61719C1.21094 8.58643 1.99951 9.375 2.96875 9.375Z"
fill="#858796"/>
<path d="M19.4141 18.8281H18.7891V6.44531C18.7891 6.12152 18.5269 5.85938 18.2031 5.85938H15.8594C15.5356 5.85938 15.2734 6.12152 15.2734 6.44531V18.8281H14.1016V9.96094C14.1016 9.63715 13.8394 9.375 13.5156 9.375H11.1719C10.8481 9.375 10.5859 9.63715 10.5859 9.96094V18.8281H9.41406V14.6484C9.41406 14.3246 9.15192 14.0625 8.82812 14.0625H6.48438C6.16058 14.0625 5.89844 14.3246 5.89844 14.6484V18.8281H4.72656V12.3047C4.72656 11.9809 4.46442 11.7188 4.14062 11.7188H1.79688C1.47308 11.7188 1.21094 11.9809 1.21094 12.3047V18.8281H0.585938C0.262146 18.8281 0 19.0903 0 19.4141C0 19.7379 0.262146 20 0.585938 20H19.4141C19.7379 20 20 19.7379 20 19.4141C20 19.0903 19.7379 18.8281 19.4141 18.8281Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_69">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>
</a>
</div>
<div class="upload">
<form class="upload-form" action="#" method="post">
<label class="upload-btn" for="upload">Upload</label>
<input type="file" id="upload" hidden>
</form>
</div>
</div>
</div>
<div class="main-container">
<div class="main-container-title">Dashboard</div>
<div class="main-container-video-items">
<div class="video-item">
<div class="video-item-image">
<img src="images/image-1-video.png" alt="Picture 1">
</div>
<div class="video-item-description">
<div class="description-title">Video #1. Design Interior by Lusia Lesitskaya</div>
<div class="description-publication-time">33 minutes ago</div>
<div class="video-item-actions">
<button class="edit-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_171)">
<path d="M0.552856 15.8328V20H4.97895L18.0389 7.70382L13.6128 3.53658L0.552856 15.8328Z"
fill="#858796"/>
<path d="M21.4499 2.91983L18.6939 0.325045C18.2336 -0.108348 17.4841 -0.108348 17.0238 0.325045L14.8638 2.35866L19.2899 6.5259L21.4499 4.49229C21.9102 4.05889 21.9102 3.35322 21.4499 2.91983Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_171">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.552856)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="copy-link-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_192)">
<path d="M13.4271 7.79551C13.1755 7.55719 12.8965 7.34594 12.5953 7.16562C11.7975 6.68466 10.8701 6.42908 9.92278 6.42908C8.60794 6.42677 7.34653 6.91864 6.41843 7.79551L1.91586 12.0381C0.989332 12.9121 0.468574 14.0963 0.467744 15.3311C0.466002 17.908 2.68327 19.9983 5.42022 19.9999C6.73302 20.0042 7.99327 19.5147 8.92104 18.6402L12.6378 15.1408C12.7053 15.0778 12.743 14.9918 12.7425 14.9023C12.7414 14.7182 12.5819 14.5699 12.3864 14.5709H12.2449C11.4683 14.5735 10.6987 14.4331 9.97944 14.1577C9.84691 14.1063 9.69459 14.1353 9.59362 14.231L6.9211 16.7505C6.09122 17.5319 4.74573 17.5319 3.91585 16.7505C3.08597 15.9692 3.08597 14.7024 3.91585 13.921L8.43613 9.66849C9.26534 8.88875 10.6086 8.88875 11.4378 9.66849C11.9967 10.1637 12.8684 10.1637 13.4272 9.66849C13.6676 9.44193 13.8134 9.14144 13.8378 8.82197C13.8636 8.4402 13.7141 8.06632 13.4271 7.79551Z"
fill="#858796"/>
<path d="M20.2554 1.36667C18.32 -0.455538 15.1821 -0.455538 13.2467 1.36667L9.53349 4.85937C9.43153 4.95583 9.40212 5.10093 9.45916 5.22598C9.51553 5.35139 9.64727 5.43188 9.79188 5.42927H9.92284C10.6985 5.42794 11.4668 5.56944 12.1847 5.84587C12.3173 5.89723 12.4696 5.86825 12.5706 5.77256L15.236 3.26633C16.0659 2.48499 17.4114 2.48499 18.2412 3.26633C19.0711 4.04768 19.0711 5.31448 18.2412 6.09582L14.9209 9.21858L14.8926 9.24858L13.7316 10.3351C12.9024 11.1148 11.5591 11.1148 10.7299 10.3351C10.171 9.83988 9.29933 9.83988 8.74053 10.3351C8.49857 10.5633 8.35268 10.8665 8.32991 11.1882C8.30402 11.57 8.45356 11.9439 8.74053 12.2147C9.15024 12.6021 9.6296 12.918 10.1564 13.1479C10.2308 13.1812 10.3051 13.2079 10.3794 13.2379C10.4538 13.2679 10.5316 13.2912 10.606 13.3178C10.6803 13.3445 10.7581 13.3678 10.8325 13.3878L11.0413 13.4411C11.1829 13.4745 11.3245 13.5011 11.4696 13.5245C11.6444 13.5489 11.8205 13.5645 11.9971 13.5711H12.2448H12.2661L12.4785 13.5478C12.5563 13.5445 12.6378 13.5278 12.7298 13.5278H12.8501L13.0944 13.4945L13.2077 13.4745L13.413 13.4345H13.4519C14.3214 13.2289 15.1154 12.805 15.7492 12.208L20.2553 7.96549C22.1908 6.14328 22.1908 3.18889 20.2554 1.36667Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_192">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.466248)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="share-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_214)">
<path d="M21.6219 9.99298L12.794 0.878906V6.31653H10.9171C5.09729 6.31653 0.379547 10.7584 0.379547 16.2378V19.1194L1.21321 18.2593C4.04759 15.3354 8.05808 13.6694 12.2627 13.6694H12.794V19.1071L21.6219 9.99298Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_214">
<rect width="21.2423" height="19.9609" fill="white"
transform="translate(0.379547)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="delete-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_167)">
<path d="M7.45361 1.81818C7.45361 1.22197 7.94781 0.78624 8.58105 0.78624H13.2158C13.8488 0.78624 14.343 1.22197 14.343 1.81818V2.9484H15.1781V1.81818C15.1781 0.788543 14.3094 0 13.2158 0H8.58105C7.48745 0 6.61853 0.788543 6.61853 1.81818V2.9484H7.45361V1.81818Z"
fill="#858796"/>
<path d="M5.96102 20H15.8358C16.7879 20 17.5267 19.2115 17.5267 18.231V6.09337H4.26987V18.231C4.26987 19.2115 5.00872 20 5.96102 20ZM13.5601 7.97048C13.5601 7.75338 13.7471 7.57736 13.9777 7.57736C14.2082 7.57736 14.3952 7.75338 14.3952 7.97048V17.258C14.3952 17.475 14.2082 17.6511 13.9777 17.6511C13.7471 17.6511 13.5601 17.475 13.5601 17.258V7.97048ZM10.4808 7.97048C10.4808 7.75338 10.6677 7.57736 10.8983 7.57736C11.1289 7.57736 11.3158 7.75338 11.3158 7.97048V17.258C11.3158 17.475 11.1289 17.6511 10.8983 17.6511C10.6677 17.6511 10.4808 17.475 10.4808 17.258V7.97048ZM7.40141 7.97048C7.40141 7.75338 7.58837 7.57736 7.81895 7.57736C8.04954 7.57736 8.23649 7.75338 8.23649 7.97048V17.258C8.23649 17.475 8.04954 17.6511 7.81895 17.6511C7.58837 17.6511 7.40141 17.475 7.40141 17.258V7.97048Z"
fill="#858796"/>
<path d="M3.84194 5.30712H17.9547C18.5313 5.30712 18.9985 4.86717 18.9985 4.32432C18.9985 3.78148 18.5313 3.34152 17.9547 3.34152H3.84194C3.26538 3.34152 2.7981 3.78148 2.7981 4.32432C2.7981 4.86717 3.26538 5.30712 3.84194 5.30712Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_167">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.292847)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="additional-menu-btn">
<svg class="additional-menu-btn-svg" width="28" height="6" viewBox="0 0 28 6"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="3.39259" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="14.0137" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="24.6349" cy="3" rx="3.18635" ry="3"/>
</svg>
</button>
</div>
</div>
<div class="video-item-status on-moderation">On moderation</div>
</div>
<div class="video-item">
<div class="video-item-image">
<img src="images/image-2-video.png" alt="Picture 2">
</div>
<div class="video-item-description">
<div class="description-title">Video #2. Design Interior by Krona Suvaltsa</div>
<div class="description-publication-time">30 minutes ago</div>
<div class="video-item-actions">
<button class="edit-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_171)">
<path d="M0.552856 15.8328V20H4.97895L18.0389 7.70382L13.6128 3.53658L0.552856 15.8328Z"
fill="#858796"/>
<path d="M21.4499 2.91983L18.6939 0.325045C18.2336 -0.108348 17.4841 -0.108348 17.0238 0.325045L14.8638 2.35866L19.2899 6.5259L21.4499 4.49229C21.9102 4.05889 21.9102 3.35322 21.4499 2.91983Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_171">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.552856)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="copy-link-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_192)">
<path d="M13.4271 7.79551C13.1755 7.55719 12.8965 7.34594 12.5953 7.16562C11.7975 6.68466 10.8701 6.42908 9.92278 6.42908C8.60794 6.42677 7.34653 6.91864 6.41843 7.79551L1.91586 12.0381C0.989332 12.9121 0.468574 14.0963 0.467744 15.3311C0.466002 17.908 2.68327 19.9983 5.42022 19.9999C6.73302 20.0042 7.99327 19.5147 8.92104 18.6402L12.6378 15.1408C12.7053 15.0778 12.743 14.9918 12.7425 14.9023C12.7414 14.7182 12.5819 14.5699 12.3864 14.5709H12.2449C11.4683 14.5735 10.6987 14.4331 9.97944 14.1577C9.84691 14.1063 9.69459 14.1353 9.59362 14.231L6.9211 16.7505C6.09122 17.5319 4.74573 17.5319 3.91585 16.7505C3.08597 15.9692 3.08597 14.7024 3.91585 13.921L8.43613 9.66849C9.26534 8.88875 10.6086 8.88875 11.4378 9.66849C11.9967 10.1637 12.8684 10.1637 13.4272 9.66849C13.6676 9.44193 13.8134 9.14144 13.8378 8.82197C13.8636 8.4402 13.7141 8.06632 13.4271 7.79551Z"
fill="#858796"/>
<path d="M20.2554 1.36667C18.32 -0.455538 15.1821 -0.455538 13.2467 1.36667L9.53349 4.85937C9.43153 4.95583 9.40212 5.10093 9.45916 5.22598C9.51553 5.35139 9.64727 5.43188 9.79188 5.42927H9.92284C10.6985 5.42794 11.4668 5.56944 12.1847 5.84587C12.3173 5.89723 12.4696 5.86825 12.5706 5.77256L15.236 3.26633C16.0659 2.48499 17.4114 2.48499 18.2412 3.26633C19.0711 4.04768 19.0711 5.31448 18.2412 6.09582L14.9209 9.21858L14.8926 9.24858L13.7316 10.3351C12.9024 11.1148 11.5591 11.1148 10.7299 10.3351C10.171 9.83988 9.29933 9.83988 8.74053 10.3351C8.49857 10.5633 8.35268 10.8665 8.32991 11.1882C8.30402 11.57 8.45356 11.9439 8.74053 12.2147C9.15024 12.6021 9.6296 12.918 10.1564 13.1479C10.2308 13.1812 10.3051 13.2079 10.3794 13.2379C10.4538 13.2679 10.5316 13.2912 10.606 13.3178C10.6803 13.3445 10.7581 13.3678 10.8325 13.3878L11.0413 13.4411C11.1829 13.4745 11.3245 13.5011 11.4696 13.5245C11.6444 13.5489 11.8205 13.5645 11.9971 13.5711H12.2448H12.2661L12.4785 13.5478C12.5563 13.5445 12.6378 13.5278 12.7298 13.5278H12.8501L13.0944 13.4945L13.2077 13.4745L13.413 13.4345H13.4519C14.3214 13.2289 15.1154 12.805 15.7492 12.208L20.2553 7.96549C22.1908 6.14328 22.1908 3.18889 20.2554 1.36667Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_192">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.466248)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="share-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_214)">
<path d="M21.6219 9.99298L12.794 0.878906V6.31653H10.9171C5.09729 6.31653 0.379547 10.7584 0.379547 16.2378V19.1194L1.21321 18.2593C4.04759 15.3354 8.05808 13.6694 12.2627 13.6694H12.794V19.1071L21.6219 9.99298Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_214">
<rect width="21.2423" height="19.9609" fill="white"
transform="translate(0.379547)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="delete-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_167)">
<path d="M7.45361 1.81818C7.45361 1.22197 7.94781 0.78624 8.58105 0.78624H13.2158C13.8488 0.78624 14.343 1.22197 14.343 1.81818V2.9484H15.1781V1.81818C15.1781 0.788543 14.3094 0 13.2158 0H8.58105C7.48745 0 6.61853 0.788543 6.61853 1.81818V2.9484H7.45361V1.81818Z"
fill="#858796"/>
<path d="M5.96102 20H15.8358C16.7879 20 17.5267 19.2115 17.5267 18.231V6.09337H4.26987V18.231C4.26987 19.2115 5.00872 20 5.96102 20ZM13.5601 7.97048C13.5601 7.75338 13.7471 7.57736 13.9777 7.57736C14.2082 7.57736 14.3952 7.75338 14.3952 7.97048V17.258C14.3952 17.475 14.2082 17.6511 13.9777 17.6511C13.7471 17.6511 13.5601 17.475 13.5601 17.258V7.97048ZM10.4808 7.97048C10.4808 7.75338 10.6677 7.57736 10.8983 7.57736C11.1289 7.57736 11.3158 7.75338 11.3158 7.97048V17.258C11.3158 17.475 11.1289 17.6511 10.8983 17.6511C10.6677 17.6511 10.4808 17.475 10.4808 17.258V7.97048ZM7.40141 7.97048C7.40141 7.75338 7.58837 7.57736 7.81895 7.57736C8.04954 7.57736 8.23649 7.75338 8.23649 7.97048V17.258C8.23649 17.475 8.04954 17.6511 7.81895 17.6511C7.58837 17.6511 7.40141 17.475 7.40141 17.258V7.97048Z"
fill="#858796"/>
<path d="M3.84194 5.30712H17.9547C18.5313 5.30712 18.9985 4.86717 18.9985 4.32432C18.9985 3.78148 18.5313 3.34152 17.9547 3.34152H3.84194C3.26538 3.34152 2.7981 3.78148 2.7981 4.32432C2.7981 4.86717 3.26538 5.30712 3.84194 5.30712Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_167">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.292847)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="additional-menu-btn">
<svg class="additional-menu-btn-svg" width="28" height="6" viewBox="0 0 28 6"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="3.39259" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="14.0137" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="24.6349" cy="3" rx="3.18635" ry="3"/>
</svg>
</button>
</div>
</div>
<div class="video-item-status published">Published</div>
</div>
<div class="video-item">
<div class="video-item-image">
<img src="images/image-3-video.png" alt="Picture 3">
</div>
<div class="video-item-description">
<div class="description-title">Video #3. Design Interior by Steve Kosner</div>
<div class="description-publication-time">1 hour ago</div>
<div class="video-item-actions">
<button class="edit-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_171)">
<path d="M0.552856 15.8328V20H4.97895L18.0389 7.70382L13.6128 3.53658L0.552856 15.8328Z"
fill="#858796"/>
<path d="M21.4499 2.91983L18.6939 0.325045C18.2336 -0.108348 17.4841 -0.108348 17.0238 0.325045L14.8638 2.35866L19.2899 6.5259L21.4499 4.49229C21.9102 4.05889 21.9102 3.35322 21.4499 2.91983Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_171">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.552856)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="copy-link-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_192)">
<path d="M13.4271 7.79551C13.1755 7.55719 12.8965 7.34594 12.5953 7.16562C11.7975 6.68466 10.8701 6.42908 9.92278 6.42908C8.60794 6.42677 7.34653 6.91864 6.41843 7.79551L1.91586 12.0381C0.989332 12.9121 0.468574 14.0963 0.467744 15.3311C0.466002 17.908 2.68327 19.9983 5.42022 19.9999C6.73302 20.0042 7.99327 19.5147 8.92104 18.6402L12.6378 15.1408C12.7053 15.0778 12.743 14.9918 12.7425 14.9023C12.7414 14.7182 12.5819 14.5699 12.3864 14.5709H12.2449C11.4683 14.5735 10.6987 14.4331 9.97944 14.1577C9.84691 14.1063 9.69459 14.1353 9.59362 14.231L6.9211 16.7505C6.09122 17.5319 4.74573 17.5319 3.91585 16.7505C3.08597 15.9692 3.08597 14.7024 3.91585 13.921L8.43613 9.66849C9.26534 8.88875 10.6086 8.88875 11.4378 9.66849C11.9967 10.1637 12.8684 10.1637 13.4272 9.66849C13.6676 9.44193 13.8134 9.14144 13.8378 8.82197C13.8636 8.4402 13.7141 8.06632 13.4271 7.79551Z"
fill="#858796"/>
<path d="M20.2554 1.36667C18.32 -0.455538 15.1821 -0.455538 13.2467 1.36667L9.53349 4.85937C9.43153 4.95583 9.40212 5.10093 9.45916 5.22598C9.51553 5.35139 9.64727 5.43188 9.79188 5.42927H9.92284C10.6985 5.42794 11.4668 5.56944 12.1847 5.84587C12.3173 5.89723 12.4696 5.86825 12.5706 5.77256L15.236 3.26633C16.0659 2.48499 17.4114 2.48499 18.2412 3.26633C19.0711 4.04768 19.0711 5.31448 18.2412 6.09582L14.9209 9.21858L14.8926 9.24858L13.7316 10.3351C12.9024 11.1148 11.5591 11.1148 10.7299 10.3351C10.171 9.83988 9.29933 9.83988 8.74053 10.3351C8.49857 10.5633 8.35268 10.8665 8.32991 11.1882C8.30402 11.57 8.45356 11.9439 8.74053 12.2147C9.15024 12.6021 9.6296 12.918 10.1564 13.1479C10.2308 13.1812 10.3051 13.2079 10.3794 13.2379C10.4538 13.2679 10.5316 13.2912 10.606 13.3178C10.6803 13.3445 10.7581 13.3678 10.8325 13.3878L11.0413 13.4411C11.1829 13.4745 11.3245 13.5011 11.4696 13.5245C11.6444 13.5489 11.8205 13.5645 11.9971 13.5711H12.2448H12.2661L12.4785 13.5478C12.5563 13.5445 12.6378 13.5278 12.7298 13.5278H12.8501L13.0944 13.4945L13.2077 13.4745L13.413 13.4345H13.4519C14.3214 13.2289 15.1154 12.805 15.7492 12.208L20.2553 7.96549C22.1908 6.14328 22.1908 3.18889 20.2554 1.36667Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_192">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.466248)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="share-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_214)">
<path d="M21.6219 9.99298L12.794 0.878906V6.31653H10.9171C5.09729 6.31653 0.379547 10.7584 0.379547 16.2378V19.1194L1.21321 18.2593C4.04759 15.3354 8.05808 13.6694 12.2627 13.6694H12.794V19.1071L21.6219 9.99298Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_214">
<rect width="21.2423" height="19.9609" fill="white"
transform="translate(0.379547)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="delete-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_167)">
<path d="M7.45361 1.81818C7.45361 1.22197 7.94781 0.78624 8.58105 0.78624H13.2158C13.8488 0.78624 14.343 1.22197 14.343 1.81818V2.9484H15.1781V1.81818C15.1781 0.788543 14.3094 0 13.2158 0H8.58105C7.48745 0 6.61853 0.788543 6.61853 1.81818V2.9484H7.45361V1.81818Z"
fill="#858796"/>
<path d="M5.96102 20H15.8358C16.7879 20 17.5267 19.2115 17.5267 18.231V6.09337H4.26987V18.231C4.26987 19.2115 5.00872 20 5.96102 20ZM13.5601 7.97048C13.5601 7.75338 13.7471 7.57736 13.9777 7.57736C14.2082 7.57736 14.3952 7.75338 14.3952 7.97048V17.258C14.3952 17.475 14.2082 17.6511 13.9777 17.6511C13.7471 17.6511 13.5601 17.475 13.5601 17.258V7.97048ZM10.4808 7.97048C10.4808 7.75338 10.6677 7.57736 10.8983 7.57736C11.1289 7.57736 11.3158 7.75338 11.3158 7.97048V17.258C11.3158 17.475 11.1289 17.6511 10.8983 17.6511C10.6677 17.6511 10.4808 17.475 10.4808 17.258V7.97048ZM7.40141 7.97048C7.40141 7.75338 7.58837 7.57736 7.81895 7.57736C8.04954 7.57736 8.23649 7.75338 8.23649 7.97048V17.258C8.23649 17.475 8.04954 17.6511 7.81895 17.6511C7.58837 17.6511 7.40141 17.475 7.40141 17.258V7.97048Z"
fill="#858796"/>
<path d="M3.84194 5.30712H17.9547C18.5313 5.30712 18.9985 4.86717 18.9985 4.32432C18.9985 3.78148 18.5313 3.34152 17.9547 3.34152H3.84194C3.26538 3.34152 2.7981 3.78148 2.7981 4.32432C2.7981 4.86717 3.26538 5.30712 3.84194 5.30712Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_167">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.292847)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="additional-menu-btn">
<svg class="additional-menu-btn-svg" width="28" height="6" viewBox="0 0 28 6"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="3.39259" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="14.0137" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="24.6349" cy="3" rx="3.18635" ry="3"/>
</svg>
</button>
</div>
</div>
<div class="video-item-status error-uploading">Error uploading</div>
</div>
<div class="video-item">
<div class="video-item-image">
<img src="images/image-4-video.png" alt="Picture 4">
</div>
<div class="video-item-description">
<div class="description-title">Video #4. Design Interior by Kross Kostinsky</div>
<div class="description-publication-time">1 minute ago</div>
<div class="video-item-actions">
<button class="edit-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_171)">
<path d="M0.552856 15.8328V20H4.97895L18.0389 7.70382L13.6128 3.53658L0.552856 15.8328Z"
fill="#858796"/>
<path d="M21.4499 2.91983L18.6939 0.325045C18.2336 -0.108348 17.4841 -0.108348 17.0238 0.325045L14.8638 2.35866L19.2899 6.5259L21.4499 4.49229C21.9102 4.05889 21.9102 3.35322 21.4499 2.91983Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_171">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.552856)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="copy-link-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_192)">
<path d="M13.4271 7.79551C13.1755 7.55719 12.8965 7.34594 12.5953 7.16562C11.7975 6.68466 10.8701 6.42908 9.92278 6.42908C8.60794 6.42677 7.34653 6.91864 6.41843 7.79551L1.91586 12.0381C0.989332 12.9121 0.468574 14.0963 0.467744 15.3311C0.466002 17.908 2.68327 19.9983 5.42022 19.9999C6.73302 20.0042 7.99327 19.5147 8.92104 18.6402L12.6378 15.1408C12.7053 15.0778 12.743 14.9918 12.7425 14.9023C12.7414 14.7182 12.5819 14.5699 12.3864 14.5709H12.2449C11.4683 14.5735 10.6987 14.4331 9.97944 14.1577C9.84691 14.1063 9.69459 14.1353 9.59362 14.231L6.9211 16.7505C6.09122 17.5319 4.74573 17.5319 3.91585 16.7505C3.08597 15.9692 3.08597 14.7024 3.91585 13.921L8.43613 9.66849C9.26534 8.88875 10.6086 8.88875 11.4378 9.66849C11.9967 10.1637 12.8684 10.1637 13.4272 9.66849C13.6676 9.44193 13.8134 9.14144 13.8378 8.82197C13.8636 8.4402 13.7141 8.06632 13.4271 7.79551Z"
fill="#858796"/>
<path d="M20.2554 1.36667C18.32 -0.455538 15.1821 -0.455538 13.2467 1.36667L9.53349 4.85937C9.43153 4.95583 9.40212 5.10093 9.45916 5.22598C9.51553 5.35139 9.64727 5.43188 9.79188 5.42927H9.92284C10.6985 5.42794 11.4668 5.56944 12.1847 5.84587C12.3173 5.89723 12.4696 5.86825 12.5706 5.77256L15.236 3.26633C16.0659 2.48499 17.4114 2.48499 18.2412 3.26633C19.0711 4.04768 19.0711 5.31448 18.2412 6.09582L14.9209 9.21858L14.8926 9.24858L13.7316 10.3351C12.9024 11.1148 11.5591 11.1148 10.7299 10.3351C10.171 9.83988 9.29933 9.83988 8.74053 10.3351C8.49857 10.5633 8.35268 10.8665 8.32991 11.1882C8.30402 11.57 8.45356 11.9439 8.74053 12.2147C9.15024 12.6021 9.6296 12.918 10.1564 13.1479C10.2308 13.1812 10.3051 13.2079 10.3794 13.2379C10.4538 13.2679 10.5316 13.2912 10.606 13.3178C10.6803 13.3445 10.7581 13.3678 10.8325 13.3878L11.0413 13.4411C11.1829 13.4745 11.3245 13.5011 11.4696 13.5245C11.6444 13.5489 11.8205 13.5645 11.9971 13.5711H12.2448H12.2661L12.4785 13.5478C12.5563 13.5445 12.6378 13.5278 12.7298 13.5278H12.8501L13.0944 13.4945L13.2077 13.4745L13.413 13.4345H13.4519C14.3214 13.2289 15.1154 12.805 15.7492 12.208L20.2553 7.96549C22.1908 6.14328 22.1908 3.18889 20.2554 1.36667Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_192">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.466248)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="share-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_214)">
<path d="M21.6219 9.99298L12.794 0.878906V6.31653H10.9171C5.09729 6.31653 0.379547 10.7584 0.379547 16.2378V19.1194L1.21321 18.2593C4.04759 15.3354 8.05808 13.6694 12.2627 13.6694H12.794V19.1071L21.6219 9.99298Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_214">
<rect width="21.2423" height="19.9609" fill="white"
transform="translate(0.379547)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="delete-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_167)">
<path d="M7.45361 1.81818C7.45361 1.22197 7.94781 0.78624 8.58105 0.78624H13.2158C13.8488 0.78624 14.343 1.22197 14.343 1.81818V2.9484H15.1781V1.81818C15.1781 0.788543 14.3094 0 13.2158 0H8.58105C7.48745 0 6.61853 0.788543 6.61853 1.81818V2.9484H7.45361V1.81818Z"
fill="#858796"/>
<path d="M5.96102 20H15.8358C16.7879 20 17.5267 19.2115 17.5267 18.231V6.09337H4.26987V18.231C4.26987 19.2115 5.00872 20 5.96102 20ZM13.5601 7.97048C13.5601 7.75338 13.7471 7.57736 13.9777 7.57736C14.2082 7.57736 14.3952 7.75338 14.3952 7.97048V17.258C14.3952 17.475 14.2082 17.6511 13.9777 17.6511C13.7471 17.6511 13.5601 17.475 13.5601 17.258V7.97048ZM10.4808 7.97048C10.4808 7.75338 10.6677 7.57736 10.8983 7.57736C11.1289 7.57736 11.3158 7.75338 11.3158 7.97048V17.258C11.3158 17.475 11.1289 17.6511 10.8983 17.6511C10.6677 17.6511 10.4808 17.475 10.4808 17.258V7.97048ZM7.40141 7.97048C7.40141 7.75338 7.58837 7.57736 7.81895 7.57736C8.04954 7.57736 8.23649 7.75338 8.23649 7.97048V17.258C8.23649 17.475 8.04954 17.6511 7.81895 17.6511C7.58837 17.6511 7.40141 17.475 7.40141 17.258V7.97048Z"
fill="#858796"/>
<path d="M3.84194 5.30712H17.9547C18.5313 5.30712 18.9985 4.86717 18.9985 4.32432C18.9985 3.78148 18.5313 3.34152 17.9547 3.34152H3.84194C3.26538 3.34152 2.7981 3.78148 2.7981 4.32432C2.7981 4.86717 3.26538 5.30712 3.84194 5.30712Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_167">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.292847)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="additional-menu-btn">
<svg class="additional-menu-btn-svg" width="28" height="6" viewBox="0 0 28 6"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="3.39259" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="14.0137" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="24.6349" cy="3" rx="3.18635" ry="3"/>
</svg>
</button>
</div>
</div>
<div class="video-item-status published">Published</div>
</div>
<div class="video-item">
<div class="video-item-image">
<img src="images/image-5-video.png" alt="Picture 5">
</div>
<div class="video-item-description">
<div class="description-title">Video #5. Design Interior by Bob Markon</div>
<div class="description-publication-time">26 minutes ago</div>
<div class="video-item-actions">
<button class="edit-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_171)">
<path d="M0.552856 15.8328V20H4.97895L18.0389 7.70382L13.6128 3.53658L0.552856 15.8328Z"
fill="#858796"/>
<path d="M21.4499 2.91983L18.6939 0.325045C18.2336 -0.108348 17.4841 -0.108348 17.0238 0.325045L14.8638 2.35866L19.2899 6.5259L21.4499 4.49229C21.9102 4.05889 21.9102 3.35322 21.4499 2.91983Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_171">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.552856)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="copy-link-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_192)">
<path d="M13.4271 7.79551C13.1755 7.55719 12.8965 7.34594 12.5953 7.16562C11.7975 6.68466 10.8701 6.42908 9.92278 6.42908C8.60794 6.42677 7.34653 6.91864 6.41843 7.79551L1.91586 12.0381C0.989332 12.9121 0.468574 14.0963 0.467744 15.3311C0.466002 17.908 2.68327 19.9983 5.42022 19.9999C6.73302 20.0042 7.99327 19.5147 8.92104 18.6402L12.6378 15.1408C12.7053 15.0778 12.743 14.9918 12.7425 14.9023C12.7414 14.7182 12.5819 14.5699 12.3864 14.5709H12.2449C11.4683 14.5735 10.6987 14.4331 9.97944 14.1577C9.84691 14.1063 9.69459 14.1353 9.59362 14.231L6.9211 16.7505C6.09122 17.5319 4.74573 17.5319 3.91585 16.7505C3.08597 15.9692 3.08597 14.7024 3.91585 13.921L8.43613 9.66849C9.26534 8.88875 10.6086 8.88875 11.4378 9.66849C11.9967 10.1637 12.8684 10.1637 13.4272 9.66849C13.6676 9.44193 13.8134 9.14144 13.8378 8.82197C13.8636 8.4402 13.7141 8.06632 13.4271 7.79551Z"
fill="#858796"/>
<path d="M20.2554 1.36667C18.32 -0.455538 15.1821 -0.455538 13.2467 1.36667L9.53349 4.85937C9.43153 4.95583 9.40212 5.10093 9.45916 5.22598C9.51553 5.35139 9.64727 5.43188 9.79188 5.42927H9.92284C10.6985 5.42794 11.4668 5.56944 12.1847 5.84587C12.3173 5.89723 12.4696 5.86825 12.5706 5.77256L15.236 3.26633C16.0659 2.48499 17.4114 2.48499 18.2412 3.26633C19.0711 4.04768 19.0711 5.31448 18.2412 6.09582L14.9209 9.21858L14.8926 9.24858L13.7316 10.3351C12.9024 11.1148 11.5591 11.1148 10.7299 10.3351C10.171 9.83988 9.29933 9.83988 8.74053 10.3351C8.49857 10.5633 8.35268 10.8665 8.32991 11.1882C8.30402 11.57 8.45356 11.9439 8.74053 12.2147C9.15024 12.6021 9.6296 12.918 10.1564 13.1479C10.2308 13.1812 10.3051 13.2079 10.3794 13.2379C10.4538 13.2679 10.5316 13.2912 10.606 13.3178C10.6803 13.3445 10.7581 13.3678 10.8325 13.3878L11.0413 13.4411C11.1829 13.4745 11.3245 13.5011 11.4696 13.5245C11.6444 13.5489 11.8205 13.5645 11.9971 13.5711H12.2448H12.2661L12.4785 13.5478C12.5563 13.5445 12.6378 13.5278 12.7298 13.5278H12.8501L13.0944 13.4945L13.2077 13.4745L13.413 13.4345H13.4519C14.3214 13.2289 15.1154 12.805 15.7492 12.208L20.2553 7.96549C22.1908 6.14328 22.1908 3.18889 20.2554 1.36667Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_192">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.466248)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="share-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_214)">
<path d="M21.6219 9.99298L12.794 0.878906V6.31653H10.9171C5.09729 6.31653 0.379547 10.7584 0.379547 16.2378V19.1194L1.21321 18.2593C4.04759 15.3354 8.05808 13.6694 12.2627 13.6694H12.794V19.1071L21.6219 9.99298Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_214">
<rect width="21.2423" height="19.9609" fill="white"
transform="translate(0.379547)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="delete-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_167)">
<path d="M7.45361 1.81818C7.45361 1.22197 7.94781 0.78624 8.58105 0.78624H13.2158C13.8488 0.78624 14.343 1.22197 14.343 1.81818V2.9484H15.1781V1.81818C15.1781 0.788543 14.3094 0 13.2158 0H8.58105C7.48745 0 6.61853 0.788543 6.61853 1.81818V2.9484H7.45361V1.81818Z"
fill="#858796"/>
<path d="M5.96102 20H15.8358C16.7879 20 17.5267 19.2115 17.5267 18.231V6.09337H4.26987V18.231C4.26987 19.2115 5.00872 20 5.96102 20ZM13.5601 7.97048C13.5601 7.75338 13.7471 7.57736 13.9777 7.57736C14.2082 7.57736 14.3952 7.75338 14.3952 7.97048V17.258C14.3952 17.475 14.2082 17.6511 13.9777 17.6511C13.7471 17.6511 13.5601 17.475 13.5601 17.258V7.97048ZM10.4808 7.97048C10.4808 7.75338 10.6677 7.57736 10.8983 7.57736C11.1289 7.57736 11.3158 7.75338 11.3158 7.97048V17.258C11.3158 17.475 11.1289 17.6511 10.8983 17.6511C10.6677 17.6511 10.4808 17.475 10.4808 17.258V7.97048ZM7.40141 7.97048C7.40141 7.75338 7.58837 7.57736 7.81895 7.57736C8.04954 7.57736 8.23649 7.75338 8.23649 7.97048V17.258C8.23649 17.475 8.04954 17.6511 7.81895 17.6511C7.58837 17.6511 7.40141 17.475 7.40141 17.258V7.97048Z"
fill="#858796"/>
<path d="M3.84194 5.30712H17.9547C18.5313 5.30712 18.9985 4.86717 18.9985 4.32432C18.9985 3.78148 18.5313 3.34152 17.9547 3.34152H3.84194C3.26538 3.34152 2.7981 3.78148 2.7981 4.32432C2.7981 4.86717 3.26538 5.30712 3.84194 5.30712Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_167">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.292847)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="additional-menu-btn">
<svg class="additional-menu-btn-svg" width="28" height="6" viewBox="0 0 28 6"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="3.39259" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="14.0137" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="24.6349" cy="3" rx="3.18635" ry="3"/>
</svg>
</button>
</div>
</div>
<div class="video-item-status published">Published</div>
</div>
<div class="video-item">
<div class="video-item-image">
<img src="images/image-6-video.png" alt="Picture 6">
</div>
<div class="video-item-description">
<div class="description-title">Video #6. Design Interior by Rork Stensey</div>
<div class="description-publication-time">56 minutes ago</div>
<div class="video-item-actions">
<button class="edit-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_171)">
<path d="M0.552856 15.8328V20H4.97895L18.0389 7.70382L13.6128 3.53658L0.552856 15.8328Z"
fill="#858796"/>
<path d="M21.4499 2.91983L18.6939 0.325045C18.2336 -0.108348 17.4841 -0.108348 17.0238 0.325045L14.8638 2.35866L19.2899 6.5259L21.4499 4.49229C21.9102 4.05889 21.9102 3.35322 21.4499 2.91983Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_171">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.552856)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="copy-link-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_192)">
<path d="M13.4271 7.79551C13.1755 7.55719 12.8965 7.34594 12.5953 7.16562C11.7975 6.68466 10.8701 6.42908 9.92278 6.42908C8.60794 6.42677 7.34653 6.91864 6.41843 7.79551L1.91586 12.0381C0.989332 12.9121 0.468574 14.0963 0.467744 15.3311C0.466002 17.908 2.68327 19.9983 5.42022 19.9999C6.73302 20.0042 7.99327 19.5147 8.92104 18.6402L12.6378 15.1408C12.7053 15.0778 12.743 14.9918 12.7425 14.9023C12.7414 14.7182 12.5819 14.5699 12.3864 14.5709H12.2449C11.4683 14.5735 10.6987 14.4331 9.97944 14.1577C9.84691 14.1063 9.69459 14.1353 9.59362 14.231L6.9211 16.7505C6.09122 17.5319 4.74573 17.5319 3.91585 16.7505C3.08597 15.9692 3.08597 14.7024 3.91585 13.921L8.43613 9.66849C9.26534 8.88875 10.6086 8.88875 11.4378 9.66849C11.9967 10.1637 12.8684 10.1637 13.4272 9.66849C13.6676 9.44193 13.8134 9.14144 13.8378 8.82197C13.8636 8.4402 13.7141 8.06632 13.4271 7.79551Z"
fill="#858796"/>
<path d="M20.2554 1.36667C18.32 -0.455538 15.1821 -0.455538 13.2467 1.36667L9.53349 4.85937C9.43153 4.95583 9.40212 5.10093 9.45916 5.22598C9.51553 5.35139 9.64727 5.43188 9.79188 5.42927H9.92284C10.6985 5.42794 11.4668 5.56944 12.1847 5.84587C12.3173 5.89723 12.4696 5.86825 12.5706 5.77256L15.236 3.26633C16.0659 2.48499 17.4114 2.48499 18.2412 3.26633C19.0711 4.04768 19.0711 5.31448 18.2412 6.09582L14.9209 9.21858L14.8926 9.24858L13.7316 10.3351C12.9024 11.1148 11.5591 11.1148 10.7299 10.3351C10.171 9.83988 9.29933 9.83988 8.74053 10.3351C8.49857 10.5633 8.35268 10.8665 8.32991 11.1882C8.30402 11.57 8.45356 11.9439 8.74053 12.2147C9.15024 12.6021 9.6296 12.918 10.1564 13.1479C10.2308 13.1812 10.3051 13.2079 10.3794 13.2379C10.4538 13.2679 10.5316 13.2912 10.606 13.3178C10.6803 13.3445 10.7581 13.3678 10.8325 13.3878L11.0413 13.4411C11.1829 13.4745 11.3245 13.5011 11.4696 13.5245C11.6444 13.5489 11.8205 13.5645 11.9971 13.5711H12.2448H12.2661L12.4785 13.5478C12.5563 13.5445 12.6378 13.5278 12.7298 13.5278H12.8501L13.0944 13.4945L13.2077 13.4745L13.413 13.4345H13.4519C14.3214 13.2289 15.1154 12.805 15.7492 12.208L20.2553 7.96549C22.1908 6.14328 22.1908 3.18889 20.2554 1.36667Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_192">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.466248)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="share-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_214)">
<path d="M21.6219 9.99298L12.794 0.878906V6.31653H10.9171C5.09729 6.31653 0.379547 10.7584 0.379547 16.2378V19.1194L1.21321 18.2593C4.04759 15.3354 8.05808 13.6694 12.2627 13.6694H12.794V19.1071L21.6219 9.99298Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_214">
<rect width="21.2423" height="19.9609" fill="white"
transform="translate(0.379547)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="delete-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_167)">
<path d="M7.45361 1.81818C7.45361 1.22197 7.94781 0.78624 8.58105 0.78624H13.2158C13.8488 0.78624 14.343 1.22197 14.343 1.81818V2.9484H15.1781V1.81818C15.1781 0.788543 14.3094 0 13.2158 0H8.58105C7.48745 0 6.61853 0.788543 6.61853 1.81818V2.9484H7.45361V1.81818Z"
fill="#858796"/>
<path d="M5.96102 20H15.8358C16.7879 20 17.5267 19.2115 17.5267 18.231V6.09337H4.26987V18.231C4.26987 19.2115 5.00872 20 5.96102 20ZM13.5601 7.97048C13.5601 7.75338 13.7471 7.57736 13.9777 7.57736C14.2082 7.57736 14.3952 7.75338 14.3952 7.97048V17.258C14.3952 17.475 14.2082 17.6511 13.9777 17.6511C13.7471 17.6511 13.5601 17.475 13.5601 17.258V7.97048ZM10.4808 7.97048C10.4808 7.75338 10.6677 7.57736 10.8983 7.57736C11.1289 7.57736 11.3158 7.75338 11.3158 7.97048V17.258C11.3158 17.475 11.1289 17.6511 10.8983 17.6511C10.6677 17.6511 10.4808 17.475 10.4808 17.258V7.97048ZM7.40141 7.97048C7.40141 7.75338 7.58837 7.57736 7.81895 7.57736C8.04954 7.57736 8.23649 7.75338 8.23649 7.97048V17.258C8.23649 17.475 8.04954 17.6511 7.81895 17.6511C7.58837 17.6511 7.40141 17.475 7.40141 17.258V7.97048Z"
fill="#858796"/>
<path d="M3.84194 5.30712H17.9547C18.5313 5.30712 18.9985 4.86717 18.9985 4.32432C18.9985 3.78148 18.5313 3.34152 17.9547 3.34152H3.84194C3.26538 3.34152 2.7981 3.78148 2.7981 4.32432C2.7981 4.86717 3.26538 5.30712 3.84194 5.30712Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_167">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.292847)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="additional-menu-btn">
<svg class="additional-menu-btn-svg" width="28" height="6" viewBox="0 0 28 6"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="3.39259" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="14.0137" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="24.6349" cy="3" rx="3.18635" ry="3"/>
</svg>
</button>
</div>
</div>
<div class="video-item-status on-moderation">On moderation</div>
</div>
<div class="video-item">
<div class="video-item-image">
<img src="images/image-8-video.png" alt="Picture 8">
</div>
<div class="video-item-description">
<div class="description-title">Video #8. Design Interior by Krenso La Cruddicinio</div>
<div class="description-publication-time">54 minutes ago</div>
<div class="video-item-actions">
<button class="edit-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_171)">
<path d="M0.552856 15.8328V20H4.97895L18.0389 7.70382L13.6128 3.53658L0.552856 15.8328Z"
fill="#858796"/>
<path d="M21.4499 2.91983L18.6939 0.325045C18.2336 -0.108348 17.4841 -0.108348 17.0238 0.325045L14.8638 2.35866L19.2899 6.5259L21.4499 4.49229C21.9102 4.05889 21.9102 3.35322 21.4499 2.91983Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_171">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.552856)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="copy-link-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_192)">
<path d="M13.4271 7.79551C13.1755 7.55719 12.8965 7.34594 12.5953 7.16562C11.7975 6.68466 10.8701 6.42908 9.92278 6.42908C8.60794 6.42677 7.34653 6.91864 6.41843 7.79551L1.91586 12.0381C0.989332 12.9121 0.468574 14.0963 0.467744 15.3311C0.466002 17.908 2.68327 19.9983 5.42022 19.9999C6.73302 20.0042 7.99327 19.5147 8.92104 18.6402L12.6378 15.1408C12.7053 15.0778 12.743 14.9918 12.7425 14.9023C12.7414 14.7182 12.5819 14.5699 12.3864 14.5709H12.2449C11.4683 14.5735 10.6987 14.4331 9.97944 14.1577C9.84691 14.1063 9.69459 14.1353 9.59362 14.231L6.9211 16.7505C6.09122 17.5319 4.74573 17.5319 3.91585 16.7505C3.08597 15.9692 3.08597 14.7024 3.91585 13.921L8.43613 9.66849C9.26534 8.88875 10.6086 8.88875 11.4378 9.66849C11.9967 10.1637 12.8684 10.1637 13.4272 9.66849C13.6676 9.44193 13.8134 9.14144 13.8378 8.82197C13.8636 8.4402 13.7141 8.06632 13.4271 7.79551Z"
fill="#858796"/>
<path d="M20.2554 1.36667C18.32 -0.455538 15.1821 -0.455538 13.2467 1.36667L9.53349 4.85937C9.43153 4.95583 9.40212 5.10093 9.45916 5.22598C9.51553 5.35139 9.64727 5.43188 9.79188 5.42927H9.92284C10.6985 5.42794 11.4668 5.56944 12.1847 5.84587C12.3173 5.89723 12.4696 5.86825 12.5706 5.77256L15.236 3.26633C16.0659 2.48499 17.4114 2.48499 18.2412 3.26633C19.0711 4.04768 19.0711 5.31448 18.2412 6.09582L14.9209 9.21858L14.8926 9.24858L13.7316 10.3351C12.9024 11.1148 11.5591 11.1148 10.7299 10.3351C10.171 9.83988 9.29933 9.83988 8.74053 10.3351C8.49857 10.5633 8.35268 10.8665 8.32991 11.1882C8.30402 11.57 8.45356 11.9439 8.74053 12.2147C9.15024 12.6021 9.6296 12.918 10.1564 13.1479C10.2308 13.1812 10.3051 13.2079 10.3794 13.2379C10.4538 13.2679 10.5316 13.2912 10.606 13.3178C10.6803 13.3445 10.7581 13.3678 10.8325 13.3878L11.0413 13.4411C11.1829 13.4745 11.3245 13.5011 11.4696 13.5245C11.6444 13.5489 11.8205 13.5645 11.9971 13.5711H12.2448H12.2661L12.4785 13.5478C12.5563 13.5445 12.6378 13.5278 12.7298 13.5278H12.8501L13.0944 13.4945L13.2077 13.4745L13.413 13.4345H13.4519C14.3214 13.2289 15.1154 12.805 15.7492 12.208L20.2553 7.96549C22.1908 6.14328 22.1908 3.18889 20.2554 1.36667Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_192">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.466248)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="share-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_214)">
<path d="M21.6219 9.99298L12.794 0.878906V6.31653H10.9171C5.09729 6.31653 0.379547 10.7584 0.379547 16.2378V19.1194L1.21321 18.2593C4.04759 15.3354 8.05808 13.6694 12.2627 13.6694H12.794V19.1071L21.6219 9.99298Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_214">
<rect width="21.2423" height="19.9609" fill="white"
transform="translate(0.379547)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="delete-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_167)">
<path d="M7.45361 1.81818C7.45361 1.22197 7.94781 0.78624 8.58105 0.78624H13.2158C13.8488 0.78624 14.343 1.22197 14.343 1.81818V2.9484H15.1781V1.81818C15.1781 0.788543 14.3094 0 13.2158 0H8.58105C7.48745 0 6.61853 0.788543 6.61853 1.81818V2.9484H7.45361V1.81818Z"
fill="#858796"/>
<path d="M5.96102 20H15.8358C16.7879 20 17.5267 19.2115 17.5267 18.231V6.09337H4.26987V18.231C4.26987 19.2115 5.00872 20 5.96102 20ZM13.5601 7.97048C13.5601 7.75338 13.7471 7.57736 13.9777 7.57736C14.2082 7.57736 14.3952 7.75338 14.3952 7.97048V17.258C14.3952 17.475 14.2082 17.6511 13.9777 17.6511C13.7471 17.6511 13.5601 17.475 13.5601 17.258V7.97048ZM10.4808 7.97048C10.4808 7.75338 10.6677 7.57736 10.8983 7.57736C11.1289 7.57736 11.3158 7.75338 11.3158 7.97048V17.258C11.3158 17.475 11.1289 17.6511 10.8983 17.6511C10.6677 17.6511 10.4808 17.475 10.4808 17.258V7.97048ZM7.40141 7.97048C7.40141 7.75338 7.58837 7.57736 7.81895 7.57736C8.04954 7.57736 8.23649 7.75338 8.23649 7.97048V17.258C8.23649 17.475 8.04954 17.6511 7.81895 17.6511C7.58837 17.6511 7.40141 17.475 7.40141 17.258V7.97048Z"
fill="#858796"/>
<path d="M3.84194 5.30712H17.9547C18.5313 5.30712 18.9985 4.86717 18.9985 4.32432C18.9985 3.78148 18.5313 3.34152 17.9547 3.34152H3.84194C3.26538 3.34152 2.7981 3.78148 2.7981 4.32432C2.7981 4.86717 3.26538 5.30712 3.84194 5.30712Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_167">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.292847)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="additional-menu-btn">
<svg class="additional-menu-btn-svg" width="28" height="6" viewBox="0 0 28 6"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="3.39259" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="14.0137" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="24.6349" cy="3" rx="3.18635" ry="3"/>
</svg>
</button>
</div>
</div>
<div class="video-item-status published">Published</div>
</div>
<div class="video-item">
<div class="video-item-image">
<img src="images/image-9-video.png" alt="Picture 9">
</div>
<div class="video-item-description">
<div class="description-title">Video #9. Design Interior by Kate Gyon</div>
<div class="description-publication-time">4 hours ago</div>
<div class="video-item-actions">
<button class="edit-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_171)">
<path d="M0.552856 15.8328V20H4.97895L18.0389 7.70382L13.6128 3.53658L0.552856 15.8328Z"
fill="#858796"/>
<path d="M21.4499 2.91983L18.6939 0.325045C18.2336 -0.108348 17.4841 -0.108348 17.0238 0.325045L14.8638 2.35866L19.2899 6.5259L21.4499 4.49229C21.9102 4.05889 21.9102 3.35322 21.4499 2.91983Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_171">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.552856)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="copy-link-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_192)">
<path d="M13.4271 7.79551C13.1755 7.55719 12.8965 7.34594 12.5953 7.16562C11.7975 6.68466 10.8701 6.42908 9.92278 6.42908C8.60794 6.42677 7.34653 6.91864 6.41843 7.79551L1.91586 12.0381C0.989332 12.9121 0.468574 14.0963 0.467744 15.3311C0.466002 17.908 2.68327 19.9983 5.42022 19.9999C6.73302 20.0042 7.99327 19.5147 8.92104 18.6402L12.6378 15.1408C12.7053 15.0778 12.743 14.9918 12.7425 14.9023C12.7414 14.7182 12.5819 14.5699 12.3864 14.5709H12.2449C11.4683 14.5735 10.6987 14.4331 9.97944 14.1577C9.84691 14.1063 9.69459 14.1353 9.59362 14.231L6.9211 16.7505C6.09122 17.5319 4.74573 17.5319 3.91585 16.7505C3.08597 15.9692 3.08597 14.7024 3.91585 13.921L8.43613 9.66849C9.26534 8.88875 10.6086 8.88875 11.4378 9.66849C11.9967 10.1637 12.8684 10.1637 13.4272 9.66849C13.6676 9.44193 13.8134 9.14144 13.8378 8.82197C13.8636 8.4402 13.7141 8.06632 13.4271 7.79551Z"
fill="#858796"/>
<path d="M20.2554 1.36667C18.32 -0.455538 15.1821 -0.455538 13.2467 1.36667L9.53349 4.85937C9.43153 4.95583 9.40212 5.10093 9.45916 5.22598C9.51553 5.35139 9.64727 5.43188 9.79188 5.42927H9.92284C10.6985 5.42794 11.4668 5.56944 12.1847 5.84587C12.3173 5.89723 12.4696 5.86825 12.5706 5.77256L15.236 3.26633C16.0659 2.48499 17.4114 2.48499 18.2412 3.26633C19.0711 4.04768 19.0711 5.31448 18.2412 6.09582L14.9209 9.21858L14.8926 9.24858L13.7316 10.3351C12.9024 11.1148 11.5591 11.1148 10.7299 10.3351C10.171 9.83988 9.29933 9.83988 8.74053 10.3351C8.49857 10.5633 8.35268 10.8665 8.32991 11.1882C8.30402 11.57 8.45356 11.9439 8.74053 12.2147C9.15024 12.6021 9.6296 12.918 10.1564 13.1479C10.2308 13.1812 10.3051 13.2079 10.3794 13.2379C10.4538 13.2679 10.5316 13.2912 10.606 13.3178C10.6803 13.3445 10.7581 13.3678 10.8325 13.3878L11.0413 13.4411C11.1829 13.4745 11.3245 13.5011 11.4696 13.5245C11.6444 13.5489 11.8205 13.5645 11.9971 13.5711H12.2448H12.2661L12.4785 13.5478C12.5563 13.5445 12.6378 13.5278 12.7298 13.5278H12.8501L13.0944 13.4945L13.2077 13.4745L13.413 13.4345H13.4519C14.3214 13.2289 15.1154 12.805 15.7492 12.208L20.2553 7.96549C22.1908 6.14328 22.1908 3.18889 20.2554 1.36667Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_192">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.466248)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="share-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_214)">
<path d="M21.6219 9.99298L12.794 0.878906V6.31653H10.9171C5.09729 6.31653 0.379547 10.7584 0.379547 16.2378V19.1194L1.21321 18.2593C4.04759 15.3354 8.05808 13.6694 12.2627 13.6694H12.794V19.1071L21.6219 9.99298Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_214">
<rect width="21.2423" height="19.9609" fill="white"
transform="translate(0.379547)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="delete-btn">
<svg width="22" height="20" viewBox="0 0 22 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2_167)">
<path d="M7.45361 1.81818C7.45361 1.22197 7.94781 0.78624 8.58105 0.78624H13.2158C13.8488 0.78624 14.343 1.22197 14.343 1.81818V2.9484H15.1781V1.81818C15.1781 0.788543 14.3094 0 13.2158 0H8.58105C7.48745 0 6.61853 0.788543 6.61853 1.81818V2.9484H7.45361V1.81818Z"
fill="#858796"/>
<path d="M5.96102 20H15.8358C16.7879 20 17.5267 19.2115 17.5267 18.231V6.09337H4.26987V18.231C4.26987 19.2115 5.00872 20 5.96102 20ZM13.5601 7.97048C13.5601 7.75338 13.7471 7.57736 13.9777 7.57736C14.2082 7.57736 14.3952 7.75338 14.3952 7.97048V17.258C14.3952 17.475 14.2082 17.6511 13.9777 17.6511C13.7471 17.6511 13.5601 17.475 13.5601 17.258V7.97048ZM10.4808 7.97048C10.4808 7.75338 10.6677 7.57736 10.8983 7.57736C11.1289 7.57736 11.3158 7.75338 11.3158 7.97048V17.258C11.3158 17.475 11.1289 17.6511 10.8983 17.6511C10.6677 17.6511 10.4808 17.475 10.4808 17.258V7.97048ZM7.40141 7.97048C7.40141 7.75338 7.58837 7.57736 7.81895 7.57736C8.04954 7.57736 8.23649 7.75338 8.23649 7.97048V17.258C8.23649 17.475 8.04954 17.6511 7.81895 17.6511C7.58837 17.6511 7.40141 17.475 7.40141 17.258V7.97048Z"
fill="#858796"/>
<path d="M3.84194 5.30712H17.9547C18.5313 5.30712 18.9985 4.86717 18.9985 4.32432C18.9985 3.78148 18.5313 3.34152 17.9547 3.34152H3.84194C3.26538 3.34152 2.7981 3.78148 2.7981 4.32432C2.7981 4.86717 3.26538 5.30712 3.84194 5.30712Z"
fill="#858796"/>
</g>
<defs>
<clipPath id="clip0_2_167">
<rect width="21.2423" height="20" fill="white"
transform="translate(0.292847)"/>
</clipPath>
</defs>
</svg>
</button>
<button class="additional-menu-btn">
<svg class="additional-menu-btn-svg" width="28" height="6" viewBox="0 0 28 6"
xmlns="http://www.w3.org/2000/svg">
<ellipse cx="3.39259" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="14.0137" cy="3" rx="3.18635" ry="3"/>
<ellipse cx="24.6349" cy="3" rx="3.18635" ry="3"/>
</svg>
</button>
</div>
</div>
<div class="video-item-status published">Published</div>
</div>
</div>
<button class="tech-support-btn">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_7683_14)">
<path d="M18.0233 0.333332L5.31 0.333332C4.22 0.333332 3.33333 1.22 3.33333 2.31L3.33333 5H1.97667C0.886667 5 0 5.88667 0 6.97633L0 14.0233C0 15.1133 0.886667 16 1.97667 16H4L4 19.3333C4 19.471 4.08467 19.5947 4.21333 19.6443C4.25233 19.6593 4.293 19.6667 4.33333 19.6667C4.42533 19.6667 4.51567 19.6283 4.58 19.5577L7.814 16L14.69 16C15.78 16 16.6667 15.1133 16.6667 14.0233V11.3333H18.0233C19.1133 11.3333 20 10.4467 20 9.35666V2.31C20 1.22 19.1133 0.333332 18.0233 0.333332ZM16 14.0233C16 14.7457 15.4123 15.3333 14.69 15.3333L7.66667 15.3333C7.57267 15.3333 7.483 15.373 7.42 15.4423L4.66667 18.4713V15.6667C4.66667 15.4827 4.51767 15.3333 4.33333 15.3333H1.97667C1.25433 15.3333 0.666667 14.7457 0.666667 14.0233L0.666667 6.97633C0.666667 6.25433 1.25433 5.66667 1.97667 5.66667H3.66667L14.69 5.66667C14.961 5.66667 15.2127 5.74933 15.422 5.89067C15.7703 6.12633 16 6.525 16 6.97667V11V14.0233ZM19.3333 9.35666C19.3333 10.079 18.7457 10.6667 18.0233 10.6667H16.6667V6.97667C16.6667 6.09133 16.0813 5.34 15.2773 5.08933C15.2153 5.07 15.1523 5.05367 15.088 5.04067C14.9593 5.014 14.8263 5 14.69 5L4 5L4 2.31C4 1.58767 4.58767 0.999999 5.31 0.999999L18.0233 0.999999C18.7457 0.999999 19.3333 1.58767 19.3333 2.31V9.35666Z"
fill="white"/>
<path d="M4.00002 9.005H8.66669C8.85102 9.005 9.00002 8.85567 9.00002 8.67167C9.00002 8.48767 8.85102 8.33833 8.66669 8.33833H4.00002C3.81569 8.33833 3.66669 8.48767 3.66669 8.67167C3.66669 8.85567 3.81569 9.005 4.00002 9.005Z"
fill="white"/>
<path d="M13 10.3383H4.00002C3.81569 10.3383 3.66669 10.4877 3.66669 10.6717C3.66669 10.8557 3.81569 11.005 4.00002 11.005H13C13.1844 11.005 13.3334 10.8557 13.3334 10.6717C13.3334 10.4877 13.1844 10.3383 13 10.3383Z"
fill="white"/>
<path d="M13 12.3383H4.00002C3.81569 12.3383 3.66669 12.4877 3.66669 12.6717C3.66669 12.8557 3.81569 13.005 4.00002 13.005H13C13.1844 13.005 13.3334 12.8557 13.3334 12.6717C13.3334 12.4877 13.1844 12.3383 13 12.3383Z"
fill="white"/>
</g>
<defs>
<clipPath id="clip0_7683_14">
<rect width="20" height="20" fill="white" transform="matrix(0 1 -1 0 20 0)"/>
</clipPath>
</defs>
</svg>
<span class="tech-support-text">Technical support</span>
</button>
</div>
</div>
</div>
</body>
<script></script>
</html>