Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1949 | Rev 2124 | 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
 
5508
.messages-list ul li.active {
5509
    background-color: #efefef;
5510
}
5511
 
5512
.usr-msg-details {
5513
    float: left;
5514
    position: relative;
5515
    width: 100%;
1871 steven 5516
    border-bottom: solid 1px var(--border-light-gray);
5517
    padding-bottom: 3%;
1239 steven 5518
}
5519
 
5520
.usr-ms-img {
5521
    float: left;
5522
    width: 50px;
5523
    position: relative;
5524
}
5525
 
5526
.msg-status {
5527
    -webkit-border-radius: 100px;
5528
    -moz-border-radius: 100px;
5529
    -ms-border-radius: 100px;
5530
    -o-border-radius: 100px;
5531
    border-radius: 100px;
5532
    background-color: #e44d3a;
5533
    position: absolute;
5534
    top: -3px;
5535
    right: 0;
5536
    width: 6px;
5537
    height: 6px;
5538
}
5539
 
5540
.messages-list ul li.active .msg-status {
5541
    border: 2px solid #ecf5fb;
5542
    height: 10px;
5543
    width: 10px;
5544
}
5545
 
5546
.msg-notifc {
5547
    position: absolute;
1872 steven 5548
    /* bottom: 0;
5549
    right: 0; */
1239 steven 5550
    width: 25px;
5551
    height: 25px;
5552
    -webkit-border-radius: 100px;
5553
    -moz-border-radius: 100px;
5554
    -ms-border-radius: 100px;
5555
    -o-border-radius: 100px;
5556
    border-radius: 100px;
5557
    background-color: #e77667;
5558
    text-align: center;
5559
    line-height: 25px;
5560
    font-size: 13px;
5561
    color: #fff;
5562
}
5563
 
5564
.usr-ms-img img {
5565
    width: 100%;
5566
    -webkit-border-radius: 100px;
5567
    -moz-border-radius: 100px;
5568
    -ms-border-radius: 100px;
5569
    -o-border-radius: 100px;
5570
    border-radius: 100px;
5571
}
5572
 
5573
.usr-mg-info {
5574
    float: left;
5575
    padding-left: 13px;
5576
    margin-top: 4px;
5577
}
5578
 
5579
.usr-mg-info h3 {
5580
    color: #000000;
5581
    font-size: 18px;
5582
    font-weight: 600;
5583
}
5584
 
5585
.usr-mg-info p {
5586
    color: #686868;
5587
    font-size: 16px;
5588
}
5589
 
5590
.usr-mg-info p img {
5591
    float: right;
5592
    position: relative;
5593
    top: 5px;
5594
    padding-left: 5px;
5595
}
5596
 
5597
.posted_time {
5598
    position: absolute;
5599
    top: 2px;
5600
    right: 0;
5601
    color: #b2b2b2;
5602
    font-size: 14px;
5603
}
5604
 
5605
/* =============== main-message-box ============= */
5606
 
5607
.main-conversation-box {
5608
    width: 100%;
5609
    background-color: #fff;
5610
    position: relative;
5611
    height: 100%;
5612
}
5613
 
5614
.message-bar-head {
5615
    height: 13vh;
5616
    width: 100%;
5617
    padding: 20px;
1880 steven 5618
    border-bottom: 1px solid var(--border-light-gray);
1239 steven 5619
}
5620
 
5621
.message-bar-head .usr-msg-details {
5622
    width: auto;
5623
}
5624
 
5625
.message-bar-head>a {
5626
    float: right;
5627
    color: #b2b2b2;
5628
    font-size: 20px;
5629
    padding-top: 15px;
5630
}
5631
 
5632
.main-message-box {
5633
    display: flex;
5634
    width: 100%;
5635
    position: relative;
5636
    margin-bottom: 15.5px;
5637
}
5638
 
5639
.messg-usr-img {
5640
    margin-left: 20px;
5641
    width: 50px;
5642
}
5643
 
5644
.messg-usr-img img {
5645
    width: 100%;
5646
    -webkit-border-radius: 100px;
5647
    -moz-border-radius: 100px;
5648
    -ms-border-radius: 100px;
5649
    -o-border-radius: 100px;
5650
    border-radius: 100px;
5651
}
5652
 
5653
.message-dt {
5654
    width: auto;
5655
    margin-left: 15px;
5656
}
5657
 
5658
.main-message-box.ta-right {
5659
    flex-direction: row-reverse;
5660
}
5661
 
5662
.main-message-box.ta-right .messg-usr-img {
5663
    margin-left: 0;
5664
    margin-right: 20px;
5665
}
5666
 
5667
.main-message-box.ta-right .message-dt {
5668
    margin-right: 15px;
5669
}
5670
 
5671
.main-message-box.ta-right .message-dt>span {
5672
    float: right;
5673
    width: auto;
5674
}
5675
 
5676
.message-inner-dt {
5677
    -webkit-border-radius: 15px;
5678
    -moz-border-radius: 15px;
5679
    -ms-border-radius: 15px;
5680
    -o-border-radius: 15px;
5681
    border-radius: 15px;
5682
    width: 100%;
5683
    border-bottom-left-radius: 0;
5684
}
5685
 
5686
.img-bx {
5687
    background-color: #efefef;
5688
    padding: 20px;
5689
}
5690
 
5691
.message-inner-dt>img {
5692
    display: inline-block;
5693
    width: auto;
5694
    margin-right: 5px;
5695
}
5696
 
5697
.message-dt>span {
5698
    color: #b2b2b2;
5699
    font-size: 14px;
5700
    float: left;
5701
    width: 100%;
5702
    margin-top: 7px;
5703
}
5704
 
5705
.message-inner-dt>p {
5706
    font-size: 14px;
5707
    line-height: 22px;
5708
    padding: 2px 10px;
5709
    color: #000;
5710
    -webkit-border-radius: 15px;
5711
    -moz-border-radius: 15px;
5712
    -ms-border-radius: 15px;
5713
    -o-border-radius: 15px;
5714
    border-radius: 15px;
5715
}
5716
 
5717
.message-dt.st3 .message-inner-dt>p {
5718
    background-color: #efefef;
5719
    color: #686868;
5720
    width: auto;
5721
    padding: 10px 15px;
5722
    float: left;
5723
}
5724
 
5725
.message-dt.st3 .message-inner-dt>p img {
5726
    float: right;
5727
    position: relative;
5728
    top: 3px;
5729
    padding-left: 5px;
5730
}
5731
 
5732
.main-message-box.st3 .messg-usr-img {
5733
    bottom: 13px;
5734
}
5735
 
5736
.messages-line {
5737
    width: 100%;
5738
    height: 604px;
5739
    padding-top: 20px;
5740
}
5741
 
5742
/* ============== message-send-area ============ */
5743
 
5744
.message-send-area {
5745
    width: 100%;
5746
    background-color: #f3f5f7;
5747
    padding: 20px;
2040 steven 5748
    /* position: absolute; */
1876 steven 5749
    bottom: 0;
1239 steven 5750
}
1879 steven 5751
.inmail-submit-btn{
5752
    width: 6%;
5753
}
1239 steven 5754
 
5755
.message-send-area form {
5756
    width: 100%;
5757
}
5758
 
5759
.mf-field {
5760
    width: 100%;
5761
    display: flex;
5762
}
5763
 
5764
.mf-field input {
5765
    flex: 1;
5766
    background-color: #fff;
5767
    color: #b2b2b2;
5768
    font-size: 16px;
5769
    padding: 0 15px;
5770
    border: 1px solid #e6e6e6;
5771
    height: 45px;
5772
    border-radius: 25px;
5773
}
5774
 
5775
 
5776
.message-send-area form>ul {
5777
    float: left;
5778
    width: 100%;
5779
    margin-top: 15px;
5780
}
5781
 
5782
.message-send-area form>ul li {
5783
    display: inline-block;
5784
    margin-right: 20px;
5785
}
5786
 
5787
.message-send-area form>ul li a {
5788
    color: #b2b2b2;
5789
    font-size: 18px;
5790
}
5791
 
5792
/* ============== forum-links ============= */
5793
 
5794
.forum-sec {
5795
    background-color: #fff;
5796
}
5797
 
5798
.forum-links {
5799
    float: left;
5800
    width: 100%;
5801
}
5802
 
5803
.forum-links.active {
5804
    opacity: 1;
5805
    visibility: visible;
5806
    z-index: 9999;
5807
}
5808
 
5809
.forum-links ul li {
5810
    display: inline-block;
5811
    padding: 20px 0;
5812
    margin-right: 45px;
5813
    border-bottom: 2px solid transparent;
5814
}
5815
 
5816
.forum-links ul li.active {
5817
    border-color: #e44d3a;
5818
}
5819
 
5820
.forum-links ul li.active a {
5821
    color: #e44d3a;
5822
}
5823
 
5824
.forum-links ul li a {
5825
    display: inline-block;
5826
    color: #b2b2b2;
5827
    font-size: 14px;
5828
    font-weight: 600;
5829
}
5830
 
5831
.forum-links-btn {
5832
    float: left;
5833
    width: 100%;
5834
    text-align: center;
5835
    display: none;
5836
    padding: 20px 0;
5837
}
5838
 
5839
.forum-links-btn a {
5840
    color: #000;
5841
    font-size: 30px;
5842
    display: inline-block;
5843
}
5844
 
5845
/* ================ forum-page =============== */
5846
 
5847
.forum-page {
5848
    padding: 50px 0;
5849
}
5850
 
5851
.forum-questions-sec {
5852
    float: left;
5853
    width: 100%;
5854
}
5855
 
5856
.forum-questions {
5857
    float: left;
5858
    width: 100%;
5859
    background-color: #fff;
5860
}
5861
 
5862
.usr-question {
5863
    float: left;
5864
    width: 100%;
5865
    position: relative;
5866
    padding: 25px;
5867
    border-bottom: 1px solid #e5e5e5;
5868
}
5869
 
5870
.usr_img {
5871
    float: left;
5872
    width: 60px;
5873
}
5874
 
5875
.usr_img img {
5876
    width: 100%;
5877
    -webkit-border-radius: 100px;
5878
    -moz-border-radius: 100px;
5879
    -ms-border-radius: 100px;
5880
    -o-border-radius: 100px;
5881
    border-radius: 100px;
5882
}
5883
 
5884
.usr_quest {
5885
    float: left;
5886
    width: 90%;
5887
    padding-left: 15px;
5888
}
5889
 
5890
.usr_quest>h3 {
5891
    color: #000000;
5892
    font-size: 17px;
5893
    font-weight: 600;
5894
    margin-bottom: 20px;
5895
}
5896
 
5897
.forum-post-view .usr_quest>h3 {
5898
    margin-bottom: 10px;
5899
}
5900
 
5901
.react-links {
5902
    float: left;
5903
    width: 100%;
5904
}
5905
 
5906
.react-links li {
5907
    display: inline-block;
5908
    margin-right: 30px;
5909
}
5910
 
5911
.react-links li a {
5912
    display: inline-block;
5913
    color: #b2b2b2;
5914
    font-size: 14px;
5915
    font-weight: 600;
5916
}
5917
 
5918
.react-links li a:hover {
5919
    color: #e44d3a;
5920
}
5921
 
5922
.react-links li a i {
5923
    padding-right: 7px;
5924
}
5925
 
5926
.react-links li:last-child {
5927
    margin-right: 0;
5928
}
5929
 
5930
/* ============= quest-tags ============ */
5931
 
5932
.quest-tags {
5933
    float: left;
5934
    width: 100%;
5935
    margin-top: 20px;
5936
}
5937
 
5938
.quest-tags li {
5939
    display: inline-block;
5940
    margin-right: 10px;
5941
}
5942
 
5943
.quest-tags li a {
5944
    display: inline-block;
5945
    color: #ffffff;
5946
    background-color: #53d690;
5947
    -webkit-border-radius: 3px;
5948
    -moz-border-radius: 3px;
5949
    -ms-border-radius: 3px;
5950
    -o-border-radius: 3px;
5951
    border-radius: 3px;
5952
    padding: 7px 25px;
5953
}
5954
 
5955
.quest-posted-time {
5956
    position: absolute;
5957
    bottom: 30px;
5958
    right: 20px;
5959
    color: #b2b2b2;
5960
    font-size: 14px;
5961
}
5962
 
5963
.quest-posted-time i {
5964
    padding-right: 5px;
5965
}
5966
 
5967
.pd-right-none {
5968
    padding-right: 0;
5969
}
5970
 
5971
/* =========== navigation ============ */
5972
 
5973
.pagination {
5974
    float: left;
5975
    width: 100%;
5976
    /* background-color: #fff; */
5977
    padding: 13px 25px;
5978
}
5979
 
5980
.full-pagi {
5981
    float: left;
5982
    width: 100%;
5983
    padding-right: 0;
5984
    text-align: inherit;
5985
    margin-top: 20px;
5986
}
5987
 
5988
.pagination li {
5989
    padding: 0;
5990
    margin-right: 10px;
5991
}
5992
 
5993
.pagination li .page-link {
5994
    /* background-color: #e5e5e5; */
5995
    color: #b2b2b2;
5996
}
5997
 
5998
.pagination li .page-link.active {
5999
    background-color: #e44d3a;
6000
    color: #fff;
6001
    border-color: transparent;
6002
}
6003
 
6004
.pvr {
6005
    padding: 0.5rem 30px;
6006
}
6007
 
6008
/* ============ User Widget =========== */
6009
 
6010
.title-wd {
6011
    float: left;
6012
    width: 100%;
6013
    color: #000000;
6014
    font-size: 18px;
6015
    font-weight: 600;
6016
    border-bottom: 1px solid #e5e5e5;
6017
    padding: 25px 20px;
6018
}
6019
 
6020
.widget-user ul {
6021
    float: left;
6022
    width: 100%;
6023
    padding: 15px 0;
6024
}
6025
 
6026
.widget-user ul li {
6027
    float: left;
6028
    width: 100%;
6029
    padding: 15px 20px;
6030
}
6031
 
6032
.widget-user ul li .usr-msg-details {
6033
    float: left;
6034
    width: auto;
6035
}
6036
 
6037
.widget-user ul li .usr-ms-img {
6038
    width: 35px;
6039
}
6040
 
6041
.widget-user ul li .usr-mg-info h3 {
6042
    font-size: 14px;
6043
}
6044
 
6045
.widget-user ul li .usr-mg-info p {
6046
    font-size: 12px;
6047
}
6048
 
6049
.widget-user ul li>span {
6050
    color: #686868;
6051
    font-size: 16px;
6052
    float: right;
6053
    margin-top: 10px;
6054
}
6055
 
6056
.widget-user ul li>span img {
6057
    padding-right: 5px;
6058
}
6059
 
6060
/* ============== widget-adver ============ */
6061
 
6062
.widget-adver img {
6063
    width: 100%;
6064
}
6065
 
6066
/* ============ forum-post-view ============ */
6067
 
6068
.forum-post-view {
6069
    float: left;
6070
    width: 100%;
6071
    background-color: #fff;
6072
    padding: 25px 25px 0 25px;
6073
    border-bottom: 1px solid #e5e5e5;
6074
}
6075
 
6076
.forum-post-view .usr-question {
6077
    border-bottom: 0;
6078
    padding: 0;
6079
}
6080
 
6081
.forum-post-view .usr_quest span {
6082
    color: #b2b2b2;
6083
    font-size: 14px;
6084
    display: inline-block;
6085
    margin-bottom: 20px;
6086
}
6087
 
6088
.forum-post-view .usr_quest span i {
6089
    padding-right: 7px;
6090
}
6091
 
6092
.forum-post-view .quest-tags {
6093
    margin-bottom: 30px;
6094
}
6095
 
6096
.forum-post-view .usr_quest>p {
6097
    float: left;
6098
    width: 100%;
6099
    color: #686868;
6100
    font-size: 14px;
6101
    line-height: 24px;
6102
    margin-bottom: 40px;
6103
}
6104
 
6105
.forum-post-view .comment-section {
6106
    padding: 0;
6107
}
6108
 
6109
.forum-post-view .comment-section>h3 {
6110
    float: left;
6111
    width: 100%;
6112
    color: #000000;
6113
    font-size: 18px;
6114
    font-weight: 600;
6115
    border-bottom: 1px solid #e5e5e5;
6116
    padding-bottom: 15px;
6117
}
6118
 
6119
.forum-post-view .comment-sec ul li {
6120
    border-bottom: 1px solid #e5e5e5;
6121
    padding: 23px 0;
6122
}
6123
 
6124
.forum-post-view .comment span {
6125
    margin-bottom: 10px;
6126
}
6127
 
6128
.forum-post-view .comment-list {
6129
    padding-bottom: 0;
6130
    margin-bottom: -4px;
6131
}
6132
 
6133
.forum-post-view .comment p {
6134
    margin: 0;
6135
    margin-top: 5px;
6136
}
6137
 
6138
.forum-post-view .comment h3 {
6139
    margin-bottom: 9px;
6140
}
6141
 
6142
.forum-post-view .comment-sec ul li:last-child {
6143
    border-bottom: 0;
6144
}
6145
 
6146
/* =============== post-comment-box ============= */
6147
 
6148
.post-comment-box {
6149
    float: left;
6150
    width: 100%;
6151
    padding: 20px;
6152
    background-color: #fff;
6153
}
6154
 
6155
.post-comment-box h3 {
6156
    float: left;
6157
    width: 100%;
6158
    color: #000000;
6159
    font-size: 18px;
6160
    font-weight: 600;
6161
    margin-bottom: 30px;
6162
}
6163
 
6164
.user-poster {
6165
    float: left;
6166
    width: 100%;
6167
}
6168
 
6169
.usr-post-img {
6170
    float: left;
6171
    width: 50px;
6172
    margin-right: 15px;
6173
}
6174
 
6175
.usr-post-img img {
6176
    width: 100%;
6177
    -webkit-border-radius: 100px;
6178
    -moz-border-radius: 100px;
6179
    -ms-border-radius: 100px;
6180
    -o-border-radius: 100px;
6181
    border-radius: 100px;
6182
}
6183
 
6184
.post_comment_sec {
6185
    float: left;
6186
    width: 90%;
6187
}
6188
 
6189
.post_comment_sec form {
6190
    float: left;
6191
    width: 100%;
6192
}
6193
 
6194
.post_comment_sec form textarea {
6195
    float: left;
6196
    width: 100%;
6197
    height: 130px;
6198
    border: 1px solid #dce2eb;
6199
    padding: 15px;
6200
    resize: none;
6201
}
6202
 
6203
.post_comment_sec form button {
6204
    color: #ffffff;
6205
    font-size: 14px;
6206
    background-color: #e44d3a;
6207
    padding: 10px 25px;
6208
    border: 0;
6209
    font-weight: 600;
6210
    margin-top: 20px;
6211
    cursor: pointer;
6212
}
6213
 
6214
/* ======== next-prev ========*/
6215
 
6216
.next-prev {
6217
    float: left;
6218
    width: 100%;
6219
    background-color: #fff;
6220
    margin-top: 20px;
6221
    padding: 12px 25px;
6222
}
6223
 
6224
.next-prev>a {
6225
    width: 90px;
6226
    height: 35px;
6227
    text-align: center;
6228
    line-height: 35px;
6229
    color: #b2b2b2;
6230
    font-size: 14px;
6231
    background-color: #e5e5e5;
6232
}
6233
 
6234
.next-prev>a:hover {
6235
    color: #fff;
6236
    background-color: #e44d3a;
6237
}
6238
 
6239
.fl-left {
6240
    float: left;
6241
}
6242
 
6243
.fl-right {
6244
    float: right;
6245
}
6246
 
6247
/* ========== widget-feat ========= */
6248
 
6249
.widget-feat {
6250
    padding: 25px 20px;
6251
}
6252
 
6253
.widget-feat ul {
6254
    float: left;
6255
    width: 100%;
6256
}
6257
 
6258
.widget-feat ul li {
6259
    float: left;
6260
    width: 25%;
6261
    text-align: center;
6262
}
6263
 
6264
.widget-feat ul li i {
6265
    display: block;
6266
    font-size: 18px;
6267
    margin-bottom: 9px;
6268
}
6269
 
6270
.widget-feat ul li span {
6271
    display: block;
6272
    color: #686868;
6273
    font-size: 16px;
6274
    font-weight: 500;
6275
}
6276
 
6277
.widget-feat ul li i.fa-heart {
6278
    color: #53d690;
6279
}
6280
 
6281
.widget-feat ul li i.fa-comment {
6282
    color: #e44d3a;
6283
}
6284
 
6285
.widget-feat ul li i.fa-share-alt {
6286
    color: #51a5fb;
6287
}
6288
 
6289
.widget-feat ul li i.fa-eye {
6290
    color: #00b540;
6291
}
6292
 
6293
/* =============== ANIMATION LOADER =============== */
6294
 
6295
.spinner {
6296
    margin: 0 auto 0;
6297
    width: 80px;
6298
    text-align: center;
6299
    height: 80px;
6300
    border-radius: 100px;
6301
    background-color: #fff;
6302
    line-height: 80px;
6303
    border: 1px solid #e1e1e1;
6304
    cursor: pointer;
6305
}
6306
 
6307
.spinner>div {
6308
    width: 15px;
6309
    height: 15px;
6310
    background-color: #b9b9b9;
6311
    border-radius: 100%;
6312
    display: inline-block;
6313
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
6314
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
6315
}
6316
 
6317
.spinner .bounce1 {
6318
    -webkit-animation-delay: -0.32s;
6319
    animation-delay: -0.32s;
6320
}
6321
 
6322
.spinner .bounce2 {
6323
    -webkit-animation-delay: -0.16s;
6324
    animation-delay: -0.16s;
6325
}
6326
 
6327
@-webkit-keyframes sk-bouncedelay {
6328
    0%,
6329
    80%,
6330
    100% {
6331
        -webkit-transform: scale(0);
6332
    }
6333
    40% {
6334
        -webkit-transform: scale(1);
6335
    }
6336
}
6337
 
6338
@keyframes sk-bouncedelay {
6339
    0%,
6340
    80%,
6341
    100% {
6342
        -webkit-transform: scale(0);
6343
        transform: scale(0);
6344
    }
6345
    40% {
6346
        -webkit-transform: scale(1);
6347
        transform: scale(1);
6348
    }
6349
}
6350
 
6351
.wordpressdevlp {
6352
    background-color: #fff;
6353
}
6354
 
6355
.bgclr {
6356
    background-color: #fff;
6357
    margin-bottom: 15px;
6358
}
6359
 
6360
.cadidatesbtn {
6361
    position: absolute;
6362
    left: 0;
6363
    padding-top: 5px;
6364
}
6365
 
6366
.cadidatesbtn button {
6367
    background-color: #e44d3a;
6368
    border: none;
6369
    margin-top: -3px;
6370
}
6371
 
6372
.cadidatesbtn button:hover {
6373
    background-color: #e44d3a;
6374
}
6375
 
6376
.cadidatesbtn span {
6377
    background-color: #bd2e1c;
6378
    color: #fff;
6379
    margin-right: 10px;
6380
    padding: 0.25em 0.5em;
6381
    font-weight: 600;
6382
    font-size: 12px;
6383
}
6384
 
6385
.wordpressdevlp i {
6386
    color: #e86554;
6387
    font-size: 18px;
6388
    font-weight: bold;
6389
    padding-right: 5px;
6390
}
6391
 
6392
.wordpressdevlp h2 {
6393
    font-size: 18px;
6394
    font-weight: 600;
6395
}
6396
 
6397
.cadidatesbtn i {
6398
    color: #b2b2b2;
6399
    border: 1px solid #b2b2b2;
6400
    font-size: 14px;
6401
    text-align: center;
6402
    margin-left: 7px;
6403
    border-radius: 3px;
6404
    padding: 10px;
6405
}
6406
 
6407
.cadidatesbtn i:hover {
6408
    background-color: #e44d3a;
6409
    color: #fff;
6410
    border: 1px solid #e44d3a;
6411
}
6412
 
6413
.inner {
6414
    border-bottom: 2px solid #e5e5e5;
6415
    padding-bottom: 10px;
6416
}
6417
 
6418
.inner li a:hover {
6419
    color: #e44d3a;
6420
    border-bottom: 2px solid #e44d3a;
6421
    padding-bottom: 9px;
6422
}
6423
 
6424
.inner li a {
6425
    color: #000000;
6426
}
6427
 
6428
.posttext {
6429
    position: absolute;
6430
    left: 0;
6431
}
6432
 
6433
.deatile h3 {
6434
    font-size: 14px;
6435
    font-weight: bold;
6436
    padding-bottom: 5px;
6437
}
6438
 
6439
.clrbtn a {
6440
    background-color: #e44d3a;
6441
    color: #fff;
6442
    padding: 5px 10px 5px 10px;
6443
    margin-right: 15px;
6444
}
6445
 
6446
.transpairentbtn a {
6447
    color: #222;
6448
    border: 2px solid #f1f1f1;
6449
    padding: 5px 10px 5px 10px;
6450
}
6451
 
6452
.savetext h3 {
6453
    font-size: 14px;
6454
    font-weight: bold;
6455
    padding-bottom: 5px;
6456
}
6457
 
6458
.devepbtn .clrbtn {
6459
    padding: 7px 20px;
6460
}
6461
 
6462
.devepbtn a {
6463
    color: #666666;
6464
    border: 1px solid #b2b2b2;
6465
    padding: 7px 10px 7px 10px;
6466
    border-radius: 3px;
6467
    margin-right: 5px;
6468
}
6469
 
6470
.devepbtn a:hover i {
6471
    color: #fff;
6472
}
6473
 
6474
.devepbtn a:hover {
6475
    background-color: #e44d3a;
6476
    color: #fff;
6477
}
6478
 
6479
.rew-reply hr {
6480
    margin-left: -20px;
6481
    margin-right: -20px;
6482
}
6483
 
6484
.rew-reply p {
6485
    padding-left: 20px;
6486
}
6487
 
6488
.rew-reply ul {
6489
    padding-left: 20px;
6490
}
6491
 
6492
.devepbtn {
6493
    margin-top: 30px;
6494
    padding-left: 20px;
6495
}
6496
 
6497
.rep-thanks hr {
6498
    margin-right: -20px;
6499
    margin-left: -20px;
6500
}
6501
 
6502
.profilecnd {
6503
    margin-bottom: 0px;
6504
}
6505
 
6506
.devepbtn i {
6507
    color: #b2b2b2;
6508
    font-size: 14px;
6509
}
6510
 
6511
.appliedinfo {
6512
    padding-left: 0;
6513
    padding-top: 20px !important;
6514
    padding-bottom: 10px;
6515
}
6516
 
6517
.epi2 {
6518
    padding: 0;
6519
}
6520
 
6521
.review a {
6522
    line-height: 16px;
6523
    font-size: 14px;
6524
    text-decoration: none;
6525
    font-weight: 500;
6526
    margin-left: 15px;
6527
}
6528
 
6529
.add-pic-box {
6530
    display: inline-block;
6531
    color: #e44d3a;
6532
    font-size: 16px;
6533
    position: absolute;
6534
    top: 30px;
6535
    right: 0;
6536
    font-weight: 600;
6537
    margin-right: 0;
6538
    width: 100%;
6539
}
6540
 
6541
.add-pic-box [type="file"] {
6542
    height: 0;
6543
    overflow: hidden;
6544
    width: 0;
6545
    float: left;
6546
}
6547
 
6548
.add-pic-box [type="file"]+label {
6549
    background: #fff;
6550
    border: 2px solid #e44d3a;
6551
    border-radius: 3px;
6552
    color: #e44d3a;
6553
    cursor: pointer;
6554
    /* display: inline-block; */
6555
    font-size: 15px;
6556
    font-weight: 600;
6557
    outline: none;
6558
    padding: 12px 20px;
6559
    position: relative;
6560
    transition: all 0.3s;
6561
    vertical-align: middle;
6562
    margin: 0;
6563
    float: right;
6564
    text-transform: uppercase;
6565
}
6566
 
6567
.add-pic-box [type="file"]+label:hover {
6568
    background: #e44d3a;
6569
    color: #fff;
6570
}
6571
 
6572
.noreview li i {
6573
    color: #b2b2b2;
6574
}
6575
 
6576
.review-tb {
6577
    margin: 0 0 10px;
6578
    padding-left: 20px;
6579
}
6580
 
6581
.noreview ul li i {
6582
    color: #b2b2b2;
6583
}
6584
 
6585
.mngdetl {
6586
    border-bottom: none;
6587
}
6588
 
6589
.post-reply {
6590
    padding-top: 0;
6591
    padding-bottom: 0;
6592
}
6593
 
6594
.activebidbtn i:hover {
6595
    background-color: #e44d3a;
6596
    color: #fff;
6597
    border: none;
6598
}
6599
 
6600
.reviewtitle h2 {
6601
    font-size: 17px;
6602
    font-weight: 600;
6603
}
6604
 
6605
.horiline {
6606
    width: 118%;
6607
    position: relative;
6608
    left: -40px;
6609
}
6610
 
6611
.tahnks {
6612
    font-weight: 500;
6613
    margin-top: 5px;
6614
}
6615
 
6616
/*about-page*/
6617
 
6618
.banner span {
6619
    position: absolute;
6620
    display: flex;
6621
    background-color: #222;
6622
    width: 100%;
6623
    opacity: 0.9;
6624
    justify-content: center;
6625
    padding: 10px;
6626
    margin-top: 0;
6627
    color: #fff;
6628
}
6629
 
6630
.innertitle {
6631
    margin-top: 130px;
6632
}
6633
 
6634
.Company-overview {
6635
    padding-bottom: 50px;
6636
}
6637
 
6638
.bennertext {
6639
    position: absolute;
6640
    left: 20%;
6641
    right: 20%;
6642
    text-align: center;
6643
}
6644
 
6645
.bannerimage img {
6646
    height: 100%;
6647
}
6648
 
6649
.innertitle h2 {
6650
    color: #fff;
6651
    font-size: 30px;
6652
    line-height: 32px;
6653
    font-weight: 600;
6654
    margin-bottom: 20px;
6655
}
6656
 
6657
.innertitle p {
6658
    color: #fff;
6659
    font-size: 16px;
6660
}
6661
 
6662
.Company-overview h2 {
6663
    padding-top: 100px;
6664
    font-size: 24px;
6665
    font-weight: 600;
6666
    padding-bottom: 12px;
6667
}
6668
 
6669
.Company-overview p {
6670
    font-size: 15px;
6671
    font-weight: 500;
6672
}
6673
 
6674
.Company-overview img {
6675
    float: right;
6676
    padding-top: 25px;
6677
}
6678
 
6679
.blog {
6680
    text-align: center;
6681
    display: inline-block;
6682
    margin-bottom: 50px;
6683
}
6684
 
6685
.blog img {
6686
    padding-bottom: 30px;
6687
}
6688
 
6689
.blog h2 {
6690
    font-size: 18px;
6691
    font-weight: 600;
6692
    padding-bottom: 30px;
6693
}
6694
 
6695
.blog a {
6696
    background-color: #ff4500;
6697
    color: #fff;
6698
    padding: 7px 25px 7px 25px;
6699
    border-radius: 3px;
6700
    font-size: 16px;
6701
    font-weight: 500;
6702
}
6703
 
6704
.services {
6705
    padding-top: 80px;
6706
    padding-bottom: 80px;
6707
}
6708
 
6709
.video {
6710
    padding-bottom: 40px;
6711
}
6712
 
6713
.search-container {
6714
    text-align: center;
6715
}
6716
 
6717
.search-container input[type="text"] {
6718
    padding: 6px 15px;
6719
    margin-top: 8px;
6720
    font-size: 17px;
6721
    border: none;
6722
    height: 50px;
6723
    width: 50%;
6724
    margin-bottom: 25px;
6725
    border-top-left-radius: 3px;
6726
    border-top-right-radius: 0px;
6727
    border-bottom-left-radius: 3px;
6728
    border-bottom-right-radius: 0px;
6729
}
6730
 
6731
.searchtitle {
6732
    text-align: center;
6733
}
6734
 
6735
.searchtitle h2 {
6736
    color: #fff;
6737
    font-size: 30px;
6738
    font-weight: 400;
6739
    padding-bottom: 10px;
6740
}
6741
 
6742
.modal-header {
6743
    position: relative;
6744
}
6745
 
6746
.modal-header h3 {
6747
    font-size: 18px;
6748
}
6749
 
6750
.search-container button {
6751
    padding: 8px 10px;
6752
    text-align: center;
6753
    margin-top: 8px;
6754
    margin-left: -3px;
6755
    margin-right: 18px;
6756
    background: #efefef;
6757
    font-size: 17px;
6758
    border: none;
6759
    cursor: pointer;
6760
    height: 50px;
6761
    width: 6%;
6762
    border-bottom-right-radius: 3px;
6763
    border-top-right-radius: 3px;
6764
}
6765
 
6766
.topsearch i {
6767
    color: #e44d3a;
6768
}
6769
 
6770
.dropdown-toggle::after {
6771
    position: absolute;
6772
    right: 15px;
6773
    color: #b2b2b2;
6774
    top: 7px;
6775
}
6776
 
6777
.help-paddy {
6778
    padding: 0 !important;
6779
}
6780
 
6781
.paddy {
6782
    padding: 20px;
6783
    float: left;
6784
}
6785
 
6786
.dropdown-menu {
6787
    position: absolute;
6788
    top: 100%;
6789
    left: 0;
6790
    z-index: 1000;
6791
    display: none;
6792
    float: left;
6793
    min-width: 10rem;
6794
    padding: 0.5rem 0;
6795
    margin: 0.125rem 0 0;
6796
    font-size: 1rem;
6797
    color: #212529;
6798
    text-align: left;
6799
    list-style: none;
6800
    background-color: #fff;
6801
    width: 100%;
6802
    background-clip: padding-box;
6803
    border: none;
6804
    border-radius: 0.25rem;
6805
}
6806
 
6807
.radio-form p {
6808
    display: -webkit-inline-box;
6809
}
6810
 
6811
.dropdown a {
6812
    color: #000000;
6813
    font-size: 16px;
6814
    font-weight: 400;
6815
    padding: 0 20px;
6816
}
6817
 
6818
.accountnone {
6819
    border: none;
6820
}
6821
 
6822
.helpforum {
6823
    background-color: #fff;
6824
    padding: 15px 0;
6825
    box-shadow: 0px 2px #c6c6c6;
6826
}
6827
 
6828
.helpforum h3 {
6829
    font-size: 18px;
6830
    font-weight: 600;
6831
}
6832
 
6833
.helpforum a {
6834
    background-color: #e44d3a;
6835
    color: #fff;
6836
    padding: 10px 15px 10px 15px;
6837
    line-height: 4;
6838
    border-radius: 3px;
6839
}
6840
 
6841
.helpforum p {
6842
    line-height: 3;
6843
}
6844
 
6845
.actionstitle h3 {
6846
    font-size: 18px;
6847
    font-weight: 400;
6848
    color: #000;
6849
    padding-top: 30px;
6850
}
6851
 
6852
.actionstitle img {
6853
    padding-right: 10px;
6854
}
6855
 
6856
.actionstext a {
6857
    font-size: 16px;
6858
    font-weight: 500;
6859
    color: #e44d3a;
6860
    line-height: 2;
6861
    display: block;
6862
}
6863
 
6864
.helpform {
6865
    text-align: center;
6866
    padding-top: 70px;
6867
}
6868
 
6869
.helpform h3 {
6870
    font-size: 18px;
6871
    font-weight: 400;
6872
    color: #e44d3a;
6873
    margin-bottom: 10px;
6874
}
6875
 
6876
.helpform a {
6877
    background-color: #e44d3a;
6878
    color: #fff;
6879
    padding: 10px 15px 10px 15px;
6880
    border-radius: 3px;
6881
}
6882
 
6883
.helpform p {
6884
    margin-bottom: 30px;
6885
}
6886
 
6887
.helpform img {
6888
    float: unset;
6889
    padding-bottom: 10px;
6890
}
6891
 
6892
.bookingsideber h3 {
6893
    color: #000;
6894
}
6895
 
6896
.bookingsideber h3:active {
6897
    color: #e44d3a;
6898
}
6899
 
6900
.helpforum h4 {
6901
    font-size: 16px;
6902
    font-weight: 600;
6903
}
6904
 
6905
.bloktext {
6906
    padding-left: 25px;
6907
}
6908
 
6909
.privacy {
6910
    background-color: #fff;
6911
    height: 850px;
6912
}
6913
 
6914
.privacydropd .dropdown-toggle::after {
6915
    float: right;
6916
    vertical-align: 0.255em;
6917
}
6918
 
6919
/* .checkbox {} */
6920
 
6921
.form-check {
6922
    padding-left: 0;
6923
}
6924
 
6925
.btns a {
6926
    color: #000;
6927
    border: 1px solid #e5e5e5;
6928
    padding: 10px 25px 10px 25px;
6929
    margin-left: 15px;
6930
    border-radius: 5px;
6931
    font-weight: 600;
6932
}
6933
 
6934
.btns {
6935
    padding-top: 20px;
6936
}
6937
 
6938
.btns a:hover {
6939
    background-color: #e44d3a;
6940
    color: #fff;
6941
}
6942
 
6943
.privacy h3 {
6944
    font-size: 18px;
6945
    font-weight: 600;
6946
    padding-top: 18px;
6947
    margin-bottom: 10px;
6948
}
6949
 
6950
.privacy p {
6951
    padding-top: 0px;
6952
    display: inline-block;
6953
}
6954
 
6955
.form-group {
6956
    margin-bottom: 1rem;
6957
    padding-top: 0px;
6958
}
6959
 
6960
.privacy i {
6961
    float: right;
6962
    color: #e44d3a;
6963
    font-size: 20px;
6964
    font-weight: 600;
6965
}
6966
 
6967
.dropdown-menu input {
6968
    margin-right: 10px;
6969
    margin-top: 15px;
6970
}
6971
 
6972
.dropdown-menu a {
6973
    padding: 10px 0 10px 40px;
6974
    margin-bottom: 10px;
6975
}
6976
 
6977
.dropdown-menu form {
6978
    margin-bottom: 10px;
6979
    margin-top: 10px;
6980
}
6981
 
6982
.privacydropd p {
6983
    margin-left: 20px;
6984
    margin-top: 5px;
6985
}
6986
 
6987
.privabtns {
6988
    margin-top: 20px;
6989
}
6990
 
6991
.privabtns {
6992
    padding-bottom: 15px;
6993
}
6994
 
6995
.privabtns a {
6996
    margin-right: 15px;
6997
    padding: 8px 25px;
6998
    color: #000000;
6999
    border: 1px solid #e5e5e5;
7000
}
7001
 
7002
.privabtns a:hover {
7003
    color: #fff;
7004
    background-color: #e44d3a;
7005
}
7006
 
7007
.privac {
7008
    background-color: #fff;
7009
    height: 560px;
7010
    padding-top: 20px;
7011
}
7012
 
7013
.privac h3 {
7014
    font-size: 18px;
7015
    font-weight: 600;
7016
}
7017
 
7018
.bids-detail ul {
7019
    display: -webkit-inline-box;
7020
}
7021
 
7022
.bids-detail ul li {
7023
    margin-right: 30px;
7024
}
7025
 
7026
.bids-detail h3 {
7027
    font-size: 16px;
7028
    font-weight: 400;
7029
}
7030
 
7031
.bids-detail {
7032
    background-color: #fff;
7033
    padding: 20px;
7034
    margin-bottom: 25px;
7035
    box-shadow: 0px 2px #e4e4e4;
7036
}
7037
 
7038
.dropdown-menu.show {
7039
    display: contents;
7040
}
7041
 
7042
.postpaid:checked:after {
7043
    content: "\f17b";
7044
    font: normal normal normal 16px/1 "LineAwesome";
7045
    font-weight: 600;
7046
    border: 1px solid #fff;
7047
    color: #ffffff;
7048
    text-align: center;
7049
    font-size: 12px;
7050
    width: 100%;
7051
    height: 100%;
7052
    background: #e44d3a;
7053
    display: block;
7054
    border-radius: 50%;
7055
    padding-top: 3px;
7056
}
7057
 
7058
.postpaid:focus {
7059
    border: 1px solid #fff;
7060
    width: 25px;
7061
    height: 25px;
7062
}
7063
 
7064
.postpaid {
7065
    -webkit-appearance: none;
7066
    content: "";
7067
    width: 20px;
7068
    height: 20px;
7069
    border-radius: 50%;
7070
    border: 1px solid #5e5e5e;
7071
    outline: 0;
7072
    margin-right: 5px;
7073
}
7074
 
7075
.job-status-bar {
7076
    border-top: 1px solid #e5e5e5;
7077
}
7078
 
7079
/* .main-ws-sec .job-status-bar {} */
7080
 
7081
.main-ws-sec .btm-line {
7082
    padding-bottom: 20px !important;
7083
    border-bottom: 1px solid #e5e5e5 !important;
7084
    margin-bottom: 20px;
7085
}
7086
 
7087
.job-status-bar hr {
7088
    margin: 0 -40px;
7089
}
7090
 
7091
.reply-area {
7092
    padding-left: 55px;
7093
}
7094
 
7095
.reply-rply1 {
7096
    margin: 24px 0;
7097
}
7098
 
7099
.reply-area p {
7100
    padding-bottom: 10px;
7101
}
7102
 
7103
.reply-area span {
7104
    cursor: pointer;
7105
}
7106
 
7107
.reply-area span:hover {
7108
    color: #e44d3a;
7109
}
7110
 
7111
.reply-area i {
7112
    font-size: 16px;
7113
    font-weight: 600;
7114
    padding-right: 8px;
7115
}
7116
 
7117
.comment-area .la-plus-circle {
7118
    display: block;
7119
    text-align: center;
7120
    font-size: 40px;
7121
    color: #b2b2b2;
7122
}
7123
 
7124
.reply-area span {
7125
    padding-top: 5px;
7126
    color: #b2b2b2;
7127
}
7128
 
7129
.comt span {
7130
    font-size: 16px;
7131
    color: #666666;
7132
}
7133
 
7134
.comt i {
7135
    padding-right: 8px;
7136
}
7137
 
7138
.postcomment .form-control {
7139
    width: 112%;
7140
    margin-left: -50px;
7141
    background-color: #efefef;
7142
    border-radius: 3px;
7143
}
7144
 
7145
.postcomment a {
7146
    background-color: #e44d3a;
7147
    color: #fff;
7148
    padding: 9px 25px 8px 25px;
7149
    line-height: 37px;
7150
    border-radius: 3px;
7151
}
7152
 
7153
.postcomment {
7154
    padding-top: 30px;
7155
}
7156
 
7157
.widget-about button:focus {
7158
    box-shadow: none;
7159
}
7160
 
7161
.widget-about button:hover {
7162
    background-color: #e44d3a;
7163
}
7164
 
7165
.widget-about button {
7166
    background-color: #e44d3a;
7167
    border: none;
7168
    padding: 12px 0;
7169
    width: 100%;
7170
}
7171
 
7172
.widget-about p {
7173
    background-color: #e44d3a;
7174
    color: #fff;
7175
    padding: 10px 0;
7176
}
7177
 
7178
.widget-projectid {
7179
    padding: 15px;
7180
}
7181
 
7182
.widget-projectid h3 {
7183
    padding-bottom: 7px;
7184
    font-size: 14px;
7185
    font-weight: 600;
7186
}
7187
 
7188
.sd-title h4 {
7189
    margin-bottom: 5px;
7190
    font-size: 16px;
7191
    font-weight: 600;
7192
    line-height: 24px;
7193
}
7194
 
7195
.paymethd p {
7196
    color: #e44d3a;
7197
}
7198
 
7199
.copylink p {
7200
    background-color: #efefef;
7201
    padding: 7px 0 8px 10px;
7202
}
7203
 
7204
.copylink a {
7205
    background-color: #e44d3a;
7206
    color: #fff;
7207
    padding: 10px 15px 10px 15px;
7208
    border-radius: 4px;
7209
}
7210
 
7211
.copylink span {
7212
    padding: 30px 0 20px;
7213
}
7214
 
7215
.copylink i {
7216
    float: unset;
7217
    position: unset;
7218
}
7219
 
7220
.copylink .la-facebook {
7221
    background-color: #3b5998;
7222
    color: #fff;
7223
}
7224
 
7225
.copylink .la-twitter {
7226
    color: #1da1f2;
7227
}
7228
 
7229
.copylink .la-pinterest-p {
7230
    background-color: #fff;
7231
    color: #c11628;
7232
    border-radius: 50%;
7233
}
7234
 
7235
.copylink img {
7236
    padding-right: 10px;
7237
}
7238
 
7239
.freelancerbiding {
7240
    background-color: #fff;
7241
    padding-top: 20px;
7242
}
7243
 
7244
.freelancerbiding h3 {
7245
    font-size: 18px;
7246
    font-weight: 400;
7247
}
7248
 
7249
.repcent {
7250
    text-align: left;
7251
}
7252
 
7253
.bidrit {
7254
    float: right;
7255
}
7256
 
7257
.repcent i {
7258
    padding-left: 5px;
7259
}
7260
 
7261
.star {
7262
    display: inline-flex;
7263
    padding: 5px 0;
7264
}
7265
 
7266
.star li i {
7267
    color: #bfd337;
7268
}
7269
 
7270
.repcent span {
7271
    color: #51a5fb;
7272
}
7273
 
7274
.repcent p {
7275
    padding-left: 7px;
7276
}
7277
 
7278
.noreview ul li i {
7279
    color: #b2b2b2;
7280
}
7281
 
7282
.paymethd .star li i {
7283
    position: unset;
7284
    font-size: 14px;
7285
}
7286
 
7287
.paymethd .star a {
7288
    color: #51a5fb;
7289
    padding-left: 12px;
7290
}
7291
 
7292
/* .modal-header {background-color: #e44d3a; display: block !important; } */
7293
 
7294
.modal-body {
7295
    padding: 1rem 0;
7296
}
7297
 
7298
.notice {
7299
    background-color: #ddf3ff;
7300
    padding: 15px;
7301
}
7302
 
7303
.notice span {
7304
    font-weight: 500;
7305
    padding-right: 5px;
7306
}
7307
 
7308
.innerbody {
7309
    padding: 15px;
7310
}
7311
 
7312
.innerbody h3 {
7313
    font-size: 18px;
7314
    font-weight: 600;
7315
}
7316
 
7317
.innerbody h4 {
7318
    font-weight: 600;
7319
    font-size: 14px;
7320
    margin-left: -15px;
7321
    float: left;
7322
}
7323
 
7324
.delivery .input-group select {
7325
    width: 150px;
7326
    height: 50px !important;
7327
    font-size: 19px;
7328
    border: 1px solid #e5e5e5;
7329
    border-radius: 3px;
7330
}
7331
 
7332
.input-group-prepend {
7333
    background-color: #f3f3f3;
7334
    color: #bfbfbf;
7335
    text-align: center;
7336
    line-height: 3;
7337
    border: 1px solid #e5e5e5;
7338
}
7339
 
7340
.input-group-text {
7341
    color: #666666 !important;
7342
    background-color: #f5f5f5 !important;
7343
    border: 0px !important;
7344
    border-radius: 3px !important;
7345
}
7346
 
7347
.place-bid-form {
7348
    position: relative;
7349
    left: 20px;
7350
    top: -15px;
7351
    padding-bottom: 15px;
7352
}
7353
 
7354
.place-bid-form .input-group input {
7355
    width: 70px;
7356
    border: 1px solid #e5e5e5;
7357
}
7358
 
7359
.paydel {
7360
    padding: 40px 0 0;
7361
}
7362
 
7363
.beatcompitation {
7364
    background-color: #f3f3f3;
7365
    padding: 15px;
7366
}
7367
 
7368
.beatcompitation h3 {
7369
    font-weight: 500;
7370
}
7371
 
7372
.sponser i {
7373
    background-color: #e44d3a;
7374
    color: #fff;
7375
    margin-right: 5px;
7376
    padding: 2px;
7377
}
7378
 
7379
.sponser h2 {
7380
    font-size: 18px;
7381
    font-weight: 600;
7382
    padding-top: 15px;
7383
    padding-bottom: 15px;
7384
}
7385
 
7386
.sponser {
7387
    padding: 15px;
7388
}
7389
 
7390
.modal-footer {
7391
    display: block !important;
7392
    border-top: none;
7393
    padding: 1rem 0;
7394
}
7395
 
7396
.modal-footer button {
7397
    font-size: 15px;
7398
    font-weight: 500;
7399
    background-color: unset;
7400
    border: none;
7401
    padding: 10px;
7402
    border: 1px solid #d2d2d2;
7403
    border-radius: 3px;
7404
}
7405
 
7406
.modal-footer button:hover {
7407
    background-color: #e44d3a;
7408
    /* color: #fff; */
7409
    /* border: 1px solid #e44d3a; */
7410
}
7411
 
7412
.place-bid-btn {
7413
    font-size: 15px;
7414
    font-weight: 500;
7415
    color: #fff !important;
7416
    background-color: #e44d3a !important;
7417
    border: none;
7418
    padding: 10px;
7419
    border: 1px solid #e44d3a;
7420
    border-radius: 3px;
7421
}
7422
 
7423
.usy-dt .reply {
7424
    margin: 3px 0 0 10px;
7425
    width: 360px;
7426
    height: 40px;
7427
    background-color: #efefef;
7428
    border: 1px solid #e5e5e5;
7429
    padding-left: 10px;
7430
    border-radius: 3px;
7431
}
7432
 
7433
.replybtn {
7434
    background-color: #e44d3a;
7435
    color: #fff;
7436
    padding: 10px;
7437
    margin-left: 15px;
7438
    border-radius: 3px;
7439
}
7440
 
7441
.replybtn:hover {
7442
    color: #fff;
7443
}
7444
 
7445
.rewivew ul li {
7446
    margin-right: 5px !important;
7447
}
7448
 
7449
.security hr {
7450
    margin-right: -15px;
7451
    margin-left: -15px;
7452
}
7453
 
7454
.privacy .la-check {
7455
    float: left;
7456
    font-size: 12px;
7457
    margin: 5px 5px 0 0;
7458
    padding: 3px;
7459
    background-color: #e44d3a;
7460
    color: #fff;
7461
    border-radius: 50%;
7462
}
7463
 
7464
ul#myTab {
7465
    border-bottom: 1px solid #e5e5e5;
7466
}
7467
 
7468
.nav-tabs .nav-link {
7469
    border: none;
7470
}
7471
 
7472
.noborder {
7473
    border-bottom: none;
7474
}
7475
 
7476
.manbids {
7477
    margin-bottom: 0 !important;
7478
}
7479
 
7480
.noreply {
7481
    padding-top: 30px;
7482
}
7483
 
7484
#my-bids .nav-tabs {
7485
    margin-bottom: 20px;
7486
    margin-top: 7px;
7487
    padding-bottom: 0;
7488
}
7489
 
7490
#my-bids ul {
7491
    margin-bottom: 15px;
7492
    margin-top: 7px;
7493
    padding-bottom: 0;
7494
}
7495
 
7496
.savedjob-info p {
7497
    color: #666666;
7498
    margin-top: 5px;
7499
}
7500
 
7501
#my-bids ul li a {
7502
    color: #000000;
7503
    font-size: 16px;
7504
    font-weight: 500;
7505
}
7506
 
7507
#my-bids li a:hover {
7508
    color: #e44d3a;
7509
}
7510
 
7511
#saved-jobs ul {
7512
    margin-bottom: 20px;
7513
}
7514
 
7515
#saved-jobs ul li a {
7516
    color: #000000;
7517
    font-size: 16px;
7518
    font-weight: 500;
7519
}
7520
 
7521
#saved-jobs li a:hover {
7522
    color: #e44d3a;
7523
}
7524
 
7525
.wordpressdevlp h2 {
7526
    font-size: 18px;
7527
    font-weight: 600;
7528
    margin-bottom: 15px;
7529
}
7530
 
7531
#saved-jobs .nav-tabs .nav-item.show .nav-link,
7532
#saved-jobs .nav-tabs .nav-link.active {
7533
    background-color: inherit;
7534
    color: #e44d3a !important;
7535
    padding-bottom: 9px;
7536
    border-bottom: 2px solid #e44d3a !important;
7537
}
7538
 
7539
#my-bids .nav-tabs .nav-item.show .nav-link,
7540
#my-bids .nav-tabs .nav-link.active {
7541
    background-color: inherit;
7542
    color: #e44d3a !important;
7543
    padding-bottom: 9px;
7544
    border-bottom: 2px solid #e44d3a !important;
7545
}
7546
 
7547
.descptab li img {
7548
    float: left !important;
7549
    filter: inherit !important;
7550
}
7551
 
7552
.bklink {
7553
    border-bottom: none !important;
7554
    width: unset !important;
7555
    float: right !important;
7556
}
7557
 
7558
.bklik {
7559
    border-bottom: none !important;
7560
}
7561
 
7562
/*////////////////////////////////////////My css//////////////////////////////// //////////////////////////////////////////////////////////////////////////////*/
7563
 
7564
.savedjob-info li {
7565
    display: inline-block;
7566
    padding-left: 25px;
7567
}
7568
 
7569
.savedjob-info h3 {
7570
    font-size: 14px;
7571
    font-weight: 500;
7572
}
7573
 
7574
.settingjb ul li {
7575
    margin-right: 25px !important;
7576
}
7577
 
7578
.mangebid li {
7579
    padding-left: 0;
7580
    padding-right: 20px;
7581
    padding-top: 10px;
7582
}
7583
 
7584
.bk-links.bklink li {
7585
    padding-right: 0;
7586
}
7587
 
7588
.bidsbtn {
7589
    position: relative;
7590
}
7591
 
7592
.biddersinfo li {
7593
    padding-left: 0;
7594
    padding-right: 20px;
7595
}
7596
 
7597
#review {
7598
    background-color: #fff;
7599
    margin-bottom: 40px;
7600
}
7601
 
7602
.starreview {
7603
    padding-left: 20px;
7604
}
7605
 
7606
.replytext {
7607
    padding-bottom: 20px;
7608
}
7609
 
7610
.starrevi {
7611
    padding-left: 20px;
7612
}
7613
 
7614
.apply-jobbox {
7615
    text-align: center;
7616
}
7617
 
7618
.apply-jobbox form input {
7619
    width: 100%;
7620
    margin-top: 20px;
7621
    padding: 10px;
7622
    color: #222;
7623
    border: 1px solid #e5e5e5;
7624
    border-radius: 3px;
7625
    font-size: 14px;
7626
}
7627
 
7628
.apply-jobbox h3 {
7629
    margin: 20px 0;
7630
}
7631
 
7632
.select-files {
7633
    border: 1px solid #e5e5e5;
7634
    margin-top: 20px;
7635
    padding: 30px;
7636
    background: #efefef;
7637
}
7638
 
7639
.select-files button {
7640
    margin-bottom: 20px;
7641
    background-color: transparent;
7642
    border: 1px solid #e5e5e5;
7643
    padding: 10px 15px 10px 15px;
7644
    border-radius: 5px;
7645
    font-weight: 600;
7646
}
7647
 
7648
.select-files button:hover {
7649
    background-color: #e44d3a;
7650
    color: #fff;
7651
}
7652
 
7653
.close {
7654
    position: absolute;
7655
    right: 0px;
7656
    top: 0px;
7657
    color: #929292;
7658
    border: 1px solid !important;
7659
    border-radius: 50%;
7660
    height: 30px;
7661
    width: 30px;
7662
}
7663
 
7664
.mapouter iframe {
7665
    width: 100%;
7666
    height: 400px;
7667
}
7668
 
7669
.mapouter {
7670
    position: relative;
7671
    text-align: right;
7672
    height: 500px;
7673
    width: 100%;
7674
}
7675
 
7676
.gmap_canvas {
7677
    overflow: hidden;
7678
    background: none !important;
7679
}
7680
 
7681
.video-iframe {
7682
    width: 100%;
7683
    height: 400px;
7684
}
7685
 
7686
.custom-file-input {
7687
    color: transparent;
7688
    opacity: 1;
7689
    /* margin-left: 140px; */
7690
    margin-bottom: 10px;
7691
}
7692
 
7693
.custom-file-input::-webkit-file-upload-button {
7694
    visibility: hidden;
7695
}
7696
 
7697
.custom-file-input::before {
7698
    content: "Select Files";
7699
    color: #fff;
7700
    display: inline-block;
7701
    border: 1px solid #e5e5e5;
7702
    border-radius: 3px;
7703
    background: #e44d3a;
7704
    font-weight: 500;
7705
    padding: 10px 15px;
7706
    outline: none;
7707
    white-space: nowrap;
7708
    -webkit-user-select: none;
7709
    cursor: pointer;
7710
}
7711
 
7712
.custom-file-input:hover::before {
7713
    background-color: #e44d3a;
7714
    color: #fff;
7715
}
7716
 
7717
.custom-file-input:active {
7718
    outline: 0;
7719
}
7720
 
7721
.custom-file-input:active::before {
7722
    background: #e44d3a;
7723
    color: #fff;
7724
}
7725
 
7726
.bids-time {
7727
    float: right;
7728
}
7729
 
7730
.saved-post {
7731
    padding: 0;
7732
}
7733
 
7734
.saved-post p {
7735
    padding-bottom: 20px;
7736
}
7737
 
7738
.saved-info li {
7739
    padding-right: 25px;
7740
    padding-left: 0;
7741
}
7742
 
7743
.saved-btn {
7744
    padding: 0;
7745
    margin-bottom: -12px;
7746
}
7747
 
7748
.applied-post {
7749
    padding: 0;
7750
}
7751
 
7752
.post-bid {
7753
    padding: 0 !important;
7754
}
7755
 
7756
.bidsbtn {
7757
    padding-top: 0 !important;
7758
}
7759
 
7760
.active-bids {
7761
    padding: 0;
7762
}
7763
 
7764
.activ-bidinfo li {
7765
    padding-top: 10px;
7766
    padding-left: 0;
7767
    padding-right: 25px;
7768
}
7769
 
7770
.activebtn {
7771
    padding-left: 0;
7772
}
7773
 
7774
.p-all {
7775
    padding: 0px;
7776
    float: left;
7777
    width: 100%;
7778
    position: relative;
7779
}
7780
 
7781
.toggle-btn .custom-switch .custom-control-label::before {
7782
    left: -2.25rem;
7783
    width: 70px;
7784
    pointer-events: all;
7785
    border-radius: 100px;
7786
    height: 30px;
7787
    top: -1px;
7788
    box-shadow: none;
7789
}
7790
 
7791
.toggle-btn .custom-control-label::before {
7792
    position: absolute;
7793
    top: 0.25rem;
7794
    left: -1.5rem;
7795
    display: block;
7796
    width: 1rem;
7797
    height: 1rem;
7798
    pointer-events: none;
7799
    content: "";
7800
    background-color: #fff;
7801
    border: #e1e1e1 solid 2px;
7802
}
7803
 
7804
.custom-control-input:checked~.custom-control-label::before {
7805
    color: #fff;
7806
    border-color: #e44d3a;
7807
    background-color: #e44d3a;
7808
    box-shadow: none;
7809
    outline: none;
7810
}
7811
 
7812
.toggle-btn .custom-switch .custom-control-label::after {
7813
    top: calc(-1px + 2px);
7814
    left: calc(-36px + 2px);
7815
    width: calc(30px - 4px);
7816
    height: calc(30px - 4px);
7817
    background-color: #e1e1e1;
7818
    border-radius: 100%;
7819
    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;
7820
    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;
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, -webkit-transform 0.15s ease-in-out;
7822
}
7823
 
7824
.toggle-btn .custom-control-label::after {
7825
    position: absolute;
7826
    top: 0.25rem;
7827
    left: -1.5rem;
7828
    display: block;
7829
    width: 0;
7830
    height: 0;
7831
    content: "";
7832
    background: no-repeat 50%/50% 50%;
7833
}
7834
 
7835
.toggle-btn .custom-control-label {
7836
    position: initial;
7837
    margin-bottom: 0;
7838
    vertical-align: top;
7839
}
7840
 
7841
.toggle-btn .custom-switch .custom-control-input:checked~.custom-control-label::after {
7842
    background-color: #fff;
7843
    -webkit-transform: translateX(2.5rem);
7844
    transform: translateX(2.5rem);
7845
}
7846
 
7847
.custom-control-label {
7848
    position: relative;
7849
    margin-bottom: 0;
7850
    vertical-align: top;
7851
    line-height: 24px;
7852
    font-size: 14px;
7853
    color: #666666;
7854
}
7855
 
7856
.small-text-children p,
7857
.small-text-children span {
7858
    font-size: .8rem;
7859
}
7860
 
7861
.search-item-selected {
7862
    padding: 2%;
1821 steven 7863
    background: #F0F0F0;
1239 steven 7864
    border-radius: 6px;
7865
    font-weight: bold;
7866
}
7867
 
7868
main {
7869
    background-color: #fff !important;
7870
}
7871
 
7872
.row .sc-dkzDqf {
7873
    margin: 0 auto;
7874
}
7875
 
7876
.test-section .title,
7877
.test-section .description {
7878
    margin-bottom: 10px;
7879
}
7880
 
7881
.test-section .btn-danger {
7882
    margin-right: 10px;
7883
}
7884
 
7885
.test-section .panel-body {
7886
    padding: 20px 0px;
7887
}
7888
 
7889
.test-section .panel {
7890
    margin-top: 20px;
7891
    padding-bottom: 10px;
7892
}
7893
 
7894
.test-section .panel-title {
7895
    font-size: 16px;
7896
    font-weight: bold;
7897
    text-transform: uppercase;
7898
}
7899
 
7900
.test-section .np-padding {
7901
    padding: 0px;
7902
}
7903
 
7904
.test-section .checkbox {
7905
    display: flex;
7906
    margin: 20px 0px;
7907
}
7908
 
7909
.test-section .option {
7910
    margin-left: 10px;
7911
}
7912
 
7913
.checkbox input[type=checkbox],
7914
input[type=radio] {
7915
    margin-top: 5px !important;
7916
}
7917
 
7918
.test-section h6 {
7919
    margin-bottom: 10px;
7920
    color: #0860bf;
7921
}
7922
 
7923
.wizard {
7924
    display: flex;
7925
    margin-top: 10px;
7926
}
7927
 
7928
.wizard li {
7929
    width: 50%;
7930
    display: inline-block;
7931
}
7932
 
7933
.btn-secondary:disabled,
7934
.btn-primary:disabled {
7935
    cursor: no-drop;
7936
}
7937
 
7938
.test-section .btn-primary {
7939
    margin-left: 10px
7940
}
7941
 
7942
.previous {
7943
    text-align: left;
7944
}
7945
 
7946
.next {
7947
    text-align: right;
7948
}
7949
 
7950
.test-section .close {
7951
    border: none !important;
7952
    border-radius: 0px !important;
7953
}
7954
 
7955
.ratin-range {
7956
    display: block;
7957
}
7958
 
7959
.ratin-range li {
7960
    display: inline-block;
7961
    width: 6%;
7962
}
7963
 
7964
.ratin-range li .option {
7965
    margin-top: 2px !important;
7966
}
7967
 
7968
#react-self-evaluation .company-up-info ul {
7969
    width: 100%;
7970
    position: absolute;
7971
    float: left;
7972
    left: 0px;
7973
    bottom: 4vw;
7974
}
7975
 
7976
#react-self-evaluation .company-up-info {
7977
    padding: 30px 10px;
7978
    min-height: 20vw;
7979
    border: 1px solid #e5e5e5
7980
}
7981
 
7982
#react-self-evaluation .company-up-info h3 {
7983
    width: 90%;
7984
    margin: 5px auto;
7985
}
7986
 
7987
.mb10 {
597 geraldo 7988
    margin-bottom: 3vw;
598 geraldo 7989
}
1239 steven 7990
 
7991
.opt-h6 {
7992
    font-weight: 600 !important;
7993
    color: #000 !important;
597 geraldo 7994
}