ca-components 1.0.32 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1882 @@
1
+ @import "theme/variables.scss";
2
+
3
+ .ca-input-dropdown {
4
+ .arrow {
5
+ display: none !important;
6
+ }
7
+
8
+ .popover-body {
9
+ margin-top: -2px !important;
10
+
11
+ .dropdown-options-divider {
12
+ content: "";
13
+ height: 1px;
14
+ border-radius: 1px;
15
+ background-color: #424242;
16
+ position: absolute;
17
+ z-index: 99999;
18
+ top: 0px;
19
+ left: 0px;
20
+
21
+ @for $i from 1 through 800 {
22
+ &.w-col-#{$i} {
23
+ width: unquote($i - 8 + "px");
24
+ }
25
+ }
26
+
27
+ &.dispatch_dropdown {
28
+ top: -4px;
29
+ }
30
+ }
31
+ // ---------------------------------------- DROPDOWN ----------------------------------------
32
+ .dropdown-options {
33
+ position: relative;
34
+ top: 0px;
35
+ left: 0px;
36
+ z-index: 1000;
37
+ max-height: 190px;
38
+ width: 100%;
39
+ background-color: #2f2f2f;
40
+ border-radius: 3px;
41
+ padding: 4px;
42
+ overflow: hidden;
43
+
44
+ &.scroll {
45
+ transition: all 0.3s ease-in-out;
46
+ overflow-y: scroll !important;
47
+ padding-right: 0px;
48
+
49
+ &::-webkit-scrollbar {
50
+ width: 3px;
51
+ }
52
+ &::-webkit-scrollbar-thumb {
53
+ background-color: transparent;
54
+ border: 6px solid #aaaaaa;
55
+ border-radius: 1px;
56
+ }
57
+ &::-webkit-scrollbar-track {
58
+ padding: 0;
59
+ position: relative;
60
+ right: 0;
61
+ top: 0;
62
+ background: transparent;
63
+ }
64
+ }
65
+
66
+ &-fuel-franchise {
67
+ padding: 4px;
68
+ max-height: 300px;
69
+ }
70
+
71
+ &.no-result-container {
72
+ padding: 6px 10px !important;
73
+ }
74
+
75
+ //------------------------ Svg-Template-Logo Template ------------------------
76
+ .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) {
77
+ .svg-template-logo {
78
+ height: 18px;
79
+
80
+ svg:not(:hover) {
81
+ path {
82
+ fill: #aaaaaa;
83
+ }
84
+ }
85
+ }
86
+
87
+ .load-dispatches-container {
88
+ svg:not(:hover):not(.load-dipstaches-owner-flag) {
89
+ #Ellipse_9856,
90
+ #Ellipse_9857,
91
+ #Ellipse_9858,
92
+ path {
93
+ fill: #aaaaaa;
94
+ }
95
+ }
96
+ }
97
+ }
98
+
99
+ //------------------------ Default Template ------------------------
100
+ .dropdown-option {
101
+ padding: 3px 4px;
102
+ height: 26px;
103
+ font-size: 14px;
104
+ font-weight: 400;
105
+ border-radius: 2px;
106
+ white-space: nowrap;
107
+ overflow: hidden;
108
+ text-overflow: ellipsis;
109
+ color: $white-2;
110
+
111
+ // Text and Additional Text
112
+ &.dropdown-double-text-option {
113
+ display: flex;
114
+ align-items: center;
115
+ justify-content: space-between;
116
+
117
+ .additional-text {
118
+ font-size: 11px;
119
+ font-weight: 400;
120
+ color: $bw5;
121
+ line-height: 14px;
122
+
123
+ &.active {
124
+ color: #6f9ee0;
125
+ font-weight: 700;
126
+ }
127
+ }
128
+
129
+ &:hover {
130
+ .additional-text {
131
+ &.active {
132
+ color: $ta-blue-17;
133
+ }
134
+ }
135
+ }
136
+ }
137
+
138
+ // Double Column
139
+ &.dropdown-double-column-option {
140
+ display: grid;
141
+ grid-template-columns: 118px 470px;
142
+ grid-gap: 4px;
143
+
144
+ &-add-new {
145
+ display: flex;
146
+ align-items: center;
147
+ justify-content: flex-end;
148
+ padding-left: 0 !important;
149
+ }
150
+
151
+ &-text {
152
+ color: $white-2;
153
+ font-size: 14px;
154
+ line-height: 18px;
155
+ }
156
+ }
157
+
158
+ // Triple Column
159
+ &.dropdown-triple-column-option {
160
+ display: grid;
161
+ grid-template-columns: 216px 138px 206px;
162
+ grid-gap: 4px;
163
+
164
+ &-add-new {
165
+ display: flex;
166
+ align-items: center;
167
+ justify-content: flex-end;
168
+ padding-left: 0 !important;
169
+ }
170
+
171
+ &-text {
172
+ color: $white-2;
173
+ font-size: 14px;
174
+ line-height: 18px;
175
+ }
176
+ }
177
+
178
+ // This class is for moving with keyboard
179
+ &.dropdown-option-hovered {
180
+ background: $ta-black;
181
+ color: $white-2;
182
+ border-radius: 2px;
183
+ cursor: pointer;
184
+
185
+ .svgtext-template-logo {
186
+ &.truck-trailer-logo {
187
+ display: inline-block !important;
188
+ }
189
+ }
190
+ }
191
+
192
+ &:hover {
193
+ background: $ta-black;
194
+ color: $white-2;
195
+ border-radius: 2px;
196
+ cursor: pointer;
197
+
198
+ .svgtext-template-logo {
199
+ &.truck-trailer-logo {
200
+ display: inline-block !important;
201
+ }
202
+ }
203
+ }
204
+
205
+ &.disabled {
206
+ color: #6c6c6c;
207
+ pointer-events: none;
208
+ -webkit-user-select: none;
209
+ -moz-user-select: none;
210
+ -ms-user-select: none;
211
+ user-select: none;
212
+ }
213
+
214
+ &.no-result {
215
+ line-height: 14px;
216
+ font-size: 11px;
217
+ font-weight: 700;
218
+ color: $bw5;
219
+ height: auto !important;
220
+ -webkit-user-select: none;
221
+ -moz-user-select: none;
222
+ -ms-user-select: none;
223
+ user-select: none;
224
+ pointer-events: none;
225
+
226
+ &:hover {
227
+ background-color: transparent !important;
228
+ }
229
+ div {
230
+ padding-top: 1px;
231
+ }
232
+ }
233
+
234
+ &.add-new {
235
+ padding: 4.5px 6px 4.5px 4px;
236
+ font-size: 11px;
237
+ font-weight: 700;
238
+ color: $ta-blue-19;
239
+ position: relative;
240
+ transition:
241
+ background 0.2s ease-in-out,
242
+ color 0.2s ease-in-out;
243
+
244
+ &:hover {
245
+ color: $white-2;
246
+ background: $ta-blue-21;
247
+ }
248
+
249
+ .labels-template-text {
250
+ color: $ta-blue-7;
251
+ font-weight: 600 !important;
252
+ transition: all 0.3s ease-in-out;
253
+ }
254
+
255
+ .plus-icon {
256
+ margin-left: auto !important;
257
+ position: relative;
258
+ bottom: 1px;
259
+
260
+ svg {
261
+ path {
262
+ fill: $ta-blue-19;
263
+ }
264
+ }
265
+ }
266
+ }
267
+
268
+ &.all-assigned {
269
+ .details-template-text,
270
+ .svgtext-template-text {
271
+ color: $bw5;
272
+ font-size: 11px;
273
+ font-weight: 700;
274
+ line-height: 14px;
275
+ pointer-events: none;
276
+ -webkit-user-select: none;
277
+ -moz-user-select: none;
278
+ -ms-user-select: none;
279
+ user-select: none;
280
+ }
281
+ }
282
+
283
+ &.active-repair-truck-trailer {
284
+ color: #6f9ee0;
285
+ position: relative;
286
+
287
+ &:hover {
288
+ color: $ta-blue-17;
289
+ transition: all 0.3s ease-in-out;
290
+ }
291
+
292
+ // Higlight text
293
+ .highlight-text-45632 {
294
+ background-color: $ta-blue-20;
295
+ color: $ta-blue-19;
296
+ transition: all 0.3s ease-in-out;
297
+ &:hover {
298
+ color: $ta-blue-17 !important;
299
+ }
300
+ }
301
+
302
+ &::after {
303
+ display: none;
304
+ }
305
+ }
306
+ &.active-label,
307
+ &.active-dark {
308
+ .labels-template-counter {
309
+ background-color: #3b73ed !important;
310
+ color: #ffffff !important;
311
+ }
312
+ }
313
+ &.active,
314
+ &.active-label {
315
+ color: #ffffff;
316
+ font-size: 14px;
317
+ font-weight: 700;
318
+ position: relative;
319
+
320
+ // Higlight text
321
+ .highlight-text-45632 {
322
+ background-color: $ta-blue-20;
323
+ color: $ta-blue-19;
324
+ transition: all 0.3s ease-in-out;
325
+ &:hover {
326
+ color: #ffffff !important;
327
+ }
328
+ }
329
+ &:not(.payroll-trucks)::after {
330
+ display: inline-block;
331
+ position: absolute;
332
+ right: 6px;
333
+ top: 28%;
334
+ transform: translateY(-50%);
335
+ content: url("/assets/ca-components/svg/input/ic_confirm.svg");
336
+ width: 14px;
337
+ height: 10px;
338
+ }
339
+ }
340
+
341
+ &.active-label {
342
+ &::after {
343
+ right: 35px;
344
+ }
345
+ }
346
+
347
+ &.last-active {
348
+ position: relative;
349
+ &::before {
350
+ content: "";
351
+ position: absolute;
352
+ bottom: -1px;
353
+ left: 0px;
354
+ height: 2px;
355
+ width: 100%;
356
+ background-color: rgb(170, 170, 170, 0.2);
357
+ border-radius: 1px;
358
+ }
359
+ }
360
+
361
+ // Higlight text
362
+ .highlight-text-45632 {
363
+ background-color: $ta-blue-20;
364
+ color: $ta-blue-19;
365
+ transition: all 0.3s ease-in-out;
366
+ }
367
+
368
+ //------------------------ Trucks, Trailers, Colors Template ------------------------
369
+ &.svg-text-template {
370
+ display: flex;
371
+ align-items: center;
372
+
373
+ &.hazardous {
374
+ display: flex;
375
+ flex-direction: row-reverse;
376
+ justify-content: flex-end;
377
+
378
+ svg {
379
+ margin-right: 5px;
380
+ }
381
+ }
382
+ .svgtext-template-logo {
383
+ display: flex;
384
+ margin-right: 6px;
385
+ &.no-svg {
386
+ margin-right: 0px !important;
387
+ }
388
+
389
+ &.hazardous-svg {
390
+ line-height: 14px;
391
+ }
392
+ &.state-logo {
393
+ svg {
394
+ path {
395
+ fill: #cccc;
396
+ }
397
+ }
398
+ }
399
+
400
+ &.truck-trailer-logo {
401
+ position: absolute;
402
+ right: 25px;
403
+ text-align: right;
404
+ display: none;
405
+ margin-right: 0px;
406
+
407
+ &.container {
408
+ right: 13px;
409
+ }
410
+ }
411
+
412
+ &.radiator,
413
+ &.turbo,
414
+ &.alignment,
415
+ &.accompressor,
416
+ &.aircompressor,
417
+ &.fuelpump,
418
+ &.waterpump,
419
+ &.oilpump,
420
+ &.brakechamber,
421
+ &.battery,
422
+ &.enginetuneup {
423
+ svg {
424
+ path {
425
+ fill: $bw5;
426
+ }
427
+ }
428
+ }
429
+ }
430
+
431
+ .svgtext-template-text {
432
+ position: relative;
433
+
434
+ &.truck-text {
435
+ top: 1px;
436
+ }
437
+
438
+ &.flex-1 {
439
+ flex: 1;
440
+ }
441
+
442
+ &.additional-text {
443
+ font-size: 11px;
444
+ font-weight: 400;
445
+ line-height: 14px;
446
+ color: $bw5;
447
+ text-align: right;
448
+ }
449
+ }
450
+
451
+ .colors {
452
+ height: 18px;
453
+ width: 18px;
454
+ }
455
+
456
+ &.hazardous-dropdown {
457
+ .svgtext-template-logo {
458
+ order: 2;
459
+ margin-right: 0px;
460
+ position: relative;
461
+ bottom: 1px;
462
+ }
463
+
464
+ .svgtext-template-text {
465
+ order: 1;
466
+ margin-right: 6px;
467
+ }
468
+ }
469
+ }
470
+
471
+ //------------------------ Labels Template ------------------------
472
+ &.labels-template {
473
+ display: flex;
474
+ align-items: center;
475
+
476
+ .labels-template-left-side {
477
+ display: flex;
478
+ align-items: center;
479
+
480
+ .labels-template-logo {
481
+ svg {
482
+ width: 18px;
483
+ height: 18px;
484
+ }
485
+ }
486
+
487
+ .labels-template-vertical-divider {
488
+ width: 1px;
489
+ height: 15px;
490
+ background-color: rgb(170, 170, 170, 0.2);
491
+ content: "";
492
+ margin: 0 6px;
493
+ }
494
+ }
495
+
496
+ .labels-template-right-side {
497
+ flex: 1;
498
+ display: flex;
499
+ align-items: center;
500
+ justify-content: space-between;
501
+
502
+ .labels-template-text {
503
+ margin-right: 28px;
504
+ font-size: 14px;
505
+ font-weight: 400;
506
+ line-height: 18px;
507
+ color: #ffffff;
508
+ &.lable-text-wrap {
509
+ text-overflow: ellipsis;
510
+ overflow: hidden;
511
+ width: 80px;
512
+ white-space: nowrap;
513
+ }
514
+ &.add-new {
515
+ font-size: 11px;
516
+ font-weight: 700;
517
+ color: #6f9ee0;
518
+ transition: all 0.3s ease-in-out;
519
+ position: relative;
520
+ }
521
+
522
+ &.no-result {
523
+ line-height: 14px;
524
+ font-size: 11px;
525
+ font-weight: 700;
526
+ padding: 0px !important;
527
+ color: $bw5;
528
+ height: 12px;
529
+ -webkit-user-select: none;
530
+ -moz-user-select: none;
531
+ -ms-user-select: none;
532
+ user-select: none;
533
+ pointer-events: none;
534
+
535
+ &:hover {
536
+ background-color: transparent !important;
537
+ }
538
+
539
+ div {
540
+ padding-top: 1px;
541
+ }
542
+ }
543
+ }
544
+
545
+ .labels-template-counter {
546
+ width: 22px;
547
+ height: 16px;
548
+ border-radius: 20px;
549
+ background-color: rgb(204, 204, 204, 0.2);
550
+ color: #aaaaaa;
551
+ text-align: center;
552
+ font-size: 11px;
553
+ font-weight: 500;
554
+ padding: 0 4.5px;
555
+ &.dont-show-counter {
556
+ display: none;
557
+ }
558
+ }
559
+ }
560
+
561
+ &.no-result {
562
+ height: 14px;
563
+ font-size: 11px;
564
+ font-weight: 700;
565
+ padding: 0px !important;
566
+ color: $bw5;
567
+ -webkit-user-select: none;
568
+ -moz-user-select: none;
569
+ -ms-user-select: none;
570
+ user-select: none;
571
+ pointer-events: none;
572
+
573
+ &:hover {
574
+ background-color: transparent !important;
575
+ }
576
+
577
+ div {
578
+ padding-top: 1px;
579
+ }
580
+ }
581
+
582
+ &:hover {
583
+ .labels-template-text {
584
+ color: #ffffff;
585
+
586
+ &.add-new {
587
+ color: $ta-blue-17;
588
+ }
589
+ }
590
+
591
+ .labels-template-counter {
592
+ background-color: rgb(204, 204, 204, 0.2);
593
+ color: #dadada;
594
+ }
595
+ }
596
+ }
597
+
598
+ //------------------------ Details Template ------------------------
599
+ &.details-template {
600
+ display: grid;
601
+ grid-template-columns: auto 14px 1fr;
602
+ align-items: center;
603
+ justify-content: space-between;
604
+
605
+ &.load-details-template {
606
+ grid-template-columns: 30px 130px 1fr;
607
+ grid-gap: 4px;
608
+ }
609
+
610
+ &.add-new {
611
+ grid-template-columns: 1fr 1fr;
612
+ margin-right: 6px;
613
+ }
614
+
615
+ &.dropdown-option {
616
+ position: relative;
617
+ }
618
+
619
+ .details-template-text {
620
+ &.active {
621
+ color: #6f9ee0;
622
+
623
+ &:hover {
624
+ color: $ta-blue-17;
625
+ transition: all 0.3s ease-in-out;
626
+ }
627
+ }
628
+ }
629
+
630
+ .details-template-logo {
631
+ margin-left: 6px;
632
+ line-height: 15px;
633
+ }
634
+
635
+ .driver-details-template-container {
636
+ position: absolute;
637
+ right: 6px;
638
+
639
+ p {
640
+ font-size: 11px;
641
+ line-height: 18px;
642
+ color: $bw5;
643
+
644
+ user-select: none;
645
+ -webkit-user-select: none;
646
+ -moz-user-select: none;
647
+ -ms-user-select: none;
648
+ }
649
+
650
+ .right-box {
651
+ margin-left: 4px;
652
+ padding: 0 6px;
653
+
654
+ p {
655
+ color: $ta-light-grey-2;
656
+ }
657
+ }
658
+ }
659
+
660
+ .additional-text {
661
+ font-size: 11px;
662
+ color: $bw5;
663
+ line-height: 12px;
664
+ }
665
+ }
666
+
667
+ //------------------------ Text Counter Template ------------------------
668
+
669
+ &-text-counter {
670
+ display: flex;
671
+ align-items: center;
672
+ justify-content: space-between;
673
+
674
+ .option-counter {
675
+ min-width: 22px;
676
+ height: 16px;
677
+ border-radius: 20px;
678
+ background-color: rgb(204, 204, 204, 0.2);
679
+ color: #aaaaaa;
680
+ font-size: 11px;
681
+ font-weight: 500;
682
+ text-align: center;
683
+ padding: 0 4.5px;
684
+ }
685
+
686
+ &.active {
687
+ &::after {
688
+ right: 35px;
689
+ top: 3.5px;
690
+ }
691
+ }
692
+
693
+ &:hover {
694
+ .option-counter {
695
+ background-color: rgb(204, 204, 204, 0.2);
696
+ }
697
+ }
698
+ }
699
+
700
+ //------------------------ Fuel Franchise Template ------------------------
701
+
702
+ &-fuel-franchise {
703
+ display: flex;
704
+ flex-direction: column;
705
+ justify-content: center;
706
+ height: auto;
707
+ min-height: 26px;
708
+ border-radius: 2px;
709
+
710
+ // Franchise Header
711
+ .fuel-franchise-header {
712
+ display: flex;
713
+ align-items: center;
714
+ justify-content: space-between;
715
+ padding: 0 2px;
716
+ -webkit-user-select: none;
717
+ -moz-user-select: none;
718
+ -ms-user-select: none;
719
+ user-select: none;
720
+
721
+ .fuel-franchise-header-right-side {
722
+ display: flex;
723
+ align-items: center;
724
+ gap: 6px;
725
+
726
+ .option-counter {
727
+ min-width: 22px;
728
+ height: 16px;
729
+ border-radius: 20px;
730
+ background-color: rgb(204, 204, 204, 0.2);
731
+ color: #aaaaaa;
732
+ font-size: 11px;
733
+ font-weight: 500;
734
+ text-align: center;
735
+ padding: 0 4.5px;
736
+ -webkit-user-select: none;
737
+ -moz-user-select: none;
738
+ -ms-user-select: none;
739
+ user-select: none;
740
+ }
741
+
742
+ .header-arrow {
743
+ width: 18px;
744
+ height: 18px;
745
+ line-height: 15px;
746
+ transition: all 0.3s ease-in-out;
747
+
748
+ svg {
749
+ transform: rotate(0deg);
750
+ transition: all 0.3s ease-in-out;
751
+ path {
752
+ fill: #aaaaaa;
753
+ }
754
+ }
755
+
756
+ &.rotate {
757
+ svg {
758
+ transform: rotate(180deg);
759
+ transition: all 0.3s ease-in-out;
760
+ }
761
+ }
762
+
763
+ &:hover {
764
+ svg {
765
+ path {
766
+ fill: #dadada;
767
+ }
768
+ }
769
+ }
770
+ }
771
+ }
772
+ }
773
+
774
+ // Franchise Stores
775
+ .fuel-franchise-stores {
776
+ display: flex;
777
+ flex-direction: column;
778
+ justify-content: center;
779
+ gap: 4px;
780
+ max-height: 237px;
781
+
782
+ .fuel-franchise-single-store {
783
+ height: 26px;
784
+ border-radius: 2px;
785
+ display: flex;
786
+ align-items: center;
787
+ justify-content: space-between;
788
+ padding-left: 3px;
789
+ padding-right: 24px;
790
+ padding: 3px 26px 4px 4px;
791
+
792
+ .fuel-franchise-store-name {
793
+ font-size: 14px;
794
+ font-weight: 400;
795
+ height: 19px;
796
+ -webkit-user-select: none;
797
+ -moz-user-select: none;
798
+ -ms-user-select: none;
799
+ user-select: none;
800
+ color: #ffffff;
801
+ }
802
+
803
+ .fuel-franchise-store-address {
804
+ font-size: 11px;
805
+ font-weight: 500;
806
+ line-height: 14px;
807
+ -webkit-user-select: none;
808
+ -moz-user-select: none;
809
+ -ms-user-select: none;
810
+ user-select: none;
811
+ color: $ta-light-grey-6;
812
+ }
813
+
814
+ &.active {
815
+ .fuel-franchise-store-name,
816
+ .fuel-franchise-store-address {
817
+ color: #ffffff !important;
818
+ }
819
+
820
+ .highlight-text-45632 {
821
+ background-color: $ta-blue-20;
822
+ color: $ta-blue-19;
823
+ transition: all 0.3s ease-in-out;
824
+ }
825
+ }
826
+
827
+ &:hover {
828
+ color: #ffffff;
829
+ background-color: #1d1d1d;
830
+
831
+ // Higlight text
832
+ &.active {
833
+ .fuel-franchise-store-name,
834
+ .fuel-franchise-store-address {
835
+ color: #ffffff !important;
836
+ font-weight: 700;
837
+ }
838
+ }
839
+ }
840
+ }
841
+
842
+ &.scroll {
843
+ transition: all 0.3s ease-in-out;
844
+ overflow-y: scroll !important;
845
+
846
+ &::-webkit-scrollbar {
847
+ width: 3px;
848
+ }
849
+ &::-webkit-scrollbar-thumb {
850
+ background-color: transparent;
851
+ border: 6px solid #aaaaaa;
852
+ border-radius: 1px;
853
+ }
854
+ &::-webkit-scrollbar-track {
855
+ padding: 0;
856
+ position: relative;
857
+ right: 0;
858
+ top: 0;
859
+ background: transparent;
860
+ }
861
+
862
+ .fuel-franchise-single-store {
863
+ padding: 3px 22px 4px 4px;
864
+ }
865
+ }
866
+ }
867
+
868
+ &.active-stores {
869
+ background-color: rgb(170, 170, 170, 0.1);
870
+
871
+ .fuel-franchise-main-header {
872
+ color: #ffffff;
873
+ font-weight: 700;
874
+ }
875
+
876
+ &:hover {
877
+ background-color: rgb(170, 170, 170, 0.1);
878
+ color: #dadada;
879
+ }
880
+ }
881
+
882
+ &.active-stores-header-hover {
883
+ &:hover {
884
+ background-color: #2f2f2f;
885
+ position: relative;
886
+
887
+ .fuel-franchise-header {
888
+ color: #ffffff;
889
+ background-color: #1d1d1d;
890
+ font-weight: 700;
891
+ position: relative;
892
+ }
893
+
894
+ .helper-hover-container {
895
+ content: "";
896
+ width: 105%;
897
+ height: 26px;
898
+ background-color: #1d1d1d;
899
+ position: absolute;
900
+ top: 0px;
901
+ left: 0px;
902
+ border-radius: 2px;
903
+ }
904
+
905
+ .fuel-franchise-header {
906
+ .fuel-franchise-header-right-side {
907
+ .header-arrow {
908
+ svg {
909
+ path {
910
+ fill: #dadada;
911
+ }
912
+ }
913
+ }
914
+ }
915
+ }
916
+ }
917
+ }
918
+ }
919
+
920
+ //------------------------ SVG Template ------------------------
921
+ .svg-template-logo {
922
+ height: 18px;
923
+ aspect-ratio: 1;
924
+ }
925
+
926
+ //------------------------ Routing Dropdown ------------------------
927
+
928
+ &.routing_dropdown {
929
+ font-size: 11px;
930
+ height: 22px;
931
+ }
932
+ }
933
+
934
+ &.dropdown-status {
935
+ .dropdown-option {
936
+ font-weight: bold;
937
+ text-transform: uppercase;
938
+ }
939
+ }
940
+
941
+ //------------------------ Load Dispatcher Template ------------------------
942
+ .load-dispatcher-template {
943
+ display: flex;
944
+ align-items: center;
945
+ gap: 6px;
946
+ }
947
+
948
+ //------------------------ Load Dispatches TTD Template ------------------------
949
+ .load-dispatches-ttd-template {
950
+ display: grid;
951
+ grid-template-columns: repeat(3, 155px) 97px;
952
+ align-items: center;
953
+
954
+ .load-dispatches-container {
955
+ display: flex;
956
+ align-items: center;
957
+ gap: 6px;
958
+ position: relative;
959
+
960
+ .owner-avatar {
961
+ position: absolute;
962
+ left: 13px;
963
+ bottom: -3px;
964
+ width: 10px;
965
+ height: 10px;
966
+ }
967
+
968
+ .load-dispatch-driver,
969
+ .load-dispatch-truck,
970
+ .load-dispatch-trailer {
971
+ overflow: hidden;
972
+ text-overflow: ellipsis;
973
+ white-space: nowrap;
974
+ width: 116px;
975
+ max-width: -webkit-fit-content;
976
+ max-width: -moz-fit-content;
977
+ max-width: fit-content;
978
+ line-height: 18px;
979
+ font-size: 14px;
980
+ font-weight: 400;
981
+ }
982
+
983
+ .load-dispatches-svg {
984
+ line-height: 16px;
985
+ svg {
986
+ width: 46px;
987
+ height: 16px;
988
+ }
989
+ }
990
+
991
+ .load-dipstaches-owner-flag {
992
+ position: absolute;
993
+ top: 44%;
994
+ right: 0;
995
+ transform: translateY(-50%);
996
+ svg {
997
+ path {
998
+ fill: #6f9ee0 !important;
999
+ }
1000
+ }
1001
+ }
1002
+
1003
+ &.trailerContainer {
1004
+ width: -webkit-max-content !important;
1005
+ width: -moz-max-content !important;
1006
+ width: max-content !important;
1007
+ padding: 0px !important;
1008
+ margin: 0px !important;
1009
+ }
1010
+ }
1011
+
1012
+ .load-dispatch-driver-rate {
1013
+ width: 130px;
1014
+ text-align: right;
1015
+ font-size: 11px;
1016
+ font-weight: 400;
1017
+ color: $bw5;
1018
+ padding-bottom: 1px;
1019
+ text-overflow: ellipsis;
1020
+ white-space: nowrap;
1021
+ overflow: hidden;
1022
+
1023
+ &.active {
1024
+ color: #6f9ee0;
1025
+ }
1026
+
1027
+ &.driver-owner {
1028
+ text-align: left;
1029
+ width: 80px;
1030
+ }
1031
+ }
1032
+
1033
+ &.active {
1034
+ .load-dispatch-driver-rate,
1035
+ .load-dispatch-driver,
1036
+ .load-dispatch-truck,
1037
+ .load-dispatch-trailer {
1038
+ font-weight: 700;
1039
+ }
1040
+ }
1041
+ }
1042
+
1043
+ //------------------------ Load Broker Template ------------------------
1044
+ .load-broker-template {
1045
+ display: grid;
1046
+ align-items: center;
1047
+ grid-template-columns: 276px 92px;
1048
+ -moz-column-gap: 29px;
1049
+ column-gap: 29px;
1050
+ &.hide-loads {
1051
+ grid-template-columns: 333px 92px !important;
1052
+ }
1053
+ .load-broker-status-text {
1054
+ display: flex;
1055
+ align-items: center;
1056
+ gap: 6px;
1057
+ line-height: 18px;
1058
+
1059
+ .load-broker-status {
1060
+ position: relative;
1061
+ line-height: 17px;
1062
+
1063
+ &.dnu-status {
1064
+ svg {
1065
+ path {
1066
+ fill: #aaaaaa;
1067
+ }
1068
+ }
1069
+ }
1070
+ }
1071
+
1072
+ .load-broker-text {
1073
+ &.disabled {
1074
+ color: #6c6c6c;
1075
+ }
1076
+ }
1077
+ }
1078
+
1079
+ .load-broker-progress-status {
1080
+ height: 14px;
1081
+ display: flex;
1082
+ align-items: center;
1083
+ justify-content: flex-end;
1084
+ grid-gap: 4px;
1085
+ gap: 4px;
1086
+ text-align: center;
1087
+
1088
+ .progress-bar-price {
1089
+ color: $bw5;
1090
+ font-size: 11px;
1091
+ font-weight: 400;
1092
+ }
1093
+
1094
+ .progress-bar-line {
1095
+ width: 24px;
1096
+ }
1097
+ }
1098
+
1099
+ .load-broker-load-counter {
1100
+ max-width: -webkit-max-content;
1101
+ max-width: -moz-max-content;
1102
+ max-width: max-content;
1103
+ height: 18px;
1104
+ border-radius: 30px;
1105
+ text-align: center;
1106
+ font-size: 11px;
1107
+ font-weight: 400;
1108
+ color: $bw5;
1109
+ background-color: rgb(145, 145, 145, 0.2);
1110
+ padding: 1px 6px;
1111
+
1112
+ &.active {
1113
+ color: #6f9ee0;
1114
+ background-color: rgb(111, 158, 224, 0.2);
1115
+ }
1116
+
1117
+ &.hasOneValue {
1118
+ max-width: 19px !important;
1119
+ }
1120
+ }
1121
+ }
1122
+
1123
+ //------------------------ Load Shipper Contact Template -----------------------
1124
+ .load-shipper-template {
1125
+ display: grid;
1126
+ grid-template-columns: 405px 166px;
1127
+ align-items: center;
1128
+ padding-right: 25px;
1129
+
1130
+ .load-shipper-status-text {
1131
+ display: flex;
1132
+ align-items: center;
1133
+ gap: 6px;
1134
+ line-height: 18px;
1135
+
1136
+ .load-shipper-status {
1137
+ position: relative;
1138
+ line-height: 17px;
1139
+ }
1140
+
1141
+ .load-shipper-text {
1142
+ &.disabled {
1143
+ color: #6c6c6c;
1144
+ }
1145
+ }
1146
+ }
1147
+
1148
+ div {
1149
+ &:nth-child(2),
1150
+ &:nth-child(3) {
1151
+ text-align: right;
1152
+ }
1153
+
1154
+ &:nth-child(2) {
1155
+ color: $bw5;
1156
+ font-size: 11px;
1157
+ font-weight: 400;
1158
+
1159
+ &.active {
1160
+ color: #6f9ee0;
1161
+ font-weight: bold;
1162
+ }
1163
+ }
1164
+ }
1165
+
1166
+ .load-shipper-load-counter {
1167
+ max-width: -webkit-max-content;
1168
+ max-width: -moz-max-content;
1169
+ max-width: max-content;
1170
+ height: 18px;
1171
+ border-radius: 30px;
1172
+ text-align: right;
1173
+ font-size: 11px;
1174
+ font-weight: 400;
1175
+ color: $bw5;
1176
+ background-color: rgb(145, 145, 145, 0.2);
1177
+ padding: 1px 6px;
1178
+ justify-self: flex-end;
1179
+
1180
+ &.active {
1181
+ color: #6f9ee0;
1182
+ background-color: rgb(111, 158, 224, 0.2);
1183
+ }
1184
+ }
1185
+ }
1186
+
1187
+ //------------------------ Custom width dependent on 'col' bootstrap ------------------------
1188
+
1189
+ @for $i from 1 through 800 {
1190
+ &.w-col-#{$i} {
1191
+ width: unquote($i + "px");
1192
+ }
1193
+ }
1194
+
1195
+ // ---------------------------------------- DROPDOWN GROUPS ----------------------------------------
1196
+ &.dropdown-options-groups {
1197
+ max-height: 194px;
1198
+ overflow-y: scroll;
1199
+
1200
+ // This class is only for Truck tollTransporder
1201
+ .dropdown-groups {
1202
+ display: flex;
1203
+ flex-direction: column;
1204
+ position: relative;
1205
+
1206
+ p {
1207
+ margin: 0;
1208
+ }
1209
+
1210
+ &::after {
1211
+ content: "";
1212
+ display: inline-block;
1213
+ position: absolute;
1214
+ bottom: -3px;
1215
+ height: 1px;
1216
+ width: 100%;
1217
+ background-color: rgb(170, 170, 170, 0.2);
1218
+ }
1219
+
1220
+ &:last-child {
1221
+ margin-top: 4px;
1222
+ &::after {
1223
+ display: none !important;
1224
+ }
1225
+ }
1226
+
1227
+ .dropdown-group-header {
1228
+ font-size: 11px;
1229
+ color: $ta-light-grey-6;
1230
+ font-weight: 700;
1231
+ text-transform: uppercase;
1232
+ line-height: 14px;
1233
+ padding: 0 6px;
1234
+ padding-top: 8px;
1235
+ margin-bottom: 8px;
1236
+
1237
+ &::-moz-selection {
1238
+ background-color: rgb(204, 204, 204, 0.2) !important;
1239
+ color: rgb(204, 204, 204, 0.4) !important;
1240
+ }
1241
+
1242
+ &::selection {
1243
+ background-color: rgb(204, 204, 204, 0.2) !important;
1244
+ color: rgb(204, 204, 204, 0.4) !important;
1245
+ }
1246
+ }
1247
+
1248
+ .dropdown-subgroup-options {
1249
+ display: flex;
1250
+ align-items: center;
1251
+ padding: 4px 6px;
1252
+ height: 26px;
1253
+ border-radius: 2px;
1254
+
1255
+ .highlight-text-45632 {
1256
+ background-color: $ta-blue-20;
1257
+ color: $ta-blue-19;
1258
+ }
1259
+
1260
+ &:hover {
1261
+ background-color: #1d1d1d;
1262
+ cursor: pointer;
1263
+ transition: all 0.3s ease-in-out;
1264
+ .dropdown-subgroup-text {
1265
+ color: #ffffff;
1266
+ }
1267
+ }
1268
+
1269
+ .dropdown-subgroup-text {
1270
+ font-size: 14px;
1271
+ font-weight: 400;
1272
+ color: $ta-light-grey-6;
1273
+ transition: all 0.3s ease-in-out;
1274
+
1275
+ &.active {
1276
+ font-weight: 700;
1277
+ // Higlight text
1278
+ .highlight-text-45632 {
1279
+ background-color: $ta-blue-20;
1280
+ color: $ta-blue-19;
1281
+ transition: all 0.3s ease-in-out;
1282
+ &:hover {
1283
+ color: #ffffff !important;
1284
+ }
1285
+ }
1286
+
1287
+ &::after {
1288
+ position: absolute;
1289
+ right: 11px;
1290
+ content: url("/assets/ca-components/svg/input/ic_confirm.svg");
1291
+ width: 14px;
1292
+ height: 10px;
1293
+ }
1294
+ }
1295
+ }
1296
+ }
1297
+ }
1298
+
1299
+ // Override groups classes for load-broker-contact-template
1300
+ .load-broker-contact-groups {
1301
+ display: flex;
1302
+ flex-direction: column;
1303
+ position: relative;
1304
+ padding-bottom: 0px;
1305
+ margin: 0;
1306
+
1307
+ p {
1308
+ margin: 0;
1309
+ }
1310
+
1311
+ .dropdown-group-header {
1312
+ padding: 0px;
1313
+ margin: 0px;
1314
+ padding-top: 8px;
1315
+ padding-left: 4px;
1316
+ margin-bottom: 4px;
1317
+
1318
+ color: $ta-light-grey-6;
1319
+ font-size: 11px;
1320
+ text-transform: capitalize;
1321
+
1322
+ &.add-new {
1323
+ font-size: 11px;
1324
+ line-height: 14px;
1325
+ font-weight: 700;
1326
+ color: #6f9ee0;
1327
+ padding: 4px;
1328
+ margin: 0;
1329
+ cursor: pointer;
1330
+
1331
+ &:hover {
1332
+ border-radius: 2px;
1333
+ color: $ta-blue-17;
1334
+ background-color: #1d1d1d;
1335
+ }
1336
+ }
1337
+ }
1338
+
1339
+ .dropdown-subgroup-options {
1340
+ display: grid;
1341
+ grid-template-columns: 141px 135px;
1342
+ grid-column-gap: 10px;
1343
+ -moz-column-gap: 10px;
1344
+ column-gap: 10px;
1345
+ align-items: center;
1346
+ padding: 3px 4px;
1347
+ // margin-bottom: 2px;
1348
+ cursor: pointer;
1349
+
1350
+ &:hover {
1351
+ border-radius: 2px;
1352
+ background-color: #1d1d1d;
1353
+
1354
+ .dropdown-subgroup-text {
1355
+ color: #ffffff !important;
1356
+ }
1357
+ }
1358
+
1359
+ .dropdown-subgroup-text {
1360
+ font-size: 14px;
1361
+ font-weight: 400;
1362
+ color: #ffffff;
1363
+ display: block;
1364
+ width: 100%;
1365
+
1366
+ // Higlight text
1367
+ .highlight-text-45632 {
1368
+ background-color: $ta-blue-20;
1369
+ color: $ta-blue-19;
1370
+ &:hover {
1371
+ color: #ffffff !important;
1372
+ }
1373
+ }
1374
+
1375
+ &.active {
1376
+ font-weight: 700;
1377
+
1378
+ &::after {
1379
+ position: absolute;
1380
+ right: -26px;
1381
+ content: url("/assets/ca-components/svg/input/ic_confirm.svg");
1382
+ width: 14px;
1383
+ height: 10px;
1384
+ }
1385
+ }
1386
+ }
1387
+
1388
+ .dropdown-subgroup-additional-text {
1389
+ color: $bw5;
1390
+ font-size: 11px;
1391
+ font-weight: 400;
1392
+ position: relative;
1393
+ text-align: right;
1394
+
1395
+ &.active {
1396
+ font-weight: 400;
1397
+ color: #6f9ee0;
1398
+ }
1399
+
1400
+ // Higlight text
1401
+ .highlight-text-45632 {
1402
+ background-color: $ta-blue-20;
1403
+ color: $ta-blue-19;
1404
+ }
1405
+ }
1406
+ }
1407
+ }
1408
+ }
1409
+
1410
+ // Merged Dropdown
1411
+ &.merge-dropdown-body-with-input {
1412
+ border-radius: 0 0 2px 2px !important;
1413
+ left: -4px !important;
1414
+ }
1415
+
1416
+ // Dispatch Dropdown
1417
+ &.svgtext-dispatch-template {
1418
+ top: -4px;
1419
+
1420
+ .plus-icon {
1421
+ margin-right: 4px;
1422
+ }
1423
+
1424
+ .icon {
1425
+ &.blue {
1426
+ circle {
1427
+ fill: $ta-blue-19 !important;
1428
+ }
1429
+ }
1430
+
1431
+ &.yellow {
1432
+ circle {
1433
+ fill: $ta-yellow-4 !important;
1434
+ }
1435
+ }
1436
+
1437
+ &.red {
1438
+ circle {
1439
+ fill: $ta-red-13 !important;
1440
+ }
1441
+ }
1442
+
1443
+ &.green {
1444
+ circle {
1445
+ fill: $ta-green-4 !important;
1446
+ }
1447
+ }
1448
+ }
1449
+ }
1450
+ }
1451
+ }
1452
+ }
1453
+
1454
+ // PM Repair Modal popover
1455
+ .ta-dropdown-popover {
1456
+ z-index: 999999;
1457
+ .arrow {
1458
+ display: none !important;
1459
+ }
1460
+
1461
+ .popover-body {
1462
+ z-index: 99999999;
1463
+ .options {
1464
+ position: relative;
1465
+ top: 3px;
1466
+ z-index: 1000;
1467
+ max-height: 198px;
1468
+ width: 100%;
1469
+ background-color: #2f2f2f;
1470
+ border-radius: 2px;
1471
+ padding: 2px;
1472
+ overflow: hidden;
1473
+
1474
+ &.scroll {
1475
+ transition: all 0.3s ease-in-out;
1476
+ overflow-y: scroll !important;
1477
+
1478
+ &::-webkit-scrollbar {
1479
+ width: 3px;
1480
+ }
1481
+
1482
+ &::-webkit-scrollbar-thumb {
1483
+ background-color: transparent;
1484
+ border: 6px solid #aaaaaa;
1485
+ border-radius: 1px;
1486
+ }
1487
+
1488
+ &::-webkit-scrollbar-track {
1489
+ padding: 0;
1490
+ position: relative;
1491
+ right: 0;
1492
+ top: 0;
1493
+ background: transparent;
1494
+ }
1495
+ }
1496
+
1497
+ .option {
1498
+ position: relative;
1499
+ padding: 3px;
1500
+ height: 26px;
1501
+ font-size: 14px;
1502
+ line-height: 18px;
1503
+ font-weight: 400;
1504
+ border-radius: 2px;
1505
+ white-space: nowrap;
1506
+ text-overflow: ellipsis;
1507
+ color: #ffffff;
1508
+ display: flex;
1509
+ gap: 4px;
1510
+
1511
+ &::-moz-selection {
1512
+ color: #ffffff;
1513
+ background-color: rgb(255, 255, 255, 0.2);
1514
+ }
1515
+
1516
+ &:nth-last-child(1) {
1517
+ margin-bottom: 0px;
1518
+ }
1519
+
1520
+ &:hover {
1521
+ background-color: #1d1d1d;
1522
+ border-radius: 2px;
1523
+ cursor: pointer;
1524
+ }
1525
+
1526
+ &.add-option {
1527
+ color: #6f9ee0;
1528
+ font-weight: 600;
1529
+
1530
+ &::after {
1531
+ content: "";
1532
+ height: 2px;
1533
+ width: 100%;
1534
+ background-color: rgb(170, 170, 170, 0.2);
1535
+ border-radius: 1px;
1536
+ position: absolute;
1537
+ bottom: 0px;
1538
+ left: 0px;
1539
+ }
1540
+ }
1541
+ }
1542
+ }
1543
+ }
1544
+ }
1545
+
1546
+ // Selected Dropdown Card Preview
1547
+ .selected-item-container {
1548
+ height: 52px;
1549
+ padding: 6px;
1550
+ background: $ta-blue-16;
1551
+ position: relative;
1552
+ border-radius: 2px;
1553
+ transition: background 0.3s ease-in-out;
1554
+
1555
+ &:hover {
1556
+ background: $ta-blue-17;
1557
+
1558
+ .selected-item-additional {
1559
+ .selected-item-info {
1560
+ svg-icon {
1561
+ svg {
1562
+ path {
1563
+ fill: $ta-blue-14;
1564
+ }
1565
+ }
1566
+ }
1567
+ }
1568
+ }
1569
+
1570
+ .clear-selected-item {
1571
+ display: flex;
1572
+ align-items: center;
1573
+ }
1574
+ }
1575
+
1576
+ .selected-item-label {
1577
+ position: absolute;
1578
+ top: -16px;
1579
+ font-size: 11px;
1580
+ font-weight: 600;
1581
+ color: $ta-black;
1582
+
1583
+ -webkit-user-select: none;
1584
+ -moz-user-select: none;
1585
+ -ms-user-select: none;
1586
+ user-select: none;
1587
+
1588
+ span {
1589
+ color: $ta-red-11;
1590
+ }
1591
+ }
1592
+
1593
+ .selected-item-name {
1594
+ font-size: 14px;
1595
+ line-height: 18px;
1596
+ color: $ta-black;
1597
+
1598
+ &::-moz-selection {
1599
+ color: $ta-black;
1600
+ background: rgb(66, 66, 66, 0.2);
1601
+ }
1602
+
1603
+ &::selection {
1604
+ color: $ta-black;
1605
+ background: rgb(66, 66, 66, 0.2);
1606
+ }
1607
+
1608
+ .selected-item-star {
1609
+ position: relative;
1610
+ bottom: 2px;
1611
+
1612
+ svg {
1613
+ margin-left: 6px;
1614
+
1615
+ path {
1616
+ fill: $ta-blue-13;
1617
+ }
1618
+ }
1619
+ }
1620
+ }
1621
+
1622
+ .selected-item-additional {
1623
+ gap: 22px;
1624
+
1625
+ .selected-item-info {
1626
+ svg-icon {
1627
+ width: 14px;
1628
+
1629
+ svg {
1630
+ width: 100%;
1631
+ height: 100%;
1632
+
1633
+ path {
1634
+ fill: $ta-blue-13;
1635
+ transition: fill 0.3s ease-in-out;
1636
+ }
1637
+ }
1638
+ }
1639
+
1640
+ .hide-svg-on-copy {
1641
+ display: none;
1642
+ }
1643
+ }
1644
+ }
1645
+
1646
+ .clear-selected-item {
1647
+ position: absolute;
1648
+ right: 4px;
1649
+ top: 0px;
1650
+ display: none;
1651
+ gap: 6px;
1652
+
1653
+ .clear-x {
1654
+ cursor: pointer;
1655
+ transition: transform 0.3s ease-in-out;
1656
+
1657
+ &:hover {
1658
+ transform: scale(1.2);
1659
+ }
1660
+
1661
+ svg {
1662
+ path {
1663
+ fill: $ta-blue-17;
1664
+ }
1665
+
1666
+ rect {
1667
+ fill: $ta-blue-13;
1668
+ }
1669
+ }
1670
+
1671
+ &:hover {
1672
+ svg {
1673
+ rect {
1674
+ fill: $ta-blue-15;
1675
+ }
1676
+ }
1677
+ }
1678
+ }
1679
+ }
1680
+
1681
+ &.non-editable {
1682
+ background-color: $ta-light-grey-5;
1683
+
1684
+ .selected-item-label,
1685
+ .selected-item-name {
1686
+ color: $bw5;
1687
+ }
1688
+
1689
+ .selected-item-additional {
1690
+ .selected-item-info {
1691
+ svg-icon {
1692
+ svg {
1693
+ path {
1694
+ fill: $ta-light-grey-6;
1695
+ }
1696
+ }
1697
+ }
1698
+ p {
1699
+ color: $bw5;
1700
+ }
1701
+ }
1702
+ }
1703
+ }
1704
+ }
1705
+
1706
+ .dropdown-trailer-hover {
1707
+ &:hover {
1708
+ // TRUCKS
1709
+ .ic_truck_semi-truck {
1710
+ svg {
1711
+ path {
1712
+ fill: $ta-green;
1713
+ }
1714
+ }
1715
+ }
1716
+
1717
+ .ic_truck_semi-wSleeper {
1718
+ svg {
1719
+ path {
1720
+ fill: $ta-yellow-1;
1721
+ }
1722
+ }
1723
+ }
1724
+
1725
+ .ic_truck_box-truck {
1726
+ svg {
1727
+ path {
1728
+ fill: $ta-red-10;
1729
+ }
1730
+ }
1731
+ }
1732
+
1733
+ .ic_truck_cargo-van {
1734
+ svg {
1735
+ path {
1736
+ fill: $ta-blue-13;
1737
+ }
1738
+ }
1739
+ }
1740
+
1741
+ .ic_truck_tow-truck {
1742
+ svg {
1743
+ path {
1744
+ fill: $ta-purple-1;
1745
+ }
1746
+ }
1747
+ }
1748
+
1749
+ .ic_truck_car-hauler {
1750
+ svg {
1751
+ path {
1752
+ fill: $ta-red-18;
1753
+ }
1754
+ }
1755
+ }
1756
+
1757
+ .ic_truck_spotter {
1758
+ svg {
1759
+ path {
1760
+ fill: $ta-orange-5;
1761
+ }
1762
+ }
1763
+ }
1764
+
1765
+ // TRAILERS
1766
+ .ic_trailer_reefer {
1767
+ svg {
1768
+ path {
1769
+ fill: $ta-blue-13;
1770
+ }
1771
+ }
1772
+ }
1773
+
1774
+ .ic_trailer_dryvan {
1775
+ svg {
1776
+ path {
1777
+ fill: $ta-blue-24;
1778
+ }
1779
+ }
1780
+ }
1781
+
1782
+ .ic_trailer_side-kit {
1783
+ svg {
1784
+ path {
1785
+ fill: $ta-orange-4;
1786
+ }
1787
+ }
1788
+ }
1789
+
1790
+ .ic_trailer_conestoga {
1791
+ svg {
1792
+ path {
1793
+ fill: $ta-yellow-8;
1794
+ }
1795
+ }
1796
+ }
1797
+
1798
+ .ic_trailer_dumper {
1799
+ svg {
1800
+ path {
1801
+ fill: $ta-purple-1;
1802
+ }
1803
+ }
1804
+ }
1805
+
1806
+ .ic_trailer_container {
1807
+ svg {
1808
+ path {
1809
+ fill: $ta-yellow-1;
1810
+ }
1811
+ }
1812
+ }
1813
+
1814
+ .ic_trailer_tanker {
1815
+ svg {
1816
+ path {
1817
+ fill: $ta-green-6;
1818
+ }
1819
+ }
1820
+ }
1821
+
1822
+ .ic_trailer_carhauler {
1823
+ svg {
1824
+ path {
1825
+ fill: $ta-red-18;
1826
+ }
1827
+ }
1828
+ }
1829
+
1830
+ .ic_trailer_flatbed {
1831
+ svg {
1832
+ path {
1833
+ fill: $ta-red-13;
1834
+ }
1835
+ }
1836
+ }
1837
+
1838
+ .ic_trailer_low-boy {
1839
+ svg {
1840
+ path {
1841
+ fill: $ta-red-11;
1842
+ }
1843
+ }
1844
+ }
1845
+
1846
+ .ic_trailer_chassis {
1847
+ svg {
1848
+ path {
1849
+ fill: $ta-orange-5;
1850
+ }
1851
+ }
1852
+ }
1853
+
1854
+ .ic_trailer_step-deck {
1855
+ svg {
1856
+ path {
1857
+ fill: $ta-red-10;
1858
+ }
1859
+ }
1860
+ }
1861
+
1862
+ .ic_trailer_tanker_pneumatic {
1863
+ svg {
1864
+ path {
1865
+ fill: $ta-green;
1866
+ }
1867
+ }
1868
+ }
1869
+
1870
+ .ic_carhauler_stinger {
1871
+ svg {
1872
+ path {
1873
+ fill: $ta-red-19;
1874
+ }
1875
+ }
1876
+ }
1877
+ }
1878
+ }
1879
+
1880
+ .hide-after-arrow .dropdown-option.active::after {
1881
+ display: none !important;
1882
+ }