Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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