Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
5363 stevensc 1
.overlay:before {
2
    content: "";
3
    position: absolute;
4
    top: 0;
5
    left: 0;
6
    width: 100%;
7
    height: 100%;
8
    background-color: rgba(0, 0, 0, 0.75);
9
    z-index: 99;
10
}
11
 
12
/* ========== login_register ========== */
13
 
14
.break-ellipsis {
15
    max-width: 15ch;
16
    text-overflow: ellipsis;
17
    white-space: nowrap;
18
    overflow: hidden;
19
}
20
 
21
.user-account {
22
    border-left: 1px solid #dd3e2b;
23
    border-right: 1px solid #dd3e2b;
24
    box-sizing: border-box;
25
    position: relative;
26
    padding: 0 1rem;
27
}
28
 
29
/* =================== main-section ================= */
30
 
31
main {
32
    width: 100%;
33
 
34
    @media (min-width: 768px) {
35
        padding: 0 1rem;
36
    }
37
 
38
    @media (min-width: 1024px) {
39
        padding: 0 5%;
40
    }
41
}
42
 
43
.members-container {
44
    display: flex;
45
    flex-direction: column;
46
    gap: 0.5rem;
47
    align-items: center;
48
    justify-content: center;
49
}
50
 
51
.empty-section {
52
    display: grid;
53
    place-items: center;
54
    height: 100%;
55
    min-height: 50vmin;
56
    width: 100%;
57
}
58
 
59
.notification-list {
60
    display: flex;
61
    flex-direction: column;
62
    gap: 1rem;
63
    padding: 1rem;
64
    background: var(--bg-color);
65
    border-radius: var(--border-radius);
66
    box-shadow: var(--light-shadow);
67
    border: 1px solid var(--border-primary);
68
 
69
    .notification-header {
70
        display: flex;
71
        align-items: center;
72
        justify-content: space-between;
73
        position: relative;
74
    }
75
 
76
    ul {
77
        display: flex;
78
        flex-direction: column;
79
        gap: 1rem;
80
 
81
        .notification-item {
82
            display: flex;
83
            flex-direction: column;
84
            justify-content: center;
85
            gap: 0.5rem;
86
 
87
            a,
88
            span {
89
                color: $font-color;
90
            }
91
 
92
            a {
93
                position: relative;
94
 
95
                &::before {
96
                    content: "";
97
                    width: 15px;
98
                    height: 15px;
99
                    border-radius: 100px;
100
                    background-color: var(--background-gray);
101
                    position: absolute;
102
                    top: 50%;
103
                    left: -1.2rem;
104
                    transform: translateY(-50%);
105
                }
106
            }
107
        }
108
    }
109
}
110
 
111
.full-width {
112
    float: left;
113
    width: 100%;
114
    background-color: #fff;
115
    margin-bottom: 20px;
116
}
117
 
118
/* ============= Suggestions ============ */
119
 
120
.sd-title {
121
    width: 100%;
122
    position: relative;
123
    display: grid;
124
    background-color: transparent;
125
    padding: 0 5px 20px;
126
 
127
    h3,
128
    a,
129
    label {
130
        color: $title-color;
131
    }
132
 
133
    h4 {
134
        margin-bottom: 5px;
135
        font-size: 16px;
136
        font-weight: 600;
137
        line-height: 24px;
138
    }
139
 
140
    h3 {
141
        font-size: 1.1rem;
142
        font-weight: 700;
143
    }
144
 
145
    a,
146
    label {
147
        font-size: 1rem;
148
        font-weight: 600;
149
        cursor: pointer;
150
    }
151
 
152
    i {
153
        color: $icons-color;
154
        font-size: 24px;
155
        position: absolute;
156
        right: 5px;
157
        top: 18px;
158
    }
159
}
160
 
161
.suggestion-usd {
162
    width: 100%;
163
    padding: 15px 20px;
164
 
165
    img {
166
        border-radius: 100px;
167
        background: #fff;
168
    }
169
 
170
    &>span {
171
        margin-top: 4px;
172
        position: relative;
173
        margin-left: 1rem;
174
 
175
        i {
176
            color: #b2b2b2;
177
            width: 25px;
178
            height: 25px;
179
            border-radius: 3px;
180
            cursor: pointer;
181
            text-align: center;
182
            display: flex;
183
            justify-content: center;
184
            align-items: center;
185
 
186
            &:hover {
187
                background-color: #0961bf !important;
188
                color: #fff;
189
                border-radius: 3px;
190
            }
191
        }
192
    }
193
}
194
 
195
.sgt-text {
196
    padding-left: 10px;
197
 
198
    h4 {
199
        color: $font-color;
200
        font-size: 14px;
201
        font-weight: 400;
202
        margin-bottom: 4px;
203
    }
204
 
205
    span {
206
        color: #686868;
207
        font-size: 14px;
208
    }
209
}
210
 
211
.icon-button {
212
    color: #b2b2b2;
213
    width: 25px;
214
    height: 25px;
215
    border-radius: 3px;
216
    cursor: pointer;
217
    text-align: center;
218
    display: flex !important;
219
    justify-content: center;
220
    align-items: center;
221
 
222
    &:hover {
223
        background-color: #0961bf !important;
224
        color: #fff;
225
    }
226
}
227
 
228
/* =================== main-ws-sec ================== */
229
 
230
.main-ws-sec {
231
    width: 100%;
232
}
233
 
234
/* ================ posts-section ================== */
235
 
236
.posts-section {
237
    width: 100%;
238
    display: flex;
239
    flex-direction: column;
240
    gap: 0.5rem;
6335 stevensc 241
    position: relative;
5363 stevensc 242
}
243
 
244
.post-bar {
245
    display: flex;
246
    flex-direction: column;
247
    padding: 1rem;
248
    width: 100%;
249
    border-radius: $border-radius;
250
    border-bottom: solid 1px $border-primary;
251
    border-top: solid 1px $border-primary;
252
    box-shadow: $light-shadow;
253
    background-color: $bg-color;
254
    gap: 0.5rem;
255
    box-shadow: $shadow;
256
}
257
 
258
.post_topbar {
259
    width: 100%;
260
    position: relative;
261
    display: flex;
262
    justify-content: space-between;
263
    color: $subtitle-color;
264
}
265
 
5931 stevensc 266
.header-options {
5923 stevensc 267
    position: absolute;
268
    right: 1rem;
269
    top: 50%;
270
    transform: translateY(-50%);
271
    z-index: 100;
272
}
273
 
5363 stevensc 274
.feed-options,
275
.comments-options {
276
    display: none;
277
    position: absolute;
5931 stevensc 278
    top: 100%;
6362 stevensc 279
    right: 0.5rem;
5363 stevensc 280
    z-index: 100;
281
    height: fit-content;
282
    min-width: 150px;
283
    padding: 0.5rem;
284
    background-color: $bg-color;
285
    border: 1px solid $border-primary;
286
    border-radius: $border-radius;
287
    border-start-end-radius: 0;
288
    box-shadow: $shadow;
289
 
290
    &.active {
291
        display: block;
292
    }
293
 
5931 stevensc 294
    .option-btn {
5363 stevensc 295
        cursor: pointer;
296
        color: $font-color;
5932 stevensc 297
        white-space: nowrap;
298
        transition: all 0.2s;
5363 stevensc 299
        width: 100%;
300
 
301
        &:hover {
5931 stevensc 302
            text-shadow: 0 0 1px $font-color;
5363 stevensc 303
        }
304
    }
305
}
306
 
307
.comments-options {
308
    top: 15px;
309
}
310
 
311
.usy-dt {
312
    display: flex;
313
    gap: 0.5rem;
314
 
315
    img {
316
        border-radius: 100px;
317
        background-color: #fff;
318
    }
319
}
320
 
321
.ed-opts {
322
    position: relative;
323
 
324
    &>a {
325
        color: #b2b2b2;
326
        font-size: 24px;
327
        position: relative;
328
 
329
        &:hover {
330
            color: #e44d3a;
331
        }
332
    }
333
}
334
 
335
.ed-options {
336
    position: absolute;
337
    top: 100%;
338
    right: 0;
339
    width: 130px;
340
    background-color: $bg-color;
341
    box-shadow: $light-shadow;
342
    padding: 20px;
343
    visibility: hidden;
344
    z-index: 5;
345
 
346
    &.active {
347
        visibility: visible;
348
    }
349
 
350
    li {
351
        width: 100%;
352
        margin-bottom: 15px;
353
 
354
        &:last-child {
355
            margin-bottom: 0;
356
        }
357
 
358
        a {
359
            color: #686868;
360
            font-size: 14px;
361
            font-weight: 600;
362
        }
363
    }
364
}
365
 
366
.usy-name {
367
    display: flex;
368
    flex-direction: column;
369
    justify-content: center;
370
 
371
    h3 {
372
        color: $subtitle-color;
373
        font-size: 18px;
374
        text-transform: capitalize;
375
        font-weight: 600;
376
    }
377
 
378
    span {
379
        color: $subtitle-color;
380
        font-size: 14px;
5706 stevensc 381
        display: flex;
382
        align-items: center;
383
        gap: 0.5rem;
5363 stevensc 384
    }
385
 
386
    img {
387
        margin-top: 4px;
388
        margin-right: 6px;
389
    }
390
}
391
 
392
.job_descp {
393
    width: 100%;
394
    display: grid;
395
    gap: 0.5rem;
396
 
397
    h3 {
398
        color: $subtitle-color;
399
        font-size: 16px;
400
        font-weight: 600;
401
    }
402
 
403
    &>p {
404
        color: $font-color;
405
        font-size: 15px;
406
        line-height: 24px;
407
    }
408
 
409
    video,
410
    img {
411
        width: 100%;
412
        max-height: 500px;
413
        border-radius: $border-radius;
414
        object-fit: cover;
415
        background-color: $white;
416
    }
417
}
418
 
419
.inmail_contacts {
420
    max-height: 80vh;
421
    display: grid;
422
    grid-template-rows: auto 1fr;
423
}
424
 
425
.reactions-list {
426
    width: 100%;
427
    display: flex;
428
    align-items: center;
429
    justify-content: space-around;
430
    padding-bottom: 10px;
431
    border-bottom: 1px solid #cdd2e1;
432
 
433
    li a,
434
    li button {
435
        color: $subtitle-color;
436
        font-size: 1rem;
437
    }
438
 
439
    @media (min-width: 768px) {
440
        justify-content: flex-start;
441
        gap: 1.5rem;
442
 
443
        li a,
444
        li button {
445
            font-size: 1rem;
446
        }
447
    }
448
}
449
 
450
.img-icon {
451
    height: 1rem;
452
    width: 1rem;
453
 
454
    &.lg {
455
        height: 1.5rem;
456
        width: 1.5rem;
457
    }
458
 
459
    &.options {
460
        height: 1.5rem;
461
        width: auto;
462
    }
463
 
464
    &.options-sm {
465
        height: 1rem;
466
        width: auto;
467
    }
468
 
469
    &.options-lg {
470
        height: 1.5rem;
471
        width: auto;
472
    }
473
}
474
 
475
.like-com {
476
    width: 100%;
477
    display: flex;
478
    justify-content: space-around;
479
    gap: 1rem;
480
 
481
    li {
482
        color: $font-color;
483
 
484
        a {
485
            color: $subtitle-color;
486
 
487
            &:hover,
488
            &.active {
489
                color: #e44d3a;
490
            }
491
 
492
            i {
493
                margin-right: 2px;
494
                font-size: 14px;
495
                position: relative;
496
                top: 2px;
497
            }
498
        }
499
 
500
        span {
501
            color: #ffffff;
502
            font-size: 13px;
503
            width: 30px;
504
            height: 30px;
505
            line-height: 30px;
506
            border-radius: 30px;
507
            text-align: center;
508
            font-weight: 600;
509
            margin-left: -25px;
510
        }
511
 
512
        .com {
513
            position: relative;
514
 
515
            img {
516
                margin-right: 10px;
517
            }
518
        }
519
    }
520
}
521
 
522
.comment {
523
    display: table-cell;
524
    vertical-align: top;
525
    width: 100%;
526
    padding-left: 10px;
527
 
528
    h3 {
5706 stevensc 529
        color: #000000;
530
        font-size: 16px;
5363 stevensc 531
        font-weight: 600;
5706 stevensc 532
        margin-bottom: 10px;
5363 stevensc 533
    }
534
 
535
    span {
5706 stevensc 536
        color: #b2b2b2;
5363 stevensc 537
        font-size: 14px;
5706 stevensc 538
        display: block;
539
        margin-bottom: 14px;
5363 stevensc 540
    }
541
 
542
    p {
5706 stevensc 543
        color: #686868;
544
        font-size: 14px;
545
        margin-bottom: 10px;
546
        line-height: 20px;
5363 stevensc 547
    }
548
 
5706 stevensc 549
    &>a {
550
        display: inline-block;
551
        color: #b2b2b2;
552
        font-size: 14px;
553
        font-weight: 600;
5363 stevensc 554
 
5706 stevensc 555
        &.active,
556
        &:hover {
557
            color: #e44d3a;
5363 stevensc 558
 
5706 stevensc 559
            i {
560
                font-weight: 600;
561
                margin-right: 6px;
562
            }
563
        }
564
    }
5363 stevensc 565
}
566
 
5706 stevensc 567
.process-comm {
5363 stevensc 568
    width: 100%;
569
    text-align: center;
5706 stevensc 570
    padding-top: 40px;
5363 stevensc 571
}
572
 
573
::-webkit-input-placeholder {
574
    /* Chrome/Opera/Safari */
575
    color: #b2b2b2;
576
}
577
 
578
::-moz-placeholder {
579
    /* Firefox 19+ */
580
    color: #b2b2b2;
581
}
582
 
583
:-ms-input-placeholder {
584
    /* IE 10+ */
585
    color: #b2b2b2;
586
}
587
 
588
:-moz-placeholder {
589
    /* Firefox 18- */
590
    color: #b2b2b2;
591
}
592
 
593
select {
5706 stevensc 594
    appearance: none;
595
    appearance: none;
5363 stevensc 596
}
597
 
598
/* ================= sign-in ================ */
599
 
600
.sign-in {
601
    background-color: #e75348;
602
}
603
 
604
.sign-in-page {
605
    width: 100%;
606
    padding: 2rem 1rem;
607
 
608
    .row {
609
        row-gap: 1rem;
610
    }
611
 
612
    @media (min-width: 768px) {
613
        padding: 2rem 0 0;
614
    }
615
}
616
 
617
.signin-popup {
618
    margin: 0 auto;
619
    position: relative;
620
}
621
 
622
.signin-popup:before {
623
    content: "";
624
    position: absolute;
625
    top: -16px;
626
    left: 56px;
627
    width: 30px;
628
    height: 30px;
629
    background-color: #fff;
630
    -webkit-border-radius: 100px;
631
    -moz-border-radius: 100px;
632
    -ms-border-radius: 100px;
633
    -o-border-radius: 100px;
634
    border-radius: 100px;
635
}
636
 
637
.signin-popup:after {
638
    content: "";
639
    position: absolute;
640
    top: -37px;
641
    left: 43px;
642
    width: 20px;
643
    height: 20px;
644
    background-color: #fff;
645
    -webkit-border-radius: 100px;
646
    -moz-border-radius: 100px;
647
    -ms-border-radius: 100px;
648
    -o-border-radius: 100px;
649
    border-radius: 100px;
650
}
651
 
652
.signin-pop {
653
    width: 100%;
654
    background-color: #fff;
655
    position: relative;
656
}
657
 
658
.signin-pop:before {
659
    content: "";
660
    position: absolute;
661
    top: 0;
662
    left: 50%;
663
    -webkit-transform: translateX(-50%);
664
    -moz-transform: translateX(-50%);
665
    -ms-transform: translateX(-50%);
666
    -o-transform: translateX(-50%);
667
    transform: translateX(-50%);
668
    height: 100%;
669
    width: 1px;
670
    background-color: #f0f0f0;
671
}
672
 
673
.cmp-info {
674
    width: 100%;
675
    display: grid;
676
    place-items: center;
677
    height: 100%;
678
 
679
    .cm-logo {
680
        display: flex;
681
        flex-direction: column;
682
        align-items: center;
683
        justify-content: center;
684
        padding: 0;
685
        width: 100%;
686
 
687
        img {
688
            margin-bottom: 0.5rem;
689
            width: 100%;
690
            object-fit: scale-down;
691
        }
692
    }
693
 
694
    @media (min-width: 721px) {
695
        .cm-logo {
696
            padding: 0 3rem;
697
        }
698
    }
699
}
700
 
701
/* =============== login-sec ============= */
702
 
703
.login-sec,
5768 stevensc 704
.sign_in_sec,
705
.sign_in_sec form {
5363 stevensc 706
    display: flex;
707
    flex-direction: column;
708
    row-gap: 1rem;
709
}
710
 
711
.login-sec {
712
    width: 100%;
713
 
714
    @media (min-width: 768px) {
715
        padding: 0 3rem;
716
    }
717
}
718
 
719
.sign-control {
720
    width: 100%;
721
    margin-bottom: 1.5rem;
722
    display: flex;
723
 
724
    li {
725
        display: inline-block;
726
 
727
        a {
728
            font-size: 14px;
729
            padding: 7px 10px;
730
            background-color: $button-bg-tertiary;
731
        }
732
    }
733
}
734
 
735
.sign_in_sec {
736
    width: 100%;
737
    display: none;
738
 
739
    &.current {
740
        display: flex;
741
    }
742
 
743
    h3 {
744
        font-size: 18px;
745
        font-weight: 600;
746
        position: relative;
747
        width: fit-content;
748
        padding-bottom: 0.5rem;
749
 
750
        &:before {
751
            content: "";
752
            position: absolute;
753
            background-color: #0961bf;
754
            bottom: 0;
755
            left: 0;
756
            width: 100%;
757
            height: 2px;
758
        }
759
    }
760
 
761
    form {
762
        width: 100%;
763
 
764
        input,
765
        input:-webkit-autofill,
766
        input:-webkit-autofill:hover,
767
        input:-webkit-autofill:focus,
768
        select:-webkit-autofill,
769
        select {
770
            box-shadow: 0 0 0px 1000px $bg-color inset;
771
            height: 40px;
772
            color: $font-color;
773
            background-color: $bg-color !important;
774
            border: 1px solid $border-primary;
775
            font-size: 14px;
776
            padding: 0 15px 0 40px;
777
            width: 100%;
778
        }
779
 
780
        select {
781
            line-height: 40px;
782
            height: 40px;
783
        }
784
 
785
        button {
786
            color: $button-text-color-secondary;
787
            border: 1px solid $border-primary;
788
            font-size: 16px;
789
            background-color: $button-bg-secondary;
790
            padding: 12px 27px;
791
            font-weight: 500;
792
            cursor: pointer;
793
 
794
            &:disabled {
795
                background-color: #dddddd;
796
                color: #a3a1a1;
797
            }
798
        }
799
    }
800
}
801
 
802
.sign_in_sec_button {
803
    color: #ffffff;
804
    font-size: 16px;
805
    background-color: #66a7dd;
806
    padding: 12px 27px;
807
    border: 0;
808
    font-weight: 500;
809
    cursor: pointer;
810
}
811
 
812
/* ============= sign_in_sec ============= */
813
 
814
.sn-field {
815
    width: 100%;
816
    position: relative;
817
 
818
    &>i {
819
        position: absolute;
820
        top: 50%;
821
        left: 15px;
822
        color: #666666;
823
        font-size: 16px;
824
        transform: translateY(-50%);
825
    }
826
 
827
    &>span {
828
        position: absolute;
829
        top: 50%;
830
        right: 15px;
831
        font-weight: 700;
832
        color: #666666;
833
        font-size: 15px;
834
        -webkit-transform: translateY(-50%);
835
        -moz-transform: translateY(-50%);
836
        -ms-transform: translateY(-50%);
837
        -o-transform: translateY(-50%);
838
        transform: translateY(-50%);
839
    }
840
}
841
 
842
.checky-sec {
843
    width: 100%;
844
    margin-top: 10px;
845
}
846
 
847
.checky-sec.st2 small {
848
    font-size: 13px;
849
    width: 90%;
850
    line-height: 20px;
851
}
852
 
853
.checky-sec.st2 .fgt-sec input[type="checkbox"]+label span {
854
    margin-top: 3px;
855
}
856
 
857
.fgt-sec * {
858
    cursor: pointer;
859
}
860
 
861
.fgt-sec input[type="checkbox"] {
862
    display: none;
863
}
864
 
865
.fgt-sec label {
866
    float: left;
867
}
868
 
869
.fgt-sec input[type="checkbox"]+label span {
870
    display: inline-block;
871
    width: 15px;
872
    height: 15px;
873
    position: relative;
874
    border: 1px solid #d2d2d2;
875
    -webkit-border-radius: 100px;
876
    -moz-border-radius: 100px;
877
    -ms-border-radius: 100px;
878
    -o-border-radius: 100px;
879
    border-radius: 100px;
880
}
881
 
882
.fgt-sec input[type="checkbox"]+label span:before {
883
    content: "";
884
    width: 7px;
885
    height: 7px;
886
    -webkit-border-radius: 100px;
887
    -moz-border-radius: 100px;
888
    -ms-border-radius: 100px;
889
    -o-border-radius: 100px;
890
    border-radius: 100px;
891
    font-size: 8px;
892
    color: #ffffff;
893
    opacity: 0;
894
    visibility: hidden;
895
    background-color: #e44d3a;
896
    position: absolute;
897
    font-family: fontawesome;
898
    top: 50%;
899
    left: 50%;
900
    -webkit-transform: translateX(-50%) translateY(-50%);
901
    -moz-transform: translateX(-50%) translateY(-50%);
902
    -ms-transform: translateX(-50%) translateY(-50%);
903
    -o-transform: translateX(-50%) translateY(-50%);
904
    transform: translateX(-50%) translateY(-50%);
905
}
906
 
907
.fgt-sec input[type="checkbox"]:checked+label span:before {
908
    opacity: 1;
909
    visibility: visible;
910
}
911
 
912
.fgt-sec small {
913
    /* float: left; */
914
    color: #000000;
915
    font-size: 14px;
916
    font-weight: 500;
917
    padding-left: 10px;
918
}
919
 
920
.checky-sec>a {
921
    float: right;
922
    color: #000000;
923
    font-size: 14px;
924
    font-weight: 500;
925
}
926
 
927
/* ======= Radio Button Styles ======= */
928
 
929
.fgt-sec input[type="radio"] {
930
    display: none;
931
}
932
 
933
.fgt-sec label {
934
    float: left;
935
}
936
 
937
.fgt-sec input[type="radio"]+label span {
938
    display: inline-block;
939
    width: 15px;
940
    height: 15px;
941
    position: relative;
942
    border: 1px solid #d2d2d2;
943
    -webkit-border-radius: 100px;
944
    -moz-border-radius: 100px;
945
    -ms-border-radius: 100px;
946
    -o-border-radius: 100px;
947
    border-radius: 100px;
948
}
949
 
950
.fgt-sec input[type="radio"]+label span:before {
951
    content: "";
952
    width: 7px;
953
    height: 7px;
954
    -webkit-border-radius: 100px;
955
    -moz-border-radius: 100px;
956
    -ms-border-radius: 100px;
957
    -o-border-radius: 100px;
958
    border-radius: 100px;
959
    font-size: 8px;
960
    color: #ffffff;
961
    opacity: 0;
962
    visibility: hidden;
963
    background-color: #e44d3a;
964
    position: absolute;
965
    font-family: fontawesome;
966
    top: 49%;
967
    left: 49%;
968
    -webkit-transform: translateX(-50%) translateY(-50%);
969
    -moz-transform: translateX(-50%) translateY(-50%);
970
    -ms-transform: translateX(-50%) translateY(-50%);
971
    -o-transform: translateX(-50%) translateY(-50%);
972
    transform: translateX(-50%) translateY(-50%);
973
}
974
 
975
.fgt-sec input[type="radio"]:checked+label span:before {
976
    opacity: 1;
977
    visibility: visible;
978
}
979
 
980
/* =============== signup-tab ============== */
981
 
982
.signup-tab {
983
    float: left;
984
    width: 100%;
985
    border: 1px solid #e5e5e5;
986
    text-align: center;
987
    padding: 15px 0;
988
    margin-bottom: 20px;
989
    position: relative;
990
    margin-top: -30px;
991
}
992
 
993
.signup-tab>i {
994
    position: absolute;
995
    top: 15px;
996
    left: 13px;
997
    color: #000;
998
    font-size: 14px;
999
}
1000
 
1001
.signup-tab h2 {
1002
    color: #000000;
1003
    font-size: 14px;
1004
    font-weight: 500;
1005
    margin-bottom: 15px;
1006
}
1007
 
1008
.signup-tab ul {
1009
    float: left;
1010
    width: 100%;
1011
}
1012
 
1013
.signup-tab ul li {
1014
    display: inline-block;
1015
    margin-right: -4px;
1016
}
1017
 
1018
.signup-tab ul li a {
1019
    color: #000000;
1020
    font-size: 14px;
1021
    font-weight: 500;
1022
    background-color: #e5e5e5;
1023
    padding: 10px 15px;
1024
    -webkit-border-radius: 3px 0px 0px 3px;
1025
    -moz-border-radius: 3px 0px 0px 3px;
1026
    -ms-border-radius: 3px 0px 0px 3px;
1027
    -o-border-radius: 3px 0px 0px 3px;
1028
    border-radius: 3px 0px 0px 3px;
1029
    display: inline-block;
1030
}
1031
 
1032
.signup-tab ul li.current a {
1033
    background-color: #e44d3a;
1034
    color: #fff;
1035
}
1036
 
1037
.signup-tab ul li:last-child a {
1038
    -webkit-border-radius: 0px 3px 3px 0px;
1039
    -moz-border-radius: 0px 3px 3px 0px;
1040
    -ms-border-radius: 0px 3px 3px 0px;
1041
    -o-border-radius: 0px 3px 3px 0px;
1042
    border-radius: 0px 3px 3px 0px;
1043
}
1044
 
1045
/* ============ login-resources ============= */
1046
 
1047
.login-resources {
1048
    h4 {
1049
        color: $title-color;
1050
        font-size: 14px;
1051
        font-weight: 600;
1052
        text-transform: uppercase;
1053
    }
1054
 
1055
    &,
1056
    ul {
1057
        width: 100%;
1058
        display: flex;
1059
        flex-direction: column;
1060
        gap: 1rem;
1061
 
1062
        li {
1063
            width: 100%;
1064
 
1065
            a {
1066
                display: block;
1067
                padding: 10px;
1068
 
1069
                i {
1070
                    margin-right: 15px;
1071
                }
1072
            }
1073
        }
1074
    }
1075
}
1076
 
1077
.fb {
1078
    background-color: #3b5998;
1079
}
1080
 
1081
.tw {
1082
    background-color: #4099ff;
1083
}
1084
 
1085
.tw .fa-twitter {
1086
    color: #fff;
1087
}
1088
 
1089
/* =============== footy-sec ============= */
1090
 
1091
.footy-sec {
1092
    width: 100%;
1093
    padding: 2rem 0;
1094
 
1095
    &.container {
1096
        display: flex;
1097
        flex-wrap: wrap;
1098
        align-items: center;
1099
        justify-content: center;
1100
        gap: 1rem;
1101
 
1102
        .row {
1103
            gap: 1rem;
1104
            width: 94% !important;
1105
            display: flex;
1106
            justify-content: space-evenly;
1107
        }
1108
    }
1109
 
1110
    p {
1111
        font-size: 14px;
1112
        font-weight: 500;
1113
        order: 3;
1114
 
1115
        img {
1116
            padding-right: 5px;
1117
            position: relative;
1118
            top: 6px;
1119
        }
1120
    }
1121
 
1122
    ul {
1123
        margin-top: 5px;
1124
 
1125
        li {
1126
            display: inline-block;
1127
            padding: 0 10px;
1128
            border-right: 1px solid #ffffff;
1129
 
1130
            &:last-child {
1131
                border-right: none;
1132
            }
1133
 
1134
            a {
1135
                display: inline-block;
1136
                color: #3b5998;
1137
                font-size: 14px;
1138
                font-weight: 500;
1139
            }
1140
        }
1141
    }
1142
}
1143
 
1144
footer {
1145
    width: 100%;
1146
    display: none;
1147
 
1148
    a {
1149
        color: $font-color;
1150
    }
1151
 
1152
    &.footer-row {
1153
        display: grid;
1154
        gap: 5px;
1155
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
1156
    }
1157
 
1158
    @media (min-width: 768px) {
1159
        display: block;
1160
    }
1161
}
1162
 
1163
.footy-sec.mn {
1164
    p {
1165
        color: #b2b2b2;
1166
    }
1167
 
1168
    ul {
1169
        padding: 30px 0;
1170
 
1171
        li {
1172
            border-color: #b2b2b2;
1173
 
1174
            a {
1175
                color: $subtitle-color;
1176
 
1177
                &:hover {
1178
                    color: #e44d3a;
1179
                }
1180
            }
1181
        }
1182
    }
1183
}
1184
 
1185
.fl-rgt {
1186
    max-width: 40px;
1187
    display: inline-flex;
1188
}
1189
 
1190
/* ================== USER PROFILE =================== */
1191
 
1192
 
1193
 
1194
.cover-sec {
1195
    background-color: #fff;
1196
    margin-bottom: 1.5rem;
1197
    max-height: 280px;
1198
    overflow: hidden;
1199
 
1200
    img {
1201
        width: 100%;
1202
    }
1203
 
1204
    &>a {
1205
        display: inline-block;
1206
        color: #e44d3a;
1207
        font-size: 16px;
1208
        background-color: #fff;
1209
        border: 1px solid #e44d3a;
1210
        position: absolute;
1211
        top: 30px;
1212
        right: 0;
1213
        padding: 10px 15px;
1214
        font-weight: 600;
1215
        margin-right: 15px;
1216
 
1217
        i {
1218
            padding-right: 5px;
1219
        }
1220
    }
1221
}
1222
 
1223
.horizontal-list .row {
1224
    display: flex;
1225
    flex-wrap: wrap;
1226
    align-items: flex-end;
1227
    justify-content: center;
1228
    gap: 0.5rem;
1229
 
1230
    .btn {
1231
        padding: 0.2rem 0.6rem;
1232
    }
1233
}
1234
 
1235
/* ============= user_profile ============= */
1236
 
1237
.user_profile {
1238
    width: 100%;
1239
    background-color: $bg-color;
1240
    padding: 1rem 0.25rem;
1241
    border-radius: $border-radius;
1242
    border-top: 1px solid $border-primary;
1243
    border-bottom: 1px solid $border-primary;
1244
    text-align: center;
1245
    box-shadow: $shadow;
1246
    display: flex;
1247
    flex-direction: column;
1248
    justify-content: center;
1249
    align-items: center;
1250
    gap: 1rem;
1251
    position: relative;
1252
    padding-top: 120px;
1253
 
1254
    @media (min-width: 768px) {
1255
        padding-top: 1rem;
1256
    }
1257
}
1258
 
1259
.user-pro-img {
1260
    width: 100%;
1261
    text-align: center;
1262
    position: absolute;
1263
    bottom: 50%;
1264
 
1265
    @media (min-width: 768px) {
1266
        bottom: auto;
1267
        position: relative;
1268
    }
1269
 
1270
    .add-dp {
1271
        position: absolute;
1272
        top: 10px;
1273
        left: 60%;
1274
    }
1275
 
1276
    img {
1277
        width: 160px;
1278
        border-radius: 100px;
1279
        background: #fff;
1280
        box-shadow: $light-shadow;
1281
        border: 1px solid $border-primary;
1282
    }
1283
}
1284
 
1285
.add-dp {
1286
    margin: -16px;
1287
    padding: 0;
1288
 
1289
    i {
1290
        bottom: 0;
1291
        font-size: 14px;
1292
        box-shadow: none;
1293
        position: relative;
1294
        border-radius: 50px;
1295
        width: 40px;
1296
        height: 40px;
1297
        background: #0961bf;
1298
        padding: 12px;
1299
        color: #ffff;
1300
        left: 0;
1301
        top: -5px;
1302
 
1303
        &:hover {
1304
            font-size: 14px;
1305
            border: 2px solid #fff;
1306
            background: #1dac98;
1307
            padding: 11px;
1308
        }
1309
    }
1310
 
1311
    input[type="file"] {
1312
        opacity: 0;
1313
        padding: 10px 0px 9px;
1314
        display: none;
1315
    }
1316
}
1317
 
1318
.user_pro_status {
1319
    width: 100%;
1320
}
1321
 
1322
.flw-hr {
1323
    float: left;
1324
    width: 100%;
1325
    margin-bottom: 30px;
1326
}
1327
 
1328
.flw-hr li {
1329
    display: inline-block;
1330
    margin-right: 17px;
1331
}
1332
 
1333
.flw-hr li:last-child {
1334
    margin-right: 0;
1335
}
1336
 
1337
.flw-hr li a {
1338
    display: inline-block;
1339
    color: #ffffff;
1340
    font-size: 16px;
1341
    font-weight: 600;
1342
    padding: 11px 15px;
1343
}
1344
 
1345
.flw-hr li a i {
1346
    padding-right: 5px;
1347
}
1348
 
1349
.flww {
1350
    background-color: #53d690;
1351
}
1352
 
1353
.hre {
1354
    background-color: #51a5fb;
1355
}
1356
 
1357
/* =============== flw-status ============ */
1358
 
1359
.flw-status {
1360
    width: 100%;
1361
    display: flex;
1362
    justify-content: center;
1363
    gap: 1rem;
1364
 
1365
    li {
1366
        display: flex;
1367
        flex-direction: column;
1368
        gap: 0.5rem;
1369
 
1370
        span,
1371
        b {
1372
            color: $font-color;
1373
        }
1374
 
1375
        b {
1376
            font-weight: 600;
1377
        }
1378
    }
1379
}
1380
 
1381
/* ================== social_links ============= */
1382
 
1383
@media (min-width: 721px) {
1384
    .group-view-tab {
1385
        margin-left: 3.5rem;
1386
    }
1387
 
1388
    .group-view-tab span {
1389
        text-overflow: ellipsis;
1390
        white-space: nowrap;
1391
        overflow: hidden;
1392
    }
1393
}
1394
 
1395
@media (max-width: 720px) {
1396
    .group-view-tab {
1397
        margin-left: 3.5rem;
1398
    }
1399
}
1400
 
1401
.text-decoration-underline {
1402
    text-decoration: underline !important;
1403
}
1404
 
1405
.ellipsis {
1406
    text-overflow: ellipsis;
1407
    white-space: nowrap;
1408
    overflow: hidden;
1409
}
1410
 
1411
.la-globe {
1412
    color: #51a5fb;
1413
}
1414
 
1415
/* ================= user-tab-sec ============== */
1416
 
1417
.notifications-grid {
1418
    display: grid;
1419
    grid-template-columns: 1fr;
1420
    gap: 1rem;
1421
 
5933 stevensc 1422
    .main-left-sidebar {
1423
        grid-area: auto;
1424
    }
1425
 
1426
    @media (min-width: 768px) {
5363 stevensc 1427
        grid-template-columns: 30% 70%;
1428
    }
1429
}
1430
 
5950 stevensc 1431
.skill-tags {
1432
    display: flex;
1433
    flex-wrap: wrap;
1434
    gap: .5rem;
1435
}
1436
 
5363 stevensc 1437
.show_filters {
1438
    display: block;
1439
}
1440
 
1441
.hidden_filters {
1442
    display: none !important;
1443
}
1444
 
1445
@media (min-width: 768px) {
1446
    .show_filters {
1447
        display: none;
1448
    }
1449
 
1450
    .hidden_filters {
1451
        display: block !important;
1452
    }
1453
}
1454
 
1455
/* ================= user-tab-sec ============== */
1456
 
1457
.user-tab-sec {
1458
    width: 100%;
1459
 
1460
    h3 {
1461
        color: $title-color;
1462
        font-size: 1.5rem;
1463
        font-weight: 600;
1464
        text-transform: capitalize;
1465
    }
1466
}
1467
 
1468
.star-descp {
1469
    float: left;
1470
    width: 100%;
1471
    margin-bottom: 10px;
1472
}
1473
 
1474
.star-descp ul li {
1475
    margin-right: 5px !important;
1476
}
1477
 
1478
.star-descp>a {
1479
    float: left;
1480
    color: #51a5fb;
1481
    font-size: 18px;
1482
    font-weight: 600;
1483
    margin-left: 20px;
1484
    text-decoration: underline;
1485
}
1486
 
1487
.star-descp>a:hover {
1488
    color: #51a5fb;
1489
}
1490
 
1491
.star-descp span {
1492
    float: left;
1493
    color: #686868;
1494
    font-size: 18px;
1495
    font-weight: 600;
1496
    margin-right: 20px;
1497
}
1498
 
1499
.star-descp>ul {
1500
    float: left;
1501
}
1502
 
1503
.star-descp ul li {
1504
    display: inline-block;
1505
}
1506
 
1507
.star-descp ul li i {
1508
    color: #b7ce1f;
1509
    font-size: 16px;
1510
}
1511
 
1512
.tab-feed {
1513
    float: left;
1514
    width: 100%;
1515
    margin-bottom: 45px;
1516
    margin-top: 20px;
1517
}
1518
 
1519
.tab-feed ul {
1520
    float: left;
1521
    width: 100%;
1522
}
1523
 
1524
.tab-feed ul li {
1525
    display: inline-block;
1526
    margin-right: 35px;
1527
    text-align: center;
1528
}
1529
 
1530
.savetext ul {
1531
    border-bottom: none !important;
1532
}
1533
 
1534
.tab-feed.st2 ul li {
1535
    margin-right: 17px;
1536
}
1537
 
1538
.tab-feed ul li:last-child {
1539
    margin-right: 0;
1540
}
1541
 
1542
.tab-feed ul li.active img {
1543
    filter: grayscale(0);
1544
}
1545
 
1546
.tab-feed ul li.active span {
1547
    color: #e44d3a;
1548
}
1549
 
1550
.tab-feed ul li img {
1551
    float: none;
1552
    margin-bottom: 5px;
1553
    filter: grayscale(100%);
1554
}
1555
 
1556
.tab-feed ul li span {
1557
    display: block;
1558
    color: #b2b2b2;
1559
    font-weight: 400;
1560
    font-size: 16px;
1561
}
1562
 
1563
.tab-feed ul li:last-child {
1564
    margin-right: 0;
1565
}
1566
 
1567
/* ================ message-btn ============= */
1568
 
1569
.message-btn a {
1570
    display: inline-block;
1571
    font-size: 16px;
1572
    padding: 12px;
1573
    font-weight: 500;
1574
}
1575
 
1576
.message-btn a:hover {
1577
    color: #fff;
1578
}
1579
 
1580
.message-btn a i {
1581
    padding-right: 5px;
1582
}
1583
 
1584
/* ============== widget-portfolio ============== */
1585
 
1586
.wd-heady {
1587
    float: left;
1588
    width: 100%;
1589
    padding: 20px 20px;
1590
    border-bottom: 1px solid #e5e5e5;
1591
}
1592
 
1593
.wd-heady h3 {
1594
    color: #000000;
1595
    font-size: 18px;
1596
    font-weight: 600;
1597
    float: left;
1598
}
1599
 
1600
.wd-heady img {
1601
    float: right;
1602
}
1603
 
1604
.pf-gallery {
1605
    float: left;
1606
    width: 100%;
1607
    padding: 15px 15px;
1608
}
1609
 
1610
.pf-gallery ul {
1611
    float: left;
1612
    width: 100%;
1613
}
1614
 
1615
.pf-gallery ul li {
1616
    float: left;
1617
    width: 33.33%;
1618
    padding: 5px;
1619
    overflow: hidden;
1620
}
1621
 
1622
.pf-gallery ul li:hover {
1623
    -webkit-transform: scale(1.2);
1624
    -moz-transform: scale(1.2);
1625
    -ms-transform: scale(1.2);
1626
    -o-transform: scale(1.2);
1627
    transform: scale(1.2);
1628
}
1629
 
1630
.pf-gallery img {
1631
    width: 100%;
1632
}
1633
 
1634
.product-feed-tab {
1635
    display: flex;
1636
    flex-direction: column;
1637
    gap: 0.5rem;
1638
}
1639
 
1640
.product-feed-tab.current {
1641
    display: block;
1642
}
1643
 
1644
/* ==================== portfolio-gallery-sec ==================== */
1645
 
1646
.row {
1647
    margin: 0;
1648
}
1649
 
1650
/* ============== overview-box ============= */
1651
 
1652
.close-box {
1653
    position: absolute;
1654
    top: -20px;
1655
    right: -20px;
1656
    color: #fff;
1657
    font-size: 14px;
1658
    text-align: center;
1659
    width: 22px;
1660
    height: 22px;
1661
    line-height: 22px;
1662
    border: 1px solid #fff;
1663
    border-radius: 100px;
1664
    font-weight: 600;
1665
}
1666
 
1667
.close-box:hover {
1668
    color: #fff;
1669
}
1670
 
1671
.save {
1672
    background-color: #e44d3a;
1673
    color: #fff;
1674
    border-color: transparent;
1675
}
1676
 
1677
.save-add {
1678
    background-color: #fff;
1679
    padding: 13px 13px !important;
1680
}
1681
 
1682
.cancel {
1683
    background-color: #fff;
1684
    color: #000;
1685
}
1686
 
1687
.datepicky {
1688
    float: left;
1689
    width: 100%;
1690
}
1691
 
1692
.no-left-pd {
1693
    padding: 0;
1694
}
1695
 
1696
.no-righ-pd {
1697
    padding-right: 0;
1698
}
1699
 
1700
.datefm {
1701
    width: 100%;
1702
    position: relative;
1703
 
1704
    i {
1705
        position: absolute;
1706
        top: 11px;
1707
        right: 15px;
1708
        font-size: 18px;
1709
        color: #b2b2b2;
1710
    }
1711
}
1712
 
1713
.close-skl {
1714
    position: absolute;
1715
    top: 10px;
1716
    right: 10px;
1717
    color: #b2b2b2;
1718
    font-size: 14px;
1719
}
1720
 
1721
.file-submit {
1722
    border: 1px solid #e5e5e5;
1723
    position: relative;
1724
    padding: 0px;
1725
    height: 40px;
1726
    margin-bottom: 20px;
1727
    border-radius: 3px;
1728
}
1729
 
1730
.file-submit [type="file"] {
1731
    height: 40px;
1732
    overflow: hidden;
1733
    width: 100%;
1734
    float: left;
1735
    position: absolute;
1736
    padding: 10px 4px 0px 12px;
1737
    font-size: 14px;
1738
    opacity: 0;
1739
    display: none;
1740
}
1741
 
1742
.file-submit [type="file"]+label {
1743
    background: #e44d3a;
1744
    border: none;
1745
    float: left;
1746
    border-top-right-radius: 0px;
1747
    border-bottom-right-radius: 0px;
1748
    border-top-left-radius: 3px;
1749
    border-bottom-left-radius: 3px;
1750
    color: #fff;
1751
    cursor: pointer;
1752
    /* display: inline-block; */
1753
    font-size: 14px;
1754
    font-weight: 500;
1755
    outline: none;
1756
    padding: 12px 15px;
1757
    position: relative;
1758
    transition: all 0.3s;
1759
    vertical-align: middle;
1760
    margin: 0;
1761
}
1762
 
1763
.file-submit.nomg {
1764
    border: 0;
1765
    margin-bottom: 20px;
1766
}
1767
 
1768
.file-submit.nomg input {
1769
    margin-bottom: 0;
1770
    padding-top: 0;
1771
}
1772
 
1773
.daty {
1774
    float: left;
1775
    width: 100%;
1776
    position: relative;
1777
}
1778
 
1779
.daty>i {
1780
    position: absolute;
1781
    top: 10px;
1782
    right: 15px;
1783
    color: #b2b2b2;
1784
    font-size: 20px;
1785
}
1786
 
1787
a:hover {
1788
    color: initial;
1789
}
1790
 
1791
.pf-img {
1792
    float: left;
1793
    width: 100%;
1794
    background-color: #f2f2f2;
1795
    padding: 15px;
1796
    margin-bottom: 20px;
1797
}
1798
 
1799
/* ================= billing-method ============== */
1800
 
1801
.billing-method {
1802
    float: left;
1803
    width: 100%;
1804
    background-color: #fff;
1805
    border-left: 1px solid #e4e4e4;
1806
    border-right: 1px solid #e4e4e4;
1807
    border-bottom: 1px solid #e4e4e4;
1808
    margin-bottom: 20px;
1809
}
1810
 
1811
.billing-method ul {
1812
    float: left;
1813
    width: 100%;
1814
}
1815
 
1816
.billing-method ul li {
1817
    float: left;
1818
    width: 100%;
1819
    border-bottom: 1px solid #e5e5e5;
1820
    padding: 25px 20px;
1821
}
1822
 
1823
.billing-method ul li h3 {
1824
    color: #000000;
1825
    font-size: 18px;
1826
    font-weight: 600;
1827
    float: left;
1828
}
1829
 
1830
.billing-method ul li a,
1831
.billing-method ul li span {
1832
    float: right;
1833
    color: #000000;
1834
    font-size: 13px;
1835
    text-transform: capitalize;
1836
    font-weight: 600;
1837
    margin-top: 3px;
1838
}
1839
 
1840
.billing-method ul li i {
1841
    font-size: 13px;
1842
    color: #e44d3a;
1843
}
1844
 
1845
.lt-sec {
1846
    float: left;
1847
    width: 100%;
1848
    text-align: center;
1849
    padding: 30px 0;
1850
}
1851
 
1852
.lt-sec img {
1853
    float: none;
1854
    margin-bottom: 15px;
1855
}
1856
 
1857
.lt-sec h4 {
1858
    color: #686868;
1859
    font-size: 18px;
1860
    font-weight: 600;
1861
    margin-bottom: 25px;
1862
}
1863
 
1864
.lt-sec>a {
1865
    display: inline-block;
1866
    color: #ffffff;
1867
    font-size: 16px;
1868
    background-color: #e44d3a;
1869
    padding: 10px 25px;
1870
}
1871
 
1872
/* ============== add-billing-method ============== */
1873
 
1874
.add-billing-method {
1875
    float: left;
1876
    width: 100%;
1877
    background-color: #fff;
1878
    border-left: 1px solid #e4e4e4;
1879
    border-right: 1px solid #e4e4e4;
1880
    border-bottom: 1px solid #e4e4e4;
1881
}
1882
 
1883
.add-billing-method h3 {
1884
    color: #000000;
1885
    font-size: 18px;
1886
    font-weight: 600;
1887
    padding: 20px 20px;
1888
    border-bottom: 1px solid #e5e5e5;
1889
}
1890
 
1891
.add-billing-method>h4 {
1892
    color: #686868;
1893
    font-size: 13px;
1894
    font-weight: 500;
1895
    padding: 20px 20px;
1896
    border-bottom: 1px solid #e5e5e5;
1897
    float: left;
1898
    width: 100%;
1899
}
1900
 
1901
.add-billing-method img {
1902
    margin-right: 10px;
1903
}
1904
 
1905
.add-billing-method span {
1906
    margin-top: 4px;
1907
    float: left;
1908
}
1909
 
1910
/* ============= payment_methods ============ */
1911
 
1912
.payment_methods {
1913
    float: left;
1914
    width: 100%;
1915
}
1916
 
1917
.payment_methods>h4 {
1918
    color: #000000;
1919
    font-size: 16px;
1920
    font-weight: 600;
1921
    position: relative;
1922
    padding: 25px 20px 25px 45px;
1923
    float: left;
1924
    width: 100%;
1925
}
1926
 
1927
.rowwy {
1928
    float: left;
1929
    width: 100%;
1930
}
1931
 
1932
.pd-left-none {
1933
    padding-left: 0;
1934
}
1935
 
1936
.pd-right-none {
1937
    padding-right: 0;
1938
}
1939
 
1940
.payment_methods h4:before {
1941
    content: "";
1942
    position: absolute;
1943
    top: 50%;
1944
    -webkit-transform: translateY(-50%);
1945
    -moz-transform: translateY(-50%);
1946
    -ms-transform: translateY(-50%);
1947
    -o-transform: translateY(-50%);
1948
    transform: translateY(-50%);
1949
    left: 20px;
1950
    width: 15px;
1951
    height: 15px;
1952
    border: 1px solid #e6e6e6;
1953
    -webkit-border-radius: 100px;
1954
    -moz-border-radius: 100px;
1955
    -ms-border-radius: 100px;
1956
    -o-border-radius: 100px;
1957
    border-radius: 100px;
1958
}
1959
 
1960
.payment_methods h4:after {
1961
    content: "";
1962
    position: absolute;
1963
    top: 50%;
1964
    -webkit-transform: translateY(-50%);
1965
    -moz-transform: translateY(-50%);
1966
    -ms-transform: translateY(-50%);
1967
    -o-transform: translateY(-50%);
1968
    transform: translateY(-50%);
1969
    left: 24px;
1970
    width: 7px;
1971
    height: 7px;
1972
    background-color: #e44d3a;
1973
    -webkit-border-radius: 100px;
1974
    -moz-border-radius: 100px;
1975
    -ms-border-radius: 100px;
1976
    -o-border-radius: 100px;
1977
    border-radius: 100px;
1978
}
1979
 
1980
.payment_methods form {
1981
    float: left;
1982
    width: 100%;
1983
    padding-bottom: 30px;
1984
    border-bottom: 1px solid #e5e5e5;
1985
}
1986
 
1987
.payment_methods form button {
1988
    color: #ffffff;
1989
    font-size: 16px;
1990
    background-color: #e44d3a;
1991
    padding: 10px 15px;
1992
    border: 0;
1993
    cursor: pointer;
1994
}
1995
 
1996
.payment_methods form input {
1997
    width: 100%;
1998
    height: 40px;
1999
    border: 1px solid #e5e5e5;
2000
    padding: 0 12px;
2001
}
2002
 
2003
.cc-head {
2004
    float: left;
2005
    width: 100%;
2006
    margin-bottom: 10px;
2007
}
2008
 
2009
.cc-head h5 {
2010
    float: left;
2011
    color: #000000;
2012
    font-size: 16px;
2013
    font-weight: 600;
2014
    margin-top: 4px;
2015
}
2016
 
2017
.cc-head h5 i {
2018
    color: #b2b2b2;
2019
    font-size: 14px;
2020
}
2021
 
2022
.cc-head ul {
2023
    float: right;
2024
}
2025
 
2026
.cc-head ul li {
2027
    display: inline-block;
2028
}
2029
 
2030
.inpt-field {
2031
    float: left;
2032
    width: 100%;
2033
    position: relative;
2034
    margin-bottom: 20px;
2035
}
2036
 
2037
.no-pdd {
2038
    padding: 0;
2039
}
2040
 
2041
.inpt-field.pd-moree input {
2042
    padding-left: 40px !important;
2043
}
2044
 
2045
.inpt-field i {
2046
    color: #b2b2b2;
2047
    font-size: 18px;
2048
    position: absolute;
2049
    top: 50%;
2050
    left: 15px;
2051
    transform: translateY(-50%);
2052
}
2053
 
2054
/* ============== companies-info ============== */
2055
 
2056
.companies-info {
2057
    display: flex;
2058
    flex-direction: column;
2059
    gap: 1rem;
2060
}
2061
 
2062
.title {
2063
    font-size: 1.1rem;
2064
    font-weight: 600;
2065
}
2066
 
2067
.company-title {
2068
    display: flex;
2069
    justify-content: space-between;
2070
 
2071
    h3 {
2072
        color: $title-color;
2073
        font-size: 20px;
2074
        font-weight: 600;
2075
    }
2076
}
2077
 
2078
.default-link {
2079
    color: #0860bf;
2080
}
2081
 
2082
.default-link:hover {
2083
    font-weight: bold;
2084
    color: #0860bf;
2085
    transition: all 0.5s;
2086
}
2087
 
2088
.companies-list {
2089
    width: 100%;
2090
    display: grid;
2091
    gap: 0.5rem;
2092
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
2093
    position: relative;
2094
}
2095
 
2096
.company_profile_info {
2097
    /* float: left; */
2098
    width: 100%;
2099
    background-color: #fff;
2100
    text-align: center;
2101
    border-left: 1px solid #e4e4e4;
2102
    border-right: 1px solid #e4e4e4;
2103
    border-bottom: 1px solid #e4e4e4;
2104
    margin-bottom: 30px;
2105
}
2106
 
2107
// INMAIL
2108
 
2109
.messages-line {
2110
    display: flex;
2111
    flex-direction: column-reverse;
2112
    flex: 1;
2113
    overflow: auto;
2114
}
2115
 
2116
// END INMAIL
2117
 
2118
.marketplace_card {
2119
    background: $bg-color;
2120
    border-radius: $border-radius;
2121
    display: flex;
2122
    flex-direction: column;
2123
    max-width: 250px;
2124
    overflow: hidden;
2125
    transition: all 200ms;
2126
    margin: auto;
2127
 
2128
    img {
2129
        object-fit: cover;
2130
        aspect-ratio: 4/2.5;
2131
    }
2132
 
2133
    &:hover {
2134
        transform: translateY(-1rem);
2135
        box-shadow: $light-shadow;
2136
    }
2137
 
2138
    .microlearning-up-info {
2139
        display: flex;
2140
        flex-direction: column;
2141
        gap: .5rem;
2142
        padding: 1rem .5rem;
2143
 
2144
        h3 {
2145
            color: $title-color;
2146
            font-size: 1.1rem;
2147
            font-weight: 600;
2148
        }
2149
 
2150
        h4 {
2151
            color: $subtitle-color;
2152
            font-size: .9rem;
2153
            font-weight: 500;
2154
        }
2155
 
2156
        ul {
2157
            display: flex;
2158
            gap: 1rem;
2159
 
2160
            a {
2161
                display: inline-block;
2162
                padding: 0 12px;
2163
                color: $font-color;
2164
                height: 35px;
2165
                line-height: 35px;
2166
 
2167
                i {
2168
                    font-size: 24px;
2169
                    position: relative;
2170
                    top: 3px;
2171
                }
2172
            }
2173
        }
2174
    }
2175
}
2176
 
2177
.company-up-info {
2178
    /* float: left; */
2179
    width: 100%;
2180
    padding: 20px 0;
2181
    border-bottom: 1px solid #e5e5e5;
2182
}
2183
 
2184
.company-up-info .description {
2185
    margin-bottom: 10px;
2186
}
2187
 
2188
.company-up-info img {
2189
    float: none;
2190
    margin-bottom: 10px;
2191
    -webkit-border-radius: 100px;
2192
    -moz-border-radius: 100px;
2193
    -ms-border-radius: 100px;
2194
    -o-border-radius: 100px;
2195
    border-radius: 100px;
2196
    height: 90px;
2197
    object-fit: cover;
2198
}
2199
 
2200
.company-up-info h3 {
2201
    color: #000000;
2202
    font-size: 18px;
2203
    font-weight: 600;
2204
    margin-bottom: 10px;
2205
}
2206
 
2207
.company-up-info h4 {
2208
    color: #686868;
2209
    font-size: 14px;
2210
    font-weight: 500;
2211
    margin-bottom: 21px;
2212
}
2213
 
2214
.company-up-info h6 {
2215
    color: #686868;
2216
    font-size: 15px;
2217
    font-weight: 500;
2218
    margin-bottom: 10px;
2219
}
2220
 
2221
.company-up-info ul {
2222
    /* float: left; */
2223
    width: 100%;
2224
}
2225
 
2226
.company-up-info ul li {
2227
    display: inline-block;
2228
    margin-right: 6px;
2229
}
2230
 
2231
.company-up-info ul li a i {
2232
    font-size: 24px;
2233
    position: relative;
2234
    top: 3px;
2235
}
2236
 
2237
.follow {
2238
    background-color: #53d690;
2239
}
2240
 
2241
.message-us {
2242
    background-color: #e44d3a;
2243
}
2244
 
2245
.hire-us {
2246
    background-color: #51a5fb;
2247
}
2248
 
2249
.company_profile_info .cancelButton {
2250
    display: inline-block;
2251
    color: #000000;
2252
    font-size: 16px;
2253
    font-weight: 500;
2254
    margin: 18px 0;
2255
}
2256
 
2257
/* ============= search-sec ============= */
2258
 
2259
.list-col {
2260
    display: flex;
2261
    gap: 20px;
2262
    flex-direction: column;
2263
}
2264
 
2265
.search-sec {
2266
    width: 100%;
2267
    margin-top: 15px;
2268
}
2269
 
2270
.search-box {
2271
    width: 100%;
2272
    position: relative;
5369 stevensc 2273
    background-color: $bg-color;
5363 stevensc 2274
 
2275
    input,
2276
    input:focus {
2277
        background: $bg-color;
2278
        color: $font-color;
2279
        width: 100%;
2280
        height: 40px;
2281
        padding: 0 15px;
2282
        background: var(--background-light-gray);
6334 stevensc 2283
        color: var(--font-color);
2284
        font-weight: 600;
5363 stevensc 2285
        font-size: 14px;
2286
        border: solid 1px $border-primary;
2287
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
2288
    }
2289
 
2290
    button {
2291
        position: absolute;
2292
        top: 0;
2293
        right: 0;
2294
        border: solid 1px $border-primary;
2295
        color: var(--gray);
2296
        font-size: 16px;
2297
        font-weight: 500;
2298
        height: 100%;
2299
        padding: 0 28px;
2300
        cursor: pointer;
2301
        border-radius: 0 4px 4px 0;
2302
    }
2303
}
2304
 
2305
/* =========== Range Slider ========== */
2306
 
2307
.rg-slider {
2308
    float: left;
2309
    width: 100%;
2310
}
2311
 
2312
.slider-container {
2313
    width: 100% !important;
2314
    padding-top: 50px;
2315
    position: relative;
2316
}
2317
 
2318
.theme-green .back-bar {
2319
    height: 5px;
2320
    border: 1px solid #e5e5e5;
2321
    -webkit-border-radius: 30px;
2322
    -moz-border-radius: 30px;
2323
    -ms-border-radius: 30px;
2324
    -o-border-radius: 30px;
2325
    border-radius: 30px;
2326
}
2327
 
2328
.theme-green .back-bar .pointer {
2329
    width: 17px;
2330
    height: 17px;
2331
    -webkit-border-radius: 100px;
2332
    -moz-border-radius: 100px;
2333
    -ms-border-radius: 100px;
2334
    -o-border-radius: 100px;
2335
    border-radius: 100px;
2336
    background-color: #e44d3a;
2337
    border: 2px solid #e3e3e3;
2338
    -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
2339
    -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
2340
    -ms-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
2341
    -o-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
2342
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.43);
2343
}
2344
 
2345
.theme-green .back-bar .pointer {
2346
    top: -7px;
2347
}
2348
 
2349
.slider-container .back-bar .pointer-label {
2350
    top: -50px;
2351
    height: 26px;
2352
    background-color: #e5e5e5;
2353
    -webkit-border-radius: 30px;
2354
    -moz-border-radius: 30px;
2355
    -ms-border-radius: 30px;
2356
    -o-border-radius: 30px;
2357
    border-radius: 30px;
2358
    line-height: 26px;
2359
    width: 50px;
2360
}
2361
 
2362
.pointer-label.low {
2363
    left: 0 !important;
2364
}
2365
 
2366
.pointer-label.high {
2367
    left: 70px !important;
2368
}
2369
 
2370
.pointer-label.low:before {
2371
    content: "";
2372
    position: absolute;
2373
    top: 13px;
2374
    right: -14px;
2375
    width: 8px;
2376
    height: 1px;
2377
    background-color: #e5e5e5;
2378
}
2379
 
2380
.rg-limit {
2381
    float: left;
2382
    width: 100%;
2383
    margin-top: 16px;
2384
}
2385
 
2386
.rg-limit h4 {
2387
    color: #686868;
2388
    font-size: 15px;
2389
    font-weight: 600;
2390
    float: left;
2391
}
2392
 
2393
.rg-limit h4:last-child {
2394
    float: right;
2395
}
2396
 
2397
/* ============== chatbox-list ============== */
2398
 
2399
.ext_share {
2400
    display: flex;
2401
    position: absolute;
2402
    align-items: center;
5744 stevensc 2403
    padding: .2rem;
5363 stevensc 2404
    bottom: calc(100% + 0.5rem);
2405
    gap: 0.5rem;
2406
    left: 50%;
5744 stevensc 2407
    width: fit-content;
5363 stevensc 2408
    transform: translateX(-90%);
2409
    border-radius: 20px;
5744 stevensc 2410
    background-color: $bg-color;
5363 stevensc 2411
    box-shadow: 0px 4px 4px -2px rgb(0 0 0 / 12%), 0px -4px 4px -2px rgb(0 0 0 / 12%);
2412
 
2413
    &.post {
2414
        transform: none;
2415
        bottom: 100%;
2416
        right: 1.5rem;
2417
        z-index: 200;
2418
    }
2419
 
2420
    @media (min-width: 768px) {
5744 stevensc 2421
        transform: translateX(-50%);
5363 stevensc 2422
    }
2423
}
2424
 
2425
.highlighted {
2426
    backdrop-filter: blur(35px);
2427
    animation: droping 1s ease infinite;
2428
}
2429
 
2430
@keyframes droping {
2431
    0% {
2432
        box-shadow: 0 0 5px #96bde9;
2433
    }
2434
 
2435
    50% {
2436
        box-shadow: 0 0 12px #96bde9;
2437
    }
2438
 
2439
    100% {
2440
        box-shadow: 0 0 5px #96bde9;
2441
    }
2442
}
2443
 
2444
.chat-mg {
2445
    display: inline-block;
2446
    position: relative;
2447
}
2448
 
2449
.chat-mg img {
2450
    width: 70px;
2451
    height: 70px;
2452
    -webkit-border-radius: 100px;
2453
    -moz-border-radius: 100px;
2454
    -ms-border-radius: 100px;
2455
    -o-border-radius: 100px;
2456
    border-radius: 100px;
2457
}
2458
 
2459
.chat-mg span {
2460
    position: absolute;
2461
    top: -5px;
2462
    right: 10px;
2463
    width: 20px;
2464
    height: 20px;
2465
    background-color: #e44d3a;
2466
    text-align: center;
2467
    font-size: 12px;
2468
    color: #fff;
2469
    line-height: 20px;
2470
    -webkit-border-radius: 100px;
2471
    -moz-border-radius: 100px;
2472
    -ms-border-radius: 100px;
2473
    -o-border-radius: 100px;
2474
    border-radius: 100px;
2475
}
2476
 
2477
.chat-mg.bx img {
2478
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
2479
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
2480
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
2481
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
2482
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
2483
}
2484
 
2485
.conversation-box {
2486
    position: absolute;
2487
    bottom: 132%;
2488
    right: 100%;
2489
    width: 350px;
2490
    background-color: #fff;
2491
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
2492
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
2493
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
2494
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
2495
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
2496
    opacity: 0;
2497
    visibility: hidden;
2498
    z-index: 0;
2499
}
2500
 
2501
.conversation-box.active {
2502
    opacity: 1;
2503
    visibility: visible;
2504
    z-index: 9999;
2505
}
2506
 
2507
.conversation-box:before {
2508
    content: "";
2509
    position: absolute;
2510
    bottom: -7px;
2511
    right: 26px;
2512
    border-top: 15px solid #fff;
2513
    border-right: 15px solid transparent;
2514
    -webkit-transform: rotate(225deg);
2515
    -moz-transform: rotate(225deg);
2516
    -ms-transform: rotate(225deg);
2517
    -o-transform: rotate(225deg);
2518
    transform: rotate(225deg);
2519
}
2520
 
2521
.con-title {
2522
    float: left;
2523
    width: 100%;
2524
    background-color: #e44d3a;
2525
    padding: 15px 25px;
2526
    -webkit-border-radius: 10px 10px 0 0;
2527
    -moz-border-radius: 10px 10px 0 0;
2528
    -ms-border-radius: 10px 10px 0 0;
2529
    -o-border-radius: 10px 10px 0 0;
2530
    border-radius: 10px 10px 0 0;
2531
}
2532
 
2533
.con-title h3 {
2534
    float: left;
2535
    color: #ffffff;
2536
    font-size: 16px;
2537
    font-weight: 600;
2538
}
2539
 
2540
.con-title>a {
2541
    float: right;
2542
    color: #fff;
2543
    font-size: 20px;
2544
}
2545
 
2546
.chat-list {
2547
    float: left;
2548
    width: 100%;
2549
    min-height: 390px;
2550
}
2551
 
2552
.conv-list {
2553
    float: left;
2554
    width: 100%;
2555
    display: table;
2556
    padding: 20px 25px;
2557
    position: relative;
2558
}
2559
 
2560
.conv-list:hover,
2561
.conv-list.active {
2562
    background-color: #efefef;
2563
}
2564
 
2565
.msg-numbers {
2566
    position: absolute;
2567
    bottom: 18px;
2568
    right: 25px;
2569
    width: 25px;
2570
    height: 25px;
2571
    background-color: #e77667;
2572
    text-align: center;
2573
    line-height: 25px;
2574
    color: #fff;
2575
    font-size: 13px;
2576
    -webkit-border-radius: 100px;
2577
    -moz-border-radius: 100px;
2578
    -ms-border-radius: 100px;
2579
    -o-border-radius: 100px;
2580
    border-radius: 100px;
2581
}
2582
 
2583
.usrr-pic {
2584
    display: table-cell;
2585
    position: relative;
2586
}
2587
 
2588
.active-status {
2589
    width: 9px;
2590
    height: 9px;
2591
    border: 2px solid #ecf5fb;
2592
    -webkit-border-radius: 100px;
2593
    -moz-border-radius: 100px;
2594
    -ms-border-radius: 100px;
2595
    -o-border-radius: 100px;
2596
    border-radius: 100px;
2597
    position: absolute;
2598
    top: -3px;
2599
    right: 0;
2600
}
2601
 
2602
.activee {
2603
    background-color: #e44d3a;
2604
}
2605
 
2606
.usy-info {
2607
    display: table-cell;
2608
    vertical-align: top;
2609
    width: 100%;
2610
    padding-left: 15px;
2611
}
2612
 
2613
.usy-info h3 {
2614
    color: #000000;
2615
    font-size: 18px;
2616
    font-weight: 600;
2617
    margin-bottom: 5px;
2618
}
2619
 
2620
.usy-info span {
2621
    color: #686868;
2622
    font-size: 16px;
2623
    float: left;
2624
}
2625
 
2626
.usy-info span img {
2627
    padding-left: 5px;
2628
    float: right;
2629
}
2630
 
2631
.ct-time {
2632
    position: absolute;
2633
    top: 20px;
2634
    right: 25px;
2635
}
2636
 
2637
.ct-time span {
2638
    color: #b2b2b2;
2639
    font-size: 14px;
2640
}
2641
 
2642
.st-icons {
2643
    float: right;
2644
    margin-top: 7px;
2645
}
2646
 
2647
.st-icons a {
2648
    color: #fff;
2649
    font-size: 20px;
2650
    margin-right: 5px;
2651
}
2652
 
2653
.chat-hist {
2654
    float: left;
2655
    width: 100%;
2656
    background-color: #fff;
2657
    height: 280px;
2658
}
2659
 
2660
.chat-msg {
2661
    float: left;
2662
    width: 100%;
2663
    padding-right: 25px;
2664
    margin-bottom: 15px;
2665
}
2666
 
2667
.chat-msg p {
2668
    color: #ffffff;
2669
    font-size: 14px;
2670
    background-color: #e44d3a;
2671
    line-height: 18px;
2672
    -webkit-border-radius: 15px;
2673
    -moz-border-radius: 15px;
2674
    -ms-border-radius: 15px;
2675
    -o-border-radius: 15px;
2676
    border-radius: 15px;
2677
    padding: 10px 15px;
2678
    width: 80%;
2679
    float: right;
2680
    margin-bottom: 10px;
2681
}
2682
 
2683
.mg-3 {
2684
    margin-bottom: 3px;
2685
}
2686
 
2687
.chat-msg span {
2688
    float: right;
2689
    color: #b1b1b1;
2690
    width: 100%;
2691
    font-size: 9px;
2692
    text-align: right;
2693
}
2694
 
2695
.status-info {
2696
    width: 8px;
2697
    height: 8px;
2698
    background-color: #fff;
2699
    -webkit-border-radius: 100px;
2700
    -moz-border-radius: 100px;
2701
    -ms-border-radius: 100px;
2702
    -o-border-radius: 100px;
2703
    border-radius: 100px;
2704
    display: inline-block;
2705
    margin-left: 7px;
2706
}
2707
 
2708
.chat-user-info h3 {
2709
    margin-top: 7px;
2710
    margin-left: 10px;
2711
}
2712
 
2713
.date-nd {
2714
    float: left;
2715
    width: 100%;
2716
    text-align: center;
2717
    margin-bottom: 20px;
2718
    position: relative;
2719
}
2720
 
2721
.date-nd:before,
2722
.date-nd:after {
2723
    content: "";
2724
    position: absolute;
2725
    top: 10px;
2726
    left: 15px;
2727
    width: 92px;
2728
    height: 1px;
2729
    background-color: #e5e5e5;
2730
}
2731
 
2732
.date-nd:after {
2733
    left: auto;
2734
    right: 15px;
2735
}
2736
 
2737
.date-nd span {
2738
    color: #b1b1b1;
2739
    font-size: 12px;
2740
    text-align: center;
2741
}
2742
 
2743
.chat-msg.st2 p {
2744
    background-color: #efefef;
2745
    color: #686868;
2746
    float: left;
2747
    width: 55%;
2748
}
2749
 
2750
.chat-msg.st2 {
2751
    padding-left: 25px;
2752
}
2753
 
2754
.chat-msg.st2 span {
2755
    float: left;
2756
    text-align: left;
2757
}
2758
 
2759
/* =========== typing-msg =========== */
2760
 
2761
.typing-msg {
2762
    float: left;
2763
    width: 100%;
2764
    border-top: 1px solid #e6e6e6;
2765
    padding-top: 15px;
2766
}
2767
 
2768
.typing-msg form {
2769
    float: left;
2770
    width: 100%;
2771
    position: relative;
2772
}
2773
 
2774
.typing-msg form textarea {
2775
    width: 100%;
2776
    height: 30px;
2777
    background-color: #fff;
2778
    padding: 0 20px;
2779
    color: #b2b2b2;
2780
    font-size: 16px;
2781
    border: 0;
2782
    resize: none;
2783
}
2784
 
2785
.typing-msg form button {
2786
    color: #e44d3a;
2787
    font-size: 18px;
2788
    font-weight: 600;
2789
    position: absolute;
2790
    top: 2px;
2791
    right: 20px;
2792
    background: none;
2793
    border: 0;
2794
    cursor: pointer;
2795
}
2796
 
2797
.ft-options {
2798
    float: left;
2799
    width: 100%;
2800
    padding: 0 20px 8px 20px;
2801
}
2802
 
2803
.ft-options li {
2804
    display: inline-block;
2805
    margin-right: 15px;
2806
}
2807
 
2808
.ft-options li a {
2809
    color: #b2b2b2;
2810
    font-size: 24px;
2811
    display: inline-block;
2812
}
2813
 
2814
.mCSB_scrollTools {
2815
    right: -5px;
2816
}
2817
 
2818
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
2819
    background-color: #cccccc;
2820
    width: 5px;
2821
}
2822
 
2823
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
2824
    opacity: 0;
2825
}
2826
 
2827
/* ============ Menu Btn =============*/
2828
 
2829
.menu-btn {
2830
    float: right;
2831
    display: none;
2832
}
2833
 
2834
.menu-btn a {
2835
    font-size: 24px;
2836
    color: #fff;
2837
    display: inline-block;
2838
    padding-top: 16px;
2839
    padding-left: 20px;
2840
}
2841
 
2842
/* ============= account-tabs-setting ============ */
2843
 
2844
/* .profile-account-setting {} */
2845
 
2846
.account-tabs-setting {
2847
    width: 100%;
2848
}
2849
 
2850
.account-tabs-setting h1 {
2851
    font-size: 1rem;
2852
    font-weight: 700;
2853
    margin: 2rem auto;
2854
    text-align: center;
2855
    color: $title-color;
2856
}
2857
 
2858
.acc-leftbar {
2859
    width: 100%;
2860
    background-color: $bg-color;
2861
    border: 1px solid $border-primary;
2862
    border-radius: 10px;
2863
    overflow: hidden;
2864
}
2865
 
2866
.acc-leftbar .nav-tabs>a {
2867
    border-bottom: 1px solid $border-primary;
2868
    color: $subtitle-color;
2869
    font-size: 16px;
2870
    font-weight: 700;
2871
    margin: 0 auto;
2872
    padding: 1rem 0;
2873
    width: 90%;
2874
}
2875
 
2876
.nav-tabs {
2877
    border-bottom: 0;
2878
}
2879
 
2880
.acc-leftbar .nav-tabs>a:last-child {
2881
    border-bottom: 0;
2882
}
2883
 
2884
.acc-leftbar .nav-tabs>a i {
2885
    font-size: 1.5rem;
2886
    position: relative;
2887
    width: 50px;
2888
    height: 50px;
2889
    display: inline-flex;
2890
    align-items: center;
2891
    background-color: $bg-color-secondary;
2892
    border-radius: 100px;
2893
    justify-content: center;
2894
    margin-right: 5px;
2895
}
2896
 
2897
.nav-tabs .nav-item.show .nav-link,
2898
.nav-tabs .nav-link.active {
2899
    background-color: inherit;
2900
    color: #e44d3a;
2901
    border-color: inherit;
2902
}
2903
 
2904
/* ============= acc-setting ============ */
2905
 
2906
.settings-container {
2907
    font-weight: normal;
2908
}
2909
 
2910
.settings-container h2 {
2911
    font-size: 18px;
2912
    font-weight: 600;
2913
    margin: 0.5rem auto;
2914
    color: $subtitle-color;
2915
}
2916
 
2917
.acc-setting_content {
2918
    padding: 2rem 1rem;
2919
    width: 100%;
2920
    overflow: hidden;
2921
    border-radius: 10px;
2922
    background-color: $bg-color;
2923
    border: 1px solid $border-primary;
2924
    box-shadow: 1px 0 4px var(--background-gray);
2925
}
2926
 
2927
.acc-setting {
2928
    display: flex;
2929
    flex-direction: column;
2930
    gap: 1rem;
2931
    border-radius: $border-radius;
2932
    border: 1px solid $border-primary;
2933
    padding: 1rem;
2934
    background-color: #fff;
2935
 
2936
    form {
2937
        align-items: flex-start;
2938
        display: flex;
2939
        flex-direction: column;
2940
        gap: 0.5rem;
2941
    }
2942
 
2943
    &>h3 {
2944
        color: $subtitle-color;
2945
        font-weight: 600;
2946
        font-size: 18px;
2947
    }
2948
 
2949
    .notbat {
2950
        display: flex;
2951
        justify-content: space-between;
2952
        border-top: 1px solid $border-primary;
2953
        padding: 0.5rem 1rem;
2954
        width: 100%;
2955
 
2956
        &>span {
2957
            max-width: 70%;
2958
        }
2959
    }
2960
 
2961
    .inputs__container {
2962
        display: flex;
2963
        width: 100%;
2964
        gap: 1rem;
2965
        align-items: center;
2966
        flex-wrap: wrap;
2967
    }
2968
 
2969
    .cp-field {
2970
        width: 100%;
2971
        display: flex;
2972
        flex-direction: column;
2973
        gap: 0.5rem;
2974
        align-items: flex-start;
2975
    }
2976
 
2977
    @media (min-width: 768px) {
2978
        .cp-field {
2979
            flex: 1;
2980
        }
2981
    }
2982
}
2983
 
2984
.toggle-btn {
2985
    position: absolute;
2986
    top: 35px;
2987
    right: 20px;
2988
}
2989
 
2990
/* =============== Password Update ============ */
2991
 
2992
.cp-field {
2993
    h5 {
2994
        color: $title-color;
2995
        font-size: 16px;
2996
        font-weight: 600;
2997
    }
2998
 
2999
    input,
3000
    select,
3001
    .custom-input {
3002
        height: 40px;
3003
        padding: 0 40px;
3004
    }
3005
 
3006
    input,
3007
    textarea,
3008
    select,
3009
    .custom-input {
3010
        width: 100% !important;
3011
        background-color: $bg-color !important;
3012
        color: $font-color !important;
3013
        box-shadow: 0 0 2px $border-primary !important;
3014
        border-radius: 10px !important;
3015
        border: none !important;
3016
        margin-top: 4px;
3017
    }
3018
 
3019
    textarea {
3020
        padding: 20px;
3021
        height: 115px;
3022
    }
3023
}
3024
 
3025
.cpp-fiel {
3026
    width: 100%;
3027
    position: relative;
3028
}
3029
 
3030
.cpp-fiel i {
3031
    position: absolute;
3032
    top: 12px;
3033
    left: 15px;
3034
    color: #b2b2b2;
3035
    font-size: 16px;
3036
}
3037
 
3038
/* =============== notifications-list ============= */
3039
 
3040
.notfication-details {
3041
    float: left;
3042
    width: 100%;
3043
    padding: 20px;
3044
    border-bottom: 1px solid #e5e5e5;
3045
}
3046
 
3047
.notfication-details:last-child {
3048
    border-bottom: 0;
3049
}
3050
 
3051
.noty-user-img {
3052
    float: left;
3053
    width: 35px;
3054
}
3055
 
3056
.noty-user-img img {
3057
    width: 100%;
3058
}
3059
 
3060
.notification-info {
3061
    float: left;
3062
    width: auto;
3063
    padding-left: 10px;
3064
}
3065
 
3066
.notification-info h3 {
3067
    color: #686868;
3068
    font-size: 14px;
3069
    font-weight: 500;
3070
    border: 0;
3071
    padding: 0;
3072
    margin-bottom: 6px;
3073
}
3074
 
3075
.notification-info h3 a {
3076
    color: #000000;
3077
    font-size: 16px;
3078
    font-weight: 600;
3079
    display: inline-block;
3080
}
3081
 
3082
.notification-info>span {
3083
    display: inline-block;
3084
    color: #b2b2b2;
3085
    font-size: 12px;
3086
    font-weight: 600;
3087
}
3088
 
3089
/* ============== requests-list ============== */
3090
 
3091
.requests-list {
3092
    float: left;
3093
    width: 100%;
3094
    padding-bottom: 0;
3095
}
3096
 
3097
.request-details {
3098
    float: left;
3099
    width: 100%;
3100
    padding: 20px;
3101
    border-bottom: 1px solid #e5e5e5;
3102
}
3103
 
3104
.request-details:last-child {
3105
    border-bottom: 0;
3106
}
3107
 
3108
.request-info {
3109
    float: left;
3110
    padding-left: 10px;
3111
}
3112
 
3113
.request-info h3 {
3114
    color: #000000;
3115
    font-size: 14px;
3116
    font-weight: 600;
3117
    padding: 0;
3118
    border: 0;
3119
    margin-bottom: 3px;
3120
}
3121
 
3122
.request-info span {
3123
    color: #686868;
3124
    font-size: 12px;
3125
    display: inline-block;
3126
}
3127
 
3128
.accept-feat {
3129
    float: right;
3130
}
3131
 
3132
.accept-feat ul li {
3133
    display: inline-block;
3134
}
3135
 
3136
.accept-feat ul li button {
3137
    cursor: pointer;
3138
}
3139
 
3140
.accept-req {
3141
    color: #ffffff;
3142
    font-size: 16px;
3143
    background-color: #51a5fb;
3144
    height: 30px;
3145
    padding: 0 20px;
3146
    font-weight: 600;
3147
    border: 0;
3148
    border: 1px solid #51a5fb;
3149
}
3150
 
3151
.close-req {
3152
    height: 30px;
3153
    width: 30px;
3154
    text-align: center;
3155
    line-height: 30px;
3156
    border: 1px solid #e5e5e5;
3157
    background: inherit;
3158
    color: #b2b2b2;
3159
    margin-left: 7px;
3160
}
3161
 
3162
.close-req i {
3163
    font-weight: 600;
3164
}
3165
 
3166
/* ============= Profile Sattus =========== */
3167
 
3168
.profile-bx-details {
3169
    float: left;
3170
    width: 100%;
3171
    padding: 30px 7px 30px 7px;
3172
}
3173
 
3174
.profile-bx-details .row .col-lg-3 {
3175
    padding: 0 7px;
3176
}
3177
 
3178
.profile-bx-info {
3179
    float: left;
3180
    width: 100%;
3181
    background-color: #f2f2f2;
3182
    padding: 20px;
3183
    border: 1px solid #e5e5e5;
3184
}
3185
 
3186
.pro-bx {
3187
    float: left;
3188
    width: 100%;
3189
    border-bottom: 1px solid #e5e5e5;
3190
    padding-bottom: 10px;
3191
}
3192
 
3193
.bx-info {
3194
    float: left;
3195
    margin-top: 7px;
3196
    padding-left: 10px;
3197
}
3198
 
3199
.bx-info h3 {
3200
    color: #e44d3a;
3201
    font-size: 20px;
3202
    font-weight: 600;
3203
    margin-bottom: 5px;
3204
}
3205
 
3206
.bx-info h5 {
3207
    color: #000000;
3208
    font-size: 14px;
3209
    font-weight: 600;
3210
    margin: 0;
3211
    padding: 0;
3212
    border: 0;
3213
}
3214
 
3215
.pd-left-20 {
3216
    padding-left: 20px;
3217
    padding-right: 0;
3218
}
3219
 
3220
.pd-left-15 {
3221
    padding-left: 15px;
3222
    padding-right: 0;
3223
}
3224
 
3225
.pd-left-right {
3226
    padding-left: 15px;
3227
    padding-right: 20px;
3228
}
3229
 
3230
.profile-bx-info>p {
3231
    float: left;
3232
    width: 100%;
3233
    font-size: 14px;
3234
    line-height: 20px;
3235
    padding-top: 5px;
3236
}
3237
 
3238
/* =========== pro-work-status ========= */
3239
 
3240
.pro-work-status {
3241
    float: left;
3242
    width: 100%;
3243
    padding: 0 15px;
3244
}
3245
 
3246
.pro-work-status h4 {
3247
    color: #000000;
3248
    font-size: 18px;
3249
    font-weight: 600;
3250
    margin-bottom: 50px;
3251
}
3252
 
3253
/* ============== messages-page ============== */
3254
 
6304 stevensc 3255
.chat-page {
3256
    display: flex;
3257
    flex-direction: column;
3258
    width: 100%;
5363 stevensc 3259
 
6304 stevensc 3260
    @media (min-width: 768px) {
3261
        display: grid;
6336 stevensc 3262
        grid-template-columns: 300px 1fr;
6304 stevensc 3263
        gap: 1rem;
3264
    }
5363 stevensc 3265
}
3266
 
3267
.msgs-list {
3268
    width: 100%;
3269
}
3270
 
3271
.inmail_conversations-list {
3272
    border-right: 1px solid #3333;
3273
    padding-left: 0;
3274
    padding-right: 0;
3275
}
3276
 
3277
.msg-title {
3278
    color: #000000;
3279
    font-size: 18px;
3280
    font-weight: 600;
3281
}
3282
 
3283
.date-chat {
3284
    font-size: 0.6rem;
3285
    color: var(--gray);
3286
    padding-top: 5%;
3287
}
3288
 
3289
.messages-list {
3290
    overflow-y: scroll;
3291
 
3292
    li {
3293
        cursor: pointer;
3294
 
3295
        &.active {
3296
            background-color: #efefef;
3297
        }
3298
    }
3299
}
3300
 
3301
.text-chat-title {
3302
    color: var(--gray) !important;
3303
    font-size: 1rem;
3304
}
3305
 
3306
.usr-msg-details {
3307
    display: flex;
3308
    align-items: center;
3309
    gap: 0.5rem;
3310
    padding: 0.5rem 1rem;
3311
    border-radius: $border-radius;
3312
 
3313
    &:hover,
3314
    &.is_selected {
3315
        background: $light-gray;
3316
    }
3317
 
3318
    .usr-ms-img {
3319
        width: 40px;
3320
        height: 40px;
3321
        border-radius: 50%;
3322
        overflow: hidden;
3323
 
3324
        img {
3325
            object-fit: cover;
3326
        }
3327
    }
3328
 
3329
    .usr-mg-info {
3330
        h3 {
3331
            color: $subtitle-color;
3332
            font-size: 18px;
3333
            font-weight: 600;
3334
        }
3335
 
3336
        p {
3337
            color: $font-color;
3338
            font-size: 16px;
3339
        }
3340
    }
3341
}
3342
 
3343
.msg-status {
3344
    border-radius: 100px;
3345
    background-color: #e44d3a;
3346
    position: absolute;
3347
    top: -3px;
3348
    right: 0;
3349
    width: 6px;
3350
    height: 6px;
3351
}
3352
 
3353
.messages-list ul li.active .msg-status {
3354
    border: 2px solid #ecf5fb;
3355
    height: 10px;
3356
    width: 10px;
3357
}
3358
 
3359
.msg-notifc {
3360
    position: absolute;
3361
    /* bottom: 0;
3362
    right: 0; */
3363
    width: 25px;
3364
    height: 25px;
3365
    -webkit-border-radius: 100px;
3366
    -moz-border-radius: 100px;
3367
    -ms-border-radius: 100px;
3368
    -o-border-radius: 100px;
3369
    border-radius: 100px;
3370
    background-color: #e77667;
3371
    text-align: center;
3372
    line-height: 25px;
3373
    font-size: 13px;
3374
    color: #fff;
3375
}
3376
 
3377
.posted_time {
3378
    position: absolute;
3379
    top: 2px;
3380
    right: 0;
3381
    color: #b2b2b2;
3382
    font-size: 14px;
3383
}
3384
 
3385
/* =============== main-message-box ============= */
3386
 
3387
.main-conversation-box {
3388
    width: 100%;
3389
    background-color: $bg-color;
3390
    position: relative;
3391
    height: 80vh;
3392
    display: grid;
3393
    grid-template-rows: auto 65% auto;
3394
}
3395
 
3396
.inmail-conversation-container {
3397
    width: 100%;
3398
    background-color: $bg-color;
3399
    position: relative;
3400
    height: 80vh;
3401
    gap: 0.5rem;
3402
    display: grid;
3403
    grid-template-rows: 5% 80% 15%;
3404
}
3405
 
3406
@media (min-width: 992px) {
3407
    .inmail-conversation-container {
3408
        grid-template-rows: 85% 15%;
3409
    }
3410
}
3411
 
3412
.inmail-conversation-box {
3413
    width: 100%;
3414
    position: relative;
3415
    display: grid;
3416
    grid-template-rows: auto 85%;
3417
    overflow: hidden;
3418
}
3419
 
3420
.message-bar-head {
3421
    height: 13vh;
3422
    width: 100%;
3423
    padding: 20px;
3424
    border-bottom: 1px solid $border-primary;
3425
}
3426
 
3427
.message-bar-head .usr-msg-details {
3428
    width: auto;
3429
}
3430
 
3431
.message-bar-head>a {
3432
    float: right;
3433
    color: #b2b2b2;
3434
    font-size: 20px;
3435
    padding-top: 15px;
3436
}
3437
 
3438
.main-message-box {
3439
    display: flex;
3440
    width: 100%;
3441
    position: relative;
3442
    margin-bottom: 15.5px;
3443
 
3444
    .message-inner-dt {
3445
        width: 100%;
3446
 
3447
        &>img {
3448
            display: inline-block;
3449
            width: auto;
3450
            max-height: 180px;
3451
        }
3452
 
3453
        &>p {
3454
            font-size: 14px;
3455
        }
3456
    }
3457
 
3458
    .message-dt {
3459
        border-radius: $border-radius;
3460
        border-top-left-radius: 0;
3461
        width: auto;
3462
        padding: 0.5rem;
3463
        margin-left: 15px;
3464
        background-color: $chat-send;
3465
        color: $chat-color;
3466
        box-shadow: $white-backdrop;
3467
    }
3468
 
3469
    .messg-usr-img {
3470
        margin-left: 20px;
3471
        width: 50px;
3472
    }
3473
 
3474
    .message-dt>span {
3475
        color: #b2b2b2;
3476
        font-size: 14px;
3477
        float: left;
3478
        width: 100%;
3479
        margin-top: 7px;
3480
    }
3481
 
3482
    &.ta-right {
3483
        flex-direction: row-reverse;
3484
    }
3485
 
3486
    &.ta-right .messg-usr-img {
3487
        margin-left: 0;
3488
        margin-right: 20px;
3489
    }
3490
 
3491
    &.ta-right .message-dt {
3492
        border-top-left-radius: $border-radius;
3493
        border-top-right-radius: 0;
3494
        margin-right: 15px;
3495
        background-color: $chat-received;
3496
    }
3497
 
3498
    &.ta-right .message-dt>span {
3499
        float: right;
3500
        width: auto;
3501
    }
3502
}
3503
 
3504
.messg-usr-img img {
3505
    width: 100%;
3506
    background: #fff;
3507
    border-radius: 100px;
3508
}
3509
 
3510
.img-bx {
3511
    background-color: #efefef;
3512
    padding: 20px;
3513
}
3514
 
3515
.message-dt.st3 .message-inner-dt {
3516
    &>p {
3517
        background-color: #efefef;
3518
        color: #686868;
3519
        width: auto;
3520
        padding: 10px 15px;
3521
        float: left;
3522
    }
3523
 
3524
    &>img {
3525
        float: right;
3526
        position: relative;
3527
        top: 3px;
3528
        padding-left: 5px;
3529
    }
3530
}
3531
 
3532
.main-message-box.st3 .messg-usr-img {
3533
    bottom: 13px;
3534
}
3535
 
3536
/* ============== Calendar ============ */
3537
 
3538
.calendar-event {
3539
    display: flex;
3540
    flex-direction: column;
3541
    border-radius: $border-radius;
3542
    padding: 0.5rem;
3543
}
3544
 
3545
/* ============== message-send-area ============ */
3546
 
3547
.inmail-submit-btn {
3548
    width: 6%;
3549
}
3550
 
3551
.chat-header a {
3552
    text-decoration: none;
3553
    color: var(--dark);
3554
}
3555
 
3556
.chat-header h2 {
3557
    font-weight: 700;
3558
    text-align: center;
3559
}
3560
 
3561
.chat_contacts {
3562
    background-color: $bg-color;
3563
    border-radius: $border-radius;
3564
    border: 1px solid $border-primary;
3565
    display: flex;
3566
    flex-direction: column;
3567
    height: 100%;
3568
    gap: 0.5rem;
3569
    padding: 1rem 0.5rem;
3570
    max-height: 80vh;
6304 stevensc 3571
 
3572
    h1 {
3573
        font-size: 1.3rem;
3574
    }
3575
 
6309 stevensc 3576
    .header {
3577
        margin-top: 1rem;
3578
        margin-right: .5rem;
3579
    }
6306 stevensc 3580
}
6304 stevensc 3581
 
6306 stevensc 3582
.tabs {
3583
    display: flex;
3584
    align-items: center;
3585
 
3586
    .btn {
3587
        flex: 1;
6307 stevensc 3588
        outline: none;
3589
        box-shadow: none;
6306 stevensc 3590
 
3591
        &.active-tab {
3592
            border-bottom: 1px solid $border-primary;
6304 stevensc 3593
        }
3594
    }
5363 stevensc 3595
}
3596
 
3597
.contact__search,
3598
.group__search {
3599
    display: flex;
3600
    align-items: center;
3601
    border-radius: 30px;
3602
    height: 1.5rem;
3603
    color: gray;
3604
    cursor: pointer;
3605
    transition: all 0.2s;
3606
 
3607
    &:hover {
3608
        color: #000;
3609
    }
3610
 
3611
    &>input {
3612
        display: none;
3613
        border: none;
3614
        outline: none;
3615
        background: none;
3616
    }
3617
 
3618
    &.show {
3619
        padding: 0.5rem;
3620
        background-color: #eef3f0;
3621
        width: -webkit-fill-available;
3622
 
3623
        &>input {
3624
            display: initial;
3625
        }
3626
    }
3627
}
3628
 
3629
.group__search {
3630
    flex: initial;
3631
    margin: 0 1rem;
3632
 
3633
    input {
3634
        display: initial;
3635
    }
3636
}
3637
 
3638
/* ============== forum-links ============= */
3639
 
3640
.forum-sec {
3641
    background-color: #fff;
3642
}
3643
 
3644
.forum-links {
3645
    float: left;
3646
    width: 100%;
3647
}
3648
 
3649
.forum-links.active {
3650
    opacity: 1;
3651
    visibility: visible;
3652
    z-index: 9999;
3653
}
3654
 
3655
.forum-links ul li {
3656
    display: inline-block;
3657
    padding: 20px 0;
3658
    margin-right: 45px;
3659
    border-bottom: 2px solid transparent;
3660
}
3661
 
3662
.forum-links ul li.active {
3663
    border-color: #e44d3a;
3664
}
3665
 
3666
.forum-links ul li.active a {
3667
    color: #e44d3a;
3668
}
3669
 
3670
.forum-links ul li a {
3671
    display: inline-block;
3672
    color: #b2b2b2;
3673
    font-size: 14px;
3674
    font-weight: 600;
3675
}
3676
 
3677
.forum-links-btn {
3678
    float: left;
3679
    width: 100%;
3680
    text-align: center;
3681
    display: none;
3682
    padding: 20px 0;
3683
}
3684
 
3685
.forum-links-btn a {
3686
    color: #000;
3687
    font-size: 30px;
3688
    display: inline-block;
3689
}
3690
 
3691
/* ================ forum-page =============== */
3692
 
3693
.forum-page {
3694
    padding: 50px 0;
3695
}
3696
 
3697
.forum-questions-sec {
3698
    float: left;
3699
    width: 100%;
3700
}
3701
 
3702
.forum-questions {
3703
    float: left;
3704
    width: 100%;
3705
    background-color: #fff;
3706
}
3707
 
3708
.usr-question {
3709
    float: left;
3710
    width: 100%;
3711
    position: relative;
3712
    padding: 25px;
3713
    border-bottom: 1px solid #e5e5e5;
3714
}
3715
 
3716
.usr_img {
3717
    float: left;
3718
    width: 60px;
3719
}
3720
 
3721
.usr_img img {
3722
    width: 100%;
3723
    -webkit-border-radius: 100px;
3724
    -moz-border-radius: 100px;
3725
    -ms-border-radius: 100px;
3726
    -o-border-radius: 100px;
3727
    border-radius: 100px;
3728
}
3729
 
3730
/* ============= quest-tags ============ */
3731
 
3732
.quest-tags {
3733
    float: left;
3734
    width: 100%;
3735
    margin-top: 20px;
3736
}
3737
 
3738
.quest-tags li {
3739
    display: inline-block;
3740
    margin-right: 10px;
3741
}
3742
 
3743
.quest-tags li a {
3744
    display: inline-block;
3745
    color: #ffffff;
3746
    background-color: #53d690;
3747
    -webkit-border-radius: 3px;
3748
    -moz-border-radius: 3px;
3749
    -ms-border-radius: 3px;
3750
    -o-border-radius: 3px;
3751
    border-radius: 3px;
3752
    padding: 7px 25px;
3753
}
3754
 
3755
.quest-posted-time {
3756
    position: absolute;
3757
    bottom: 30px;
3758
    right: 20px;
3759
    color: #b2b2b2;
3760
    font-size: 14px;
3761
}
3762
 
3763
.quest-posted-time i {
3764
    padding-right: 5px;
3765
}
3766
 
3767
.pd-right-none {
3768
    padding-right: 0;
3769
}
3770
 
3771
/* =========== navigation ============ */
3772
 
3773
.pagination {
3774
    float: left;
3775
    width: 100%;
3776
    /* background-color: #fff; */
3777
    padding: 13px 25px;
3778
}
3779
 
3780
.full-pagi {
3781
    float: left;
3782
    width: 100%;
3783
    padding-right: 0;
3784
    text-align: inherit;
3785
    margin-top: 20px;
3786
}
3787
 
3788
.pagination li {
3789
    padding: 0;
3790
    margin-right: 10px;
3791
}
3792
 
3793
.pagination li .page-link {
3794
    /* background-color: #e5e5e5; */
3795
    color: #b2b2b2;
3796
}
3797
 
3798
.pagination li .page-link.active {
3799
    background-color: #e44d3a;
3800
    color: #fff;
3801
    border-color: transparent;
3802
}
3803
 
3804
.pvr {
3805
    padding: 0.5rem 30px;
3806
}
3807
 
3808
/* ======== next-prev ========*/
3809
 
3810
.next-prev {
3811
    float: left;
3812
    width: 100%;
3813
    background-color: #fff;
3814
    margin-top: 20px;
3815
    padding: 12px 25px;
3816
}
3817
 
3818
.next-prev>a {
3819
    width: 90px;
3820
    height: 35px;
3821
    text-align: center;
3822
    line-height: 35px;
3823
    color: #b2b2b2;
3824
    font-size: 14px;
3825
    background-color: #e5e5e5;
3826
}
3827
 
3828
.next-prev>a:hover {
3829
    color: #fff;
3830
    background-color: #e44d3a;
3831
}
3832
 
3833
.fl-left {
3834
    float: left;
3835
}
3836
 
3837
.fl-right {
3838
    float: right;
3839
}
3840
 
3841
/* ========== widget-feat ========= */
3842
 
3843
.widget-feat {
3844
    padding: 25px 20px;
3845
}
3846
 
3847
.widget-feat ul {
3848
    float: left;
3849
    width: 100%;
3850
}
3851
 
3852
.widget-feat ul li {
3853
    float: left;
3854
    width: 25%;
3855
    text-align: center;
3856
}
3857
 
3858
.widget-feat ul li i {
3859
    display: block;
3860
    font-size: 18px;
3861
    margin-bottom: 9px;
3862
}
3863
 
3864
.widget-feat ul li span {
3865
    display: block;
3866
    color: #686868;
3867
    font-size: 16px;
3868
    font-weight: 500;
3869
}
3870
 
3871
.widget-feat ul li i.fa-heart {
3872
    color: #53d690;
3873
}
3874
 
3875
.widget-feat ul li i.fa-comment {
3876
    color: #e44d3a;
3877
}
3878
 
3879
.widget-feat ul li i.fa-share-alt {
3880
    color: #51a5fb;
3881
}
3882
 
3883
.widget-feat ul li i.fa-eye {
3884
    color: #00b540;
3885
}
3886
 
3887
/* =============== ANIMATION LOADER =============== */
3888
 
3889
.spinner {
3890
    margin: 0 auto 0;
3891
    width: 80px;
3892
    text-align: center;
3893
    height: 80px;
3894
    border-radius: 100px;
3895
    background-color: #fff;
3896
    line-height: 80px;
3897
    border: 1px solid #e1e1e1;
3898
    cursor: pointer;
3899
 
3900
    &>div {
3901
        width: 15px;
3902
        height: 15px;
3903
        background-color: #b9b9b9;
3904
        border-radius: 100%;
3905
        display: inline-block;
3906
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
3907
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
3908
    }
3909
 
3910
    .bounce1 {
3911
        -webkit-animation-delay: -0.32s;
3912
        animation-delay: -0.32s;
3913
    }
3914
 
3915
    .bounce2 {
3916
        -webkit-animation-delay: -0.16s;
3917
        animation-delay: -0.16s;
3918
    }
3919
 
3920
    @keyframes sk-bouncedelay {
3921
 
3922
        0%,
3923
        80%,
3924
        100% {
3925
            -webkit-transform: scale(0);
3926
            transform: scale(0);
3927
        }
3928
 
3929
        40% {
3930
            -webkit-transform: scale(1);
3931
            transform: scale(1);
3932
        }
3933
    }
3934
}
3935
 
3936
 
3937
.wordpressdevlp {
3938
    background-color: #fff;
3939
}
3940
 
3941
.bgclr {
3942
    background-color: #fff;
3943
    margin-bottom: 15px;
3944
}
3945
 
3946
.cadidatesbtn {
3947
    position: absolute;
3948
    left: 0;
3949
    padding-top: 5px;
3950
}
3951
 
3952
.cadidatesbtn button {
3953
    background-color: #e44d3a;
3954
    border: none;
3955
    margin-top: -3px;
3956
}
3957
 
3958
.cadidatesbtn button:hover {
3959
    background-color: #e44d3a;
3960
}
3961
 
3962
.cadidatesbtn span {
3963
    background-color: #bd2e1c;
3964
    color: #fff;
3965
    margin-right: 10px;
3966
    padding: 0.25em 0.5em;
3967
    font-weight: 600;
3968
    font-size: 12px;
3969
}
3970
 
3971
.wordpressdevlp i {
3972
    color: #e86554;
3973
    font-size: 18px;
3974
    font-weight: bold;
3975
    padding-right: 5px;
3976
}
3977
 
3978
.wordpressdevlp h2 {
3979
    font-size: 18px;
3980
    font-weight: 600;
3981
}
3982
 
3983
.cadidatesbtn i {
3984
    color: #b2b2b2;
3985
    border: 1px solid #b2b2b2;
3986
    font-size: 14px;
3987
    text-align: center;
3988
    margin-left: 7px;
3989
    border-radius: 3px;
3990
    padding: 10px;
3991
}
3992
 
3993
.cadidatesbtn i:hover {
3994
    background-color: #e44d3a;
3995
    color: #fff;
3996
    border: 1px solid #e44d3a;
3997
}
3998
 
3999
.inner {
4000
    border-bottom: 2px solid #e5e5e5;
4001
    padding-bottom: 10px;
4002
}
4003
 
4004
.inner li a:hover {
4005
    color: #e44d3a;
4006
    border-bottom: 2px solid #e44d3a;
4007
    padding-bottom: 9px;
4008
}
4009
 
4010
.inner li a {
4011
    color: #000000;
4012
}
4013
 
4014
.posttext {
4015
    position: absolute;
4016
    left: 0;
4017
}
4018
 
4019
.deatile h3 {
4020
    font-size: 14px;
4021
    font-weight: bold;
4022
    padding-bottom: 5px;
4023
}
4024
 
4025
.clrbtn a {
4026
    background-color: #e44d3a;
4027
    color: #fff;
4028
    padding: 5px 10px 5px 10px;
4029
    margin-right: 15px;
4030
}
4031
 
4032
.transpairentbtn a {
4033
    color: #222;
4034
    border: 2px solid #f1f1f1;
4035
    padding: 5px 10px 5px 10px;
4036
}
4037
 
4038
.savetext h3 {
4039
    font-size: 14px;
4040
    font-weight: bold;
4041
    padding-bottom: 5px;
4042
}
4043
 
4044
.devepbtn .clrbtn {
4045
    padding: 7px 20px;
4046
}
4047
 
4048
.devepbtn a {
4049
    color: #666666;
4050
    border: 1px solid #b2b2b2;
4051
    padding: 7px 10px 7px 10px;
4052
    border-radius: 3px;
4053
    margin-right: 5px;
4054
}
4055
 
4056
.devepbtn a:hover i {
4057
    color: #fff;
4058
}
4059
 
4060
.devepbtn a:hover {
4061
    background-color: #e44d3a;
4062
    color: #fff;
4063
}
4064
 
4065
.rew-reply hr {
4066
    margin-left: -20px;
4067
    margin-right: -20px;
4068
}
4069
 
4070
.rew-reply p {
4071
    padding-left: 20px;
4072
}
4073
 
4074
.rew-reply ul {
4075
    padding-left: 20px;
4076
}
4077
 
4078
.devepbtn {
4079
    margin-top: 30px;
4080
    padding-left: 20px;
4081
}
4082
 
4083
.rep-thanks hr {
4084
    margin-right: -20px;
4085
    margin-left: -20px;
4086
}
4087
 
4088
.profilecnd {
4089
    margin-bottom: 0px;
4090
}
4091
 
4092
.devepbtn i {
4093
    color: #b2b2b2;
4094
    font-size: 14px;
4095
}
4096
 
4097
.appliedinfo {
4098
    padding-left: 0;
4099
    padding-top: 20px !important;
4100
    padding-bottom: 10px;
4101
}
4102
 
4103
.epi2 {
4104
    padding: 0;
4105
}
4106
 
4107
.review a {
4108
    line-height: 16px;
4109
    font-size: 14px;
4110
    text-decoration: none;
4111
    font-weight: 500;
4112
    margin-left: 15px;
4113
}
4114
 
4115
.add-pic-box {
4116
    display: inline-block;
4117
    color: #e44d3a;
4118
    font-size: 16px;
4119
    position: absolute;
4120
    top: 30px;
4121
    right: 0;
4122
    font-weight: 600;
4123
    margin-right: 0;
4124
    width: 100%;
4125
}
4126
 
4127
.add-pic-box [type="file"] {
4128
    height: 0;
4129
    overflow: hidden;
4130
    width: 0;
4131
    float: left;
4132
}
4133
 
4134
.add-pic-box [type="file"]+label {
4135
    background: #fff;
4136
    border: 2px solid #e44d3a;
4137
    border-radius: 3px;
4138
    color: #e44d3a;
4139
    cursor: pointer;
4140
    /* display: inline-block; */
4141
    font-size: 15px;
4142
    font-weight: 600;
4143
    outline: none;
4144
    padding: 12px 20px;
4145
    position: relative;
4146
    transition: all 0.3s;
4147
    vertical-align: middle;
4148
    margin: 0;
4149
    float: right;
4150
    text-transform: uppercase;
4151
}
4152
 
4153
.add-pic-box [type="file"]+label:hover {
4154
    background: #e44d3a;
4155
    color: #fff;
4156
}
4157
 
4158
.noreview li i {
4159
    color: #b2b2b2;
4160
}
4161
 
4162
.review-tb {
4163
    margin: 0 0 10px;
4164
    padding-left: 20px;
4165
}
4166
 
4167
.noreview ul li i {
4168
    color: #b2b2b2;
4169
}
4170
 
4171
.mngdetl {
4172
    border-bottom: none;
4173
}
4174
 
4175
.post-reply {
4176
    padding-top: 0;
4177
    padding-bottom: 0;
4178
}
4179
 
4180
.activebidbtn i:hover {
4181
    background-color: #e44d3a;
4182
    color: #fff;
4183
    border: none;
4184
}
4185
 
4186
.reviewtitle h2 {
4187
    font-size: 17px;
4188
    font-weight: 600;
4189
}
4190
 
4191
.horiline {
4192
    width: 118%;
4193
    position: relative;
4194
    left: -40px;
4195
}
4196
 
4197
.tahnks {
4198
    font-weight: 500;
4199
    margin-top: 5px;
4200
}
4201
 
4202
/*about-page*/
4203
 
4204
.banner span {
4205
    position: absolute;
4206
    display: flex;
4207
    background-color: #222;
4208
    width: 100%;
4209
    opacity: 0.9;
4210
    justify-content: center;
4211
    padding: 10px;
4212
    margin-top: 0;
4213
    color: #fff;
4214
}
4215
 
4216
.innertitle {
4217
    margin-top: 130px;
4218
}
4219
 
4220
.Company-overview {
4221
    padding-bottom: 50px;
4222
}
4223
 
4224
.bennertext {
4225
    position: absolute;
4226
    left: 20%;
4227
    right: 20%;
4228
    text-align: center;
4229
}
4230
 
4231
.bannerimage img {
4232
    height: 100%;
4233
}
4234
 
4235
.innertitle h2 {
4236
    color: #fff;
4237
    font-size: 30px;
4238
    line-height: 32px;
4239
    font-weight: 600;
4240
    margin-bottom: 20px;
4241
}
4242
 
4243
.innertitle p {
4244
    color: #fff;
4245
    font-size: 16px;
4246
}
4247
 
4248
.Company-overview h2 {
4249
    padding-top: 100px;
4250
    font-size: 24px;
4251
    font-weight: 600;
4252
    padding-bottom: 12px;
4253
}
4254
 
4255
.Company-overview p {
4256
    font-size: 15px;
4257
    font-weight: 500;
4258
}
4259
 
4260
.Company-overview img {
4261
    float: right;
4262
    padding-top: 25px;
4263
}
4264
 
4265
.blog {
4266
    text-align: center;
4267
    display: inline-block;
4268
    margin-bottom: 50px;
4269
}
4270
 
4271
.blog img {
4272
    padding-bottom: 30px;
4273
}
4274
 
4275
.blog h2 {
4276
    font-size: 18px;
4277
    font-weight: 600;
4278
    padding-bottom: 30px;
4279
}
4280
 
4281
.blog a {
4282
    background-color: #ff4500;
4283
    color: #fff;
4284
    padding: 7px 25px 7px 25px;
4285
    border-radius: 3px;
4286
    font-size: 16px;
4287
    font-weight: 500;
4288
}
4289
 
4290
.services {
4291
    padding-top: 80px;
4292
    padding-bottom: 80px;
4293
}
4294
 
4295
.video {
4296
    padding-bottom: 40px;
4297
}
4298
 
4299
.search-container {
4300
    text-align: center;
4301
}
4302
 
4303
.search-container input[type="text"] {
4304
    padding: 6px 15px;
4305
    margin-top: 8px;
4306
    font-size: 17px;
4307
    border: none;
4308
    height: 50px;
4309
    width: 50%;
4310
    margin-bottom: 25px;
4311
    border-top-left-radius: 3px;
4312
    border-top-right-radius: 0px;
4313
    border-bottom-left-radius: 3px;
4314
    border-bottom-right-radius: 0px;
4315
}
4316
 
4317
.searchtitle {
4318
    text-align: center;
4319
}
4320
 
4321
.searchtitle h2 {
4322
    color: #fff;
4323
    font-size: 30px;
4324
    font-weight: 400;
4325
    padding-bottom: 10px;
4326
}
4327
 
4328
.search-container button {
4329
    padding: 8px 10px;
4330
    text-align: center;
4331
    margin-top: 8px;
4332
    margin-left: -3px;
4333
    margin-right: 18px;
4334
    background: #efefef;
4335
    font-size: 17px;
4336
    border: none;
4337
    cursor: pointer;
4338
    height: 50px;
4339
    width: 6%;
4340
    border-bottom-right-radius: 3px;
4341
    border-top-right-radius: 3px;
4342
}
4343
 
4344
.topsearch i {
4345
    color: #e44d3a;
4346
}
4347
 
4348
.dropdown-toggle::after {
4349
    position: absolute;
4350
    right: 15px;
4351
    color: #b2b2b2;
4352
    top: 7px;
4353
}
4354
 
4355
.help-paddy {
4356
    padding: 0 !important;
4357
}
4358
 
4359
.paddy {
4360
    padding: 20px;
4361
    float: left;
4362
}
4363
 
4364
.dropdown-menu {
4365
    position: absolute;
4366
    top: 100%;
4367
    left: 0;
4368
    z-index: 1000;
4369
    display: none;
4370
    float: left;
4371
    min-width: 10rem;
4372
    padding: 0.5rem 0;
4373
    margin: 0.125rem 0 0;
4374
    font-size: 1rem;
4375
    color: #212529;
4376
    text-align: left;
4377
    list-style: none;
4378
    background-color: #fff;
4379
    width: 100%;
4380
    background-clip: padding-box;
4381
    border: none;
4382
    border-radius: 0.25rem;
4383
}
4384
 
4385
.radio-form p {
4386
    display: -webkit-inline-box;
4387
}
4388
 
4389
.dropdown a {
4390
    color: #000000;
4391
    font-size: 16px;
4392
    font-weight: 400;
4393
    padding: 0 20px;
4394
}
4395
 
4396
.accountnone {
4397
    border: none;
4398
}
4399
 
4400
.helpforum {
4401
    background-color: #fff;
4402
    padding: 15px 0;
4403
    box-shadow: 0px 2px #c6c6c6;
4404
}
4405
 
4406
.helpforum h3 {
4407
    font-size: 18px;
4408
    font-weight: 600;
4409
}
4410
 
4411
.helpforum a {
4412
    background-color: #e44d3a;
4413
    color: #fff;
4414
    padding: 10px 15px 10px 15px;
4415
    line-height: 4;
4416
    border-radius: 3px;
4417
}
4418
 
4419
.helpforum p {
4420
    line-height: 3;
4421
}
4422
 
4423
.actionstitle h3 {
4424
    font-size: 18px;
4425
    font-weight: 400;
4426
    color: #000;
4427
    padding-top: 30px;
4428
}
4429
 
4430
.actionstitle img {
4431
    padding-right: 10px;
4432
}
4433
 
4434
.actionstext a {
4435
    font-size: 16px;
4436
    font-weight: 500;
4437
    color: #e44d3a;
4438
    line-height: 2;
4439
    display: block;
4440
}
4441
 
4442
.helpform {
4443
    text-align: center;
4444
    padding-top: 70px;
4445
}
4446
 
4447
.helpform h3 {
4448
    font-size: 18px;
4449
    font-weight: 400;
4450
    color: #e44d3a;
4451
    margin-bottom: 10px;
4452
}
4453
 
4454
.helpform a {
4455
    background-color: #e44d3a;
4456
    color: #fff;
4457
    padding: 10px 15px 10px 15px;
4458
    border-radius: 3px;
4459
}
4460
 
4461
.helpform p {
4462
    margin-bottom: 30px;
4463
}
4464
 
4465
.helpform img {
4466
    float: unset;
4467
    padding-bottom: 10px;
4468
}
4469
 
4470
.bookingsideber h3 {
4471
    color: #000;
4472
}
4473
 
4474
.bookingsideber h3:active {
4475
    color: #e44d3a;
4476
}
4477
 
4478
.helpforum h4 {
4479
    font-size: 16px;
4480
    font-weight: 600;
4481
}
4482
 
4483
.bloktext {
4484
    padding-left: 25px;
4485
}
4486
 
4487
.privacy {
4488
    background-color: #fff;
4489
    height: 850px;
4490
}
4491
 
4492
.privacydropd .dropdown-toggle::after {
4493
    float: right;
4494
    vertical-align: 0.255em;
4495
}
4496
 
4497
/* .checkbox {} */
4498
 
4499
.form-check {
4500
    padding-left: 0;
4501
}
4502
 
4503
.btns a {
4504
    color: #000;
4505
    border: 1px solid #e5e5e5;
4506
    padding: 10px 25px 10px 25px;
4507
    margin-left: 15px;
4508
    border-radius: 5px;
4509
    font-weight: 600;
4510
}
4511
 
4512
.btns {
4513
    padding-top: 20px;
4514
}
4515
 
4516
.btns a:hover {
4517
    background-color: #e44d3a;
4518
    color: #fff;
4519
}
4520
 
4521
.privacy h3 {
4522
    font-size: 18px;
4523
    font-weight: 600;
4524
    padding-top: 18px;
4525
    margin-bottom: 10px;
4526
}
4527
 
4528
.privacy p {
4529
    padding-top: 0px;
4530
    display: inline-block;
4531
}
4532
 
4533
.form-group {
4534
    margin-bottom: 1rem;
4535
    padding-top: 0px;
4536
}
4537
 
4538
.privacy i {
4539
    float: right;
4540
    color: #e44d3a;
4541
    font-size: 20px;
4542
    font-weight: 600;
4543
}
4544
 
4545
.dropdown-menu input {
4546
    margin-right: 10px;
4547
    margin-top: 15px;
4548
}
4549
 
4550
.dropdown-menu a {
4551
    padding: 10px 0 10px 40px;
4552
    margin-bottom: 10px;
4553
}
4554
 
4555
.dropdown-menu form {
4556
    margin-bottom: 10px;
4557
    margin-top: 10px;
4558
}
4559
 
4560
.privacydropd p {
4561
    margin-left: 20px;
4562
    margin-top: 5px;
4563
}
4564
 
4565
.privabtns {
4566
    margin-top: 20px;
4567
}
4568
 
4569
.privabtns {
4570
    padding-bottom: 15px;
4571
}
4572
 
4573
.privabtns a {
4574
    margin-right: 15px;
4575
    padding: 8px 25px;
4576
    color: #000000;
4577
    border: 1px solid #e5e5e5;
4578
}
4579
 
4580
.privabtns a:hover {
4581
    color: #fff;
4582
    background-color: #e44d3a;
4583
}
4584
 
4585
.privac {
4586
    background-color: #fff;
4587
    height: 560px;
4588
    padding-top: 20px;
4589
}
4590
 
4591
.privac h3 {
4592
    font-size: 18px;
4593
    font-weight: 600;
4594
}
4595
 
4596
.bids-detail ul {
4597
    display: -webkit-inline-box;
4598
}
4599
 
4600
.bids-detail ul li {
4601
    margin-right: 30px;
4602
}
4603
 
4604
.bids-detail h3 {
4605
    font-size: 16px;
4606
    font-weight: 400;
4607
}
4608
 
4609
.bids-detail {
4610
    background-color: #fff;
4611
    padding: 20px;
4612
    margin-bottom: 25px;
4613
    box-shadow: 0px 2px #e4e4e4;
4614
}
4615
 
4616
.dropdown-menu.show {
4617
    display: contents;
4618
}
4619
 
4620
.postpaid:checked:after {
4621
    content: "\f17b";
4622
    font: normal normal normal 16px/1 "LineAwesome";
4623
    font-weight: 600;
4624
    border: 1px solid #fff;
4625
    color: #ffffff;
4626
    text-align: center;
4627
    font-size: 12px;
4628
    width: 100%;
4629
    height: 100%;
4630
    background: #e44d3a;
4631
    display: block;
4632
    border-radius: 50%;
4633
    padding-top: 3px;
4634
}
4635
 
4636
.postpaid:focus {
4637
    border: 1px solid #fff;
4638
    width: 25px;
4639
    height: 25px;
4640
}
4641
 
4642
.postpaid {
5706 stevensc 4643
    appearance: none;
5363 stevensc 4644
    content: "";
4645
    width: 20px;
4646
    height: 20px;
4647
    border-radius: 50%;
4648
    border: 1px solid #5e5e5e;
4649
    outline: 0;
4650
    margin-right: 5px;
4651
}
4652
 
4653
/* .main-ws-sec .job-status-bar {} */
4654
 
4655
.main-ws-sec .btm-line {
4656
    padding-bottom: 20px !important;
4657
    border-bottom: 1px solid #e5e5e5 !important;
4658
    margin-bottom: 20px;
4659
}
4660
 
4661
.job-status-bar hr {
4662
    margin: 0 -40px;
4663
}
4664
 
4665
.reply-area {
4666
    padding-left: 55px;
4667
}
4668
 
4669
.reply-rply1 {
4670
    margin: 24px 0;
4671
}
4672
 
4673
.reply-area p {
4674
    padding-bottom: 10px;
4675
}
4676
 
4677
.reply-area span {
4678
    cursor: pointer;
4679
}
4680
 
4681
.reply-area span:hover {
4682
    color: #e44d3a;
4683
}
4684
 
4685
.reply-area i {
4686
    font-size: 16px;
4687
    font-weight: 600;
4688
    padding-right: 8px;
4689
}
4690
 
4691
.comment-area .la-plus-circle {
4692
    display: block;
4693
    text-align: center;
4694
    font-size: 40px;
4695
    color: #b2b2b2;
4696
}
4697
 
4698
.reply-area span {
4699
    padding-top: 5px;
4700
    color: #b2b2b2;
4701
}
4702
 
4703
.comt span {
4704
    font-size: 16px;
4705
    color: #666666;
4706
}
4707
 
4708
.comt i {
4709
    padding-right: 8px;
4710
}
4711
 
4712
.postcomment .form-control {
4713
    width: 112%;
4714
    margin-left: -50px;
4715
    background-color: #efefef;
4716
    border-radius: 3px;
4717
}
4718
 
4719
.postcomment a {
4720
    background-color: #e44d3a;
4721
    color: #fff;
4722
    padding: 9px 25px 8px 25px;
4723
    line-height: 37px;
4724
    border-radius: 3px;
4725
}
4726
 
4727
.postcomment {
4728
    padding-top: 30px;
4729
}
4730
 
4731
.widget-projectid {
4732
    padding: 15px;
4733
}
4734
 
4735
.widget-projectid h3 {
4736
    padding-bottom: 7px;
4737
    font-size: 14px;
4738
    font-weight: 600;
4739
}
4740
 
4741
.paymethd p {
4742
    color: #e44d3a;
4743
}
4744
 
4745
.copylink p {
4746
    background-color: #efefef;
4747
    padding: 7px 0 8px 10px;
4748
}
4749
 
4750
.copylink a {
4751
    background-color: #e44d3a;
4752
    color: #fff;
4753
    padding: 10px 15px 10px 15px;
4754
    border-radius: 4px;
4755
}
4756
 
4757
.copylink span {
4758
    padding: 30px 0 20px;
4759
}
4760
 
4761
.copylink i {
4762
    float: unset;
4763
    position: unset;
4764
}
4765
 
4766
.copylink .la-facebook {
4767
    background-color: #3b5998;
4768
    color: #fff;
4769
}
4770
 
4771
.copylink .la-twitter {
4772
    color: #1da1f2;
4773
}
4774
 
4775
.copylink .la-pinterest-p {
4776
    background-color: #fff;
4777
    color: #c11628;
4778
    border-radius: 50%;
4779
}
4780
 
4781
.copylink img {
4782
    padding-right: 10px;
4783
}
4784
 
4785
.freelancerbiding {
4786
    background-color: #fff;
4787
    padding-top: 20px;
4788
}
4789
 
4790
.freelancerbiding h3 {
4791
    font-size: 18px;
4792
    font-weight: 400;
4793
}
4794
 
4795
.repcent {
4796
    text-align: left;
4797
}
4798
 
4799
.bidrit {
4800
    float: right;
4801
}
4802
 
4803
.repcent i {
4804
    padding-left: 5px;
4805
}
4806
 
4807
.star {
4808
    display: inline-flex;
4809
    padding: 5px 0;
4810
}
4811
 
4812
.star li i {
4813
    color: #bfd337;
4814
}
4815
 
4816
.repcent span {
4817
    color: #51a5fb;
4818
}
4819
 
4820
.repcent p {
4821
    padding-left: 7px;
4822
}
4823
 
4824
.noreview ul li i {
4825
    color: #b2b2b2;
4826
}
4827
 
4828
.paymethd .star li i {
4829
    position: unset;
4830
    font-size: 14px;
4831
}
4832
 
4833
.paymethd .star a {
4834
    color: #51a5fb;
4835
    padding-left: 12px;
4836
}
4837
 
4838
.notice {
4839
    background-color: #ddf3ff;
4840
    padding: 15px;
4841
}
4842
 
4843
.notice span {
4844
    font-weight: 500;
4845
    padding-right: 5px;
4846
}
4847
 
4848
.delivery .input-group select {
4849
    width: 150px;
4850
    height: 50px !important;
4851
    font-size: 19px;
4852
    border: 1px solid #e5e5e5;
4853
    border-radius: 3px;
4854
}
4855
 
4856
.place-bid-btn {
4857
    font-size: 15px;
4858
    font-weight: 500;
4859
    color: #fff !important;
4860
    background-color: #e44d3a !important;
4861
    border: none;
4862
    padding: 10px;
4863
    border: 1px solid #e44d3a;
4864
    border-radius: 3px;
4865
}
4866
 
4867
.usy-dt .reply {
4868
    margin: 3px 0 0 10px;
4869
    width: 360px;
4870
    height: 40px;
4871
    background-color: #efefef;
4872
    border: 1px solid #e5e5e5;
4873
    padding-left: 10px;
4874
    border-radius: 3px;
4875
}
4876
 
4877
.replybtn {
4878
    background-color: #e44d3a;
4879
    color: #fff;
4880
    padding: 10px;
4881
    margin-left: 15px;
4882
    border-radius: 3px;
4883
}
4884
 
4885
.replybtn:hover {
4886
    color: #fff;
4887
}
4888
 
4889
.rewivew ul li {
4890
    margin-right: 5px !important;
4891
}
4892
 
4893
.security hr {
4894
    margin-right: -15px;
4895
    margin-left: -15px;
4896
}
4897
 
4898
.privacy .la-check {
4899
    float: left;
4900
    font-size: 12px;
4901
    margin: 5px 5px 0 0;
4902
    padding: 3px;
4903
    background-color: #e44d3a;
4904
    color: #fff;
4905
    border-radius: 50%;
4906
}
4907
 
4908
ul#myTab {
4909
    border-bottom: 1px solid #e5e5e5;
4910
}
4911
 
4912
.nav-tabs .nav-link {
4913
    border: none;
4914
}
4915
 
4916
.noborder {
4917
    border-bottom: none;
4918
}
4919
 
4920
.manbids {
4921
    margin-bottom: 0 !important;
4922
}
4923
 
4924
.noreply {
4925
    padding-top: 30px;
4926
}
4927
 
4928
#my-bids .nav-tabs {
4929
    margin-bottom: 20px;
4930
    margin-top: 7px;
4931
    padding-bottom: 0;
4932
}
4933
 
4934
#my-bids ul {
4935
    margin-bottom: 15px;
4936
    margin-top: 7px;
4937
    padding-bottom: 0;
4938
}
4939
 
4940
.savedjob-info p {
4941
    color: #666666;
4942
    margin-top: 5px;
4943
}
4944
 
4945
#my-bids ul li a {
4946
    color: #000000;
4947
    font-size: 16px;
4948
    font-weight: 500;
4949
}
4950
 
4951
#my-bids li a:hover {
4952
    color: #e44d3a;
4953
}
4954
 
4955
#saved-jobs ul {
4956
    margin-bottom: 20px;
4957
}
4958
 
4959
#saved-jobs ul li a {
4960
    color: #000000;
4961
    font-size: 16px;
4962
    font-weight: 500;
4963
}
4964
 
4965
#saved-jobs li a:hover {
4966
    color: #e44d3a;
4967
}
4968
 
4969
.wordpressdevlp h2 {
4970
    font-size: 18px;
4971
    font-weight: 600;
4972
    margin-bottom: 15px;
4973
}
4974
 
4975
#saved-jobs .nav-tabs .nav-item.show .nav-link,
4976
#saved-jobs .nav-tabs .nav-link.active {
4977
    background-color: inherit;
4978
    color: #e44d3a !important;
4979
    padding-bottom: 9px;
4980
    border-bottom: 2px solid #e44d3a !important;
4981
}
4982
 
4983
#my-bids .nav-tabs .nav-item.show .nav-link,
4984
#my-bids .nav-tabs .nav-link.active {
4985
    background-color: inherit;
4986
    color: #e44d3a !important;
4987
    padding-bottom: 9px;
4988
    border-bottom: 2px solid #e44d3a !important;
4989
}
4990
 
4991
.descptab li img {
4992
    float: left !important;
4993
    filter: inherit !important;
4994
}
4995
 
4996
.bklink {
4997
    border-bottom: none !important;
4998
    width: unset !important;
4999
    float: right !important;
5000
}
5001
 
5002
.bklik {
5003
    border-bottom: none !important;
5004
}
5005
 
5006
/*////////////////////////////////////////My css//////////////////////////////// //////////////////////////////////////////////////////////////////////////////*/
5007
 
5008
.savedjob-info li {
5009
    display: inline-block;
5010
    padding-left: 25px;
5011
}
5012
 
5013
.savedjob-info h3 {
5014
    font-size: 14px;
5015
    font-weight: 500;
5016
}
5017
 
5018
.settingjb ul li {
5019
    margin-right: 25px !important;
5020
}
5021
 
5022
.mangebid li {
5023
    padding-left: 0;
5024
    padding-right: 20px;
5025
    padding-top: 10px;
5026
}
5027
 
5028
.bk-links.bklink li {
5029
    padding-right: 0;
5030
}
5031
 
5032
.bidsbtn {
5033
    position: relative;
5034
}
5035
 
5036
.biddersinfo li {
5037
    padding-left: 0;
5038
    padding-right: 20px;
5039
}
5040
 
5041
#review {
5042
    background-color: #fff;
5043
    margin-bottom: 40px;
5044
}
5045
 
5046
.starreview {
5047
    padding-left: 20px;
5048
}
5049
 
5050
.replytext {
5051
    padding-bottom: 20px;
5052
}
5053
 
5054
.starrevi {
5055
    padding-left: 20px;
5056
}
5057
 
5058
.apply-jobbox {
5059
    text-align: center;
5060
}
5061
 
5062
.apply-jobbox form input {
5063
    width: 100%;
5064
    margin-top: 20px;
5065
    padding: 10px;
5066
    color: #222;
5067
    border: 1px solid #e5e5e5;
5068
    border-radius: 3px;
5069
    font-size: 14px;
5070
}
5071
 
5072
.apply-jobbox h3 {
5073
    margin: 20px 0;
5074
}
5075
 
5076
.select-files {
5077
    border: 1px solid #e5e5e5;
5078
    margin-top: 20px;
5079
    padding: 30px;
5080
    background: #efefef;
5081
}
5082
 
5083
.select-files button {
5084
    margin-bottom: 20px;
5085
    background-color: transparent;
5086
    border: 1px solid #e5e5e5;
5087
    padding: 10px 15px 10px 15px;
5088
    border-radius: 5px;
5089
    font-weight: 600;
5090
}
5091
 
5092
.select-files button:hover {
5093
    background-color: #e44d3a;
5094
    color: #fff;
5095
}
5096
 
5097
.close {
5098
    position: absolute;
5099
    right: 0px;
5100
    top: 0px;
5101
    color: #929292;
5102
    border: 1px solid;
5103
    border-radius: 50%;
5104
    height: 30px;
5105
    width: 30px;
5106
}
5107
 
5108
.mapouter iframe {
5109
    width: 100%;
5110
    height: 400px;
5111
}
5112
 
5113
.mapouter {
5114
    position: relative;
5115
    text-align: right;
5116
    height: 500px;
5117
    width: 100%;
5118
}
5119
 
5120
.gmap_canvas {
5121
    overflow: hidden;
5122
    background: none !important;
5123
}
5124
 
5125
.video-iframe {
5126
    width: 100%;
5127
    height: 400px;
5128
}
5129
 
5130
.custom-file-input {
5131
    color: transparent;
5132
    opacity: 1;
5133
    /* margin-left: 140px; */
5134
    margin-bottom: 10px;
5135
}
5136
 
5137
.custom-file-input::-webkit-file-upload-button {
5138
    visibility: hidden;
5139
}
5140
 
5141
.custom-file-input::before {
5142
    content: "Select Files";
5143
    color: #fff;
5144
    display: inline-block;
5145
    border: 1px solid #e5e5e5;
5146
    border-radius: 3px;
5147
    background: #e44d3a;
5148
    font-weight: 500;
5149
    padding: 10px 15px;
5150
    outline: none;
5151
    white-space: nowrap;
5706 stevensc 5152
    user-select: none;
5363 stevensc 5153
    cursor: pointer;
5154
}
5155
 
5156
.custom-file-input:hover::before {
5157
    background-color: #e44d3a;
5158
    color: #fff;
5159
}
5160
 
5161
.custom-file-input:active {
5162
    outline: 0;
5163
}
5164
 
5165
.custom-file-input:active::before {
5166
    background: #e44d3a;
5167
    color: #fff;
5168
}
5169
 
5170
.bids-time {
5171
    float: right;
5172
}
5173
 
5174
.saved-post {
5175
    padding: 0;
5176
}
5177
 
5178
.saved-post p {
5179
    padding-bottom: 20px;
5180
}
5181
 
5182
.saved-info li {
5183
    padding-right: 25px;
5184
    padding-left: 0;
5185
}
5186
 
5187
.saved-btn {
5188
    padding: 0;
5189
    margin-bottom: -12px;
5190
}
5191
 
5192
.applied-post {
5193
    padding: 0;
5194
}
5195
 
5196
.post-bid {
5197
    padding: 0 !important;
5198
}
5199
 
5200
.bidsbtn {
5201
    padding-top: 0 !important;
5202
}
5203
 
5204
.active-bids {
5205
    padding: 0;
5206
}
5207
 
5208
.activ-bidinfo li {
5209
    padding-top: 10px;
5210
    padding-left: 0;
5211
    padding-right: 25px;
5212
}
5213
 
5214
.activebtn {
5215
    padding-left: 0;
5216
}
5217
 
5218
.p-all {
5219
    padding: 0px;
5220
    float: left;
5221
    width: 100%;
5222
    position: relative;
5223
}
5224
 
5225
.toggle-btn .custom-switch .custom-control-label::before {
5226
    left: -2.25rem;
5227
    width: 70px;
5228
    pointer-events: all;
5229
    border-radius: 100px;
5230
    height: 30px;
5231
    top: -1px;
5232
    box-shadow: none;
5233
}
5234
 
5235
.toggle-btn .custom-control-label::before {
5236
    position: absolute;
5237
    top: 0.25rem;
5238
    left: -1.5rem;
5239
    display: block;
5240
    width: 1rem;
5241
    height: 1rem;
5242
    pointer-events: none;
5243
    content: "";
5244
    background-color: #fff;
5245
    border: #e1e1e1 solid 2px;
5246
}
5247
 
5248
.custom-control-input:checked~.custom-control-label::before {
5249
    color: #fff;
5250
    border-color: #e44d3a;
5251
    background-color: #e44d3a;
5252
    box-shadow: none;
5253
    outline: none;
5254
}
5255
 
5256
.toggle-btn .custom-switch .custom-control-label::after {
5257
    top: calc(-1px + 2px);
5258
    left: calc(-36px + 2px);
5259
    width: calc(30px - 4px);
5260
    height: calc(30px - 4px);
5261
    background-color: #e1e1e1;
5262
    border-radius: 100%;
5263
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
5264
        -webkit-transform 0.15s ease-in-out;
5265
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
5266
        box-shadow 0.15s ease-in-out;
5267
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
5268
        box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
5269
}
5270
 
5271
.toggle-btn .custom-control-label::after {
5272
    position: absolute;
5273
    top: 0.25rem;
5274
    left: -1.5rem;
5275
    display: block;
5276
    width: 0;
5277
    height: 0;
5278
    content: "";
5279
    background: no-repeat 50%/50% 50%;
5280
}
5281
 
5282
.toggle-btn .custom-control-label {
5283
    position: initial;
5284
    margin-bottom: 0;
5285
    vertical-align: top;
5286
}
5287
 
5288
.toggle-btn .custom-switch .custom-control-input:checked~.custom-control-label::after {
5289
    background-color: #fff;
5290
    -webkit-transform: translateX(2.5rem);
5291
    transform: translateX(2.5rem);
5292
}
5293
 
5294
.custom-control-label {
5295
    position: relative;
5296
    margin-bottom: 0;
5297
    vertical-align: top;
5298
    line-height: 24px;
5299
    font-size: 14px;
5300
    color: #666666;
5301
}
5302
 
5303
.small-text-children p,
5304
.small-text-children span {
5305
    font-size: 0.8rem;
5306
}
5307
 
5308
.search-item-selected {
5309
    padding: 1px 10px;
5310
    background: var(--background-gray);
5311
    line-height: 1;
5312
    border-radius: 10px;
5313
    font-weight: bold;
5314
}
5315
 
5316
.row .sc-dkzDqf {
5317
    margin: 0 auto;
5318
}
5319
 
5320
.test-section .title,
5321
.test-section .description {
5322
    margin-bottom: 10px;
5323
}
5324
 
5325
.test-section .btn-danger {
5326
    margin-right: 10px;
5327
}
5328
 
5329
.test-section .panel-body {
5330
    padding: 20px 0px;
5331
}
5332
 
5333
.test-section .panel {
5334
    margin-top: 20px;
5335
    padding-bottom: 10px;
5336
}
5337
 
5338
.test-section .np-padding {
5339
    padding: 0px;
5340
}
5341
 
5342
.test-section .checkbox {
5343
    display: flex;
5344
    margin: 20px 0px;
5345
}
5346
 
5347
.test-section .option {
5348
    margin-left: 10px;
5349
}
5350
 
5351
.checkbox input[type="checkbox"],
5352
input[type="radio"] {
5353
    margin-top: 5px !important;
5354
}
5355
 
5356
.test-section h6 {
5357
    margin-bottom: 10px;
5358
    color: #0860bf;
5359
}
5360
 
5361
.wizard {
5362
    display: flex;
5363
    margin-top: 10px;
5364
}
5365
 
5366
.wizard li {
5367
    width: 50%;
5368
    display: inline-block;
5369
}
5370
 
5371
.btn-secondary:disabled,
5372
.btn-primary:disabled {
5373
    cursor: no-drop;
5374
}
5375
 
5376
.test-section .btn-primary {
5377
    margin-left: 10px;
5378
}
5379
 
5380
.previous {
5381
    text-align: left;
5382
}
5383
 
5384
.next {
5385
    text-align: right;
5386
}
5387
 
5388
.test-section .close {
5389
    border: none !important;
5390
    border-radius: 0px !important;
5391
}
5392
 
5393
.ratin-range {
5394
    display: block;
5395
}
5396
 
5397
.ratin-range li {
5398
    display: inline-block;
5399
    width: 6%;
5400
}
5401
 
5402
.ratin-range li .option {
5403
    margin-top: 2px !important;
5404
}
5405
 
5406
#react-self-evaluation .company-up-info ul {
5407
    width: 100%;
5408
    position: absolute;
5409
    float: left;
5410
    left: 0px;
5411
    bottom: 4vw;
5412
}
5413
 
5414
#react-self-evaluation .company-up-info {
5415
    padding: 30px 10px;
5416
    min-height: 20vw;
5417
    border: 1px solid #e5e5e5;
5418
}
5419
 
5420
#react-self-evaluation .company-up-info h3 {
5421
    width: 90%;
5422
    margin: 5px auto;
5423
}
5424
 
5425
// Alert notification
5426
.alert-danger {
5427
    background-color: $danger !important;
5428
 
5429
    &:hover {
5430
        background-color: $danger-hover !important;
5431
    }
5432
}