Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3867 | Rev 3870 | 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
    float: left;
1067
    width: 100%;
3550 stevensc 1068
    background-color: $bg-color;
3508 stevensc 1069
    padding: 30px;
1070
    margin-bottom: 20px;
3641 stevensc 1071
    h3 {
1072
        color: $title-color;
1073
        font-size: 18px;
1074
        font-weight: 600;
1075
    }
1076
    i {
1077
        color: $font-color;
1078
        font-size: 13px;
1079
        padding-left: 5px;
1080
    }
3508 stevensc 1081
}
1082
 
1083
.social_links li a {
1084
    line-height: 18px;
1085
}
1086
 
1087
.overview-edit form .select2-container--default .select2-selection--single {
1088
    height: 40px;
1089
    margin-bottom: 25px;
1090
}
1091
 
1092
.overview-edit form .select2-container--default .select2-selection--single .select2-selection__rendered {
1093
    color: #444;
1094
    line-height: 34px;
1095
}
1096
 
1097
.overview-edit form .select2-container--default .select2-selection--single .select2-selection__arrow b {
1098
    margin-top: 4px;
1099
}
1100
 
1101
.overview-edit form textarea,
1102
.overview-edit form input,
1103
.overview-edit form select {
1104
    color: #444;
1105
}
1106
 
1107
.datepicky {
1108
    float: none;
1109
}
1110
 
1111
.datefm {
1112
    float: none;
1113
}
1114
 
1115
.modal-dialog {
1116
    /* width: 100%; background-color: #fff; padding: 15px 10px; */
1117
}
1118
 
1119
/* .modal-header {background-color: #fff; padding: 0px; border-bottom: 0px; } */
1120
.modal-title h3 {
1121
    color: #000000;
1122
    font-size: 18px;
1123
    font-weight: 600;
1124
    width: 100%;
1125
    margin-bottom: 25px;
1126
}
1127
 
1128
.modal-content {
1129
    border: 0px;
1130
    padding: 1rem;
1131
}
1132
 
1133
.modal-content textarea,
1134
.modal-content input,
1135
.modal-content select {
1136
    width: 100% !important;
1137
    resize: none;
1138
    border: 1px solid #aaa;
1139
    color: #444 !important;
1140
    font-size: 14px;
1141
}
1142
 
1143
.modal-content input {
1144
    height: 40px;
1145
    padding-left: 15px;
1146
    margin-bottom: 0;
1147
}
1148
 
1149
.modal-content select {
1150
    height: 40px;
1151
    padding-left: 15px;
1152
    margin-bottom: 0;
1153
    background-color: #fff;
1154
}
1155
 
1156
span.group-span-filestyle {
1157
    border: 1px solid #aaa;
1158
    color: #fff;
1159
    background-color: #0961bf;
1160
    margin-top: 10px;
1161
}
1162
 
1163
span.group-span-filestyle:hover {
1164
    color: #fff;
1165
    background-color: #0961bf;
1166
}
1167
 
1168
.modal-content .form-group .toggle-group label {
1169
    color: #fff !important;
1170
    font-weight: 400;
1171
    font-size: 16px;
1172
    padding-bottom: 5px;
1173
}
1174
 
1175
.modal-content .form-group .toggle-group label.toggle-off {
1176
    background-color: #808080;
1177
    border-color: #808080;
1178
}
1179
 
1180
.modal-content .form-group .toggle-group label.toggle-off:hover {
1181
    background-color: #808080;
1182
    border-color: #808080;
1183
}
1184
 
1185
.modal-content .select2-container--default .select2-selection--single {
1186
    height: 40px;
1187
    margin-bottom: 0;
1188
}
1189
 
1190
.modal-content .select2-container--default .select2-selection--single .select2-selection__rendered {
1191
    color: #444;
1192
    line-height: 34px;
1193
}
1194
 
1195
.modal-content .select2-container--default .select2-selection--single .select2-selection__arrow b {
1196
    margin-top: 4px;
1197
}
1198
 
1199
.modal-content .select2-container--bootstrap4 .select2-selection--multiple {
1200
    height: auto;
1201
    margin-bottom: 0;
1202
}
1203
 
1204
.modal-content .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered {
1205
    color: #444;
1206
    line-height: 28px;
1207
    float: left;
1208
}
1209
 
1210
.modal-content .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__arrow b {
1211
    margin-top: 4px;
1212
}
1213
 
1214
.modal-content .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
1215
    border: 0 !important;
1216
}
1217
 
1218
.modal-content .select2-container--bootstrap4.select2-container--focus .select2-selection {
1219
    border: 1px solid #e5e5e5;
1220
    -webkit-box-shadow: none;
1221
    -moz-box-shadow: none;
1222
    box-shadow: none;
1223
}
1224
 
1225
.modal-content .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove {
1226
    color: #000;
1227
    padding-left: 8px;
1228
    padding-right: 8px;
1229
    font-weight: inherit;
1230
    border: 1px solid #000;
1231
    margin-right: 5px;
1232
}
1233
 
1234
.modal-content .select2-container .select2-search--inline .select2-search__field {
1235
    margin-left: 0px;
1236
}
1237
 
1238
/** Autocomplete de google */
1239
.pac-container {
1240
    z-index: 1051 !important;
1241
}
1242
 
1243
.custom-file-label:after {
1244
    content: none;
1245
}
1246
 
1247
.add-pic-box a {
1248
    background: #fff;
1249
    border: 2px solid #0961bf;
1250
    border-radius: 3px;
1251
    color: #0961bf;
1252
    cursor: pointer;
1253
    display: inline-block;
1254
    font-size: 15px;
1255
    font-weight: 600;
1256
    outline: none;
1257
    padding: 12px 20px;
1258
    position: relative;
1259
    transition: all 0.3s;
1260
    vertical-align: middle;
1261
    margin: 0;
1262
    float: right;
1263
    text-transform: uppercase;
1264
}
1265
 
1266
#skills-box ul {
1267
    height: auto;
1268
}
1269
 
1270
/* .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; }*/
1271
.select2-container .select2-search--inline .select2-search__field {
1272
    margin-left: 0px;
1273
}
1274
 
1275
.custom-control-input:checked ~ .custom-control-label::before {
1276
    color: #fff;
1277
    border-color: #007bff;
1278
    background-color: #007bff;
1279
    box-shadow: none;
1280
    outline: none;
1281
}
1282
 
1283
#user-img-change {
1284
    width: 150px;
1285
    height: 150px;
1286
    margin-right: 10px;
1287
    -webkit-border-radius: 100px;
1288
    -moz-border-radius: 100px;
1289
    -ms-border-radius: 100px;
1290
    -o-border-radius: 100px;
1291
    border-radius: 100px;
3589 stevensc 1292
    background-color: #fff;
3508 stevensc 1293
}
1294
 
1295
.btn-onroom {
1296
    cursor: pointer;
1297
}
1298
 
1299
.form-group .toggle-btn .custom-control-label {
1300
    position: relative;
1301
    padding-left: 50px;
1302
}
1303
 
1304
.file-upload-indicator {
1305
    display: none;
1306
}
1307
 
1308
b,
1309
strong {
1310
    font-weight: bolder !important;
1311
}
1312
 
1313
a.read-more {
1314
    color: #666666;
1315
    font-weight: bold;
1316
}
1317
 
1318
a.read-morea:visited {
1319
    color: #666666;
1320
    font-weight: bold;
1321
}
1322
 
1323
.show-read-more .more-text {
1324
    display: none;
1325
}
1326
 
1327
.show-read-more {
3511 stevensc 1328
    color: $font-color;
3508 stevensc 1329
    font-size: 15px;
1330
    margin-bottom: 1.2rem;
1331
    text-align: justify;
1332
}
1333
 
1334
.show-read-more p {
1335
    font-size: 15px;
1336
    text-align: justify;
1337
    font-weight: 600;
3551 stevensc 1338
    color: $subtitle-color;
3508 stevensc 1339
}
1340
 
1341
.btn-trans:hover {
1342
    color: #929292 !important;
1343
}
1344
 
1345
.like-com li a:hover {
1346
    color: #007bff;
1347
}
1348
 
1349
.job-status-bar > a:hover {
1350
    color: #1e5591 !important;
1351
}
1352
 
1353
.job-status-bar > ul > li > a:hover {
1354
    color: #1e5591;
1355
}
1356
 
1357
/* btn-indicator*/
1358
.job_descp video,
1359
.job_descp img {
1360
    width: 100%;
1361
    height: 400px;
1362
    border-radius: 10px;
1363
    object-fit: cover;
3511 stevensc 1364
    background-color: #fff;
3508 stevensc 1365
}
1366
 
1367
.modal-content .job_descp img,
1368
.modal-content .job_descp video {
1369
    object-fit: contain;
1370
    height: auto;
1371
    max-height: 600px;
1372
}
1373
 
1374
.comment-section {
1375
    box-shadow: none;
1376
}
1377
 
1378
.process-comm {
1379
    padding-top: 10px;
1380
    padding-bottom: 20px;
1381
}
1382
 
1383
ul.avail-checks-search-type li.active {
1384
    background-color: #666666;
1385
}
1386
 
1387
nav ul li a {
1388
    color: #000000;
1389
}
1390
 
1391
.usy-name h4 {
1392
    color: #000000;
1393
    font-size: 16px;
1394
    text-transform: capitalize;
1395
    font-weight: 600;
1396
    margin-bottom: 5px;
1397
    margin-top: 2px;
1398
}
1399
 
1400
.message-btn a.btn-request-connection {
1401
    background-color: #53d690;
1402
}
1403
 
1404
.message-btn a.btn-cancel-connection {
1405
    background-color: #e44d3a;
1406
}
1407
 
1408
.message-btn a.btn-send-message {
1409
    background-color: #51a5fb;
1410
}
1411
 
1412
.bootbox-confirm .btn-danger {
1413
    color: #000000;
1414
}
1415
 
1416
.title-bar {
1417
    float: left;
1418
    width: 280px;
1419
    margin-top: 12px;
1420
    margin-bottom: 9px;
1421
    vertical-align: middle;
1422
}
1423
 
1424
.title-bar .title {
1425
    color: #ffffff;
1426
    font-size: 20px;
1427
    text-transform: capitalize;
1428
    font-weight: 600;
1429
}
1430
 
1431
/*New Style*/
1432
.online-btn {
1433
    border-radius: 50px;
1434
    width: 20px;
1435
    height: 20px;
1436
}
1437
 
1438
/***********************************new style jm*********************************/
1439
.forum-links ul li.active a {
1440
    color: #1dac98;
1441
}
1442
 
1443
.forum-links ul li.active {
1444
    border-color: #1dac98;
1445
}
1446
 
1447
.ask-question {
1448
    color: #0961bf !important;
1449
}
1450
 
1451
.suggestion-usd > span i:hover {
1452
    background-color: #f4e6a6;
1453
}
1454
 
1455
.bk-links li i {
1456
    background-color: #0961bf;
1457
}
1458
 
1459
.view-more > .btn {
1460
    background-color: #0961bf;
1461
}
1462
 
1463
/* #shared_with {background-color: #0961bf; } #shared_with :hover {color: blank; background-color: #007bff; } */
1464
.bid_now {
1465
    background-color: #0961bf;
1466
}
1467
 
1468
.follow {
1469
    background-color: #1eb89e;
1470
}
1471
 
1472
.footy-sec.mn ul li a {
1473
    color: #01245d;
1474
    font-size: 0.9rem;
1475
}
1476
 
1477
.footy-sec.mn ul li a:hover {
1478
    color: #01245d;
1479
    font-weight: bold;
1480
    transition: all 0.5s;
1481
}
1482
 
1483
.footy-sec.mn p {
1484
    color: #01245d;
1485
}
1486
 
1487
.star-descp ul li i {
1488
    color: #cacf8c;
1489
}
1490
 
1491
.hre {
1492
    background-color: #0961bf;
1493
}
1494
 
1495
.hire-us {
1496
    background-color: #0961bf;
1497
}
1498
 
1499
.company-up-info {
1500
    background-color: #ffff;
1501
}
1502
 
1503
body {
1504
    /* background-color: #ffff; */
1505
    background-color: #f5f5f7;
1506
}
1507
 
1508
.suggestions-list {
1509
    background-color: transparent;
1510
}
1511
 
1512
.tags-sec {
1513
    background-color: #ffff;
1514
}
1515
 
1516
.comment_box input {
1517
    background-color: #efefef;
1518
}
1519
 
1520
.post-bar {
1521
    /* background-color:#dee2e6; */
1522
    background-color: #ffff;
1523
}
1524
 
1525
.post_with_border {
1526
    border-left: 4px solid #1eb89e;
1527
}
1528
 
1529
.post-topbar {
3509 stevensc 1530
    background-color: $bg-color;
3508 stevensc 1531
}
1532
 
1533
.user-fw-status {
1534
    background-color: transparent;
1535
    margin-bottom: 1rem;
1536
}
1537
 
1538
.sd-title {
1539
    background-color: transparent;
1540
    /* border-top: 1px solid #e5e5e5; */
1541
    padding: 10px 5px 20px;
1542
}
1543
 
1544
.sign_link {
1545
    background-color: #ffff;
1546
}
1547
 
1548
.widget {
3566 stevensc 1549
    background-color: $bg-color !important;
3508 stevensc 1550
}
1551
 
1552
.search-title {
1553
    padding-left: 2%;
1554
    font-size: 1.2rem;
1555
}
1556
 
1557
.portfolio-gallery-sec {
1558
    background-color: #f5f5f7;
1559
}
1560
 
1561
.paddy {
1562
    background-color: transparent;
1563
}
1564
 
1565
.filter-heading {
1566
    background-color: transparent;
1567
}
1568
 
1569
.filter-dd form input,
1570
.filter-dd form select {
1571
    background-color: #fff;
1572
}
1573
 
1574
.user-profile {
1575
    /* background-color: #f4e6a6; */
1576
    border-radius: 5px 0 0 5px;
1577
}
1578
 
1579
.feed-comment-container {
1580
    margin-top: 1rem;
1581
}
1582
 
1583
.comment_box input {
1584
    background-color: #fff;
1585
    margin-top: 1rem;
1586
}
1587
 
1588
.pagination li .page-link {
1589
    color: #0961bf;
1590
}
1591
 
1592
.comment-section {
1593
    background-color: #f5f5f7;
1594
}
1595
 
1596
nav ul ul {
1597
    background-color: #1eb89e;
1598
}
1599
 
1600
nav ul li a {
1601
    color: $font-color;
1602
    transition: 0.2s linear;
1603
    font-size: 1rem;
1604
}
1605
 
1606
nav ul li a:hover {
1607
    color: $font-color;
1608
}
1609
 
1610
.like-com li a:hover {
1611
    color: #1eb89e;
1612
}
1613
 
1614
.company_profile_info {
1615
    border-radius: 5px;
1616
}
1617
 
1618
.full-width {
1619
    border-radius: 5px;
1620
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 5%);
1621
}
1622
 
1623
.tab-feed.st2 ul li :hover {
1624
    border-bottom: 3px solid #f4e6a6;
1625
}
1626
 
1627
.user-info a {
1628
    color: #18516f;
1629
}
1630
 
1631
/* .user-info img {width: 30px; height: 30px; } */
1632
.modal-footer button {
1633
    /* color: #fff; */
1634
    background-color: #0961bf;
1635
    border: none;
1636
}
1637
 
1638
.border-none {
1639
    border: none !important;
1640
}
1641
 
1642
.auth-footy-sec {
1643
    background-color: initial;
1644
}
1645
 
1646
.auth-footy-sec ul li a {
1647
    font-size: 1rem;
1648
}
1649
 
1650
.btn.focus,
1651
.btn:focus {
1652
    outline: 0;
1653
    box-shadow: none;
1654
}
1655
 
1656
.auth-footy-sec p {
1657
    font-size: 1rem;
1658
}
1659
 
1660
.modal-content input {
1661
    border-radius: 5px;
1662
}
1663
 
1664
.modal-content select {
1665
    border-radius: 5px;
1666
}
1667
 
1668
/* .modal-header {background-color: #f2f2f2; padding: 0px; border-bottom: 0px; } */
1669
 
1670
.save-stngs ul li button {
1671
    background: #0961bf;
1672
    color: #fff !important;
1673
}
1674
 
1675
.usr-pic > img {
1676
    width: 80%;
1677
}
1678
 
1679
.user-specs {
1680
    padding: 39px 0 10px 0;
1681
}
1682
 
1683
.username-dt {
1684
    padding-top: 10px;
1685
    border-radius: 5px 5px 0 0;
1686
}
1687
 
1688
.sign_link {
1689
    /* border-top: 1px solid #6c757d; */
1690
}
1691
 
1692
.job-status-bar {
1693
    /* background-image: linear-gradient(#f5f5f7, #ffff); */
1694
    display: flex;
1695
    justify-content: space-between;
1696
    align-items: center;
1697
    /* border-radius: 10px; */
1698
}
1699
 
1700
.comment_box form button {
1701
    width: 20%;
1702
    margin-top: 1rem;
1703
}
1704
 
1705
.comment_box input {
1706
    width: 371px;
1707
    border-radius: 5px;
1708
    color: black;
1709
    font-weight: 400;
1710
}
1711
 
1712
.like-com li a {
1713
    color: #0961bf;
1714
}
1715
 
1716
.like-com li a:hover {
1717
    color: #1e5591 !important;
1718
}
1719
 
1720
.message-bar-head {
1721
    display: flex;
1722
    height: 13vh;
1723
    justify-content: space-between;
1724
    padding: 20px;
1725
    width: 100%;
1726
}
1727
 
1728
.form-control:disabled,
1729
.form-control[readonly] {
1730
    background-color: #ffff;
1731
}
1732
 
1733
.user-info {
1734
    /* padding: 10px 38px 2px 40px; */
1735
    height: 45px;
1736
    width: 45px;
1737
    margin-left: 1rem;
1738
}
1739
 
1740
/* .user-info > i {right: 25px; } */
1741
.file-caption.icon-visible .file-caption-name {
1742
    padding-bottom: 15px;
1743
}
1744
 
1745
/**notificaciones**/
1746
.notification {
1747
    color: white;
1748
    text-decoration: none;
1749
    padding: 0px 10px;
1750
    position: relative;
1751
    display: inline-block;
1752
    border-radius: 2px;
1753
    /* top: 10px; */
1754
    font-size: 16px;
1755
}
1756
 
1757
.mail_menu > .notification {
1758
    margin-bottom: 0.25rem;
1759
}
1760
 
1761
.notification:hover {
1762
    color: #ecec0e;
1763
}
1764
 
1765
.notification .badge {
1766
    position: absolute;
1767
    top: -10px;
1768
    right: 2px;
1769
    padding: 3px 6px;
1770
    border-radius: 50%;
1771
    background-color: red;
1772
    color: white;
1773
}
1774
 
1775
.text-submenu {
1776
    color: #0961bf;
1777
}
1778
 
1779
.text-submenu:hover {
1780
    font-weight: bold;
1781
    color: #0961bf;
1782
    transition: all 0.5s;
1783
}
1784
 
1785
header a:hover {
1786
    font-weight: bold;
1787
    color: #0961bf;
1788
    transition: all 0.5s;
1789
}
1790
 
1791
header .btn:hover {
1792
    color: #0961bf;
1793
    font-weight: bold;
1794
    transition: all 0.5s;
1795
}
1796
 
1797
.my-company-dropdown.show {
1798
    display: block;
1799
}
1800
 
1801
.main-ws-sec {
1802
    /* background-color: #ffff; */
1803
}
1804
 
1805
/**estilos altos de las columnas* .right-sidebar {margin-top: -7px; }*/
1806
.main-left-sidebar {
1807
    margin-top: 30px;
1808
}
1809
 
1810
.message-btn {
1811
    /*display: inline-flex;*/
1812
    display: inherit;
1813
    flex-direction: column;
1814
}
1815
 
1816
.rc-anchor-checkbox-label {
1817
    font-size: 10px !important;
1818
}
1819
 
1820
.rc-anchor-normal .rc-anchor-content {
1821
    width: 165px !important;
1822
}
1823
 
1824
.rc-anchor-normal .rc-anchor-pt {
1825
    text-align: center;
1826
}
1827
 
1828
.rc-anchor-normal {
1829
    zoom: 87%;
1830
}
1831
 
1832
.comment-list {
1833
    display: grid;
1834
}
1835
 
1836
.comment {
1837
    padding-right: 10px;
1838
}
1839
 
1840
.slick-slider {
1841
    display: grid !important;
1842
    grid-template-rows: 2rem auto;
1843
}
1844
 
1845
@media (min-width: 768px) {
1846
    .slick-slider {
1847
        display: flex !important;
1848
        align-items: center;
1849
    }
1850
}
1851
 
1852
.microlearning-up-info {
1853
    width: 100%;
3572 stevensc 1854
    background-color: $bg-color;
3508 stevensc 1855
    display: flex;
1856
    flex-direction: column;
1857
    gap: 5px;
1858
    text-align: start;
1859
}
1860
 
1861
.microlearning-up-info img {
1862
    float: none;
1863
    object-fit: cover;
1864
}
1865
 
1866
.microlearning-up-info h3 {
3572 stevensc 1867
    color: $title-color;
3508 stevensc 1868
    font-size: 18px;
1869
    font-weight: 600;
1870
    margin-bottom: 10px;
1871
}
1872
 
1873
.microlearning-up-info h4 {
3572 stevensc 1874
    color: $subtitle-color;
3508 stevensc 1875
    font-size: 14px;
1876
    font-weight: 500;
1877
    margin-bottom: 21px;
1878
}
1879
 
1880
.microlearning-up-info ul {
1881
    width: 100%;
1882
}
1883
 
1884
.microlearning-up-info ul li {
1885
    display: flex;
1886
}
1887
 
1888
.microlearning-up-info ul li a {
1889
    display: inline-block;
1890
    padding: 0 12px;
3572 stevensc 1891
    color: $font-color;
3508 stevensc 1892
    height: 35px;
1893
    line-height: 35px;
1894
}
1895
 
1896
.microlearning-up-info ul li a i {
1897
    font-size: 24px;
1898
    position: relative;
1899
    top: 3px;
1900
}
1901
 
1902
/**** INICIO breadcrumb ***/
1903
ul.breadcrumb {
1904
    padding: 10px 16px;
1905
    list-style: none;
1906
    background-color: #f5f5f7;
1907
}
1908
 
1909
ul.breadcrumb li {
1910
    display: inline;
1911
    font-size: 14px;
1912
}
1913
 
1914
ul.breadcrumb li + li:before {
1915
    padding: 8px;
1916
    color: black;
1917
    content: ">\00a0";
1918
}
1919
 
1920
ul.breadcrumb li a {
1921
    color: #0275d8;
1922
    text-decoration: none;
1923
}
1924
 
1925
ul.breadcrumb li a:hover {
1926
    color: #01447e;
1927
    text-decoration: underline;
1928
}
1929
 
1930
/**** FIN breadcrumb ***/
1931
.job_descp > p {
1932
    background-color: white;
1933
    /* border-radius: 5px; */
1934
}
1935
 
1936
.user-fw-status li {
1937
    padding: 2px 0;
1938
}
1939
 
1940
form > input {
1941
    border-radius: 5px;
1942
}
1943
 
1944
.feed-avatar {
1945
    width: 50px;
1946
    height: auto;
1947
}
1948
 
1949
.cursor-pointer {
1950
    cursor: pointer;
1951
}
1952
 
1953
.chat-conversation {
1954
    background-image: none;
1955
}
1956
 
1957
.view-more-pro {
1958
    display: inline-block;
1959
    color: #000000;
1960
    font-size: 16px;
1961
    font-weight: 500;
1962
    padding: 18px 0;
1963
}
1964
 
1965
#cke-description .cke_path_item,
1966
#cke_2_path {
1967
    display: none !important;
1968
}