Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
3508 stevensc 1
/*===================== TABLE OF CONTENT ======================= 1.	Header 2.  Nav Hover =============================================================*/
2
@import "./settings/variables.scss";
3
 
4
body {
5
    overflow-y: scroll;
6
}
7
 
8
header {
9
    float: left;
10
    width: 100%;
11
    /*background-color: #0961bf; border-bottom: 8px #1dac98 solid;*/
12
    background-color: white;
13
    border-bottom: 1px solid #afafaf;
14
}
15
 
16
.search-bar {
17
    margin-top: 10px;
18
}
19
 
20
nav > ul > li > a:hover {
21
    /*color: #1dac98 !important;*/
22
    color: #ffffff;
23
}
24
 
25
.user-account {
26
    border-left: none;
27
    border-right: none;
28
    display: flex;
29
    height: 56px;
30
    align-items: center;
31
    justify-content: space-between;
32
}
33
 
34
.mail_menu {
35
    display: flex;
36
    flex-direction: column;
37
    justify-content: center;
38
    align-items: center;
39
    /* gap: 0.5rem; */
40
}
41
 
42
nav ul ul {
43
    /* background-color: #1dac98; */
44
    background-color: #f4e6a6;
45
}
46
 
47
.search-bar form input {
48
    width: 100%;
49
    background-color: #fff;
50
    height: 30px;
51
    color: #b2b2b2;
52
    font-size: 12px;
53
    border: 0;
54
    padding: 0 10px;
55
    border-radius: 25px;
56
}
57
 
58
.search-bar form button i {
59
    /* color: #0a0a0a; */
60
    color: #fff;
61
    font-size: 20px;
62
    font-weight: bold;
63
}
64
 
65
.search-bar form button {
66
    position: absolute;
67
    top: 0;
68
    right: 0;
69
    background-color: #efefef;
70
    width: 38px;
71
    height: 100%;
72
    /*border: 0;*/
73
    border-radius: 25px;
74
}
75
 
76
.username-dt {
77
    float: left;
78
    width: 100%;
79
    /*background-color: #1dac98; */
80
    /* background-color: #F7EE9F; */
81
    background-color: #1eb89e;
82
    padding-top: 40px;
83
}
84
 
85
.post-topbar {
86
    /* border-top: 4px solid #ffd600; */
3509 stevensc 87
    border-top: 4px solid $border-primary;
3508 stevensc 88
}
89
 
90
.post-st ul li a:hover,
91
.post-st ul li a.active {
92
    /* background-color: #1dac98; */
93
    background-color: #82d0d4;
94
    color: #fff;
95
}
96
 
97
.widget-about img {
98
    float: none;
99
    padding-top: 0px;
100
}
101
 
102
.modal-notificacion {
103
    /* color: #0961bf !important; */
104
    color: #0961bf !important;
105
}
106
 
107
.view-all-nots > a {
108
    /* background-color: #0961bf; */
109
    background-color: #0961bf;
110
}
111
 
112
/* .notification-box {top: 24px !important; } */
113
.comment_box form button {
114
    /* background-color: #0961bf; */
115
    background-color: #0860bf !important;
116
    color: #ffffff;
117
    height: 38px;
118
    font-size: 15px !important;
119
}
120
 
121
.comment_box form button:hover {
122
    /* background-color: #0961bf; */
123
    background-color: #1e5591 !important;
124
}
125
 
126
.chat-mg span {
127
    /* background-color: #0961bf !important; */
128
    background-color: #0961bf !important;
129
}
130
 
131
.post-project h3 {
132
    background-color: #1dac98;
133
}
134
 
135
.post-project-fields form ul li button.active {
136
    background-color: #1dac98;
137
    color: #fff;
138
}
139
 
140
.chat-msg p {
141
    background-color: #1dac98;
142
}
143
 
144
.con-title {
145
    /* background-color: #0961bf !important; */
146
    background-color: #0961bf !important;
147
}
148
 
149
.typing-msg form button {
150
    /* color: #0961bf; */
151
    color: #0961bf;
152
}
153
 
154
.msg-numbers {
155
    background-color: #1dac98;
156
}
157
 
158
.search_form form button {
159
    /* background-color: #0961bf; */
160
    background-color: #0961bf;
161
}
162
 
163
.bk-links li i.la-envelope {
164
    /* background-color: #0961bf; */
165
    background-color: #0961bf;
166
}
167
 
168
.message-btn a {
169
    margin: 0.5rem 0;
170
}
171
 
172
.sign-in {
173
    background-color: white;
174
}
175
 
176
.sign_in_sec {
177
    padding-left: 25px;
178
}
179
 
180
.sign_in_sec form button:disabled {
181
    background-color: #dddddd;
182
    color: #a3a1a1;
183
}
184
 
185
.sign-control li.current a {
3737 stevensc 186
    background-color: $button-bg-secondary;
3508 stevensc 187
}
188
 
189
.sign-control li a.current {
3737 stevensc 190
    background-color: $button-bg-secondary;
191
    color: $button-text-color-secondary !important;
192
    border: 1px solid $border-primary;
3508 stevensc 193
}
194
 
195
.sign_in_sec h3:before {
196
    background-color: #0961bf;
197
}
198
 
199
.signup-tab ul li.current a {
200
    background-color: #0961bf;
201
}
202
 
203
.filter-heading h3 {
204
    color: #0961bf;
205
}
206
 
207
.theme-green .back-bar .selected-bar {
208
    background-color: #0961bf;
209
    background-image: linear-gradient(to bottom, #0961bf, #0961bf);
210
}
211
 
212
.theme-green .back-bar .pointer {
213
    background-color: #0961bf;
214
}
215
 
216
.like-com li a.active {
217
    color: #0961bf;
218
}
219
 
220
.like-com li button {
221
    color: #bebebe;
222
    font-size: 0.95rem;
223
}
224
 
225
.btn-feed-share {
226
    font-size: 0.95rem;
227
    color: #929292;
228
}
229
 
230
.btn-feed-share i {
231
    margin-right: 5px;
232
}
233
 
234
.btn-unlike,
235
.btn-like {
236
    color: #0961bf;
237
}
238
 
239
.btn-profile-cancel {
240
    background-color: #e44d3a;
241
    border: none;
242
    display: inline-block;
243
    padding: 0 12px;
244
    color: #fff;
245
    height: 35px;
246
    line-height: 35px;
247
}
248
 
249
.display-reactions {
250
    border-radius: 5px;
251
    padding: 10px;
252
    display: flex;
253
    align-items: center;
254
    justify-content: center;
255
    gap: 5px;
256
}
257
 
258
.display-reactions button {
3601 stevensc 259
    color: $chat-color;
3508 stevensc 260
}
261
 
262
.sign_link > a {
263
    color: #0961bf;
264
}
265
 
266
.view-more > a:hover {
267
    color: #0961bf;
268
}
269
 
270
.view-more > a {
271
    color: #0961bf;
272
}
273
 
274
.nav-tabs .nav-item.show .nav-link,
275
.nav-tabs .nav-link.active {
276
    color: #0961bf;
277
}
278
 
279
.tab-feed ul li.active span {
280
    color: #0961bf;
281
}
282
 
283
.btn-feed-trash,
284
.btn-comment-trash {
285
    color: #b2b2b2;
286
    margin-left: 0.2rem;
287
    transition: 0.2s linear;
288
}
289
 
290
.btn-feed-trash:hover,
291
.btn-comment-trash:hover {
292
    color: #df3e3e;
293
    margin-left: 0.2rem;
294
}
295
 
296
.btn-purple {
297
    background-color: #04478f;
298
}
299
 
300
.msg-notifc {
301
    background-color: #0961bf;
302
}
303
 
304
.msg-status {
305
    background-color: #0961bf;
306
}
307
 
308
.select-with-icon {
309
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
310
    background-repeat: no-repeat;
311
    background-position-x: 100%;
312
    background-position-y: 5px;
313
}
314
 
315
/* .mf-field > button {
316
    width: 1.7rem;
317
    white-space: nowrap;
318
    overflow: hidden;
319
    border: none !important;
320
}
321
.mf-field button i {
322
    margin-right: 5px;
323
    font-size: 1.5rem;
324
}
325
.mf-field > button:hover{
326
    color: #fff !important;
327
    text-shadow: 2px 2px 2px #0003 !important;
328
    border: none !important;
329
} */
330
.msg-title {
331
    display: flex;
332
    align-items: center;
333
    justify-content: space-between;
334
}
335
 
336
.msg-title .msgs_icons-container {
337
    display: flex;
338
    align-items: center;
339
}
340
 
341
.messages-sec .icon {
342
    cursor: pointer;
343
    height: 30px;
344
    display: grid;
345
    place-items: center;
346
    width: 30px;
347
    border-radius: 50px;
348
    padding: 0;
349
    transition: all 0.2s;
350
    color: #0860bf;
351
}
352
 
353
.messages-sec .icon:hover {
354
    background-color: #efefef;
355
}
356
 
357
.messages-page > .container h1 {
358
    font-weight: 600;
359
    font-size: 2rem;
360
    text-align: left;
361
    margin-bottom: 1.5rem;
362
}
363
 
364
.messages-list > .messages_conversation-search {
365
    transition: all 0.2s;
366
    padding: 10px 20px;
367
    position: relative;
368
    overflow: hidden;
369
}
370
 
371
.messages-list > .messages_conversation-search.hide {
372
    height: 0;
373
    padding: 0;
374
}
375
 
376
.messages-list > .messages_conversation-search input {
377
    outline: none;
378
    box-shadow: none;
379
    border: 1px solid #e6e6e6;
380
}
381
 
382
.messages-line {
383
    display: flex;
384
    flex-direction: column-reverse;
385
    height: auto;
386
    overflow: auto;
387
}
388
 
389
.main-conversation-box > .messages-line > hr {
390
    margin-top: 0 !important;
391
    margin-bottom: 0 !important;
392
    opacity: 0 !important;
393
}
394
 
395
.message-bar-head .usr-msg-details {
396
    display: flex;
397
    align-items: center;
398
}
399
 
400
.message-select-conversation {
401
    display: grid;
402
    place-items: center;
403
    width: 100%;
404
    min-height: 300px;
405
    height: 100%;
3572 stevensc 406
    position: absolute;
3508 stevensc 407
}
408
 
409
.message-select-conversation .msgs-select-container {
410
    display: flex;
411
    flex-direction: column;
412
    align-items: center;
413
}
414
 
415
.message-select-conversation .msgs-select-container .icon {
416
    font-size: 2.5rem;
417
    margin-bottom: 1rem;
418
}
419
 
420
.message-select-conversation .msgs-select-container .icon:hover {
421
    background-color: #0000;
422
}
423
 
424
@media (min-width: 1200px) {
425
    .msgs-container {
426
        max-width: 1000px;
427
    }
428
}
429
 
430
.main-conversation-box .message-bar-head .usr-msg-details .icon {
431
    display: none;
432
}
433
 
434
.msgs-hide {
435
    font-size: 1.2rem;
436
    color: var(--gray);
437
}
438
 
439
@media (max-width: 992px) {
440
    .main-conversation-box .message-bar-head .usr-msg-details .icon {
441
        display: grid;
442
    }
443
}
444
 
445
@media (max-width: 992px) {
446
    .msgs-hide {
447
        display: none;
448
    }
449
}
450
 
451
@media (min-width: 992px) {
452
    .icon-hide {
453
        display: none !important;
454
    }
455
}
456
 
457
#shared_with {
458
    font-size: 16px;
459
    display: inline-block;
460
    height: 40px;
461
    padding: 0 15px;
462
    line-height: 40px;
463
    font-weight: 500;
464
}
465
 
466
#shared_with > option {
467
    font-size: 1.2rem;
468
    display: inline-block;
469
    height: 40px;
470
    padding: 0 15px;
471
    line-height: 40px;
472
    font-weight: 500;
473
}
474
 
475
.flww {
476
    background-color: #0961bf;
477
}
478
 
479
.tab-feed ul li.active span {
480
    color: #1dac98;
481
}
482
 
483
.add-pic-box [type="file"] + label {
484
    border: 2px solid #0961bf;
485
    color: #0961bf;
486
}
487
 
488
.add-pic-box [type="file"] + label:hover {
489
    background: #0961bf;
490
}
491
 
492
.user-pro-img .add-dp {
493
    left: 34%;
494
}
495
 
496
/****estilos del feed***/
497
.img-sm {
498
    width: 46px;
499
    height: 46px;
500
}
501
 
502
.panel .panel-footer,
503
.panel > :last-child {
504
    border-bottom-left-radius: 0;
505
    border-bottom-right-radius: 0;
506
}
507
 
508
.panel .panel-heading,
509
.panel > :first-child {
510
    border-top-left-radius: 0;
511
    border-top-right-radius: 0;
512
}
513
 
514
.panel-body {
515
    padding: 25px 20px;
516
}
517
 
518
.media-block .media-left {
519
    display: block;
520
    float: left;
521
}
522
 
523
.media-block .media-right {
524
    float: right;
525
}
526
 
527
.media-block .media-body {
528
    display: block;
529
    overflow: hidden;
530
    width: auto;
531
}
532
 
533
.middle .media-left,
534
.middle .media-right,
535
.middle .media-body {
536
    vertical-align: middle;
537
}
538
 
539
.thumbnail {
540
    border-radius: 0;
541
    border-color: #e9e9e9;
542
}
543
 
544
.tag.tag-sm,
545
.btn-group-sm > .tag {
546
    padding: 5px 10px;
547
}
548
 
549
.tag:not(.label) {
550
    background-color: #fff;
551
    padding: 6px 12px;
552
    border-radius: 2px;
553
    border: 1px solid #cdd6e1;
554
    font-size: 12px;
555
    line-height: 1.42857;
556
    vertical-align: middle;
557
    -webkit-transition: all 0.15s;
558
    transition: all 0.15s;
559
}
560
 
561
.text-muted,
562
a.text-muted:hover,
563
a.text-muted:focus {
564
    color: #acacac;
565
}
566
 
567
.text-sm {
568
    font-size: 0.9em;
569
}
570
 
571
.text-5x,
572
.text-4x,
573
.text-5x,
574
.text-2x,
575
.text-lg,
576
.text-sm,
577
.text-xs {
578
    line-height: 1.25;
579
}
580
 
581
.btn-trans {
582
    background-color: transparent;
583
    border-color: transparent;
584
    color: #929292;
585
}
586
 
587
.btn-icon {
588
    padding-left: 9px;
589
    padding-right: 9px;
590
}
591
 
592
.btn:hover {
593
    color: #fff;
594
}
595
 
596
.btn-sm,
597
.btn-group-sm > .btn,
598
.btn-icon.btn-sm {
599
    padding: 5px 10px !important;
600
}
601
 
602
.mar-top {
603
    margin-top: 15px;
604
}
605
 
606
.post_comment_sec form button {
607
    background-color: #0961bf;
608
}
609
 
610
.save {
611
    background-color: #0961bf;
612
}
613
 
614
.post_comment_sec form textarea {
615
    height: 80px;
616
}
617
 
618
.actions-common-com > a i {
619
    -webkit-transition: all 0.4s ease-in;
620
    -moz-transition: all 0.4s ease-in;
621
    -ms-transition: all 0.4s ease-in;
622
    -o-transition: all 0.4s ease-in;
623
    transition: all 0.4s ease-in;
624
}
625
 
626
.actions-common-com {
627
    float: right;
628
    margin-top: 20px;
629
}
630
 
631
.actions-common-com li {
632
    display: inline-block;
633
    margin-right: 15px;
634
}
635
 
636
.actions-common-com li a {
637
    color: #b2b2b2;
638
    font-size: 14px;
639
    font-weight: 500;
640
    float: left;
641
    margin-top: 6px;
642
    margin-right: 5px;
643
}
644
 
645
.actions-common-com li a:hover {
646
    color: #e44d3a;
647
}
648
 
649
.actions-common-com li a.active {
650
    color: #e44d3a;
651
}
652
 
653
.actions-common-com li a i {
654
    margin-right: 2px;
655
    font-size: 14px;
656
    position: relative;
657
    top: 2px;
658
}
659
 
660
.actions-common-com li span {
661
    color: #ffffff;
662
    font-size: 13px;
663
    width: 30px;
664
    height: 30px;
665
    background-color: #e44d3a;
666
    line-height: 30px;
667
    -webkit-border-radius: 30px;
668
    -moz-border-radius: 30px;
669
    -ms-border-radius: 30px;
670
    -o-border-radius: 30px;
671
    border-radius: 30px;
672
    float: left;
673
    text-align: center;
674
    font-weight: 600;
675
    margin-left: -25px;
676
}
677
 
678
.actions-common-com li .com {
679
    position: relative;
680
    top: -9px;
681
}
682
 
683
.actions-common-com li .com img {
684
    margin-right: 10px;
685
}
686
 
687
.widget-about button {
3565 stevensc 688
    background-color: $button-bg;
3508 stevensc 689
}
690
 
691
.copylink a {
692
    background-color: #0961bf;
693
}
694
 
695
/* .modal-header {background-color: #0961bf; } */
696
.custom-file-input::before {
697
    background: #0961bf;
698
}
699
 
700
.custom-file-input:hover::before {
701
    background-color: #1dac98;
702
}
703
 
704
.place-bid-btn {
705
    background-color: #0961bf !important;
706
}
707
 
708
.widget-about button:hover {
3565 stevensc 709
    background-color: $button-bg-hover;
3508 stevensc 710
}
711
 
712
.user-info img {
713
    /* width: 30px; height: 30px; */
714
    width: 100%;
715
    height: 100%;
716
    border-radius: 50%;
717
}
718
 
719
.sn-field-has-error {
720
    border: 1px solid red;
721
    margin-bottom: 5px;
722
}
723
 
724
.sn-field-invalid-feedback {
725
    color: red;
726
    font-size: 13px;
727
    line-height: 20px;
728
    margin-bottom: 5px;
729
}
730
 
731
.form-group {
732
    margin-bottom: 5px;
733
    margin-top: 5px;
734
}
735
 
736
.form-group-has-error {
737
    border: 1px solid red !important;
738
}
739
 
740
.form-group-invalid-feedback {
741
    color: red;
742
    font-size: 13px;
743
    line-height: 20px;
744
    margin-bottom: 5px;
745
}
746
 
747
.fgt-sec input[type="checkbox"] + label span:before {
748
    background-color: #0961bf;
749
}
750
 
751
::-webkit-input-placeholder {
752
    /* Edge */
753
    color: #515151;
754
}
755
 
756
:-ms-input-placeholder {
757
    /* Internet Explorer 10-11 */
758
    color: #515151;
759
}
760
 
761
::placeholder {
762
    color: #515151;
763
}
764
 
765
.info-page {
766
    padding: 50px 0;
767
}
768
 
769
.section_admin_title_buttons {
770
    width: 100%;
771
    display: flex;
772
    margin-left: 0;
773
    justify-content: space-between;
774
    align-items: center;
775
}
776
 
777
.market_admin_title_buttons {
778
    width: 100%;
779
    display: flex;
3987 stevensc 780
    gap: 0.5rem;
3508 stevensc 781
    flex-direction: column;
782
    justify-content: space-between;
783
    align-items: center;
784
}
785
 
786
.search-btn {
787
    width: 100px;
788
    right: 0;
789
    height: 100%;
3573 stevensc 790
    background: $bg-color;
3508 stevensc 791
    position: absolute;
3573 stevensc 792
    border: 1px solid $border-primary;
3508 stevensc 793
    top: 0;
3573 stevensc 794
    color: $font-color;
3508 stevensc 795
    font-weight: 600;
796
    border-start-end-radius: 0.25rem;
797
    border-bottom-right-radius: 0.25rem;
798
}
799
 
800
.market_admin_title_buttons .search_input {
801
    width: 100%;
802
    position: relative;
3867 stevensc 803
    margin-bottom: 0;
3573 stevensc 804
    input,
805
    input:focus {
806
        background: $bg-color;
3574 stevensc 807
        &::placeholder {
808
            color: $font-color;
809
        }
3573 stevensc 810
    }
3508 stevensc 811
}
812
 
813
.market_admin_title_buttons .search_categories {
814
    width: 100%;
3869 stevensc 815
    margin-bottom: 0;
3573 stevensc 816
    select {
817
        background-color: $bg-color;
3574 stevensc 818
        &::placeholder {
819
            color: $font-color;
820
        }
3573 stevensc 821
    }
3508 stevensc 822
}
823
 
824
.section_admin_title_buttons h1.title,
825
.section_admin_title_buttons h2 {
3523 stevensc 826
    color: $title-color;
3508 stevensc 827
    font-weight: bold;
828
    font-size: 18px;
829
}
830
 
831
.section_admin_title_buttons h2 {
832
    cursor: pointer;
833
}
834
 
835
@media (min-width: 768px) {
836
    .section_admin_title_buttons {
837
        width: 50%;
838
        margin-left: auto;
839
    }
840
 
841
    .market_admin_title_buttons {
842
        flex-direction: row;
843
    }
844
 
845
    .market_admin_title_buttons .search_input {
846
        width: 60%;
847
    }
848
 
849
    .market_admin_title_buttons .search_categories {
850
        width: 40%;
851
    }
852
}
853
 
854
.section_admin_form {
855
    float: left;
856
    width: 100%;
857
    padding-left: 15px;
858
}
859
 
860
.section_admin_form form input,
861
.section_admin_form form select {
862
    width: 100%;
863
    padding: 0 15px 0 15px;
864
    color: #000000;
865
    font-size: 14px;
866
    border: 1px solid #e5e5e5;
867
    height: 40px;
868
}
869
 
870
.section_admin_form form textarea {
871
    width: 100%;
872
    padding: 10px 15px 0 15px;
873
    color: #000000;
874
    font-size: 14px;
875
    border: 1px solid #e5e5e5;
876
    height: 300px;
877
}
878
 
879
/* .section_admin_form form button {color: #ffffff; font-size: 16px; background-color: #0961bf; padding: 12px 27px; border: 0; font-weight: 500; margin-top: 30px; cursor: pointer; }*/
880
.section_admin_form .form-group label {
881
    color: #666 !important;
882
    font-weight: 400;
883
    font-size: 14px;
884
    padding-bottom: 5px;
885
}
886
 
887
.section_admin_form .form-group .toggle-group label {
888
    color: #fff !important;
889
    font-weight: 400;
890
    font-size: 16px;
891
    padding-bottom: 5px;
892
}
893
 
894
.section_admin_form .form-group .toggle-group label.toggle-off {
895
    background-color: #808080;
896
    border-color: #808080;
897
}
898
 
899
.section_admin_form .form-group .toggle-group label.toggle-off:hover {
900
    background-color: #808080;
901
    border-color: #808080;
902
}
903
 
904
.select2-container .select2-selection--single .select2-selection__rendered {
905
    display: block;
906
    padding: 0 15px 0 15px;
907
    overflow: hidden;
908
    text-overflow: ellipsis;
909
    white-space: nowrap;
910
    color: #000000;
911
    font-size: 14px;
912
    border: 1px solid #e5e5e5;
913
    height: 40px;
914
}
915
 
916
.select2-container .select2-search--inline .select2-search__field {
917
    margin-left: 0px;
918
}
919
 
920
.select2-results__option {
921
    display: block;
922
    padding: 10px 15px 0 15px !important;
923
    overflow: hidden;
924
    text-overflow: ellipsis;
925
    white-space: nowrap;
926
    font-size: 14px;
927
    border: 1px solid #e5e5e5;
928
    height: 40px;
929
}
930
 
931
.text-vertical-middle {
932
    vertical-align: middle !important;
933
}
934
 
935
table.dataTable thead .sorting:before,
936
table.dataTable thead .sorting_asc:before,
937
table.dataTable thead .sorting_desc:before,
938
table.dataTable thead .sorting_asc_disabled:before,
939
table.dataTable thead .sorting_desc_disabled:before {
940
    right: 1em;
941
    /* content: "\2191";*/
942
    content: none !important;
943
}
944
 
945
table.dataTable thead .sorting:after,
946
table.dataTable thead .sorting_asc:after,
947
table.dataTable thead .sorting_desc:after,
948
table.dataTable thead .sorting_asc_disabled:after,
949
table.dataTable thead .sorting_desc_disabled:after {
950
    right: 0.5em;
951
    /*content: "\2193";*/
952
    content: none !important;
953
}
954
 
955
.btn-edit {
956
    display: inline-block;
957
    padding: 0 12px;
958
    color: #fff;
959
    height: 35px;
960
    line-height: 35px;
961
    background-color: #0961bf;
962
}
963
 
964
.btn-delete {
965
    display: inline-block;
966
    padding: 0 12px;
967
    color: #fff;
968
    height: 35px;
969
    line-height: 35px;
970
    background-color: #e44d3a;
971
}
972
 
973
.post-project-fields form label {
974
    color: #666 !important;
975
    font-weight: 400;
976
    font-size: 14px;
977
    padding-bottom: 5px;
978
}
979
 
980
.post-project-fields form input,
981
.post-project-fields form textarea,
982
.post-project-fields form select {
983
    width: 100%;
984
    color: #000000;
985
    font-size: 14px;
986
    border: 1px solid #b4b4b4;
987
    margin-bottom: 20px;
988
    font-weight: 500;
989
}
990
 
991
.overview-box.open {
992
    z-index: 1000 !important;
993
}
994
 
995
.overview-edit form select {
996
    padding-left: 0 !important;
997
    -webkit-border-radius: 0 !important;
998
    -moz-border-radius: 0 !important;
999
    -ms-border-radius: 0 !important;
1000
    -o-border-radius: 0 !important;
1001
    border-radius: 0 !important;
1002
}
1003
 
1004
.overview-edit form textarea,
1005
.overview-edit form input,
1006
.overview-edit form select {
1007
    border: 1px solid #aaa;
1008
    color: #b2b2b2 !important;
1009
}
1010
 
1011
.overview-edit span {
1012
    float: none;
1013
}
1014
 
1015
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
1016
    color: #000;
1017
    font-size: 14px;
1018
    line-height: 20px;
1019
}
1020
 
1021
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1022
    line-height: 20px;
1023
}
1024
 
1025
.select2-container--bootstrap4.select2-container--focus .select2-selection {
1026
    border-color: inherit;
1027
    -webkit-box-shadow: inherit;
1028
    box-shadow: inherit;
1029
}
1030
 
1031
.user-profile-extended-ov {
1032
    width: 100%;
3550 stevensc 1033
    background-color: $bg-color;
3508 stevensc 1034
    padding: 10px 20px 30px;
3641 stevensc 1035
    box-shadow: $shadow;
3508 stevensc 1036
    margin-bottom: 20px;
1037
    border-radius: 10px;
3641 stevensc 1038
    h3 {
1039
        color: $title-color;
1040
        font-size: 18px;
1041
        font-weight: 600;
1042
        margin-bottom: 0.5rem;
1043
    }
1044
    span {
1045
        line-height: 22px;
1046
        color: $font-color;
1047
    }
1048
    p {
1049
        color: $font-color;
1050
        line-height: 20px;
1051
    }
1052
    i {
1053
        color: $font-color;
1054
        font-size: 13px;
1055
    }
1056
    strong {
1057
        font-weight: bold !important;
1058
    }
3508 stevensc 1059
}
1060
 
1061
.user-social-network-ov {
1062
    width: 100%;
3550 stevensc 1063
    background-color: $bg-color;
3641 stevensc 1064
    h3 {
1065
        color: $title-color;
1066
        font-size: 18px;
1067
        font-weight: 600;
1068
    }
1069
    i {
1070
        color: $font-color;
1071
        font-size: 13px;
1072
        padding-left: 5px;
1073
    }
3508 stevensc 1074
}
1075
 
1076
.social_links li a {
1077
    line-height: 18px;
1078
}
1079
 
1080
.overview-edit form .select2-container--default .select2-selection--single {
1081
    height: 40px;
1082
    margin-bottom: 25px;
1083
}
1084
 
1085
.overview-edit form .select2-container--default .select2-selection--single .select2-selection__rendered {
1086
    color: #444;
1087
    line-height: 34px;
1088
}
1089
 
1090
.overview-edit form .select2-container--default .select2-selection--single .select2-selection__arrow b {
1091
    margin-top: 4px;
1092
}
1093
 
1094
.overview-edit form textarea,
1095
.overview-edit form input,
1096
.overview-edit form select {
1097
    color: #444;
1098
}
1099
 
1100
.datepicky {
1101
    float: none;
1102
}
1103
 
1104
.datefm {
1105
    float: none;
1106
}
1107
 
1108
.modal-dialog {
1109
    /* width: 100%; background-color: #fff; padding: 15px 10px; */
1110
}
1111
 
1112
/* .modal-header {background-color: #fff; padding: 0px; border-bottom: 0px; } */
1113
.modal-title h3 {
1114
    color: #000000;
1115
    font-size: 18px;
1116
    font-weight: 600;
1117
    width: 100%;
1118
    margin-bottom: 25px;
1119
}
1120
 
1121
.modal-content {
1122
    border: 0px;
1123
    padding: 1rem;
1124
}
1125
 
1126
.modal-content textarea,
1127
.modal-content input,
1128
.modal-content select {
1129
    width: 100% !important;
1130
    resize: none;
1131
    border: 1px solid #aaa;
1132
    color: #444 !important;
1133
    font-size: 14px;
1134
}
1135
 
1136
.modal-content input {
1137
    height: 40px;
1138
    padding-left: 15px;
1139
    margin-bottom: 0;
1140
}
1141
 
1142
.modal-content select {
1143
    height: 40px;
1144
    padding-left: 15px;
1145
    margin-bottom: 0;
1146
    background-color: #fff;
1147
}
1148
 
1149
span.group-span-filestyle {
1150
    border: 1px solid #aaa;
1151
    color: #fff;
1152
    background-color: #0961bf;
1153
    margin-top: 10px;
1154
}
1155
 
1156
span.group-span-filestyle:hover {
1157
    color: #fff;
1158
    background-color: #0961bf;
1159
}
1160
 
1161
.modal-content .form-group .toggle-group label {
1162
    color: #fff !important;
1163
    font-weight: 400;
1164
    font-size: 16px;
1165
    padding-bottom: 5px;
1166
}
1167
 
1168
.modal-content .form-group .toggle-group label.toggle-off {
1169
    background-color: #808080;
1170
    border-color: #808080;
1171
}
1172
 
1173
.modal-content .form-group .toggle-group label.toggle-off:hover {
1174
    background-color: #808080;
1175
    border-color: #808080;
1176
}
1177
 
1178
.modal-content .select2-container--default .select2-selection--single {
1179
    height: 40px;
1180
    margin-bottom: 0;
1181
}
1182
 
1183
.modal-content .select2-container--default .select2-selection--single .select2-selection__rendered {
1184
    color: #444;
1185
    line-height: 34px;
1186
}
1187
 
1188
.modal-content .select2-container--default .select2-selection--single .select2-selection__arrow b {
1189
    margin-top: 4px;
1190
}
1191
 
1192
.modal-content .select2-container--bootstrap4 .select2-selection--multiple {
1193
    height: auto;
1194
    margin-bottom: 0;
1195
}
1196
 
1197
.modal-content .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered {
1198
    color: #444;
1199
    line-height: 28px;
1200
    float: left;
1201
}
1202
 
1203
.modal-content .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__arrow b {
1204
    margin-top: 4px;
1205
}
1206
 
1207
.modal-content .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
1208
    border: 0 !important;
1209
}
1210
 
1211
.modal-content .select2-container--bootstrap4.select2-container--focus .select2-selection {
1212
    border: 1px solid #e5e5e5;
1213
    -webkit-box-shadow: none;
1214
    -moz-box-shadow: none;
1215
    box-shadow: none;
1216
}
1217
 
1218
.modal-content .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove {
1219
    color: #000;
1220
    padding-left: 8px;
1221
    padding-right: 8px;
1222
    font-weight: inherit;
1223
    border: 1px solid #000;
1224
    margin-right: 5px;
1225
}
1226
 
1227
.modal-content .select2-container .select2-search--inline .select2-search__field {
1228
    margin-left: 0px;
1229
}
1230
 
1231
/** Autocomplete de google */
1232
.pac-container {
1233
    z-index: 1051 !important;
1234
}
1235
 
1236
.custom-file-label:after {
1237
    content: none;
1238
}
1239
 
1240
.add-pic-box a {
1241
    background: #fff;
1242
    border: 2px solid #0961bf;
1243
    border-radius: 3px;
1244
    color: #0961bf;
1245
    cursor: pointer;
1246
    display: inline-block;
1247
    font-size: 15px;
1248
    font-weight: 600;
1249
    outline: none;
1250
    padding: 12px 20px;
1251
    position: relative;
1252
    transition: all 0.3s;
1253
    vertical-align: middle;
1254
    margin: 0;
1255
    float: right;
1256
    text-transform: uppercase;
1257
}
1258
 
1259
#skills-box ul {
1260
    height: auto;
1261
}
1262
 
1263
/* .btn-info, .btn-add, .btn-edit, .btn-delete {color: #e5e5e5; background-color: #A4A4A4; border: 1px solid #A4A4A4; } .btn-info:hover, .btn-add:hover, .btn-edit:hover, .btn-delete:hover {background-color: #808080; border: 1px solid #808080; }*/
1264
.select2-container .select2-search--inline .select2-search__field {
1265
    margin-left: 0px;
1266
}
1267
 
1268
.custom-control-input:checked ~ .custom-control-label::before {
1269
    color: #fff;
1270
    border-color: #007bff;
1271
    background-color: #007bff;
1272
    box-shadow: none;
1273
    outline: none;
1274
}
1275
 
1276
#user-img-change {
1277
    width: 150px;
1278
    height: 150px;
1279
    margin-right: 10px;
1280
    -webkit-border-radius: 100px;
1281
    -moz-border-radius: 100px;
1282
    -ms-border-radius: 100px;
1283
    -o-border-radius: 100px;
1284
    border-radius: 100px;
3589 stevensc 1285
    background-color: #fff;
3508 stevensc 1286
}
1287
 
1288
.btn-onroom {
1289
    cursor: pointer;
1290
}
1291
 
1292
.form-group .toggle-btn .custom-control-label {
1293
    position: relative;
1294
    padding-left: 50px;
1295
}
1296
 
1297
.file-upload-indicator {
1298
    display: none;
1299
}
1300
 
1301
b,
1302
strong {
1303
    font-weight: bolder !important;
1304
}
1305
 
1306
a.read-more {
1307
    color: #666666;
1308
    font-weight: bold;
1309
}
1310
 
1311
a.read-morea:visited {
1312
    color: #666666;
1313
    font-weight: bold;
1314
}
1315
 
1316
.show-read-more p {
1317
    text-align: justify;
1318
    font-weight: 600;
3551 stevensc 1319
    color: $subtitle-color;
3987 stevensc 1320
    .more-text {
1321
        display: none;
1322
    }
3508 stevensc 1323
}
1324
 
1325
.btn-trans:hover {
1326
    color: #929292 !important;
1327
}
1328
 
1329
.like-com li a:hover {
1330
    color: #007bff;
1331
}
1332
 
1333
.job-status-bar > a:hover {
1334
    color: #1e5591 !important;
1335
}
1336
 
1337
.job-status-bar > ul > li > a:hover {
1338
    color: #1e5591;
1339
}
1340
 
1341
.modal-content .job_descp img,
1342
.modal-content .job_descp video {
1343
    object-fit: contain;
1344
    height: auto;
1345
    max-height: 600px;
1346
}
1347
 
1348
.comment-section {
1349
    box-shadow: none;
1350
}
1351
 
1352
.process-comm {
1353
    padding-top: 10px;
1354
    padding-bottom: 20px;
1355
}
1356
 
1357
ul.avail-checks-search-type li.active {
1358
    background-color: #666666;
1359
}
1360
 
1361
nav ul li a {
1362
    color: #000000;
1363
}
1364
 
1365
.usy-name h4 {
1366
    color: #000000;
1367
    font-size: 16px;
1368
    text-transform: capitalize;
1369
    font-weight: 600;
1370
    margin-bottom: 5px;
1371
    margin-top: 2px;
1372
}
1373
 
1374
.message-btn a.btn-request-connection {
1375
    background-color: #53d690;
1376
}
1377
 
1378
.message-btn a.btn-cancel-connection {
1379
    background-color: #e44d3a;
1380
}
1381
 
1382
.message-btn a.btn-send-message {
1383
    background-color: #51a5fb;
1384
}
1385
 
1386
.bootbox-confirm .btn-danger {
1387
    color: #000000;
1388
}
1389
 
1390
.title-bar {
1391
    float: left;
1392
    width: 280px;
1393
    margin-top: 12px;
1394
    margin-bottom: 9px;
1395
    vertical-align: middle;
1396
}
1397
 
1398
.title-bar .title {
1399
    color: #ffffff;
1400
    font-size: 20px;
1401
    text-transform: capitalize;
1402
    font-weight: 600;
1403
}
1404
 
1405
/*New Style*/
1406
.online-btn {
1407
    border-radius: 50px;
1408
    width: 20px;
1409
    height: 20px;
1410
}
1411
 
1412
/***********************************new style jm*********************************/
1413
.forum-links ul li.active a {
1414
    color: #1dac98;
1415
}
1416
 
1417
.forum-links ul li.active {
1418
    border-color: #1dac98;
1419
}
1420
 
1421
.ask-question {
1422
    color: #0961bf !important;
1423
}
1424
 
1425
.suggestion-usd > span i:hover {
1426
    background-color: #f4e6a6;
1427
}
1428
 
1429
.bk-links li i {
1430
    background-color: #0961bf;
1431
}
1432
 
1433
.view-more > .btn {
1434
    background-color: #0961bf;
1435
}
1436
 
1437
/* #shared_with {background-color: #0961bf; } #shared_with :hover {color: blank; background-color: #007bff; } */
1438
.bid_now {
1439
    background-color: #0961bf;
1440
}
1441
 
1442
.follow {
1443
    background-color: #1eb89e;
1444
}
1445
 
1446
.footy-sec.mn ul li a {
1447
    color: #01245d;
1448
    font-size: 0.9rem;
1449
}
1450
 
1451
.footy-sec.mn ul li a:hover {
1452
    color: #01245d;
1453
    font-weight: bold;
1454
    transition: all 0.5s;
1455
}
1456
 
1457
.footy-sec.mn p {
1458
    color: #01245d;
1459
}
1460
 
1461
.star-descp ul li i {
1462
    color: #cacf8c;
1463
}
1464
 
1465
.hre {
1466
    background-color: #0961bf;
1467
}
1468
 
1469
.hire-us {
1470
    background-color: #0961bf;
1471
}
1472
 
1473
.company-up-info {
1474
    background-color: #ffff;
1475
}
1476
 
1477
body {
1478
    /* background-color: #ffff; */
1479
    background-color: #f5f5f7;
1480
}
1481
 
1482
.tags-sec {
1483
    background-color: #ffff;
1484
}
1485
 
1486
.comment_box input {
1487
    background-color: #efefef;
1488
}
1489
 
1490
.post_with_border {
1491
    border-left: 4px solid #1eb89e;
1492
}
1493
 
1494
.post-topbar {
3509 stevensc 1495
    background-color: $bg-color;
3508 stevensc 1496
}
1497
 
1498
.user-fw-status {
1499
    background-color: transparent;
1500
    margin-bottom: 1rem;
1501
}
1502
 
1503
.sign_link {
1504
    background-color: #ffff;
1505
}
1506
 
1507
.search-title {
1508
    padding-left: 2%;
1509
    font-size: 1.2rem;
1510
}
1511
 
1512
.portfolio-gallery-sec {
1513
    background-color: #f5f5f7;
1514
}
1515
 
1516
.paddy {
1517
    background-color: transparent;
1518
}
1519
 
1520
.filter-heading {
1521
    background-color: transparent;
1522
}
1523
 
1524
.filter-dd form input,
1525
.filter-dd form select {
1526
    background-color: #fff;
1527
}
1528
 
1529
.user-profile {
1530
    /* background-color: #f4e6a6; */
1531
    border-radius: 5px 0 0 5px;
1532
}
1533
 
1534
.feed-comment-container {
1535
    margin-top: 1rem;
1536
}
1537
 
1538
.comment_box input {
1539
    background-color: #fff;
1540
    margin-top: 1rem;
1541
}
1542
 
1543
.pagination li .page-link {
1544
    color: #0961bf;
1545
}
1546
 
1547
.comment-section {
1548
    background-color: #f5f5f7;
1549
}
1550
 
1551
nav ul ul {
1552
    background-color: #1eb89e;
1553
}
1554
 
1555
nav ul li a {
1556
    color: $font-color;
1557
    transition: 0.2s linear;
1558
    font-size: 1rem;
1559
}
1560
 
1561
nav ul li a:hover {
1562
    color: $font-color;
1563
}
1564
 
1565
.like-com li a:hover {
1566
    color: #1eb89e;
1567
}
1568
 
1569
.company_profile_info {
1570
    border-radius: 5px;
1571
}
1572
 
1573
.full-width {
1574
    border-radius: 5px;
1575
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 5%);
1576
}
1577
 
1578
.tab-feed.st2 ul li :hover {
1579
    border-bottom: 3px solid #f4e6a6;
1580
}
1581
 
1582
.user-info a {
1583
    color: #18516f;
1584
}
1585
 
1586
/* .user-info img {width: 30px; height: 30px; } */
1587
.modal-footer button {
1588
    /* color: #fff; */
1589
    background-color: #0961bf;
1590
    border: none;
1591
}
1592
 
1593
.border-none {
1594
    border: none !important;
1595
}
1596
 
1597
.auth-footy-sec {
1598
    background-color: initial;
1599
}
1600
 
1601
.auth-footy-sec ul li a {
1602
    font-size: 1rem;
1603
}
1604
 
1605
.btn.focus,
1606
.btn:focus {
1607
    outline: 0;
1608
    box-shadow: none;
1609
}
1610
 
1611
.auth-footy-sec p {
1612
    font-size: 1rem;
1613
}
1614
 
1615
.modal-content input {
1616
    border-radius: 5px;
1617
}
1618
 
1619
.modal-content select {
1620
    border-radius: 5px;
1621
}
1622
 
1623
/* .modal-header {background-color: #f2f2f2; padding: 0px; border-bottom: 0px; } */
1624
 
1625
.save-stngs ul li button {
1626
    background: #0961bf;
1627
    color: #fff !important;
1628
}
1629
 
1630
.usr-pic > img {
1631
    width: 80%;
1632
}
1633
 
1634
.user-specs {
1635
    padding: 39px 0 10px 0;
1636
}
1637
 
1638
.username-dt {
1639
    padding-top: 10px;
1640
    border-radius: 5px 5px 0 0;
1641
}
1642
 
1643
.sign_link {
1644
    /* border-top: 1px solid #6c757d; */
1645
}
1646
 
1647
.job-status-bar {
1648
    /* background-image: linear-gradient(#f5f5f7, #ffff); */
1649
    display: flex;
1650
    justify-content: space-between;
1651
    align-items: center;
1652
    /* border-radius: 10px; */
1653
}
1654
 
1655
.comment_box form button {
1656
    width: 20%;
1657
    margin-top: 1rem;
1658
}
1659
 
1660
.comment_box input {
1661
    width: 371px;
1662
    border-radius: 5px;
1663
    color: black;
1664
    font-weight: 400;
1665
}
1666
 
1667
.like-com li a {
1668
    color: #0961bf;
1669
}
1670
 
1671
.like-com li a:hover {
1672
    color: #1e5591 !important;
1673
}
1674
 
1675
.message-bar-head {
1676
    display: flex;
1677
    height: 13vh;
1678
    justify-content: space-between;
1679
    padding: 20px;
1680
    width: 100%;
1681
}
1682
 
1683
.form-control:disabled,
1684
.form-control[readonly] {
1685
    background-color: #ffff;
1686
}
1687
 
1688
.user-info {
1689
    /* padding: 10px 38px 2px 40px; */
1690
    height: 45px;
1691
    width: 45px;
1692
    margin-left: 1rem;
1693
}
1694
 
1695
/* .user-info > i {right: 25px; } */
1696
.file-caption.icon-visible .file-caption-name {
1697
    padding-bottom: 15px;
1698
}
1699
 
1700
/**notificaciones**/
1701
.notification {
1702
    color: white;
1703
    text-decoration: none;
1704
    padding: 0px 10px;
1705
    position: relative;
1706
    display: inline-block;
1707
    border-radius: 2px;
1708
    /* top: 10px; */
1709
    font-size: 16px;
1710
}
1711
 
1712
.mail_menu > .notification {
1713
    margin-bottom: 0.25rem;
1714
}
1715
 
1716
.notification:hover {
1717
    color: #ecec0e;
1718
}
1719
 
1720
.notification .badge {
1721
    position: absolute;
1722
    top: -10px;
1723
    right: 2px;
1724
    padding: 3px 6px;
1725
    border-radius: 50%;
1726
    background-color: red;
1727
    color: white;
1728
}
1729
 
1730
.text-submenu {
1731
    color: #0961bf;
1732
}
1733
 
1734
.text-submenu:hover {
1735
    font-weight: bold;
1736
    color: #0961bf;
1737
    transition: all 0.5s;
1738
}
1739
 
1740
header a:hover {
1741
    font-weight: bold;
1742
    color: #0961bf;
1743
    transition: all 0.5s;
1744
}
1745
 
1746
header .btn:hover {
1747
    color: #0961bf;
1748
    font-weight: bold;
1749
    transition: all 0.5s;
1750
}
1751
 
1752
.my-company-dropdown.show {
1753
    display: block;
1754
}
1755
 
1756
/**estilos altos de las columnas* .right-sidebar {margin-top: -7px; }*/
1757
 
1758
.message-btn {
1759
    /*display: inline-flex;*/
1760
    display: inherit;
1761
    flex-direction: column;
1762
}
1763
 
1764
.rc-anchor-checkbox-label {
1765
    font-size: 10px !important;
1766
}
1767
 
1768
.rc-anchor-normal .rc-anchor-content {
1769
    width: 165px !important;
1770
}
1771
 
1772
.rc-anchor-normal .rc-anchor-pt {
1773
    text-align: center;
1774
}
1775
 
1776
.rc-anchor-normal {
1777
    zoom: 87%;
1778
}
1779
 
1780
.comment {
1781
    padding-right: 10px;
1782
}
1783
 
1784
.slick-slider {
1785
    display: grid !important;
1786
    grid-template-rows: 2rem auto;
1787
}
1788
 
1789
@media (min-width: 768px) {
1790
    .slick-slider {
1791
        display: flex !important;
1792
        align-items: center;
1793
    }
1794
}
1795
 
1796
.microlearning-up-info {
1797
    width: 100%;
3572 stevensc 1798
    background-color: $bg-color;
3508 stevensc 1799
    display: flex;
1800
    flex-direction: column;
1801
    gap: 5px;
1802
    text-align: start;
1803
}
1804
 
1805
.microlearning-up-info img {
1806
    float: none;
1807
    object-fit: cover;
1808
}
1809
 
1810
.microlearning-up-info h3 {
3572 stevensc 1811
    color: $title-color;
3508 stevensc 1812
    font-size: 18px;
1813
    font-weight: 600;
1814
    margin-bottom: 10px;
1815
}
1816
 
1817
.microlearning-up-info h4 {
3572 stevensc 1818
    color: $subtitle-color;
3508 stevensc 1819
    font-size: 14px;
1820
    font-weight: 500;
1821
    margin-bottom: 21px;
1822
}
1823
 
1824
.microlearning-up-info ul {
1825
    width: 100%;
1826
}
1827
 
1828
.microlearning-up-info ul li {
1829
    display: flex;
1830
}
1831
 
1832
.microlearning-up-info ul li a {
1833
    display: inline-block;
1834
    padding: 0 12px;
3572 stevensc 1835
    color: $font-color;
3508 stevensc 1836
    height: 35px;
1837
    line-height: 35px;
1838
}
1839
 
1840
.microlearning-up-info ul li a i {
1841
    font-size: 24px;
1842
    position: relative;
1843
    top: 3px;
1844
}
1845
 
1846
/**** INICIO breadcrumb ***/
1847
ul.breadcrumb {
1848
    padding: 10px 16px;
1849
    list-style: none;
1850
    background-color: #f5f5f7;
1851
}
1852
 
1853
ul.breadcrumb li {
1854
    display: inline;
1855
    font-size: 14px;
1856
}
1857
 
1858
ul.breadcrumb li + li:before {
1859
    padding: 8px;
1860
    color: black;
1861
    content: ">\00a0";
1862
}
1863
 
1864
ul.breadcrumb li a {
1865
    color: #0275d8;
1866
    text-decoration: none;
1867
}
1868
 
1869
ul.breadcrumb li a:hover {
1870
    color: #01447e;
1871
    text-decoration: underline;
1872
}
1873
 
1874
/**** FIN breadcrumb ***/
1875
 
1876
.user-fw-status li {
1877
    padding: 2px 0;
1878
}
1879
 
1880
form > input {
1881
    border-radius: 5px;
1882
}
1883
 
1884
.feed-avatar {
1885
    width: 50px;
1886
    height: auto;
1887
}
1888
 
1889
.cursor-pointer {
1890
    cursor: pointer;
1891
}
1892
 
1893
.chat-conversation {
1894
    background-image: none;
1895
}
1896
 
1897
.view-more-pro {
1898
    display: inline-block;
1899
    color: #000000;
1900
    font-size: 16px;
1901
    font-weight: 500;
1902
    padding: 18px 0;
1903
}
1904
 
1905
#cke-description .cke_path_item,
1906
#cke_2_path {
1907
    display: none !important;
1908
}