Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2040 | Rev 2170 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1239 steven 1
/*===================== TABLE OF CONTENT ======================= 1.	1 Homepages 2.  Fonts 3.  Reset Css 4.  Cross Browser Compatibility 5.  Header 6.  Navigations 7.  Dropdown 8.  Responsive Header 9.  Revolution Slider (Banner) 10. About App 11. Amazing Features 12. Interesting Screenshots 14.	Latest Blog News 15.	Questions Sections 16.	Clinet's Testimonial 17.	Our Newsletter 18. Stylish Pricing Plan 19.	Never Miss a Deal 20.	Contact Us 21. Footer =============================================================*/
2
 
3
/* ================================================================================== Fonts ===================================================================================== */
4
 
5
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i");
6
/* ================================================================================== Reset Css ===================================================================================== */
7
 
8
html,
9
body,
10
div,
11
span,
12
applet,
13
object,
14
iframe,
15
h1,
16
h2,
17
h3,
18
h4,
19
h5,
20
h6,
21
p,
22
blockquote,
23
pre,
24
a,
25
abbr,
26
acronym,
27
address,
28
big,
29
cite,
30
code,
31
del,
32
dfn,
33
em,
34
img,
35
ins,
36
kbd,
37
q,
38
s,
39
samp,
40
small,
41
strike,
42
strong,
43
sub,
44
sup,
45
tt,
46
var,
47
b,
48
u,
49
i,
50
center,
51
dl,
52
dt,
53
dd,
54
ol,
55
ul,
56
li,
57
fieldset,
58
form,
59
label,
60
legend,
61
table,
62
caption,
63
tbody,
64
tfoot,
65
thead,
66
tr,
67
th,
68
td,
69
article,
70
aside,
71
canvas,
72
details,
73
embed,
74
figure,
75
figcaption,
76
footer,
77
header,
78
hgroup,
79
menu,
80
nav,
81
output,
82
ruby,
83
section,
84
summary,
85
time,
86
mark,
87
audio,
88
video {
89
    margin: 0;
90
    padding: 0;
91
    border: 0;
92
    font-size: 100%;
93
    font: inherit;
94
    vertical-align: baseline;
95
}
96
 
97
/* HTML5 display-role reset for older browsers */
98
 
99
article,
100
aside,
101
details,
102
figcaption,
103
figure,
104
footer,
105
header,
106
hgroup,
107
menu,
108
nav,
109
section {
110
    display: block;
111
}
112
 
113
body {
114
    line-height: 1;
115
    font-family: "Source Sans Pro", sans-serif;
116
    overflow-x: hidden;
117
    font-weight: 400;
118
    background-color: #f2f2f2;
119
}
120
 
121
ol,
122
ul {
123
    list-style: none;
124
}
125
 
126
a:hover {
127
    text-decoration: none;
128
}
129
 
130
blockquote,
131
q {
132
    quotes: none;
133
}
134
 
135
blockquote:before,
136
blockquote:after,
137
q:before,
138
q:after {
139
    content: "";
140
    content: none;
141
}
142
 
143
button {
144
    outline: none;
145
}
146
 
147
table {
148
    border-collapse: collapse;
149
    border-spacing: 0;
150
}
151
 
152
* {
153
    margin: 0;
154
    padding: 0;
155
}
156
 
157
a:focus {
158
    text-decoration: none;
159
    outline: none;
160
}
161
 
162
a:hover {
163
    color: #fff;
164
}
165
 
166
button {
167
    outline: none;
168
}
169
 
170
input {
171
    outline: none;
172
}
173
 
174
textarea {
175
    outline: none;
176
}
177
 
178
section {
179
    float: left;
180
    width: 100%;
181
    position: relative;
182
}
183
 
184
img {
185
    float: left;
186
}
187
 
188
p {
189
    font-size: 14px;
190
    line-height: 24px;
191
    color: #666666;
192
}
193
 
194
hr {
195
    margin-top: 1rem;
196
    margin-bottom: 1rem;
197
    border: 0;
198
    border-top: 1px solid #e5e5e5 !important;
199
}
200
 
201
/* ================ CROSS BROWSER COMPATABILITY =============== */
202
 
203
img {
204
    max-width: 100%;
205
}
206
 
207
.ask-question,
208
nav,
209
.notification-box.active,
210
nav ul li a,
211
.user-account-settingss.active,
212
.user-info a,
213
.suggestion-usd>span i,
214
.view-more>a,
215
.tags-sec ul li a,
216
.post-st ul li a,
217
.ed-opts>a,
218
.bk-links li a,
219
.like-com li a,
220
.user-profy>a,
221
.slick-previous:before,
222
.slick-nexti:before,
223
.comment>a,
224
.sign_link>a,
225
.post-popup,
226
.post-project>a,
227
.post-project-fields form ul li button,
228
.post-project-fields form ul li a,
229
.sign-control li a,
230
.cover-sec>a,
231
.star-descp>a,
232
.message-btn a,
233
.pf-gallery ul li,
234
.gallery_pt:before,
235
.gallery_pt>a,
236
.overview-box,
237
.skl-name,
238
.conv-list,
239
.save-stngs ul li button,
240
.forum-links.active,
241
.react-links li a,
242
.next-prev>a,
243
nav ul li:hover>ul,
244
.user-pro-img>a i {
245
    -webkit-transition: all 0.2s;
246
    -moz-transition: all 0.2s;
247
    -ms-transition: all 0.2s;
248
    -o-transition: all 0.2s;
249
    transition: all 0.2s;
250
}
251
 
252
/* ============== DEFAULT BORDER RADIUS =========== */
253
 
254
.ask-question,
255
.login_register ul li a,
256
.search-bar form input,
257
.search-bar form button,
258
.search_form form input,
259
.post-st ul li a,
260
.post-bar,
261
.bk-links li i,
262
.bid_now,
263
.user-profy ul li a,
264
.posty,
265
.comment_box form button,
266
.post-project-fields form input,
267
.post-project-fields form textarea,
268
.post-project-fields form select,
269
.post-project-fields form ul li button,
270
.post-project-fields form ul li a,
271
.signin-pop,
272
.sign-control,
273
.sign_in_sec form input,
274
.sign_in_sec form select,
275
.sign_in_sec form button,
276
.signup-tab,
277
.login-resources ul li a,
278
.flw-hr li a,
279
.message-btn a,
280
.user-profile-ov,
281
.portfolio-gallery-sec,
282
.overview-edit,
283
.overview-edit form textarea,
284
.overview-edit form input,
285
.overview-edit form select,
286
.overview-edit button,
287
.file-submit,
288
.billing-method,
289
.lt-sec>a,
290
.add-billing-method,
291
.payment_methods form button,
292
.payment_methods form input,
293
.company-up-info ul li a,
294
.search-box form input,
295
.filter-dd form input,
296
.filter-dd form select,
297
.conversation-box,
298
.save-stngs ul li button,
299
.cp-field input,
300
.cp-field textarea,
301
.accept-req,
302
.mf-field input,
303
.mf-field button,
304
.pagination li .page-link,
305
.post_comment_sec form textarea,
306
.post_comment_sec form button,
307
.next-prev>a {
308
    -webkit-border-radius: 4px;
309
    -moz-border-radius: 4px;
310
    -ms-border-radius: 4px;
311
    -o-border-radius: 4px;
312
    border-radius: 3px;
313
}
314
 
315
.wrapper {
316
    float: left;
317
    width: 100%;
318
    min-height: 100vh;
319
    position: relative;
320
    background-color: #fff;
321
}
322
 
323
.overlay:before {
324
    content: "";
325
    position: absolute;
326
    top: 0;
327
    left: 0;
328
    width: 100%;
329
    height: 100%;
330
    background-color: rgba(0, 0, 0, 0.75);
331
    z-index: 99;
332
}
333
 
334
header {
335
    float: left;
336
    width: 100%;
337
    background-color: #e44d3a;
338
}
339
 
340
.header-data {
341
    float: left;
342
    width: 100%;
343
}
344
 
345
.logo {
346
    float: left;
347
    width: 40px;
348
    margin-right: 14px;
349
    margin-top: 10px;
350
}
351
 
352
.logo.pd-btm {
353
    padding-bottom: 10px;
354
}
355
 
356
.forum-bar {
357
    float: left;
358
    margin-top: 10px;
359
    width: 400px;
360
}
361
 
362
.forum-bar h2 {
363
    float: left;
364
    margin-right: 40px;
365
}
366
 
367
.forum-bar ul {
368
    float: left;
369
    margin-top: 0px;
370
}
371
 
372
.ask-question {
373
    background-color: #fff;
374
    padding: 10px 25px;
375
    color: #e44d3a !important;
376
    font-size: 14px;
377
    font-weight: 600;
378
}
379
 
380
.ask-question:hover {
381
    color: #e44d3a;
382
}
383
 
384
.forum-bar ul li {
385
    display: inline-block;
386
    margin-right: 40px;
387
}
388
 
389
.forum-bar ul li:last-child {
390
    margin-right: 0;
391
}
392
 
393
.forum-bar ul li a {
394
    display: inline-block;
395
    color: #ffffff;
396
    font-size: 14px;
397
    font-weight: 500;
398
}
399
 
400
.forum-bar h2 {
401
    color: #ffffff;
402
    font-size: 28px;
403
    font-weight: 500;
404
}
405
 
406
/* ========== login_register ========== */
407
 
408
.login_register {
409
    float: right;
410
    margin-top: 8px;
411
    padding-left: 30px;
412
}
413
 
414
.login_register ul li {
415
    display: inline-block;
416
    margin-right: 8px;
417
}
418
 
419
.login_register ul li:last-child {
420
    margin-right: 0;
421
}
422
 
423
.login_register ul li a {
424
    display: inline-block;
425
    color: #ffffff;
426
    font-size: 14px;
427
    border: 1px solid #fff;
428
    height: 40px;
429
    line-height: 40px;
430
    padding: 0 20px;
431
    font-weight: 600;
432
}
433
 
434
.search-bar.st2 {
435
    float: right;
436
}
437
 
438
.search-bar {
439
    float: left;
440
    width: 280px;
441
    margin-top: 9px;
442
}
443
 
444
.search-bar form {
445
    float: left;
446
    width: 100%;
447
    position: relative;
448
}
449
 
450
.search-bar form input {
451
    width: 100%;
452
    background-color: #fff;
453
    height: 38px;
454
    color: #b2b2b2;
455
    font-size: 12px;
456
    border: 0;
457
    padding: 0 10px;
458
}
459
 
460
.search-bar form button {
461
    position: absolute;
462
    top: 0;
463
    right: 0;
464
    background-color: #efefef;
465
    width: 38px;
466
    height: 100%;
467
    border: 0;
468
}
469
 
470
.search-bar form button i {
471
    color: #e44d3a;
472
    font-size: 20px;
473
    font-weight: bold;
474
}
475
 
476
nav {
477
    /* float: left; width: 60%; text-align: right; */
478
    /* padding-right: 13px; */
479
}
480
 
481
nav ul li {
482
    /* display: inline-block; text-align: center; padding: 15px 13px; position: relative; */
483
}
484
 
485
nav ul li:hover>ul {
486
    /* opacity: 1; visibility: visible; z-index: 9999; */
487
}
488
 
489
nav ul ul {
490
    /* position: absolute; top: 100%; left: 0; width: 200px; background-color: #e44d3a; text-align: left; padding: 20px 0 10px 0; opacity: 0; visibility: hidden; z-index: 999999; */
491
}
492
 
493
/* nav ul ul li {padding: 0; float: left; width: 100%; text-align: left; margin-bottom: 15px; padding: 0 20px; } nav ul ul li a:hover {color: #fff; } nav ul ul li a {font-size: 16px; } */
494
 
495
.notification-box.msg p {
496
    line-height: 20px;
497
    font-size: 14px;
498
    font-weight: 400;
499
    margin-top: 2px;
500
}
501
 
502
.notification-box.msg .nott-list .notification-info span {
503
    bottom: auto;
504
    top: 5px;
505
}
506
 
507
.notification-box.msg .notification-info h3 {
508
    margin-bottom: 1px;
509
}
510
 
511
.notification-box.msg .nott-list .notfication-details {
512
    padding: 17px 20px 17px 20px;
513
}
514
 
515
.notification-box {
516
    position: absolute;
517
    top: 100%;
518
    right: 0;
519
    width: 300px;
520
    background-color: #fff;
521
    opacity: 1;
522
    visibility: visible;
523
    z-index: 999;
524
    display: none;
525
}
526
 
527
.notification-box.active {
528
    opacity: 1;
529
    visibility: visible;
530
    z-index: 999999999;
531
}
532
 
533
.nt-title {
534
    float: left;
535
    width: 100%;
536
    border-bottom: 1px solid #e5e5e5;
537
    padding: 10px 20px;
538
}
539
 
540
.nt-title h4 {
541
    float: left;
542
    color: #686868;
543
    font-size: 12px;
544
    font-weight: 600;
545
}
546
 
547
.nt-title>a {
548
    float: right;
549
    color: #686868;
550
    font-size: 12px;
551
    font-weight: 600;
552
}
553
 
554
.nott-list {
555
    float: left;
556
    width: 100%;
557
}
558
 
559
.nott-list .notification-info {
560
    width: 86%;
561
    float: left;
562
    text-align: left;
563
    position: relative;
564
}
565
 
566
.nott-list .notfication-details {
567
    padding: 20px 20px 12px 20px;
568
}
569
 
570
.nott-list .notification-info h3 {
571
    line-height: 20px;
572
}
573
 
574
.nott-list .notification-info span {
575
    position: absolute;
576
    bottom: 5px;
577
    right: 0;
578
}
579
 
580
.view-all-nots {
581
    float: left;
582
    width: 100%;
583
}
584
 
585
.view-all-nots>a {
586
    float: left;
587
    width: 100%;
588
    color: #ffffff;
589
    font-size: 16px;
590
    text-transform: capitalize;
591
    font-weight: 600;
592
    text-align: center;
593
    background-color: #e44d3a;
594
    padding: 18px 0;
595
}
596
 
597
nav ul li span {
598
    display: block;
599
    height: 14px;
600
}
601
 
602
nav ul li span img {
603
    float: none;
604
}
605
 
606
nav ul li a {
607
    color: #ffffff;
608
    font-size: 14px;
609
}
610
 
611
nav>ul>li>a:hover {
612
    color: #fff;
613
}
614
 
615
.user-account {
616
    float: right;
617
    /* width: 110px; */
618
    border-left: 1px solid #dd3e2b;
619
    border-right: 1px solid #dd3e2b;
620
    box-sizing: border-box;
621
    position: relative;
622
    padding: 0 1rem;
623
}
624
 
625
.user-info {
626
    /* float: left; width: 100%; padding: 13px 10px; */
627
    position: relative;
628
}
629
 
630
.user-account-settingss {
631
    position: absolute;
632
    opacity: 1;
633
    visibility: visible;
634
    z-index: 999;
635
    display: none;
636
    top: 100%;
637
    right: 0;
638
    width: 240px;
639
    background-color: #fff;
640
    border-left: 1px solid #e5e5e5;
641
    border-bottom: 1px solid #e5e5e5;
642
    border-right: 1px solid #e5e5e5;
643
    -webkit-border-radius: 0 0 5px 5px;
644
    -moz-border-radius: 0 0 5px 5px;
645
    -ms-border-radius: 0 0 5px 5px;
646
    -o-border-radius: 0 0 5px 5px;
647
    border-radius: 0 0 5px 5px;
648
    -webkit-box-shadow: 1px 1px 6px -2px rgba(0, 0, 0, 0.24);
649
    -moz-box-shadow: 1px 1px 6px -2px rgba(0, 0, 0, 0.24);
650
    -ms-box-shadow: 1px 1px 6px -2px rgba(0, 0, 0, 0.24);
651
    -o-box-shadow: 1px 1px 6px -2px rgba(0, 0, 0, 0.24);
652
    box-shadow: 1px 1px 6px -2px rgba(0, 0, 0, 0.24);
653
    /*opacity: 0; visibility: hidden;*/
654
}
655
 
656
.user-account-settingss.active {
657
    opacity: 1;
658
    visibility: visible;
659
    z-index: 9999;
660
}
661
 
662
.user-account-settingss>h3 {
663
    color: #000000;
664
    font-size: 16px;
665
    font-weight: 600;
666
    float: left;
667
    width: 100%;
668
    border-bottom: 1px solid #e5e5e5;
669
    padding: 15px 20px;
670
}
671
 
672
.on-off-status {
673
    float: left;
674
    width: 100%;
675
    padding: 20px;
676
    border-bottom: 1px solid #e5e5e5;
677
}
678
 
679
.on-off-status li {
680
    float: left;
681
    width: 100%;
682
    margin-bottom: 15px;
683
}
684
 
685
.on-off-status li:last-child {
686
    margin-bottom: 0;
687
}
688
 
689
.on-off-status li .fgt-sec small {
690
    color: #686868;
691
}
692
 
693
/* =========== search_form =========== */
694
 
695
.search_form {
696
    float: left;
697
    width: 100%;
698
    padding: 20px;
699
    border-bottom: 1px solid #e5e5e5;
700
}
701
 
702
.search_form form {
703
    float: left;
704
    width: 100%;
705
    position: relative;
706
}
707
 
708
.search_form form input {
709
    width: 100%;
710
    height: 35px;
711
    padding: 0 15px;
712
    border: 1px solid #e5e5e5;
713
    background-color: #f2f2f2;
714
}
715
 
716
.search_form form button {
717
    color: #f2f2f2;
718
    font-size: 14px;
719
    background-color: #e44d3a;
720
    padding: 0 10px;
721
    height: 100%;
722
    position: absolute;
723
    top: 0;
724
    right: 0;
725
    border: 0;
726
    font-weight: 600;
727
    -webkit-border-radius: 0 3px 3px 0;
728
    -moz-border-radius: 0 3px 3px 0;
729
    -ms-border-radius: 0 3px 3px 0;
730
    -o-border-radius: 0 3px 3px 0;
731
    border-radius: 0 3px 3px 0;
732
    cursor: pointer;
733
}
734
 
735
/* ============ us-links ============= */
736
 
737
.us-links {
738
    float: left;
739
    width: 100%;
740
    border-bottom: 1px solid #e5e5e5;
741
    padding: 20px;
742
}
743
 
744
.us-links li {
745
    float: left;
746
    width: 100%;
747
    margin-bottom: 15px;
748
}
749
 
750
.us-links li:last-child {
751
    margin-bottom: 0;
752
}
753
 
754
.us-links li a {
755
    float: left;
756
    width: 100%;
757
    color: #000000;
758
    font-size: 14px;
759
    font-weight: 500;
760
}
761
 
762
.tc {
763
    text-align: center;
764
}
765
 
766
.tc a {
767
    color: #000;
768
}
769
 
770
.user-info img {
771
    /* margin-right: 10px; -webkit-border-radius: 100px; -moz-border-radius: 100px; -ms-border-radius: 100px; -o-border-radius: 100px; border-radius: 100px; */
772
}
773
 
774
.user-info a {
775
    color: #fff;
776
    font-size: 14px;
777
    float: left;
778
    margin-top: 8px;
779
}
780
 
781
.user-info a:hover {
782
    color: #fff;
783
}
784
 
785
.user-info>i {
786
    position: absolute;
787
    top: 50%;
788
    right: -15px;
789
    color: #fff;
790
    font-size: 12px;
791
    -webkit-transform: translateY(-50%);
792
    -moz-transform: translateY(-50%);
793
    -ms-transform: translateY(-50%);
794
    -o-transform: translateY(-50%);
795
    transform: translateY(-50%);
796
}
797
 
798
/* =================== main-section ================= */
799
 
800
main {
801
    float: left;
802
    width: 100%;
803
    padding: 60px 0;
804
}
805
 
806
.main-section {
807
    float: left;
808
    width: 100%;
809
    background-color: #fff;
810
    padding: 3rem 0;
811
}
812
 
813
.main-section-data {
814
    float: left;
815
    width: 100%;
816
}
817
 
818
.main-left-sidebar {
819
    float: left;
820
    width: 100%;
821
    margin-top: -20px;
822
}
823
 
824
.full-width {
825
    float: left;
826
    width: 100%;
827
    background-color: #fff;
828
    margin-bottom: 20px;
829
    /* border-left: 1px solid #e5e5e5; border-right: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; */
830
}
831
 
832
.username-dt {
833
    float: left;
834
    width: 100%;
835
    background-color: #e44d3a;
836
    padding-top: 40px;
837
}
838
 
839
.user-data {
840
    text-align: center;
841
}
842
 
843
.usr-pic {
844
    width: 110px;
845
    height: 110px;
846
    margin: 0 auto;
847
    margin-bottom: -48px;
848
}
849
 
850
.usr-pic>img {
851
    float: none;
852
    border: 5px solid #fff;
853
    -webkit-border-radius: 100px;
854
    -moz-border-radius: 100px;
855
    -ms-border-radius: 100px;
856
    -o-border-radius: 100px;
857
    border-radius: 100px;
858
    width: 100%;
859
}
860
 
861
.user-profile {
862
    float: left;
863
    width: 100%;
864
}
865
 
866
.user-specs {
867
    float: left;
868
    width: 100%;
869
    padding: 63px 0 27px 0;
870
}
871
 
872
.user-specs h3 {
873
    color: #000000;
874
    font-size: 24px;
875
    text-transform: capitalize;
876
    font-weight: 600;
877
    margin-bottom: 8px;
878
}
879
 
880
.user-specs span {
881
    color: #686868;
882
    font-size: 14px;
883
}
884
 
885
.user-fw-status {
886
    float: left;
887
    width: 100%;
888
}
889
 
890
.user-fw-status li {
891
    float: left;
892
    width: 100%;
893
    /* border-bottom: 1px solid #e5e5e5; */
894
    /* border-top: 1px solid #e5e5e5; */
895
    padding: 15px 0;
896
}
897
 
898
.user-fw-status li:last-child {
899
    border-bottom: 0;
900
}
901
 
902
.user-fw-status li:nth-child(1),
903
.user-fw-status li:nth-child(2) {
904
    border-bottom: 0;
905
}
906
 
907
.user-fw-status li h4 {
908
    color: #686868;
909
    font-size: 20px;
910
    margin-bottom: 10px;
911
}
912
 
913
.user-fw-status span {
914
    color: #000000;
915
    font-size: 20px;
916
}
917
 
918
.user-fw-status li a {
919
    color: #e44d3a;
920
    font-size: 14px;
921
    font-weight: 600;
922
}
923
 
924
/* ============= Suggestions ============ */
925
 
926
.sd-title {
927
    /* float: left; */
928
    width: 100%;
929
    /* padding: 20px; */
930
    /* border-bottom: 1px solid #e5e5e5; */
931
    position: relative;
932
    display: grid;
933
}
934
 
935
.sd-title h3 {
936
    color: #000000;
937
    font-size: 18px;
938
    font-weight: 600;
939
    float: left;
940
}
941
 
942
.sd-title i {
943
    float: right;
944
    color: #b7b7b7;
945
    font-size: 24px;
946
    position: absolute;
947
    right: 5px;
948
    top: 18px;
949
}
950
 
951
.suggestions-list {
952
    /* float: left; */
953
    width: 100%;
954
    /* padding: 13px 0 30px 0; */
955
}
956
 
957
.suggestion-usd {
958
    float: left;
959
    width: 100%;
960
    padding: 15px 20px;
961
}
962
 
963
.suggestion-usd img {
964
    -webkit-border-radius: 100px;
965
    -moz-border-radius: 100px;
966
    -ms-border-radius: 100px;
967
    -o-border-radius: 100px;
968
    border-radius: 100px;
969
}
970
 
971
.sgt-text {
972
    float: left;
973
    padding-left: 10px;
974
}
975
 
976
.sgt-text h4 {
977
    color: #000000;
978
    font-size: 14px;
979
    font-weight: 400;
980
    margin-bottom: 4px;
981
}
982
 
983
.sgt-text span {
984
    color: #686868;
985
    font-size: 14px;
986
}
987
 
988
.suggestion-usd>span {
989
    margin-top: 4px;
990
    position: relative;
991
    margin-left: 1rem;
992
}
993
 
994
.suggestion-usd>span i {
995
    color: #b2b2b2;
996
    width: 25px;
997
    height: 25px;
998
    border-radius: 3px;
999
    cursor: pointer;
1000
    text-align: center;
1001
    display: flex;
1002
    justify-content: center;
1003
    align-items: center;
1004
}
1005
 
1006
.bg-white {
1007
    background-color: white !important;
1008
}
1009
 
1010
.suggestion-usd>span i:hover {
1011
    background-color: #0961bf !important;
1012
    color: #fff;
1013
    border-radius: 3px;
1014
}
1015
 
1016
.icon-button {
1017
    color: #b2b2b2;
1018
    width: 25px;
1019
    height: 25px;
1020
    border-radius: 3px;
1021
    cursor: pointer;
1022
    text-align: center;
1023
    display: flex !important;
1024
    justify-content: center;
1025
    align-items: center;
1026
}
1027
 
1028
.icon-button:hover {
1029
    background-color: #0961bf !important;
1030
    color: #fff;
1031
    border-radius: 3px;
1032
}
1033
 
1034
.view-more {
1035
    /* float: left; width: 100%; text-align: center; padding-top: 10px; */
1036
}
1037
 
1038
.view-more>a {
1039
    color: #e44d3a;
1040
    font-size: 14px;
1041
    font-weight: 700;
1042
}
1043
 
1044
.view-more>a:hover {
1045
    color: #e44d3a;
1046
}
1047
 
1048
/* ============== tags-sec ============= */
1049
 
1050
.tags-sec {
1051
    background-color: #fff;
1052
    padding: 25px 5px;
1053
}
1054
 
1055
.tags-sec ul {
1056
    float: left;
1057
    width: 100%;
1058
    text-align: center;
1059
}
1060
 
1061
.tags-sec ul li {
1062
    display: inline-block;
1063
    border-right: 1px solid #b2b2b2;
1064
    padding: 0 7px;
1065
    margin-bottom: 15px;
1066
}
1067
 
1068
.tags-sec ul li:nth-child(3),
1069
.tags-sec ul li:nth-child(5),
1070
.tags-sec ul li:nth-child(8) {
1071
    border-right: 0;
1072
}
1073
 
1074
.tags-sec ul li a {
1075
    display: inline-block;
1076
    color: #b2b2b2;
1077
    font-size: 13px;
1078
    font-weight: 500;
1079
}
1080
 
1081
.tags-sec ul li a:hover {
1082
    color: #e44d3a;
1083
}
1084
 
1085
.cp-sec {
1086
    float: left;
1087
    width: 100%;
1088
    margin-top: 5px;
1089
    padding: 0 13px;
1090
}
1091
 
1092
.cp-sec>img {
1093
    float: left;
1094
    margin-top: 3px;
1095
}
1096
 
1097
.cp-sec p {
1098
    float: right;
1099
    color: #b2b2b2;
1100
    font-size: 14px;
1101
    font-weight: 500;
1102
}
1103
 
1104
.cp-sec p img {
1105
    float: none;
1106
    display: inline-block;
1107
    position: relative;
1108
    top: 3px;
1109
    padding-right: 5px;
1110
}
1111
 
1112
/* =================== main-ws-sec ================== */
1113
 
1114
.main-ws-sec {
1115
    float: left;
1116
    width: 100%;
1117
}
1118
 
1119
/* ============ post-topbar =========== */
1120
 
1121
.post-topbar {
1122
    float: left;
1123
    width: 100%;
1124
    padding: 23px 20px;
1125
    background-color: #fff;
1126
    border-top: 4px solid #e44d3a;
1127
    border-left: 1px solid #e4e4e4;
1128
    border-bottom: 1px solid #e4e4e4;
1129
    border-right: 1px solid #e4e4e4;
1130
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.24);
1131
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.24);
1132
    -ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.24);
1133
    -o-box-shadow: 0 0 1px rgba(0, 0, 0, 0.24);
1134
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.24);
1135
    margin-bottom: 20px;
1136
}
1137
 
1138
.user-picy {
1139
    float: left;
1140
    width: 50px;
1141
}
1142
 
1143
.user-picy img {
1144
    width: 100%;
1145
    object-fit: cover;
1146
}
1147
 
1148
.post-st {
1149
    float: right;
1150
    margin-top: 5px;
1151
}
1152
 
1153
.post-st ul li {
1154
    display: inline-block;
1155
    margin-right: 6px;
1156
}
1157
 
1158
.post-st ul li:last-child {
1159
    margin-right: 0;
1160
}
1161
 
1162
.post-st ul li a {
1163
    color: #b2b2b2;
1164
    font-size: 16px;
1165
    display: inline-block;
1166
    background-color: #e5e5e5;
1167
    height: 40px;
1168
    padding: 0 15px;
1169
    line-height: 40px;
1170
    font-weight: 500;
1171
}
1172
 
1173
.post-st ul li a:hover,
1174
.post-st ul li a.active {
1175
    background-color: #e44d3a;
1176
    color: #fff;
1177
}
1178
 
1179
/* ================ posts-section ================== */
1180
 
1181
.posts-section {
1182
    float: left;
1183
    width: 100%;
1184
}
1185
 
1186
.reviewtext {
1187
    margin: 0 -20px;
1188
}
1189
 
1190
.reviewtext p {
1191
    padding-left: 20px;
1192
}
1193
 
1194
.post-bar {
1195
    float: left;
1196
    width: 100%;
1197
    background-color: #fff;
1477 steven 1198
    border: solid 1px var(--border-light-gray);
1199
    border-radius: 10px;
1239 steven 1200
    /* border-left: 1px solid #e4e4e4; border-right: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; */
1201
    /* border: 1px solid #e4e4e4; */
1202
    /* margin-bottom: 20px; */
1203
    padding: 20px;
1204
    /* box-shadow: 0px 2px #e4e4e4; */
1205
    /* box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.05); */
1206
    height: 100%;
1207
}
1208
 
1209
.shared-post-bar {
1210
    margin-top: 1rem;
1211
}
1212
 
1213
.shared-post-bar .post-bar {
1214
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 15%);
1215
}
1216
 
1217
.post_topbar {
1218
    float: left;
1219
    width: 100%;
1220
    position: relative;
1221
}
1222
 
1223
.rep-post {
1224
    padding: 0;
1225
}
1226
 
1227
.usy-dt {
1228
    float: left;
1229
}
1230
 
1231
.usy-dt img {
1232
    -webkit-border-radius: 100px;
1233
    -moz-border-radius: 100px;
1234
    -ms-border-radius: 100px;
1235
    -o-border-radius: 100px;
1236
    border-radius: 100px;
1237
    margin-top: 2px;
1238
}
1239
 
1240
.ed-opts {
1241
    position: relative;
1242
}
1243
 
1244
.ed-opts>a {
1245
    color: #b2b2b2;
1246
    font-size: 24px;
1247
    position: relative;
1248
}
1249
 
1250
.ed-options {
1251
    position: absolute;
1252
    top: 100%;
1253
    right: 0;
1254
    width: 130px;
1255
    background-color: #fff;
1256
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.28);
1257
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.28);
1258
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.28);
1259
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.28);
1260
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.28);
1261
    padding: 20px;
1262
    visibility: hidden;
1263
    z-index: 5;
1264
}
1265
 
1266
.ed-options.active {
1267
    visibility: visible;
1268
}
1269
 
1270
.ed-options li {
1271
    float: left;
1272
    width: 100%;
1273
    margin-bottom: 15px;
1274
}
1275
 
1276
.ed-options li:last-child {
1277
    margin-bottom: 0;
1278
}
1279
 
1280
.ed-options li a {
1281
    color: #686868;
1282
    font-size: 14px;
1283
    font-weight: 600;
1284
}
1285
 
1286
.ed-opts>a:hover {
1287
    color: #e44d3a;
1288
}
1289
 
1290
.usy-name {
1291
    float: left;
1292
    margin-left: 15px;
1293
}
1294
 
1295
.usy-name h3 {
1296
    color: #000000;
1297
    font-size: 18px;
1298
    text-transform: capitalize;
1299
    font-weight: 600;
1300
    margin-bottom: 5px;
1301
    margin-top: 2px;
1302
}
1303
 
1304
.usy-name span {
1305
    color: #b2b2b2;
1306
    font-size: 14px;
1307
}
1308
 
1309
.usy-name img {
1310
    margin-top: 4px;
1311
    margin-right: 6px;
1312
}
1313
 
1314
.usy-name .bklink img {
1315
    margin-top: 1px;
1316
    margin-right: 6px;
1317
}
1318
 
1319
.epi2 i {
1320
    margin-right: 5px;
1321
}
1322
 
1323
#rewivewdata .review-lt {
1324
    float: left;
1325
    margin-top: 5px;
1326
    margin-bottom: 15px;
1327
}
1328
 
1329
.review-lt img {
1330
    margin-top: 1px;
1331
    margin-right: 6px;
1332
}
1333
 
1334
.bid-tab {
1335
    margin-bottom: 20px;
1336
}
1337
 
1338
.epi-sec {
1339
    float: left;
1340
    width: 100%;
1341
    padding: 0;
1342
}
1343
 
1344
.usy-name .bklink {
1345
    float: left;
1346
    margin-top: 5px !important;
1347
    margin-bottom: 15px;
1348
}
1349
 
1350
.descp {
1351
    float: left;
1352
    margin-top: 15px;
1353
    margin-bottom: 15px;
1354
}
1355
 
1356
.descp li {
1357
    display: inline-block;
1358
    margin-right: 15px;
1359
}
1360
 
1361
.descp li span {
1362
    color: #b2b2b2;
1363
    font-size: 14px;
1364
    float: left;
1365
}
1366
 
1367
.descp li img {
1368
    margin-right: 5px;
1369
}
1370
 
1371
.bk-links {
1372
    /* float: right; */
1373
}
1374
 
1375
.bk-links li {
1376
    display: inline-block;
1377
    margin-right: 7px;
1378
}
1379
 
1380
.bk-links li:last-child {
1381
    margin-right: 0;
1382
}
1383
 
1384
.bk-links li i {
1385
    color: #fff;
1386
    font-size: 24px;
1387
    width: 33px;
1388
    height: 30px;
1389
    padding-left: 0px;
1390
    background-color: #53d690;
1391
    text-align: center;
1392
    line-height: 30px;
1393
}
1394
 
1395
.bk-links li i.la-envelope {
1396
    background-color: #e44d3a;
1397
}
1398
 
1399
.bid_now {
1400
    color: #fff;
1401
    background-color: #51a5fb;
1402
    text-transform: capitalize;
1403
    display: inline-block;
1404
    height: 30px;
1405
    padding: 0 10px;
1406
    line-height: 30px;
1407
    position: relative;
1408
    top: -3px;
1409
}
1410
 
1411
.bid_now:hover {
1412
    color: #fff;
1413
}
1414
 
1415
/* ============== job_descp ============ */
1416
 
1417
.job_descp {
1418
    float: left;
1419
    width: 100%;
1420
    margin: 1rem 0;
1421
}
1422
 
1423
.job_descp h3 {
1424
    color: #333;
1425
    font-size: 16px;
1426
    font-weight: 600;
1427
    /* margin-bottom: 15px; */
1428
}
1429
 
1430
.job-dt {
1431
    float: left;
1432
    width: 100%;
1433
    margin-bottom: 22px;
1434
}
1435
 
1436
.job-dt li {
1437
    display: inline-block;
1438
    margin-right: 15px;
1439
}
1440
 
1441
.job-dt li a {
1442
    text-transform: capitalize;
1443
    padding: 5px 13px;
1444
    -webkit-border-radius: 30px;
1445
    -moz-border-radius: 30px;
1446
    -ms-border-radius: 30px;
1447
    -o-border-radius: 30px;
1448
    border-radius: 3px;
1449
    display: inline-block;
1450
    font-size: 14px;
1451
    font-weight: 500;
1452
}
1453
 
1454
.job-dt li span {
1455
    color: #333;
1456
    font-size: 16px;
1457
    font-weight: 600;
1458
}
1459
 
1460
.job_descp>p {
1461
    color: #666666;
1462
    font-size: 15px;
1463
    line-height: 24px;
1464
    margin-bottom: 20px;
1465
}
1466
 
1467
.job_descp>p a {
1468
    color: #e44d3a;
1469
    font-weight: 600;
1470
}
1471
 
1472
/* ============= skill-tags =========== */
1473
 
1474
.skill-tags {
1475
    /* float: left; */
1476
    width: 100%;
1477
    /* margin-bottom: 15px; */
1478
    display: flex;
1479
    align-items: center;
1480
    margin-top: 0.5rem;
1481
    flex-wrap: wrap;
1482
    /* gap: 0.5rem 0; */
1483
}
1484
 
1485
.skill-tags li {
1486
    display: inline-block;
1487
    margin-right: 6px;
1488
    /* margin-bottom: 10px; */
1489
}
1490
 
1491
.skill-tags li a {
1492
    display: inline-block;
1493
    color: #b2b2b2;
1494
    font-size: 14px;
1495
    background-color: #f1f1f1;
1496
    -webkit-border-radius: 30px;
1497
    -moz-border-radius: 30px;
1498
    -ms-border-radius: 30px;
1499
    -o-border-radius: 30px;
1500
    border-radius: 30px;
1501
    padding: 7px 15px;
1502
    font-weight: 500;
1503
}
1504
 
1505
/* ========== job-status-bar ========== */
1506
 
1507
.job-status-bar {
1508
    float: left;
1509
    width: 100%;
1510
}
1511
 
1512
.like-com {
1513
    /* float: left; */
1514
    /* margin-top: 20px; */
1515
    margin: 0;
1516
}
1517
 
1518
.like-com li {
1519
    display: inline-block;
1520
    margin-right: 15px;
1521
}
1522
 
1523
.like-com li a {
1524
    color: #b2b2b2;
1525
    font-size: 14px;
1526
    font-weight: 500;
1527
    float: left;
1528
    margin-top: 6px;
1529
    margin-right: 5px;
1530
}
1531
 
1532
.like-com li a:hover {
1533
    color: #e44d3a;
1534
}
1535
 
1536
.like-com li a.active {
1537
    color: #e44d3a;
1538
}
1539
 
1540
.like-com li a i {
1541
    margin-right: 2px;
1542
    font-size: 14px;
1543
    position: relative;
1544
    top: 2px;
1545
}
1546
 
1547
.like-com li span {
1548
    color: #ffffff;
1549
    font-size: 13px;
1550
    width: 30px;
1551
    height: 30px;
1552
    background-color: #e44d3a;
1553
    line-height: 30px;
1554
    -webkit-border-radius: 30px;
1555
    -moz-border-radius: 30px;
1556
    -ms-border-radius: 30px;
1557
    -o-border-radius: 30px;
1558
    border-radius: 30px;
1559
    float: left;
1560
    text-align: center;
1561
    font-weight: 600;
1562
    margin-left: -25px;
1563
}
1564
 
1565
.like-com li .com {
1566
    position: relative;
1567
    top: -9px;
1568
}
1569
 
1570
.like-com li .com img {
1571
    margin-right: 10px;
1572
}
1573
 
1574
.job-status-bar>a {
1575
    /* float: right; */
1576
    color: #b2b2b2 !important;
1577
    font-size: 14px;
1578
    /* margin-top: 29px; */
1579
    cursor: pointer;
1580
}
1581
 
1582
.job-status-bar>a:hover {
1583
    color: #e44d3a !important;
1584
}
1585
 
1586
.job-status-bar>a i {
1587
    font-size: 14px;
1588
    margin-right: 7px;
1589
    position: relative;
1590
    top: 1px;
1591
}
1592
 
1593
/* ============= top-profiles ============ */
1594
 
1595
.top-profiles {
1596
    float: left;
1597
    width: 100%;
1598
    border: 1px solid #e5e5e5;
1599
    margin-bottom: 20px;
1600
}
1601
 
1602
.pf-hd {
1603
    float: left;
1604
    width: 100%;
1605
    border-bottom: 1px solid #e5e5e5;
1606
    padding: 20px 20px;
1607
    position: relative;
1608
}
1609
 
1610
.pf-hd h3 {
1611
    color: #000000;
1612
    font-size: 20px;
1613
    font-weight: 600;
1614
    text-transform: capitalize;
1615
    float: left;
1616
}
1617
 
1618
.pf-hd i {
1619
    position: absolute;
1620
    top: 50%;
1621
    -webkit-transform: translateY(-50%);
1622
    -moz-transform: translateY(-50%);
1623
    -ms-transform: translateY(-50%);
1624
    -o-transform: translateY(-50%);
1625
    transform: translateY(-50%);
1626
    right: 7px;
1627
    color: #b2b2b2;
1628
    font-size: 24px;
1629
}
1630
 
1631
/* ============== profiles-slider ============== */
1632
 
1633
.profiles-slider {
1634
    float: left;
1635
    width: 100%;
1636
    padding: 20px;
1637
}
1638
 
1639
.user-profy {
1640
    float: left;
1641
    width: 100%;
1642
    background-color: #fff;
1643
    text-align: center;
1644
    border-left: 1px solid #ececec;
1645
    border-bottom: 1px solid #ececec;
1646
    border-right: 1px solid #ececec;
1647
    -webkit-box-shadow: 0px 0.5px 0.2px rgba(0, 0, 0, 0.24);
1648
    -moz-box-shadow: 0px 0.5px 0.2px rgba(0, 0, 0, 0.24);
1649
    -ms-box-shadow: 0px 0.5px 0.2px rgba(0, 0, 0, 0.24);
1650
    -o-box-shadow: 0px 0.5px 0.2px rgba(0, 0, 0, 0.24);
1651
    box-shadow: 0px 0.5px 0.2px rgba(0, 0, 0, 0.24);
1652
    padding: 20px 0 0 0;
1653
}
1654
 
1655
.user-profy>img {
1656
    float: none;
1657
    margin-bottom: 6px;
1658
}
1659
 
1660
.user-profy h3 {
1661
    color: #000000;
1662
    font-size: 16px;
1663
    font-weight: 600;
1664
    text-transform: capitalize;
1665
    margin-bottom: 4px;
1666
}
1667
 
1668
.user-profy span {
1669
    color: #b2b2b2;
1670
    font-size: 14px;
1671
    font-weight: 500;
1672
    display: block;
1673
    margin-bottom: 15px;
1674
}
1675
 
1676
.user-profy ul {
1677
    float: left;
1678
    width: 100%;
1679
    margin-bottom: 15px;
1680
}
1681
 
1682
.user-profy ul li {
1683
    display: inline-block;
1684
}
1685
 
1686
.user-profy ul li a {
1687
    color: #ffffff;
1688
    font-size: 13px;
1689
    padding: 0 8px;
1690
    height: 25px;
1691
    line-height: 25px;
1692
    display: inline-block;
1693
    text-transform: capitalize;
1694
}
1695
 
1696
.followw {
1697
    background-color: #53d690;
1698
}
1699
 
1700
.envlp {
1701
    background-color: #e44d3a;
1702
}
1703
 
1704
.envlp img {
1705
    float: none;
1706
}
1707
 
1708
.hire {
1709
    background-color: #51a5fb;
1710
}
1711
 
1712
.user-profy>a {
1713
    float: left;
1714
    width: 100%;
1715
    color: #000000;
1716
    font-size: 14px;
1717
    text-transform: capitalize;
1718
    padding: 15px 0;
1719
    border-top: 1px solid #ececec;
1720
    font-weight: 600;
1721
}
1722
 
1723
.user-profy>a:hover {
1724
    background-color: #e44d3a;
1725
    color: #fff;
1726
}
1727
 
1728
.slick-slide img {
1729
    display: inline-block;
1730
}
1731
 
1732
.slick-slide {
1733
    margin: 0 4px;
1734
}
1735
 
1736
.envlp img {
1737
    position: relative;
1738
    top: 2px;
1739
}
1740
 
1741
.no-margin {
1742
    margin: 0;
1743
    border: 0;
1744
    -webkit-border-radius: inherit;
1745
    -moz-border-radius: inherit;
1746
    -ms-border-radius: inherit;
1747
    -o-border-radius: inherit;
1748
    border-radius: inherit;
1749
}
1750
 
1751
.posty {
1752
    float: left;
1753
    width: 100%;
1754
    border-left: 1px solid #e4e4e4;
1755
    border-right: 1px solid #e4e4e4;
1756
}
1757
 
1758
.posty .job-status-bar {
1759
    border-bottom: 1px solid #e4e4e4;
1760
    padding-bottom: 20px;
1761
}
1762
 
1763
.slick-previous:before {
1764
    left: -14px;
1765
    content: "\f104";
1766
    margin-left: -2px;
1767
}
1768
 
1769
.slick-nexti:before {
1770
    right: -14px;
1771
    content: "\f105";
1772
    padding-left: 3px;
1773
}
1774
 
1775
.slick-previous:before,
1776
.slick-nexti:before {
1777
    font-size: 24px;
1778
    color: #b7b7b7;
1779
    position: absolute;
1780
    top: 50%;
1781
    line-height: 27px;
1782
    -webkit-transform: translateY(-50%);
1783
    -moz-transform: translateY(-50%);
1784
    -ms-transform: translateY(-50%);
1785
    -o-transform: translateY(-50%);
1786
    transform: translateY(-50%);
1787
    font-family: fontawesome;
1788
    width: 30px;
1789
    height: 30px;
1790
    background-color: #fff;
1791
    -webkit-border-radius: 100px;
1792
    -moz-border-radius: 100px;
1793
    -ms-border-radius: 100px;
1794
    -o-border-radius: 100px;
1795
    border-radius: 100px;
1796
    border: 1px solid #e6e6e6;
1797
    text-align: center;
1798
    cursor: pointer;
1799
}
1800
 
1801
.slick-previous:hover:before,
1802
.slick-nexti:hover:before {
1803
    background-color: #e44d3a;
1804
    color: #fff;
1805
    border-color: transparent;
1806
}
1807
 
1808
/* =============== comment-section ============== */
1809
 
1810
.comment-section {
1811
    float: left;
1812
    width: 100%;
1813
    background-color: #fff;
1814
    padding: 20px;
1815
    box-shadow: 0px 3px #e4e4e4;
1816
    margin-top: 1rem;
1817
}
1818
 
1819
.plus-ic {
1820
    float: left;
1821
    width: 100%;
1822
    text-align: center;
1823
    margin-bottom: 20px;
1824
}
1825
 
1826
.plus-ic i {
1827
    width: 30px;
1828
    height: 30px;
1829
    line-height: 30px;
1830
    border: 1px solid #d2d2d2;
1831
    text-align: center;
1832
    color: #b2b2b2;
1833
    -webkit-border-radius: 100px;
1834
    -moz-border-radius: 100px;
1835
    -ms-border-radius: 100px;
1836
    -o-border-radius: 100px;
1837
    border-radius: 100px;
1838
}
1839
 
1840
/* =============== comment-sec ================ */
1841
 
1842
.comment-sec {
1843
    float: left;
1844
    width: 100%;
1845
}
1846
 
1847
.comment-sec ul {
1848
    float: left;
1849
    width: 100%;
1850
}
1851
 
1852
.comment-sec ul li {
1853
    float: left;
1854
    width: 100%;
1855
}
1856
 
1857
.comment-sec ul ul {
1858
    padding-left: 50px;
1859
}
1860
 
1861
.comment-list {
1862
    display: table;
1863
    /* padding-bottom: 30px; */
1864
}
1865
 
1866
.bg-img {
1867
    display: table-cell;
1868
}
1869
 
1870
.bg-img img {
1871
    -webkit-border-radius: 100px;
1872
    -moz-border-radius: 100px;
1873
    -ms-border-radius: 100px;
1874
    -o-border-radius: 100px;
1875
    border-radius: 100px;
1876
}
1877
 
1878
.comment {
1879
    display: table-cell;
1880
    vertical-align: top;
1881
    width: 100%;
1882
    padding-left: 10px;
1883
}
1884
 
1885
.comment h3 {
1886
    color: #000000;
1887
    font-size: 16px;
1888
    font-weight: 600;
1889
    margin-bottom: 10px;
1890
}
1891
 
1892
.comment img {
1893
    /* position: relative; top: 2px; margin-right: 5px; */
1894
}
1895
 
1896
.comment span {
1897
    color: #b2b2b2;
1898
    font-size: 14px;
1899
    display: block;
1900
    margin-bottom: 14px;
1901
}
1902
 
1903
.comment p {
1904
    color: #686868;
1905
    font-size: 14px;
1906
    margin-bottom: 10px;
1907
    line-height: 20px;
1908
}
1909
 
1910
.comment>a {
1911
    display: inline-block;
1912
    color: #b2b2b2;
1913
    font-size: 14px;
1914
    font-weight: 600;
1915
}
1916
 
1917
.comment>a.active,
1918
.comment>a:hover {
1919
    color: #e44d3a;
1920
}
1921
 
1922
.comment>a i {
1923
    font-weight: 600;
1924
    margin-right: 6px;
1925
}
1926
 
1927
/* =============== post-comment ============= */
1928
 
1929
.post-comment {
1930
    float: left;
1931
    width: 100%;
1932
}
1933
 
1934
.cm_img {
1935
    float: left;
1936
    width: 40px;
1937
    margin-right: 10px;
1938
}
1939
 
1940
.comment_box {
1941
    float: none;
1942
}
1943
 
1944
.comment_box input {
1945
    width: 372px;
1946
    height: 40px;
1947
    border: 1px solid #e5e5e5;
1948
    background-color: #efefef;
1949
    padding-left: 10px;
1950
    color: #b2b2b2;
1951
    font-size: 14px;
1952
    font-weight: 600;
1953
    line-height: 40px;
1954
    resize: none;
1955
}
1956
 
1948 steven 1957
.chat-title{
1958
    font-size: 1.3rem;
1959
}
1960
 
1239 steven 1961
.comment_box form button {
1962
    float: right;
1963
    color: #fff;
1964
    background-color: #e44d3a;
1965
    height: 40px;
1966
    padding: 0 10px;
1967
    text-align: center;
1968
    font-size: 14px;
1969
    border: 0;
1970
    margin-left: 10px;
1971
    cursor: pointer;
1972
    font-weight: 600;
1973
}
1974
 
1975
/* ============== process-comm ============= */
1976
 
1977
.process-comm {
1978
    float: left;
1979
    width: 100%;
1980
    text-align: center;
1981
    padding-top: 40px;
1982
}
1983
 
1984
.process-comm img {
1985
    float: none;
1986
}
1987
 
1988
/* =============== right-sidebar ============= */
1989
 
1990
.right-sidebar {
1991
    float: left;
1992
    width: 100%;
1993
}
1994
 
1995
.widget {
1996
    float: left;
1997
    width: 100%;
1998
    background-color: #fff;
1999
    /* border-left: 1px solid #e4e4e4; border-right: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; */
2000
    margin-bottom: 20px;
2001
    /* -webkit-box-shadow: 0px 2px #e4e4e4; -moz-box-shadow: 0px 2px #e4e4e4; -ms-box-shadow: 0px 2px #e4e4e4; -o-box-shadow: 0px 2px #e4e4e4; box-shadow: 0px 2px #e4e4e4; */
2002
}
2003
 
2004
.widget-about {
2005
    text-align: center;
2006
}
2007
 
2008
.widget-about img {
2009
    float: none;
2010
    padding-top: 20px;
2011
}
2012
 
2013
.widget-about h3 {
2014
    color: #000000;
2015
    font-size: 20px;
2016
    font-weight: 600;
2017
    margin-bottom: 12px;
2018
}
2019
 
2020
.widget-about span {
2021
    color: #686868;
2022
    font-size: 14px;
2023
    margin-bottom: 30px;
2024
    float: left;
2025
    width: 100%;
2026
}
2027
 
2028
.sign_link {
2029
    float: left;
2030
    width: 100%;
2031
    /* border-top: 1px solid #e5e5e5; */
2032
    padding: 18px 0 0 0;
2033
}
2034
 
2035
.sign_link h3 {
2036
    color: #000000;
2037
    font-size: 18px;
2038
    font-weight: 600;
2039
    margin-bottom: 5px;
2040
    text-transform: uppercase;
2041
}
2042
 
2043
.sign_link h3 a {
2044
    color: #000;
2045
}
2046
 
2047
.sign_link>a {
2048
    display: inline-block;
2049
    color: #e44d3a;
2050
    font-size: 14px;
2051
    font-weight: 500;
2052
}
2053
 
2054
.sign_link>a:hover {
2055
    color: #e44d3a;
2056
}
2057
 
2058
/* ============== Widget Jobs ============ */
2059
 
2060
.jobs-list {
2061
    float: left;
2062
    width: 100%;
2063
    padding: 20px 20px;
2064
}
2065
 
2066
.job-info {
2067
    float: left;
2068
    width: 100%;
2069
    margin-bottom: 22px;
2070
}
2071
 
2072
.job-info:last-child {
2073
    margin-bottom: 0;
2074
}
2075
 
2076
.job-details {
2077
    float: left;
2078
    width: 165px;
2079
}
2080
 
2081
.job-details h3 {
2082
    color: #000000;
2083
    font-size: 14px;
2084
    font-weight: 600;
2085
    margin-bottom: 10px;
2086
}
2087
 
2088
.job-details p {
2089
    color: #686868;
2090
    font-size: 14px;
2091
    line-height: 20px;
2092
}
2093
 
2094
.hr-rate {
2095
    float: right;
2096
    width: 40px;
2097
}
2098
 
2099
.hr-rate span {
2100
    color: #000000;
2101
    font-size: 14px;
2102
    font-weight: 600;
2103
    float: right;
2104
}
2105
 
2106
/* ================ post-project-popup =============== */
2107
 
2108
.post-popup {
2109
    width: 570px;
2110
    margin: 0 auto;
2111
    position: fixed;
2112
    top: 50%;
2113
    left: 50%;
2114
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.65);
2115
    -moz-transform: translateX(-50%) translateY(-50%) scale(0.65);
2116
    -ms-transform: translateX(-50%) translateY(-50%) scale(0.65);
2117
    -o-transform: translateX(-50%) translateY(-50%) scale(0.65);
2118
    transform: translateX(-50%) translateY(-50%) scale(0.65);
2119
    opacity: 0;
2120
    visibility: hidden;
2121
    z-index: 0;
2122
}
2123
 
2124
.post-popup.active {
2125
    opacity: 1;
2126
    visibility: visible;
2127
    z-index: 999;
2128
    transform: scale(1) translateX(-50%) translateY(-50%);
2129
}
2130
 
2131
.post-project>a {
2132
    position: absolute;
2133
    top: -20px;
2134
    right: -20px;
2135
    color: #fff;
2136
    font-size: 22px;
2137
    cursor: pointer;
2138
}
2139
 
2140
.post-project>a:hover {
2141
    color: #fff;
2142
}
2143
 
2144
.post-project {
2145
    float: left;
2146
    width: 100%;
2147
    position: relative;
2148
}
2149
 
2150
.post-project h3 {
2151
    float: left;
2152
    width: 100%;
2153
    background-color: #e44d3a;
2154
    color: #fff;
2155
    text-align: center;
2156
    font-size: 18px;
2157
    font-weight: 500;
2158
    padding: 20px 0;
2159
}
2160
 
2161
.post-project-fields {
2162
    float: left;
2163
    width: 100%;
2164
    padding: 30px 20px;
2165
    background-color: #fff;
2166
}
2167
 
2168
.post-project-fields form {
2169
    float: left;
2170
    width: 100%;
2171
}
2172
 
2173
.post-project-fields form input {
2174
    padding: 0 15px;
2175
    height: 40px;
2176
}
2177
 
2178
.post-project-fields form textarea {
2179
    padding: 15px;
2180
    height: 130px;
2181
}
2182
 
2183
.post-project-fields form input,
2184
.post-project-fields form textarea,
2185
.post-project-fields form select {
2186
    width: 100%;
2187
    color: #b2b2b2;
2188
    font-size: 14px;
2189
    border: 1px solid #e5e5e5;
2190
    margin-bottom: 20px;
2191
    font-weight: 500;
2192
}
2193
 
2194
.post-project-fields form select {
2195
    height: 40px;
2196
    padding: 0 10px;
2197
}
2198
 
2199
.post-project-fields form ul {
2200
    float: left;
2201
    margin-top: 10px;
2202
    width: 100%;
2203
}
2204
 
2205
.post-project-fields form ul li {
2206
    display: inline-block;
2207
    margin-right: 15px;
2208
}
2209
 
2210
.post-project-fields form ul li button.active {
2211
    background-color: #e44d3a;
2212
    color: #fff;
2213
}
2214
 
2215
.post-project-fields form ul li button,
2216
.post-project-fields form ul li a {
2217
    color: #000000;
2218
    font-size: 16px;
2219
    border: 1px solid #e5e5e5;
2220
    padding: 10px 25px;
2221
    display: inline-block;
2222
    background-color: #fff;
2223
    font-weight: 600;
2224
    cursor: pointer;
2225
}
2226
 
2227
.post-project-fields form ul li button:hover,
2228
.post-project-fields form ul li a:hover {
2229
    background-color: #e44d3a;
2230
    color: #fff;
2231
}
2232
 
2233
::-webkit-input-placeholder {
2234
    /* Chrome/Opera/Safari */
2235
    color: #b2b2b2;
2236
}
2237
 
2238
::-moz-placeholder {
2239
    /* Firefox 19+ */
2240
    color: #b2b2b2;
2241
}
2242
 
2243
:-ms-input-placeholder {
2244
    /* IE 10+ */
2245
    color: #b2b2b2;
2246
}
2247
 
2248
:-moz-placeholder {
2249
    /* Firefox 18- */
2250
    color: #b2b2b2;
2251
}
2252
 
2253
.price-sec {
2254
    float: left;
2255
    width: 100%;
2256
}
2257
 
2258
.price-br {
2259
    float: left;
2260
    width: 225px !important;
2261
    position: relative;
2262
}
2263
 
2264
.price-br>i {
2265
    position: absolute;
2266
    top: 0;
2267
    right: 0;
2268
    color: #b2b2b2;
2269
    font-size: 18px;
2270
    width: 40px;
2271
    height: 40px;
2272
    line-height: 40px;
2273
    border-left: 1px solid #e5e5e5;
2274
    text-align: center;
2275
}
2276
 
2277
.price-sec span {
2278
    color: #b2b2b2;
2279
    font-size: 14px;
2280
    float: left;
2281
    padding: 12px 17px 0 17px;
2282
}
2283
 
2284
select {
2285
    -webkit-appearance: none;
2286
    -moz-appearance: none;
2287
}
2288
 
2289
.inp-field {
2290
    float: left;
2291
    width: 100%;
2292
    position: relative;
2293
}
2294
 
2295
.inp-field:before {
2296
    content: "\f107";
2297
    position: absolute;
2298
    top: 13px;
2299
    right: 15px;
2300
    color: #717171;
2301
    font-family: fontawesome;
2302
}
2303
 
2304
.post-popup.job_post .price-br {
2305
    width: 100% !important;
2306
}
2307
 
2308
/* ================= sign-in ================ */
2309
 
2310
.sign-in {
2311
    background-color: #e75348;
2312
}
2313
 
2314
.sign-in-page {
2315
    float: left;
2316
    width: 100%;
2317
    padding: 100px 0 20px 0;
2318
}
2319
 
2320
.signin-popup {
2321
    width: 870px;
2322
    margin: 0 auto;
2323
    position: relative;
2324
}
2325
 
2326
.signin-popup:before {
2327
    content: "";
2328
    position: absolute;
2329
    top: -16px;
2330
    left: 56px;
2331
    width: 30px;
2332
    height: 30px;
2333
    background-color: #fff;
2334
    -webkit-border-radius: 100px;
2335
    -moz-border-radius: 100px;
2336
    -ms-border-radius: 100px;
2337
    -o-border-radius: 100px;
2338
    border-radius: 100px;
2339
}
2340
 
2341
.signin-popup:after {
2342
    content: "";
2343
    position: absolute;
2344
    top: -37px;
2345
    left: 43px;
2346
    width: 20px;
2347
    height: 20px;
2348
    background-color: #fff;
2349
    -webkit-border-radius: 100px;
2350
    -moz-border-radius: 100px;
2351
    -ms-border-radius: 100px;
2352
    -o-border-radius: 100px;
2353
    border-radius: 100px;
2354
}
2355
 
2356
.signin-pop {
2357
    float: left;
2358
    width: 100%;
2359
    background-color: #fff;
2360
    position: relative;
2361
}
2362
 
2363
.signin-pop:before {
2364
    content: "";
2365
    position: absolute;
2366
    top: 0;
2367
    left: 50%;
2368
    -webkit-transform: translateX(-50%);
2369
    -moz-transform: translateX(-50%);
2370
    -ms-transform: translateX(-50%);
2371
    -o-transform: translateX(-50%);
2372
    transform: translateX(-50%);
2373
    height: 100%;
2374
    width: 1px;
2375
    background-color: #f0f0f0;
2376
}
2377
 
2378
.dff-tab {
2379
    display: none;
2380
}
2381
 
2382
.dff-tab.current {
2383
    display: block;
2384
}
2385
 
2386
.cmp-info {
2387
    float: left;
2388
    width: 100%;
2389
    padding: 70px 5px 92px 5px;
2390
}
2391
 
2392
.cm-logo {
2393
    float: left;
2394
    width: 100%;
2395
    padding-left: 45px;
2396
    margin-bottom: 120px;
2397
}
2398
 
2399
.cm-logo img {
2400
    margin-bottom: 30px;
2401
}
2402
 
2403
.cm-logo>p {
2404
    color: #666666;
2405
    font-size: 14px;
2406
    font-weight: 400;
2407
    line-height: 24px;
2408
    float: left;
2409
    width: 100%;
2410
}
2411
 
2412
.cmp-info>img {
2413
    width: 100%;
2414
    padding-left: 10px;
2415
}
2416
 
2417
/* =============== login-sec ============= */
2418
 
2419
.login-sec {
2420
    float: left;
2421
    width: 100%;
2422
    padding: 30px 0;
2423
    position: relative;
2424
}
2425
 
2426
.login-sec:before {
2427
    content: "";
2428
    position: absolute;
2429
    bottom: -15px;
2430
    right: 70px;
2431
    width: 30px;
2432
    height: 30px;
2433
    -webkit-border-radius: 100px;
2434
    -moz-border-radius: 100px;
2435
    -ms-border-radius: 100px;
2436
    -o-border-radius: 100px;
2437
    border-radius: 100px;
2438
    background-color: #fff;
2439
}
2440
 
2441
.login-sec:after {
2442
    content: "";
2443
    position: absolute;
2444
    bottom: -40px;
2445
    right: 55px;
2446
    width: 20px;
2447
    height: 20px;
2448
    -webkit-border-radius: 100px;
2449
    -moz-border-radius: 100px;
2450
    -ms-border-radius: 100px;
2451
    -o-border-radius: 100px;
2452
    border-radius: 100px;
2453
    background-color: #fff;
2454
}
2455
 
2456
.sign-control {
2457
    float: left;
2458
    width: 100%;
2459
    text-align: right;
2460
    padding-right: 50px;
2461
    margin-bottom: 70px;
2462
}
2463
 
2464
.sign-control li {
2465
    display: inline-block;
2466
    margin-right: 0.5rem;
2467
}
2468
 
2469
.sign-control li a {
2470
    color: #000000;
2471
    font-size: 14px;
2472
    font-weight: 500;
2473
    background-color: #e5e5e5;
2474
    padding: 7px 10px;
2475
    display: inline-block;
2476
    /* -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; */
2477
}
2478
 
2479
.sign-control li:last-child a {
2480
    /* -webkit-border-radius: 0 4px 4px 0; -moz-border-radius: 0 4px 4px 0; -ms-border-radius: 0 4px 4px 0; -o-border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0; */
2481
}
2482
 
2483
.sign-control li.current a {
2484
    background-color: #e44d3a;
2485
    color: #fff;
2486
}
2487
 
2488
.sign_in_sec {
2489
    float: left;
2490
    width: 100%;
2491
    padding-right: 75px;
2492
    padding-left: 60px;
2493
    display: none;
2494
}
2495
 
2496
.sign_in_sec.current {
2497
    display: block;
2498
}
2499
 
2500
.sign_in_sec h3 {
2501
    color: #000000;
2502
    font-size: 18px;
2503
    font-weight: 600;
2504
    position: relative;
2505
    padding-bottom: 10px;
2506
    margin-bottom: 30px;
2507
}
2508
 
2509
.sign_in_sec h3:before {
2510
    content: "";
2511
    position: absolute;
2512
    bottom: 0;
2513
    left: 0;
2514
    width: 30px;
2515
    height: 2px;
2516
    background-color: #e44d3a;
2517
}
2518
 
2519
/* ============= sign_in_sec ============= */
2520
 
2521
.sign_in_sec form {
2522
    float: left;
2523
    width: 100%;
2524
}
2525
 
2526
.inputContainer {
2527
    margin-bottom: 20px;
2528
}
2529
 
2530
.sn-field {
2531
    /* float: left; */
2532
    width: 100%;
2533
    position: relative;
2534
}
2535
 
2536
.sn-field.pd-more {
2537
    margin-bottom: 0;
2538
}
2539
 
2540
.sn-field.pd-more input {
2541
    padding-left: 40px;
2542
}
2543
 
2544
.sn-field>i {
2545
    position: absolute;
2546
    top: 50%;
2547
    left: 15px;
2548
    color: #666666;
2549
    font-size: 16px;
2550
    -webkit-transform: translateY(-50%);
2551
    -moz-transform: translateY(-50%);
2552
    -ms-transform: translateY(-50%);
2553
    -o-transform: translateY(-50%);
2554
    transform: translateY(-50%);
2555
}
2556
 
2557
.sn-field>span {
2558
    position: absolute;
2559
    top: 50%;
2560
    right: 15px;
2561
    font-weight: 700;
2562
    color: #666666;
2563
    font-size: 15px;
2564
    -webkit-transform: translateY(-50%);
2565
    -moz-transform: translateY(-50%);
2566
    -ms-transform: translateY(-50%);
2567
    -o-transform: translateY(-50%);
2568
    transform: translateY(-50%);
2569
}
2570
 
2571
.sign_in_sec form input {
2572
    height: 40px;
2573
}
2574
 
2575
.sign_in_sec form input,
2576
.sign_in_sec form select {
2577
    width: 100%;
2578
    padding: 0 15px 0 40px;
2579
    color: #b2b2b2;
2580
    font-size: 14px;
2581
    border: 1px solid #e5e5e5;
2582
}
2583
 
2584
.sign_in_sec form select {
2585
    line-height: 40px;
2586
    height: 40px;
2587
}
2588
 
2589
.sign_in_sec form button {
2590
    color: #ffffff;
2591
    font-size: 16px;
2592
    background-color: #e44d3a;
2593
    padding: 12px 27px;
2594
    border: 0;
2595
    font-weight: 500;
2596
    margin-top: 30px;
2597
    cursor: pointer;
2598
}
2599
 
2600
.sign_in_sec_button {
2601
    color: #ffffff;
2602
    font-size: 16px;
2603
    background-color: #66a7dd;
2604
    padding: 12px 27px;
2605
    border: 0;
2606
    font-weight: 500;
2607
    margin-top: 30px;
2608
    cursor: pointer;
2609
}
2610
 
2611
.checky-sec {
2612
    /* float: left; */
2613
    width: 100%;
2614
    margin-top: 10px;
2615
}
2616
 
2617
.checky-sec.st2 small {
2618
    font-size: 13px;
2619
    width: 90%;
2620
    line-height: 20px;
2621
}
2622
 
2623
.checky-sec.st2 .fgt-sec input[type="checkbox"]+label span {
2624
    margin-top: 3px;
2625
}
2626
 
2627
.fgt-sec {
2628
    /* float: left; */
2629
}
2630
 
2631
.fgt-sec * {
2632
    cursor: pointer;
2633
}
2634
 
2635
.fgt-sec input[type="checkbox"] {
2636
    display: none;
2637
}
2638
 
2639
.fgt-sec label {
2640
    float: left;
2641
}
2642
 
2643
.fgt-sec input[type="checkbox"]+label span {
2644
    display: inline-block;
2645
    width: 15px;
2646
    height: 15px;
2647
    position: relative;
2648
    border: 1px solid #d2d2d2;
2649
    -webkit-border-radius: 100px;
2650
    -moz-border-radius: 100px;
2651
    -ms-border-radius: 100px;
2652
    -o-border-radius: 100px;
2653
    border-radius: 100px;
2654
}
2655
 
2656
.fgt-sec input[type="checkbox"]+label span:before {
2657
    content: "";
2658
    width: 7px;
2659
    height: 7px;
2660
    -webkit-border-radius: 100px;
2661
    -moz-border-radius: 100px;
2662
    -ms-border-radius: 100px;
2663
    -o-border-radius: 100px;
2664
    border-radius: 100px;
2665
    font-size: 8px;
2666
    color: #ffffff;
2667
    opacity: 0;
2668
    visibility: hidden;
2669
    background-color: #e44d3a;
2670
    position: absolute;
2671
    font-family: fontawesome;
2672
    top: 50%;
2673
    left: 50%;
2674
    -webkit-transform: translateX(-50%) translateY(-50%);
2675
    -moz-transform: translateX(-50%) translateY(-50%);
2676
    -ms-transform: translateX(-50%) translateY(-50%);
2677
    -o-transform: translateX(-50%) translateY(-50%);
2678
    transform: translateX(-50%) translateY(-50%);
2679
}
2680
 
2681
.fgt-sec input[type="checkbox"]:checked+label span:before {
2682
    opacity: 1;
2683
    visibility: visible;
2684
}
2685
 
2686
.fgt-sec small {
2687
    /* float: left; */
2688
    color: #000000;
2689
    font-size: 14px;
2690
    font-weight: 500;
2691
    padding-left: 10px;
2692
}
2693
 
2694
.checky-sec>a {
2695
    float: right;
2696
    color: #000000;
2697
    font-size: 14px;
2698
    font-weight: 500;
2699
}
2700
 
2701
/* ======= Radio Button Styles ======= */
2702
 
2703
.fgt-sec input[type="radio"] {
2704
    display: none;
2705
}
2706
 
2707
.fgt-sec label {
2708
    float: left;
2709
}
2710
 
2711
.fgt-sec input[type="radio"]+label span {
2712
    display: inline-block;
2713
    width: 15px;
2714
    height: 15px;
2715
    position: relative;
2716
    border: 1px solid #d2d2d2;
2717
    -webkit-border-radius: 100px;
2718
    -moz-border-radius: 100px;
2719
    -ms-border-radius: 100px;
2720
    -o-border-radius: 100px;
2721
    border-radius: 100px;
2722
}
2723
 
2724
.fgt-sec input[type="radio"]+label span:before {
2725
    content: "";
2726
    width: 7px;
2727
    height: 7px;
2728
    -webkit-border-radius: 100px;
2729
    -moz-border-radius: 100px;
2730
    -ms-border-radius: 100px;
2731
    -o-border-radius: 100px;
2732
    border-radius: 100px;
2733
    font-size: 8px;
2734
    color: #ffffff;
2735
    opacity: 0;
2736
    visibility: hidden;
2737
    background-color: #e44d3a;
2738
    position: absolute;
2739
    font-family: fontawesome;
2740
    top: 49%;
2741
    left: 49%;
2742
    -webkit-transform: translateX(-50%) translateY(-50%);
2743
    -moz-transform: translateX(-50%) translateY(-50%);
2744
    -ms-transform: translateX(-50%) translateY(-50%);
2745
    -o-transform: translateX(-50%) translateY(-50%);
2746
    transform: translateX(-50%) translateY(-50%);
2747
}
2748
 
2749
.fgt-sec input[type="radio"]:checked+label span:before {
2750
    opacity: 1;
2751
    visibility: visible;
2752
}
2753
 
2754
/* =============== signup-tab ============== */
2755
 
2756
.signup-tab {
2757
    float: left;
2758
    width: 100%;
2759
    border: 1px solid #e5e5e5;
2760
    text-align: center;
2761
    padding: 15px 0;
2762
    margin-bottom: 20px;
2763
    position: relative;
2764
    margin-top: -30px;
2765
}
2766
 
2767
.signup-tab>i {
2768
    position: absolute;
2769
    top: 15px;
2770
    left: 13px;
2771
    color: #000;
2772
    font-size: 14px;
2773
}
2774
 
2775
.signup-tab h2 {
2776
    color: #000000;
2777
    font-size: 14px;
2778
    font-weight: 500;
2779
    margin-bottom: 15px;
2780
}
2781
 
2782
.signup-tab ul {
2783
    float: left;
2784
    width: 100%;
2785
}
2786
 
2787
.signup-tab ul li {
2788
    display: inline-block;
2789
    margin-right: -4px;
2790
}
2791
 
2792
.signup-tab ul li a {
2793
    color: #000000;
2794
    font-size: 14px;
2795
    font-weight: 500;
2796
    background-color: #e5e5e5;
2797
    padding: 10px 15px;
2798
    -webkit-border-radius: 3px 0px 0px 3px;
2799
    -moz-border-radius: 3px 0px 0px 3px;
2800
    -ms-border-radius: 3px 0px 0px 3px;
2801
    -o-border-radius: 3px 0px 0px 3px;
2802
    border-radius: 3px 0px 0px 3px;
2803
    display: inline-block;
2804
}
2805
 
2806
.signup-tab ul li.current a {
2807
    background-color: #e44d3a;
2808
    color: #fff;
2809
}
2810
 
2811
.signup-tab ul li:last-child a {
2812
    -webkit-border-radius: 0px 3px 3px 0px;
2813
    -moz-border-radius: 0px 3px 3px 0px;
2814
    -ms-border-radius: 0px 3px 3px 0px;
2815
    -o-border-radius: 0px 3px 3px 0px;
2816
    border-radius: 0px 3px 3px 0px;
2817
}
2818
 
2819
/* ============ login-resources ============= */
2820
 
2821
.login-resources {
2822
    float: left;
2823
    width: 100%;
2824
    text-align: center;
2825
    margin-top: 27px;
2826
}
2827
 
2828
.login-resources h4 {
2829
    color: #000000;
2830
    font-size: 14px;
2831
    font-weight: 600;
2832
    margin-bottom: 30px;
2833
    text-transform: uppercase;
2834
}
2835
 
2836
.login-resources ul {
2837
    float: left;
2838
    width: 100%;
2839
}
2840
 
2841
.login-resources ul li {
2842
    float: left;
2843
    width: 100%;
2844
    margin-bottom: 20px;
2845
}
2846
 
2847
.login-resources ul li a {
2848
    color: #ffffff;
2849
    font-size: 15px;
2850
    font-weight: 500;
2851
    float: left;
2852
    width: 100%;
2853
    padding: 10px 0;
2854
}
2855
 
2856
.login-resources ul li a i {
2857
    margin-right: 15px;
2858
}
2859
 
2860
.fb {
2861
    background-color: #3b5998;
2862
}
2863
 
2864
.tw {
2865
    background-color: #4099ff;
2866
}
2867
 
2868
.tw .fa-twitter {
2869
    color: #fff;
2870
}
2871
 
2872
/* =============== footy-sec ============= */
2873
 
2874
.footy-sec {
2875
    float: left;
2876
    width: 100%;
2877
    margin-top: 70px;
2878
}
2879
 
2880
.footy-sec ul {
2881
    float: left;
2882
    margin-top: 5px;
2883
}
2884
 
2885
.footy-sec ul li {
2886
    display: inline-block;
2887
    padding: 0 10px;
2888
    border-right: 1px solid #ffffff;
2889
}
2890
 
2891
.footy-sec ul li:last-child {
2892
    border-right: none;
2893
}
2894
 
2895
.footy-sec ul li a {
2896
    display: inline-block;
2897
    color: #3b5998;
2898
    font-size: 14px;
2899
    font-weight: 500;
2900
}
2901
 
2902
.footy-sec p img {
2903
    padding-right: 5px;
2904
    float: auto;
2905
    position: relative;
2906
    top: 6px;
2907
}
2908
 
2909
.footy-sec p {
2910
    float: right;
2911
    color: #ffffff;
2912
    font-size: 14px;
2913
    font-weight: 500;
2914
}
2915
 
2916
footer {
2917
    float: left;
2918
    width: 100%;
2919
    background-color: #fff;
2920
}
2921
 
2922
.footy-sec.mn ul {
2923
    padding: 30px 0;
2924
}
2925
 
2926
.footy-sec.mn ul li a {
2927
    color: #b2b2b2;
2928
}
2929
 
2930
.footy-sec.mn ul li a:hover {
2931
    color: #e44d3a;
2932
}
2933
 
2934
.footy-sec.mn ul li {
2935
    border-color: #b2b2b2;
2936
}
2937
 
2938
.footy-sec.mn p {
2939
    color: #b2b2b2;
2940
    margin-top: 30px;
2941
}
2942
 
2943
.fl-rgt {
2944
    float: right;
2945
    margin-top: 34px;
2946
    padding-right: 30px;
2947
}
2948
 
2949
/* ================== USER PROFILE =================== */
2950
 
2951
.cover-sec img {
2952
    width: 100%;
2953
}
2954
 
2955
.cover-sec>a {
2956
    display: inline-block;
2957
    color: #e44d3a;
2958
    font-size: 16px;
2959
    background-color: #fff;
2960
    border: 1px solid #e44d3a;
2961
    position: absolute;
2962
    top: 30px;
2963
    right: 0;
2964
    padding: 10px 15px;
2965
    font-weight: 600;
2966
    margin-right: 15px;
2967
}
2968
 
2969
.cover-sec>a i {
2970
    padding-right: 5px;
2971
}
2972
 
2973
/* ============= user_profile ============= */
2974
 
2975
.user_profile {
2976
    float: left;
2977
    width: 100%;
2978
    background-color: #fff;
2979
    margin-bottom: 20px;
2980
    text-align: center;
2981
    margin-top: -40px;
2982
}
2983
 
2984
.user-pro-img {
2985
    float: left;
2986
    width: 100%;
2987
    text-align: center;
2988
    margin-bottom: 28px;
2989
    position: relative;
2990
}
2991
 
2992
.user-pro-img .add-dp {
2993
    position: absolute;
2994
    top: 10px;
2995
    left: 60%;
2996
}
2997
 
2998
.add-dp i {
2999
    bottom: 0;
3000
    font-size: 14px;
3001
    box-shadow: none;
3002
    position: relative;
3003
    border-radius: 50px;
3004
    width: 40px;
3005
    height: 40px;
3006
    text-align: center;
3007
    background: #e44d3a;
3008
    padding: 12px;
3009
    color: #ffff;
3010
    left: 0;
3011
    top: -5px;
3012
}
3013
 
3014
.add-dp i:hover {
3015
    font-size: 14px;
3016
    border: 2px solid #fff;
3017
    background: #e44d3a;
3018
    padding: 11px;
3019
}
3020
 
3021
.add-dp {
3022
    margin: -16px;
3023
    padding: 0;
3024
}
3025
 
3026
.add-dp input[type="file"] {
3027
    opacity: 0;
3028
    padding: 10px 0px 9px;
3029
    display: none;
3030
}
3031
 
3032
.user-pro-img img {
3033
    -webkit-border-radius: 100px;
3034
    -moz-border-radius: 100px;
3035
    -ms-border-radius: 100px;
3036
    -o-border-radius: 100px;
3037
    border-radius: 100px;
3038
    float: none;
3039
    border: 5px solid #fff;
3040
}
3041
 
3042
.user_pro_status {
3043
    float: left;
3044
    width: 100%;
3045
    border-bottom: 1px solid #e5e5e5;
3046
    padding-bottom: 27px;
3047
}
3048
 
3049
.flw-hr {
3050
    float: left;
3051
    width: 100%;
3052
    margin-bottom: 30px;
3053
}
3054
 
3055
.flw-hr li {
3056
    display: inline-block;
3057
    margin-right: 17px;
3058
}
3059
 
3060
.flw-hr li:last-child {
3061
    margin-right: 0;
3062
}
3063
 
3064
.flw-hr li a {
3065
    display: inline-block;
3066
    color: #ffffff;
3067
    font-size: 16px;
3068
    font-weight: 600;
3069
    padding: 11px 15px;
3070
}
3071
 
3072
.flw-hr li a i {
3073
    padding-right: 5px;
3074
}
3075
 
3076
.flww {
3077
    background-color: #53d690;
3078
}
3079
 
3080
.hre {
3081
    background-color: #51a5fb;
3082
}
3083
 
3084
/* =============== flw-status ============ */
3085
 
3086
.flw-status {
3087
    float: left;
3088
    width: 100%;
3089
}
3090
 
3091
.flw-status li {
3092
    display: inline-block;
3093
    margin-right: 50px;
3094
}
3095
 
3096
.flw-status li:last-child {
3097
    margin-right: 0;
3098
}
3099
 
3100
.flw-status li span {
3101
    color: #686868;
3102
    font-size: 20px;
3103
    font-weight: 500;
3104
    margin-bottom: 15px;
3105
    display: block;
3106
}
3107
 
3108
.flw-status li b {
3109
    color: #000000;
3110
    font-size: 20px;
3111
    font-weight: 600;
3112
}
3113
 
3114
/* ================== social_links ============= */
3115
 
3116
.social_links {
3117
    float: left;
3118
    width: 100%;
3119
    text-align: left;
3120
}
3121
 
3122
.social_links li {
3123
    float: left;
3124
    width: 100%;
3125
    padding: 15px 15px;
3126
    border-bottom: 1px solid #e5e5e5;
3127
}
3128
 
3129
.social_links li a {
3130
    float: left;
3131
    width: 100%;
3132
    color: #51a5fb;
3133
    font-size: 14px;
3134
    font-weight: 400;
3135
    text-overflow: ellipsis;
3136
    white-space: nowrap;
3137
    overflow: hidden;
3138
}
3139
 
3140
.modal-md {
3141
    max-width: 55vw;
3142
}
3143
 
3144
@media(min-width: 721px) {
3145
    .group-view-tab {
3146
        margin-left: 3.5rem;
3147
    }
3148
    .group-view-tab span {
3149
        text-overflow: ellipsis;
3150
        white-space: nowrap;
3151
        overflow: hidden;
3152
    }
3153
}
3154
 
3155
@media(max-width: 720px) {
3156
    .group-view-tab {
3157
        margin-left: 3.5rem;
3158
    }
3159
}
3160
 
3161
.text-decoration-underline {
3162
    text-decoration: underline !important;
3163
}
3164
 
3165
.ellipsis {
3166
    text-overflow: ellipsis;
3167
    white-space: nowrap;
3168
    overflow: hidden;
3169
}
3170
 
3171
.social_links li a i {
3172
    padding-right: 5px;
3173
    font-size: 20px;
3174
    position: relative;
3175
    top: 3px;
3176
}
3177
 
3178
.la-globe {
3179
    color: #51a5fb;
3180
}
3181
 
3182
/* ================= user-tab-sec ============== */
3183
 
3184
.user-tab-sec {
3185
    float: left;
3186
    width: 100%;
3187
    padding-top: 4px;
3188
}
3189
 
3190
.user-tab-sec h3 {
3191
    color: #000000;
3192
    font-size: 24px;
3193
    font-weight: 600;
3194
    text-transform: capitalize;
3195
    margin-bottom: 15px;
3196
}
3197
 
3198
.star-descp {
3199
    float: left;
3200
    width: 100%;
3201
    margin-bottom: 10px;
3202
}
3203
 
3204
.star-descp ul li {
3205
    margin-right: 5px !important;
3206
}
3207
 
3208
.star-descp>a {
3209
    float: left;
3210
    color: #51a5fb;
3211
    font-size: 18px;
3212
    font-weight: 600;
3213
    margin-left: 20px;
3214
    text-decoration: underline;
3215
}
3216
 
3217
.star-descp>a:hover {
3218
    color: #51a5fb;
3219
}
3220
 
3221
.star-descp span {
3222
    float: left;
3223
    color: #686868;
3224
    font-size: 18px;
3225
    font-weight: 600;
3226
    margin-right: 20px;
3227
}
3228
 
3229
.star-descp>ul {
3230
    float: left;
3231
}
3232
 
3233
.star-descp ul li {
3234
    display: inline-block;
3235
}
3236
 
3237
.star-descp ul li i {
3238
    color: #b7ce1f;
3239
    font-size: 16px;
3240
}
3241
 
3242
.tab-feed {
3243
    float: left;
3244
    width: 100%;
3245
    margin-bottom: 45px;
3246
    margin-top: 20px;
3247
}
3248
 
3249
.tab-feed ul {
3250
    float: left;
3251
    width: 100%;
3252
}
3253
 
3254
.tab-feed ul li {
3255
    display: inline-block;
3256
    margin-right: 35px;
3257
    text-align: center;
3258
}
3259
 
3260
.savetext ul {
3261
    border-bottom: none !important;
3262
}
3263
 
3264
.tab-feed.st2 ul li {
3265
    margin-right: 17px;
3266
}
3267
 
3268
.tab-feed ul li:last-child {
3269
    margin-right: 0;
3270
}
3271
 
3272
.tab-feed ul li.active img {
3273
    filter: grayscale(0);
3274
}
3275
 
3276
.tab-feed ul li.active span {
3277
    color: #e44d3a;
3278
}
3279
 
3280
.tab-feed ul li img {
3281
    float: none;
3282
    margin-bottom: 5px;
3283
    filter: grayscale(100%);
3284
}
3285
 
3286
.tab-feed ul li span {
3287
    display: block;
3288
    color: #b2b2b2;
3289
    font-weight: 400;
3290
    font-size: 16px;
3291
}
3292
 
3293
.tab-feed ul li:last-child {
3294
    margin-right: 0;
3295
}
3296
 
3297
/* ================ message-btn ============= */
3298
 
3299
.message-btn {
3300
    /* float: right; margin-top: 20px; margin-bottom: 30px; */
3301
}
3302
 
3303
.message-btn a {
3304
    display: inline-block;
3305
    color: #ffffff;
3306
    font-size: 16px;
3307
    background-color: #e44d3a;
3308
    padding: 12px;
3309
    font-weight: 500;
3310
}
3311
 
3312
.message-btn a:hover {
3313
    color: #fff;
3314
}
3315
 
3316
.message-btn a i {
3317
    padding-right: 5px;
3318
}
3319
 
3320
/* ============== widget-portfolio ============== */
3321
 
3322
.wd-heady {
3323
    float: left;
3324
    width: 100%;
3325
    padding: 20px 20px;
3326
    border-bottom: 1px solid #e5e5e5;
3327
}
3328
 
3329
.wd-heady h3 {
3330
    color: #000000;
3331
    font-size: 18px;
3332
    font-weight: 600;
3333
    float: left;
3334
}
3335
 
3336
.wd-heady img {
3337
    float: right;
3338
}
3339
 
3340
.pf-gallery {
3341
    float: left;
3342
    width: 100%;
3343
    padding: 15px 15px;
3344
}
3345
 
3346
.pf-gallery ul {
3347
    float: left;
3348
    width: 100%;
3349
}
3350
 
3351
.pf-gallery ul li {
3352
    float: left;
3353
    width: 33.33%;
3354
    padding: 5px;
3355
    overflow: hidden;
3356
}
3357
 
3358
.pf-gallery ul li:hover {
3359
    -webkit-transform: scale(1.2);
3360
    -moz-transform: scale(1.2);
3361
    -ms-transform: scale(1.2);
3362
    -o-transform: scale(1.2);
3363
    transform: scale(1.2);
3364
}
3365
 
3366
.pf-gallery img {
3367
    width: 100%;
3368
}
3369
 
3370
.product-feed-tab {
3371
    float: left;
3372
    width: 100%;
3373
    display: none;
3374
}
3375
 
3376
.product-feed-tab.current {
3377
    display: block;
3378
}
3379
 
3380
/* =============== user-profile-ov ================ */
3381
 
3382
.user-profile-ov {
3383
    float: left;
3384
    width: 100%;
3385
    background-color: #fff;
3386
    padding: 30px 20px;
3387
    border-left: 1px solid #e4e4e4;
3388
    border-bottom: 1px solid #e4e4e4;
3389
    border-right: 1px solid #e4e4e4;
3390
    margin-bottom: 20px;
3391
}
3392
 
3393
.user-profile-ov h3 {
3394
    color: #000000;
3395
    font-size: 18px;
3396
    font-weight: 600;
3397
    margin-bottom: 20px;
3398
}
3399
 
3400
.user-profile-ov h3 a {
3401
    color: #000000;
3402
}
3403
 
3404
.user-profile-ov i {
3405
    color: #000000;
3406
    font-size: 13px;
3407
    padding-left: 5px;
3408
}
3409
 
3410
.user-profile-ov h4 {
3411
    font-size: 16px;
3412
    color: #000;
3413
    font-weight: 600;
3414
    margin-bottom: 10px;
3415
}
3416
 
3417
.user-profile-ov p {
3418
    color: #686868;
3419
    font-size: 14px;
3420
    line-height: 24px;
3421
}
3422
 
3423
.user-profile-ov.st2 p {
3424
    margin-bottom: 23px;
3425
}
3426
 
3427
.no-margin {
3428
    margin: 0 !important;
3429
}
3430
 
3431
.user-profile-ov>span {
3432
    color: #686868;
3433
    font-size: 14px;
3434
    float: left;
3435
    width: 100%;
3436
    margin-bottom: 8px;
3437
    margin-top: 3px;
3438
}
3439
 
3440
.user-profile-ov ul {
3441
    float: left;
3442
    width: 100%;
3443
}
3444
 
3445
.user-profile-ov ul li {
3446
    display: inline-block;
3447
    margin-bottom: 10px;
3448
    padding: 0 2px;
3449
}
3450
 
3451
.user-profile-ov ul li a {
3452
    display: inline-block;
3453
    color: #b2b2b2;
3454
    font-size: 14px;
3455
    font-weight: 600;
3456
    background-color: #e5e5e5;
3457
    -webkit-border-radius: 30px;
3458
    -moz-border-radius: 30px;
3459
    -ms-border-radius: 30px;
3460
    -o-border-radius: 30px;
3461
    border-radius: 30px;
3462
    padding: 10px 15px;
3463
}
3464
 
3465
/* ==================== portfolio-gallery-sec ==================== */
3466
 
3467
.portfolio-gallery-sec {
3468
    float: left;
3469
    width: 100%;
3470
    background-color: #fff;
3471
    padding: 30px 20px;
3472
    border-left: 1px solid #e4e4e4;
3473
    border-right: 1px solid #e4e4e4;
3474
    border-bottom: 1px solid #e4e4e4;
3475
}
3476
 
3477
.portfolio-gallery-sec h3 {
3478
    font-weight: 600;
3479
    font-size: 18px;
3480
    margin-bottom: 32px;
3481
    padding-left: 5px;
3482
    float: left;
3483
}
3484
 
3485
.portfolio-btn {
3486
    float: right;
3487
}
3488
 
3489
.portfolio-btn a {
3490
    display: inline-block;
3491
    color: #e44d3a;
3492
    font-size: 16px;
3493
    font-weight: 600;
3494
}
3495
 
3496
.portfolio-btn a i {
3497
    margin-right: 5px;
3498
}
3499
 
3500
.gallery_pf {
3501
    float: left;
3502
    width: 100%;
3503
    margin-bottom: -5px;
3504
}
3505
 
3506
.gallery_pf .col-lg-4 {
3507
    padding: 5px;
3508
}
3509
 
3510
.gallery_pt {
3511
    float: left;
3512
    width: 100%;
3513
    position: relative;
3514
    overflow: hidden;
3515
}
3516
 
3517
.gallery_pt:hover:before {
3518
    opacity: 1;
3519
    visibility: visible;
3520
    height: 100%;
3521
}
3522
 
3523
.gallery_pt:before {
3524
    content: "";
3525
    position: absolute;
3526
    top: 0;
3527
    left: 0;
3528
    width: 100%;
3529
    height: 0;
3530
    background-color: rgba(0, 0, 0, 0.6);
3531
    opacity: 0;
3532
    visibility: hidden;
3533
}
3534
 
3535
.gallery_pt img {
3536
    width: 100%;
3537
    height: 134px;
3538
    object-fit: cover;
3539
}
3540
 
3541
.row {
3542
    margin: 0;
3543
}
3544
 
3545
.gallery_pt>a {
3546
    position: absolute;
3547
    top: 100%;
3548
    left: 0;
3549
    float: left;
3550
    width: 100%;
3551
    text-align: center;
3552
    -webkit-transform: translateY(-50%);
3553
    -moz-transform: translateY(-50%);
3554
    -ms-transform: translateY(-50%);
3555
    -o-transform: translateY(-50%);
3556
    transform: translateY(-50%);
3557
    opacity: 0;
3558
    visibility: hidden;
3559
}
3560
 
3561
.gallery_pt:hover>a {
3562
    opacity: 1;
3563
    visibility: visible;
3564
    top: 50%;
3565
}
3566
 
3567
.gallery_pt>a img {
3568
    float: none;
3569
    width: auto;
3570
    height: auto;
3571
}
3572
 
3573
/* ============== overview-box ============= */
3574
 
3575
.overview-box {
3576
    width: 570px;
3577
    position: fixed;
3578
    top: 50%;
3579
    left: 50%;
3580
    -webkit-transform: translateX(-50%) translateY(-50%);
3581
    -moz-transform: translateX(-50%) translateY(-50%);
3582
    -ms-transform: translateX(-50%) translateY(-50%);
3583
    -o-transform: translateX(-50%) translateY(-50%);
3584
    transform: translateX(-50%) translateY(-50%);
3585
    opacity: 0;
3586
    visibility: hidden;
3587
    z-index: 0;
3588
}
3589
 
3590
.close-box {
3591
    position: absolute;
3592
    top: -20px;
3593
    right: -20px;
3594
    color: #fff;
3595
    font-size: 14px;
3596
    text-align: center;
3597
    width: 22px;
3598
    height: 22px;
3599
    line-height: 22px;
3600
    border: 1px solid #fff;
3601
    -webkit-border-radius: 100px;
3602
    -moz-border-radius: 100px;
3603
    -ms-border-radius: 100px;
3604
    -o-border-radius: 100px;
3605
    border-radius: 100px;
3606
    font-weight: 600;
3607
}
3608
 
3609
.close-box:hover {
3610
    color: #fff;
3611
}
3612
 
3613
.overview-box.open {
3614
    opacity: 1;
3615
    visibility: visible;
3616
    z-index: 99999;
3617
}
3618
 
3619
.overview-edit {
3620
    float: left;
3621
    width: 100%;
3622
    background-color: #fff;
3623
    padding: 30px 20px;
3624
}
3625
 
3626
.overview-edit h3 {
3627
    color: #000000;
3628
    font-size: 18px;
3629
    font-weight: 600;
3630
    float: left;
3631
    width: 100%;
3632
    margin-bottom: 25px;
3633
}
3634
 
3635
.overview-edit span {
3636
    color: #b2b2b2;
3637
    font-size: 12px;
3638
    float: right;
3639
    margin-bottom: 5px;
3640
}
3641
 
3642
.overview-edit form {
3643
    float: left;
3644
    width: 100%;
3645
}
3646
 
3647
.overview-edit form input {
3648
    height: 40px;
3649
    padding-left: 15px;
3650
    margin-bottom: 20px;
3651
}
3652
 
3653
.overview-edit form textarea,
3654
.overview-edit form input,
3655
.overview-edit form select {
3656
    width: 100%;
3657
    border: 1px solid #e5e5e5;
3658
    resize: none;
3659
    color: #b2b2b2;
3660
    font-size: 14px;
3661
}
3662
 
3663
.overview-edit form select {
3664
    line-height: 40px;
3665
    padding-left: 40px;
3666
    margin-bottom: 20px;
3667
}
3668
 
3669
.overview-edit form textarea {
3670
    height: 160px;
3671
    margin-bottom: 30px;
3672
    padding: 15px;
3673
}
3674
 
3675
.save {
3676
    background-color: #e44d3a;
3677
    color: #fff;
3678
    border-color: transparent;
3679
}
3680
 
3681
.save-add {
3682
    background-color: #fff;
3683
    padding: 13px 13px !important;
3684
}
3685
 
3686
.overview-edit button {
3687
    float: left;
3688
    border: 1px solid #e5e5e5;
3689
    font-weight: 600;
3690
    font-size: 16px;
3691
    padding: 13px 34px;
3692
    margin-right: 20px;
3693
    outline: none;
3694
    cursor: pointer;
3695
}
3696
 
3697
.cancel {
3698
    background-color: #fff;
3699
    color: #000;
3700
}
3701
 
3702
.datepicky {
3703
    float: left;
3704
    width: 100%;
3705
}
3706
 
3707
.no-left-pd {
3708
    padding: 0;
3709
}
3710
 
3711
.no-righ-pd {
3712
    padding-right: 0;
3713
}
3714
 
3715
.datefm {
3716
    float: left;
3717
    width: 100%;
3718
    position: relative;
3719
}
3720
 
3721
.datefm i {
3722
    position: absolute;
3723
    top: 11px;
3724
    right: 15px;
3725
    font-size: 18px;
3726
    color: #b2b2b2;
3727
}
3728
 
3729
#location-box .datefm i {
3730
    right: auto;
3731
    left: 15px;
3732
}
3733
 
3734
#location-box .datefm input {
3735
    padding-left: 40px;
3736
}
3737
 
3738
#skills-box ul {
3739
    float: left;
3740
    width: 100%;
3741
    margin-bottom: 20px;
3742
}
3743
 
3744
#skills-box ul li {
3745
    display: inline-block;
3746
    margin-right: 10px;
3747
    position: relative;
3748
}
3749
 
3750
.skl-name {
3751
    display: inline-block;
3752
    color: #b2b2b2;
3753
    font-size: 14px;
3754
    font-weight: 500;
3755
    background-color: #e5e5e5;
3756
    -webkit-border-radius: 30px;
3757
    -moz-border-radius: 30px;
3758
    -ms-border-radius: 30px;
3759
    -o-border-radius: 30px;
3760
    border-radius: 30px;
3761
    text-transform: uppercase;
3762
    padding: 10px 30px 10px 12px;
3763
    position: relative;
3764
}
3765
 
3766
.close-skl {
3767
    position: absolute;
3768
    top: 10px;
3769
    right: 10px;
3770
    color: #b2b2b2;
3771
    font-size: 14px;
3772
}
3773
 
3774
.file-submit {
3775
    border: 1px solid #e5e5e5;
3776
    position: relative;
3777
    padding: 0px;
3778
    height: 40px;
3779
    margin-bottom: 20px;
3780
    border-radius: 3px;
3781
}
3782
 
3783
.file-submit [type="file"] {
3784
    height: 40px;
3785
    overflow: hidden;
3786
    width: 100%;
3787
    float: left;
3788
    position: absolute;
3789
    padding: 10px 4px 0px 12px;
3790
    font-size: 14px;
3791
    opacity: 0;
3792
    display: none;
3793
}
3794
 
3795
.file-submit [type="file"]+label {
3796
    background: #e44d3a;
3797
    border: none;
3798
    float: left;
3799
    border-top-right-radius: 0px;
3800
    border-bottom-right-radius: 0px;
3801
    border-top-left-radius: 3px;
3802
    border-bottom-left-radius: 3px;
3803
    color: #fff;
3804
    cursor: pointer;
3805
    /* display: inline-block; */
3806
    font-size: 14px;
3807
    font-weight: 500;
3808
    outline: none;
3809
    padding: 12px 15px;
3810
    position: relative;
3811
    transition: all 0.3s;
3812
    vertical-align: middle;
3813
    margin: 0;
3814
}
3815
 
3816
.file-submit.nomg {
3817
    border: 0;
3818
    margin-bottom: 20px;
3819
}
3820
 
3821
.file-submit.nomg input {
3822
    margin-bottom: 0;
3823
    padding-top: 0;
3824
}
3825
 
3826
.daty {
3827
    float: left;
3828
    width: 100%;
3829
    position: relative;
3830
}
3831
 
3832
.daty>i {
3833
    position: absolute;
3834
    top: 10px;
3835
    right: 15px;
3836
    color: #b2b2b2;
3837
    font-size: 20px;
3838
}
3839
 
3840
a:hover {
3841
    color: initial;
3842
}
3843
 
3844
.pf-img {
3845
    float: left;
3846
    width: 100%;
3847
    background-color: #f2f2f2;
3848
    padding: 15px;
3849
    margin-bottom: 20px;
3850
}
3851
 
3852
/* ================= billing-method ============== */
3853
 
3854
.billing-method {
3855
    float: left;
3856
    width: 100%;
3857
    background-color: #fff;
3858
    border-left: 1px solid #e4e4e4;
3859
    border-right: 1px solid #e4e4e4;
3860
    border-bottom: 1px solid #e4e4e4;
3861
    margin-bottom: 20px;
3862
}
3863
 
3864
.billing-method ul {
3865
    float: left;
3866
    width: 100%;
3867
}
3868
 
3869
.billing-method ul li {
3870
    float: left;
3871
    width: 100%;
3872
    border-bottom: 1px solid #e5e5e5;
3873
    padding: 25px 20px;
3874
}
3875
 
3876
.billing-method ul li h3 {
3877
    color: #000000;
3878
    font-size: 18px;
3879
    font-weight: 600;
3880
    float: left;
3881
}
3882
 
3883
.billing-method ul li a,
3884
.billing-method ul li span {
3885
    float: right;
3886
    color: #000000;
3887
    font-size: 13px;
3888
    text-transform: capitalize;
3889
    font-weight: 600;
3890
    margin-top: 3px;
3891
}
3892
 
3893
.billing-method ul li i {
3894
    font-size: 13px;
3895
    color: #e44d3a;
3896
}
3897
 
3898
.lt-sec {
3899
    float: left;
3900
    width: 100%;
3901
    text-align: center;
3902
    padding: 30px 0;
3903
}
3904
 
3905
.lt-sec img {
3906
    float: none;
3907
    margin-bottom: 15px;
3908
}
3909
 
3910
.lt-sec h4 {
3911
    color: #686868;
3912
    font-size: 18px;
3913
    font-weight: 600;
3914
    margin-bottom: 25px;
3915
}
3916
 
3917
.lt-sec>a {
3918
    display: inline-block;
3919
    color: #ffffff;
3920
    font-size: 16px;
3921
    background-color: #e44d3a;
3922
    padding: 10px 25px;
3923
}
3924
 
3925
/* ============== add-billing-method ============== */
3926
 
3927
.add-billing-method {
3928
    float: left;
3929
    width: 100%;
3930
    background-color: #fff;
3931
    border-left: 1px solid #e4e4e4;
3932
    border-right: 1px solid #e4e4e4;
3933
    border-bottom: 1px solid #e4e4e4;
3934
}
3935
 
3936
.add-billing-method h3 {
3937
    color: #000000;
3938
    font-size: 18px;
3939
    font-weight: 600;
3940
    padding: 20px 20px;
3941
    border-bottom: 1px solid #e5e5e5;
3942
}
3943
 
3944
.add-billing-method>h4 {
3945
    color: #686868;
3946
    font-size: 13px;
3947
    font-weight: 500;
3948
    padding: 20px 20px;
3949
    border-bottom: 1px solid #e5e5e5;
3950
    float: left;
3951
    width: 100%;
3952
}
3953
 
3954
.add-billing-method img {
3955
    margin-right: 10px;
3956
}
3957
 
3958
.add-billing-method span {
3959
    margin-top: 4px;
3960
    float: left;
3961
}
3962
 
3963
/* ============= payment_methods ============ */
3964
 
3965
.payment_methods {
3966
    float: left;
3967
    width: 100%;
3968
}
3969
 
3970
.payment_methods>h4 {
3971
    color: #000000;
3972
    font-size: 16px;
3973
    font-weight: 600;
3974
    position: relative;
3975
    padding: 25px 20px 25px 45px;
3976
    float: left;
3977
    width: 100%;
3978
}
3979
 
3980
.rowwy {
3981
    float: left;
3982
    width: 100%;
3983
}
3984
 
3985
.pd-left-none {
3986
    padding-left: 0;
3987
}
3988
 
3989
.pd-right-none {
3990
    padding-right: 0;
3991
}
3992
 
3993
.payment_methods h4:before {
3994
    content: "";
3995
    position: absolute;
3996
    top: 50%;
3997
    -webkit-transform: translateY(-50%);
3998
    -moz-transform: translateY(-50%);
3999
    -ms-transform: translateY(-50%);
4000
    -o-transform: translateY(-50%);
4001
    transform: translateY(-50%);
4002
    left: 20px;
4003
    width: 15px;
4004
    height: 15px;
4005
    border: 1px solid #e6e6e6;
4006
    -webkit-border-radius: 100px;
4007
    -moz-border-radius: 100px;
4008
    -ms-border-radius: 100px;
4009
    -o-border-radius: 100px;
4010
    border-radius: 100px;
4011
}
4012
 
4013
.payment_methods h4:after {
4014
    content: "";
4015
    position: absolute;
4016
    top: 50%;
4017
    -webkit-transform: translateY(-50%);
4018
    -moz-transform: translateY(-50%);
4019
    -ms-transform: translateY(-50%);
4020
    -o-transform: translateY(-50%);
4021
    transform: translateY(-50%);
4022
    left: 24px;
4023
    width: 7px;
4024
    height: 7px;
4025
    background-color: #e44d3a;
4026
    -webkit-border-radius: 100px;
4027
    -moz-border-radius: 100px;
4028
    -ms-border-radius: 100px;
4029
    -o-border-radius: 100px;
4030
    border-radius: 100px;
4031
}
4032
 
4033
.payment_methods form {
4034
    float: left;
4035
    width: 100%;
4036
    padding-bottom: 30px;
4037
    border-bottom: 1px solid #e5e5e5;
4038
}
4039
 
4040
.payment_methods form button {
4041
    color: #ffffff;
4042
    font-size: 16px;
4043
    background-color: #e44d3a;
4044
    padding: 10px 15px;
4045
    border: 0;
4046
    cursor: pointer;
4047
}
4048
 
4049
.payment_methods form input {
4050
    width: 100%;
4051
    height: 40px;
4052
    border: 1px solid #e5e5e5;
4053
    padding: 0 12px;
4054
}
4055
 
4056
.cc-head {
4057
    float: left;
4058
    width: 100%;
4059
    margin-bottom: 10px;
4060
}
4061
 
4062
.cc-head h5 {
4063
    float: left;
4064
    color: #000000;
4065
    font-size: 16px;
4066
    font-weight: 600;
4067
    margin-top: 4px;
4068
}
4069
 
4070
.cc-head h5 i {
4071
    color: #b2b2b2;
4072
    font-size: 14px;
4073
}
4074
 
4075
.cc-head ul {
4076
    float: right;
4077
}
4078
 
4079
.cc-head ul li {
4080
    display: inline-block;
4081
}
4082
 
4083
.inpt-field {
4084
    float: left;
4085
    width: 100%;
4086
    position: relative;
4087
    margin-bottom: 20px;
4088
}
4089
 
4090
.no-pdd {
4091
    padding: 0;
4092
}
4093
 
4094
.inpt-field.pd-moree input {
4095
    padding-left: 40px !important;
4096
}
4097
 
4098
.inpt-field i {
4099
    color: #b2b2b2;
4100
    font-size: 18px;
4101
    position: absolute;
4102
    top: 50%;
4103
    left: 15px;
4104
    -webkit-transform: translateY(-50%);
4105
    -moz-transform: translateY(-50%);
4106
    -ms-transform: translateY(-50%);
4107
    -o-transform: translateY(-50%);
4108
    transform: translateY(-50%);
4109
}
4110
 
4111
/* ============== companies-info ============== */
4112
 
4113
.companies-info {
4114
    padding: 60px 0;
4115
}
4116
 
4117
.company-title {
4118
    float: left;
4119
    width: 100%;
4120
    margin-bottom: 20px;
4121
    padding: 0 1.9rem;
4122
}
4123
 
4124
.default-link {
4125
    color: #0860bf;
4126
}
4127
 
4128
.default-link:hover {
4129
    font-weight: bold;
4130
    color: #0860bf;
4131
    transition: all .5s;
4132
}
4133
 
4134
.company-title h3 {
4135
    color: #000000;
4136
    font-size: 20px;
4137
    font-weight: 600;
4138
    background-color: #fff;
4139
    padding: 10px 15px;
4140
}
4141
 
4142
.companies-list {
4143
    float: left;
4144
    width: 100%;
4145
    margin-bottom: -30px;
4146
}
4147
 
4148
.companies-list .slick-list {
4149
    max-height: 47vh;
4150
}
4151
 
4152
.slick-prev:before,
4153
.slick-next:before {
4154
    color: #000 !important;
4155
}
4156
 
4157
.company_profile_info {
4158
    /* float: left; */
4159
    width: 100%;
4160
    background-color: #fff;
4161
    text-align: center;
4162
    border-left: 1px solid #e4e4e4;
4163
    border-right: 1px solid #e4e4e4;
4164
    border-bottom: 1px solid #e4e4e4;
4165
    margin-bottom: 30px;
4166
}
4167
 
4168
.company-up-info {
4169
    /* float: left; */
4170
    width: 100%;
4171
    padding: 20px 0;
4172
    border-bottom: 1px solid #e5e5e5;
4173
}
4174
 
4175
.company-up-info .description {
4176
    margin-bottom: 10px;
4177
}
4178
 
4179
.company-up-info img {
4180
    float: none;
4181
    margin-bottom: 10px;
4182
    -webkit-border-radius: 100px;
4183
    -moz-border-radius: 100px;
4184
    -ms-border-radius: 100px;
4185
    -o-border-radius: 100px;
4186
    border-radius: 100px;
4187
    height: 90px;
4188
    object-fit: cover;
4189
}
4190
 
4191
.company-up-info h3 {
4192
    color: #000000;
4193
    font-size: 18px;
4194
    font-weight: 600;
4195
    margin-bottom: 10px;
4196
}
4197
 
4198
.company-up-info h4 {
4199
    color: #686868;
4200
    font-size: 14px;
4201
    font-weight: 500;
4202
    margin-bottom: 21px;
4203
}
4204
 
4205
.company-up-info h6 {
4206
    color: #686868;
4207
    font-size: 15px;
4208
    font-weight: 500;
4209
    margin-bottom: 10px;
4210
}
4211
 
4212
.company-up-info ul {
4213
    /* float: left; */
4214
    width: 100%;
4215
}
4216
 
4217
.company-up-info ul li {
4218
    display: inline-block;
4219
    margin-right: 6px;
4220
}
4221
 
4222
.company-up-info ul li a i {
4223
    font-size: 24px;
4224
    position: relative;
4225
    top: 3px;
4226
}
4227
 
4228
.follow {
4229
    background-color: #53d690;
4230
}
4231
 
4232
.message-us {
4233
    background-color: #e44d3a;
4234
}
4235
 
4236
.hire-us {
4237
    background-color: #51a5fb;
4238
}
4239
 
4240
.company_profile_info .cancelButton {
4241
    display: inline-block;
4242
    color: #000000;
4243
    font-size: 16px;
4244
    font-weight: 500;
4245
    margin: 18px 0;
4246
}
4247
 
4248
/* ============= search-sec ============= */
4249
 
4250
.search-sec {
4251
    float: left;
4252
    width: 100%;
4253
    margin: 30px 0 0 0;
4254
}
4255
 
4256
.search-box {
4257
    float: left;
4258
    width: 100%;
1809 steven 4259
    padding: 2.1%;
1239 steven 4260
}
4261
 
4262
.search-box form {
4263
    float: left;
4264
    width: 100%;
4265
    position: relative;
4266
}
4267
 
4268
.search-box form input {
4269
    width: 100%;
4270
    height: 40px;
4271
    padding: 0 15px;
1808 steven 4272
    background: var(--background-light-gray);
1807 steven 4273
    color: var(--gray);
1239 steven 4274
    font-size: 14px;
1808 steven 4275
    border: solid 1px var(--border-light-gray);
1239 steven 4276
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
4277
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
4278
    -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
4279
    -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
4280
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
4281
}
4282
 
1803 steven 4283
.search-box form button {
4284
    position: absolute;
4285
    top: 0;
4286
    right: 0;
1804 steven 4287
    border: solid 1px var(--border-light-gray);
1806 steven 4288
    color: var(--gray);
1803 steven 4289
    font-size: 16px;
4290
    font-weight: 500;
4291
    height: 100%;
4292
    padding: 0 28px;
4293
    cursor: pointer;
4294
    -webkit-border-radius: 0 4px 4px 0;
4295
    -moz-border-radius: 0 4px 4px 0;
4296
    -ms-border-radius: 0 4px 4px 0;
4297
    -o-border-radius: 0 4px 4px 0;
4298
    border-radius: 0 4px 4px 0;
4299
}
4300
 
1239 steven 4301
/* =============== filter-secs ============== */
4302
 
4303
.filter-secs {
4304
    float: left;
4305
    width: 100%;
4306
    /* background-color: #fff; */
4307
    box-shadow: 0px 2px #e4e4e4;
4308
    border: 1px solid #e5e5e5;
4309
}
4310
 
4311
.filter-heading {
4312
    float: left;
4313
    width: 100%;
4314
    padding: 15px 20px;
4315
    border-bottom: 1px solid #e5e5e5;
4316
    margin-bottom: 15px;
4317
}
4318
 
4319
.filter-heading h3 {
4320
    float: left;
4321
    color: #e44d3a;
4322
    font-size: 18px;
4323
    font-weight: 600;
4324
}
4325
 
4326
.filter-heading a {
4327
    float: right;
4328
    color: #686868;
4329
    font-size: 14px;
4330
    margin-top: 4px;
4331
}
4332
 
4333
.filter-ttl {
4334
    float: left;
4335
    width: 100%;
4336
    border-bottom: 1px solid #e5e5e5;
4337
    padding: 0 0 16px 0;
4338
    margin-bottom: 10px;
4339
}
4340
 
4341
.filter--tt2 {
4342
    margin-bottom: 0px !important;
4343
}
4344
 
4345
.top--1 {
4346
    margin-top: 20px;
4347
}
4348
 
4349
.filter--tt2 .dropdown .dropdown-menu a {
4350
    float: none;
4351
    color: #666666 !important;
4352
    margin-bottom: 12px !important;
4353
}
4354
 
4355
.filter--tt2 .dropdown .dropdown-menu a:hover {
4356
    color: #e44d3a !important;
4357
    background: none !important;
4358
}
4359
 
4360
.filter--tt2 .dropdown .dropdown-menu a:focus {
4361
    color: #e44d3a !important;
4362
    background: none !important;
4363
}
4364
 
4365
.filter--tt2 a {
4366
    float: left !important;
4367
    padding: 0 0 0 15px !important;
4368
    font-size: 16px !important;
4369
    color: #000000 !important;
4370
    font-weight: 500 !important;
4371
}
4372
 
4373
.filter-ttl h3 {
4374
    float: left;
4375
    padding: 0;
4376
    font-size: 16px;
4377
    color: #000000;
4378
    font-weight: 400;
4379
}
4380
 
4381
.filter-ttl a {
4382
    float: right;
4383
    font-size: 14px;
4384
    color: #666666;
4385
}
4386
 
4387
.filter-ttl .dropdown a {
4388
    float: none;
4389
    color: #666666;
4390
}
4391
 
4392
.filter-dd {
4393
    float: left;
4394
    width: 100%;
4395
    margin-bottom: 15px;
4396
}
4397
 
4398
.filter-dd form {
4399
    float: left;
4400
    width: 100%;
4401
    position: relative;
4402
}
4403
 
4404
.filter-dd form input,
4405
.filter-dd form select {
4406
    width: 100%;
4407
    height: 30px;
4408
    background-color: #f2f2f2;
4409
    padding: 0 10px;
4410
    color: #b2b2b2;
4411
    font-size: 12px;
4412
    font-weight: 600;
4413
    border: 0;
4414
    border: 1px solid #e5e5e5;
4415
}
4416
 
4417
.job-tp i {
4418
    color: #666666;
4419
    position: absolute;
4420
    top: 9px;
4421
    right: 15px;
4422
    font-size: 14px;
4423
}
4424
 
4425
.avail-checks {
4426
    float: left;
4427
    width: 100%;
4428
    margin-top: 7px;
4429
}
4430
 
4431
.avail-checks li {
4432
    float: left;
4433
    width: 100%;
4434
    margin-bottom: 10px;
4435
}
4436
 
4437
.avail-checks li:last-child {
4438
    margin-bottom: 0;
4439
}
4440
 
4441
.avail-checks li input[type="radio"] {
4442
    display: none;
4443
}
4444
 
4445
.avail-checks li label {
4446
    float: left;
4447
}
4448
 
4449
.avail-checks li input[type="radio"]+label span {
4450
    display: inline-block;
4451
    width: 15px;
4452
    height: 15px;
4453
    position: relative;
4454
    margin-top: 3px;
4455
    border: 1px solid #d2d2d2;
4456
    -webkit-border-radius: 100px;
4457
    -moz-border-radius: 100px;
4458
    -ms-border-radius: 100px;
4459
    -o-border-radius: 100px;
4460
    border-radius: 100px;
4461
}
4462
 
4463
.avail-checks li input[type="radio"]+label span:before {
4464
    content: "";
4465
    opacity: 0;
4466
    visibility: hidden;
4467
    position: absolute;
4468
    width: 7px;
4469
    height: 7px;
4470
    -webkit-border-radius: 100px;
4471
    -moz-border-radius: 100px;
4472
    -ms-border-radius: 100px;
4473
    -o-border-radius: 100px;
4474
    border-radius: 100px;
4475
    background-color: #e44d3a;
4476
    top: 3px;
4477
    left: 3px;
4478
}
4479
 
4480
.avail-checks li input[type="radio"]:checked+label span:before {
4481
    opacity: 1;
4482
    visibility: visible;
4483
}
4484
 
4485
.avail-checks li small {
4486
    color: #909090;
4487
    font-size: 14px;
4488
    padding-left: 10px;
4489
    font-weight: 500;
4490
}
4491
 
4492
/* =========== Range Slider ========== */
4493
 
4494
.rg-slider {
4495
    float: left;
4496
    width: 100%;
4497
}
4498
 
4499
.slider-container {
4500
    width: 100% !important;
4501
    padding-top: 50px;
4502
    position: relative;
4503
}
4504
 
4505
.theme-green .back-bar {
4506
    height: 5px;
4507
    border: 1px solid #e5e5e5;
4508
    -webkit-border-radius: 30px;
4509
    -moz-border-radius: 30px;
4510
    -ms-border-radius: 30px;
4511
    -o-border-radius: 30px;
4512
    border-radius: 30px;
4513
}
4514
 
4515
.theme-green .back-bar .pointer {
4516
    width: 17px;
4517
    height: 17px;
4518
    -webkit-border-radius: 100px;
4519
    -moz-border-radius: 100px;
4520
    -ms-border-radius: 100px;
4521
    -o-border-radius: 100px;
4522
    border-radius: 100px;
4523
    background-color: #e44d3a;
4524
    border: 2px solid #e3e3e3;
4525
    -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4526
    -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4527
    -ms-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4528
    -o-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4529
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4530
}
4531
 
4532
.theme-green .back-bar .pointer {
4533
    top: -7px;
4534
}
4535
 
4536
.slider-container .back-bar .pointer-label {
4537
    top: -50px;
4538
    height: 26px;
4539
    background-color: #e5e5e5;
4540
    -webkit-border-radius: 30px;
4541
    -moz-border-radius: 30px;
4542
    -ms-border-radius: 30px;
4543
    -o-border-radius: 30px;
4544
    border-radius: 30px;
4545
    line-height: 26px;
4546
    width: 50px;
4547
}
4548
 
4549
.pointer-label.low {
4550
    left: 0 !important;
4551
}
4552
 
4553
.pointer-label.high {
4554
    left: 70px !important;
4555
}
4556
 
4557
.pointer-label.low:before {
4558
    content: "";
4559
    position: absolute;
4560
    top: 13px;
4561
    right: -14px;
4562
    width: 8px;
4563
    height: 1px;
4564
    background-color: #e5e5e5;
4565
}
4566
 
4567
.rg-limit {
4568
    float: left;
4569
    width: 100%;
4570
    margin-top: 16px;
4571
}
4572
 
4573
.rg-limit h4 {
4574
    color: #686868;
4575
    font-size: 15px;
4576
    font-weight: 600;
4577
    float: left;
4578
}
4579
 
4580
.rg-limit h4:last-child {
4581
    float: right;
4582
}
4583
 
4584
/* ============== chatbox-list ============== */
4585
 
4586
.chatbox-list {
4587
    position: fixed;
4588
    bottom: 0;
4589
    right: 0;
4590
}
4591
 
4592
.chatbox {
4593
    display: inline-block;
4594
    margin-right: 13px;
4595
    position: relative;
4596
}
4597
 
4598
.chat-mg {
4599
    display: inline-block;
4600
    position: relative;
4601
}
4602
 
4603
.chat-mg img {
4604
    width: 70px;
4605
    height: 70px;
4606
    -webkit-border-radius: 100px;
4607
    -moz-border-radius: 100px;
4608
    -ms-border-radius: 100px;
4609
    -o-border-radius: 100px;
4610
    border-radius: 100px;
4611
}
4612
 
4613
.chat-mg span {
4614
    position: absolute;
4615
    top: -5px;
4616
    right: 10px;
4617
    width: 20px;
4618
    height: 20px;
4619
    background-color: #e44d3a;
4620
    text-align: center;
4621
    font-size: 12px;
4622
    color: #fff;
4623
    line-height: 20px;
4624
    -webkit-border-radius: 100px;
4625
    -moz-border-radius: 100px;
4626
    -ms-border-radius: 100px;
4627
    -o-border-radius: 100px;
4628
    border-radius: 100px;
4629
}
4630
 
4631
.chat-mg.bx img {
4632
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4633
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4634
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4635
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4636
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4637
}
4638
 
4639
.conversation-box {
4640
    position: absolute;
4641
    bottom: 132%;
4642
    right: 100%;
4643
    width: 350px;
4644
    background-color: #fff;
4645
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4646
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4647
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4648
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4649
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4650
    opacity: 0;
4651
    visibility: hidden;
4652
    z-index: 0;
4653
}
4654
 
4655
.conversation-box.active {
4656
    opacity: 1;
4657
    visibility: visible;
4658
    z-index: 9999;
4659
}
4660
 
4661
.conversation-box:before {
4662
    content: "";
4663
    position: absolute;
4664
    bottom: -7px;
4665
    right: 26px;
4666
    border-top: 15px solid #fff;
4667
    border-right: 15px solid transparent;
4668
    -webkit-transform: rotate(225deg);
4669
    -moz-transform: rotate(225deg);
4670
    -ms-transform: rotate(225deg);
4671
    -o-transform: rotate(225deg);
4672
    transform: rotate(225deg);
4673
}
4674
 
4675
.con-title {
4676
    float: left;
4677
    width: 100%;
4678
    background-color: #e44d3a;
4679
    padding: 15px 25px;
4680
    -webkit-border-radius: 10px 10px 0 0;
4681
    -moz-border-radius: 10px 10px 0 0;
4682
    -ms-border-radius: 10px 10px 0 0;
4683
    -o-border-radius: 10px 10px 0 0;
4684
    border-radius: 10px 10px 0 0;
4685
}
4686
 
4687
.con-title h3 {
4688
    float: left;
4689
    color: #ffffff;
4690
    font-size: 16px;
4691
    font-weight: 600;
4692
}
4693
 
4694
.con-title>a {
4695
    float: right;
4696
    color: #fff;
4697
    font-size: 20px;
4698
}
4699
 
4700
.chat-list {
4701
    float: left;
4702
    width: 100%;
4703
    min-height: 390px;
4704
}
4705
 
4706
.conv-list {
4707
    float: left;
4708
    width: 100%;
4709
    display: table;
4710
    padding: 20px 25px;
4711
    position: relative;
4712
}
4713
 
4714
.conv-list:hover,
4715
.conv-list.active {
4716
    background-color: #efefef;
4717
}
4718
 
4719
.msg-numbers {
4720
    position: absolute;
4721
    bottom: 18px;
4722
    right: 25px;
4723
    width: 25px;
4724
    height: 25px;
4725
    background-color: #e77667;
4726
    text-align: center;
4727
    line-height: 25px;
4728
    color: #fff;
4729
    font-size: 13px;
4730
    -webkit-border-radius: 100px;
4731
    -moz-border-radius: 100px;
4732
    -ms-border-radius: 100px;
4733
    -o-border-radius: 100px;
4734
    border-radius: 100px;
4735
}
4736
 
4737
.usrr-pic {
4738
    display: table-cell;
4739
    position: relative;
4740
}
4741
 
4742
.active-status {
4743
    width: 9px;
4744
    height: 9px;
4745
    border: 2px solid #ecf5fb;
4746
    -webkit-border-radius: 100px;
4747
    -moz-border-radius: 100px;
4748
    -ms-border-radius: 100px;
4749
    -o-border-radius: 100px;
4750
    border-radius: 100px;
4751
    position: absolute;
4752
    top: -3px;
4753
    right: 0;
4754
}
4755
 
4756
.activee {
4757
    background-color: #e44d3a;
4758
}
4759
 
4760
.usy-info {
4761
    display: table-cell;
4762
    vertical-align: top;
4763
    width: 100%;
4764
    padding-left: 15px;
4765
}
4766
 
4767
.usy-info h3 {
4768
    color: #000000;
4769
    font-size: 18px;
4770
    font-weight: 600;
4771
    margin-bottom: 5px;
4772
}
4773
 
4774
.usy-info span {
4775
    color: #686868;
4776
    font-size: 16px;
4777
    float: left;
4778
}
4779
 
4780
.usy-info span img {
4781
    padding-left: 5px;
4782
    float: right;
4783
}
4784
 
4785
.ct-time {
4786
    position: absolute;
4787
    top: 20px;
4788
    right: 25px;
4789
}
4790
 
4791
.ct-time span {
4792
    color: #b2b2b2;
4793
    font-size: 14px;
4794
}
4795
 
4796
.st-icons {
4797
    float: right;
4798
    margin-top: 7px;
4799
}
4800
 
4801
.st-icons a {
4802
    color: #fff;
4803
    font-size: 20px;
4804
    margin-right: 5px;
4805
}
4806
 
4807
.chat-hist {
4808
    float: left;
4809
    width: 100%;
4810
    background-color: #fff;
4811
    height: 280px;
4812
}
4813
 
4814
.chat-msg {
4815
    float: left;
4816
    width: 100%;
4817
    padding-right: 25px;
4818
    margin-bottom: 15px;
4819
}
4820
 
4821
.chat-msg p {
4822
    color: #ffffff;
4823
    font-size: 14px;
4824
    background-color: #e44d3a;
4825
    line-height: 18px;
4826
    -webkit-border-radius: 15px;
4827
    -moz-border-radius: 15px;
4828
    -ms-border-radius: 15px;
4829
    -o-border-radius: 15px;
4830
    border-radius: 15px;
4831
    padding: 10px 15px;
4832
    width: 80%;
4833
    float: right;
4834
    margin-bottom: 10px;
4835
}
4836
 
4837
.mg-3 {
4838
    margin-bottom: 3px;
4839
}
4840
 
4841
.chat-msg span {
4842
    float: right;
4843
    color: #b1b1b1;
4844
    width: 100%;
4845
    font-size: 9px;
4846
    text-align: right;
4847
}
4848
 
4849
.status-info {
4850
    width: 8px;
4851
    height: 8px;
4852
    background-color: #fff;
4853
    -webkit-border-radius: 100px;
4854
    -moz-border-radius: 100px;
4855
    -ms-border-radius: 100px;
4856
    -o-border-radius: 100px;
4857
    border-radius: 100px;
4858
    display: inline-block;
4859
    margin-left: 7px;
4860
}
4861
 
4862
.chat-user-info h3 {
4863
    margin-top: 7px;
4864
    margin-left: 10px;
4865
}
4866
 
4867
.date-nd {
4868
    float: left;
4869
    width: 100%;
4870
    text-align: center;
4871
    margin-bottom: 20px;
4872
    position: relative;
4873
}
4874
 
4875
.date-nd:before,
4876
.date-nd:after {
4877
    content: "";
4878
    position: absolute;
4879
    top: 10px;
4880
    left: 15px;
4881
    width: 92px;
4882
    height: 1px;
4883
    background-color: #e5e5e5;
4884
}
4885
 
4886
.date-nd:after {
4887
    left: auto;
4888
    right: 15px;
4889
}
4890
 
4891
.date-nd span {
4892
    color: #b1b1b1;
4893
    font-size: 12px;
4894
    text-align: center;
4895
}
4896
 
4897
.chat-msg.st2 p {
4898
    background-color: #efefef;
4899
    color: #686868;
4900
    float: left;
4901
    width: 55%;
4902
}
4903
 
4904
.chat-msg.st2 {
4905
    padding-left: 25px;
4906
}
4907
 
4908
.chat-msg.st2 span {
4909
    float: left;
4910
    text-align: left;
4911
}
4912
 
4913
/* =========== typing-msg =========== */
4914
 
4915
.typing-msg {
4916
    float: left;
4917
    width: 100%;
4918
    border-top: 1px solid #e6e6e6;
4919
    padding-top: 15px;
4920
}
4921
 
4922
.typing-msg form {
4923
    float: left;
4924
    width: 100%;
4925
    position: relative;
4926
}
4927
 
4928
.typing-msg form textarea {
4929
    width: 100%;
4930
    height: 30px;
4931
    background-color: #fff;
4932
    padding: 0 20px;
4933
    color: #b2b2b2;
4934
    font-size: 16px;
4935
    border: 0;
4936
    resize: none;
4937
}
4938
 
4939
.typing-msg form button {
4940
    color: #e44d3a;
4941
    font-size: 18px;
4942
    font-weight: 600;
4943
    position: absolute;
4944
    top: 2px;
4945
    right: 20px;
4946
    background: none;
4947
    border: 0;
4948
    cursor: pointer;
4949
}
4950
 
4951
.ft-options {
4952
    float: left;
4953
    width: 100%;
4954
    padding: 0 20px 8px 20px;
4955
}
4956
 
4957
.ft-options li {
4958
    display: inline-block;
4959
    margin-right: 15px;
4960
}
4961
 
4962
.ft-options li a {
4963
    color: #b2b2b2;
4964
    font-size: 24px;
4965
    display: inline-block;
4966
}
4967
 
4968
.mCSB_scrollTools {
4969
    right: -5px;
4970
}
4971
 
4972
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
4973
    background-color: #cccccc;
4974
    width: 5px;
4975
}
4976
 
4977
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
4978
    opacity: 0;
4979
}
4980
 
4981
/* ============ Menu Btn =============*/
4982
 
4983
.menu-btn {
4984
    float: right;
4985
    display: none;
4986
}
4987
 
4988
.menu-btn a {
4989
    font-size: 24px;
4990
    color: #fff;
4991
    display: inline-block;
4992
    padding-top: 16px;
4993
    padding-left: 20px;
4994
}
4995
 
4996
/* ============= account-tabs-setting ============ */
4997
 
4998
/* .profile-account-setting {} */
4999
 
5000
.account-tabs-setting {
5001
    float: left;
5002
    width: 100%;
5003
    padding: 70px 0;
5004
}
5005
 
5006
.acc-leftbar {
5007
    float: left;
5008
    width: 100%;
5009
    background-color: #fff;
5010
    border-left: 1px solid #e5e5e5;
5011
    border-bottom: 1px solid #e5e5e5;
5012
    border-right: 1px solid #e5e5e5;
5013
}
5014
 
5015
.acc-leftbar .nav-tabs>a {
5016
    float: left;
5017
    width: 100%;
5018
    background: none;
5019
    padding: 18px 20px;
5020
    border-bottom: 1px solid #e5e5e5;
5021
    border-left: 0;
5022
    border-right: 0;
5023
    color: #000000;
5024
    font-size: 16px;
5025
    font-weight: 500;
5026
    -webkit-border-radius: 0;
5027
    -moz-border-radius: 0;
5028
    -ms-border-radius: 0;
5029
    -o-border-radius: 0;
5030
    border-radius: 0;
5031
    border-top: 0;
5032
}
5033
 
5034
.nav-tabs {
5035
    border-bottom: 0;
5036
}
5037
 
5038
.acc-leftbar .nav-tabs>a:last-child {
5039
    border-bottom: 0;
5040
}
5041
 
5042
.acc-leftbar .nav-tabs>a i {
5043
    padding-right: 15px;
5044
    font-size: 20px;
5045
    position: relative;
5046
    top: 2px;
5047
    font-weight: 700;
5048
    width: 40px;
5049
}
5050
 
5051
.nav-tabs .nav-item.show .nav-link,
5052
.nav-tabs .nav-link.active {
5053
    background-color: inherit;
5054
    color: #e44d3a;
5055
    border-color: inherit;
5056
}
5057
 
5058
/* ============= acc-setting ============ */
5059
 
5060
.acc-setting {
5061
    float: left;
5062
    width: 100%;
5063
    background-color: #fff;
5064
    border-left: 1px solid #e5e5e5;
5065
    border-bottom: 1px solid #e5e5e5;
5066
    border-right: 1px solid #e5e5e5;
5067
    -webkit-box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5068
    -moz-box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5069
    -ms-box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5070
    -o-box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5071
    box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5072
}
5073
 
5074
.acc-setting form {
5075
    float: left;
5076
    width: 100%;
5077
}
5078
 
5079
.acc-setting>h3 {
5080
    width: 100%;
5081
    color: #000000;
5082
    font-weight: 600;
5083
    font-size: 18px;
5084
    text-transform: capitalize;
5085
    border-bottom: 1px solid #e5e5e5;
5086
    padding: 17px 20px;
5087
}
5088
 
5089
.notbar {
5090
    float: left;
5091
    width: 100%;
5092
    border-bottom: 1px solid #e5e5e5;
5093
    padding: 20px;
5094
    position: relative;
5095
}
5096
 
5097
.notbar h4 {
5098
    color: #000000;
5099
    font-size: 16px;
5100
    font-weight: 600;
5101
    margin-bottom: 5px;
5102
}
5103
 
5104
.notbar p {
5105
    color: #686868;
5106
    font-size: 14px;
5107
    line-height: 24px;
5108
    width: 75%;
5109
}
5110
 
5111
.toggle-btn {
5112
    position: absolute;
5113
    top: 35px;
5114
    right: 20px;
5115
}
5116
 
5117
.save-stngs {
5118
    float: left;
5119
    width: 100%;
5120
    padding: 30px 20px 50px 20px;
5121
}
5122
 
5123
.save-stngs.pd2 {
5124
    padding: 25px 20px 42px 20px;
5125
}
5126
 
5127
.save-stngs.pd3 {
5128
    padding: 25px 20px 25px 20px;
5129
}
5130
 
5131
.save-stngs ul li {
5132
    display: inline-block;
5133
    margin-right: 17px;
5134
}
5135
 
5136
.save-stngs ul li button {
5137
    display: inline-block;
5138
    color: #000000;
5139
    font-size: 16px;
5140
    border: 1px solid #e5e5e5;
5141
    height: 40px;
5142
    line-height: 40px;
5143
    padding: 0 22px;
5144
    font-weight: 600;
5145
    background: none;
5146
    cursor: pointer;
5147
}
5148
 
5149
.save-stngs ul li button:hover {
5150
    background-color: #e44d3a;
5151
    color: #fff;
5152
    border-color: transparent;
5153
}
5154
 
5155
/* =============== Password Update ============ */
5156
 
5157
.cp-field {
5158
    float: left;
5159
    width: 100%;
5160
    margin-top: 29.4px;
5161
    padding: 0 20px;
5162
}
5163
 
5164
.cp-field h5 {
5165
    color: #000000;
5166
    font-size: 16px;
5167
    font-weight: 600;
5168
    float: left;
5169
    width: 100%;
5170
    margin-bottom: 10px;
5171
}
5172
 
5173
.cp-field h5 a {
5174
    color: #000;
5175
}
5176
 
5177
.cpp-fiel {
5178
    float: left;
5179
    width: 100%;
5180
    position: relative;
5181
}
5182
 
5183
.cp-field input {
5184
    height: 40px;
5185
    padding: 0 40px;
5186
}
5187
 
5188
.cp-field input,
5189
.cp-field textarea {
5190
    width: 100%;
5191
    border: 1px solid #e5e5e5;
5192
}
5193
 
5194
.cp-field textarea {
5195
    padding: 20px;
5196
    height: 115px;
5197
}
5198
 
5199
.cpp-fiel i {
5200
    position: absolute;
5201
    top: 12px;
5202
    left: 15px;
5203
    color: #b2b2b2;
5204
    font-size: 16px;
5205
}
5206
 
5207
.cp-field>p {
5208
    /* float: left; width: 100%; color: #686868; font-size: 14px; line-height: 24px; margin-top: 5px; */
5209
}
5210
 
5211
/* =============== notifications-list ============= */
5212
 
5213
.notifications-list {
5214
    float: left;
5215
    width: 100%;
5216
}
5217
 
5218
.notfication-details {
5219
    float: left;
5220
    width: 100%;
5221
    padding: 20px;
5222
    border-bottom: 1px solid #e5e5e5;
5223
}
5224
 
5225
.notfication-details:last-child {
5226
    border-bottom: 0;
5227
}
5228
 
5229
.noty-user-img {
5230
    float: left;
5231
    width: 35px;
5232
}
5233
 
5234
.noty-user-img img {
5235
    width: 100%;
5236
}
5237
 
5238
.notification-info {
5239
    float: left;
5240
    width: auto;
5241
    padding-left: 10px;
5242
}
5243
 
5244
.notification-info h3 {
5245
    color: #686868;
5246
    font-size: 14px;
5247
    font-weight: 500;
5248
    border: 0;
5249
    padding: 0;
5250
    margin-bottom: 6px;
5251
}
5252
 
5253
.notification-info h3 a {
5254
    color: #000000;
5255
    font-size: 16px;
5256
    font-weight: 600;
5257
    display: inline-block;
5258
}
5259
 
5260
.notification-info>span {
5261
    display: inline-block;
5262
    color: #b2b2b2;
5263
    font-size: 12px;
5264
    font-weight: 600;
5265
}
5266
 
5267
/* ============== requests-list ============== */
5268
 
5269
.requests-list {
5270
    float: left;
5271
    width: 100%;
5272
    padding-bottom: 0;
5273
}
5274
 
5275
.request-details {
5276
    float: left;
5277
    width: 100%;
5278
    padding: 20px;
5279
    border-bottom: 1px solid #e5e5e5;
5280
}
5281
 
5282
.request-details:last-child {
5283
    border-bottom: 0;
5284
}
5285
 
5286
.request-info {
5287
    float: left;
5288
    padding-left: 10px;
5289
}
5290
 
5291
.request-info h3 {
5292
    color: #000000;
5293
    font-size: 14px;
5294
    font-weight: 600;
5295
    padding: 0;
5296
    border: 0;
5297
    margin-bottom: 3px;
5298
}
5299
 
5300
.request-info span {
5301
    color: #686868;
5302
    font-size: 12px;
5303
    display: inline-block;
5304
}
5305
 
5306
.accept-feat {
5307
    float: right;
5308
}
5309
 
5310
.accept-feat ul li {
5311
    display: inline-block;
5312
}
5313
 
5314
.accept-feat ul li button {
5315
    cursor: pointer;
5316
}
5317
 
5318
.accept-req {
5319
    color: #ffffff;
5320
    font-size: 16px;
5321
    background-color: #51a5fb;
5322
    height: 30px;
5323
    padding: 0 20px;
5324
    font-weight: 600;
5325
    border: 0;
5326
    border: 1px solid #51a5fb;
5327
}
5328
 
5329
.close-req {
5330
    height: 30px;
5331
    width: 30px;
5332
    text-align: center;
5333
    line-height: 30px;
5334
    border: 1px solid #e5e5e5;
5335
    background: inherit;
5336
    color: #b2b2b2;
5337
    margin-left: 7px;
5338
}
5339
 
5340
.close-req i {
5341
    font-weight: 600;
5342
}
5343
 
5344
/* ============= Profile Sattus =========== */
5345
 
5346
.profile-bx-details {
5347
    float: left;
5348
    width: 100%;
5349
    padding: 30px 7px 30px 7px;
5350
}
5351
 
5352
.profile-bx-details .row .col-lg-3 {
5353
    padding: 0 7px;
5354
}
5355
 
5356
.profile-bx-info {
5357
    float: left;
5358
    width: 100%;
5359
    background-color: #f2f2f2;
5360
    padding: 20px;
5361
    border: 1px solid #e5e5e5;
5362
}
5363
 
5364
.pro-bx {
5365
    float: left;
5366
    width: 100%;
5367
    border-bottom: 1px solid #e5e5e5;
5368
    padding-bottom: 10px;
5369
}
5370
 
5371
.bx-info {
5372
    float: left;
5373
    margin-top: 7px;
5374
    padding-left: 10px;
5375
}
5376
 
5377
.bx-info h3 {
5378
    color: #e44d3a;
5379
    font-size: 20px;
5380
    font-weight: 600;
5381
    margin-bottom: 5px;
5382
}
5383
 
5384
.bx-info h5 {
5385
    color: #000000;
5386
    font-size: 14px;
5387
    font-weight: 600;
5388
    margin: 0;
5389
    padding: 0;
5390
    border: 0;
5391
}
5392
 
5393
.pd-left-20 {
5394
    padding-left: 20px;
5395
    padding-right: 0;
5396
}
5397
 
5398
.pd-left-15 {
5399
    padding-left: 15px;
5400
    padding-right: 0;
5401
}
5402
 
5403
.pd-left-right {
5404
    padding-left: 15px;
5405
    padding-right: 20px;
5406
}
5407
 
5408
.profile-bx-info>p {
5409
    float: left;
5410
    width: 100%;
5411
    font-size: 14px;
5412
    line-height: 20px;
5413
    padding-top: 5px;
5414
}
5415
 
5416
/* =========== pro-work-status ========= */
5417
 
5418
.pro-work-status {
5419
    float: left;
5420
    width: 100%;
5421
    padding: 0 15px;
5422
}
5423
 
5424
.pro-work-status h4 {
5425
    color: #000000;
5426
    font-size: 18px;
5427
    font-weight: 600;
5428
    margin-bottom: 50px;
5429
}
5430
 
5431
/* ============== messages-page ============== */
5432
 
5433
.messages-page {
5434
    padding: 20px 0;
5435
}
5436
 
5437
.messages-sec {
5438
    width: 100%;
5439
    border-radius: 10px;
5440
    overflow: hidden;
1875 steven 5441
    background-color: transparent;
1239 steven 5442
}
5443
 
5444
.msgs-list {
5445
    width: 100%;
5446
}
5447
 
5448
.inmail_conversations-list {
5449
    border-right: 1px solid #3333;
5450
    padding-left: 0;
5451
    padding-right: 0;
5452
}
5453
 
5454
.msg-title {
5455
    padding: 20px;
5456
    border-bottom: 2px solid #3333;
5457
}
5458
 
1940 steven 5459
.active-tab{
5460
    border-bottom: solid 2px #E4E4E4;
5461
}
5462
 
1239 steven 5463
.msg-title>h3 {
5464
    color: #000000;
5465
    font-size: 18px;
5466
    font-weight: 600;
5467
}
5468
 
5469
.msg-title>ul {
5470
    float: right;
5471
    position: relative;
5472
    top: 1px;
5473
}
5474
 
5475
.msg-title ul li {
5476
    display: inline-block;
5477
    margin-right: 15px;
5478
    border-bottom: 1px solid #3333;
5479
}
5480
 
5481
.msg-title ul li:last-child {
5482
    margin-right: 0;
5483
}
5484
 
5485
.msg-title ul li a {
5486
    color: #b2b2b2;
5487
    font-size: 18px;
5488
}
5489
 
5490
.messages-list {
5491
    float: left;
5492
    width: 100%;
5493
}
5494
 
5495
.messages-list ul {
5496
    float: left;
5497
    width: 100%;
5498
}
5499
 
5500
.messages-list ul li {
5501
    float: left;
5502
    width: 100%;
1949 steven 5503
    padding: 3%;
1239 steven 5504
    border-bottom: 1px solid #eeeeee;
5505
    cursor: pointer;
5506
}
5507
 
2124 steven 5508
 
1239 steven 5509
.messages-list ul li.active {
5510
    background-color: #efefef;
5511
}
5512
 
5513
.usr-msg-details {
5514
    float: left;
5515
    position: relative;
5516
    width: 100%;
1871 steven 5517
    border-bottom: solid 1px var(--border-light-gray);
5518
    padding-bottom: 3%;
1239 steven 5519
}
5520
 
5521
.usr-ms-img {
5522
    float: left;
5523
    width: 50px;
5524
    position: relative;
5525
}
5526
 
5527
.msg-status {
5528
    -webkit-border-radius: 100px;
5529
    -moz-border-radius: 100px;
5530
    -ms-border-radius: 100px;
5531
    -o-border-radius: 100px;
5532
    border-radius: 100px;
5533
    background-color: #e44d3a;
5534
    position: absolute;
5535
    top: -3px;
5536
    right: 0;
5537
    width: 6px;
5538
    height: 6px;
5539
}
5540
 
5541
.messages-list ul li.active .msg-status {
5542
    border: 2px solid #ecf5fb;
5543
    height: 10px;
5544
    width: 10px;
5545
}
5546
 
5547
.msg-notifc {
5548
    position: absolute;
1872 steven 5549
    /* bottom: 0;
5550
    right: 0; */
1239 steven 5551
    width: 25px;
5552
    height: 25px;
5553
    -webkit-border-radius: 100px;
5554
    -moz-border-radius: 100px;
5555
    -ms-border-radius: 100px;
5556
    -o-border-radius: 100px;
5557
    border-radius: 100px;
5558
    background-color: #e77667;
5559
    text-align: center;
5560
    line-height: 25px;
5561
    font-size: 13px;
5562
    color: #fff;
5563
}
5564
 
5565
.usr-ms-img img {
5566
    width: 100%;
5567
    -webkit-border-radius: 100px;
5568
    -moz-border-radius: 100px;
5569
    -ms-border-radius: 100px;
5570
    -o-border-radius: 100px;
5571
    border-radius: 100px;
5572
}
5573
 
5574
.usr-mg-info {
5575
    float: left;
5576
    padding-left: 13px;
5577
    margin-top: 4px;
5578
}
5579
 
5580
.usr-mg-info h3 {
5581
    color: #000000;
5582
    font-size: 18px;
5583
    font-weight: 600;
5584
}
5585
 
5586
.usr-mg-info p {
5587
    color: #686868;
5588
    font-size: 16px;
5589
}
5590
 
5591
.usr-mg-info p img {
5592
    float: right;
5593
    position: relative;
5594
    top: 5px;
5595
    padding-left: 5px;
5596
}
5597
 
5598
.posted_time {
5599
    position: absolute;
5600
    top: 2px;
5601
    right: 0;
5602
    color: #b2b2b2;
5603
    font-size: 14px;
5604
}
5605
 
5606
/* =============== main-message-box ============= */
5607
 
5608
.main-conversation-box {
5609
    width: 100%;
5610
    background-color: #fff;
5611
    position: relative;
5612
    height: 100%;
5613
}
5614
 
5615
.message-bar-head {
5616
    height: 13vh;
5617
    width: 100%;
5618
    padding: 20px;
1880 steven 5619
    border-bottom: 1px solid var(--border-light-gray);
1239 steven 5620
}
5621
 
5622
.message-bar-head .usr-msg-details {
5623
    width: auto;
5624
}
5625
 
5626
.message-bar-head>a {
5627
    float: right;
5628
    color: #b2b2b2;
5629
    font-size: 20px;
5630
    padding-top: 15px;
5631
}
5632
 
5633
.main-message-box {
5634
    display: flex;
5635
    width: 100%;
5636
    position: relative;
5637
    margin-bottom: 15.5px;
5638
}
5639
 
5640
.messg-usr-img {
5641
    margin-left: 20px;
5642
    width: 50px;
5643
}
5644
 
5645
.messg-usr-img img {
5646
    width: 100%;
5647
    -webkit-border-radius: 100px;
5648
    -moz-border-radius: 100px;
5649
    -ms-border-radius: 100px;
5650
    -o-border-radius: 100px;
5651
    border-radius: 100px;
5652
}
5653
 
5654
.message-dt {
5655
    width: auto;
5656
    margin-left: 15px;
5657
}
5658
 
5659
.main-message-box.ta-right {
5660
    flex-direction: row-reverse;
5661
}
5662
 
5663
.main-message-box.ta-right .messg-usr-img {
5664
    margin-left: 0;
5665
    margin-right: 20px;
5666
}
5667
 
5668
.main-message-box.ta-right .message-dt {
5669
    margin-right: 15px;
5670
}
5671
 
5672
.main-message-box.ta-right .message-dt>span {
5673
    float: right;
5674
    width: auto;
5675
}
5676
 
5677
.message-inner-dt {
5678
    -webkit-border-radius: 15px;
5679
    -moz-border-radius: 15px;
5680
    -ms-border-radius: 15px;
5681
    -o-border-radius: 15px;
5682
    border-radius: 15px;
5683
    width: 100%;
5684
    border-bottom-left-radius: 0;
5685
}
5686
 
5687
.img-bx {
5688
    background-color: #efefef;
5689
    padding: 20px;
5690
}
5691
 
5692
.message-inner-dt>img {
5693
    display: inline-block;
5694
    width: auto;
5695
    margin-right: 5px;
5696
}
5697
 
5698
.message-dt>span {
5699
    color: #b2b2b2;
5700
    font-size: 14px;
5701
    float: left;
5702
    width: 100%;
5703
    margin-top: 7px;
5704
}
5705
 
5706
.message-inner-dt>p {
5707
    font-size: 14px;
5708
    line-height: 22px;
5709
    padding: 2px 10px;
5710
    color: #000;
5711
    -webkit-border-radius: 15px;
5712
    -moz-border-radius: 15px;
5713
    -ms-border-radius: 15px;
5714
    -o-border-radius: 15px;
5715
    border-radius: 15px;
5716
}
5717
 
5718
.message-dt.st3 .message-inner-dt>p {
5719
    background-color: #efefef;
5720
    color: #686868;
5721
    width: auto;
5722
    padding: 10px 15px;
5723
    float: left;
5724
}
5725
 
5726
.message-dt.st3 .message-inner-dt>p img {
5727
    float: right;
5728
    position: relative;
5729
    top: 3px;
5730
    padding-left: 5px;
5731
}
5732
 
5733
.main-message-box.st3 .messg-usr-img {
5734
    bottom: 13px;
5735
}
5736
 
5737
.messages-line {
5738
    width: 100%;
5739
    height: 604px;
5740
    padding-top: 20px;
5741
}
5742
 
5743
/* ============== message-send-area ============ */
5744
 
5745
.message-send-area {
5746
    width: 100%;
5747
    background-color: #f3f5f7;
5748
    padding: 20px;
2040 steven 5749
    /* position: absolute; */
1876 steven 5750
    bottom: 0;
1239 steven 5751
}
1879 steven 5752
.inmail-submit-btn{
5753
    width: 6%;
5754
}
1239 steven 5755
 
5756
.message-send-area form {
5757
    width: 100%;
5758
}
5759
 
5760
.mf-field {
5761
    width: 100%;
5762
    display: flex;
5763
}
5764
 
5765
.mf-field input {
5766
    flex: 1;
5767
    background-color: #fff;
5768
    color: #b2b2b2;
5769
    font-size: 16px;
5770
    padding: 0 15px;
5771
    border: 1px solid #e6e6e6;
5772
    height: 45px;
5773
    border-radius: 25px;
5774
}
5775
 
5776
 
5777
.message-send-area form>ul {
5778
    float: left;
5779
    width: 100%;
5780
    margin-top: 15px;
5781
}
5782
 
5783
.message-send-area form>ul li {
5784
    display: inline-block;
5785
    margin-right: 20px;
5786
}
5787
 
5788
.message-send-area form>ul li a {
5789
    color: #b2b2b2;
5790
    font-size: 18px;
5791
}
5792
 
5793
/* ============== forum-links ============= */
5794
 
5795
.forum-sec {
5796
    background-color: #fff;
5797
}
5798
 
5799
.forum-links {
5800
    float: left;
5801
    width: 100%;
5802
}
5803
 
5804
.forum-links.active {
5805
    opacity: 1;
5806
    visibility: visible;
5807
    z-index: 9999;
5808
}
5809
 
5810
.forum-links ul li {
5811
    display: inline-block;
5812
    padding: 20px 0;
5813
    margin-right: 45px;
5814
    border-bottom: 2px solid transparent;
5815
}
5816
 
5817
.forum-links ul li.active {
5818
    border-color: #e44d3a;
5819
}
5820
 
5821
.forum-links ul li.active a {
5822
    color: #e44d3a;
5823
}
5824
 
5825
.forum-links ul li a {
5826
    display: inline-block;
5827
    color: #b2b2b2;
5828
    font-size: 14px;
5829
    font-weight: 600;
5830
}
5831
 
5832
.forum-links-btn {
5833
    float: left;
5834
    width: 100%;
5835
    text-align: center;
5836
    display: none;
5837
    padding: 20px 0;
5838
}
5839
 
5840
.forum-links-btn a {
5841
    color: #000;
5842
    font-size: 30px;
5843
    display: inline-block;
5844
}
5845
 
5846
/* ================ forum-page =============== */
5847
 
5848
.forum-page {
5849
    padding: 50px 0;
5850
}
5851
 
5852
.forum-questions-sec {
5853
    float: left;
5854
    width: 100%;
5855
}
5856
 
5857
.forum-questions {
5858
    float: left;
5859
    width: 100%;
5860
    background-color: #fff;
5861
}
5862
 
5863
.usr-question {
5864
    float: left;
5865
    width: 100%;
5866
    position: relative;
5867
    padding: 25px;
5868
    border-bottom: 1px solid #e5e5e5;
5869
}
5870
 
5871
.usr_img {
5872
    float: left;
5873
    width: 60px;
5874
}
5875
 
5876
.usr_img img {
5877
    width: 100%;
5878
    -webkit-border-radius: 100px;
5879
    -moz-border-radius: 100px;
5880
    -ms-border-radius: 100px;
5881
    -o-border-radius: 100px;
5882
    border-radius: 100px;
5883
}
5884
 
5885
.usr_quest {
5886
    float: left;
5887
    width: 90%;
5888
    padding-left: 15px;
5889
}
5890
 
5891
.usr_quest>h3 {
5892
    color: #000000;
5893
    font-size: 17px;
5894
    font-weight: 600;
5895
    margin-bottom: 20px;
5896
}
5897
 
5898
.forum-post-view .usr_quest>h3 {
5899
    margin-bottom: 10px;
5900
}
5901
 
5902
.react-links {
5903
    float: left;
5904
    width: 100%;
5905
}
5906
 
5907
.react-links li {
5908
    display: inline-block;
5909
    margin-right: 30px;
5910
}
5911
 
5912
.react-links li a {
5913
    display: inline-block;
5914
    color: #b2b2b2;
5915
    font-size: 14px;
5916
    font-weight: 600;
5917
}
5918
 
5919
.react-links li a:hover {
5920
    color: #e44d3a;
5921
}
5922
 
5923
.react-links li a i {
5924
    padding-right: 7px;
5925
}
5926
 
5927
.react-links li:last-child {
5928
    margin-right: 0;
5929
}
5930
 
5931
/* ============= quest-tags ============ */
5932
 
5933
.quest-tags {
5934
    float: left;
5935
    width: 100%;
5936
    margin-top: 20px;
5937
}
5938
 
5939
.quest-tags li {
5940
    display: inline-block;
5941
    margin-right: 10px;
5942
}
5943
 
5944
.quest-tags li a {
5945
    display: inline-block;
5946
    color: #ffffff;
5947
    background-color: #53d690;
5948
    -webkit-border-radius: 3px;
5949
    -moz-border-radius: 3px;
5950
    -ms-border-radius: 3px;
5951
    -o-border-radius: 3px;
5952
    border-radius: 3px;
5953
    padding: 7px 25px;
5954
}
5955
 
5956
.quest-posted-time {
5957
    position: absolute;
5958
    bottom: 30px;
5959
    right: 20px;
5960
    color: #b2b2b2;
5961
    font-size: 14px;
5962
}
5963
 
5964
.quest-posted-time i {
5965
    padding-right: 5px;
5966
}
5967
 
5968
.pd-right-none {
5969
    padding-right: 0;
5970
}
5971
 
5972
/* =========== navigation ============ */
5973
 
5974
.pagination {
5975
    float: left;
5976
    width: 100%;
5977
    /* background-color: #fff; */
5978
    padding: 13px 25px;
5979
}
5980
 
5981
.full-pagi {
5982
    float: left;
5983
    width: 100%;
5984
    padding-right: 0;
5985
    text-align: inherit;
5986
    margin-top: 20px;
5987
}
5988
 
5989
.pagination li {
5990
    padding: 0;
5991
    margin-right: 10px;
5992
}
5993
 
5994
.pagination li .page-link {
5995
    /* background-color: #e5e5e5; */
5996
    color: #b2b2b2;
5997
}
5998
 
5999
.pagination li .page-link.active {
6000
    background-color: #e44d3a;
6001
    color: #fff;
6002
    border-color: transparent;
6003
}
6004
 
6005
.pvr {
6006
    padding: 0.5rem 30px;
6007
}
6008
 
6009
/* ============ User Widget =========== */
6010
 
6011
.title-wd {
6012
    float: left;
6013
    width: 100%;
6014
    color: #000000;
6015
    font-size: 18px;
6016
    font-weight: 600;
6017
    border-bottom: 1px solid #e5e5e5;
6018
    padding: 25px 20px;
6019
}
6020
 
6021
.widget-user ul {
6022
    float: left;
6023
    width: 100%;
6024
    padding: 15px 0;
6025
}
6026
 
6027
.widget-user ul li {
6028
    float: left;
6029
    width: 100%;
6030
    padding: 15px 20px;
6031
}
6032
 
6033
.widget-user ul li .usr-msg-details {
6034
    float: left;
6035
    width: auto;
6036
}
6037
 
6038
.widget-user ul li .usr-ms-img {
6039
    width: 35px;
6040
}
6041
 
6042
.widget-user ul li .usr-mg-info h3 {
6043
    font-size: 14px;
6044
}
6045
 
6046
.widget-user ul li .usr-mg-info p {
6047
    font-size: 12px;
6048
}
6049
 
6050
.widget-user ul li>span {
6051
    color: #686868;
6052
    font-size: 16px;
6053
    float: right;
6054
    margin-top: 10px;
6055
}
6056
 
6057
.widget-user ul li>span img {
6058
    padding-right: 5px;
6059
}
6060
 
6061
/* ============== widget-adver ============ */
6062
 
6063
.widget-adver img {
6064
    width: 100%;
6065
}
6066
 
6067
/* ============ forum-post-view ============ */
6068
 
6069
.forum-post-view {
6070
    float: left;
6071
    width: 100%;
6072
    background-color: #fff;
6073
    padding: 25px 25px 0 25px;
6074
    border-bottom: 1px solid #e5e5e5;
6075
}
6076
 
6077
.forum-post-view .usr-question {
6078
    border-bottom: 0;
6079
    padding: 0;
6080
}
6081
 
6082
.forum-post-view .usr_quest span {
6083
    color: #b2b2b2;
6084
    font-size: 14px;
6085
    display: inline-block;
6086
    margin-bottom: 20px;
6087
}
6088
 
6089
.forum-post-view .usr_quest span i {
6090
    padding-right: 7px;
6091
}
6092
 
6093
.forum-post-view .quest-tags {
6094
    margin-bottom: 30px;
6095
}
6096
 
6097
.forum-post-view .usr_quest>p {
6098
    float: left;
6099
    width: 100%;
6100
    color: #686868;
6101
    font-size: 14px;
6102
    line-height: 24px;
6103
    margin-bottom: 40px;
6104
}
6105
 
6106
.forum-post-view .comment-section {
6107
    padding: 0;
6108
}
6109
 
6110
.forum-post-view .comment-section>h3 {
6111
    float: left;
6112
    width: 100%;
6113
    color: #000000;
6114
    font-size: 18px;
6115
    font-weight: 600;
6116
    border-bottom: 1px solid #e5e5e5;
6117
    padding-bottom: 15px;
6118
}
6119
 
6120
.forum-post-view .comment-sec ul li {
6121
    border-bottom: 1px solid #e5e5e5;
6122
    padding: 23px 0;
6123
}
6124
 
6125
.forum-post-view .comment span {
6126
    margin-bottom: 10px;
6127
}
6128
 
6129
.forum-post-view .comment-list {
6130
    padding-bottom: 0;
6131
    margin-bottom: -4px;
6132
}
6133
 
6134
.forum-post-view .comment p {
6135
    margin: 0;
6136
    margin-top: 5px;
6137
}
6138
 
6139
.forum-post-view .comment h3 {
6140
    margin-bottom: 9px;
6141
}
6142
 
6143
.forum-post-view .comment-sec ul li:last-child {
6144
    border-bottom: 0;
6145
}
6146
 
6147
/* =============== post-comment-box ============= */
6148
 
6149
.post-comment-box {
6150
    float: left;
6151
    width: 100%;
6152
    padding: 20px;
6153
    background-color: #fff;
6154
}
6155
 
6156
.post-comment-box h3 {
6157
    float: left;
6158
    width: 100%;
6159
    color: #000000;
6160
    font-size: 18px;
6161
    font-weight: 600;
6162
    margin-bottom: 30px;
6163
}
6164
 
6165
.user-poster {
6166
    float: left;
6167
    width: 100%;
6168
}
6169
 
6170
.usr-post-img {
6171
    float: left;
6172
    width: 50px;
6173
    margin-right: 15px;
6174
}
6175
 
6176
.usr-post-img img {
6177
    width: 100%;
6178
    -webkit-border-radius: 100px;
6179
    -moz-border-radius: 100px;
6180
    -ms-border-radius: 100px;
6181
    -o-border-radius: 100px;
6182
    border-radius: 100px;
6183
}
6184
 
6185
.post_comment_sec {
6186
    float: left;
6187
    width: 90%;
6188
}
6189
 
6190
.post_comment_sec form {
6191
    float: left;
6192
    width: 100%;
6193
}
6194
 
6195
.post_comment_sec form textarea {
6196
    float: left;
6197
    width: 100%;
6198
    height: 130px;
6199
    border: 1px solid #dce2eb;
6200
    padding: 15px;
6201
    resize: none;
6202
}
6203
 
6204
.post_comment_sec form button {
6205
    color: #ffffff;
6206
    font-size: 14px;
6207
    background-color: #e44d3a;
6208
    padding: 10px 25px;
6209
    border: 0;
6210
    font-weight: 600;
6211
    margin-top: 20px;
6212
    cursor: pointer;
6213
}
6214
 
6215
/* ======== next-prev ========*/
6216
 
6217
.next-prev {
6218
    float: left;
6219
    width: 100%;
6220
    background-color: #fff;
6221
    margin-top: 20px;
6222
    padding: 12px 25px;
6223
}
6224
 
6225
.next-prev>a {
6226
    width: 90px;
6227
    height: 35px;
6228
    text-align: center;
6229
    line-height: 35px;
6230
    color: #b2b2b2;
6231
    font-size: 14px;
6232
    background-color: #e5e5e5;
6233
}
6234
 
6235
.next-prev>a:hover {
6236
    color: #fff;
6237
    background-color: #e44d3a;
6238
}
6239
 
6240
.fl-left {
6241
    float: left;
6242
}
6243
 
6244
.fl-right {
6245
    float: right;
6246
}
6247
 
6248
/* ========== widget-feat ========= */
6249
 
6250
.widget-feat {
6251
    padding: 25px 20px;
6252
}
6253
 
6254
.widget-feat ul {
6255
    float: left;
6256
    width: 100%;
6257
}
6258
 
6259
.widget-feat ul li {
6260
    float: left;
6261
    width: 25%;
6262
    text-align: center;
6263
}
6264
 
6265
.widget-feat ul li i {
6266
    display: block;
6267
    font-size: 18px;
6268
    margin-bottom: 9px;
6269
}
6270
 
6271
.widget-feat ul li span {
6272
    display: block;
6273
    color: #686868;
6274
    font-size: 16px;
6275
    font-weight: 500;
6276
}
6277
 
6278
.widget-feat ul li i.fa-heart {
6279
    color: #53d690;
6280
}
6281
 
6282
.widget-feat ul li i.fa-comment {
6283
    color: #e44d3a;
6284
}
6285
 
6286
.widget-feat ul li i.fa-share-alt {
6287
    color: #51a5fb;
6288
}
6289
 
6290
.widget-feat ul li i.fa-eye {
6291
    color: #00b540;
6292
}
6293
 
6294
/* =============== ANIMATION LOADER =============== */
6295
 
6296
.spinner {
6297
    margin: 0 auto 0;
6298
    width: 80px;
6299
    text-align: center;
6300
    height: 80px;
6301
    border-radius: 100px;
6302
    background-color: #fff;
6303
    line-height: 80px;
6304
    border: 1px solid #e1e1e1;
6305
    cursor: pointer;
6306
}
6307
 
6308
.spinner>div {
6309
    width: 15px;
6310
    height: 15px;
6311
    background-color: #b9b9b9;
6312
    border-radius: 100%;
6313
    display: inline-block;
6314
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
6315
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
6316
}
6317
 
6318
.spinner .bounce1 {
6319
    -webkit-animation-delay: -0.32s;
6320
    animation-delay: -0.32s;
6321
}
6322
 
6323
.spinner .bounce2 {
6324
    -webkit-animation-delay: -0.16s;
6325
    animation-delay: -0.16s;
6326
}
6327
 
6328
@-webkit-keyframes sk-bouncedelay {
6329
    0%,
6330
    80%,
6331
    100% {
6332
        -webkit-transform: scale(0);
6333
    }
6334
    40% {
6335
        -webkit-transform: scale(1);
6336
    }
6337
}
6338
 
6339
@keyframes sk-bouncedelay {
6340
    0%,
6341
    80%,
6342
    100% {
6343
        -webkit-transform: scale(0);
6344
        transform: scale(0);
6345
    }
6346
    40% {
6347
        -webkit-transform: scale(1);
6348
        transform: scale(1);
6349
    }
6350
}
6351
 
6352
.wordpressdevlp {
6353
    background-color: #fff;
6354
}
6355
 
6356
.bgclr {
6357
    background-color: #fff;
6358
    margin-bottom: 15px;
6359
}
6360
 
6361
.cadidatesbtn {
6362
    position: absolute;
6363
    left: 0;
6364
    padding-top: 5px;
6365
}
6366
 
6367
.cadidatesbtn button {
6368
    background-color: #e44d3a;
6369
    border: none;
6370
    margin-top: -3px;
6371
}
6372
 
6373
.cadidatesbtn button:hover {
6374
    background-color: #e44d3a;
6375
}
6376
 
6377
.cadidatesbtn span {
6378
    background-color: #bd2e1c;
6379
    color: #fff;
6380
    margin-right: 10px;
6381
    padding: 0.25em 0.5em;
6382
    font-weight: 600;
6383
    font-size: 12px;
6384
}
6385
 
6386
.wordpressdevlp i {
6387
    color: #e86554;
6388
    font-size: 18px;
6389
    font-weight: bold;
6390
    padding-right: 5px;
6391
}
6392
 
6393
.wordpressdevlp h2 {
6394
    font-size: 18px;
6395
    font-weight: 600;
6396
}
6397
 
6398
.cadidatesbtn i {
6399
    color: #b2b2b2;
6400
    border: 1px solid #b2b2b2;
6401
    font-size: 14px;
6402
    text-align: center;
6403
    margin-left: 7px;
6404
    border-radius: 3px;
6405
    padding: 10px;
6406
}
6407
 
6408
.cadidatesbtn i:hover {
6409
    background-color: #e44d3a;
6410
    color: #fff;
6411
    border: 1px solid #e44d3a;
6412
}
6413
 
6414
.inner {
6415
    border-bottom: 2px solid #e5e5e5;
6416
    padding-bottom: 10px;
6417
}
6418
 
6419
.inner li a:hover {
6420
    color: #e44d3a;
6421
    border-bottom: 2px solid #e44d3a;
6422
    padding-bottom: 9px;
6423
}
6424
 
6425
.inner li a {
6426
    color: #000000;
6427
}
6428
 
6429
.posttext {
6430
    position: absolute;
6431
    left: 0;
6432
}
6433
 
6434
.deatile h3 {
6435
    font-size: 14px;
6436
    font-weight: bold;
6437
    padding-bottom: 5px;
6438
}
6439
 
6440
.clrbtn a {
6441
    background-color: #e44d3a;
6442
    color: #fff;
6443
    padding: 5px 10px 5px 10px;
6444
    margin-right: 15px;
6445
}
6446
 
6447
.transpairentbtn a {
6448
    color: #222;
6449
    border: 2px solid #f1f1f1;
6450
    padding: 5px 10px 5px 10px;
6451
}
6452
 
6453
.savetext h3 {
6454
    font-size: 14px;
6455
    font-weight: bold;
6456
    padding-bottom: 5px;
6457
}
6458
 
6459
.devepbtn .clrbtn {
6460
    padding: 7px 20px;
6461
}
6462
 
6463
.devepbtn a {
6464
    color: #666666;
6465
    border: 1px solid #b2b2b2;
6466
    padding: 7px 10px 7px 10px;
6467
    border-radius: 3px;
6468
    margin-right: 5px;
6469
}
6470
 
6471
.devepbtn a:hover i {
6472
    color: #fff;
6473
}
6474
 
6475
.devepbtn a:hover {
6476
    background-color: #e44d3a;
6477
    color: #fff;
6478
}
6479
 
6480
.rew-reply hr {
6481
    margin-left: -20px;
6482
    margin-right: -20px;
6483
}
6484
 
6485
.rew-reply p {
6486
    padding-left: 20px;
6487
}
6488
 
6489
.rew-reply ul {
6490
    padding-left: 20px;
6491
}
6492
 
6493
.devepbtn {
6494
    margin-top: 30px;
6495
    padding-left: 20px;
6496
}
6497
 
6498
.rep-thanks hr {
6499
    margin-right: -20px;
6500
    margin-left: -20px;
6501
}
6502
 
6503
.profilecnd {
6504
    margin-bottom: 0px;
6505
}
6506
 
6507
.devepbtn i {
6508
    color: #b2b2b2;
6509
    font-size: 14px;
6510
}
6511
 
6512
.appliedinfo {
6513
    padding-left: 0;
6514
    padding-top: 20px !important;
6515
    padding-bottom: 10px;
6516
}
6517
 
6518
.epi2 {
6519
    padding: 0;
6520
}
6521
 
6522
.review a {
6523
    line-height: 16px;
6524
    font-size: 14px;
6525
    text-decoration: none;
6526
    font-weight: 500;
6527
    margin-left: 15px;
6528
}
6529
 
6530
.add-pic-box {
6531
    display: inline-block;
6532
    color: #e44d3a;
6533
    font-size: 16px;
6534
    position: absolute;
6535
    top: 30px;
6536
    right: 0;
6537
    font-weight: 600;
6538
    margin-right: 0;
6539
    width: 100%;
6540
}
6541
 
6542
.add-pic-box [type="file"] {
6543
    height: 0;
6544
    overflow: hidden;
6545
    width: 0;
6546
    float: left;
6547
}
6548
 
6549
.add-pic-box [type="file"]+label {
6550
    background: #fff;
6551
    border: 2px solid #e44d3a;
6552
    border-radius: 3px;
6553
    color: #e44d3a;
6554
    cursor: pointer;
6555
    /* display: inline-block; */
6556
    font-size: 15px;
6557
    font-weight: 600;
6558
    outline: none;
6559
    padding: 12px 20px;
6560
    position: relative;
6561
    transition: all 0.3s;
6562
    vertical-align: middle;
6563
    margin: 0;
6564
    float: right;
6565
    text-transform: uppercase;
6566
}
6567
 
6568
.add-pic-box [type="file"]+label:hover {
6569
    background: #e44d3a;
6570
    color: #fff;
6571
}
6572
 
6573
.noreview li i {
6574
    color: #b2b2b2;
6575
}
6576
 
6577
.review-tb {
6578
    margin: 0 0 10px;
6579
    padding-left: 20px;
6580
}
6581
 
6582
.noreview ul li i {
6583
    color: #b2b2b2;
6584
}
6585
 
6586
.mngdetl {
6587
    border-bottom: none;
6588
}
6589
 
6590
.post-reply {
6591
    padding-top: 0;
6592
    padding-bottom: 0;
6593
}
6594
 
6595
.activebidbtn i:hover {
6596
    background-color: #e44d3a;
6597
    color: #fff;
6598
    border: none;
6599
}
6600
 
6601
.reviewtitle h2 {
6602
    font-size: 17px;
6603
    font-weight: 600;
6604
}
6605
 
6606
.horiline {
6607
    width: 118%;
6608
    position: relative;
6609
    left: -40px;
6610
}
6611
 
6612
.tahnks {
6613
    font-weight: 500;
6614
    margin-top: 5px;
6615
}
6616
 
6617
/*about-page*/
6618
 
6619
.banner span {
6620
    position: absolute;
6621
    display: flex;
6622
    background-color: #222;
6623
    width: 100%;
6624
    opacity: 0.9;
6625
    justify-content: center;
6626
    padding: 10px;
6627
    margin-top: 0;
6628
    color: #fff;
6629
}
6630
 
6631
.innertitle {
6632
    margin-top: 130px;
6633
}
6634
 
6635
.Company-overview {
6636
    padding-bottom: 50px;
6637
}
6638
 
6639
.bennertext {
6640
    position: absolute;
6641
    left: 20%;
6642
    right: 20%;
6643
    text-align: center;
6644
}
6645
 
6646
.bannerimage img {
6647
    height: 100%;
6648
}
6649
 
6650
.innertitle h2 {
6651
    color: #fff;
6652
    font-size: 30px;
6653
    line-height: 32px;
6654
    font-weight: 600;
6655
    margin-bottom: 20px;
6656
}
6657
 
6658
.innertitle p {
6659
    color: #fff;
6660
    font-size: 16px;
6661
}
6662
 
6663
.Company-overview h2 {
6664
    padding-top: 100px;
6665
    font-size: 24px;
6666
    font-weight: 600;
6667
    padding-bottom: 12px;
6668
}
6669
 
6670
.Company-overview p {
6671
    font-size: 15px;
6672
    font-weight: 500;
6673
}
6674
 
6675
.Company-overview img {
6676
    float: right;
6677
    padding-top: 25px;
6678
}
6679
 
6680
.blog {
6681
    text-align: center;
6682
    display: inline-block;
6683
    margin-bottom: 50px;
6684
}
6685
 
6686
.blog img {
6687
    padding-bottom: 30px;
6688
}
6689
 
6690
.blog h2 {
6691
    font-size: 18px;
6692
    font-weight: 600;
6693
    padding-bottom: 30px;
6694
}
6695
 
6696
.blog a {
6697
    background-color: #ff4500;
6698
    color: #fff;
6699
    padding: 7px 25px 7px 25px;
6700
    border-radius: 3px;
6701
    font-size: 16px;
6702
    font-weight: 500;
6703
}
6704
 
6705
.services {
6706
    padding-top: 80px;
6707
    padding-bottom: 80px;
6708
}
6709
 
6710
.video {
6711
    padding-bottom: 40px;
6712
}
6713
 
6714
.search-container {
6715
    text-align: center;
6716
}
6717
 
6718
.search-container input[type="text"] {
6719
    padding: 6px 15px;
6720
    margin-top: 8px;
6721
    font-size: 17px;
6722
    border: none;
6723
    height: 50px;
6724
    width: 50%;
6725
    margin-bottom: 25px;
6726
    border-top-left-radius: 3px;
6727
    border-top-right-radius: 0px;
6728
    border-bottom-left-radius: 3px;
6729
    border-bottom-right-radius: 0px;
6730
}
6731
 
6732
.searchtitle {
6733
    text-align: center;
6734
}
6735
 
6736
.searchtitle h2 {
6737
    color: #fff;
6738
    font-size: 30px;
6739
    font-weight: 400;
6740
    padding-bottom: 10px;
6741
}
6742
 
6743
.modal-header {
6744
    position: relative;
6745
}
6746
 
6747
.modal-header h3 {
6748
    font-size: 18px;
6749
}
6750
 
6751
.search-container button {
6752
    padding: 8px 10px;
6753
    text-align: center;
6754
    margin-top: 8px;
6755
    margin-left: -3px;
6756
    margin-right: 18px;
6757
    background: #efefef;
6758
    font-size: 17px;
6759
    border: none;
6760
    cursor: pointer;
6761
    height: 50px;
6762
    width: 6%;
6763
    border-bottom-right-radius: 3px;
6764
    border-top-right-radius: 3px;
6765
}
6766
 
6767
.topsearch i {
6768
    color: #e44d3a;
6769
}
6770
 
6771
.dropdown-toggle::after {
6772
    position: absolute;
6773
    right: 15px;
6774
    color: #b2b2b2;
6775
    top: 7px;
6776
}
6777
 
6778
.help-paddy {
6779
    padding: 0 !important;
6780
}
6781
 
6782
.paddy {
6783
    padding: 20px;
6784
    float: left;
6785
}
6786
 
6787
.dropdown-menu {
6788
    position: absolute;
6789
    top: 100%;
6790
    left: 0;
6791
    z-index: 1000;
6792
    display: none;
6793
    float: left;
6794
    min-width: 10rem;
6795
    padding: 0.5rem 0;
6796
    margin: 0.125rem 0 0;
6797
    font-size: 1rem;
6798
    color: #212529;
6799
    text-align: left;
6800
    list-style: none;
6801
    background-color: #fff;
6802
    width: 100%;
6803
    background-clip: padding-box;
6804
    border: none;
6805
    border-radius: 0.25rem;
6806
}
6807
 
6808
.radio-form p {
6809
    display: -webkit-inline-box;
6810
}
6811
 
6812
.dropdown a {
6813
    color: #000000;
6814
    font-size: 16px;
6815
    font-weight: 400;
6816
    padding: 0 20px;
6817
}
6818
 
6819
.accountnone {
6820
    border: none;
6821
}
6822
 
6823
.helpforum {
6824
    background-color: #fff;
6825
    padding: 15px 0;
6826
    box-shadow: 0px 2px #c6c6c6;
6827
}
6828
 
6829
.helpforum h3 {
6830
    font-size: 18px;
6831
    font-weight: 600;
6832
}
6833
 
6834
.helpforum a {
6835
    background-color: #e44d3a;
6836
    color: #fff;
6837
    padding: 10px 15px 10px 15px;
6838
    line-height: 4;
6839
    border-radius: 3px;
6840
}
6841
 
6842
.helpforum p {
6843
    line-height: 3;
6844
}
6845
 
6846
.actionstitle h3 {
6847
    font-size: 18px;
6848
    font-weight: 400;
6849
    color: #000;
6850
    padding-top: 30px;
6851
}
6852
 
6853
.actionstitle img {
6854
    padding-right: 10px;
6855
}
6856
 
6857
.actionstext a {
6858
    font-size: 16px;
6859
    font-weight: 500;
6860
    color: #e44d3a;
6861
    line-height: 2;
6862
    display: block;
6863
}
6864
 
6865
.helpform {
6866
    text-align: center;
6867
    padding-top: 70px;
6868
}
6869
 
6870
.helpform h3 {
6871
    font-size: 18px;
6872
    font-weight: 400;
6873
    color: #e44d3a;
6874
    margin-bottom: 10px;
6875
}
6876
 
6877
.helpform a {
6878
    background-color: #e44d3a;
6879
    color: #fff;
6880
    padding: 10px 15px 10px 15px;
6881
    border-radius: 3px;
6882
}
6883
 
6884
.helpform p {
6885
    margin-bottom: 30px;
6886
}
6887
 
6888
.helpform img {
6889
    float: unset;
6890
    padding-bottom: 10px;
6891
}
6892
 
6893
.bookingsideber h3 {
6894
    color: #000;
6895
}
6896
 
6897
.bookingsideber h3:active {
6898
    color: #e44d3a;
6899
}
6900
 
6901
.helpforum h4 {
6902
    font-size: 16px;
6903
    font-weight: 600;
6904
}
6905
 
6906
.bloktext {
6907
    padding-left: 25px;
6908
}
6909
 
6910
.privacy {
6911
    background-color: #fff;
6912
    height: 850px;
6913
}
6914
 
6915
.privacydropd .dropdown-toggle::after {
6916
    float: right;
6917
    vertical-align: 0.255em;
6918
}
6919
 
6920
/* .checkbox {} */
6921
 
6922
.form-check {
6923
    padding-left: 0;
6924
}
6925
 
6926
.btns a {
6927
    color: #000;
6928
    border: 1px solid #e5e5e5;
6929
    padding: 10px 25px 10px 25px;
6930
    margin-left: 15px;
6931
    border-radius: 5px;
6932
    font-weight: 600;
6933
}
6934
 
6935
.btns {
6936
    padding-top: 20px;
6937
}
6938
 
6939
.btns a:hover {
6940
    background-color: #e44d3a;
6941
    color: #fff;
6942
}
6943
 
6944
.privacy h3 {
6945
    font-size: 18px;
6946
    font-weight: 600;
6947
    padding-top: 18px;
6948
    margin-bottom: 10px;
6949
}
6950
 
6951
.privacy p {
6952
    padding-top: 0px;
6953
    display: inline-block;
6954
}
6955
 
6956
.form-group {
6957
    margin-bottom: 1rem;
6958
    padding-top: 0px;
6959
}
6960
 
6961
.privacy i {
6962
    float: right;
6963
    color: #e44d3a;
6964
    font-size: 20px;
6965
    font-weight: 600;
6966
}
6967
 
6968
.dropdown-menu input {
6969
    margin-right: 10px;
6970
    margin-top: 15px;
6971
}
6972
 
6973
.dropdown-menu a {
6974
    padding: 10px 0 10px 40px;
6975
    margin-bottom: 10px;
6976
}
6977
 
6978
.dropdown-menu form {
6979
    margin-bottom: 10px;
6980
    margin-top: 10px;
6981
}
6982
 
6983
.privacydropd p {
6984
    margin-left: 20px;
6985
    margin-top: 5px;
6986
}
6987
 
6988
.privabtns {
6989
    margin-top: 20px;
6990
}
6991
 
6992
.privabtns {
6993
    padding-bottom: 15px;
6994
}
6995
 
6996
.privabtns a {
6997
    margin-right: 15px;
6998
    padding: 8px 25px;
6999
    color: #000000;
7000
    border: 1px solid #e5e5e5;
7001
}
7002
 
7003
.privabtns a:hover {
7004
    color: #fff;
7005
    background-color: #e44d3a;
7006
}
7007
 
7008
.privac {
7009
    background-color: #fff;
7010
    height: 560px;
7011
    padding-top: 20px;
7012
}
7013
 
7014
.privac h3 {
7015
    font-size: 18px;
7016
    font-weight: 600;
7017
}
7018
 
7019
.bids-detail ul {
7020
    display: -webkit-inline-box;
7021
}
7022
 
7023
.bids-detail ul li {
7024
    margin-right: 30px;
7025
}
7026
 
7027
.bids-detail h3 {
7028
    font-size: 16px;
7029
    font-weight: 400;
7030
}
7031
 
7032
.bids-detail {
7033
    background-color: #fff;
7034
    padding: 20px;
7035
    margin-bottom: 25px;
7036
    box-shadow: 0px 2px #e4e4e4;
7037
}
7038
 
7039
.dropdown-menu.show {
7040
    display: contents;
7041
}
7042
 
7043
.postpaid:checked:after {
7044
    content: "\f17b";
7045
    font: normal normal normal 16px/1 "LineAwesome";
7046
    font-weight: 600;
7047
    border: 1px solid #fff;
7048
    color: #ffffff;
7049
    text-align: center;
7050
    font-size: 12px;
7051
    width: 100%;
7052
    height: 100%;
7053
    background: #e44d3a;
7054
    display: block;
7055
    border-radius: 50%;
7056
    padding-top: 3px;
7057
}
7058
 
7059
.postpaid:focus {
7060
    border: 1px solid #fff;
7061
    width: 25px;
7062
    height: 25px;
7063
}
7064
 
7065
.postpaid {
7066
    -webkit-appearance: none;
7067
    content: "";
7068
    width: 20px;
7069
    height: 20px;
7070
    border-radius: 50%;
7071
    border: 1px solid #5e5e5e;
7072
    outline: 0;
7073
    margin-right: 5px;
7074
}
7075
 
7076
.job-status-bar {
7077
    border-top: 1px solid #e5e5e5;
7078
}
7079
 
7080
/* .main-ws-sec .job-status-bar {} */
7081
 
7082
.main-ws-sec .btm-line {
7083
    padding-bottom: 20px !important;
7084
    border-bottom: 1px solid #e5e5e5 !important;
7085
    margin-bottom: 20px;
7086
}
7087
 
7088
.job-status-bar hr {
7089
    margin: 0 -40px;
7090
}
7091
 
7092
.reply-area {
7093
    padding-left: 55px;
7094
}
7095
 
7096
.reply-rply1 {
7097
    margin: 24px 0;
7098
}
7099
 
7100
.reply-area p {
7101
    padding-bottom: 10px;
7102
}
7103
 
7104
.reply-area span {
7105
    cursor: pointer;
7106
}
7107
 
7108
.reply-area span:hover {
7109
    color: #e44d3a;
7110
}
7111
 
7112
.reply-area i {
7113
    font-size: 16px;
7114
    font-weight: 600;
7115
    padding-right: 8px;
7116
}
7117
 
7118
.comment-area .la-plus-circle {
7119
    display: block;
7120
    text-align: center;
7121
    font-size: 40px;
7122
    color: #b2b2b2;
7123
}
7124
 
7125
.reply-area span {
7126
    padding-top: 5px;
7127
    color: #b2b2b2;
7128
}
7129
 
7130
.comt span {
7131
    font-size: 16px;
7132
    color: #666666;
7133
}
7134
 
7135
.comt i {
7136
    padding-right: 8px;
7137
}
7138
 
7139
.postcomment .form-control {
7140
    width: 112%;
7141
    margin-left: -50px;
7142
    background-color: #efefef;
7143
    border-radius: 3px;
7144
}
7145
 
7146
.postcomment a {
7147
    background-color: #e44d3a;
7148
    color: #fff;
7149
    padding: 9px 25px 8px 25px;
7150
    line-height: 37px;
7151
    border-radius: 3px;
7152
}
7153
 
7154
.postcomment {
7155
    padding-top: 30px;
7156
}
7157
 
7158
.widget-about button:focus {
7159
    box-shadow: none;
7160
}
7161
 
7162
.widget-about button:hover {
7163
    background-color: #e44d3a;
7164
}
7165
 
7166
.widget-about button {
7167
    background-color: #e44d3a;
7168
    border: none;
7169
    padding: 12px 0;
7170
    width: 100%;
7171
}
7172
 
7173
.widget-about p {
7174
    background-color: #e44d3a;
7175
    color: #fff;
7176
    padding: 10px 0;
7177
}
7178
 
7179
.widget-projectid {
7180
    padding: 15px;
7181
}
7182
 
7183
.widget-projectid h3 {
7184
    padding-bottom: 7px;
7185
    font-size: 14px;
7186
    font-weight: 600;
7187
}
7188
 
7189
.sd-title h4 {
7190
    margin-bottom: 5px;
7191
    font-size: 16px;
7192
    font-weight: 600;
7193
    line-height: 24px;
7194
}
7195
 
7196
.paymethd p {
7197
    color: #e44d3a;
7198
}
7199
 
7200
.copylink p {
7201
    background-color: #efefef;
7202
    padding: 7px 0 8px 10px;
7203
}
7204
 
7205
.copylink a {
7206
    background-color: #e44d3a;
7207
    color: #fff;
7208
    padding: 10px 15px 10px 15px;
7209
    border-radius: 4px;
7210
}
7211
 
7212
.copylink span {
7213
    padding: 30px 0 20px;
7214
}
7215
 
7216
.copylink i {
7217
    float: unset;
7218
    position: unset;
7219
}
7220
 
7221
.copylink .la-facebook {
7222
    background-color: #3b5998;
7223
    color: #fff;
7224
}
7225
 
7226
.copylink .la-twitter {
7227
    color: #1da1f2;
7228
}
7229
 
7230
.copylink .la-pinterest-p {
7231
    background-color: #fff;
7232
    color: #c11628;
7233
    border-radius: 50%;
7234
}
7235
 
7236
.copylink img {
7237
    padding-right: 10px;
7238
}
7239
 
7240
.freelancerbiding {
7241
    background-color: #fff;
7242
    padding-top: 20px;
7243
}
7244
 
7245
.freelancerbiding h3 {
7246
    font-size: 18px;
7247
    font-weight: 400;
7248
}
7249
 
7250
.repcent {
7251
    text-align: left;
7252
}
7253
 
7254
.bidrit {
7255
    float: right;
7256
}
7257
 
7258
.repcent i {
7259
    padding-left: 5px;
7260
}
7261
 
7262
.star {
7263
    display: inline-flex;
7264
    padding: 5px 0;
7265
}
7266
 
7267
.star li i {
7268
    color: #bfd337;
7269
}
7270
 
7271
.repcent span {
7272
    color: #51a5fb;
7273
}
7274
 
7275
.repcent p {
7276
    padding-left: 7px;
7277
}
7278
 
7279
.noreview ul li i {
7280
    color: #b2b2b2;
7281
}
7282
 
7283
.paymethd .star li i {
7284
    position: unset;
7285
    font-size: 14px;
7286
}
7287
 
7288
.paymethd .star a {
7289
    color: #51a5fb;
7290
    padding-left: 12px;
7291
}
7292
 
7293
/* .modal-header {background-color: #e44d3a; display: block !important; } */
7294
 
7295
.modal-body {
7296
    padding: 1rem 0;
7297
}
7298
 
7299
.notice {
7300
    background-color: #ddf3ff;
7301
    padding: 15px;
7302
}
7303
 
7304
.notice span {
7305
    font-weight: 500;
7306
    padding-right: 5px;
7307
}
7308
 
7309
.innerbody {
7310
    padding: 15px;
7311
}
7312
 
7313
.innerbody h3 {
7314
    font-size: 18px;
7315
    font-weight: 600;
7316
}
7317
 
7318
.innerbody h4 {
7319
    font-weight: 600;
7320
    font-size: 14px;
7321
    margin-left: -15px;
7322
    float: left;
7323
}
7324
 
7325
.delivery .input-group select {
7326
    width: 150px;
7327
    height: 50px !important;
7328
    font-size: 19px;
7329
    border: 1px solid #e5e5e5;
7330
    border-radius: 3px;
7331
}
7332
 
7333
.input-group-prepend {
7334
    background-color: #f3f3f3;
7335
    color: #bfbfbf;
7336
    text-align: center;
7337
    line-height: 3;
7338
    border: 1px solid #e5e5e5;
7339
}
7340
 
7341
.input-group-text {
7342
    color: #666666 !important;
7343
    background-color: #f5f5f5 !important;
7344
    border: 0px !important;
7345
    border-radius: 3px !important;
7346
}
7347
 
7348
.place-bid-form {
7349
    position: relative;
7350
    left: 20px;
7351
    top: -15px;
7352
    padding-bottom: 15px;
7353
}
7354
 
7355
.place-bid-form .input-group input {
7356
    width: 70px;
7357
    border: 1px solid #e5e5e5;
7358
}
7359
 
7360
.paydel {
7361
    padding: 40px 0 0;
7362
}
7363
 
7364
.beatcompitation {
7365
    background-color: #f3f3f3;
7366
    padding: 15px;
7367
}
7368
 
7369
.beatcompitation h3 {
7370
    font-weight: 500;
7371
}
7372
 
7373
.sponser i {
7374
    background-color: #e44d3a;
7375
    color: #fff;
7376
    margin-right: 5px;
7377
    padding: 2px;
7378
}
7379
 
7380
.sponser h2 {
7381
    font-size: 18px;
7382
    font-weight: 600;
7383
    padding-top: 15px;
7384
    padding-bottom: 15px;
7385
}
7386
 
7387
.sponser {
7388
    padding: 15px;
7389
}
7390
 
7391
.modal-footer {
7392
    display: block !important;
7393
    border-top: none;
7394
    padding: 1rem 0;
7395
}
7396
 
7397
.modal-footer button {
7398
    font-size: 15px;
7399
    font-weight: 500;
7400
    background-color: unset;
7401
    border: none;
7402
    padding: 10px;
7403
    border: 1px solid #d2d2d2;
7404
    border-radius: 3px;
7405
}
7406
 
7407
.modal-footer button:hover {
7408
    background-color: #e44d3a;
7409
    /* color: #fff; */
7410
    /* border: 1px solid #e44d3a; */
7411
}
7412
 
7413
.place-bid-btn {
7414
    font-size: 15px;
7415
    font-weight: 500;
7416
    color: #fff !important;
7417
    background-color: #e44d3a !important;
7418
    border: none;
7419
    padding: 10px;
7420
    border: 1px solid #e44d3a;
7421
    border-radius: 3px;
7422
}
7423
 
7424
.usy-dt .reply {
7425
    margin: 3px 0 0 10px;
7426
    width: 360px;
7427
    height: 40px;
7428
    background-color: #efefef;
7429
    border: 1px solid #e5e5e5;
7430
    padding-left: 10px;
7431
    border-radius: 3px;
7432
}
7433
 
7434
.replybtn {
7435
    background-color: #e44d3a;
7436
    color: #fff;
7437
    padding: 10px;
7438
    margin-left: 15px;
7439
    border-radius: 3px;
7440
}
7441
 
7442
.replybtn:hover {
7443
    color: #fff;
7444
}
7445
 
7446
.rewivew ul li {
7447
    margin-right: 5px !important;
7448
}
7449
 
7450
.security hr {
7451
    margin-right: -15px;
7452
    margin-left: -15px;
7453
}
7454
 
7455
.privacy .la-check {
7456
    float: left;
7457
    font-size: 12px;
7458
    margin: 5px 5px 0 0;
7459
    padding: 3px;
7460
    background-color: #e44d3a;
7461
    color: #fff;
7462
    border-radius: 50%;
7463
}
7464
 
7465
ul#myTab {
7466
    border-bottom: 1px solid #e5e5e5;
7467
}
7468
 
7469
.nav-tabs .nav-link {
7470
    border: none;
7471
}
7472
 
7473
.noborder {
7474
    border-bottom: none;
7475
}
7476
 
7477
.manbids {
7478
    margin-bottom: 0 !important;
7479
}
7480
 
7481
.noreply {
7482
    padding-top: 30px;
7483
}
7484
 
7485
#my-bids .nav-tabs {
7486
    margin-bottom: 20px;
7487
    margin-top: 7px;
7488
    padding-bottom: 0;
7489
}
7490
 
7491
#my-bids ul {
7492
    margin-bottom: 15px;
7493
    margin-top: 7px;
7494
    padding-bottom: 0;
7495
}
7496
 
7497
.savedjob-info p {
7498
    color: #666666;
7499
    margin-top: 5px;
7500
}
7501
 
7502
#my-bids ul li a {
7503
    color: #000000;
7504
    font-size: 16px;
7505
    font-weight: 500;
7506
}
7507
 
7508
#my-bids li a:hover {
7509
    color: #e44d3a;
7510
}
7511
 
7512
#saved-jobs ul {
7513
    margin-bottom: 20px;
7514
}
7515
 
7516
#saved-jobs ul li a {
7517
    color: #000000;
7518
    font-size: 16px;
7519
    font-weight: 500;
7520
}
7521
 
7522
#saved-jobs li a:hover {
7523
    color: #e44d3a;
7524
}
7525
 
7526
.wordpressdevlp h2 {
7527
    font-size: 18px;
7528
    font-weight: 600;
7529
    margin-bottom: 15px;
7530
}
7531
 
7532
#saved-jobs .nav-tabs .nav-item.show .nav-link,
7533
#saved-jobs .nav-tabs .nav-link.active {
7534
    background-color: inherit;
7535
    color: #e44d3a !important;
7536
    padding-bottom: 9px;
7537
    border-bottom: 2px solid #e44d3a !important;
7538
}
7539
 
7540
#my-bids .nav-tabs .nav-item.show .nav-link,
7541
#my-bids .nav-tabs .nav-link.active {
7542
    background-color: inherit;
7543
    color: #e44d3a !important;
7544
    padding-bottom: 9px;
7545
    border-bottom: 2px solid #e44d3a !important;
7546
}
7547
 
7548
.descptab li img {
7549
    float: left !important;
7550
    filter: inherit !important;
7551
}
7552
 
7553
.bklink {
7554
    border-bottom: none !important;
7555
    width: unset !important;
7556
    float: right !important;
7557
}
7558
 
7559
.bklik {
7560
    border-bottom: none !important;
7561
}
7562
 
7563
/*////////////////////////////////////////My css//////////////////////////////// //////////////////////////////////////////////////////////////////////////////*/
7564
 
7565
.savedjob-info li {
7566
    display: inline-block;
7567
    padding-left: 25px;
7568
}
7569
 
7570
.savedjob-info h3 {
7571
    font-size: 14px;
7572
    font-weight: 500;
7573
}
7574
 
7575
.settingjb ul li {
7576
    margin-right: 25px !important;
7577
}
7578
 
7579
.mangebid li {
7580
    padding-left: 0;
7581
    padding-right: 20px;
7582
    padding-top: 10px;
7583
}
7584
 
7585
.bk-links.bklink li {
7586
    padding-right: 0;
7587
}
7588
 
7589
.bidsbtn {
7590
    position: relative;
7591
}
7592
 
7593
.biddersinfo li {
7594
    padding-left: 0;
7595
    padding-right: 20px;
7596
}
7597
 
7598
#review {
7599
    background-color: #fff;
7600
    margin-bottom: 40px;
7601
}
7602
 
7603
.starreview {
7604
    padding-left: 20px;
7605
}
7606
 
7607
.replytext {
7608
    padding-bottom: 20px;
7609
}
7610
 
7611
.starrevi {
7612
    padding-left: 20px;
7613
}
7614
 
7615
.apply-jobbox {
7616
    text-align: center;
7617
}
7618
 
7619
.apply-jobbox form input {
7620
    width: 100%;
7621
    margin-top: 20px;
7622
    padding: 10px;
7623
    color: #222;
7624
    border: 1px solid #e5e5e5;
7625
    border-radius: 3px;
7626
    font-size: 14px;
7627
}
7628
 
7629
.apply-jobbox h3 {
7630
    margin: 20px 0;
7631
}
7632
 
7633
.select-files {
7634
    border: 1px solid #e5e5e5;
7635
    margin-top: 20px;
7636
    padding: 30px;
7637
    background: #efefef;
7638
}
7639
 
7640
.select-files button {
7641
    margin-bottom: 20px;
7642
    background-color: transparent;
7643
    border: 1px solid #e5e5e5;
7644
    padding: 10px 15px 10px 15px;
7645
    border-radius: 5px;
7646
    font-weight: 600;
7647
}
7648
 
7649
.select-files button:hover {
7650
    background-color: #e44d3a;
7651
    color: #fff;
7652
}
7653
 
7654
.close {
7655
    position: absolute;
7656
    right: 0px;
7657
    top: 0px;
7658
    color: #929292;
7659
    border: 1px solid !important;
7660
    border-radius: 50%;
7661
    height: 30px;
7662
    width: 30px;
7663
}
7664
 
7665
.mapouter iframe {
7666
    width: 100%;
7667
    height: 400px;
7668
}
7669
 
7670
.mapouter {
7671
    position: relative;
7672
    text-align: right;
7673
    height: 500px;
7674
    width: 100%;
7675
}
7676
 
7677
.gmap_canvas {
7678
    overflow: hidden;
7679
    background: none !important;
7680
}
7681
 
7682
.video-iframe {
7683
    width: 100%;
7684
    height: 400px;
7685
}
7686
 
7687
.custom-file-input {
7688
    color: transparent;
7689
    opacity: 1;
7690
    /* margin-left: 140px; */
7691
    margin-bottom: 10px;
7692
}
7693
 
7694
.custom-file-input::-webkit-file-upload-button {
7695
    visibility: hidden;
7696
}
7697
 
7698
.custom-file-input::before {
7699
    content: "Select Files";
7700
    color: #fff;
7701
    display: inline-block;
7702
    border: 1px solid #e5e5e5;
7703
    border-radius: 3px;
7704
    background: #e44d3a;
7705
    font-weight: 500;
7706
    padding: 10px 15px;
7707
    outline: none;
7708
    white-space: nowrap;
7709
    -webkit-user-select: none;
7710
    cursor: pointer;
7711
}
7712
 
7713
.custom-file-input:hover::before {
7714
    background-color: #e44d3a;
7715
    color: #fff;
7716
}
7717
 
7718
.custom-file-input:active {
7719
    outline: 0;
7720
}
7721
 
7722
.custom-file-input:active::before {
7723
    background: #e44d3a;
7724
    color: #fff;
7725
}
7726
 
7727
.bids-time {
7728
    float: right;
7729
}
7730
 
7731
.saved-post {
7732
    padding: 0;
7733
}
7734
 
7735
.saved-post p {
7736
    padding-bottom: 20px;
7737
}
7738
 
7739
.saved-info li {
7740
    padding-right: 25px;
7741
    padding-left: 0;
7742
}
7743
 
7744
.saved-btn {
7745
    padding: 0;
7746
    margin-bottom: -12px;
7747
}
7748
 
7749
.applied-post {
7750
    padding: 0;
7751
}
7752
 
7753
.post-bid {
7754
    padding: 0 !important;
7755
}
7756
 
7757
.bidsbtn {
7758
    padding-top: 0 !important;
7759
}
7760
 
7761
.active-bids {
7762
    padding: 0;
7763
}
7764
 
7765
.activ-bidinfo li {
7766
    padding-top: 10px;
7767
    padding-left: 0;
7768
    padding-right: 25px;
7769
}
7770
 
7771
.activebtn {
7772
    padding-left: 0;
7773
}
7774
 
7775
.p-all {
7776
    padding: 0px;
7777
    float: left;
7778
    width: 100%;
7779
    position: relative;
7780
}
7781
 
7782
.toggle-btn .custom-switch .custom-control-label::before {
7783
    left: -2.25rem;
7784
    width: 70px;
7785
    pointer-events: all;
7786
    border-radius: 100px;
7787
    height: 30px;
7788
    top: -1px;
7789
    box-shadow: none;
7790
}
7791
 
7792
.toggle-btn .custom-control-label::before {
7793
    position: absolute;
7794
    top: 0.25rem;
7795
    left: -1.5rem;
7796
    display: block;
7797
    width: 1rem;
7798
    height: 1rem;
7799
    pointer-events: none;
7800
    content: "";
7801
    background-color: #fff;
7802
    border: #e1e1e1 solid 2px;
7803
}
7804
 
7805
.custom-control-input:checked~.custom-control-label::before {
7806
    color: #fff;
7807
    border-color: #e44d3a;
7808
    background-color: #e44d3a;
7809
    box-shadow: none;
7810
    outline: none;
7811
}
7812
 
7813
.toggle-btn .custom-switch .custom-control-label::after {
7814
    top: calc(-1px + 2px);
7815
    left: calc(-36px + 2px);
7816
    width: calc(30px - 4px);
7817
    height: calc(30px - 4px);
7818
    background-color: #e1e1e1;
7819
    border-radius: 100%;
7820
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
7821
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
7822
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
7823
}
7824
 
7825
.toggle-btn .custom-control-label::after {
7826
    position: absolute;
7827
    top: 0.25rem;
7828
    left: -1.5rem;
7829
    display: block;
7830
    width: 0;
7831
    height: 0;
7832
    content: "";
7833
    background: no-repeat 50%/50% 50%;
7834
}
7835
 
7836
.toggle-btn .custom-control-label {
7837
    position: initial;
7838
    margin-bottom: 0;
7839
    vertical-align: top;
7840
}
7841
 
7842
.toggle-btn .custom-switch .custom-control-input:checked~.custom-control-label::after {
7843
    background-color: #fff;
7844
    -webkit-transform: translateX(2.5rem);
7845
    transform: translateX(2.5rem);
7846
}
7847
 
7848
.custom-control-label {
7849
    position: relative;
7850
    margin-bottom: 0;
7851
    vertical-align: top;
7852
    line-height: 24px;
7853
    font-size: 14px;
7854
    color: #666666;
7855
}
7856
 
7857
.small-text-children p,
7858
.small-text-children span {
7859
    font-size: .8rem;
7860
}
7861
 
7862
.search-item-selected {
7863
    padding: 2%;
1821 steven 7864
    background: #F0F0F0;
1239 steven 7865
    border-radius: 6px;
7866
    font-weight: bold;
7867
}
7868
 
7869
main {
7870
    background-color: #fff !important;
7871
}
7872
 
7873
.row .sc-dkzDqf {
7874
    margin: 0 auto;
7875
}
7876
 
7877
.test-section .title,
7878
.test-section .description {
7879
    margin-bottom: 10px;
7880
}
7881
 
7882
.test-section .btn-danger {
7883
    margin-right: 10px;
7884
}
7885
 
7886
.test-section .panel-body {
7887
    padding: 20px 0px;
7888
}
7889
 
7890
.test-section .panel {
7891
    margin-top: 20px;
7892
    padding-bottom: 10px;
7893
}
7894
 
7895
.test-section .panel-title {
7896
    font-size: 16px;
7897
    font-weight: bold;
7898
    text-transform: uppercase;
7899
}
7900
 
7901
.test-section .np-padding {
7902
    padding: 0px;
7903
}
7904
 
7905
.test-section .checkbox {
7906
    display: flex;
7907
    margin: 20px 0px;
7908
}
7909
 
7910
.test-section .option {
7911
    margin-left: 10px;
7912
}
7913
 
7914
.checkbox input[type=checkbox],
7915
input[type=radio] {
7916
    margin-top: 5px !important;
7917
}
7918
 
7919
.test-section h6 {
7920
    margin-bottom: 10px;
7921
    color: #0860bf;
7922
}
7923
 
7924
.wizard {
7925
    display: flex;
7926
    margin-top: 10px;
7927
}
7928
 
7929
.wizard li {
7930
    width: 50%;
7931
    display: inline-block;
7932
}
7933
 
7934
.btn-secondary:disabled,
7935
.btn-primary:disabled {
7936
    cursor: no-drop;
7937
}
7938
 
7939
.test-section .btn-primary {
7940
    margin-left: 10px
7941
}
7942
 
7943
.previous {
7944
    text-align: left;
7945
}
7946
 
7947
.next {
7948
    text-align: right;
7949
}
7950
 
7951
.test-section .close {
7952
    border: none !important;
7953
    border-radius: 0px !important;
7954
}
7955
 
7956
.ratin-range {
7957
    display: block;
7958
}
7959
 
7960
.ratin-range li {
7961
    display: inline-block;
7962
    width: 6%;
7963
}
7964
 
7965
.ratin-range li .option {
7966
    margin-top: 2px !important;
7967
}
7968
 
7969
#react-self-evaluation .company-up-info ul {
7970
    width: 100%;
7971
    position: absolute;
7972
    float: left;
7973
    left: 0px;
7974
    bottom: 4vw;
7975
}
7976
 
7977
#react-self-evaluation .company-up-info {
7978
    padding: 30px 10px;
7979
    min-height: 20vw;
7980
    border: 1px solid #e5e5e5
7981
}
7982
 
7983
#react-self-evaluation .company-up-info h3 {
7984
    width: 90%;
7985
    margin: 5px auto;
7986
}
7987
 
7988
.mb10 {
597 geraldo 7989
    margin-bottom: 3vw;
598 geraldo 7990
}
1239 steven 7991
 
7992
.opt-h6 {
7993
    font-weight: 600 !important;
7994
    color: #000 !important;
597 geraldo 7995
}