Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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