Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3950 | Rev 3966 | 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;
3867 stevensc 780
    gap: .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 .more-text {
1317
    display: none;
1318
}
1319
 
1320
.show-read-more {
3511 stevensc 1321
    color: $font-color;
3508 stevensc 1322
    font-size: 15px;
1323
    margin-bottom: 1.2rem;
1324
    text-align: justify;
1325
}
1326
 
1327
.show-read-more p {
1328
    font-size: 15px;
1329
    text-align: justify;
1330
    font-weight: 600;
3551 stevensc 1331
    color: $subtitle-color;
3508 stevensc 1332
}
1333
 
1334
.btn-trans:hover {
1335
    color: #929292 !important;
1336
}
1337
 
1338
.like-com li a:hover {
1339
    color: #007bff;
1340
}
1341
 
1342
.job-status-bar > a:hover {
1343
    color: #1e5591 !important;
1344
}
1345
 
1346
.job-status-bar > ul > li > a:hover {
1347
    color: #1e5591;
1348
}
1349
 
1350
.modal-content .job_descp img,
1351
.modal-content .job_descp video {
1352
    object-fit: contain;
1353
    height: auto;
1354
    max-height: 600px;
1355
}
1356
 
1357
.comment-section {
1358
    box-shadow: none;
1359
}
1360
 
1361
.process-comm {
1362
    padding-top: 10px;
1363
    padding-bottom: 20px;
1364
}
1365
 
1366
ul.avail-checks-search-type li.active {
1367
    background-color: #666666;
1368
}
1369
 
1370
nav ul li a {
1371
    color: #000000;
1372
}
1373
 
1374
.usy-name h4 {
1375
    color: #000000;
1376
    font-size: 16px;
1377
    text-transform: capitalize;
1378
    font-weight: 600;
1379
    margin-bottom: 5px;
1380
    margin-top: 2px;
1381
}
1382
 
1383
.message-btn a.btn-request-connection {
1384
    background-color: #53d690;
1385
}
1386
 
1387
.message-btn a.btn-cancel-connection {
1388
    background-color: #e44d3a;
1389
}
1390
 
1391
.message-btn a.btn-send-message {
1392
    background-color: #51a5fb;
1393
}
1394
 
1395
.bootbox-confirm .btn-danger {
1396
    color: #000000;
1397
}
1398
 
1399
.title-bar {
1400
    float: left;
1401
    width: 280px;
1402
    margin-top: 12px;
1403
    margin-bottom: 9px;
1404
    vertical-align: middle;
1405
}
1406
 
1407
.title-bar .title {
1408
    color: #ffffff;
1409
    font-size: 20px;
1410
    text-transform: capitalize;
1411
    font-weight: 600;
1412
}
1413
 
1414
/*New Style*/
1415
.online-btn {
1416
    border-radius: 50px;
1417
    width: 20px;
1418
    height: 20px;
1419
}
1420
 
1421
/***********************************new style jm*********************************/
1422
.forum-links ul li.active a {
1423
    color: #1dac98;
1424
}
1425
 
1426
.forum-links ul li.active {
1427
    border-color: #1dac98;
1428
}
1429
 
1430
.ask-question {
1431
    color: #0961bf !important;
1432
}
1433
 
1434
.suggestion-usd > span i:hover {
1435
    background-color: #f4e6a6;
1436
}
1437
 
1438
.bk-links li i {
1439
    background-color: #0961bf;
1440
}
1441
 
1442
.view-more > .btn {
1443
    background-color: #0961bf;
1444
}
1445
 
1446
/* #shared_with {background-color: #0961bf; } #shared_with :hover {color: blank; background-color: #007bff; } */
1447
.bid_now {
1448
    background-color: #0961bf;
1449
}
1450
 
1451
.follow {
1452
    background-color: #1eb89e;
1453
}
1454
 
1455
.footy-sec.mn ul li a {
1456
    color: #01245d;
1457
    font-size: 0.9rem;
1458
}
1459
 
1460
.footy-sec.mn ul li a:hover {
1461
    color: #01245d;
1462
    font-weight: bold;
1463
    transition: all 0.5s;
1464
}
1465
 
1466
.footy-sec.mn p {
1467
    color: #01245d;
1468
}
1469
 
1470
.star-descp ul li i {
1471
    color: #cacf8c;
1472
}
1473
 
1474
.hre {
1475
    background-color: #0961bf;
1476
}
1477
 
1478
.hire-us {
1479
    background-color: #0961bf;
1480
}
1481
 
1482
.company-up-info {
1483
    background-color: #ffff;
1484
}
1485
 
1486
body {
1487
    /* background-color: #ffff; */
1488
    background-color: #f5f5f7;
1489
}
1490
 
1491
.tags-sec {
1492
    background-color: #ffff;
1493
}
1494
 
1495
.comment_box input {
1496
    background-color: #efefef;
1497
}
1498
 
1499
.post-bar {
1500
    /* background-color:#dee2e6; */
1501
    background-color: #ffff;
1502
}
1503
 
1504
.post_with_border {
1505
    border-left: 4px solid #1eb89e;
1506
}
1507
 
1508
.post-topbar {
3509 stevensc 1509
    background-color: $bg-color;
3508 stevensc 1510
}
1511
 
1512
.user-fw-status {
1513
    background-color: transparent;
1514
    margin-bottom: 1rem;
1515
}
1516
 
1517
.sign_link {
1518
    background-color: #ffff;
1519
}
1520
 
1521
.widget {
3566 stevensc 1522
    background-color: $bg-color !important;
3508 stevensc 1523
}
1524
 
1525
.search-title {
1526
    padding-left: 2%;
1527
    font-size: 1.2rem;
1528
}
1529
 
1530
.portfolio-gallery-sec {
1531
    background-color: #f5f5f7;
1532
}
1533
 
1534
.paddy {
1535
    background-color: transparent;
1536
}
1537
 
1538
.filter-heading {
1539
    background-color: transparent;
1540
}
1541
 
1542
.filter-dd form input,
1543
.filter-dd form select {
1544
    background-color: #fff;
1545
}
1546
 
1547
.user-profile {
1548
    /* background-color: #f4e6a6; */
1549
    border-radius: 5px 0 0 5px;
1550
}
1551
 
1552
.feed-comment-container {
1553
    margin-top: 1rem;
1554
}
1555
 
1556
.comment_box input {
1557
    background-color: #fff;
1558
    margin-top: 1rem;
1559
}
1560
 
1561
.pagination li .page-link {
1562
    color: #0961bf;
1563
}
1564
 
1565
.comment-section {
1566
    background-color: #f5f5f7;
1567
}
1568
 
1569
nav ul ul {
1570
    background-color: #1eb89e;
1571
}
1572
 
1573
nav ul li a {
1574
    color: $font-color;
1575
    transition: 0.2s linear;
1576
    font-size: 1rem;
1577
}
1578
 
1579
nav ul li a:hover {
1580
    color: $font-color;
1581
}
1582
 
1583
.like-com li a:hover {
1584
    color: #1eb89e;
1585
}
1586
 
1587
.company_profile_info {
1588
    border-radius: 5px;
1589
}
1590
 
1591
.full-width {
1592
    border-radius: 5px;
1593
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 5%);
1594
}
1595
 
1596
.tab-feed.st2 ul li :hover {
1597
    border-bottom: 3px solid #f4e6a6;
1598
}
1599
 
1600
.user-info a {
1601
    color: #18516f;
1602
}
1603
 
1604
/* .user-info img {width: 30px; height: 30px; } */
1605
.modal-footer button {
1606
    /* color: #fff; */
1607
    background-color: #0961bf;
1608
    border: none;
1609
}
1610
 
1611
.border-none {
1612
    border: none !important;
1613
}
1614
 
1615
.auth-footy-sec {
1616
    background-color: initial;
1617
}
1618
 
1619
.auth-footy-sec ul li a {
1620
    font-size: 1rem;
1621
}
1622
 
1623
.btn.focus,
1624
.btn:focus {
1625
    outline: 0;
1626
    box-shadow: none;
1627
}
1628
 
1629
.auth-footy-sec p {
1630
    font-size: 1rem;
1631
}
1632
 
1633
.modal-content input {
1634
    border-radius: 5px;
1635
}
1636
 
1637
.modal-content select {
1638
    border-radius: 5px;
1639
}
1640
 
1641
/* .modal-header {background-color: #f2f2f2; padding: 0px; border-bottom: 0px; } */
1642
 
1643
.save-stngs ul li button {
1644
    background: #0961bf;
1645
    color: #fff !important;
1646
}
1647
 
1648
.usr-pic > img {
1649
    width: 80%;
1650
}
1651
 
1652
.user-specs {
1653
    padding: 39px 0 10px 0;
1654
}
1655
 
1656
.username-dt {
1657
    padding-top: 10px;
1658
    border-radius: 5px 5px 0 0;
1659
}
1660
 
1661
.sign_link {
1662
    /* border-top: 1px solid #6c757d; */
1663
}
1664
 
1665
.job-status-bar {
1666
    /* background-image: linear-gradient(#f5f5f7, #ffff); */
1667
    display: flex;
1668
    justify-content: space-between;
1669
    align-items: center;
1670
    /* border-radius: 10px; */
1671
}
1672
 
1673
.comment_box form button {
1674
    width: 20%;
1675
    margin-top: 1rem;
1676
}
1677
 
1678
.comment_box input {
1679
    width: 371px;
1680
    border-radius: 5px;
1681
    color: black;
1682
    font-weight: 400;
1683
}
1684
 
1685
.like-com li a {
1686
    color: #0961bf;
1687
}
1688
 
1689
.like-com li a:hover {
1690
    color: #1e5591 !important;
1691
}
1692
 
1693
.message-bar-head {
1694
    display: flex;
1695
    height: 13vh;
1696
    justify-content: space-between;
1697
    padding: 20px;
1698
    width: 100%;
1699
}
1700
 
1701
.form-control:disabled,
1702
.form-control[readonly] {
1703
    background-color: #ffff;
1704
}
1705
 
1706
.user-info {
1707
    /* padding: 10px 38px 2px 40px; */
1708
    height: 45px;
1709
    width: 45px;
1710
    margin-left: 1rem;
1711
}
1712
 
1713
/* .user-info > i {right: 25px; } */
1714
.file-caption.icon-visible .file-caption-name {
1715
    padding-bottom: 15px;
1716
}
1717
 
1718
/**notificaciones**/
1719
.notification {
1720
    color: white;
1721
    text-decoration: none;
1722
    padding: 0px 10px;
1723
    position: relative;
1724
    display: inline-block;
1725
    border-radius: 2px;
1726
    /* top: 10px; */
1727
    font-size: 16px;
1728
}
1729
 
1730
.mail_menu > .notification {
1731
    margin-bottom: 0.25rem;
1732
}
1733
 
1734
.notification:hover {
1735
    color: #ecec0e;
1736
}
1737
 
1738
.notification .badge {
1739
    position: absolute;
1740
    top: -10px;
1741
    right: 2px;
1742
    padding: 3px 6px;
1743
    border-radius: 50%;
1744
    background-color: red;
1745
    color: white;
1746
}
1747
 
1748
.text-submenu {
1749
    color: #0961bf;
1750
}
1751
 
1752
.text-submenu:hover {
1753
    font-weight: bold;
1754
    color: #0961bf;
1755
    transition: all 0.5s;
1756
}
1757
 
1758
header a:hover {
1759
    font-weight: bold;
1760
    color: #0961bf;
1761
    transition: all 0.5s;
1762
}
1763
 
1764
header .btn:hover {
1765
    color: #0961bf;
1766
    font-weight: bold;
1767
    transition: all 0.5s;
1768
}
1769
 
1770
.my-company-dropdown.show {
1771
    display: block;
1772
}
1773
 
1774
/**estilos altos de las columnas* .right-sidebar {margin-top: -7px; }*/
1775
 
1776
.message-btn {
1777
    /*display: inline-flex;*/
1778
    display: inherit;
1779
    flex-direction: column;
1780
}
1781
 
1782
.rc-anchor-checkbox-label {
1783
    font-size: 10px !important;
1784
}
1785
 
1786
.rc-anchor-normal .rc-anchor-content {
1787
    width: 165px !important;
1788
}
1789
 
1790
.rc-anchor-normal .rc-anchor-pt {
1791
    text-align: center;
1792
}
1793
 
1794
.rc-anchor-normal {
1795
    zoom: 87%;
1796
}
1797
 
1798
.comment {
1799
    padding-right: 10px;
1800
}
1801
 
1802
.slick-slider {
1803
    display: grid !important;
1804
    grid-template-rows: 2rem auto;
1805
}
1806
 
1807
@media (min-width: 768px) {
1808
    .slick-slider {
1809
        display: flex !important;
1810
        align-items: center;
1811
    }
1812
}
1813
 
1814
.microlearning-up-info {
1815
    width: 100%;
3572 stevensc 1816
    background-color: $bg-color;
3508 stevensc 1817
    display: flex;
1818
    flex-direction: column;
1819
    gap: 5px;
1820
    text-align: start;
1821
}
1822
 
1823
.microlearning-up-info img {
1824
    float: none;
1825
    object-fit: cover;
1826
}
1827
 
1828
.microlearning-up-info h3 {
3572 stevensc 1829
    color: $title-color;
3508 stevensc 1830
    font-size: 18px;
1831
    font-weight: 600;
1832
    margin-bottom: 10px;
1833
}
1834
 
1835
.microlearning-up-info h4 {
3572 stevensc 1836
    color: $subtitle-color;
3508 stevensc 1837
    font-size: 14px;
1838
    font-weight: 500;
1839
    margin-bottom: 21px;
1840
}
1841
 
1842
.microlearning-up-info ul {
1843
    width: 100%;
1844
}
1845
 
1846
.microlearning-up-info ul li {
1847
    display: flex;
1848
}
1849
 
1850
.microlearning-up-info ul li a {
1851
    display: inline-block;
1852
    padding: 0 12px;
3572 stevensc 1853
    color: $font-color;
3508 stevensc 1854
    height: 35px;
1855
    line-height: 35px;
1856
}
1857
 
1858
.microlearning-up-info ul li a i {
1859
    font-size: 24px;
1860
    position: relative;
1861
    top: 3px;
1862
}
1863
 
1864
/**** INICIO breadcrumb ***/
1865
ul.breadcrumb {
1866
    padding: 10px 16px;
1867
    list-style: none;
1868
    background-color: #f5f5f7;
1869
}
1870
 
1871
ul.breadcrumb li {
1872
    display: inline;
1873
    font-size: 14px;
1874
}
1875
 
1876
ul.breadcrumb li + li:before {
1877
    padding: 8px;
1878
    color: black;
1879
    content: ">\00a0";
1880
}
1881
 
1882
ul.breadcrumb li a {
1883
    color: #0275d8;
1884
    text-decoration: none;
1885
}
1886
 
1887
ul.breadcrumb li a:hover {
1888
    color: #01447e;
1889
    text-decoration: underline;
1890
}
1891
 
1892
/**** FIN breadcrumb ***/
1893
 
1894
.user-fw-status li {
1895
    padding: 2px 0;
1896
}
1897
 
1898
form > input {
1899
    border-radius: 5px;
1900
}
1901
 
1902
.feed-avatar {
1903
    width: 50px;
1904
    height: auto;
1905
}
1906
 
1907
.cursor-pointer {
1908
    cursor: pointer;
1909
}
1910
 
1911
.chat-conversation {
1912
    background-image: none;
1913
}
1914
 
1915
.view-more-pro {
1916
    display: inline-block;
1917
    color: #000000;
1918
    font-size: 16px;
1919
    font-weight: 500;
1920
    padding: 18px 0;
1921
}
1922
 
1923
#cke-description .cke_path_item,
1924
#cke_2_path {
1925
    display: none !important;
1926
}