Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1803 | Rev 1805 | 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
 
1803 steven 4281
.search-box form button {
4282
    position: absolute;
4283
    top: 0;
4284
    right: 0;
1804 steven 4285
    border: solid 1px var(--border-light-gray);
1803 steven 4286
    color: #ffffff;
4287
    font-size: 16px;
4288
    font-weight: 500;
4289
    height: 100%;
4290
    padding: 0 28px;
4291
    border: 0;
4292
    cursor: pointer;
4293
    -webkit-border-radius: 0 4px 4px 0;
4294
    -moz-border-radius: 0 4px 4px 0;
4295
    -ms-border-radius: 0 4px 4px 0;
4296
    -o-border-radius: 0 4px 4px 0;
4297
    border-radius: 0 4px 4px 0;
4298
}
4299
 
1239 steven 4300
/* =============== filter-secs ============== */
4301
 
4302
.filter-secs {
4303
    float: left;
4304
    width: 100%;
4305
    /* background-color: #fff; */
4306
    box-shadow: 0px 2px #e4e4e4;
4307
    border: 1px solid #e5e5e5;
4308
}
4309
 
4310
.filter-heading {
4311
    float: left;
4312
    width: 100%;
4313
    padding: 15px 20px;
4314
    border-bottom: 1px solid #e5e5e5;
4315
    margin-bottom: 15px;
4316
}
4317
 
4318
.filter-heading h3 {
4319
    float: left;
4320
    color: #e44d3a;
4321
    font-size: 18px;
4322
    font-weight: 600;
4323
}
4324
 
4325
.filter-heading a {
4326
    float: right;
4327
    color: #686868;
4328
    font-size: 14px;
4329
    margin-top: 4px;
4330
}
4331
 
4332
.filter-ttl {
4333
    float: left;
4334
    width: 100%;
4335
    border-bottom: 1px solid #e5e5e5;
4336
    padding: 0 0 16px 0;
4337
    margin-bottom: 10px;
4338
}
4339
 
4340
.filter--tt2 {
4341
    margin-bottom: 0px !important;
4342
}
4343
 
4344
.top--1 {
4345
    margin-top: 20px;
4346
}
4347
 
4348
.filter--tt2 .dropdown .dropdown-menu a {
4349
    float: none;
4350
    color: #666666 !important;
4351
    margin-bottom: 12px !important;
4352
}
4353
 
4354
.filter--tt2 .dropdown .dropdown-menu a:hover {
4355
    color: #e44d3a !important;
4356
    background: none !important;
4357
}
4358
 
4359
.filter--tt2 .dropdown .dropdown-menu a:focus {
4360
    color: #e44d3a !important;
4361
    background: none !important;
4362
}
4363
 
4364
.filter--tt2 a {
4365
    float: left !important;
4366
    padding: 0 0 0 15px !important;
4367
    font-size: 16px !important;
4368
    color: #000000 !important;
4369
    font-weight: 500 !important;
4370
}
4371
 
4372
.filter-ttl h3 {
4373
    float: left;
4374
    padding: 0;
4375
    font-size: 16px;
4376
    color: #000000;
4377
    font-weight: 400;
4378
}
4379
 
4380
.filter-ttl a {
4381
    float: right;
4382
    font-size: 14px;
4383
    color: #666666;
4384
}
4385
 
4386
.filter-ttl .dropdown a {
4387
    float: none;
4388
    color: #666666;
4389
}
4390
 
4391
.filter-dd {
4392
    float: left;
4393
    width: 100%;
4394
    margin-bottom: 15px;
4395
}
4396
 
4397
.filter-dd form {
4398
    float: left;
4399
    width: 100%;
4400
    position: relative;
4401
}
4402
 
4403
.filter-dd form input,
4404
.filter-dd form select {
4405
    width: 100%;
4406
    height: 30px;
4407
    background-color: #f2f2f2;
4408
    padding: 0 10px;
4409
    color: #b2b2b2;
4410
    font-size: 12px;
4411
    font-weight: 600;
4412
    border: 0;
4413
    border: 1px solid #e5e5e5;
4414
}
4415
 
4416
.job-tp i {
4417
    color: #666666;
4418
    position: absolute;
4419
    top: 9px;
4420
    right: 15px;
4421
    font-size: 14px;
4422
}
4423
 
4424
.avail-checks {
4425
    float: left;
4426
    width: 100%;
4427
    margin-top: 7px;
4428
}
4429
 
4430
.avail-checks li {
4431
    float: left;
4432
    width: 100%;
4433
    margin-bottom: 10px;
4434
}
4435
 
4436
.avail-checks li:last-child {
4437
    margin-bottom: 0;
4438
}
4439
 
4440
.avail-checks li input[type="radio"] {
4441
    display: none;
4442
}
4443
 
4444
.avail-checks li label {
4445
    float: left;
4446
}
4447
 
4448
.avail-checks li input[type="radio"]+label span {
4449
    display: inline-block;
4450
    width: 15px;
4451
    height: 15px;
4452
    position: relative;
4453
    margin-top: 3px;
4454
    border: 1px solid #d2d2d2;
4455
    -webkit-border-radius: 100px;
4456
    -moz-border-radius: 100px;
4457
    -ms-border-radius: 100px;
4458
    -o-border-radius: 100px;
4459
    border-radius: 100px;
4460
}
4461
 
4462
.avail-checks li input[type="radio"]+label span:before {
4463
    content: "";
4464
    opacity: 0;
4465
    visibility: hidden;
4466
    position: absolute;
4467
    width: 7px;
4468
    height: 7px;
4469
    -webkit-border-radius: 100px;
4470
    -moz-border-radius: 100px;
4471
    -ms-border-radius: 100px;
4472
    -o-border-radius: 100px;
4473
    border-radius: 100px;
4474
    background-color: #e44d3a;
4475
    top: 3px;
4476
    left: 3px;
4477
}
4478
 
4479
.avail-checks li input[type="radio"]:checked+label span:before {
4480
    opacity: 1;
4481
    visibility: visible;
4482
}
4483
 
4484
.avail-checks li small {
4485
    color: #909090;
4486
    font-size: 14px;
4487
    padding-left: 10px;
4488
    font-weight: 500;
4489
}
4490
 
4491
/* =========== Range Slider ========== */
4492
 
4493
.rg-slider {
4494
    float: left;
4495
    width: 100%;
4496
}
4497
 
4498
.slider-container {
4499
    width: 100% !important;
4500
    padding-top: 50px;
4501
    position: relative;
4502
}
4503
 
4504
.theme-green .back-bar {
4505
    height: 5px;
4506
    border: 1px solid #e5e5e5;
4507
    -webkit-border-radius: 30px;
4508
    -moz-border-radius: 30px;
4509
    -ms-border-radius: 30px;
4510
    -o-border-radius: 30px;
4511
    border-radius: 30px;
4512
}
4513
 
4514
.theme-green .back-bar .pointer {
4515
    width: 17px;
4516
    height: 17px;
4517
    -webkit-border-radius: 100px;
4518
    -moz-border-radius: 100px;
4519
    -ms-border-radius: 100px;
4520
    -o-border-radius: 100px;
4521
    border-radius: 100px;
4522
    background-color: #e44d3a;
4523
    border: 2px solid #e3e3e3;
4524
    -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4525
    -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4526
    -ms-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4527
    -o-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4528
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
4529
}
4530
 
4531
.theme-green .back-bar .pointer {
4532
    top: -7px;
4533
}
4534
 
4535
.slider-container .back-bar .pointer-label {
4536
    top: -50px;
4537
    height: 26px;
4538
    background-color: #e5e5e5;
4539
    -webkit-border-radius: 30px;
4540
    -moz-border-radius: 30px;
4541
    -ms-border-radius: 30px;
4542
    -o-border-radius: 30px;
4543
    border-radius: 30px;
4544
    line-height: 26px;
4545
    width: 50px;
4546
}
4547
 
4548
.pointer-label.low {
4549
    left: 0 !important;
4550
}
4551
 
4552
.pointer-label.high {
4553
    left: 70px !important;
4554
}
4555
 
4556
.pointer-label.low:before {
4557
    content: "";
4558
    position: absolute;
4559
    top: 13px;
4560
    right: -14px;
4561
    width: 8px;
4562
    height: 1px;
4563
    background-color: #e5e5e5;
4564
}
4565
 
4566
.rg-limit {
4567
    float: left;
4568
    width: 100%;
4569
    margin-top: 16px;
4570
}
4571
 
4572
.rg-limit h4 {
4573
    color: #686868;
4574
    font-size: 15px;
4575
    font-weight: 600;
4576
    float: left;
4577
}
4578
 
4579
.rg-limit h4:last-child {
4580
    float: right;
4581
}
4582
 
4583
/* ============== chatbox-list ============== */
4584
 
4585
.chatbox-list {
4586
    position: fixed;
4587
    bottom: 0;
4588
    right: 0;
4589
}
4590
 
4591
.chatbox {
4592
    display: inline-block;
4593
    margin-right: 13px;
4594
    position: relative;
4595
}
4596
 
4597
.chat-mg {
4598
    display: inline-block;
4599
    position: relative;
4600
}
4601
 
4602
.chat-mg img {
4603
    width: 70px;
4604
    height: 70px;
4605
    -webkit-border-radius: 100px;
4606
    -moz-border-radius: 100px;
4607
    -ms-border-radius: 100px;
4608
    -o-border-radius: 100px;
4609
    border-radius: 100px;
4610
}
4611
 
4612
.chat-mg span {
4613
    position: absolute;
4614
    top: -5px;
4615
    right: 10px;
4616
    width: 20px;
4617
    height: 20px;
4618
    background-color: #e44d3a;
4619
    text-align: center;
4620
    font-size: 12px;
4621
    color: #fff;
4622
    line-height: 20px;
4623
    -webkit-border-radius: 100px;
4624
    -moz-border-radius: 100px;
4625
    -ms-border-radius: 100px;
4626
    -o-border-radius: 100px;
4627
    border-radius: 100px;
4628
}
4629
 
4630
.chat-mg.bx img {
4631
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4632
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4633
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4634
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4635
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
4636
}
4637
 
4638
.conversation-box {
4639
    position: absolute;
4640
    bottom: 132%;
4641
    right: 100%;
4642
    width: 350px;
4643
    background-color: #fff;
4644
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4645
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4646
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4647
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4648
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
4649
    opacity: 0;
4650
    visibility: hidden;
4651
    z-index: 0;
4652
}
4653
 
4654
.conversation-box.active {
4655
    opacity: 1;
4656
    visibility: visible;
4657
    z-index: 9999;
4658
}
4659
 
4660
.conversation-box:before {
4661
    content: "";
4662
    position: absolute;
4663
    bottom: -7px;
4664
    right: 26px;
4665
    border-top: 15px solid #fff;
4666
    border-right: 15px solid transparent;
4667
    -webkit-transform: rotate(225deg);
4668
    -moz-transform: rotate(225deg);
4669
    -ms-transform: rotate(225deg);
4670
    -o-transform: rotate(225deg);
4671
    transform: rotate(225deg);
4672
}
4673
 
4674
.con-title {
4675
    float: left;
4676
    width: 100%;
4677
    background-color: #e44d3a;
4678
    padding: 15px 25px;
4679
    -webkit-border-radius: 10px 10px 0 0;
4680
    -moz-border-radius: 10px 10px 0 0;
4681
    -ms-border-radius: 10px 10px 0 0;
4682
    -o-border-radius: 10px 10px 0 0;
4683
    border-radius: 10px 10px 0 0;
4684
}
4685
 
4686
.con-title h3 {
4687
    float: left;
4688
    color: #ffffff;
4689
    font-size: 16px;
4690
    font-weight: 600;
4691
}
4692
 
4693
.con-title>a {
4694
    float: right;
4695
    color: #fff;
4696
    font-size: 20px;
4697
}
4698
 
4699
.chat-list {
4700
    float: left;
4701
    width: 100%;
4702
    min-height: 390px;
4703
}
4704
 
4705
.conv-list {
4706
    float: left;
4707
    width: 100%;
4708
    display: table;
4709
    padding: 20px 25px;
4710
    position: relative;
4711
}
4712
 
4713
.conv-list:hover,
4714
.conv-list.active {
4715
    background-color: #efefef;
4716
}
4717
 
4718
.msg-numbers {
4719
    position: absolute;
4720
    bottom: 18px;
4721
    right: 25px;
4722
    width: 25px;
4723
    height: 25px;
4724
    background-color: #e77667;
4725
    text-align: center;
4726
    line-height: 25px;
4727
    color: #fff;
4728
    font-size: 13px;
4729
    -webkit-border-radius: 100px;
4730
    -moz-border-radius: 100px;
4731
    -ms-border-radius: 100px;
4732
    -o-border-radius: 100px;
4733
    border-radius: 100px;
4734
}
4735
 
4736
.usrr-pic {
4737
    display: table-cell;
4738
    position: relative;
4739
}
4740
 
4741
.active-status {
4742
    width: 9px;
4743
    height: 9px;
4744
    border: 2px solid #ecf5fb;
4745
    -webkit-border-radius: 100px;
4746
    -moz-border-radius: 100px;
4747
    -ms-border-radius: 100px;
4748
    -o-border-radius: 100px;
4749
    border-radius: 100px;
4750
    position: absolute;
4751
    top: -3px;
4752
    right: 0;
4753
}
4754
 
4755
.activee {
4756
    background-color: #e44d3a;
4757
}
4758
 
4759
.usy-info {
4760
    display: table-cell;
4761
    vertical-align: top;
4762
    width: 100%;
4763
    padding-left: 15px;
4764
}
4765
 
4766
.usy-info h3 {
4767
    color: #000000;
4768
    font-size: 18px;
4769
    font-weight: 600;
4770
    margin-bottom: 5px;
4771
}
4772
 
4773
.usy-info span {
4774
    color: #686868;
4775
    font-size: 16px;
4776
    float: left;
4777
}
4778
 
4779
.usy-info span img {
4780
    padding-left: 5px;
4781
    float: right;
4782
}
4783
 
4784
.ct-time {
4785
    position: absolute;
4786
    top: 20px;
4787
    right: 25px;
4788
}
4789
 
4790
.ct-time span {
4791
    color: #b2b2b2;
4792
    font-size: 14px;
4793
}
4794
 
4795
.st-icons {
4796
    float: right;
4797
    margin-top: 7px;
4798
}
4799
 
4800
.st-icons a {
4801
    color: #fff;
4802
    font-size: 20px;
4803
    margin-right: 5px;
4804
}
4805
 
4806
.chat-hist {
4807
    float: left;
4808
    width: 100%;
4809
    background-color: #fff;
4810
    height: 280px;
4811
}
4812
 
4813
.chat-msg {
4814
    float: left;
4815
    width: 100%;
4816
    padding-right: 25px;
4817
    margin-bottom: 15px;
4818
}
4819
 
4820
.chat-msg p {
4821
    color: #ffffff;
4822
    font-size: 14px;
4823
    background-color: #e44d3a;
4824
    line-height: 18px;
4825
    -webkit-border-radius: 15px;
4826
    -moz-border-radius: 15px;
4827
    -ms-border-radius: 15px;
4828
    -o-border-radius: 15px;
4829
    border-radius: 15px;
4830
    padding: 10px 15px;
4831
    width: 80%;
4832
    float: right;
4833
    margin-bottom: 10px;
4834
}
4835
 
4836
.mg-3 {
4837
    margin-bottom: 3px;
4838
}
4839
 
4840
.chat-msg span {
4841
    float: right;
4842
    color: #b1b1b1;
4843
    width: 100%;
4844
    font-size: 9px;
4845
    text-align: right;
4846
}
4847
 
4848
.status-info {
4849
    width: 8px;
4850
    height: 8px;
4851
    background-color: #fff;
4852
    -webkit-border-radius: 100px;
4853
    -moz-border-radius: 100px;
4854
    -ms-border-radius: 100px;
4855
    -o-border-radius: 100px;
4856
    border-radius: 100px;
4857
    display: inline-block;
4858
    margin-left: 7px;
4859
}
4860
 
4861
.chat-user-info h3 {
4862
    margin-top: 7px;
4863
    margin-left: 10px;
4864
}
4865
 
4866
.date-nd {
4867
    float: left;
4868
    width: 100%;
4869
    text-align: center;
4870
    margin-bottom: 20px;
4871
    position: relative;
4872
}
4873
 
4874
.date-nd:before,
4875
.date-nd:after {
4876
    content: "";
4877
    position: absolute;
4878
    top: 10px;
4879
    left: 15px;
4880
    width: 92px;
4881
    height: 1px;
4882
    background-color: #e5e5e5;
4883
}
4884
 
4885
.date-nd:after {
4886
    left: auto;
4887
    right: 15px;
4888
}
4889
 
4890
.date-nd span {
4891
    color: #b1b1b1;
4892
    font-size: 12px;
4893
    text-align: center;
4894
}
4895
 
4896
.chat-msg.st2 p {
4897
    background-color: #efefef;
4898
    color: #686868;
4899
    float: left;
4900
    width: 55%;
4901
}
4902
 
4903
.chat-msg.st2 {
4904
    padding-left: 25px;
4905
}
4906
 
4907
.chat-msg.st2 span {
4908
    float: left;
4909
    text-align: left;
4910
}
4911
 
4912
/* =========== typing-msg =========== */
4913
 
4914
.typing-msg {
4915
    float: left;
4916
    width: 100%;
4917
    border-top: 1px solid #e6e6e6;
4918
    padding-top: 15px;
4919
}
4920
 
4921
.typing-msg form {
4922
    float: left;
4923
    width: 100%;
4924
    position: relative;
4925
}
4926
 
4927
.typing-msg form textarea {
4928
    width: 100%;
4929
    height: 30px;
4930
    background-color: #fff;
4931
    padding: 0 20px;
4932
    color: #b2b2b2;
4933
    font-size: 16px;
4934
    border: 0;
4935
    resize: none;
4936
}
4937
 
4938
.typing-msg form button {
4939
    color: #e44d3a;
4940
    font-size: 18px;
4941
    font-weight: 600;
4942
    position: absolute;
4943
    top: 2px;
4944
    right: 20px;
4945
    background: none;
4946
    border: 0;
4947
    cursor: pointer;
4948
}
4949
 
4950
.ft-options {
4951
    float: left;
4952
    width: 100%;
4953
    padding: 0 20px 8px 20px;
4954
}
4955
 
4956
.ft-options li {
4957
    display: inline-block;
4958
    margin-right: 15px;
4959
}
4960
 
4961
.ft-options li a {
4962
    color: #b2b2b2;
4963
    font-size: 24px;
4964
    display: inline-block;
4965
}
4966
 
4967
.mCSB_scrollTools {
4968
    right: -5px;
4969
}
4970
 
4971
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
4972
    background-color: #cccccc;
4973
    width: 5px;
4974
}
4975
 
4976
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
4977
    opacity: 0;
4978
}
4979
 
4980
/* ============ Menu Btn =============*/
4981
 
4982
.menu-btn {
4983
    float: right;
4984
    display: none;
4985
}
4986
 
4987
.menu-btn a {
4988
    font-size: 24px;
4989
    color: #fff;
4990
    display: inline-block;
4991
    padding-top: 16px;
4992
    padding-left: 20px;
4993
}
4994
 
4995
/* ============= account-tabs-setting ============ */
4996
 
4997
/* .profile-account-setting {} */
4998
 
4999
.account-tabs-setting {
5000
    float: left;
5001
    width: 100%;
5002
    padding: 70px 0;
5003
}
5004
 
5005
.acc-leftbar {
5006
    float: left;
5007
    width: 100%;
5008
    background-color: #fff;
5009
    border-left: 1px solid #e5e5e5;
5010
    border-bottom: 1px solid #e5e5e5;
5011
    border-right: 1px solid #e5e5e5;
5012
}
5013
 
5014
.acc-leftbar .nav-tabs>a {
5015
    float: left;
5016
    width: 100%;
5017
    background: none;
5018
    padding: 18px 20px;
5019
    border-bottom: 1px solid #e5e5e5;
5020
    border-left: 0;
5021
    border-right: 0;
5022
    color: #000000;
5023
    font-size: 16px;
5024
    font-weight: 500;
5025
    -webkit-border-radius: 0;
5026
    -moz-border-radius: 0;
5027
    -ms-border-radius: 0;
5028
    -o-border-radius: 0;
5029
    border-radius: 0;
5030
    border-top: 0;
5031
}
5032
 
5033
.nav-tabs {
5034
    border-bottom: 0;
5035
}
5036
 
5037
.acc-leftbar .nav-tabs>a:last-child {
5038
    border-bottom: 0;
5039
}
5040
 
5041
.acc-leftbar .nav-tabs>a i {
5042
    padding-right: 15px;
5043
    font-size: 20px;
5044
    position: relative;
5045
    top: 2px;
5046
    font-weight: 700;
5047
    width: 40px;
5048
}
5049
 
5050
.nav-tabs .nav-item.show .nav-link,
5051
.nav-tabs .nav-link.active {
5052
    background-color: inherit;
5053
    color: #e44d3a;
5054
    border-color: inherit;
5055
}
5056
 
5057
/* ============= acc-setting ============ */
5058
 
5059
.acc-setting {
5060
    float: left;
5061
    width: 100%;
5062
    background-color: #fff;
5063
    border-left: 1px solid #e5e5e5;
5064
    border-bottom: 1px solid #e5e5e5;
5065
    border-right: 1px solid #e5e5e5;
5066
    -webkit-box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5067
    -moz-box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5068
    -ms-box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5069
    -o-box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5070
    box-shadow: 1px 0 4px rgba(0, 0, 0, 0.24);
5071
}
5072
 
5073
.acc-setting form {
5074
    float: left;
5075
    width: 100%;
5076
}
5077
 
5078
.acc-setting>h3 {
5079
    width: 100%;
5080
    color: #000000;
5081
    font-weight: 600;
5082
    font-size: 18px;
5083
    text-transform: capitalize;
5084
    border-bottom: 1px solid #e5e5e5;
5085
    padding: 17px 20px;
5086
}
5087
 
5088
.notbar {
5089
    float: left;
5090
    width: 100%;
5091
    border-bottom: 1px solid #e5e5e5;
5092
    padding: 20px;
5093
    position: relative;
5094
}
5095
 
5096
.notbar h4 {
5097
    color: #000000;
5098
    font-size: 16px;
5099
    font-weight: 600;
5100
    margin-bottom: 5px;
5101
}
5102
 
5103
.notbar p {
5104
    color: #686868;
5105
    font-size: 14px;
5106
    line-height: 24px;
5107
    width: 75%;
5108
}
5109
 
5110
.toggle-btn {
5111
    position: absolute;
5112
    top: 35px;
5113
    right: 20px;
5114
}
5115
 
5116
.save-stngs {
5117
    float: left;
5118
    width: 100%;
5119
    padding: 30px 20px 50px 20px;
5120
}
5121
 
5122
.save-stngs.pd2 {
5123
    padding: 25px 20px 42px 20px;
5124
}
5125
 
5126
.save-stngs.pd3 {
5127
    padding: 25px 20px 25px 20px;
5128
}
5129
 
5130
.save-stngs ul li {
5131
    display: inline-block;
5132
    margin-right: 17px;
5133
}
5134
 
5135
.save-stngs ul li button {
5136
    display: inline-block;
5137
    color: #000000;
5138
    font-size: 16px;
5139
    border: 1px solid #e5e5e5;
5140
    height: 40px;
5141
    line-height: 40px;
5142
    padding: 0 22px;
5143
    font-weight: 600;
5144
    background: none;
5145
    cursor: pointer;
5146
}
5147
 
5148
.save-stngs ul li button:hover {
5149
    background-color: #e44d3a;
5150
    color: #fff;
5151
    border-color: transparent;
5152
}
5153
 
5154
/* =============== Password Update ============ */
5155
 
5156
.cp-field {
5157
    float: left;
5158
    width: 100%;
5159
    margin-top: 29.4px;
5160
    padding: 0 20px;
5161
}
5162
 
5163
.cp-field h5 {
5164
    color: #000000;
5165
    font-size: 16px;
5166
    font-weight: 600;
5167
    float: left;
5168
    width: 100%;
5169
    margin-bottom: 10px;
5170
}
5171
 
5172
.cp-field h5 a {
5173
    color: #000;
5174
}
5175
 
5176
.cpp-fiel {
5177
    float: left;
5178
    width: 100%;
5179
    position: relative;
5180
}
5181
 
5182
.cp-field input {
5183
    height: 40px;
5184
    padding: 0 40px;
5185
}
5186
 
5187
.cp-field input,
5188
.cp-field textarea {
5189
    width: 100%;
5190
    border: 1px solid #e5e5e5;
5191
}
5192
 
5193
.cp-field textarea {
5194
    padding: 20px;
5195
    height: 115px;
5196
}
5197
 
5198
.cpp-fiel i {
5199
    position: absolute;
5200
    top: 12px;
5201
    left: 15px;
5202
    color: #b2b2b2;
5203
    font-size: 16px;
5204
}
5205
 
5206
.cp-field>p {
5207
    /* float: left; width: 100%; color: #686868; font-size: 14px; line-height: 24px; margin-top: 5px; */
5208
}
5209
 
5210
/* =============== notifications-list ============= */
5211
 
5212
.notifications-list {
5213
    float: left;
5214
    width: 100%;
5215
}
5216
 
5217
.notfication-details {
5218
    float: left;
5219
    width: 100%;
5220
    padding: 20px;
5221
    border-bottom: 1px solid #e5e5e5;
5222
}
5223
 
5224
.notfication-details:last-child {
5225
    border-bottom: 0;
5226
}
5227
 
5228
.noty-user-img {
5229
    float: left;
5230
    width: 35px;
5231
}
5232
 
5233
.noty-user-img img {
5234
    width: 100%;
5235
}
5236
 
5237
.notification-info {
5238
    float: left;
5239
    width: auto;
5240
    padding-left: 10px;
5241
}
5242
 
5243
.notification-info h3 {
5244
    color: #686868;
5245
    font-size: 14px;
5246
    font-weight: 500;
5247
    border: 0;
5248
    padding: 0;
5249
    margin-bottom: 6px;
5250
}
5251
 
5252
.notification-info h3 a {
5253
    color: #000000;
5254
    font-size: 16px;
5255
    font-weight: 600;
5256
    display: inline-block;
5257
}
5258
 
5259
.notification-info>span {
5260
    display: inline-block;
5261
    color: #b2b2b2;
5262
    font-size: 12px;
5263
    font-weight: 600;
5264
}
5265
 
5266
/* ============== requests-list ============== */
5267
 
5268
.requests-list {
5269
    float: left;
5270
    width: 100%;
5271
    padding-bottom: 0;
5272
}
5273
 
5274
.request-details {
5275
    float: left;
5276
    width: 100%;
5277
    padding: 20px;
5278
    border-bottom: 1px solid #e5e5e5;
5279
}
5280
 
5281
.request-details:last-child {
5282
    border-bottom: 0;
5283
}
5284
 
5285
.request-info {
5286
    float: left;
5287
    padding-left: 10px;
5288
}
5289
 
5290
.request-info h3 {
5291
    color: #000000;
5292
    font-size: 14px;
5293
    font-weight: 600;
5294
    padding: 0;
5295
    border: 0;
5296
    margin-bottom: 3px;
5297
}
5298
 
5299
.request-info span {
5300
    color: #686868;
5301
    font-size: 12px;
5302
    display: inline-block;
5303
}
5304
 
5305
.accept-feat {
5306
    float: right;
5307
}
5308
 
5309
.accept-feat ul li {
5310
    display: inline-block;
5311
}
5312
 
5313
.accept-feat ul li button {
5314
    cursor: pointer;
5315
}
5316
 
5317
.accept-req {
5318
    color: #ffffff;
5319
    font-size: 16px;
5320
    background-color: #51a5fb;
5321
    height: 30px;
5322
    padding: 0 20px;
5323
    font-weight: 600;
5324
    border: 0;
5325
    border: 1px solid #51a5fb;
5326
}
5327
 
5328
.close-req {
5329
    height: 30px;
5330
    width: 30px;
5331
    text-align: center;
5332
    line-height: 30px;
5333
    border: 1px solid #e5e5e5;
5334
    background: inherit;
5335
    color: #b2b2b2;
5336
    margin-left: 7px;
5337
}
5338
 
5339
.close-req i {
5340
    font-weight: 600;
5341
}
5342
 
5343
/* ============= Profile Sattus =========== */
5344
 
5345
.profile-bx-details {
5346
    float: left;
5347
    width: 100%;
5348
    padding: 30px 7px 30px 7px;
5349
}
5350
 
5351
.profile-bx-details .row .col-lg-3 {
5352
    padding: 0 7px;
5353
}
5354
 
5355
.profile-bx-info {
5356
    float: left;
5357
    width: 100%;
5358
    background-color: #f2f2f2;
5359
    padding: 20px;
5360
    border: 1px solid #e5e5e5;
5361
}
5362
 
5363
.pro-bx {
5364
    float: left;
5365
    width: 100%;
5366
    border-bottom: 1px solid #e5e5e5;
5367
    padding-bottom: 10px;
5368
}
5369
 
5370
.bx-info {
5371
    float: left;
5372
    margin-top: 7px;
5373
    padding-left: 10px;
5374
}
5375
 
5376
.bx-info h3 {
5377
    color: #e44d3a;
5378
    font-size: 20px;
5379
    font-weight: 600;
5380
    margin-bottom: 5px;
5381
}
5382
 
5383
.bx-info h5 {
5384
    color: #000000;
5385
    font-size: 14px;
5386
    font-weight: 600;
5387
    margin: 0;
5388
    padding: 0;
5389
    border: 0;
5390
}
5391
 
5392
.pd-left-20 {
5393
    padding-left: 20px;
5394
    padding-right: 0;
5395
}
5396
 
5397
.pd-left-15 {
5398
    padding-left: 15px;
5399
    padding-right: 0;
5400
}
5401
 
5402
.pd-left-right {
5403
    padding-left: 15px;
5404
    padding-right: 20px;
5405
}
5406
 
5407
.profile-bx-info>p {
5408
    float: left;
5409
    width: 100%;
5410
    font-size: 14px;
5411
    line-height: 20px;
5412
    padding-top: 5px;
5413
}
5414
 
5415
/* =========== pro-work-status ========= */
5416
 
5417
.pro-work-status {
5418
    float: left;
5419
    width: 100%;
5420
    padding: 0 15px;
5421
}
5422
 
5423
.pro-work-status h4 {
5424
    color: #000000;
5425
    font-size: 18px;
5426
    font-weight: 600;
5427
    margin-bottom: 50px;
5428
}
5429
 
5430
/* ============== messages-page ============== */
5431
 
5432
.messages-page {
5433
    padding: 20px 0;
5434
}
5435
 
5436
.messages-sec {
5437
    width: 100%;
5438
    border-radius: 10px;
5439
    overflow: hidden;
5440
    box-shadow: 0 0 10px #0004;
5441
    background-color: #fff;
5442
}
5443
 
5444
.msgs-list {
5445
    width: 100%;
5446
}
5447
 
5448
.inmail_conversations-list {
5449
    border-right: 1px solid #3333;
5450
    padding-left: 0;
5451
    padding-right: 0;
5452
}
5453
 
5454
.msg-title {
5455
    height: 13vh;
5456
    padding: 20px;
5457
    border-bottom: 2px solid #3333;
5458
}
5459
 
5460
.msg-title>h3 {
5461
    color: #000000;
5462
    font-size: 18px;
5463
    font-weight: 600;
5464
}
5465
 
5466
.msg-title>ul {
5467
    float: right;
5468
    position: relative;
5469
    top: 1px;
5470
}
5471
 
5472
.msg-title ul li {
5473
    display: inline-block;
5474
    margin-right: 15px;
5475
    border-bottom: 1px solid #3333;
5476
}
5477
 
5478
.msg-title ul li:last-child {
5479
    margin-right: 0;
5480
}
5481
 
5482
.msg-title ul li a {
5483
    color: #b2b2b2;
5484
    font-size: 18px;
5485
}
5486
 
5487
.messages-list {
5488
    float: left;
5489
    width: 100%;
5490
}
5491
 
5492
.messages-list ul {
5493
    float: left;
5494
    width: 100%;
5495
}
5496
 
5497
.messages-list ul li {
5498
    float: left;
5499
    width: 100%;
5500
    padding: 20px;
5501
    border-bottom: 1px solid #eeeeee;
5502
    cursor: pointer;
5503
}
5504
 
5505
.messages-list ul li.active {
5506
    background-color: #efefef;
5507
}
5508
 
5509
.usr-msg-details {
5510
    float: left;
5511
    position: relative;
5512
    width: 100%;
5513
}
5514
 
5515
.usr-ms-img {
5516
    float: left;
5517
    width: 50px;
5518
    position: relative;
5519
}
5520
 
5521
.msg-status {
5522
    -webkit-border-radius: 100px;
5523
    -moz-border-radius: 100px;
5524
    -ms-border-radius: 100px;
5525
    -o-border-radius: 100px;
5526
    border-radius: 100px;
5527
    background-color: #e44d3a;
5528
    position: absolute;
5529
    top: -3px;
5530
    right: 0;
5531
    width: 6px;
5532
    height: 6px;
5533
}
5534
 
5535
.messages-list ul li.active .msg-status {
5536
    border: 2px solid #ecf5fb;
5537
    height: 10px;
5538
    width: 10px;
5539
}
5540
 
5541
.msg-notifc {
5542
    position: absolute;
5543
    bottom: 0;
5544
    right: 0;
5545
    width: 25px;
5546
    height: 25px;
5547
    -webkit-border-radius: 100px;
5548
    -moz-border-radius: 100px;
5549
    -ms-border-radius: 100px;
5550
    -o-border-radius: 100px;
5551
    border-radius: 100px;
5552
    background-color: #e77667;
5553
    text-align: center;
5554
    line-height: 25px;
5555
    font-size: 13px;
5556
    color: #fff;
5557
}
5558
 
5559
.usr-ms-img img {
5560
    width: 100%;
5561
    -webkit-border-radius: 100px;
5562
    -moz-border-radius: 100px;
5563
    -ms-border-radius: 100px;
5564
    -o-border-radius: 100px;
5565
    border-radius: 100px;
5566
}
5567
 
5568
.usr-mg-info {
5569
    float: left;
5570
    padding-left: 13px;
5571
    margin-top: 4px;
5572
}
5573
 
5574
.usr-mg-info h3 {
5575
    color: #000000;
5576
    font-size: 18px;
5577
    font-weight: 600;
5578
}
5579
 
5580
.usr-mg-info p {
5581
    color: #686868;
5582
    font-size: 16px;
5583
}
5584
 
5585
.usr-mg-info p img {
5586
    float: right;
5587
    position: relative;
5588
    top: 5px;
5589
    padding-left: 5px;
5590
}
5591
 
5592
.posted_time {
5593
    position: absolute;
5594
    top: 2px;
5595
    right: 0;
5596
    color: #b2b2b2;
5597
    font-size: 14px;
5598
}
5599
 
5600
/* =============== main-message-box ============= */
5601
 
5602
.main-conversation-box {
5603
    width: 100%;
5604
    background-color: #fff;
5605
    position: relative;
5606
    height: 100%;
5607
}
5608
 
5609
.message-bar-head {
5610
    height: 13vh;
5611
    width: 100%;
5612
    padding: 20px;
5613
    border-bottom: 2px solid #3333;
5614
}
5615
 
5616
.message-bar-head .usr-msg-details {
5617
    width: auto;
5618
}
5619
 
5620
.message-bar-head>a {
5621
    float: right;
5622
    color: #b2b2b2;
5623
    font-size: 20px;
5624
    padding-top: 15px;
5625
}
5626
 
5627
.main-message-box {
5628
    display: flex;
5629
    width: 100%;
5630
    position: relative;
5631
    margin-bottom: 15.5px;
5632
}
5633
 
5634
.messg-usr-img {
5635
    margin-left: 20px;
5636
    width: 50px;
5637
}
5638
 
5639
.messg-usr-img img {
5640
    width: 100%;
5641
    -webkit-border-radius: 100px;
5642
    -moz-border-radius: 100px;
5643
    -ms-border-radius: 100px;
5644
    -o-border-radius: 100px;
5645
    border-radius: 100px;
5646
}
5647
 
5648
.message-dt {
5649
    width: auto;
5650
    margin-left: 15px;
5651
}
5652
 
5653
.main-message-box.ta-right {
5654
    flex-direction: row-reverse;
5655
}
5656
 
5657
.main-message-box.ta-right .messg-usr-img {
5658
    margin-left: 0;
5659
    margin-right: 20px;
5660
}
5661
 
5662
.main-message-box.ta-right .message-dt {
5663
    margin-right: 15px;
5664
}
5665
 
5666
.main-message-box.ta-right .message-dt>span {
5667
    float: right;
5668
    width: auto;
5669
}
5670
 
5671
.message-inner-dt {
5672
    -webkit-border-radius: 15px;
5673
    -moz-border-radius: 15px;
5674
    -ms-border-radius: 15px;
5675
    -o-border-radius: 15px;
5676
    border-radius: 15px;
5677
    width: 100%;
5678
    border-bottom-left-radius: 0;
5679
}
5680
 
5681
.img-bx {
5682
    background-color: #efefef;
5683
    padding: 20px;
5684
}
5685
 
5686
.message-inner-dt>img {
5687
    display: inline-block;
5688
    width: auto;
5689
    margin-right: 5px;
5690
}
5691
 
5692
.message-dt>span {
5693
    color: #b2b2b2;
5694
    font-size: 14px;
5695
    float: left;
5696
    width: 100%;
5697
    margin-top: 7px;
5698
}
5699
 
5700
.message-inner-dt>p {
5701
    font-size: 14px;
5702
    line-height: 22px;
5703
    padding: 2px 10px;
5704
    color: #000;
5705
    -webkit-border-radius: 15px;
5706
    -moz-border-radius: 15px;
5707
    -ms-border-radius: 15px;
5708
    -o-border-radius: 15px;
5709
    border-radius: 15px;
5710
}
5711
 
5712
.message-dt.st3 .message-inner-dt>p {
5713
    background-color: #efefef;
5714
    color: #686868;
5715
    width: auto;
5716
    padding: 10px 15px;
5717
    float: left;
5718
}
5719
 
5720
.message-dt.st3 .message-inner-dt>p img {
5721
    float: right;
5722
    position: relative;
5723
    top: 3px;
5724
    padding-left: 5px;
5725
}
5726
 
5727
.main-message-box.st3 .messg-usr-img {
5728
    bottom: 13px;
5729
}
5730
 
5731
.messages-line {
5732
    width: 100%;
5733
    height: 604px;
5734
    padding-top: 20px;
5735
}
5736
 
5737
/* ============== message-send-area ============ */
5738
 
5739
.message-send-area {
5740
    width: 100%;
5741
    background-color: #f3f5f7;
5742
    padding: 20px;
5743
}
5744
 
5745
.message-send-area form {
5746
    width: 100%;
5747
}
5748
 
5749
.mf-field {
5750
    width: 100%;
5751
    display: flex;
5752
}
5753
 
5754
.mf-field input {
5755
    flex: 1;
5756
    background-color: #fff;
5757
    color: #b2b2b2;
5758
    font-size: 16px;
5759
    padding: 0 15px;
5760
    border: 1px solid #e6e6e6;
5761
    height: 45px;
5762
    border-radius: 25px;
5763
}
5764
 
5765
 
5766
.message-send-area form>ul {
5767
    float: left;
5768
    width: 100%;
5769
    margin-top: 15px;
5770
}
5771
 
5772
.message-send-area form>ul li {
5773
    display: inline-block;
5774
    margin-right: 20px;
5775
}
5776
 
5777
.message-send-area form>ul li a {
5778
    color: #b2b2b2;
5779
    font-size: 18px;
5780
}
5781
 
5782
/* ============== forum-links ============= */
5783
 
5784
.forum-sec {
5785
    background-color: #fff;
5786
}
5787
 
5788
.forum-links {
5789
    float: left;
5790
    width: 100%;
5791
}
5792
 
5793
.forum-links.active {
5794
    opacity: 1;
5795
    visibility: visible;
5796
    z-index: 9999;
5797
}
5798
 
5799
.forum-links ul li {
5800
    display: inline-block;
5801
    padding: 20px 0;
5802
    margin-right: 45px;
5803
    border-bottom: 2px solid transparent;
5804
}
5805
 
5806
.forum-links ul li.active {
5807
    border-color: #e44d3a;
5808
}
5809
 
5810
.forum-links ul li.active a {
5811
    color: #e44d3a;
5812
}
5813
 
5814
.forum-links ul li a {
5815
    display: inline-block;
5816
    color: #b2b2b2;
5817
    font-size: 14px;
5818
    font-weight: 600;
5819
}
5820
 
5821
.forum-links-btn {
5822
    float: left;
5823
    width: 100%;
5824
    text-align: center;
5825
    display: none;
5826
    padding: 20px 0;
5827
}
5828
 
5829
.forum-links-btn a {
5830
    color: #000;
5831
    font-size: 30px;
5832
    display: inline-block;
5833
}
5834
 
5835
/* ================ forum-page =============== */
5836
 
5837
.forum-page {
5838
    padding: 50px 0;
5839
}
5840
 
5841
.forum-questions-sec {
5842
    float: left;
5843
    width: 100%;
5844
}
5845
 
5846
.forum-questions {
5847
    float: left;
5848
    width: 100%;
5849
    background-color: #fff;
5850
}
5851
 
5852
.usr-question {
5853
    float: left;
5854
    width: 100%;
5855
    position: relative;
5856
    padding: 25px;
5857
    border-bottom: 1px solid #e5e5e5;
5858
}
5859
 
5860
.usr_img {
5861
    float: left;
5862
    width: 60px;
5863
}
5864
 
5865
.usr_img img {
5866
    width: 100%;
5867
    -webkit-border-radius: 100px;
5868
    -moz-border-radius: 100px;
5869
    -ms-border-radius: 100px;
5870
    -o-border-radius: 100px;
5871
    border-radius: 100px;
5872
}
5873
 
5874
.usr_quest {
5875
    float: left;
5876
    width: 90%;
5877
    padding-left: 15px;
5878
}
5879
 
5880
.usr_quest>h3 {
5881
    color: #000000;
5882
    font-size: 17px;
5883
    font-weight: 600;
5884
    margin-bottom: 20px;
5885
}
5886
 
5887
.forum-post-view .usr_quest>h3 {
5888
    margin-bottom: 10px;
5889
}
5890
 
5891
.react-links {
5892
    float: left;
5893
    width: 100%;
5894
}
5895
 
5896
.react-links li {
5897
    display: inline-block;
5898
    margin-right: 30px;
5899
}
5900
 
5901
.react-links li a {
5902
    display: inline-block;
5903
    color: #b2b2b2;
5904
    font-size: 14px;
5905
    font-weight: 600;
5906
}
5907
 
5908
.react-links li a:hover {
5909
    color: #e44d3a;
5910
}
5911
 
5912
.react-links li a i {
5913
    padding-right: 7px;
5914
}
5915
 
5916
.react-links li:last-child {
5917
    margin-right: 0;
5918
}
5919
 
5920
/* ============= quest-tags ============ */
5921
 
5922
.quest-tags {
5923
    float: left;
5924
    width: 100%;
5925
    margin-top: 20px;
5926
}
5927
 
5928
.quest-tags li {
5929
    display: inline-block;
5930
    margin-right: 10px;
5931
}
5932
 
5933
.quest-tags li a {
5934
    display: inline-block;
5935
    color: #ffffff;
5936
    background-color: #53d690;
5937
    -webkit-border-radius: 3px;
5938
    -moz-border-radius: 3px;
5939
    -ms-border-radius: 3px;
5940
    -o-border-radius: 3px;
5941
    border-radius: 3px;
5942
    padding: 7px 25px;
5943
}
5944
 
5945
.quest-posted-time {
5946
    position: absolute;
5947
    bottom: 30px;
5948
    right: 20px;
5949
    color: #b2b2b2;
5950
    font-size: 14px;
5951
}
5952
 
5953
.quest-posted-time i {
5954
    padding-right: 5px;
5955
}
5956
 
5957
.pd-right-none {
5958
    padding-right: 0;
5959
}
5960
 
5961
/* =========== navigation ============ */
5962
 
5963
.pagination {
5964
    float: left;
5965
    width: 100%;
5966
    /* background-color: #fff; */
5967
    padding: 13px 25px;
5968
}
5969
 
5970
.full-pagi {
5971
    float: left;
5972
    width: 100%;
5973
    padding-right: 0;
5974
    text-align: inherit;
5975
    margin-top: 20px;
5976
}
5977
 
5978
.pagination li {
5979
    padding: 0;
5980
    margin-right: 10px;
5981
}
5982
 
5983
.pagination li .page-link {
5984
    /* background-color: #e5e5e5; */
5985
    color: #b2b2b2;
5986
}
5987
 
5988
.pagination li .page-link.active {
5989
    background-color: #e44d3a;
5990
    color: #fff;
5991
    border-color: transparent;
5992
}
5993
 
5994
.pvr {
5995
    padding: 0.5rem 30px;
5996
}
5997
 
5998
/* ============ User Widget =========== */
5999
 
6000
.title-wd {
6001
    float: left;
6002
    width: 100%;
6003
    color: #000000;
6004
    font-size: 18px;
6005
    font-weight: 600;
6006
    border-bottom: 1px solid #e5e5e5;
6007
    padding: 25px 20px;
6008
}
6009
 
6010
.widget-user ul {
6011
    float: left;
6012
    width: 100%;
6013
    padding: 15px 0;
6014
}
6015
 
6016
.widget-user ul li {
6017
    float: left;
6018
    width: 100%;
6019
    padding: 15px 20px;
6020
}
6021
 
6022
.widget-user ul li .usr-msg-details {
6023
    float: left;
6024
    width: auto;
6025
}
6026
 
6027
.widget-user ul li .usr-ms-img {
6028
    width: 35px;
6029
}
6030
 
6031
.widget-user ul li .usr-mg-info h3 {
6032
    font-size: 14px;
6033
}
6034
 
6035
.widget-user ul li .usr-mg-info p {
6036
    font-size: 12px;
6037
}
6038
 
6039
.widget-user ul li>span {
6040
    color: #686868;
6041
    font-size: 16px;
6042
    float: right;
6043
    margin-top: 10px;
6044
}
6045
 
6046
.widget-user ul li>span img {
6047
    padding-right: 5px;
6048
}
6049
 
6050
/* ============== widget-adver ============ */
6051
 
6052
.widget-adver img {
6053
    width: 100%;
6054
}
6055
 
6056
/* ============ forum-post-view ============ */
6057
 
6058
.forum-post-view {
6059
    float: left;
6060
    width: 100%;
6061
    background-color: #fff;
6062
    padding: 25px 25px 0 25px;
6063
    border-bottom: 1px solid #e5e5e5;
6064
}
6065
 
6066
.forum-post-view .usr-question {
6067
    border-bottom: 0;
6068
    padding: 0;
6069
}
6070
 
6071
.forum-post-view .usr_quest span {
6072
    color: #b2b2b2;
6073
    font-size: 14px;
6074
    display: inline-block;
6075
    margin-bottom: 20px;
6076
}
6077
 
6078
.forum-post-view .usr_quest span i {
6079
    padding-right: 7px;
6080
}
6081
 
6082
.forum-post-view .quest-tags {
6083
    margin-bottom: 30px;
6084
}
6085
 
6086
.forum-post-view .usr_quest>p {
6087
    float: left;
6088
    width: 100%;
6089
    color: #686868;
6090
    font-size: 14px;
6091
    line-height: 24px;
6092
    margin-bottom: 40px;
6093
}
6094
 
6095
.forum-post-view .comment-section {
6096
    padding: 0;
6097
}
6098
 
6099
.forum-post-view .comment-section>h3 {
6100
    float: left;
6101
    width: 100%;
6102
    color: #000000;
6103
    font-size: 18px;
6104
    font-weight: 600;
6105
    border-bottom: 1px solid #e5e5e5;
6106
    padding-bottom: 15px;
6107
}
6108
 
6109
.forum-post-view .comment-sec ul li {
6110
    border-bottom: 1px solid #e5e5e5;
6111
    padding: 23px 0;
6112
}
6113
 
6114
.forum-post-view .comment span {
6115
    margin-bottom: 10px;
6116
}
6117
 
6118
.forum-post-view .comment-list {
6119
    padding-bottom: 0;
6120
    margin-bottom: -4px;
6121
}
6122
 
6123
.forum-post-view .comment p {
6124
    margin: 0;
6125
    margin-top: 5px;
6126
}
6127
 
6128
.forum-post-view .comment h3 {
6129
    margin-bottom: 9px;
6130
}
6131
 
6132
.forum-post-view .comment-sec ul li:last-child {
6133
    border-bottom: 0;
6134
}
6135
 
6136
/* =============== post-comment-box ============= */
6137
 
6138
.post-comment-box {
6139
    float: left;
6140
    width: 100%;
6141
    padding: 20px;
6142
    background-color: #fff;
6143
}
6144
 
6145
.post-comment-box h3 {
6146
    float: left;
6147
    width: 100%;
6148
    color: #000000;
6149
    font-size: 18px;
6150
    font-weight: 600;
6151
    margin-bottom: 30px;
6152
}
6153
 
6154
.user-poster {
6155
    float: left;
6156
    width: 100%;
6157
}
6158
 
6159
.usr-post-img {
6160
    float: left;
6161
    width: 50px;
6162
    margin-right: 15px;
6163
}
6164
 
6165
.usr-post-img img {
6166
    width: 100%;
6167
    -webkit-border-radius: 100px;
6168
    -moz-border-radius: 100px;
6169
    -ms-border-radius: 100px;
6170
    -o-border-radius: 100px;
6171
    border-radius: 100px;
6172
}
6173
 
6174
.post_comment_sec {
6175
    float: left;
6176
    width: 90%;
6177
}
6178
 
6179
.post_comment_sec form {
6180
    float: left;
6181
    width: 100%;
6182
}
6183
 
6184
.post_comment_sec form textarea {
6185
    float: left;
6186
    width: 100%;
6187
    height: 130px;
6188
    border: 1px solid #dce2eb;
6189
    padding: 15px;
6190
    resize: none;
6191
}
6192
 
6193
.post_comment_sec form button {
6194
    color: #ffffff;
6195
    font-size: 14px;
6196
    background-color: #e44d3a;
6197
    padding: 10px 25px;
6198
    border: 0;
6199
    font-weight: 600;
6200
    margin-top: 20px;
6201
    cursor: pointer;
6202
}
6203
 
6204
/* ======== next-prev ========*/
6205
 
6206
.next-prev {
6207
    float: left;
6208
    width: 100%;
6209
    background-color: #fff;
6210
    margin-top: 20px;
6211
    padding: 12px 25px;
6212
}
6213
 
6214
.next-prev>a {
6215
    width: 90px;
6216
    height: 35px;
6217
    text-align: center;
6218
    line-height: 35px;
6219
    color: #b2b2b2;
6220
    font-size: 14px;
6221
    background-color: #e5e5e5;
6222
}
6223
 
6224
.next-prev>a:hover {
6225
    color: #fff;
6226
    background-color: #e44d3a;
6227
}
6228
 
6229
.fl-left {
6230
    float: left;
6231
}
6232
 
6233
.fl-right {
6234
    float: right;
6235
}
6236
 
6237
/* ========== widget-feat ========= */
6238
 
6239
.widget-feat {
6240
    padding: 25px 20px;
6241
}
6242
 
6243
.widget-feat ul {
6244
    float: left;
6245
    width: 100%;
6246
}
6247
 
6248
.widget-feat ul li {
6249
    float: left;
6250
    width: 25%;
6251
    text-align: center;
6252
}
6253
 
6254
.widget-feat ul li i {
6255
    display: block;
6256
    font-size: 18px;
6257
    margin-bottom: 9px;
6258
}
6259
 
6260
.widget-feat ul li span {
6261
    display: block;
6262
    color: #686868;
6263
    font-size: 16px;
6264
    font-weight: 500;
6265
}
6266
 
6267
.widget-feat ul li i.fa-heart {
6268
    color: #53d690;
6269
}
6270
 
6271
.widget-feat ul li i.fa-comment {
6272
    color: #e44d3a;
6273
}
6274
 
6275
.widget-feat ul li i.fa-share-alt {
6276
    color: #51a5fb;
6277
}
6278
 
6279
.widget-feat ul li i.fa-eye {
6280
    color: #00b540;
6281
}
6282
 
6283
/* =============== ANIMATION LOADER =============== */
6284
 
6285
.spinner {
6286
    margin: 0 auto 0;
6287
    width: 80px;
6288
    text-align: center;
6289
    height: 80px;
6290
    border-radius: 100px;
6291
    background-color: #fff;
6292
    line-height: 80px;
6293
    border: 1px solid #e1e1e1;
6294
    cursor: pointer;
6295
}
6296
 
6297
.spinner>div {
6298
    width: 15px;
6299
    height: 15px;
6300
    background-color: #b9b9b9;
6301
    border-radius: 100%;
6302
    display: inline-block;
6303
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
6304
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
6305
}
6306
 
6307
.spinner .bounce1 {
6308
    -webkit-animation-delay: -0.32s;
6309
    animation-delay: -0.32s;
6310
}
6311
 
6312
.spinner .bounce2 {
6313
    -webkit-animation-delay: -0.16s;
6314
    animation-delay: -0.16s;
6315
}
6316
 
6317
@-webkit-keyframes sk-bouncedelay {
6318
    0%,
6319
    80%,
6320
    100% {
6321
        -webkit-transform: scale(0);
6322
    }
6323
    40% {
6324
        -webkit-transform: scale(1);
6325
    }
6326
}
6327
 
6328
@keyframes sk-bouncedelay {
6329
    0%,
6330
    80%,
6331
    100% {
6332
        -webkit-transform: scale(0);
6333
        transform: scale(0);
6334
    }
6335
    40% {
6336
        -webkit-transform: scale(1);
6337
        transform: scale(1);
6338
    }
6339
}
6340
 
6341
.wordpressdevlp {
6342
    background-color: #fff;
6343
}
6344
 
6345
.bgclr {
6346
    background-color: #fff;
6347
    margin-bottom: 15px;
6348
}
6349
 
6350
.cadidatesbtn {
6351
    position: absolute;
6352
    left: 0;
6353
    padding-top: 5px;
6354
}
6355
 
6356
.cadidatesbtn button {
6357
    background-color: #e44d3a;
6358
    border: none;
6359
    margin-top: -3px;
6360
}
6361
 
6362
.cadidatesbtn button:hover {
6363
    background-color: #e44d3a;
6364
}
6365
 
6366
.cadidatesbtn span {
6367
    background-color: #bd2e1c;
6368
    color: #fff;
6369
    margin-right: 10px;
6370
    padding: 0.25em 0.5em;
6371
    font-weight: 600;
6372
    font-size: 12px;
6373
}
6374
 
6375
.wordpressdevlp i {
6376
    color: #e86554;
6377
    font-size: 18px;
6378
    font-weight: bold;
6379
    padding-right: 5px;
6380
}
6381
 
6382
.wordpressdevlp h2 {
6383
    font-size: 18px;
6384
    font-weight: 600;
6385
}
6386
 
6387
.cadidatesbtn i {
6388
    color: #b2b2b2;
6389
    border: 1px solid #b2b2b2;
6390
    font-size: 14px;
6391
    text-align: center;
6392
    margin-left: 7px;
6393
    border-radius: 3px;
6394
    padding: 10px;
6395
}
6396
 
6397
.cadidatesbtn i:hover {
6398
    background-color: #e44d3a;
6399
    color: #fff;
6400
    border: 1px solid #e44d3a;
6401
}
6402
 
6403
.inner {
6404
    border-bottom: 2px solid #e5e5e5;
6405
    padding-bottom: 10px;
6406
}
6407
 
6408
.inner li a:hover {
6409
    color: #e44d3a;
6410
    border-bottom: 2px solid #e44d3a;
6411
    padding-bottom: 9px;
6412
}
6413
 
6414
.inner li a {
6415
    color: #000000;
6416
}
6417
 
6418
.posttext {
6419
    position: absolute;
6420
    left: 0;
6421
}
6422
 
6423
.deatile h3 {
6424
    font-size: 14px;
6425
    font-weight: bold;
6426
    padding-bottom: 5px;
6427
}
6428
 
6429
.clrbtn a {
6430
    background-color: #e44d3a;
6431
    color: #fff;
6432
    padding: 5px 10px 5px 10px;
6433
    margin-right: 15px;
6434
}
6435
 
6436
.transpairentbtn a {
6437
    color: #222;
6438
    border: 2px solid #f1f1f1;
6439
    padding: 5px 10px 5px 10px;
6440
}
6441
 
6442
.savetext h3 {
6443
    font-size: 14px;
6444
    font-weight: bold;
6445
    padding-bottom: 5px;
6446
}
6447
 
6448
.devepbtn .clrbtn {
6449
    padding: 7px 20px;
6450
}
6451
 
6452
.devepbtn a {
6453
    color: #666666;
6454
    border: 1px solid #b2b2b2;
6455
    padding: 7px 10px 7px 10px;
6456
    border-radius: 3px;
6457
    margin-right: 5px;
6458
}
6459
 
6460
.devepbtn a:hover i {
6461
    color: #fff;
6462
}
6463
 
6464
.devepbtn a:hover {
6465
    background-color: #e44d3a;
6466
    color: #fff;
6467
}
6468
 
6469
.rew-reply hr {
6470
    margin-left: -20px;
6471
    margin-right: -20px;
6472
}
6473
 
6474
.rew-reply p {
6475
    padding-left: 20px;
6476
}
6477
 
6478
.rew-reply ul {
6479
    padding-left: 20px;
6480
}
6481
 
6482
.devepbtn {
6483
    margin-top: 30px;
6484
    padding-left: 20px;
6485
}
6486
 
6487
.rep-thanks hr {
6488
    margin-right: -20px;
6489
    margin-left: -20px;
6490
}
6491
 
6492
.profilecnd {
6493
    margin-bottom: 0px;
6494
}
6495
 
6496
.devepbtn i {
6497
    color: #b2b2b2;
6498
    font-size: 14px;
6499
}
6500
 
6501
.appliedinfo {
6502
    padding-left: 0;
6503
    padding-top: 20px !important;
6504
    padding-bottom: 10px;
6505
}
6506
 
6507
.epi2 {
6508
    padding: 0;
6509
}
6510
 
6511
.review a {
6512
    line-height: 16px;
6513
    font-size: 14px;
6514
    text-decoration: none;
6515
    font-weight: 500;
6516
    margin-left: 15px;
6517
}
6518
 
6519
.add-pic-box {
6520
    display: inline-block;
6521
    color: #e44d3a;
6522
    font-size: 16px;
6523
    position: absolute;
6524
    top: 30px;
6525
    right: 0;
6526
    font-weight: 600;
6527
    margin-right: 0;
6528
    width: 100%;
6529
}
6530
 
6531
.add-pic-box [type="file"] {
6532
    height: 0;
6533
    overflow: hidden;
6534
    width: 0;
6535
    float: left;
6536
}
6537
 
6538
.add-pic-box [type="file"]+label {
6539
    background: #fff;
6540
    border: 2px solid #e44d3a;
6541
    border-radius: 3px;
6542
    color: #e44d3a;
6543
    cursor: pointer;
6544
    /* display: inline-block; */
6545
    font-size: 15px;
6546
    font-weight: 600;
6547
    outline: none;
6548
    padding: 12px 20px;
6549
    position: relative;
6550
    transition: all 0.3s;
6551
    vertical-align: middle;
6552
    margin: 0;
6553
    float: right;
6554
    text-transform: uppercase;
6555
}
6556
 
6557
.add-pic-box [type="file"]+label:hover {
6558
    background: #e44d3a;
6559
    color: #fff;
6560
}
6561
 
6562
.noreview li i {
6563
    color: #b2b2b2;
6564
}
6565
 
6566
.review-tb {
6567
    margin: 0 0 10px;
6568
    padding-left: 20px;
6569
}
6570
 
6571
.noreview ul li i {
6572
    color: #b2b2b2;
6573
}
6574
 
6575
.mngdetl {
6576
    border-bottom: none;
6577
}
6578
 
6579
.post-reply {
6580
    padding-top: 0;
6581
    padding-bottom: 0;
6582
}
6583
 
6584
.activebidbtn i:hover {
6585
    background-color: #e44d3a;
6586
    color: #fff;
6587
    border: none;
6588
}
6589
 
6590
.reviewtitle h2 {
6591
    font-size: 17px;
6592
    font-weight: 600;
6593
}
6594
 
6595
.horiline {
6596
    width: 118%;
6597
    position: relative;
6598
    left: -40px;
6599
}
6600
 
6601
.tahnks {
6602
    font-weight: 500;
6603
    margin-top: 5px;
6604
}
6605
 
6606
/*about-page*/
6607
 
6608
.banner span {
6609
    position: absolute;
6610
    display: flex;
6611
    background-color: #222;
6612
    width: 100%;
6613
    opacity: 0.9;
6614
    justify-content: center;
6615
    padding: 10px;
6616
    margin-top: 0;
6617
    color: #fff;
6618
}
6619
 
6620
.innertitle {
6621
    margin-top: 130px;
6622
}
6623
 
6624
.Company-overview {
6625
    padding-bottom: 50px;
6626
}
6627
 
6628
.bennertext {
6629
    position: absolute;
6630
    left: 20%;
6631
    right: 20%;
6632
    text-align: center;
6633
}
6634
 
6635
.bannerimage img {
6636
    height: 100%;
6637
}
6638
 
6639
.innertitle h2 {
6640
    color: #fff;
6641
    font-size: 30px;
6642
    line-height: 32px;
6643
    font-weight: 600;
6644
    margin-bottom: 20px;
6645
}
6646
 
6647
.innertitle p {
6648
    color: #fff;
6649
    font-size: 16px;
6650
}
6651
 
6652
.Company-overview h2 {
6653
    padding-top: 100px;
6654
    font-size: 24px;
6655
    font-weight: 600;
6656
    padding-bottom: 12px;
6657
}
6658
 
6659
.Company-overview p {
6660
    font-size: 15px;
6661
    font-weight: 500;
6662
}
6663
 
6664
.Company-overview img {
6665
    float: right;
6666
    padding-top: 25px;
6667
}
6668
 
6669
.blog {
6670
    text-align: center;
6671
    display: inline-block;
6672
    margin-bottom: 50px;
6673
}
6674
 
6675
.blog img {
6676
    padding-bottom: 30px;
6677
}
6678
 
6679
.blog h2 {
6680
    font-size: 18px;
6681
    font-weight: 600;
6682
    padding-bottom: 30px;
6683
}
6684
 
6685
.blog a {
6686
    background-color: #ff4500;
6687
    color: #fff;
6688
    padding: 7px 25px 7px 25px;
6689
    border-radius: 3px;
6690
    font-size: 16px;
6691
    font-weight: 500;
6692
}
6693
 
6694
.services {
6695
    padding-top: 80px;
6696
    padding-bottom: 80px;
6697
}
6698
 
6699
.video {
6700
    padding-bottom: 40px;
6701
}
6702
 
6703
.search-container {
6704
    text-align: center;
6705
}
6706
 
6707
.search-container input[type="text"] {
6708
    padding: 6px 15px;
6709
    margin-top: 8px;
6710
    font-size: 17px;
6711
    border: none;
6712
    height: 50px;
6713
    width: 50%;
6714
    margin-bottom: 25px;
6715
    border-top-left-radius: 3px;
6716
    border-top-right-radius: 0px;
6717
    border-bottom-left-radius: 3px;
6718
    border-bottom-right-radius: 0px;
6719
}
6720
 
6721
.searchtitle {
6722
    text-align: center;
6723
}
6724
 
6725
.searchtitle h2 {
6726
    color: #fff;
6727
    font-size: 30px;
6728
    font-weight: 400;
6729
    padding-bottom: 10px;
6730
}
6731
 
6732
.modal-header {
6733
    position: relative;
6734
}
6735
 
6736
.modal-header h3 {
6737
    font-size: 18px;
6738
}
6739
 
6740
.search-container button {
6741
    padding: 8px 10px;
6742
    text-align: center;
6743
    margin-top: 8px;
6744
    margin-left: -3px;
6745
    margin-right: 18px;
6746
    background: #efefef;
6747
    font-size: 17px;
6748
    border: none;
6749
    cursor: pointer;
6750
    height: 50px;
6751
    width: 6%;
6752
    border-bottom-right-radius: 3px;
6753
    border-top-right-radius: 3px;
6754
}
6755
 
6756
.topsearch i {
6757
    color: #e44d3a;
6758
}
6759
 
6760
.dropdown-toggle::after {
6761
    position: absolute;
6762
    right: 15px;
6763
    color: #b2b2b2;
6764
    top: 7px;
6765
}
6766
 
6767
.help-paddy {
6768
    padding: 0 !important;
6769
}
6770
 
6771
.paddy {
6772
    padding: 20px;
6773
    float: left;
6774
}
6775
 
6776
.dropdown-menu {
6777
    position: absolute;
6778
    top: 100%;
6779
    left: 0;
6780
    z-index: 1000;
6781
    display: none;
6782
    float: left;
6783
    min-width: 10rem;
6784
    padding: 0.5rem 0;
6785
    margin: 0.125rem 0 0;
6786
    font-size: 1rem;
6787
    color: #212529;
6788
    text-align: left;
6789
    list-style: none;
6790
    background-color: #fff;
6791
    width: 100%;
6792
    background-clip: padding-box;
6793
    border: none;
6794
    border-radius: 0.25rem;
6795
}
6796
 
6797
.radio-form p {
6798
    display: -webkit-inline-box;
6799
}
6800
 
6801
.dropdown a {
6802
    color: #000000;
6803
    font-size: 16px;
6804
    font-weight: 400;
6805
    padding: 0 20px;
6806
}
6807
 
6808
.accountnone {
6809
    border: none;
6810
}
6811
 
6812
.helpforum {
6813
    background-color: #fff;
6814
    padding: 15px 0;
6815
    box-shadow: 0px 2px #c6c6c6;
6816
}
6817
 
6818
.helpforum h3 {
6819
    font-size: 18px;
6820
    font-weight: 600;
6821
}
6822
 
6823
.helpforum a {
6824
    background-color: #e44d3a;
6825
    color: #fff;
6826
    padding: 10px 15px 10px 15px;
6827
    line-height: 4;
6828
    border-radius: 3px;
6829
}
6830
 
6831
.helpforum p {
6832
    line-height: 3;
6833
}
6834
 
6835
.actionstitle h3 {
6836
    font-size: 18px;
6837
    font-weight: 400;
6838
    color: #000;
6839
    padding-top: 30px;
6840
}
6841
 
6842
.actionstitle img {
6843
    padding-right: 10px;
6844
}
6845
 
6846
.actionstext a {
6847
    font-size: 16px;
6848
    font-weight: 500;
6849
    color: #e44d3a;
6850
    line-height: 2;
6851
    display: block;
6852
}
6853
 
6854
.helpform {
6855
    text-align: center;
6856
    padding-top: 70px;
6857
}
6858
 
6859
.helpform h3 {
6860
    font-size: 18px;
6861
    font-weight: 400;
6862
    color: #e44d3a;
6863
    margin-bottom: 10px;
6864
}
6865
 
6866
.helpform a {
6867
    background-color: #e44d3a;
6868
    color: #fff;
6869
    padding: 10px 15px 10px 15px;
6870
    border-radius: 3px;
6871
}
6872
 
6873
.helpform p {
6874
    margin-bottom: 30px;
6875
}
6876
 
6877
.helpform img {
6878
    float: unset;
6879
    padding-bottom: 10px;
6880
}
6881
 
6882
.bookingsideber h3 {
6883
    color: #000;
6884
}
6885
 
6886
.bookingsideber h3:active {
6887
    color: #e44d3a;
6888
}
6889
 
6890
.helpforum h4 {
6891
    font-size: 16px;
6892
    font-weight: 600;
6893
}
6894
 
6895
.bloktext {
6896
    padding-left: 25px;
6897
}
6898
 
6899
.privacy {
6900
    background-color: #fff;
6901
    height: 850px;
6902
}
6903
 
6904
.privacydropd .dropdown-toggle::after {
6905
    float: right;
6906
    vertical-align: 0.255em;
6907
}
6908
 
6909
/* .checkbox {} */
6910
 
6911
.form-check {
6912
    padding-left: 0;
6913
}
6914
 
6915
.btns a {
6916
    color: #000;
6917
    border: 1px solid #e5e5e5;
6918
    padding: 10px 25px 10px 25px;
6919
    margin-left: 15px;
6920
    border-radius: 5px;
6921
    font-weight: 600;
6922
}
6923
 
6924
.btns {
6925
    padding-top: 20px;
6926
}
6927
 
6928
.btns a:hover {
6929
    background-color: #e44d3a;
6930
    color: #fff;
6931
}
6932
 
6933
.privacy h3 {
6934
    font-size: 18px;
6935
    font-weight: 600;
6936
    padding-top: 18px;
6937
    margin-bottom: 10px;
6938
}
6939
 
6940
.privacy p {
6941
    padding-top: 0px;
6942
    display: inline-block;
6943
}
6944
 
6945
.form-group {
6946
    margin-bottom: 1rem;
6947
    padding-top: 0px;
6948
}
6949
 
6950
.privacy i {
6951
    float: right;
6952
    color: #e44d3a;
6953
    font-size: 20px;
6954
    font-weight: 600;
6955
}
6956
 
6957
.dropdown-menu input {
6958
    margin-right: 10px;
6959
    margin-top: 15px;
6960
}
6961
 
6962
.dropdown-menu a {
6963
    padding: 10px 0 10px 40px;
6964
    margin-bottom: 10px;
6965
}
6966
 
6967
.dropdown-menu form {
6968
    margin-bottom: 10px;
6969
    margin-top: 10px;
6970
}
6971
 
6972
.privacydropd p {
6973
    margin-left: 20px;
6974
    margin-top: 5px;
6975
}
6976
 
6977
.privabtns {
6978
    margin-top: 20px;
6979
}
6980
 
6981
.privabtns {
6982
    padding-bottom: 15px;
6983
}
6984
 
6985
.privabtns a {
6986
    margin-right: 15px;
6987
    padding: 8px 25px;
6988
    color: #000000;
6989
    border: 1px solid #e5e5e5;
6990
}
6991
 
6992
.privabtns a:hover {
6993
    color: #fff;
6994
    background-color: #e44d3a;
6995
}
6996
 
6997
.privac {
6998
    background-color: #fff;
6999
    height: 560px;
7000
    padding-top: 20px;
7001
}
7002
 
7003
.privac h3 {
7004
    font-size: 18px;
7005
    font-weight: 600;
7006
}
7007
 
7008
.bids-detail ul {
7009
    display: -webkit-inline-box;
7010
}
7011
 
7012
.bids-detail ul li {
7013
    margin-right: 30px;
7014
}
7015
 
7016
.bids-detail h3 {
7017
    font-size: 16px;
7018
    font-weight: 400;
7019
}
7020
 
7021
.bids-detail {
7022
    background-color: #fff;
7023
    padding: 20px;
7024
    margin-bottom: 25px;
7025
    box-shadow: 0px 2px #e4e4e4;
7026
}
7027
 
7028
.dropdown-menu.show {
7029
    display: contents;
7030
}
7031
 
7032
.postpaid:checked:after {
7033
    content: "\f17b";
7034
    font: normal normal normal 16px/1 "LineAwesome";
7035
    font-weight: 600;
7036
    border: 1px solid #fff;
7037
    color: #ffffff;
7038
    text-align: center;
7039
    font-size: 12px;
7040
    width: 100%;
7041
    height: 100%;
7042
    background: #e44d3a;
7043
    display: block;
7044
    border-radius: 50%;
7045
    padding-top: 3px;
7046
}
7047
 
7048
.postpaid:focus {
7049
    border: 1px solid #fff;
7050
    width: 25px;
7051
    height: 25px;
7052
}
7053
 
7054
.postpaid {
7055
    -webkit-appearance: none;
7056
    content: "";
7057
    width: 20px;
7058
    height: 20px;
7059
    border-radius: 50%;
7060
    border: 1px solid #5e5e5e;
7061
    outline: 0;
7062
    margin-right: 5px;
7063
}
7064
 
7065
.job-status-bar {
7066
    border-top: 1px solid #e5e5e5;
7067
}
7068
 
7069
/* .main-ws-sec .job-status-bar {} */
7070
 
7071
.main-ws-sec .btm-line {
7072
    padding-bottom: 20px !important;
7073
    border-bottom: 1px solid #e5e5e5 !important;
7074
    margin-bottom: 20px;
7075
}
7076
 
7077
.job-status-bar hr {
7078
    margin: 0 -40px;
7079
}
7080
 
7081
.reply-area {
7082
    padding-left: 55px;
7083
}
7084
 
7085
.reply-rply1 {
7086
    margin: 24px 0;
7087
}
7088
 
7089
.reply-area p {
7090
    padding-bottom: 10px;
7091
}
7092
 
7093
.reply-area span {
7094
    cursor: pointer;
7095
}
7096
 
7097
.reply-area span:hover {
7098
    color: #e44d3a;
7099
}
7100
 
7101
.reply-area i {
7102
    font-size: 16px;
7103
    font-weight: 600;
7104
    padding-right: 8px;
7105
}
7106
 
7107
.comment-area .la-plus-circle {
7108
    display: block;
7109
    text-align: center;
7110
    font-size: 40px;
7111
    color: #b2b2b2;
7112
}
7113
 
7114
.reply-area span {
7115
    padding-top: 5px;
7116
    color: #b2b2b2;
7117
}
7118
 
7119
.comt span {
7120
    font-size: 16px;
7121
    color: #666666;
7122
}
7123
 
7124
.comt i {
7125
    padding-right: 8px;
7126
}
7127
 
7128
.postcomment .form-control {
7129
    width: 112%;
7130
    margin-left: -50px;
7131
    background-color: #efefef;
7132
    border-radius: 3px;
7133
}
7134
 
7135
.postcomment a {
7136
    background-color: #e44d3a;
7137
    color: #fff;
7138
    padding: 9px 25px 8px 25px;
7139
    line-height: 37px;
7140
    border-radius: 3px;
7141
}
7142
 
7143
.postcomment {
7144
    padding-top: 30px;
7145
}
7146
 
7147
.widget-about button:focus {
7148
    box-shadow: none;
7149
}
7150
 
7151
.widget-about button:hover {
7152
    background-color: #e44d3a;
7153
}
7154
 
7155
.widget-about button {
7156
    background-color: #e44d3a;
7157
    border: none;
7158
    padding: 12px 0;
7159
    width: 100%;
7160
}
7161
 
7162
.widget-about p {
7163
    background-color: #e44d3a;
7164
    color: #fff;
7165
    padding: 10px 0;
7166
}
7167
 
7168
.widget-projectid {
7169
    padding: 15px;
7170
}
7171
 
7172
.widget-projectid h3 {
7173
    padding-bottom: 7px;
7174
    font-size: 14px;
7175
    font-weight: 600;
7176
}
7177
 
7178
.sd-title h4 {
7179
    margin-bottom: 5px;
7180
    font-size: 16px;
7181
    font-weight: 600;
7182
    line-height: 24px;
7183
}
7184
 
7185
.paymethd p {
7186
    color: #e44d3a;
7187
}
7188
 
7189
.copylink p {
7190
    background-color: #efefef;
7191
    padding: 7px 0 8px 10px;
7192
}
7193
 
7194
.copylink a {
7195
    background-color: #e44d3a;
7196
    color: #fff;
7197
    padding: 10px 15px 10px 15px;
7198
    border-radius: 4px;
7199
}
7200
 
7201
.copylink span {
7202
    padding: 30px 0 20px;
7203
}
7204
 
7205
.copylink i {
7206
    float: unset;
7207
    position: unset;
7208
}
7209
 
7210
.copylink .la-facebook {
7211
    background-color: #3b5998;
7212
    color: #fff;
7213
}
7214
 
7215
.copylink .la-twitter {
7216
    color: #1da1f2;
7217
}
7218
 
7219
.copylink .la-pinterest-p {
7220
    background-color: #fff;
7221
    color: #c11628;
7222
    border-radius: 50%;
7223
}
7224
 
7225
.copylink img {
7226
    padding-right: 10px;
7227
}
7228
 
7229
.freelancerbiding {
7230
    background-color: #fff;
7231
    padding-top: 20px;
7232
}
7233
 
7234
.freelancerbiding h3 {
7235
    font-size: 18px;
7236
    font-weight: 400;
7237
}
7238
 
7239
.repcent {
7240
    text-align: left;
7241
}
7242
 
7243
.bidrit {
7244
    float: right;
7245
}
7246
 
7247
.repcent i {
7248
    padding-left: 5px;
7249
}
7250
 
7251
.star {
7252
    display: inline-flex;
7253
    padding: 5px 0;
7254
}
7255
 
7256
.star li i {
7257
    color: #bfd337;
7258
}
7259
 
7260
.repcent span {
7261
    color: #51a5fb;
7262
}
7263
 
7264
.repcent p {
7265
    padding-left: 7px;
7266
}
7267
 
7268
.noreview ul li i {
7269
    color: #b2b2b2;
7270
}
7271
 
7272
.paymethd .star li i {
7273
    position: unset;
7274
    font-size: 14px;
7275
}
7276
 
7277
.paymethd .star a {
7278
    color: #51a5fb;
7279
    padding-left: 12px;
7280
}
7281
 
7282
/* .modal-header {background-color: #e44d3a; display: block !important; } */
7283
 
7284
.modal-body {
7285
    padding: 1rem 0;
7286
}
7287
 
7288
.notice {
7289
    background-color: #ddf3ff;
7290
    padding: 15px;
7291
}
7292
 
7293
.notice span {
7294
    font-weight: 500;
7295
    padding-right: 5px;
7296
}
7297
 
7298
.innerbody {
7299
    padding: 15px;
7300
}
7301
 
7302
.innerbody h3 {
7303
    font-size: 18px;
7304
    font-weight: 600;
7305
}
7306
 
7307
.innerbody h4 {
7308
    font-weight: 600;
7309
    font-size: 14px;
7310
    margin-left: -15px;
7311
    float: left;
7312
}
7313
 
7314
.delivery .input-group select {
7315
    width: 150px;
7316
    height: 50px !important;
7317
    font-size: 19px;
7318
    border: 1px solid #e5e5e5;
7319
    border-radius: 3px;
7320
}
7321
 
7322
.input-group-prepend {
7323
    background-color: #f3f3f3;
7324
    color: #bfbfbf;
7325
    text-align: center;
7326
    line-height: 3;
7327
    border: 1px solid #e5e5e5;
7328
}
7329
 
7330
.input-group-text {
7331
    color: #666666 !important;
7332
    background-color: #f5f5f5 !important;
7333
    border: 0px !important;
7334
    border-radius: 3px !important;
7335
}
7336
 
7337
.place-bid-form {
7338
    position: relative;
7339
    left: 20px;
7340
    top: -15px;
7341
    padding-bottom: 15px;
7342
}
7343
 
7344
.place-bid-form .input-group input {
7345
    width: 70px;
7346
    border: 1px solid #e5e5e5;
7347
}
7348
 
7349
.paydel {
7350
    padding: 40px 0 0;
7351
}
7352
 
7353
.beatcompitation {
7354
    background-color: #f3f3f3;
7355
    padding: 15px;
7356
}
7357
 
7358
.beatcompitation h3 {
7359
    font-weight: 500;
7360
}
7361
 
7362
.sponser i {
7363
    background-color: #e44d3a;
7364
    color: #fff;
7365
    margin-right: 5px;
7366
    padding: 2px;
7367
}
7368
 
7369
.sponser h2 {
7370
    font-size: 18px;
7371
    font-weight: 600;
7372
    padding-top: 15px;
7373
    padding-bottom: 15px;
7374
}
7375
 
7376
.sponser {
7377
    padding: 15px;
7378
}
7379
 
7380
.modal-footer {
7381
    display: block !important;
7382
    border-top: none;
7383
    padding: 1rem 0;
7384
}
7385
 
7386
.modal-footer button {
7387
    font-size: 15px;
7388
    font-weight: 500;
7389
    background-color: unset;
7390
    border: none;
7391
    padding: 10px;
7392
    border: 1px solid #d2d2d2;
7393
    border-radius: 3px;
7394
}
7395
 
7396
.modal-footer button:hover {
7397
    background-color: #e44d3a;
7398
    /* color: #fff; */
7399
    /* border: 1px solid #e44d3a; */
7400
}
7401
 
7402
.place-bid-btn {
7403
    font-size: 15px;
7404
    font-weight: 500;
7405
    color: #fff !important;
7406
    background-color: #e44d3a !important;
7407
    border: none;
7408
    padding: 10px;
7409
    border: 1px solid #e44d3a;
7410
    border-radius: 3px;
7411
}
7412
 
7413
.usy-dt .reply {
7414
    margin: 3px 0 0 10px;
7415
    width: 360px;
7416
    height: 40px;
7417
    background-color: #efefef;
7418
    border: 1px solid #e5e5e5;
7419
    padding-left: 10px;
7420
    border-radius: 3px;
7421
}
7422
 
7423
.replybtn {
7424
    background-color: #e44d3a;
7425
    color: #fff;
7426
    padding: 10px;
7427
    margin-left: 15px;
7428
    border-radius: 3px;
7429
}
7430
 
7431
.replybtn:hover {
7432
    color: #fff;
7433
}
7434
 
7435
.rewivew ul li {
7436
    margin-right: 5px !important;
7437
}
7438
 
7439
.security hr {
7440
    margin-right: -15px;
7441
    margin-left: -15px;
7442
}
7443
 
7444
.privacy .la-check {
7445
    float: left;
7446
    font-size: 12px;
7447
    margin: 5px 5px 0 0;
7448
    padding: 3px;
7449
    background-color: #e44d3a;
7450
    color: #fff;
7451
    border-radius: 50%;
7452
}
7453
 
7454
ul#myTab {
7455
    border-bottom: 1px solid #e5e5e5;
7456
}
7457
 
7458
.nav-tabs .nav-link {
7459
    border: none;
7460
}
7461
 
7462
.noborder {
7463
    border-bottom: none;
7464
}
7465
 
7466
.manbids {
7467
    margin-bottom: 0 !important;
7468
}
7469
 
7470
.noreply {
7471
    padding-top: 30px;
7472
}
7473
 
7474
#my-bids .nav-tabs {
7475
    margin-bottom: 20px;
7476
    margin-top: 7px;
7477
    padding-bottom: 0;
7478
}
7479
 
7480
#my-bids ul {
7481
    margin-bottom: 15px;
7482
    margin-top: 7px;
7483
    padding-bottom: 0;
7484
}
7485
 
7486
.savedjob-info p {
7487
    color: #666666;
7488
    margin-top: 5px;
7489
}
7490
 
7491
#my-bids ul li a {
7492
    color: #000000;
7493
    font-size: 16px;
7494
    font-weight: 500;
7495
}
7496
 
7497
#my-bids li a:hover {
7498
    color: #e44d3a;
7499
}
7500
 
7501
#saved-jobs ul {
7502
    margin-bottom: 20px;
7503
}
7504
 
7505
#saved-jobs ul li a {
7506
    color: #000000;
7507
    font-size: 16px;
7508
    font-weight: 500;
7509
}
7510
 
7511
#saved-jobs li a:hover {
7512
    color: #e44d3a;
7513
}
7514
 
7515
.wordpressdevlp h2 {
7516
    font-size: 18px;
7517
    font-weight: 600;
7518
    margin-bottom: 15px;
7519
}
7520
 
7521
#saved-jobs .nav-tabs .nav-item.show .nav-link,
7522
#saved-jobs .nav-tabs .nav-link.active {
7523
    background-color: inherit;
7524
    color: #e44d3a !important;
7525
    padding-bottom: 9px;
7526
    border-bottom: 2px solid #e44d3a !important;
7527
}
7528
 
7529
#my-bids .nav-tabs .nav-item.show .nav-link,
7530
#my-bids .nav-tabs .nav-link.active {
7531
    background-color: inherit;
7532
    color: #e44d3a !important;
7533
    padding-bottom: 9px;
7534
    border-bottom: 2px solid #e44d3a !important;
7535
}
7536
 
7537
.descptab li img {
7538
    float: left !important;
7539
    filter: inherit !important;
7540
}
7541
 
7542
.bklink {
7543
    border-bottom: none !important;
7544
    width: unset !important;
7545
    float: right !important;
7546
}
7547
 
7548
.bklik {
7549
    border-bottom: none !important;
7550
}
7551
 
7552
/*////////////////////////////////////////My css//////////////////////////////// //////////////////////////////////////////////////////////////////////////////*/
7553
 
7554
.savedjob-info li {
7555
    display: inline-block;
7556
    padding-left: 25px;
7557
}
7558
 
7559
.savedjob-info h3 {
7560
    font-size: 14px;
7561
    font-weight: 500;
7562
}
7563
 
7564
.settingjb ul li {
7565
    margin-right: 25px !important;
7566
}
7567
 
7568
.mangebid li {
7569
    padding-left: 0;
7570
    padding-right: 20px;
7571
    padding-top: 10px;
7572
}
7573
 
7574
.bk-links.bklink li {
7575
    padding-right: 0;
7576
}
7577
 
7578
.bidsbtn {
7579
    position: relative;
7580
}
7581
 
7582
.biddersinfo li {
7583
    padding-left: 0;
7584
    padding-right: 20px;
7585
}
7586
 
7587
#review {
7588
    background-color: #fff;
7589
    margin-bottom: 40px;
7590
}
7591
 
7592
.starreview {
7593
    padding-left: 20px;
7594
}
7595
 
7596
.replytext {
7597
    padding-bottom: 20px;
7598
}
7599
 
7600
.starrevi {
7601
    padding-left: 20px;
7602
}
7603
 
7604
.job-dt li a {
7605
    background-color: #51a5fb;
7606
}
7607
 
7608
.apply-jobbox {
7609
    text-align: center;
7610
}
7611
 
7612
.apply-jobbox form input {
7613
    width: 100%;
7614
    margin-top: 20px;
7615
    padding: 10px;
7616
    color: #222;
7617
    border: 1px solid #e5e5e5;
7618
    border-radius: 3px;
7619
    font-size: 14px;
7620
}
7621
 
7622
.apply-jobbox h3 {
7623
    margin: 20px 0;
7624
}
7625
 
7626
.select-files {
7627
    border: 1px solid #e5e5e5;
7628
    margin-top: 20px;
7629
    padding: 30px;
7630
    background: #efefef;
7631
}
7632
 
7633
.select-files button {
7634
    margin-bottom: 20px;
7635
    background-color: transparent;
7636
    border: 1px solid #e5e5e5;
7637
    padding: 10px 15px 10px 15px;
7638
    border-radius: 5px;
7639
    font-weight: 600;
7640
}
7641
 
7642
.select-files button:hover {
7643
    background-color: #e44d3a;
7644
    color: #fff;
7645
}
7646
 
7647
.close {
7648
    position: absolute;
7649
    right: 0px;
7650
    top: 0px;
7651
    color: #929292;
7652
    border: 1px solid !important;
7653
    border-radius: 50%;
7654
    height: 30px;
7655
    width: 30px;
7656
}
7657
 
7658
.mapouter iframe {
7659
    width: 100%;
7660
    height: 400px;
7661
}
7662
 
7663
.mapouter {
7664
    position: relative;
7665
    text-align: right;
7666
    height: 500px;
7667
    width: 100%;
7668
}
7669
 
7670
.gmap_canvas {
7671
    overflow: hidden;
7672
    background: none !important;
7673
}
7674
 
7675
.video-iframe {
7676
    width: 100%;
7677
    height: 400px;
7678
}
7679
 
7680
.custom-file-input {
7681
    color: transparent;
7682
    opacity: 1;
7683
    /* margin-left: 140px; */
7684
    margin-bottom: 10px;
7685
}
7686
 
7687
.custom-file-input::-webkit-file-upload-button {
7688
    visibility: hidden;
7689
}
7690
 
7691
.custom-file-input::before {
7692
    content: "Select Files";
7693
    color: #fff;
7694
    display: inline-block;
7695
    border: 1px solid #e5e5e5;
7696
    border-radius: 3px;
7697
    background: #e44d3a;
7698
    font-weight: 500;
7699
    padding: 10px 15px;
7700
    outline: none;
7701
    white-space: nowrap;
7702
    -webkit-user-select: none;
7703
    cursor: pointer;
7704
}
7705
 
7706
.custom-file-input:hover::before {
7707
    background-color: #e44d3a;
7708
    color: #fff;
7709
}
7710
 
7711
.custom-file-input:active {
7712
    outline: 0;
7713
}
7714
 
7715
.custom-file-input:active::before {
7716
    background: #e44d3a;
7717
    color: #fff;
7718
}
7719
 
7720
.bids-time {
7721
    float: right;
7722
}
7723
 
7724
.saved-post {
7725
    padding: 0;
7726
}
7727
 
7728
.saved-post p {
7729
    padding-bottom: 20px;
7730
}
7731
 
7732
.saved-info li {
7733
    padding-right: 25px;
7734
    padding-left: 0;
7735
}
7736
 
7737
.saved-btn {
7738
    padding: 0;
7739
    margin-bottom: -12px;
7740
}
7741
 
7742
.applied-post {
7743
    padding: 0;
7744
}
7745
 
7746
.post-bid {
7747
    padding: 0 !important;
7748
}
7749
 
7750
.bidsbtn {
7751
    padding-top: 0 !important;
7752
}
7753
 
7754
.active-bids {
7755
    padding: 0;
7756
}
7757
 
7758
.activ-bidinfo li {
7759
    padding-top: 10px;
7760
    padding-left: 0;
7761
    padding-right: 25px;
7762
}
7763
 
7764
.activebtn {
7765
    padding-left: 0;
7766
}
7767
 
7768
.p-all {
7769
    padding: 0px;
7770
    float: left;
7771
    width: 100%;
7772
    position: relative;
7773
}
7774
 
7775
.toggle-btn .custom-switch .custom-control-label::before {
7776
    left: -2.25rem;
7777
    width: 70px;
7778
    pointer-events: all;
7779
    border-radius: 100px;
7780
    height: 30px;
7781
    top: -1px;
7782
    box-shadow: none;
7783
}
7784
 
7785
.toggle-btn .custom-control-label::before {
7786
    position: absolute;
7787
    top: 0.25rem;
7788
    left: -1.5rem;
7789
    display: block;
7790
    width: 1rem;
7791
    height: 1rem;
7792
    pointer-events: none;
7793
    content: "";
7794
    background-color: #fff;
7795
    border: #e1e1e1 solid 2px;
7796
}
7797
 
7798
.custom-control-input:checked~.custom-control-label::before {
7799
    color: #fff;
7800
    border-color: #e44d3a;
7801
    background-color: #e44d3a;
7802
    box-shadow: none;
7803
    outline: none;
7804
}
7805
 
7806
.toggle-btn .custom-switch .custom-control-label::after {
7807
    top: calc(-1px + 2px);
7808
    left: calc(-36px + 2px);
7809
    width: calc(30px - 4px);
7810
    height: calc(30px - 4px);
7811
    background-color: #e1e1e1;
7812
    border-radius: 100%;
7813
    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;
7814
    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;
7815
    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;
7816
}
7817
 
7818
.toggle-btn .custom-control-label::after {
7819
    position: absolute;
7820
    top: 0.25rem;
7821
    left: -1.5rem;
7822
    display: block;
7823
    width: 0;
7824
    height: 0;
7825
    content: "";
7826
    background: no-repeat 50%/50% 50%;
7827
}
7828
 
7829
.toggle-btn .custom-control-label {
7830
    position: initial;
7831
    margin-bottom: 0;
7832
    vertical-align: top;
7833
}
7834
 
7835
.toggle-btn .custom-switch .custom-control-input:checked~.custom-control-label::after {
7836
    background-color: #fff;
7837
    -webkit-transform: translateX(2.5rem);
7838
    transform: translateX(2.5rem);
7839
}
7840
 
7841
.custom-control-label {
7842
    position: relative;
7843
    margin-bottom: 0;
7844
    vertical-align: top;
7845
    line-height: 24px;
7846
    font-size: 14px;
7847
    color: #666666;
7848
}
7849
 
7850
.small-text-children p,
7851
.small-text-children span {
7852
    font-size: .8rem;
7853
}
7854
 
7855
.search-item-selected {
7856
    box-shadow: 2px 4px 3px rgb(0 0 0 / 15%);
7857
    padding: 2%;
7858
    border-radius: 6px;
7859
    font-weight: bold;
7860
}
7861
 
7862
main {
7863
    background-color: #fff !important;
7864
}
7865
 
7866
.row .sc-dkzDqf {
7867
    margin: 0 auto;
7868
}
7869
 
7870
.test-section .title,
7871
.test-section .description {
7872
    margin-bottom: 10px;
7873
}
7874
 
7875
.test-section .btn-danger {
7876
    margin-right: 10px;
7877
}
7878
 
7879
.test-section .panel-body {
7880
    padding: 20px 0px;
7881
}
7882
 
7883
.test-section .panel {
7884
    margin-top: 20px;
7885
    padding-bottom: 10px;
7886
}
7887
 
7888
.test-section .panel-title {
7889
    font-size: 16px;
7890
    font-weight: bold;
7891
    text-transform: uppercase;
7892
}
7893
 
7894
.test-section .np-padding {
7895
    padding: 0px;
7896
}
7897
 
7898
.test-section .checkbox {
7899
    display: flex;
7900
    margin: 20px 0px;
7901
}
7902
 
7903
.test-section .option {
7904
    margin-left: 10px;
7905
}
7906
 
7907
.checkbox input[type=checkbox],
7908
input[type=radio] {
7909
    margin-top: 5px !important;
7910
}
7911
 
7912
.test-section h6 {
7913
    margin-bottom: 10px;
7914
    color: #0860bf;
7915
}
7916
 
7917
.wizard {
7918
    display: flex;
7919
    margin-top: 10px;
7920
}
7921
 
7922
.wizard li {
7923
    width: 50%;
7924
    display: inline-block;
7925
}
7926
 
7927
.btn-secondary:disabled,
7928
.btn-primary:disabled {
7929
    cursor: no-drop;
7930
}
7931
 
7932
.test-section .btn-primary {
7933
    margin-left: 10px
7934
}
7935
 
7936
.previous {
7937
    text-align: left;
7938
}
7939
 
7940
.next {
7941
    text-align: right;
7942
}
7943
 
7944
.test-section .close {
7945
    border: none !important;
7946
    border-radius: 0px !important;
7947
}
7948
 
7949
.ratin-range {
7950
    display: block;
7951
}
7952
 
7953
.ratin-range li {
7954
    display: inline-block;
7955
    width: 6%;
7956
}
7957
 
7958
.ratin-range li .option {
7959
    margin-top: 2px !important;
7960
}
7961
 
7962
#react-self-evaluation .company-up-info ul {
7963
    width: 100%;
7964
    position: absolute;
7965
    float: left;
7966
    left: 0px;
7967
    bottom: 4vw;
7968
}
7969
 
7970
#react-self-evaluation .company-up-info {
7971
    padding: 30px 10px;
7972
    min-height: 20vw;
7973
    border: 1px solid #e5e5e5
7974
}
7975
 
7976
#react-self-evaluation .company-up-info h3 {
7977
    width: 90%;
7978
    margin: 5px auto;
7979
}
7980
 
7981
.mb10 {
597 geraldo 7982
    margin-bottom: 3vw;
598 geraldo 7983
}
1239 steven 7984
 
7985
.opt-h6 {
7986
    font-weight: 600 !important;
7987
    color: #000 !important;
597 geraldo 7988
}