-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tags
1120 lines (1120 loc) · 213 KB
/
.tags
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
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@font-face /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^@font-face { font-family: Avenir; src: url('..\/fonts\/Avenir\/Avenir.ttc'); }$/;" function line:3
@font-face /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^@font-face {$/;" function line:4
/*@font-face /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^\/*@font-face {*\/$/;" function line:8
html /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^html {$/;" function line:59
html /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^html,$/;" function line:63
body /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^body {$/;" function line:64
img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^img {$/;" function line:75
p /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^p {$/;" function line:79
h1 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h1,$/;" function line:83
h2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h2,$/;" function line:84
h3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h3,$/;" function line:85
h4 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h4,$/;" function line:86
h5 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h5,$/;" function line:87
h6 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h6 {$/;" function line:88
h1 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h1 {$/;" function line:93
h2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h2 {$/;" function line:98
h3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h3 {$/;" function line:103
h4 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h4 {$/;" function line:108
h5 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h5 {$/;" function line:113
h6 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^h6 {$/;" function line:118
a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^a {$/;" function line:123
a:active /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^a:active,$/;" function line:129
a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^a:hover {$/;" function line:130
ul /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^ul {$/;" function line:135
.clear /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.clear {$/;" function line:143
.versase /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.versase {$/;" function line:146
.z-index-0 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.z-index-0 {$/;" function line:151
.primary-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.primary-color {$/;" function line:154
.title-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-color {$/;" function line:157
.text-center /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.text-center {$/;" function line:160
.margin-center /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.margin-center {$/;" function line:163
.overflow-hidden /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.overflow-hidden {$/;" function line:166
.no-background /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.no-background {$/;" function line:169
.no-border /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.no-border {$/;" function line:172
.relative /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.relative {$/;" function line:175
.normal-font-weight /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.normal-font-weight {$/;" function line:178
.medium /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.medium {$/;" function line:181
.semi-bold /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.semi-bold {$/;" function line:184
.bold /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bold {$/;" function line:187
.uppercase /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.uppercase {$/;" function line:190
.capitalize /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.capitalize {$/;" function line:193
.bs-none /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bs-none {$/;" function line:196
.no-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.no-bg {$/;" function line:199
.lh-1 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.lh-1 {$/;" function line:202
.container-fluid /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.container-fluid {$/;" function line:205
.sec-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.sec-color {$/;" function line:208
.sec-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.sec-bg {$/;" function line:211
.sec-bg2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.sec-bg2 {$/;" function line:214
.radius-0 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.radius-0 {$/;" function line:217
.gray-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.gray-color {$/;" function line:220
.dark-gray-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.dark-gray-color {$/;" function line:223
.gray-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.gray-bg {$/;" function line:226
.white-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.white-color {$/;" function line:229
.secondary-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.secondary-color {$/;" function line:232
.white-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.white-bg {$/;" function line:235
.primary-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.primary-color {$/;" function line:238
.black-color /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.black-color {$/;" function line:241
.primary-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.primary-bg {$/;" function line:244
.secondary-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.secondary-bg {$/;" function line:247
.bg-fixed /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg-fixed {$/;" function line:250
.bg1 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg1 {$/;" function line:255
.bg2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg2 {$/;" function line:259
.bg3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg3 {$/;" function line:265
.bg4 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg4 {$/;" function line:271
.bg5 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg5 {$/;" function line:277
.bg6 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg6 {$/;" function line:283
.bg7 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg7 {$/;" function line:289
.bg8 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg8 {$/;" function line:295
.bg9 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg9 {$/;" function line:301
.bg10 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg10 {$/;" function line:307
.bg11 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg11 {$/;" function line:313
.bg12 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg12 {$/;" function line:319
.bg13 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bg13 {$/;" function line:325
.shape-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.shape-bg {$/;" function line:330
.title-style h2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style h2 {$/;" function line:335
.title-style h3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style h3 {$/;" function line:340
.title-style .sub-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .sub-title {$/;" function line:344
.title-style .line-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg {$/;" function line:349
.title-style .line-bg:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg:before,$/;" function line:355
.title-style .line-bg:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg:after {$/;" function line:356
.title-style .line-bg:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg:after {$/;" function line:363
.title-style .line-bg:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg:before {$/;" function line:367
.title-style .line-bg.y-w:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg.y-w:after {$/;" function line:371
.title-style .line-bg.y-w:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg.y-w:before {$/;" function line:374
.title-style .line-bg.y-b:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg.y-b:after {$/;" function line:377
.title-style .line-bg.y-b:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg.y-b:before {$/;" function line:380
.title-style .line-bg.left-line /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .line-bg.left-line {$/;" function line:383
.title-style .sub-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .sub-title {$/;" function line:386
.title-style.bracket .title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style.bracket .title {$/;" function line:391
.title-style.bracket .title:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style.bracket .title:after,$/;" function line:395
.title-style.bracket .title:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style.bracket .title:before {$/;" function line:396
.title-style.bracket .title:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style.bracket .title:before {$/;" function line:399
.title-style.bracket .title:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style.bracket .title:after {$/;" function line:403
.title-style .desc.custom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.title-style .desc.custom {$/;" function line:407
.box-shadow /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.box-shadow {$/;" function line:411
.max-750 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.max-750 {$/;" function line:415
.bdru-4 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.bdru-4 {$/;" function line:419
.readon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon {$/;" function line:422
.readon.big-btn /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon.big-btn {$/;" function line:440
.readon.big-btn2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon.big-btn2 {$/;" function line:443
.readon.solid /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon.solid {$/;" function line:446
.readon.solid:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon.solid:hover {$/;" function line:451
.readon:active /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon:active,$/;" function line:454
.readon:focus /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon:focus,$/;" function line:455
.readon:visited /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon:visited {$/;" function line:456
.readon:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.readon:hover {$/;" function line:460
.rs-vertical-bottom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-vertical-bottom {$/;" function line:464
.rs-vertical-middle /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-vertical-middle {$/;" function line:475
::-moz-selection /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^::-moz-selection {$/;" function line:486
::selection /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^::selection {$/;" function line:491
.align-center /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.align-center {$/;" function line:496
.dot-none .owl-controls .owl-dots /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.dot-none .owl-controls .owl-dots {$/;" function line:499
.nav-none .owl-controls .owl-nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-none .owl-controls .owl-nav {$/;" function line:502
ul.offcanvas-icon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^ul.offcanvas-icon {$/;" function line:505
ul.offcanvas-icon li span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^ul.offcanvas-icon li span {$/;" function line:509
ul.offcanvas-icon li span:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^ul.offcanvas-icon li span:last-child {$/;" function line:520
ul.offcanvas-icon:hover li span:nth-child(1) /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^ul.offcanvas-icon:hover li span:nth-child(1) {$/;" function line:523
ul.offcanvas-icon:hover li span:nth-child(2) /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^ul.offcanvas-icon:hover li span:nth-child(2) {$/;" function line:526
.page-nav ul /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.page-nav ul {$/;" function line:530
.page-nav ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.page-nav ul li {$/;" function line:536
.page-nav ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.page-nav ul li a {$/;" function line:543
.page-nav ul li a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.page-nav ul li a i:before {$/;" function line:546
.page-nav ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.page-nav ul li a:hover {$/;" function line:550
.page-nav ul li.active a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.page-nav ul li.active a {$/;" function line:553
.page-nav ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.page-nav ul li:last-child {$/;" function line:556
.stylelisting /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.stylelisting {$/;" function line:561
.stylelisting li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.stylelisting li {$/;" function line:564
.stylelisting li:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.stylelisting li:before {$/;" function line:567
.clearfix /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.clearfix {$/;" function line:574
.size-60 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.size-60 {$/;" function line:579
.size-80 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.size-80 {$/;" function line:585
.size-140 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.size-140 {$/;" function line:591
.size-170 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.size-170 {$/;" function line:597
blockquote /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^blockquote {$/;" function line:603
blockquote .rotate-icon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^blockquote .rotate-icon {$/;" function line:609
blockquote .last-icon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^blockquote .last-icon {$/;" function line:616
blockquote i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^blockquote i:before {$/;" function line:621
[class^="flaticon-"]:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^[class^="flaticon-"]:before,$/;" function line:625
[class*=" flaticon-"]:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^[class*=" flaticon-"]:before,$/;" function line:626
[class^="flaticon-"]:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^[class^="flaticon-"]:after,$/;" function line:627
[class*=" flaticon-"]:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^[class*=" flaticon-"]:after {$/;" function line:628
.search-modal .modal-content /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.search-modal .modal-content {$/;" function line:632
.search-modal .search-block input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.search-modal .search-block input {$/;" function line:637
.search-modal .search-block ::-webkit-input-placeholder /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.search-modal .search-block ::-webkit-input-placeholder {$/;" function line:651
.search-modal .search-block ::-moz-placeholder /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.search-modal .search-block ::-moz-placeholder {$/;" function line:656
.search-modal .search-block :-ms-input-placeholder /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.search-modal .search-block :-ms-input-placeholder {$/;" function line:661
.search-modal .search-block :-moz-placeholder /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.search-modal .search-block :-moz-placeholder {$/;" function line:666
.search-modal .close /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.search-modal .close {$/;" function line:671
.search-modal .close:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.search-modal .close:hover {$/;" function line:686
.modal-backdrop /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.modal-backdrop {$/;" function line:689
.modal-backdrop.show /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.modal-backdrop.show {$/;" function line:692
.nav-style .owl-carousel /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-style .owl-carousel {$/;" function line:697
.nav-style .owl-carousel .owl-nav [class*="owl-"] /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-style .owl-carousel .owl-nav [class*="owl-"] {$/;" function line:700
.nav-style .owl-carousel .owl-nav [class*="owl-"].owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-style .owl-carousel .owl-nav [class*="owl-"].owl-prev {$/;" function line:718
.nav-style .owl-carousel .owl-nav [class*="owl-"].owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-style .owl-carousel .owl-nav [class*="owl-"].owl-next {$/;" function line:721
.nav-style .owl-carousel .owl-nav [class*="owl-"]:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-style .owl-carousel .owl-nav [class*="owl-"]:hover {$/;" function line:724
.nav-style .owl-carousel:hover [class*="owl-"] /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-style .owl-carousel:hover [class*="owl-"] {$/;" function line:728
.nav-style .owl-carousel:hover [class*="owl-"] .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-style .owl-carousel:hover [class*="owl-"] .owl-prev {$/;" function line:732
.nav-style .owl-carousel:hover [class*="owl-"] .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-style .owl-carousel:hover [class*="owl-"] .owl-next {$/;" function line:735
.slider-navigation .owl-carousel /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.slider-navigation .owl-carousel {$/;" function line:738
.slider-navigation .owl-carousel .owl-nav [class*="owl-"] /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.slider-navigation .owl-carousel .owl-nav [class*="owl-"] {$/;" function line:741
.slider-navigation .owl-carousel .owl-nav [class*="owl-"].owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.slider-navigation .owl-carousel .owl-nav [class*="owl-"].owl-prev {$/;" function line:759
.slider-navigation .owl-carousel .owl-nav [class*="owl-"].owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.slider-navigation .owl-carousel .owl-nav [class*="owl-"].owl-next {$/;" function line:762
.slider-navigation .owl-carousel .owl-nav [class*="owl-"]:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.slider-navigation .owl-carousel .owl-nav [class*="owl-"]:hover {$/;" function line:765
.slider-navigation .owl-carousel:hover [class*="owl-"] /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.slider-navigation .owl-carousel:hover [class*="owl-"] {$/;" function line:770
.slider-navigation .owl-carousel:hover [class*="owl-"] .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.slider-navigation .owl-carousel:hover [class*="owl-"] .owl-prev {$/;" function line:774
.slider-navigation .owl-carousel:hover [class*="owl-"] .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.slider-navigation .owl-carousel:hover [class*="owl-"] .owl-next {$/;" function line:777
.full-width-header /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header {$/;" function line:783
.full-width-header .rs-header /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header {$/;" function line:786
.full-width-header .rs-header .menu-area /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area {$/;" function line:789
.full-width-header .rs-header .menu-area .logo-area /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .logo-area {$/;" function line:792
.full-width-header .rs-header .menu-area .logo-area a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .logo-area a {$/;" function line:795
.full-width-header .rs-header .menu-area .logo-area img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .logo-area img {$/;" function line:798
.full-width-header .rs-header .menu-area .main-menu .expand-btn /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .expand-btn {$/;" function line:804
.full-width-header .rs-header .menu-area .main-menu .expand-btn span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .expand-btn span {$/;" function line:811
.full-width-header .rs-header .menu-area .main-menu .expand-btn span a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .expand-btn span a {$/;" function line:815
.full-width-header .rs-header .menu-area .main-menu .expand-btn span a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .expand-btn span a i:before {$/;" function line:822
.full-width-header .rs-header .menu-area .main-menu .expand-btn span a.nav-expander i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .expand-btn span a.nav-expander i {$/;" function line:826
.full-width-header .rs-header .menu-area .main-menu .expand-btn span a.nav-expander i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .expand-btn span a.nav-expander i:before {$/;" function line:829
.full-width-header .rs-header .menu-area .main-menu .expand-btn span:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .expand-btn span:last-child {$/;" function line:833
.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li {$/;" function line:836
.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li a {$/;" function line:839
.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li a:hover {$/;" function line:843
.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li:last-child {$/;" function line:846
.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li:last-child a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li:last-child a {$/;" function line:849
.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li:last-child i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .nav-menu li:last-child i {$/;" function line:852
.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu {$/;" function line:855
.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li {$/;" function line:863
.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li a {$/;" function line:867
.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li a:hover {$/;" function line:876
.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li:last-child {$/;" function line:879
.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li.active > a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li.active > a,$/;" function line:882
.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li.current-menu-item > a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .sub-menu li.current-menu-item > a {$/;" function line:883
.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu {$/;" function line:886
.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container {$/;" function line:892
.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu {$/;" function line:896
.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu {$/;" function line:901
.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu .menu-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu .menu-title {$/;" function line:904
.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu .sub-menu li a {$/;" function line:912
.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu:hover .sub-menu .menu-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu .mega-menu .mega-menu-container .single-megamenu:hover .sub-menu .menu-title {$/;" function line:916
.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu.current-menu-item .single-megamenu .sub-menu .menu-title.active /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu .rs-mega-menu.current-menu-item .single-megamenu .sub-menu .menu-title.active {$/;" function line:919
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li a:hover,$/;" function line:922
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.active a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.active a,$/;" function line:923
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.current-menu-item > a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area .main-menu .rs-menu ul li.current-menu-item > a {$/;" function line:924
.full-width-header .rs-header .menu-area.menu-sticky /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .menu-area.menu-sticky {$/;" function line:927
.full-width-header .rs-header .right_menu_togle /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle {$/;" function line:931
.full-width-header .rs-header .right_menu_togle .close-btn /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .close-btn {$/;" function line:939
.full-width-header .rs-header .right_menu_togle .close-btn span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .close-btn span {$/;" function line:946
.full-width-header .rs-header .right_menu_togle .close-btn span i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .close-btn span i {$/;" function line:957
.full-width-header .rs-header .right_menu_togle .close-btn span i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .close-btn span i:before {$/;" function line:960
.full-width-header .rs-header .right_menu_togle .close-btn span:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .close-btn span:hover {$/;" function line:964
.full-width-header .rs-header .right_menu_togle .canvas-logo /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-logo {$/;" function line:967
.full-width-header .rs-header .right_menu_togle .canvas-logo img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-logo img {$/;" function line:971
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .sidebarnav_menu {$/;" function line:975
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li {$/;" function line:978
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a {$/;" function line:981
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li a:hover {$/;" function line:987
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li.active a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li.active a {$/;" function line:990
.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .sidebarnav_menu li:last-child {$/;" function line:993
.full-width-header .rs-header .right_menu_togle .canvas-contact .canvas-contact-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .canvas-contact-title {$/;" function line:996
.full-width-header .rs-header .right_menu_togle .canvas-contact .canvas-contact-title:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .canvas-contact-title:before {$/;" function line:1002
.full-width-header .rs-header .right_menu_togle .canvas-contact .contact /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .contact {$/;" function line:1013
.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li {$/;" function line:1016
.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li i {$/;" function line:1019
.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li a {$/;" function line:1022
.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li a:hover {$/;" function line:1025
.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .contact li:last-child {$/;" function line:1028
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .social li {$/;" function line:1031
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a i {$/;" function line:1035
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .social li a:hover {$/;" function line:1045
.full-width-header .rs-header .right_menu_togle .canvas-contact .social li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header .right_menu_togle .canvas-contact .social li:last-child {$/;" function line:1048
.full-width-header .rs-header.homestyle /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header.homestyle {$/;" function line:1051
.full-width-header .rs-header.homestyle.dark-sticky .sticky /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.full-width-header .rs-header.homestyle.dark-sticky .sticky {$/;" function line:1059
.nav-expanded nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.nav-expanded nav {$/;" function line:1062
.rs-canvas-menu /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu {$/;" function line:1065
.rs-canvas-menu .nav-menu li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu .nav-menu li {$/;" function line:1069
.rs-canvas-menu .nav-menu li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu .nav-menu li a {$/;" function line:1073
.rs-canvas-menu .nav-menu li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu .nav-menu li a:hover {$/;" function line:1080
.rs-canvas-menu .nav-menu li .sub-menu /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu .nav-menu li .sub-menu {$/;" function line:1083
.rs-canvas-menu .nav-menu li .sub-menu li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu .nav-menu li .sub-menu li {$/;" function line:1093
.rs-canvas-menu .nav-menu li .sub-menu li.active > a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu .nav-menu li .sub-menu li.active > a {$/;" function line:1096
.rs-canvas-menu .nav-menu li:hover .sub-menu /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu .nav-menu li:hover .sub-menu {$/;" function line:1099
.rs-canvas-menu .nav-menu li.current-menu-item > a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-canvas-menu .nav-menu li.current-menu-item > a {$/;" function line:1104
.rs-slider.home-slider .single-slider /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider {$/;" function line:1110
.rs-slider.home-slider .single-slider .text-part .sub-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider .text-part .sub-title {$/;" function line:1122
.rs-slider.home-slider .single-slider .text-part .title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider .text-part .title {$/;" function line:1129
.rs-slider.home-slider .single-slider .text-part .desc /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider .text-part .desc {$/;" function line:1137
.rs-slider.home-slider .single-slider .text-part .slider-btn /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider .text-part .slider-btn {$/;" function line:1142
.rs-slider.home-slider .single-slider .fly-layer /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider .fly-layer {$/;" function line:1145
.rs-slider.home-slider .single-slider .fly-layer .layer-image /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider .fly-layer .layer-image {$/;" function line:1152
.rs-slider.home-slider .single-slider .fly-layer .layer-image .parallax-ball /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider .fly-layer .layer-image .parallax-ball {$/;" function line:1155
.rs-slider.home-slider .single-slider.slide2 .common /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider.slide2 .common {$/;" function line:1161
.rs-slider.home-slider .single-slider.slide2 .text-part /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider.slide2 .text-part {$/;" function line:1165
.rs-slider.home-slider .single-slider.slide2 .image-part /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider.slide2 .image-part {$/;" function line:1170
.rs-slider.home-slider .single-slider.slide2 .image-part .image-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider.slide2 .image-part .image-wrap {$/;" function line:1175
.rs-slider.home-slider .single-slider.slide2 .image-part .image-wrap .player /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider.slide2 .image-part .image-wrap .player {$/;" function line:1178
.rs-slider.home-slider .single-slider.slide2 .image-part .image-wrap .ball /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-slider.home-slider .single-slider.slide2 .image-part .image-wrap .ball {$/;" function line:1181
.rs-banner.home2banner /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner {$/;" function line:1190
.banner-content /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.banner-content{$/;" function line:1200
.rs-banner.home2banner .banner-content /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner .banner-content {$/;" function line:1203
.rs-banner.home2banner .banner-content .banner-title h1 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner .banner-content .banner-title h1 {$/;" function line:1211
.rs-banner.home2banner .banner-content .timecounter-inner /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner .banner-content .timecounter-inner {$/;" function line:1216
.rs-banner.home2banner .banner-content .timecounter-inner .time_circles /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner .banner-content .timecounter-inner .time_circles {$/;" function line:1221
.rs-banner.home2banner .banner-content .timecounter-inner .time_circles canvas /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner .banner-content .timecounter-inner .time_circles canvas {$/;" function line:1227
.rs-banner.home2banner .banner-content .timecounter-inner .time_circles div /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner .banner-content .timecounter-inner .time_circles div {$/;" function line:1230
.rs-banner.home2banner .banner-content .timecounter-inner .time_circles div span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner .banner-content .timecounter-inner .time_circles div span {$/;" function line:1235
.rs-banner.home2banner .banner-content .timecounter-inner .time_circles div h4 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home2banner .banner-content .timecounter-inner .time_circles div h4 {$/;" function line:1245
.rs-banner.home3banner /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home3banner {$/;" function line:1255
.rs-banner.home3banner .banner-content .layer-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home3banner .banner-content .layer-img {$/;" function line:1265
.rs-banner.home3banner .banner-content .banner-sub-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home3banner .banner-content .banner-sub-title {$/;" function line:1271
.rs-banner.home3banner .banner-content .banner-title h1 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home3banner .banner-content .banner-title h1 {$/;" function line:1276
.rs-banner.home4banner /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home4banner {$/;" function line:1281
.rs-banner.home4banner .banner-content .title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home4banner .banner-content .title {$/;" function line:1287
.rs-banner.home4banner .banner-content .desc /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home4banner .banner-content .desc {$/;" function line:1293
.rs-banner.home4banner .layer-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home4banner .layer-img {$/;" function line:1298
.rs-banner.home4banner .layer-img ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home4banner .layer-img ul li {$/;" function line:1301
.rs-banner.home4banner .layer-img ul li img.ball /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home4banner .layer-img ul li img.ball {$/;" function line:1305
.rs-banner.home4banner .layer-img ul li img.man /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-banner.home4banner .layer-img ul li img.man {$/;" function line:1311
.rs-breadcrumbs .breadcrumbs-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap {$/;" function line:1317
.rs-breadcrumbs .breadcrumbs-wrap img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap img {$/;" function line:1322
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner {$/;" function line:1325
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner.vertical-middle /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner.vertical-middle {$/;" function line:1330
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text {$/;" function line:1335
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .breadcrumbs-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .breadcrumbs-title {$/;" function line:1338
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li {$/;" function line:1346
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li a {$/;" function line:1351
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li a:hover {$/;" function line:1354
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li:after {$/;" function line:1357
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li.active /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li.active {$/;" function line:1363
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li:last-child:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .categories ul li:last-child:after {$/;" function line:1366
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author {$/;" function line:1370
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li {$/;" function line:1373
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li i {$/;" function line:1379
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li a {$/;" function line:1382
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li a:hover {$/;" function line:1385
.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breadcrumbs .breadcrumbs-wrap .breadcrumbs-inner .breadcrumbs-text .post-date-author ul li:last-child {$/;" function line:1388
.rs-board-staff .staf-wrap .staf-area .staff-item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item {$/;" function line:1394
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap {$/;" function line:1401
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-img {$/;" function line:1404
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc {$/;" function line:1410
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc {$/;" function line:1415
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc h3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc h3 {$/;" function line:1418
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc h4 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc h4 {$/;" function line:1427
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc span {$/;" function line:1435
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc span i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc span i {$/;" function line:1439
.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc span.sub3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item .item-wrap .staff-desc .inner-desc span.sub3 {$/;" function line:1445
.rs-board-staff .staf-wrap .staf-area .staff-item:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-board-staff .staf-wrap .staf-area .staff-item:last-child {$/;" function line:1448
.rs-upcoming-match /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match {$/;" function line:1454
.rs-upcoming-match .match-info ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match .match-info ul li {$/;" function line:1458
.rs-upcoming-match .match-info ul li:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match .match-info ul li:after {$/;" function line:1465
.rs-upcoming-match .match-info ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match .match-info ul li:last-child {$/;" function line:1475
.rs-upcoming-match .match-info ul li:last-child:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match .match-info ul li:last-child:after {$/;" function line:1479
.rs-upcoming-match .match-info .time /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match .match-info .time {$/;" function line:1482
.rs-upcoming-match.sl-style .items /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style .items {$/;" function line:1485
.rs-upcoming-match.sl-style .items .vanues /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style .items .vanues {$/;" function line:1489
.rs-upcoming-match.sl-style .items .vanues .date /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style .items .vanues .date {$/;" function line:1492
.rs-upcoming-match.sl-style .items .vanues .time /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style .items .vanues .time {$/;" function line:1498
.rs-upcoming-match.sl-style .items .vanues .vs /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style .items .vanues .vs {$/;" function line:1504
.rs-upcoming-match.sl-style .items .teams .score /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style .items .teams .score {$/;" function line:1510
.rs-upcoming-match.sl-style .items .teams .logo .name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style .items .teams .logo .name {$/;" function line:1515
.rs-upcoming-match.sl-style .sl-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style .sl-wrap {$/;" function line:1520
.rs-upcoming-match.sl-style2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 {$/;" function line:1526
.rs-upcoming-match.sl-style2 .owl-stage-outer /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .owl-stage-outer {$/;" function line:1529
.rs-upcoming-match.sl-style2 .items /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items {$/;" function line:1533
.rs-upcoming-match.sl-style2 .items .vanues .stadium /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items .vanues .stadium {$/;" function line:1541
.rs-upcoming-match.sl-style2 .items .teams /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items .teams {$/;" function line:1545
.rs-upcoming-match.sl-style2 .items .teams div /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items .teams div {$/;" function line:1549
.rs-upcoming-match.sl-style2 .items .teams .vs /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items .teams .vs {$/;" function line:1552
.rs-upcoming-match.sl-style2 .items .teams .logo /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items .teams .logo {$/;" function line:1558
.rs-upcoming-match.sl-style2 .items .teams .logo img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items .teams .logo img {$/;" function line:1562
.rs-upcoming-match.sl-style2 .items .teams .logo .name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items .teams .logo .name {$/;" function line:1567
.rs-upcoming-match.sl-style2 .items .ligue /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-upcoming-match.sl-style2 .items .ligue {$/;" function line:1572
.rs-countdown .countdown /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-countdown .countdown {$/;" function line:1578
.rs-countdown .countdown div /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-countdown .countdown div {$/;" function line:1582
.rs-countdown .countdown div span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-countdown .countdown div span {$/;" function line:1589
.rs-about .about-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about .about-img img {$/;" function line:1600
.rs-about.style2 .image-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.style2 .image-wrap {$/;" function line:1603
.rs-about.style2 .image-wrap img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.style2 .image-wrap img {$/;" function line:1608
.rs-about.style2 .image-wrap a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.style2 .image-wrap a {$/;" function line:1611
.rs-about.style2 .image-wrap a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.style2 .image-wrap a i:before {$/;" function line:1621
.rs-about.style2 .image-wrap a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.style2 .image-wrap a:hover {$/;" function line:1624
.rs-about.style2 .image-wrap:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.style2 .image-wrap:after {$/;" function line:1627
.rs-about.style2 .image-wrap:hover a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.style2 .image-wrap:hover a {$/;" function line:1638
.rs-about.style2 .image-wrap:hover:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.style2 .image-wrap:hover:after {$/;" function line:1641
.rs-about.after-bg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.after-bg {$/;" function line:1644
.rs-about.after-bg:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-about.after-bg:after {$/;" function line:1647
.rs-tab .club-details_data ul.nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data ul.nav {$/;" function line:1662
.rs-tab .club-details_data ul.nav li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data ul.nav li {$/;" function line:1666
.rs-tab .club-details_data ul.nav li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data ul.nav li a {$/;" function line:1674
.rs-tab .club-details_data ul.nav li a.active /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data ul.nav li a.active {$/;" function line:1687
.rs-tab .club-details_data ul.nav li a.active:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data ul.nav li a.active:after {$/;" function line:1691
.rs-tab .club-details_data ul.nav li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data ul.nav li a:hover {$/;" function line:1695
.rs-tab .club-details_data ul.nav li a:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data ul.nav li a:after {$/;" function line:1699
.rs-tab .club-details_data ul.nav li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data ul.nav li:last-child {$/;" function line:1714
.rs-tab .club-details_data .tab-content .tab-pane .about-club .alignright /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .about-club .alignright {$/;" function line:1717
.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item {$/;" function line:1721
.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item div /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item div {$/;" function line:1724
.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .name {$/;" function line:1727
.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .name a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .name a {$/;" function line:1733
.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .name a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .name a:hover {$/;" function line:1736
.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .position /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .position {$/;" function line:1739
.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .jersy /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .squad-list .squad-list-item .jersy {$/;" function line:1744
.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap {$/;" function line:1754
.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-logo img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-logo img {$/;" function line:1758
.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-details /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-details {$/;" function line:1764
.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-details .year-details /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-details .year-details {$/;" function line:1770
.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-details .year-details span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-details .year-details span {$/;" function line:1773
.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-details .champion-no /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-awards .award-wrap .champion-details .champion-no {$/;" function line:1777
.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap {$/;" function line:1787
.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap a {$/;" function line:1790
.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap a i:before {$/;" function line:1802
.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap:after {$/;" function line:1805
.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap:hover a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap:hover a {$/;" function line:1817
.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap:hover:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-gallery .gallery-wrap:hover:after {$/;" function line:1820
.rs-tab .club-details_data .tab-content .tab-pane .club-jersy /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-jersy {$/;" function line:1825
.rs-tab .club-details_data .tab-content .tab-pane .club-jersy .champion-details .year-details h3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .club-details_data .tab-content .tab-pane .club-jersy .champion-details .year-details h3 {$/;" function line:1828
.rs-tab .single-team-data ul.nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data ul.nav {$/;" function line:1833
.rs-tab .single-team-data ul.nav li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data ul.nav li {$/;" function line:1837
.rs-tab .single-team-data ul.nav li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data ul.nav li a {$/;" function line:1845
.rs-tab .single-team-data ul.nav li a.active /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data ul.nav li a.active {$/;" function line:1858
.rs-tab .single-team-data ul.nav li a.active:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data ul.nav li a.active:after {$/;" function line:1862
.rs-tab .single-team-data ul.nav li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data ul.nav li a:hover {$/;" function line:1866
.rs-tab .single-team-data ul.nav li a:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data ul.nav li a:after {$/;" function line:1870
.rs-tab .single-team-data ul.nav li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data ul.nav li:last-child {$/;" function line:1885
.rs-tab .single-team-data .tab-content .tab-pane /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane {$/;" function line:1888
.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap {$/;" function line:1892
.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap a {$/;" function line:1895
.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap a i:before {$/;" function line:1907
.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap:after {$/;" function line:1910
.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap:hover a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap:hover a {$/;" function line:1922
.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap:hover:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .team-gallery .gallery-wrap:hover:after {$/;" function line:1925
.rs-tab .single-team-data .tab-content .tab-pane .club-videos .video-wrap .popup-videos /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .club-videos .video-wrap .popup-videos {$/;" function line:1930
.rs-tab .single-team-data .tab-content .tab-pane .club-videos .video-wrap .popup-videos img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .club-videos .video-wrap .popup-videos img {$/;" function line:1934
.rs-tab .single-team-data .tab-content .tab-pane .club-videos .video-wrap .popup-videos i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .club-videos .video-wrap .popup-videos i {$/;" function line:1937
.rs-tab .single-team-data .tab-content .tab-pane .club-videos .video-wrap .popup-videos:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-tab .single-team-data .tab-content .tab-pane .club-videos .video-wrap .popup-videos:after {$/;" function line:1947
.home_video .video-wrap .popup-videos /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.home_video .video-wrap .popup-videos {$/;" function line:1957
.home_video .video-wrap .popup-videos img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.home_video .video-wrap .popup-videos img {$/;" function line:1961
.home_video .video-wrap .popup-videos img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.home_video .video-wrap .popup-videos img {$/;" function line:1964
.video_play_icon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.video_play_icon {$/;" function line:1967
.video_play_icon:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.video_play_icon:hover {$/;" function line:1982
.home_video .video-wrap .popup-videos:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.home_video .video-wrap .popup-videos:after {$/;" function line:1997
.video-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.video-wrap{$/;" function line:2008
.rs-video /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-video {$/;" function line:2014
.rs-video .video-contents /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-video .video-contents {$/;" function line:2017
.rs-video .video-contents .play-btn /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-video .video-contents .play-btn {$/;" function line:2025
.rs-video .video-contents .play-btn i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-video .video-contents .play-btn i {$/;" function line:2035
.rs-video .video-contents .play-btn i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-video .video-contents .play-btn i:before {$/;" function line:2041
.rs-video .video-contents .play-btn:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-video .video-contents .play-btn:after {$/;" function line:2044
.rs-video.big-space /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-video.big-space {$/;" function line:2060
.rs-video.big-space2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-video.big-space2 {$/;" function line:2063
.rs-result .result-info table.result-table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result .result-info table.result-table {$/;" function line:2069
.rs-result .result-info table.result-table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result .result-info table.result-table tr td {$/;" function line:2072
.rs-result .result-info table.result-table tr td .total-goal /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result .result-info table.result-table tr td .total-goal {$/;" function line:2077
.rs-result .result-info table.result-table tr td .readon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result .result-info table.result-table tr td .readon {$/;" function line:2086
.rs-result .result-info table.result-table tr td.logo /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result .result-info table.result-table tr td.logo {$/;" function line:2092
.rs-result .result-info table.result-table tr td.logo img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result .result-info table.result-table tr td.logo img {$/;" function line:2096
.rs-result .result-info table.result-table tr:nth-child(odd) /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result .result-info table.result-table tr:nth-child(odd) {$/;" function line:2100
.rs-result.style2 .items /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items {$/;" function line:2103
.rs-result.style2 .items .vanues .stadium /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items .vanues .stadium {$/;" function line:2110
.rs-result.style2 .items .teams /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items .teams {$/;" function line:2114
.rs-result.style2 .items .teams div /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items .teams div {$/;" function line:2118
.rs-result.style2 .items .teams .score /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items .teams .score {$/;" function line:2121
.rs-result.style2 .items .teams .logo /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items .teams .logo {$/;" function line:2127
.rs-result.style2 .items .teams .logo img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items .teams .logo img {$/;" function line:2131
.rs-result.style2 .items .teams .logo .result /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items .teams .logo .result {$/;" function line:2136
.rs-result.style2 .items .ligue /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .items .ligue {$/;" function line:2141
.rs-result.style2 .video-frame /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .video-frame {$/;" function line:2144
.rs-result.style2 .video-frame a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .video-frame a {$/;" function line:2151
.rs-result.style2 .video-frame a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .video-frame a i:before {$/;" function line:2160
.rs-result.style2 .video-frame a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-result.style2 .video-frame a:hover {$/;" function line:2163
.rs-match-result.style1 .items /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1 .items {$/;" function line:2169
.rs-match-result.style1 .items a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1 .items a {$/;" function line:2175
.rs-match-result.style1 .items a .teams /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1 .items a .teams {$/;" function line:2180
.rs-match-result.style1 .items a .teams div /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1 .items a .teams div {$/;" function line:2187
.rs-match-result.style1 .items a .teams div.score /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1 .items a .teams div.score {$/;" function line:2190
.rs-match-result.style1 .items a .teams div.logo .name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1 .items a .teams div.logo .name {$/;" function line:2195
.rs-match-result.style1 .items a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1 .items a:hover {$/;" function line:2198
.rs-match-result.style1.modify-style .items a .vanues .date /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .vanues .date {$/;" function line:2201
.rs-match-result.style1.modify-style .items a .vanues .stadium /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .vanues .stadium {$/;" function line:2206
.rs-match-result.style1.modify-style .items a .vanues .stadium span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .vanues .stadium span {$/;" function line:2210
.rs-match-result.style1.modify-style .items a .teams /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .teams {$/;" function line:2214
.rs-match-result.style1.modify-style .items a .teams div /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .teams div {$/;" function line:2221
.rs-match-result.style1.modify-style .items a .teams div.score /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .teams div.score {$/;" function line:2224
.rs-match-result.style1.modify-style .items a .teams div.logo .name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .teams div.logo .name {$/;" function line:2229
.rs-match-result.style1.modify-style .items a .teams div.time-vs span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .teams div.time-vs span {$/;" function line:2232
.rs-match-result.style1.modify-style .items a .teams div.time-vs span.time /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .teams div.time-vs span.time {$/;" function line:2235
.rs-match-result.style1.modify-style .items a .teams div.time-vs span.vs /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a .teams div.time-vs span.vs {$/;" function line:2240
.rs-match-result.style1.modify-style .items a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style .items a:hover {$/;" function line:2244
.rs-match-result.style1.modify-style.fly-box /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box {$/;" function line:2247
.rs-match-result.style1.modify-style.fly-box .items /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .items {$/;" function line:2252
.rs-match-result.style1.modify-style.fly-box .items a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .items a {$/;" function line:2255
.rs-match-result.style1.modify-style.fly-box .items a .vanues .date /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .items a .vanues .date {$/;" function line:2258
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav {$/;" function line:2261
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev,$/;" function line:2264
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next {$/;" function line:2265
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev i,$/;" function line:2273
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next i {$/;" function line:2274
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev i:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev i:hover,$/;" function line:2286
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next i:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next i:hover {$/;" function line:2287
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev i.fa-angle-left:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev i.fa-angle-left:before,$/;" function line:2290
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next i.fa-angle-left:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next i.fa-angle-left:before {$/;" function line:2291
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-prev {$/;" function line:2294
.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box .owl-controls .owl-nav .owl-next {$/;" function line:2297
.rs-match-result.style1.modify-style.fly-box:hover:hover .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box:hover:hover .owl-controls .owl-nav .owl-prev,$/;" function line:2300
.rs-match-result.style1.modify-style.fly-box:hover:hover .owl-controls .owl-nav .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box:hover:hover .owl-controls .owl-nav .owl-next {$/;" function line:2301
.rs-match-result.style1.modify-style.fly-box:hover:hover .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box:hover:hover .owl-controls .owl-nav .owl-prev {$/;" function line:2304
.rs-match-result.style1.modify-style.fly-box:hover:hover .owl-controls .owl-nav .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style1.modify-style.fly-box:hover:hover .owl-controls .owl-nav .owl-next {$/;" function line:2307
.rs-match-result.style2 .items .result-item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .items .result-item {$/;" function line:2310
.rs-match-result.style2 .items .result-item .common /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .items .result-item .common {$/;" function line:2315
.rs-match-result.style2 .items .result-item .today-match-team .logo .name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .items .result-item .today-match-team .logo .name {$/;" function line:2320
.rs-match-result.style2 .items .result-item .today-final-score /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .items .result-item .today-final-score {$/;" function line:2325
.rs-match-result.style2 .items .result-item .today-final-score .score /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .items .result-item .today-final-score .score {$/;" function line:2328
.rs-match-result.style2 .items .result-item .today-final-score .info /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .items .result-item .today-final-score .info {$/;" function line:2334
.rs-match-result.style2 .items .result-item .today-final-score .info i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .items .result-item .today-final-score .info i {$/;" function line:2339
.rs-match-result.style2 .items .result-item .today-final-score .info:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .items .result-item .today-final-score .info:last-child {$/;" function line:2344
.rs-match-result.style2 .owl-controls .owl-nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav {$/;" function line:2347
.rs-match-result.style2 .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-prev,$/;" function line:2355
.rs-match-result.style2 .owl-controls .owl-nav .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-next {$/;" function line:2356
.rs-match-result.style2 .owl-controls .owl-nav .owl-prev i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-prev i,$/;" function line:2359
.rs-match-result.style2 .owl-controls .owl-nav .owl-next i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-next i {$/;" function line:2360
.rs-match-result.style2 .owl-controls .owl-nav .owl-prev i:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-prev i:hover,$/;" function line:2373
.rs-match-result.style2 .owl-controls .owl-nav .owl-next i:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-next i:hover {$/;" function line:2374
.rs-match-result.style2 .owl-controls .owl-nav .owl-prev i.fa-angle-left:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-prev i.fa-angle-left:before,$/;" function line:2377
.rs-match-result.style2 .owl-controls .owl-nav .owl-next i.fa-angle-left:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-next i.fa-angle-left:before {$/;" function line:2378
.rs-match-result.style2 .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-result.style2 .owl-controls .owl-nav .owl-prev {$/;" function line:2381
.rs-lates-news .latest-news-grid /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid {$/;" function line:2387
.rs-lates-news .latest-news-grid .news-img a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid .news-img a img {$/;" function line:2393
.rs-lates-news .latest-news-grid .news-info /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid .news-info {$/;" function line:2397
.rs-lates-news .latest-news-grid .news-info .news-date /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid .news-info .news-date {$/;" function line:2406
.rs-lates-news .latest-news-grid .news-info .news-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid .news-info .news-title {$/;" function line:2410
.rs-lates-news .latest-news-grid .news-info .news-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid .news-info .news-title a {$/;" function line:2415
.rs-lates-news .latest-news-grid .news-info .news-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid .news-info .news-title a:hover {$/;" function line:2418
.rs-lates-news .latest-news-grid .news-info:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid .news-info:after {$/;" function line:2421
.rs-lates-news .latest-news-grid.small-grid .news-info /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid.small-grid .news-info {$/;" function line:2437
.rs-lates-news .latest-news-grid.small-grid .news-info .news-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid.small-grid .news-info .news-title {$/;" function line:2440
.rs-lates-news .latest-news-grid.small-grid .news-info .news-desc /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid.small-grid .news-info .news-desc {$/;" function line:2444
.rs-lates-news .latest-news-grid:hover .news-img a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-grid:hover .news-img a img {$/;" function line:2447
.rs-lates-news .latest-news-slider /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider {$/;" function line:2450
.rs-lates-news .latest-news-slider .news-slider-full .slider-item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item {$/;" function line:2453
.rs-lates-news .latest-news-slider .news-slider-full .slider-item img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item img {$/;" function line:2456
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents {$/;" function line:2459
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li {$/;" function line:2467
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li i {$/;" function line:2473
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li span a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li span a {$/;" function line:2476
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li span a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li span a:hover {$/;" function line:2479
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .meta li:last-child {$/;" function line:2482
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .news-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .news-title {$/;" function line:2485
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .news-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .news-title a {$/;" function line:2491
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .news-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .news-title a:hover {$/;" function line:2494
.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .desc /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item .contents .desc {$/;" function line:2497
.rs-lates-news .latest-news-slider .news-slider-full .slider-item:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-full .slider-item:before {$/;" function line:2500
.rs-lates-news .latest-news-slider .news-slider-nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav {$/;" function line:2509
.rs-lates-news .latest-news-slider .news-slider-nav .slick-track /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .slick-track {$/;" function line:2518
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item {$/;" function line:2521
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .common /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .common {$/;" function line:2527
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .nav-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .nav-img {$/;" function line:2530
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .nav-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .nav-img img {$/;" function line:2534
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .contents .meta li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .contents .meta li {$/;" function line:2538
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .contents .meta li i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .contents .meta li i {$/;" function line:2544
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .contents .meta li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .contents .meta li:last-child {$/;" function line:2547
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .contents .news-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item .contents .news-title {$/;" function line:2550
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item.slick-current .contents .news-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item.slick-current .contents .news-title {$/;" function line:2557
.rs-lates-news .latest-news-slider .news-slider-nav .nav-item:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-lates-news .latest-news-slider .news-slider-nav .nav-item:last-child {$/;" function line:2560
.rs-blog .blog-item .blog-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img {$/;" function line:2563
.rs-blog .blog-item .blog-img .image-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .image-wrap {$/;" function line:2567
.rs-blog .blog-item .blog-img .image-wrap a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .image-wrap a img {$/;" function line:2570
.rs-blog .blog-item .blog-img .all-meta /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta {$/;" function line:2574
.rs-blog .blog-item .blog-img .all-meta .meta /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta {$/;" function line:2577
.rs-blog .blog-item .blog-img .all-meta .meta a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta a {$/;" function line:2583
.rs-blog .blog-item .blog-img .all-meta .meta a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta a:hover {$/;" function line:2586
.rs-blog .blog-item .blog-img .all-meta .meta i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta i:before {$/;" function line:2589
.rs-blog .blog-item .blog-img .all-meta .meta .meta-folder /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta .meta-folder {$/;" function line:2592
.rs-blog .blog-item .blog-img .all-meta .meta-date /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta-date {$/;" function line:2595
.rs-blog .blog-item .blog-img .all-meta .meta-date .month-day /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta-date .month-day {$/;" function line:2611
.rs-blog .blog-item .blog-img .all-meta .meta-date .month-name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta-date .month-name {$/;" function line:2616
.rs-blog .blog-item .blog-img .all-meta .meta-author /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta-author {$/;" function line:2621
.rs-blog .blog-item .blog-img .all-meta .meta-author i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-img .all-meta .meta-author i {$/;" function line:2624
.rs-blog .blog-item .blog-content /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-content {$/;" function line:2627
.rs-blog .blog-item .blog-content .blog-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-content .blog-title {$/;" function line:2632
.rs-blog .blog-item .blog-content .blog-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-content .blog-title a {$/;" function line:2637
.rs-blog .blog-item .blog-content .blog-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-content .blog-title a:hover {$/;" function line:2640
.rs-blog .blog-item .blog-content .read-button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-content .read-button {$/;" function line:2643
.rs-blog .blog-item .blog-content .read-button a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-content .read-button a {$/;" function line:2646
.rs-blog .blog-item .blog-content .read-button a:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-content .read-button a:after {$/;" function line:2652
.rs-blog .blog-item .blog-content .read-button a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item .blog-content .read-button a:hover {$/;" function line:2661
.rs-blog .blog-item:hover .blog-img .image-wrap a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .blog-item:hover .blog-img .image-wrap a img {$/;" function line:2665
.rs-blog .cl-sidebar .cl-widget-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-widget-title {$/;" function line:2668
.rs-blog .cl-sidebar .cl-widget-title:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-widget-title:after {$/;" function line:2674
.rs-blog .cl-sidebar .cl-search /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-search {$/;" function line:2683
.rs-blog .cl-sidebar .cl-search input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-search input {$/;" function line:2688
.rs-blog .cl-sidebar .cl-search button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-search button {$/;" function line:2697
.rs-blog .cl-sidebar .cl-search button i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-search button i:before {$/;" function line:2713
.rs-blog .cl-sidebar .cl-search button:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-search button:hover {$/;" function line:2717
.rs-blog .cl-sidebar .cl-recentpost ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recentpost ul li {$/;" function line:2721
.rs-blog .cl-sidebar .cl-recentpost ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recentpost ul li a {$/;" function line:2725
.rs-blog .cl-sidebar .cl-recentpost ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recentpost ul li a:hover {$/;" function line:2729
.rs-blog .cl-sidebar .cl-recentpost ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recentpost ul li:last-child {$/;" function line:2732
.rs-blog .cl-sidebar .cl-recentpost ul li:first-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recentpost ul li:first-child {$/;" function line:2735
.rs-blog .cl-sidebar .cl-recent-comments ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recent-comments ul li {$/;" function line:2739
.rs-blog .cl-sidebar .cl-recent-comments ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recent-comments ul li a {$/;" function line:2743
.rs-blog .cl-sidebar .cl-recent-comments ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recent-comments ul li a:hover {$/;" function line:2747
.rs-blog .cl-sidebar .cl-recent-comments ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recent-comments ul li:last-child {$/;" function line:2750
.rs-blog .cl-sidebar .cl-recent-comments ul li:first-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-recent-comments ul li:first-child {$/;" function line:2753
.rs-blog .cl-sidebar .cl-archives ul li + li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-archives ul li + li {$/;" function line:2757
.rs-blog .cl-sidebar .cl-archives ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-archives ul li a {$/;" function line:2760
.rs-blog .cl-sidebar .cl-archives ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-archives ul li a:hover {$/;" function line:2765
.rs-blog .cl-sidebar .cl-archives ul li:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-archives ul li:before {$/;" function line:2768
.rs-blog .cl-sidebar .cl-categories ul li + li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-categories ul li + li {$/;" function line:2774
.rs-blog .cl-sidebar .cl-categories ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-categories ul li a {$/;" function line:2777
.rs-blog .cl-sidebar .cl-categories ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-categories ul li a:hover {$/;" function line:2782
.rs-blog .cl-sidebar .cl-categories ul li:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-categories ul li:before {$/;" function line:2785
.rs-blog .cl-sidebar .cl-meta ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-meta ul li {$/;" function line:2791
.rs-blog .cl-sidebar .cl-meta ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-meta ul li a {$/;" function line:2795
.rs-blog .cl-sidebar .cl-meta ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-meta ul li a:hover {$/;" function line:2798
.rs-blog .cl-sidebar .cl-meta ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-meta ul li:last-child {$/;" function line:2801
.rs-blog .cl-sidebar .cl-meta ul li:first-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-meta ul li:first-child {$/;" function line:2804
.rs-blog .cl-sidebar .cl-tags a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-tags a {$/;" function line:2808
.rs-blog .cl-sidebar .cl-tags a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .cl-sidebar .cl-tags a:hover {$/;" function line:2822
.rs-blog.style2 .blog-item .blog-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img {$/;" function line:2827
.rs-blog.style2 .blog-item .blog-img .image-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .image-wrap {$/;" function line:2831
.rs-blog.style2 .blog-item .blog-img .image-wrap a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .image-wrap a img {$/;" function line:2834
.rs-blog.style2 .blog-item .blog-img .all-meta /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .all-meta {$/;" function line:2838
.rs-blog.style2 .blog-item .blog-img .all-meta .meta /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .all-meta .meta {$/;" function line:2841
.rs-blog.style2 .blog-item .blog-img .all-meta .meta a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .all-meta .meta a {$/;" function line:2844
.rs-blog.style2 .blog-item .blog-img .all-meta .meta a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .all-meta .meta a:hover {$/;" function line:2847
.rs-blog.style2 .blog-item .blog-img .all-meta .meta i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .all-meta .meta i {$/;" function line:2850
.rs-blog.style2 .blog-item .blog-img .all-meta .meta i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .all-meta .meta i:before {$/;" function line:2853
.rs-blog.style2 .blog-item .blog-img .all-meta .meta-folder /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-img .all-meta .meta-folder {$/;" function line:2856
.rs-blog.style2 .blog-item .blog-content /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-content {$/;" function line:2859
.rs-blog.style2 .blog-item .blog-content .blog-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.style2 .blog-item .blog-content .blog-title {$/;" function line:2863
.rs-blog.modify .blog-item .blog-img .all-meta /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.modify .blog-item .blog-img .all-meta {$/;" function line:2869
.rs-blog.modify .blog-item .blog-img .all-meta .meta i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.modify .blog-item .blog-img .all-meta .meta i:before {$/;" function line:2872
.rs-blog.modify .blog-item .blog-content /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog.modify .blog-item .blog-content {$/;" function line:2875
.rs-blog .single-blog-wrap .bs-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .bs-img img {$/;" function line:2878
.rs-blog .single-blog-wrap .single-content-full /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full {$/;" function line:2881
.rs-blog .single-blog-wrap .single-content-full h2 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full h2 {$/;" function line:2887
.rs-blog .single-blog-wrap .single-content-full h3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full h3 {$/;" function line:2891
.rs-blog .single-blog-wrap .single-content-full blockquote /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full blockquote {$/;" function line:2898
.rs-blog .single-blog-wrap .single-content-full blockquote p /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full blockquote p {$/;" function line:2912
.rs-blog .single-blog-wrap .single-content-full blockquote:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full blockquote:before {$/;" function line:2915
.rs-blog .single-blog-wrap .single-content-full .stylelisting /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full .stylelisting {$/;" function line:2929
.rs-blog .single-blog-wrap .single-content-full .single-page-info /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full .single-page-info {$/;" function line:2932
.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta {$/;" function line:2937
.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta a {$/;" function line:2946
.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta a:hover {$/;" function line:2949
.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta i {$/;" function line:2952
.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .single-content-full .single-page-info .meta i:before {$/;" function line:2955
.rs-blog .single-blog-wrap .ps-navigation /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation {$/;" function line:2958
.rs-blog .single-blog-wrap .ps-navigation ul /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul {$/;" function line:2964
.rs-blog .single-blog-wrap .ps-navigation ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li {$/;" function line:2967
.rs-blog .single-blog-wrap .ps-navigation ul li a span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li a span {$/;" function line:2971
.rs-blog .single-blog-wrap .ps-navigation ul li a span i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li a span i {$/;" function line:2978
.rs-blog .single-blog-wrap .ps-navigation ul li a span i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li a span i:before {$/;" function line:2982
.rs-blog .single-blog-wrap .ps-navigation ul li a span.link-text /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li a span.link-text {$/;" function line:2985
.rs-blog .single-blog-wrap .ps-navigation ul li a:hover span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li a:hover span {$/;" function line:2991
.rs-blog .single-blog-wrap .ps-navigation ul li.next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li.next {$/;" function line:2994
.rs-blog .single-blog-wrap .ps-navigation ul li.next a span i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li.next a span i {$/;" function line:2998
.rs-blog .single-blog-wrap .ps-navigation ul li.prev a span i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .ps-navigation ul li.prev a span i {$/;" function line:3001
.rs-blog .single-blog-wrap .comments-area .comment-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-title {$/;" function line:3004
.rs-blog .single-blog-wrap .comments-area .comment-title:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-title:before {$/;" function line:3012
.rs-blog .single-blog-wrap .comments-area .comment-form .from-control /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-form .from-control {$/;" function line:3023
.rs-blog .single-blog-wrap .comments-area .comment-form .from-control label /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-form .from-control label {$/;" function line:3026
.rs-blog .single-blog-wrap .comments-area .comment-form .from-control input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-form .from-control input {$/;" function line:3029
.rs-blog .single-blog-wrap .comments-area .comment-form .from-control textarea /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-form .from-control textarea {$/;" function line:3032
.rs-blog .single-blog-wrap .comments-area .comment-form .from-control input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-form .from-control input,$/;" function line:3035
.rs-blog .single-blog-wrap .comments-area .comment-form .from-control textarea /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-form .from-control textarea {$/;" function line:3036
.rs-blog .single-blog-wrap .comments-area .comment-form .submit-comment /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-form .submit-comment {$/;" function line:3046
.rs-blog .single-blog-wrap .comments-area .comment-form .submit-comment .readon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-blog .single-blog-wrap .comments-area .comment-form .submit-comment .readon {$/;" function line:3049
.rs-contact .single-icon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon {$/;" function line:3058
.rs-contact .single-icon .icon-part /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon .icon-part {$/;" function line:3068
.rs-contact .single-icon .icon-part i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon .icon-part i {$/;" function line:3079
.rs-contact .single-icon .icon-part i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon .icon-part i:before {$/;" function line:3083
.rs-contact .single-icon .icon-part:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon .icon-part:before {$/;" function line:3086
.rs-contact .single-icon .icon-text .icon-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon .icon-text .icon-title {$/;" function line:3103
.rs-contact .single-icon .icon-text span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon .icon-text span {$/;" function line:3108
.rs-contact .single-icon .icon-text a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon .icon-text a {$/;" function line:3111
.rs-contact .single-icon .icon-text a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon .icon-text a:hover {$/;" function line:3114
.rs-contact .single-icon:hover .icon-part:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .single-icon:hover .icon-part:before {$/;" function line:3117
.rs-contact .g-map iframe /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .g-map iframe {$/;" function line:3121
.rs-contact .contact-area .contact-form .from-control /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .contact-area .contact-form .from-control {$/;" function line:3128
.rs-contact .contact-area .contact-form .from-control input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .contact-area .contact-form .from-control input,$/;" function line:3131
.rs-contact .contact-area .contact-form .from-control textarea /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .contact-area .contact-form .from-control textarea {$/;" function line:3132
.rs-contact .contact-area .contact-form .from-control input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .contact-area .contact-form .from-control input {$/;" function line:3141
.rs-contact .contact-area .contact-form .from-control textarea /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .contact-area .contact-form .from-control textarea {$/;" function line:3145
.rs-contact .contact-area .contact-form .from-control ::placeholder /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-contact .contact-area .contact-form .from-control ::placeholder {$/;" function line:3149
.rs-pointtable table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable table {$/;" function line:3156
.rs-pointtable table tr /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable table tr {$/;" function line:3162
.rs-pointtable table tr th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable table tr th {$/;" function line:3165
.rs-pointtable table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable table tr td {$/;" function line:3169
.rs-pointtable table tr:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable table tr:last-child {$/;" function line:3172
.rs-pointtable.style2 table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style2 table {$/;" function line:3175
.rs-pointtable.style2 table tr /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style2 table tr {$/;" function line:3180
.rs-pointtable.style2 table tr:nth-child(odd) /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style2 table tr:nth-child(odd) {$/;" function line:3183
.rs-pointtable.style2 table tr th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style2 table tr th {$/;" function line:3186
.rs-pointtable.style2 table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style2 table tr td {$/;" function line:3190
.rs-pointtable.style3 table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 table {$/;" function line:3193
.rs-pointtable.style3 table tr /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 table tr {$/;" function line:3199
.rs-pointtable.style3 table tr th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 table tr th {$/;" function line:3202
.rs-pointtable.style3 table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 table tr td {$/;" function line:3205
.rs-pointtable.style3 table tr td.dark /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 table tr td.dark {$/;" function line:3208
.rs-pointtable.style3 table tr td:first-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 table tr td:first-child {$/;" function line:3211
.rs-pointtable.style3 table tr:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 table tr:last-child {$/;" function line:3214
.rs-pointtable.style3 .bracket-btn a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 .bracket-btn a {$/;" function line:3217
.rs-pointtable.style3 .bracket-btn a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 .bracket-btn a:hover {$/;" function line:3224
.rs-pointtable.style3 .bracket-btn i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.style3 .bracket-btn i {$/;" function line:3227
.rs-pointtable.inner-style table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.inner-style table {$/;" function line:3230
.rs-pointtable.inner-style table tr /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.inner-style table tr {$/;" function line:3235
.rs-pointtable.inner-style table tr:nth-child(odd) /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.inner-style table tr:nth-child(odd) {$/;" function line:3238
.rs-pointtable.inner-style table tr th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.inner-style table tr th {$/;" function line:3241
.rs-pointtable.inner-style table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.inner-style table tr td {$/;" function line:3245
.rs-pointtable.no-overflow table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.no-overflow table {$/;" function line:3248
.rs-pointtable.gaps /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-pointtable.gaps {$/;" function line:3252
.rs-team.style1 .player-item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item {$/;" function line:3258
.rs-team.style1 .player-item .player-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item .player-img img {$/;" function line:3261
.rs-team.style1 .player-item .person-details /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item .person-details {$/;" function line:3264
.rs-team.style1 .player-item .person-details .player-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item .person-details .player-title {$/;" function line:3274
.rs-team.style1 .player-item .person-details .player-title .squad-numbers /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item .person-details .player-title .squad-numbers {$/;" function line:3286
.rs-team.style1 .player-item .person-details .player-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item .person-details .player-title a {$/;" function line:3293
.rs-team.style1 .player-item .person-details .player-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item .person-details .player-title a:hover {$/;" function line:3301
.rs-team.style1 .player-item .person-details .player-title .player-position /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item .person-details .player-title .player-position {$/;" function line:3304
.rs-team.style1 .player-item .person-details:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1 .player-item .person-details:after {$/;" function line:3312
.rs-team.style1.modify-style .player-item .player-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .player-item .player-img img {$/;" function line:3325
.rs-team.style1.modify-style .player-item .person-details .player-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .player-item .person-details .player-title {$/;" function line:3328
.rs-team.style1.modify-style .player-item .person-details .player-title .squad-numbers /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .player-item .person-details .player-title .squad-numbers {$/;" function line:3331
.rs-team.style1.modify-style .player-item .person-details .player-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .player-item .person-details .player-title a {$/;" function line:3334
.rs-team.style1.modify-style .player-item .person-details .player-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .player-item .person-details .player-title a:hover {$/;" function line:3337
.rs-team.style1.modify-style .player-item .person-details .player-title .player-position /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .player-item .person-details .player-title .player-position {$/;" function line:3340
.rs-team.style1.modify-style .player-item .person-details:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .player-item .person-details:after {$/;" function line:3343
.rs-team.style1.modify-style .player-item:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .player-item:after {$/;" function line:3347
.rs-team.style1.modify-style .owl-controls .owl-nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav {$/;" function line:3357
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev,$/;" function line:3364
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-next {$/;" function line:3365
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev i,$/;" function line:3368
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-next i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-next i {$/;" function line:3369
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev i:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev i:hover,$/;" function line:3382
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-next i:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-next i:hover {$/;" function line:3383
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev i.fa-angle-left:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev i.fa-angle-left:before,$/;" function line:3386
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-next i.fa-angle-left:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-next i.fa-angle-left:before {$/;" function line:3387
.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style1.modify-style .owl-controls .owl-nav .owl-prev {$/;" function line:3390
.rs-team.style2 .player-item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2 .player-item {$/;" function line:3393
.rs-team.style2 .player-item .person-details /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2 .player-item .person-details {$/;" function line:3396
.rs-team.style2 .player-item .person-details .player-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2 .player-item .person-details .player-title {$/;" function line:3406
.rs-team.style2 .player-item .person-details .player-title .squad-numbers /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2 .player-item .person-details .player-title .squad-numbers {$/;" function line:3416
.rs-team.style2 .player-item .person-details .player-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2 .player-item .person-details .player-title a {$/;" function line:3423
.rs-team.style2 .player-item .person-details .player-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2 .player-item .person-details .player-title a:hover {$/;" function line:3429
.rs-team.style2 .player-item .person-details .player-title .player-position /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2 .player-item .person-details .player-title .player-position {$/;" function line:3432
.rs-team.style2 .player-item .person-details:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2 .player-item .person-details:after {$/;" function line:3440
.rs-team.style2.modify-style .player-item .player-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .player-item .player-img img {$/;" function line:3451
.rs-team.style2.modify-style .player-item .person-details .player-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .player-item .person-details .player-title {$/;" function line:3454
.rs-team.style2.modify-style .player-item .person-details .player-title .squad-numbers /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .player-item .person-details .player-title .squad-numbers {$/;" function line:3457
.rs-team.style2.modify-style .player-item .person-details .player-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .player-item .person-details .player-title a {$/;" function line:3460
.rs-team.style2.modify-style .player-item .person-details .player-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .player-item .person-details .player-title a:hover {$/;" function line:3463
.rs-team.style2.modify-style .player-item .person-details .player-title .player-position /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .player-item .person-details .player-title .player-position {$/;" function line:3466
.rs-team.style2.modify-style .player-item .person-details:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .player-item .person-details:after {$/;" function line:3469
.rs-team.style2.modify-style .player-item:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .player-item:after {$/;" function line:3473
.rs-team.style2.modify-style .owl-controls .owl-nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav {$/;" function line:3483
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev,$/;" function line:3490
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-next {$/;" function line:3491
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev i,$/;" function line:3494
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-next i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-next i {$/;" function line:3495
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev i:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev i:hover,$/;" function line:3508
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-next i:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-next i:hover {$/;" function line:3509
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev i.fa-angle-left:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev i.fa-angle-left:before,$/;" function line:3512
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-next i.fa-angle-left:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-next i.fa-angle-left:before {$/;" function line:3513
.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style2.modify-style .owl-controls .owl-nav .owl-prev {$/;" function line:3516
.rs-team.style3 .single-team .team-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-img {$/;" function line:3519
.rs-team.style3 .single-team .team-img a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-img a img {$/;" function line:3524
.rs-team.style3 .single-team .team-img .team-social /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-img .team-social {$/;" function line:3527
.rs-team.style3 .single-team .team-img .team-social a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-img .team-social a {$/;" function line:3539
.rs-team.style3 .single-team .team-img .team-social a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-img .team-social a:hover {$/;" function line:3545
.rs-team.style3 .single-team .team-img .team-social a:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-img .team-social a:last-child {$/;" function line:3548
.rs-team.style3 .single-team .team-item-text .team-details /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-item-text .team-details {$/;" function line:3551
.rs-team.style3 .single-team .team-item-text .team-details .team-name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-item-text .team-details .team-name {$/;" function line:3561
.rs-team.style3 .single-team .team-item-text .team-details .team-name a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-item-text .team-details .team-name a {$/;" function line:3567
.rs-team.style3 .single-team .team-item-text .team-details .team-name a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team .team-item-text .team-details .team-name a:hover {$/;" function line:3570
.rs-team.style3 .single-team:hover .team-img a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team:hover .team-img a img {$/;" function line:3573
.rs-team.style3 .single-team:hover .team-img .team-social /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style3 .single-team:hover .team-img .team-social {$/;" function line:3576
.rs-team.style4 .team-grid /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid {$/;" function line:3580
.rs-team.style4 .team-grid .team-image /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .team-image {$/;" function line:3584
.rs-team.style4 .team-grid .text-bottom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .text-bottom {$/;" function line:3587
.rs-team.style4 .team-grid .text-bottom h4.person-name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .text-bottom h4.person-name {$/;" function line:3599
.rs-team.style4 .team-grid .text-bottom h4.person-name a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .text-bottom h4.person-name a {$/;" function line:3605
.rs-team.style4 .team-grid .text-bottom h4.person-name a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .text-bottom h4.person-name a:hover {$/;" function line:3608
.rs-team.style4 .team-grid .text-bottom span.designation /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .text-bottom span.designation {$/;" function line:3611
.rs-team.style4 .team-grid .social-links ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .social-links ul li {$/;" function line:3616
.rs-team.style4 .team-grid .social-links ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .social-links ul li a {$/;" function line:3620
.rs-team.style4 .team-grid .social-links ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .social-links ul li a:hover {$/;" function line:3624
.rs-team.style4 .team-grid .social-links ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid .social-links ul li:last-child {$/;" function line:3627
.rs-team.style4 .team-grid:hover .text-bottom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style4 .team-grid:hover .text-bottom {$/;" function line:3630
.rs-team.style5 .team-grid /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid {$/;" function line:3633
.rs-team.style5 .team-grid .team-image /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .team-image {$/;" function line:3637
.rs-team.style5 .team-grid .team-image img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .team-image img {$/;" function line:3640
.rs-team.style5 .team-grid .text-bottom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .text-bottom {$/;" function line:3644
.rs-team.style5 .team-grid .text-bottom h4.person-name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .text-bottom h4.person-name {$/;" function line:3658
.rs-team.style5 .team-grid .text-bottom h4.person-name a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .text-bottom h4.person-name a {$/;" function line:3663
.rs-team.style5 .team-grid .text-bottom h4.person-name a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .text-bottom h4.person-name a:hover {$/;" function line:3666
.rs-team.style5 .team-grid .text-bottom span.designation /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .text-bottom span.designation {$/;" function line:3669
.rs-team.style5 .team-grid .social-links /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .social-links {$/;" function line:3674
.rs-team.style5 .team-grid .social-links ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .social-links ul li {$/;" function line:3681
.rs-team.style5 .team-grid .social-links ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .social-links ul li a {$/;" function line:3685
.rs-team.style5 .team-grid .social-links ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid .social-links ul li a:hover {$/;" function line:3689
.rs-team.style5 .team-grid:hover .team-image img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid:hover .team-image img {$/;" function line:3692
.rs-team.style5 .team-grid:hover .text-bottom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid:hover .text-bottom {$/;" function line:3695
.rs-team.style5 .team-grid:hover .text-bottom .person-name a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid:hover .text-bottom .person-name a {$/;" function line:3698
.rs-team.style5 .team-grid:hover .text-bottom .person-name a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid:hover .text-bottom .person-name a:hover {$/;" function line:3701
.rs-team.style5 .team-grid:hover .text-bottom .social-links /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style5 .team-grid:hover .text-bottom .social-links {$/;" function line:3704
.rs-team.style6 .player-item .player-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style6 .player-item .player-img {$/;" function line:3708
.rs-team.style6 .player-item .detail-wrap /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style6 .player-item .detail-wrap {$/;" function line:3711
.rs-team.style6 .player-item .detail-wrap .player-title .title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style6 .player-item .detail-wrap .player-title .title {$/;" function line:3716
.rs-team.style6 .player-item .detail-wrap .player-title .title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style6 .player-item .detail-wrap .player-title .title a {$/;" function line:3721
.rs-team.style6 .player-item .detail-wrap .player-title .title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style6 .player-item .detail-wrap .player-title .title a:hover {$/;" function line:3724
.rs-team.style6 .player-item .detail-wrap .player-title .player-position /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style6 .player-item .detail-wrap .player-title .player-position {$/;" function line:3727
.rs-team.style6 .player-item .detail-wrap .squad-numbers /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.style6 .player-item .detail-wrap .squad-numbers {$/;" function line:3733
.rs-team.swiper-slider .swiper-container /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container {$/;" function line:3742
.rs-team.swiper-slider .swiper-container .swiper-pagination /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container .swiper-pagination {$/;" function line:3745
.rs-team.swiper-slider .swiper-container .swiper-pagination span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container .swiper-pagination span {$/;" function line:3753
.rs-team.swiper-slider .swiper-container .slider-nav .nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container .slider-nav .nav {$/;" function line:3757
.rs-team.swiper-slider .swiper-container .slider-nav .nav i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container .slider-nav .nav i:before {$/;" function line:3768
.rs-team.swiper-slider .swiper-container .slider-nav .nav.prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container .slider-nav .nav.prev {$/;" function line:3781
.rs-team.swiper-slider .swiper-container .slider-nav .nav.next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container .slider-nav .nav.next {$/;" function line:3784
.rs-team.swiper-slider .swiper-container .slider-nav .nav:hover i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container .slider-nav .nav:hover i:before {$/;" function line:3787
.rs-team.swiper-slider .swiper-container:hover .slider-nav .nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-team.swiper-slider .swiper-container:hover .slider-nav .nav {$/;" function line:3790
.rs-single-team .player-image .name-box /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box {$/;" function line:3796
.rs-single-team .player-image .name-box .player-name /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box .player-name {$/;" function line:3802
.rs-single-team .player-image .name-box .player-position /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box .player-position {$/;" function line:3807
.rs-single-team .player-image .name-box .club /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box .club {$/;" function line:3813
.rs-single-team .player-image .name-box .social-icon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box .social-icon {$/;" function line:3817
.rs-single-team .player-image .name-box .social-icon li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box .social-icon li {$/;" function line:3821
.rs-single-team .player-image .name-box .social-icon li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box .social-icon li a {$/;" function line:3825
.rs-single-team .player-image .name-box .social-icon li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box .social-icon li:last-child {$/;" function line:3828
.rs-single-team .player-image .name-box .squad-no /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-image .name-box .squad-no {$/;" function line:3831
.rs-single-team .player-detail /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-detail {$/;" function line:3839
.rs-single-team .player-detail .title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-detail .title {$/;" function line:3844
.rs-single-team .player-detail table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-detail table {$/;" function line:3850
.rs-single-team .player-detail table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-detail table tr td {$/;" function line:3853
.rs-single-team .player-detail table tr td:first-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-team .player-detail table tr td:first-child {$/;" function line:3856
.rs-breaking-news /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news {$/;" function line:3862
.rs-breaking-news .sl-wrap .breaking-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .breaking-title {$/;" function line:3865
.rs-breaking-news .sl-wrap .item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .item {$/;" function line:3875
.rs-breaking-news .sl-wrap .item a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .item a {$/;" function line:3878
.rs-breaking-news .sl-wrap .item a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .item a:hover {$/;" function line:3881
.rs-breaking-news .sl-wrap .owl-stage-outer /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .owl-stage-outer {$/;" function line:3884
.rs-breaking-news .sl-wrap .owl-controls .owl-nav /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .owl-controls .owl-nav {$/;" function line:3887
.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-prev,$/;" function line:3895
.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-next /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-next {$/;" function line:3896
.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-prev i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-prev i,$/;" function line:3899
.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-next i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-next i {$/;" function line:3900
.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-prev /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-breaking-news .sl-wrap .owl-controls .owl-nav .owl-prev {$/;" function line:3905
.rs-counter.style1 .rs-counter-list .counter-number /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-counter.style1 .rs-counter-list .counter-number {$/;" function line:3911
.rs-counter.style1 .rs-counter-list .counter-number:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-counter.style1 .rs-counter-list .counter-number:after {$/;" function line:3915
.rs-counter.style1 .rs-counter-list .counter-text /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-counter.style1 .rs-counter-list .counter-text {$/;" function line:3919
.rs-gallery.style1 .gallery-grid /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid {$/;" function line:3927
.rs-gallery.style1 .gallery-grid .view-btn /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid .view-btn {$/;" function line:3931
.rs-gallery.style1 .gallery-grid .view-btn i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid .view-btn i {$/;" function line:3944
.rs-gallery.style1 .gallery-grid .view-btn i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid .view-btn i:before {$/;" function line:3947
.rs-gallery.style1 .gallery-grid .gallery-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid .gallery-title {$/;" function line:3950
.rs-gallery.style1 .gallery-grid:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid:after {$/;" function line:3965
.rs-gallery.style1 .gallery-grid:hover .view-btn /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid:hover .view-btn {$/;" function line:3978
.rs-gallery.style1 .gallery-grid:hover .gallery-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid:hover .gallery-title {$/;" function line:3982
.rs-gallery.style1 .gallery-grid:hover:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-gallery.style1 .gallery-grid:hover:after {$/;" function line:3985
.rs-awards .item .award-wrap .champion-logo img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-awards .item .award-wrap .champion-logo img {$/;" function line:3992
.rs-awards .item .award-wrap .champion-details /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-awards .item .award-wrap .champion-details {$/;" function line:3997
.rs-awards .item .award-wrap .champion-details .year-details /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-awards .item .award-wrap .champion-details .year-details {$/;" function line:4003
.rs-awards .item .award-wrap .champion-details .year-details h3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-awards .item .award-wrap .champion-details .year-details h3 {$/;" function line:4006
.rs-awards .item .award-wrap .champion-details .champion-no /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-awards .item .award-wrap .champion-details .champion-no {$/;" function line:4016
.rs-awards .item .award-wrap .champion-details:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-awards .item .award-wrap .champion-details:after {$/;" function line:4028
.rs-products .shop-guide .sorting select /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .shop-guide .sorting select {$/;" function line:4046
.rs-products .products /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products {$/;" function line:4054
.rs-products .products .product-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .product-img {$/;" function line:4062
.rs-products .products .product-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .product-img img {$/;" function line:4065
.rs-products .products .product-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .product-title {$/;" function line:4070
.rs-products .products .product-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .product-title a {$/;" function line:4077
.rs-products .products .product-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .product-title a:hover {$/;" function line:4080
.rs-products .products .product-price /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .product-price {$/;" function line:4083
.rs-products .products .cart-button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .cart-button {$/;" function line:4088
.rs-products .products .cart-button a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .cart-button a {$/;" function line:4097
.rs-products .products .cart-button a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products .cart-button a i:before {$/;" function line:4100
.rs-products .products:hover .cart-button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .products:hover .cart-button {$/;" function line:4103
.rs-products .shop-guide .sorting select /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .shop-guide .sorting select {$/;" function line:4114
.rs-products .videos /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos {$/;" function line:4122
.rs-products .videos .video-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .video-img {$/;" function line:4130
.rs-products .videos .video-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .video-img img {$/;" function line:4133
.rs-products .videos .video-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .video-title {$/;" function line:4138
.rs-products .videos .video-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .video-title a {$/;" function line:4145
.rs-products .videos .video-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .video-title a:hover {$/;" function line:4148
.rs-products .videos .video-price /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .video-price {$/;" function line:4151
.rs-products .videos .cart-button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .cart-button {$/;" function line:4156
.rs-products .videos .cart-button a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .cart-button a {$/;" function line:4165
.rs-products .videos .cart-button a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos .cart-button a i:before {$/;" function line:4168
.rs-products .videos:hover .cart-button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-products .videos:hover .cart-button {$/;" function line:4171
.rs-plans .shop-guide .sorting select /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .shop-guide .sorting select {$/;" function line:4181
.rs-plans .videos /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos {$/;" function line:4189
.rs-plans .videos .video-img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .video-img {$/;" function line:4197
.rs-plans .videos .video-img img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .video-img img {$/;" function line:4200
.rs-plans .videos .video-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .video-title {$/;" function line:4205
.rs-plans .videos .video-title a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .video-title a {$/;" function line:4212
.rs-plans .videos .video-title a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .video-title a:hover {$/;" function line:4215
.rs-plans .videos .video-price /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .video-price {$/;" function line:4218
.rs-plans .videos .cart-button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .cart-button {$/;" function line:4223
.rs-plans .videos .cart-button a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .cart-button a {$/;" function line:4232
.rs-plans .videos .cart-button a i:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos .cart-button a i:before {$/;" function line:4235
.rs-plans .videos:hover .cart-button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-plans .videos:hover .cart-button {$/;" function line:4238
.rs-cart .cart-wrap table.cart-table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table {$/;" function line:4249
.rs-cart .cart-wrap table.cart-table td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table td,$/;" function line:4254
.rs-cart .cart-wrap table.cart-table th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table th {$/;" function line:4255
.rs-cart .cart-wrap table.cart-table th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table th {$/;" function line:4260
.rs-cart .cart-wrap table.cart-table td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table td {$/;" function line:4268
.rs-cart .cart-wrap table.cart-table .product-remove a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .product-remove a {$/;" function line:4274
.rs-cart .cart-wrap table.cart-table .product-remove a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .product-remove a:hover {$/;" function line:4287
.rs-cart .cart-wrap table.cart-table .product-thumbnail /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .product-thumbnail {$/;" function line:4291
.rs-cart .cart-wrap table.cart-table .product-thumbnail a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .product-thumbnail a img {$/;" function line:4294
.rs-cart .cart-wrap table.cart-table .product-name a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .product-name a {$/;" function line:4298
.rs-cart .cart-wrap table.cart-table .product-name a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .product-name a:hover {$/;" function line:4302
.rs-cart .cart-wrap table.cart-table .product-price /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .product-price {$/;" function line:4305
.rs-cart .cart-wrap table.cart-table .product-quantity input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .product-quantity input {$/;" function line:4308
.rs-cart .cart-wrap table.cart-table .action .coupon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .action .coupon {$/;" function line:4316
.rs-cart .cart-wrap table.cart-table .action .coupon input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-wrap table.cart-table .action .coupon input {$/;" function line:4319
.rs-cart .cart-collaterals /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-collaterals {$/;" function line:4332
.rs-cart .cart-collaterals .cart-totals /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-collaterals .cart-totals {$/;" function line:4336
.rs-cart .cart-collaterals .cart-totals .title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-collaterals .cart-totals .title {$/;" function line:4340
.rs-cart .cart-collaterals .cart-totals table.cart-total-table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-collaterals .cart-totals table.cart-total-table {$/;" function line:4345
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr {$/;" function line:4351
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th {$/;" function line:4354
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr td,$/;" function line:4358
.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-cart .cart-collaterals .cart-totals table.cart-total-table tr th {$/;" function line:4359
.rs-checkout .checkout-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .checkout-title {$/;" function line:4365
.rs-checkout .checkout-title h3 /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .checkout-title h3 {$/;" function line:4368
.rs-checkout .coupon-toggle .accordion .card /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card {$/;" function line:4372
.rs-checkout .coupon-toggle .accordion .card .card-header /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card .card-header {$/;" function line:4377
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card .card-header .card-title {$/;" function line:4382
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title span i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card .card-header .card-title span i {$/;" function line:4385
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button {$/;" function line:4388
.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card .card-header .card-title button:hover {$/;" function line:4396
.rs-checkout .coupon-toggle .accordion .card .card-body /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card .card-body {$/;" function line:4399
.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input {$/;" function line:4405
.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .coupon-toggle .accordion .card .card-body .coupon-code-input input {$/;" function line:4410
.rs-checkout .full-grid /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid {$/;" function line:4418
.rs-checkout .full-grid .form-content-box /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .form-content-box {$/;" function line:4421
.rs-checkout .full-grid .form-content-box .form-group label /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .form-content-box .form-group label {$/;" function line:4424
.rs-checkout .full-grid .form-content-box .form-group select /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .form-content-box .form-group select {$/;" function line:4430
.rs-checkout .full-grid .form-content-box .form-group textarea /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .form-content-box .form-group textarea {$/;" function line:4446
.rs-checkout .full-grid .form-content-box .form-group .form-control-mod /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .form-content-box .form-group .form-control-mod {$/;" function line:4457
.rs-checkout .full-grid .form-content-box .form-group .form-control-mod.margin-bottom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .form-content-box .form-group .form-control-mod.margin-bottom {$/;" function line:4467
.rs-checkout .full-grid .ordered-product table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .ordered-product table {$/;" function line:4470
.rs-checkout .full-grid .ordered-product table tr th /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .ordered-product table tr th {$/;" function line:4473
.rs-checkout .full-grid .ordered-product table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .ordered-product table tr td {$/;" function line:4477
.rs-checkout .full-grid .payment-method .top-area /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .payment-method .top-area {$/;" function line:4481
.rs-checkout .full-grid .payment-method .top-area .payment-co /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .payment-method .top-area .payment-co {$/;" function line:4484
.rs-checkout .full-grid .payment-method .top-area .payment-co span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .payment-method .top-area .payment-co span {$/;" function line:4487
.rs-checkout .full-grid .payment-method .top-area .p-msg /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .payment-method .top-area .p-msg {$/;" function line:4491
.rs-checkout .full-grid .payment-method .top-area .p-msg:before /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-checkout .full-grid .payment-method .top-area .p-msg:before {$/;" function line:4502
.rs-my-account .login-side /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side,$/;" function line:4517
.rs-my-account .recover-psw-side /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side {$/;" function line:4518
.rs-my-account .login-side form.login-form.border-style /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side form.login-form.border-style,$/;" function line:4524
.rs-my-account .recover-psw-side form.login-form.border-style /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side form.login-form.border-style {$/;" function line:4525
.rs-my-account .login-side form.login-form .input-label /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side form.login-form .input-label,$/;" function line:4530
.rs-my-account .recover-psw-side form.login-form .input-label /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side form.login-form .input-label {$/;" function line:4531
.rs-my-account .login-side form.login-form .input-label span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side form.login-form .input-label span,$/;" function line:4535
.rs-my-account .recover-psw-side form.login-form .input-label span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side form.login-form .input-label span {$/;" function line:4536
.rs-my-account .login-side form.login-form .input-control /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side form.login-form .input-control,$/;" function line:4541
.rs-my-account .recover-psw-side form.login-form .input-control /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side form.login-form .input-control {$/;" function line:4542
.rs-my-account .login-side form.login-form .login-control /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side form.login-form .login-control,$/;" function line:4553
.rs-my-account .recover-psw-side form.login-form .login-control /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side form.login-form .login-control {$/;" function line:4554
.rs-my-account .login-side form.login-form .login-control ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side form.login-form .login-control ul li,$/;" function line:4557
.rs-my-account .recover-psw-side form.login-form .login-control ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side form.login-form .login-control ul li {$/;" function line:4558
.rs-my-account .login-side form.login-form .login-control ul li .readon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side form.login-form .login-control ul li .readon,$/;" function line:4562
.rs-my-account .recover-psw-side form.login-form .login-control ul li .readon /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side form.login-form .login-control ul li .readon {$/;" function line:4563
.rs-my-account .login-side form.login-form .login-control ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side form.login-form .login-control ul li:last-child,$/;" function line:4570
.rs-my-account .recover-psw-side form.login-form .login-control ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side form.login-form .login-control ul li:last-child {$/;" function line:4571
.rs-my-account .login-side .recover-info /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .login-side .recover-info,$/;" function line:4574
.rs-my-account .recover-psw-side .recover-info /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .recover-psw-side .recover-info {$/;" function line:4575
.rs-my-account .regi-side /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side {$/;" function line:4578
.rs-my-account .regi-side form.register-form.border-style /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form.border-style {$/;" function line:4584
.rs-my-account .regi-side form.register-form label.input-label /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form label.input-label {$/;" function line:4589
.rs-my-account .regi-side form.register-form label.input-label span.req /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form label.input-label span.req {$/;" function line:4593
.rs-my-account .regi-side form.register-form input.custom-placeholder /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form input.custom-placeholder {$/;" function line:4598
.rs-my-account .regi-side form.register-form .margin-space /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form .margin-space {$/;" function line:4609
.rs-my-account .regi-side form.register-form .gender-detect label span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form .gender-detect label span {$/;" function line:4612
.rs-my-account .regi-side form.register-form .gender-detect label:last-child span /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form .gender-detect label:last-child span {$/;" function line:4616
.rs-my-account .regi-side form.register-form .date /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form .date {$/;" function line:4619
.rs-my-account .regi-side form.register-form .checkbox /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-my-account .regi-side form.register-form .checkbox {$/;" function line:4627
.rs-our-poll /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll {$/;" function line:4633
.rs-our-poll form /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form {$/;" function line:4639
.rs-our-poll form .title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form .title {$/;" function line:4642
.rs-our-poll form label /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form label {$/;" function line:4649
.rs-our-poll form label:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form label:hover {$/;" function line:4657
.rs-our-poll form label input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form label input {$/;" function line:4660
.rs-our-poll form ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form ul li {$/;" function line:4664
.rs-our-poll form ul li button /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form ul li button {$/;" function line:4668
.rs-our-poll form ul li button:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form ul li button:hover {$/;" function line:4679
.rs-our-poll form ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-our-poll form ul li:last-child {$/;" function line:4682
.rs-match-fixture .match-list table /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-fixture .match-list table {$/;" function line:4688
.rs-match-fixture .match-list table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-fixture .match-list table tr td {$/;" function line:4692
.rs-match-fixture .match-list table tr td.medium-font /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-fixture .match-list table tr td.medium-font {$/;" function line:4695
.rs-match-fixture .match-list table tr td.big-font /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-fixture .match-list table tr td.big-font {$/;" function line:4699
.rs-match-fixture .match-list table tr:nth-child(2n) td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-fixture .match-list table tr:nth-child(2n) td {$/;" function line:4704
.rs-match-fixture.style2 .match-list table tr td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-fixture.style2 .match-list table tr td {$/;" function line:4707
.rs-match-fixture.style2 .match-list table tr td:nth-child(2n) /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-fixture.style2 .match-list table tr td:nth-child(2n) {$/;" function line:4710
.rs-match-fixture.style2 .match-list table tr:nth-child(2n) td /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-match-fixture.style2 .match-list table tr:nth-child(2n) td {$/;" function line:4713
.rs-subscribe /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe {$/;" function line:4719
.rs-subscribe .subscribe-form .title-part .title /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .title-part .title {$/;" function line:4726
.rs-subscribe .subscribe-form .title-part .desc /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .title-part .desc {$/;" function line:4731
.rs-subscribe .subscribe-form .subscribe-form-fields /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .subscribe-form-fields {$/;" function line:4734
.rs-subscribe .subscribe-form .subscribe-form-fields input /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .subscribe-form-fields input {$/;" function line:4737
.rs-subscribe .subscribe-form .subscribe-form-fields input.news-email /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .subscribe-form-fields input.news-email {$/;" function line:4744
.rs-subscribe .subscribe-form .subscribe-form-fields input.news-submit /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .subscribe-form-fields input.news-submit {$/;" function line:4751
.rs-subscribe .subscribe-form .subscribe-form-fields input.news-submit.solid /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .subscribe-form-fields input.news-submit.solid {$/;" function line:4762
.rs-subscribe .subscribe-form .subscribe-form-fields input.news-submit.solid:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .subscribe-form-fields input.news-submit.solid:hover {$/;" function line:4765
.rs-subscribe .subscribe-form .subscribe-form-fields input.news-submit:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe .subscribe-form .subscribe-form-fields input.news-submit:hover {$/;" function line:4768
.rs-subscribe.shadow-style /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-subscribe.shadow-style {$/;" function line:4771
.rs-sponsor .logos a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-sponsor .logos a img {$/;" function line:4777
.rs-sponsor .logos a img:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-sponsor .logos a img:hover {$/;" function line:4782
.rs-sponsor.normal-mood .logos a img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-sponsor.normal-mood .logos a img {$/;" function line:4786
.rs-sponsor-inner .sponsor-item /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-sponsor-inner .sponsor-item {$/;" function line:4793
.rs-sponsor-inner .sponsor-item img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-sponsor-inner .sponsor-item img {$/;" function line:4796
.rs-sponsor-inner .sponsor-item img:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-sponsor-inner .sponsor-item img:hover {$/;" function line:4806
.rs-single-club .club-details .team-info-list /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .club-details .team-info-list {$/;" function line:4813
.rs-single-club .club-details .team-info-list li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .club-details .team-info-list li {$/;" function line:4816
.rs-single-club .club-details .team-info-list li strong /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .club-details .team-info-list li strong {$/;" function line:4821
.rs-single-club .rs-count .rs-counter-list .counter-number /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .rs-count .rs-counter-list .counter-number {$/;" function line:4827
.rs-single-club .rs-count .rs-counter-list .counter-text /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .rs-count .rs-counter-list .counter-text {$/;" function line:4838
.rs-single-club .club-videos .video_wrap .popup_videos /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .club-videos .video_wrap .popup_videos {$/;" function line:4842
.rs-single-club .club-videos .video_wrap .popup_videos img /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .club-videos .video_wrap .popup_videos img {$/;" function line:4846
.rs-single-club .club-videos .video_wrap .popup_videos i /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .club-videos .video_wrap .popup_videos i {$/;" function line:4849
.rs-single-club .club-videos .video_wrap .popup_videos:after /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-single-club .club-videos .video_wrap .popup_videos:after {$/;" function line:4859
/* .rs-footer /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^\/* .rs-footer {$/;" function line:4871
.rs-footer .footer-bootom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer .footer-bootom {$/;" function line:4877
.fa /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.fa{$/;" function line:4881
.rs-footer .footer-bootom .copyright p /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer .footer-bootom .copyright p {$/;" function line:4884
.rs-footer .footer-bootom .copyright p a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer .footer-bootom .copyright p a {$/;" function line:4889
.rs-footer .footer-bootom .copyright p a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer .footer-bootom .copyright p a:hover {$/;" function line:4892
.rs-footer .footer-bootom .footer-share ul li /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer .footer-bootom .footer-share ul li {$/;" function line:4895
.rs-footer .footer-bootom .footer-share ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer .footer-bootom .footer-share ul li a {$/;" function line:4899
.rs-footer .footer-bootom .footer-share ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer .footer-bootom .footer-share ul li a:hover {$/;" function line:4911
.rs-footer .footer-bootom .footer-share ul li:last-child /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer .footer-bootom .footer-share ul li:last-child {$/;" function line:4914
.rs-footer.dark-mode /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer.dark-mode {$/;" function line:4917
.rs-footer.dark-mode .footer-bootom /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer.dark-mode .footer-bootom {$/;" function line:4921
.rs-footer.dark-mode .footer-bootom .footer-share ul li a /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer.dark-mode .footer-bootom .footer-share ul li a {$/;" function line:4929
.rs-footer.dark-mode .footer-bootom .footer-share ul li a:hover /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-footer.dark-mode .footer-bootom .footer-share ul li a:hover {$/;" function line:4933
.rs-page-error /home/ishimwe/Documents/myProjects/bestfooball_repo/public/css/style.css /^.rs-page-error {$/;" function line:4939