Project

General

Profile

1
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap');
2

    
3
:root {
4
  --primary-color: #EC4386;
5
  /*fixme I need a pinkish color*/
6
  /*--primary-color-background: #eff6e6;*/
7
  --primary-color-background: #F6D6E5;
8
  --secondary-color: #CA4D9A;
9

    
10
  --link-color: #EC4386;
11
  --link-hover-color: #CA4D9A;
12

    
13
  /*--publication-color: #F17AA9;*/
14
  /*--publication-background-color: #f8d5e3;*/
15
  --publication-color: #381565;
16
  --publication-background-color-dark: #9b67e0;
17
  --publication-background-color-light: #e9ddf8;
18
  --publication-color-gradient-start: #6b4898;
19

    
20
  /*--dataset-color: #A98BD4;*/
21
  /*--dataset-background-color: #e2daf0;*/
22
  --dataset-color: #0044a2;
23
  --dataset-background-color-dark: #4794ff;
24
  --dataset-background-color-light: #d6e7ff;
25
  --dataset-color-gradient-start: #3377d5;
26

    
27
  /*--software-color: #C2155A;*/
28
  /*--software-background-color: #F2D0DE;*/
29
  --software-color: #009DE0;
30
  --software-background-color-dark: #5cceff;
31
  --software-background-color-light: #d6f3ff;
32
  --software-color-gradient-start: #4deaff;
33

    
34
  /*--other-color: #00CCCC;*/
35
  /*--other-background-color: #CCF4F4;*/
36
  --other-color: #00B086;
37
  --other-background-color-dark: #5cffd9;
38
  --other-background-color-light: #d6fff5;
39
  --other-color-gradient-start: #4dfdd3;
40

    
41
  /*--repository-color: #708AA5;*/
42
  /*--repository-background-color: #ADD3E0;*/
43
  --repository-color: #007997;
44
  --repository-background-color-dark: #00a3cc;
45
  --repository-background-color-light: #d6f7ff;
46

    
47
  /*--journal-color: #FFCE4E;*/
48
  /*--journal-background-color: #FBE8B1;*/
49
  --journal-color: #00554E;
50
  --journal-background-color-dark: #008f83;
51
  --journal-background-color-light: #d6fffc;
52

    
53
  --policies-color: #639C66;
54
  --policies-background-color: #D4ECD6;
55

    
56
  --muted-color: #4d4d4d;
57
}
58

    
59
html {
60
  color: #292929;
61
}
62

    
63
body {
64
  font: 400 14px/19px 'Open Sans';
65
}
66

    
67
h1, h2, h3, h4, h5, h6 {
68
  font-family: 'Open Sans', sans-serif;
69
}
70

    
71
h3 {
72
  font-weight: 600;
73
  font-size: 24px;
74
}
75

    
76
.uk-h6, h6 {
77
  font-size: 18px;
78
  font-weight: 400;
79
}
80

    
81
.uk-flex-space-between {
82
  justify-content: space-between;
83
}
84

    
85
.uk-container-large {
86
  max-width: 1600px;
87
}
88

    
89
.uk-container-expand {
90
  max-width: none;
91
}
92

    
93
.uk-container-center {
94
  margin-left: auto;
95
  margin-right: auto;
96
}
97

    
98
.uk-navbar-nav > li > a, .uk-navbar-nav > li.uk-active > a {
99
  font-size: 14px;
100
  font-weight: bold;
101
  letter-spacing: 0px;
102
  color: #000;
103
}
104

    
105
.large-beta-indication {
106
  height: 83px;
107
  position: fixed;
108
  top: 0;
109
  left: 0;
110
  z-index: 10000;
111
}
112

    
113
.medium-beta-indication-nonFixed {
114
  height: 65px;
115
  position: absolute;
116
  top: 0;
117
  left: 0;
118
  z-index: 10000;
119
}
120

    
121
.medium-beta-indication-fixed {
122
  height: 65px;
123
  position: fixed;
124
  top: 0;
125
  left: 0;
126
  z-index: 10000;
127
}
128

    
129
.uk-text-muted {
130
  color: var(--muted-color) !important;
131
}
132

    
133
/*#sect-overview, #sect-tabs {*/
134
  /*padding: 20px 0;*/
135
/*}*/
136

    
137
.greySection {
138
  /*background-color: #F0F0F0;*/
139
  background-color: #F9FBFC;
140
}
141

    
142
a {
143
  color: var(--link-color);
144
}
145

    
146
a:hover, a:focus, a:active {
147
  color: var(--link-hover-color);
148
}
149

    
150
.mapContainer {
151
  /*background: #F7F7F7 0% 0% no-repeat padding-box;*/
152
  /*border: 1px solid #E0E0E0;*/
153
  /*opacity: 0.4;*/
154
  /*padding: 15px;*/
155
  position: relative;
156
  height: 100%;
157
}
158

    
159
.mapContainerEmbed {
160
  height: 100%;
161
}
162

    
163
.map {
164
  /*height: 398px;*/
165
  /*border: 1px solid #707070;*/
166
  /*margin: 15px;*/
167
  position: absolute;
168
  height: 88%;
169
  width: 100%;
170
}
171

    
172
.mapControls {
173
  /*position: absolute;*/
174
  bottom: 20px;
175
}
176

    
177
.uk-nav-label {
178
  width: 12px;
179
  height: 12px;
180
  display: inline-block;
181
  vertical-align: -1px;
182
  margin-right: 8px;
183
  border-radius: 50%;
184
}
185

    
186
.uk-nav-horizontal li {
187
  display: inline-block;
188
}
189

    
190
.uk-nav > li > a {
191
  padding: 5px 15px;
192
}
193

    
194
.uk-nav-side > li > a {
195
  color: #444;
196
}
197

    
198
.mapControls .text {
199
  opacity: 0.5;
200
}
201

    
202
.mapControls .text.active {
203
  opacity: 1;
204
}
205

    
206
.dark-blue-box {
207
  background: #002D60 0% 0% no-repeat padding-box;
208
  border: 1px solid #707070;
209
  border-radius: 2px;
210
  opacity: 1;
211
  color: #fff;
212
}
213

    
214
.dark-blue-box a, .dark-blue-box a:hover, .dark-blue-box a:focus {
215
  color: #fff;
216
}
217

    
218
.dark-grey-box {
219
  background: #2A2D34 0% 0% no-repeat padding-box;
220
  border: 1px solid #707070;
221
  border-radius: 2px;
222
  opacity: 1;
223
  color: #fff;
224
}
225

    
226
.dark-grey-box h3 {
227
  color: #fff;
228
}
229

    
230
.dark-grey-box a, .dark-grey-box a:hover, .dark-grey-box a:focus {
231
  color: #fff;
232
}
233

    
234
.openaire-symbol-wrapper {
235
  background-color: #fff;
236
  border-radius: 50%;
237
  padding: 12px 10px 17px 13px;
238
}
239

    
240

    
241
.infoBox {
242
  /*font-weight: 300;*/
243
  /*font-size: 15px;*/
244

    
245
  background: #FFFFFF 0% 0% no-repeat padding-box;
246
  box-shadow: 0px 2px 6px #00000038;
247
  border-radius: 3px;
248
  opacity: 1;
249
}
250

    
251
.infoBox h3 {
252
  font-weight: bold;
253
}
254

    
255
.infoBox ul {
256
  padding-left: 18px;
257
}
258

    
259
.infoBox ul li {
260
  margin-bottom: 20px;
261
  letter-spacing: 0px;
262
  line-height: 27px;
263
}
264

    
265
.dark-blue-box h3 {
266
  color: #fff;
267
}
268

    
269
a.backToOriginalInfoBox, a.backToOriginalInfoBox:hover, a.backToOriginalInfoBox:focus  {
270
  color: #fff;
271
}
272

    
273
.greyBoldDivider {
274
  border: 1px solid #E0E0E0;
275
}
276

    
277
.numbers .number {
278
  font-size: 16px;
279
}
280

    
281
div.indicator {
282
  display: flex;
283
}
284

    
285
div.indicator span {
286
  padding-right: 10px;
287
}
288

    
289
.primary {
290
  color: var(--primary-color);
291
}
292

    
293
.publications {
294
  color: var(--publication-color);
295
}
296

    
297
.datasets {
298
  color: var(--dataset-color);
299
}
300

    
301
.software {
302
  color: var(--software-color);
303
}
304

    
305
.other {
306
  color: var(--other-color);
307
}
308

    
309
.repositories {
310
  color: var(--repository-color);
311
}
312

    
313
.journals {
314
  color: var(--journal-color);
315
}
316

    
317
.policies {
318
  color: var(--policies-color);
319
}
320

    
321
.indicatorCards {
322
  font-size: 13px;
323
}
324

    
325
.indicatorCards .md-card {
326
  box-shadow: 0px 2px 6px #00000038;
327
  border: 1px solid #E0E0E0;
328
  border-radius: 3px;
329
}
330

    
331
.searchForCountry.uk-search.uk-search-default {
332
  width: 100%;
333
  background: #FFFFFF 0% 0% no-repeat padding-box;
334
  border: 1px solid #C7C7C7;
335
  border-radius: 4px;
336
}
337

    
338
.searchForCountry.uk-search .uk-search-icon {
339
  color: #4687f4;
340
  z-index: 10;
341
}
342

    
343
.autocomplete-container .input-container input {
344
  padding: 0 15px 0 40px !important;
345
}
346

    
347
/********* Mock chart for country **********/
348
.epc_chart {
349
  display: block;
350
  position: relative;
351
}
352

    
353
.epc_chart_text {
354
  position: absolute;
355
  top: 0;
356
  left: 0;
357
  right: 0;
358
  bottom: 0;
359
  text-align: center;
360
  font: 400 20px/110px Roboto,sans-serif;
361
}
362

    
363
/********************************************/
364

    
365
/*.md-btn-primary {*/
366
  /*background: #1F73F7 0% 0% no-repeat padding-box;*/
367
  /*box-shadow: 0px 3px 6px #00000029;*/
368
  /*border-radius: 26px;*/
369
  /*opacity: 1;*/
370
  /*text-align: left;*/
371
  /*font: 14px/19px Open Sans;*/
372
  /*font-weight: 400;*/
373
  /*letter-spacing: 0;*/
374
  /*color: #FFFFFF;*/
375
  /*text-transform: none;*/
376
  /*!*padding: 10px 30px;*!*/
377
/*}*/
378

    
379
.md-btn {
380
  border-radius: 23px;
381
  padding: 7px 25px;
382
  font: 500 14px / 31px 'Open Sans', sans-serif !important;
383
}
384

    
385
.md-btn-primary {
386
  background: var(--primary-color) 0% 0% no-repeat padding-box;
387
  box-shadow: 0px 3px 6px #00000029;
388
  border-radius: 23px;
389
  opacity: 1;
390
  text-align: left;
391
  font: 14px/19px Open Sans;
392
  font-weight: 400;
393
  letter-spacing: 0;
394
  color: #FFFFFF;
395
  text-transform: none;
396
  /*padding: 10px 30px;*/
397
}
398

    
399
.md-btn-primary:hover, .md-btn-primary:focus, .md-btn-primary:active {
400
  background: var(--secondary-color) 0% 0% no-repeat padding-box;
401
}
402

    
403
.md-btn-secondary {
404
  background: var(--secondary-color) 0% 0% no-repeat padding-box;
405
  box-shadow: 0px 2px 6px #00000038;
406
  border-radius: 23px;
407
  opacity: 1;
408
  opacity: 1;
409
  text-align: left;
410
  font: 14px/19px Open Sans;
411
  font-weight: 400;
412
  letter-spacing: 0;
413
  color: #FFFFFF;
414
  text-transform: none;
415
  /*padding: 7px 30px;*/
416
}
417

    
418
.number {
419
  font-weight: bold;
420
}
421

    
422
#sect-tabs .uk-tab > li > a {
423
  text-transform: none;
424
}
425

    
426
.uk-tab > li.uk-active > a {
427
  border-bottom-color: var(--primary-color);
428
}
429

    
430
.uk-tab > li > a:hover, .uk-tab > li > a:focus {
431
  background: none;
432
  color: #212121;
433
  border-bottom-color: var(--secondary-color);
434
}
435

    
436
.uk-tab::before {
437
  border-bottom: none;
438
}
439

    
440
.dataContainer {
441
  background: #F9fbfc 0% 0% no-repeat padding-box;
442
  border: 1px solid #E0E0E0;
443
}
444

    
445
.tabContent {
446
  padding: 30px 50px;
447
}
448

    
449
.uk-tab {
450
  display: flex;
451
}
452

    
453
.uk-tab > li.uk-active > a {
454
  font-weight: bold;
455
}
456
/*.uk-tab-center.uk-tab {*/
457

    
458
  /*position: relative;*/
459
  /*right: 50%;*/
460
  /*border: none;*/
461
  /*float: right;*/
462

    
463
/*}*/
464

    
465
.uk-subnav-pill > .uk-active > a {
466
  /*background: #1F73F7;*/
467
  background: var(--primary-color);
468
}
469

    
470
.dataView.uk-subnav-pill > * > * {
471
  width: 16px;
472
  height: 16px;
473
  padding: 8px;
474
  border-radius: 50%;
475
  border: 1px solid;
476
  display: inline-block;
477
}
478

    
479
.tabContent hr {
480
  margin: 30px 0;
481
}
482

    
483
.dataContent {
484
  background-color: #FFFFFF;
485
  border: 1px solid #E0E0E0;
486
  padding: 30px;
487
}
488

    
489
.goToDetailedViewLink {
490
  margin-top: -50px;
491
}
492

    
493
.actionButtons a, .actionButtonsCountryPage a {
494
  color: #000000;
495
}
496

    
497
.actionButtons a i, .actionButtonsCountryPage a i {
498
  color: var(--primary-color);
499
}
500

    
501
.md-card .md-card-toolbar {
502
  /*height: 48px;*/
503
}
504

    
505
.infoBox.md-card .md-card-toolbar {
506
  /*height: 48px;*/
507
  background: transparent linear-gradient(115deg, var(--primary-color) 0%, var(--secondary-color) 100%) 0% 0% no-repeat padding-box;
508
  border-radius: 3px 3px 0px 0px;
509
  opacity: 1;
510
  padding: 16px 25px 0;
511
  color: #292929;
512
}
513

    
514
.infoBox.md-card .md-card-toolbar h3 {
515
  color: #fff;
516
  font-size: 16px;
517
}
518

    
519
.md-card .md-card-toolbar .md-card-toolbar-actions {
520
  padding-top: 15px;
521
}
522

    
523
.md-card .md-card-content {
524
  padding: 20px;
525
}
526

    
527
/*.uk-table td {*/
528
  /*border-bottom: 1px solid #e0e0e0;*/
529
/*}*/
530

    
531
.uk-table th {
532
  text-transform: none;
533
}
534

    
535

    
536
a.publicationsSubnav {
537
  color: var(--publication-color) !important;
538
}
539

    
540
.uk-subnav-pill > .uk-active > a.publicationsSubnav {
541
  background: var(--publication-background-color-light);
542
}
543

    
544
a.datasetsSubnav {
545
  color: var(--dataset-color) !important;
546
}
547

    
548
.uk-subnav-pill > .uk-active > a.datasetsSubnav {
549
  background: var(--dataset-background-color-light);
550
}
551

    
552
a.softwareSubnav {
553
  color: var(--software-color) !important;
554
}
555

    
556
.uk-subnav-pill > .uk-active > a.softwareSubnav {
557
  background: var(--software-background-color-light);
558
}
559

    
560
a.otherSubnav {
561
  color: var(--other-color) !important;
562
}
563

    
564
.uk-subnav-pill > .uk-active > a.otherSubnav {
565
  background: var(--other-background-color-light);
566
}
567

    
568
/*a.publicationsSubnav, a.datasetsSubnav, a.softwareSubnav, a.otherSubnav {*/
569
  /*width: 16px;*/
570
  /*height: 16px;*/
571
  /*padding: 8px;*/
572
  /*!*border-radius: 50%;*!*/
573
  /*!*border: 1px solid;*!*/
574
  /*display: inline-block;*/
575
/*}*/
576

    
577
a.publicationsSubnav img, a.datasetsSubnav img, a.softwareSubnav img, a.otherSubnav img {
578
  vertical-align: baseline;
579
}
580

    
581

    
582
/**************** HEADER ****************/
583

    
584
/*.tm-header .uk-navbar-container {*/
585
  /*padding-top: 10px;*/
586
  /*padding-bottom: 15px;*/
587
/*}*/
588

    
589
.tm-header .uk-navbar-left {
590
  position: relative;
591
  z-index: 9999 !important;
592
}
593

    
594
.navbar .brand, .uk-logo {
595
  font-size: 24px;
596
  font-family: 'Open Sans';
597
  color: #666;
598
  text-decoration: none;
599
}
600

    
601
.tm-header .uk-logo {
602
  position: relative;
603
  z-index: 1000 !important;
604
  /*padding-left: 100px;*/
605
}
606

    
607
.uk-logo > img {
608
  max-height: 70px;
609
}
610

    
611
/********************************************/
612

    
613
/**************** FOOTER ****************/
614

    
615
.footerLink {
616
  color: #000;
617
  text-decoration: underline;
618
}
619

    
620
.footerImage {
621
  opacity: 0.8;
622
  float: left;
623
  margin-top: 7px;
624
}
625

    
626
/********************************************/
627

    
628

    
629
#sidebar_main {
630
  position: fixed;
631
  right: 0;
632
  top:0;
633
  bottom:0;
634
  overflow-x: hidden;
635
  overflow-y: auto;
636
  /*background-color: #222;*/
637
  /*width: 260px;*/
638
  width: 20%;
639
  z-index:1;
640
}
641

    
642
#left-col {
643
  position: fixed;
644
  left: 0;
645
  top:0;
646
  bottom:0;
647
  overflow-x: hidden;
648
  overflow-y: auto;
649
  background-color: #222;
650
  width: 260px;
651
  z-index:1;
652
}
653
.bar-wrap {
654
  padding: 2rem;
655
}
656
#right-col {
657
  margin-left: 260px;
658
}
659

    
660

    
661

    
662
/*#sc-sidebar-main {*/
663

    
664
  /*position: fixed;*/
665
  /*top: 48px;*/
666
  /*left: 0;*/
667
  /*bottom: 0;*/
668
  /*-webkit-box-sizing: border-box;*/
669
  /*box-sizing: border-box;*/
670
  /*width: 260px;*/
671
  /*z-index: 1300;*/
672
  /*border-right: 1px solid*/
673

    
674
  /*rgba(0,0,0,.08);*/
675

    
676
  /*background:*/
677

    
678
    /*#fff;*/
679
  /*display: -webkit-box;*/
680
  /*display: -ms-flexbox;*/
681
  /*display: flex;*/
682
  /*-webkit-box-orient: vertical;*/
683
  /*-webkit-box-direction: normal;*/
684
  /*-ms-flex-direction: column;*/
685
  /*flex-direction: column;*/
686

    
687
/*}*/
688

    
689
/*#sc-sidebar-main .uk-offcanvas-bar {*/
690

    
691
  /*padding: 0;*/
692

    
693
/*}*/
694

    
695
/*#sc-sidebar-main .uk-offcanvas-bar {*/
696

    
697
  /*top: 0;*/
698
  /*display: -webkit-box;*/
699
  /*display: -ms-flexbox;*/
700
  /*display: flex;*/
701
  /*-webkit-box-orient: vertical;*/
702
  /*-webkit-box-direction: normal;*/
703
  /*-ms-flex-direction: column;*/
704
  /*flex-direction: column;*/
705
  /*position: static;*/
706
  /*background: 0 0;*/
707
  /*-webkit-box-shadow: none;*/
708
  /*box-shadow: none;*/
709
  /*-webkit-transform: none;*/
710
  /*transform: none;*/
711
  /*overflow-x: hidden;*/
712
  /*overflow-y: visible;*/
713
  /*height: 100%;*/
714
  /*width: 260px;*/
715

    
716
/*}*/
717

    
718
/*#sc-page-wrapper {*/
719

    
720
  /*height: calc(100% - 48px);*/
721
  /*-webkit-box-flex: 1;*/
722
  /*-ms-flex: 1;*/
723
  /*flex: 1;*/
724

    
725
/*}*/
726

    
727
/*#sc-page-wrapper {*/
728

    
729
  /*padding-left: 260px;*/
730
  /*-webkit-transition: padding 140ms ease-out;*/
731
  /*transition: padding 140ms ease-out;*/
732

    
733
/*}*/
734

    
735

    
736

    
737

    
738
/********************************************/
739

    
740
/*.contentSectionContainer .md-card-content {*/
741
  /*max-height: 300px;*/
742
/*}*/
743

    
744
.contentSectionContainer .md-card-content img {
745
  height:  350px;
746
  width: 100%;
747
}
748

    
749
/*.contentSectionContainer .md-card-content {*/
750
  /*text-align: center;*/
751
/*}*/
752

    
753

    
754

    
755
.progress {
756
  height: 20px;
757
  /*margin-bottom: 20px;*/
758
  overflow: hidden;
759
  background-color: #f5f5f5;
760
  border-radius: 4px;
761
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
762
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
763
}
764

    
765
.progress {
766
  height: 12px;
767
  background-color: #e9ecee;
768
  background-image: none;
769
  box-shadow: none;
770
  filter: none;
771
}
772

    
773
.progress {
774
  /*margin-bottom: 10px;*/
775
}
776

    
777
.progress {
778
  /*margin-top: 3px;*/
779
  /*width: 85px;*/
780
  /*display: inline-block;*/
781
  width: 50%;
782
}
783

    
784
.progress-bar {
785

    
786
  float: left;
787
  width: 0;
788
  height: 100%;
789
  font-size: 12px;
790
  line-height: 20px;
791
  color: #fff;
792
  text-align: center;
793
  background-color: #337ab7;
794
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
795
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
796
  -webkit-transition: width .6s ease;
797
  -o-transition: width .6s ease;
798
  transition: width .6s ease;
799

    
800
}
801

    
802
.progress-bar {
803

    
804
  box-shadow: none;
805
  border-radius: 3px;
806
  background-color: #0090D9;
807
  background-image: none;
808
  -webkit-transition: all 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
809
  transition: all 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
810
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
811
  -webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
812
  -moz-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
813
  -ms-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
814
  -o-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
815
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
816
  float: left;
817
  filter: none;
818

    
819
}
820

    
821
.progress-bar-publications {
822
  /*background-color: #F6C4D8;*/
823
  background-color: var(--publication-background-color-dark);
824
  background-image: none;
825
}
826

    
827
.progress-bar-datasets {
828
  /*background-color: #D6CBEB;*/
829
  background-color: var(--dataset-background-color-dark);
830
  background-image: none;
831
}
832

    
833
.progress-bar-repositories {
834
  /*background-color: #ADD3E0;*/
835
  background-color: var(--repository-background-color-dark);
836
  background-image: none;
837
}
838

    
839
.progress-bar-journals {
840
  /*background-color: #FBE8B1;*/
841
  background-color: var(--journal-background-color-dark);
842
  background-image: none;
843
}
844

    
845

    
846
/*.progress-bar-software {*/
847
  /*background-color: #F88306;*/
848
  /*background-image: none;*/
849
/*}*/
850

    
851
/*.progress-bar-otherProducts {*/
852
  /*background-color: #987CD6;*/
853
  /*background-image: none;*/
854
/*}*/
855

    
856

    
857
/**************** BREADCRUMB ****************/
858

    
859
.uk-breadcrumb > :last-child > * {
860
  color: var(--primary-color);
861
}
862

    
863
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
864
  content: ">";
865
}
866

    
867
/********************************************/
868

    
869
.small-flag-image {
870
  border: 2px solid #eee;
871
  border-radius: 100px;
872
}
873

    
874
.flag-image {
875
  border: 10px solid #eee;
876
  border-radius: 100px;
877
}
878

    
879

    
880
.demo-chart {
881
  /*max-height: 600px;*/
882
  height: 65vh;
883
}
884

    
885
/********* LOADERS *********/
886

    
887
.loader {
888
  color: var(--primary-color);
889
  margin: 25% auto;
890
}
891

    
892
.whiteFilm {
893
  background: #ffffff;
894
  z-index: 105;
895
  width: 100%;
896
  height: 100%;
897
  opacity: 0.7;
898
  position: absolute;
899
  top: 0;
900
  left: 0;
901

    
902
  display: flex;
903
  align-items: center;
904
}
905

    
906
.transparentFilm {
907
  background: transparent;
908
  z-index: 105;
909
  width: 100%;
910
  height: 100%;
911
  opacity: 0.7;
912
  position: absolute;
913
  top: 0;
914
  left: 0;
915

    
916
  display: flex;
917
  align-items: center;
918
}
919
/**************************/
920

    
921
.lastUpdateInfo {
922
  opacity: 0.4;
923
  color: #000;
924
  letter-spacing: 0px;
925
}
926

    
927
.entitiesContainer {
928
  height: 300px;
929
  display: flex;
930
  align-items: flex-end;
931
}
932

    
933
.publicationsColumn {
934
  /*background-color: #f181ae;*/
935
  /*background-color: var(--publication-color);*/
936
  box-shadow: 3px 3px 6px #00000029;
937
  opacity: 1;
938
  z-index: 10;
939
  /*background: linear-gradient(132deg, rgba(56, 21, 101, 0.7) 0%, rgb(56, 21, 101) 100%);*/
940
  background: linear-gradient(132deg, var(--publication-color-gradient-start) 0%, var(--publication-color) 100%);
941
}
942

    
943
.publicationsDot {
944
  background-color: var(--publication-color);
945
  /*width: 50px;*/
946
  width: 35px;
947
  height: 33px;
948
  border-radius: 50%;
949
}
950

    
951
.datasetsColumn {
952
  /*background-color: var(--dataset-color);*/
953
  box-shadow: 3px 3px 6px #00000029;
954
  opacity: 1;
955
  z-index: 8;
956
  background: linear-gradient(132deg, var(--dataset-color-gradient-start) 0%, var(--dataset-color) 100%);
957
}
958

    
959
.datasetsDot {
960
  background-color: var(--dataset-color);
961
  /*width: 50px;*/
962
  width: 35px;
963
  height: 33px;
964
  border-radius: 50%;
965
}
966

    
967
.softwareColumn {
968
  /*background-color: var(--software-color);*/
969
  box-shadow: 3px 3px 6px #00000029;
970
  opacity: 1;
971
  z-index: 6;
972
  background: linear-gradient(132deg, var(--software-color-gradient-start) 0%, var(--software-color) 100%);
973
}
974

    
975
.softwareDot {
976
  background-color: var(--software-color);
977
  /*width: 50px;*/
978
  width: 35px;
979
  height: 33px;
980
  border-radius: 50%;
981
}
982

    
983
.otherColumn {
984
  /*background-color: var(--other-color);*/
985
  box-shadow: 3px 3px 6px #00000029;
986
  opacity: 1;
987
  z-index: 4;
988
  background: linear-gradient(132deg, var(--other-color-gradient-start) 0%, var(--other-color) 100%);
989
}
990

    
991
.otherDot {
992
  background-color: var(--other-color);
993
  /*width: 50px;*/
994
  width: 35px;
995
  height: 33px;
996
  border-radius: 50%;
997
}
998

    
999
.entityColumnContent {
1000
  color: #fff;
1001
  width: 100%;
1002
  height: 100%;
1003
  display: flex;
1004
  flex-direction: column;
1005
  justify-content: center;
1006
  text-align: center;
1007
}
1008

    
1009
hr.entitiesDivider {
1010
  border: 2px solid #B4B4B4;
1011
  margin-left: -90px;
1012
  margin-right: -50px;
1013
  margin-top: 0px;
1014
}
1015

    
1016
.entityLegendContent {
1017
  display: flex;
1018
  padding-right: 40px;
1019

    
1020
}
1021

    
1022

    
1023

    
1024

    
1025
.countryPageHeader {
1026
  display: flex;
1027
  justify-content: space-between;
1028
}
1029

    
1030

    
1031
.chartCard.md-card {
1032
  box-shadow: 1px 10px 12px #00000026;
1033
  border: 1px solid #E0E0E0;
1034
  border-radius: 5px;
1035
}
1036

    
1037

    
1038
/********* DONUT - CIRCLE ********/
1039

    
1040
.circular-chart {
1041
  display: block;
1042
  margin: 10px auto;
1043
  max-width: 80%;
1044
  /*max-height: 250px;*/
1045
  max-height: 110px;
1046
}
1047

    
1048
.circle-bg {
1049
  fill: none;
1050
  stroke: #eee;
1051
  stroke-width: 3.8;
1052
}
1053

    
1054
.circle {
1055
  fill: none;
1056
  /*stroke-width: 2.8;*/
1057
  stroke-width: 4.2;
1058
  stroke-linecap: round;
1059
  animation: progress 1s ease-out forwards;
1060
}
1061

    
1062
@keyframes progress {
1063
  0% {
1064
    stroke-dasharray: 0 100;
1065
  }
1066
}
1067

    
1068
.circular-chart.publications .circle {
1069
  stroke: var(--publication-color);
1070
}
1071

    
1072
.circular-chart.datasets .circle {
1073
  /*stroke: #BB9CE6;*/
1074
  stroke: var(--dataset-color);
1075
}
1076

    
1077
.circular-chart.software .circle {
1078
  stroke: var(--software-color);
1079
}
1080

    
1081
.circular-chart.other .circle {
1082
  stroke: var(--other-color);
1083
}
1084

    
1085
.percentage {
1086
  fill: #666;
1087
  font-family: sans-serif;
1088
  font-size: 0.5em;
1089
  text-anchor: middle;
1090
}
1091

    
1092
/*********************************/
1093

    
1094
/********* MAP ********/
1095

    
1096
.publicationMapControlLabel {
1097
  background-color: var(--publication-background-color-dark) !important;
1098
  border: 1px solid var(--publication-color);
1099
}
1100

    
1101
.datasetMapControlLabel {
1102
  background-color: var(--dataset-background-color-dark) !important;
1103
  border: 1px solid var(--dataset-color);
1104
}
1105

    
1106
.repositoryMapControlLabel {
1107
  background-color: var(--repository-background-color-dark) !important;
1108
  border: 1px solid var(--repository-color);
1109
}
1110

    
1111
.journalMapControlLabel {
1112
  background-color: var(--journal-background-color-dark) !important;
1113
  border: 1px solid var(--journal-color);
1114
}
1115

    
1116
/*********************************/
1117

    
1118
/********* MENU ********/
1119

    
1120
.uk-navbar-dropdown {
1121
  width: 280px;
1122
  padding: 25px 0px;
1123
}
1124

    
1125
.uk-navbar-dropdown-nav > li {
1126
  padding: 0px 25px;
1127
}
1128

    
1129
.uk-navbar-dropdown-nav > li > a, .uk-navbar-dropdown-nav > li > a:hover {
1130
  color: #212121;
1131
}
1132

    
1133
.uk-navbar-dropdown-nav > li:hover {
1134
  color: #212121;
1135
  background: var(--primary-color-background) 0% 0% no-repeat padding-box;
1136
  opacity: 1;
1137
}
1138

    
1139

    
1140
/*********************************/
1141

    
1142

    
1143
/**************** OFF-Canvas menu ****************/
1144

    
1145
.custom-offcanvas-close {
1146
  position: relative;
1147
  right: 0;
1148
  top: 0;
1149
}
1150

    
1151
.uk-offcanvas-bar-light {
1152
  text-transform: uppercase;
1153
}
1154

    
1155
.uk-offcanvas-bar-light {
1156
  position: absolute;
1157
  top: 0;
1158
  bottom: 0;
1159
  left: -270px;
1160
  box-sizing: border-box;
1161
  width: 270px;
1162
  padding: 20px 20px;
1163
  background: #fff;
1164
  overflow-y: auto;
1165
  -webkit-overflow-scrolling: touch;
1166
}
1167

    
1168
.uk-nav-sub a {
1169
  padding: 2px 15px;
1170
}
1171

    
1172
.uk-offcanvas-bar-light .uk-nav-default > li > a, .uk-offcanvas-bar-light .uk-nav-default .uk-nav-sub a {
1173
  color: #333;
1174
}
1175

    
1176
.uk-nav-default .uk-nav-sub a:hover {
1177
  color: var(--secondary-color);
1178
}
1179

    
1180
.uk-offcanvas-bar-light .uk-nav-default > li.uk-active > a, .uk-offcanvas-bar-light .uk-nav-default > li > a:hover,
1181
.uk-offcanvas-bar-light .uk-nav-default > li > a.uk-active, .uk-offcanvas-bar-light .uk-nav-default > li > a:focus,
1182
.uk-offcanvas-bar-light .uk-nav-default > li > a:active {
1183
  color: var(--secondary-color);
1184
}
1185

    
1186
.uk-offcanvas-bar-animation {
1187
  transition: left 0.3s ease-out;
1188
}
1189

    
1190
@media (min-width: 960px) {
1191
  .uk-offcanvas-bar-light {
1192
    left: -350px;
1193
    width: 350px;
1194
    padding: 40px 40px;
1195
  }
1196
}
1197

    
1198
.uk-offcanvas-flip .uk-offcanvas-bar-light {
1199
  left: auto;
1200
  right: -270px;
1201
}
1202

    
1203
.uk-offcanvas-flip .uk-offcanvas-bar-animation {
1204
  transition-property: right;
1205
}
1206

    
1207
.uk-offcanvas-flip .uk-open > .uk-offcanvas-bar-light {
1208
  left: auto;
1209
  right: 0;
1210
}
1211

    
1212
@media (min-width: 960px) {
1213
  .uk-offcanvas-flip .uk-offcanvas-bar-light {
1214
    right: -350px;
1215
  }
1216
}
1217

    
1218
.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar-light {
1219
  left: auto;
1220
  right: 0;
1221
}
1222

    
1223
.uk-offcanvas-reveal .uk-offcanvas-bar-light {
1224
  left: 0;
1225
}
1226

    
1227
.uk-open > .uk-offcanvas-bar-light {
1228
  left: 0;
1229
}
1230

    
1231
.uk-close::after {
1232
  opacity: 0 !important;
1233
  color: #fff;
1234
  content: '';
1235
  font-family: "Material Icons";
1236
}
1237

    
1238
/********************************************/
1239

    
1240

    
1241
/********* METHODOLOGY ********/
1242

    
1243
/********* Terminology ********/
1244

    
1245
.terminologySection table {
1246
  font-size: 14px;
1247
  background-color: #FFFFFF;
1248
  width:100%;
1249
  table-layout: fixed;
1250
  overflow-wrap: break-word;
1251
}
1252

    
1253
.terminologySection table th {
1254
  width: 20%;
1255
}
1256

    
1257
.terminologySection table th, .terminologySection table td {
1258
  border: 1px solid #DEDEDE;
1259
  padding: 25px 40px;
1260
  vertical-align: top;
1261
  text-align: start;
1262
}
1263

    
1264
.terminologySection table th.important {
1265
  background-color: var(--primary-color-background);
1266
}
1267

    
1268
.terminologySection ul.portal-circle {
1269
  list-style: none;
1270
  padding-left: 40px;
1271
  font-family: "Open Sans", sans-serif;
1272
}
1273

    
1274
.terminologySection ul.portal-circle li {
1275
  margin: 0 0 2px 0;
1276
  position: relative;
1277
}
1278

    
1279
.terminologySection ul.portal-circle li:before {
1280
  content: "";
1281
  border: 5px var(--primary-color) solid !important;
1282
  border-radius: 50px;
1283
  line-height: 21px;
1284
  margin-left: -20px;
1285
  position: absolute;
1286
  top: 7px;
1287
}
1288

    
1289
@media only screen and (max-width: 959px) {
1290
  /*.terminologySection table th {*/
1291
    /*width: 50%;*/
1292
  /*}*/
1293

    
1294
  .terminologySection ul.portal-circle {
1295
    padding-left: 20px;
1296
  }
1297
}
1298

    
1299
/********* Overview ********/
1300

    
1301
@media only screen and (min-width: 640px) {
1302
  .how .first > div:first-child {
1303
    position: relative;
1304
  }
1305

    
1306
  .how .first > div:first-child:after {
1307
    content: "we";
1308
    text-align: center;
1309
    padding-bottom: 5%;
1310
    position: absolute;
1311
    background-image: url("../img/methodology/arrows/1.svg");
1312
    right: -21%;
1313
    top: 33%;
1314
    width: 20%;
1315
    background-size: contain;
1316
    background-repeat: no-repeat;
1317
    background-position: bottom center;
1318
  }
1319

    
1320
  .how .second > div:first-child {
1321
    position: relative;
1322
    padding: 0 22% 0 22%;
1323
  }
1324

    
1325
  .how .second > div:first-child:after {
1326
    content: "and";
1327
    text-align: center;
1328
    padding-bottom: 5%;
1329
    position: absolute;
1330
    background-image: url("../img/methodology/arrows/2.svg");
1331
    right: -10%;
1332
    top: 31%;
1333
    width: 30%;
1334
    background-size: contain;
1335
    background-repeat: no-repeat;
1336
    background-position: bottom center;
1337
  }
1338

    
1339
  .how .third {
1340
    position:  relative;
1341
  }
1342

    
1343
  .how .third > div:first-child {
1344
    padding: 0 12% 0 12%;
1345
  }
1346

    
1347
  .how .third:after {
1348
    content: "on which";
1349
    padding-right: 30%;
1350
    padding-top: 5%;
1351
    padding-bottom: 5%;
1352
    position: absolute;
1353
    background-image: url("../img/methodology/arrows/3.svg");
1354
    bottom: 6%;
1355
    left: 6%;
1356
    transform: translateY(100%);
1357
    width: 55%;
1358
    background-size: contain;
1359
    background-repeat: no-repeat;
1360
    background-position: center;
1361
  }
1362

    
1363
  .how .fourth {
1364
    padding: 10% 3% 0 3%;
1365
  }
1366

    
1367
  .how .fourth > div:first-child {
1368
    position:  relative;
1369
    padding: 0 15% 0 15%;
1370
  }
1371

    
1372
  .how .fourth> div:first-child:after {
1373
    content: "and";
1374
    text-align: center;
1375
    padding-bottom: 5%;
1376
    position: absolute;
1377
    background-image: url("../img/methodology/arrows/4.svg");
1378
    left: -18%;
1379
    top: 35%;
1380
    width: 30%;
1381
    background-size: contain;
1382
    background-repeat: no-repeat;
1383
    background-position: bottom center;
1384
  }
1385

    
1386
  .how .fifth {
1387
    padding: 10% 2% 0 2%;
1388
  }
1389

    
1390
  .how .fifth > div:first-child {
1391
    position:  relative;
1392
  }
1393

    
1394
  .how .fifth > div:first-child:after {
1395
    content: "We";
1396
    text-align: center;
1397
    padding-bottom: 5%;
1398
    position: absolute;
1399
    background-image: url("../img/methodology/arrows/5.svg");
1400
    left: -35%;
1401
    top: 36%;
1402
    width: 30%;
1403
    background-size: contain;
1404
    background-repeat: no-repeat;
1405
    background-position: bottom center;
1406
  }
1407

    
1408
  .how .sixth {
1409
    padding: 10% 5% 0 0;
1410
  }
1411

    
1412
  .how .sixth > div:first-child {
1413
    padding: 0 15% 0 15%;
1414
  }
1415

    
1416
  .how .final {
1417
    padding: 10% 20% 0 20%;
1418
  }
1419

    
1420
  .how .final > div:first-child {
1421
    position: relative;
1422
  }
1423

    
1424
  .how .final img {
1425
    display: block;
1426
    margin-left: auto;
1427
    margin-right: auto;
1428
  }
1429

    
1430
  .how .final > div:first-child:before {
1431
    content: "";
1432
    position: absolute;
1433
    background-image: url("../img/methodology/arrows/6.svg");
1434
    left: -20%;
1435
    /*top: -20%;*/
1436
    /*height: 70%;*/
1437
    top: -8%;
1438
    height: 42%;
1439
    /*width: 30%;*/
1440
    width: 34%;
1441
    background-size: contain;
1442
    background-repeat: no-repeat;
1443
    background-position: bottom center;
1444
  }
1445

    
1446
  .how .final > div:first-child:after {
1447
    content: "We make visualizations, graphs, reports and deliver all in a customisable tool";
1448
    position: absolute;
1449
    background-image: url("../img/methodology/circle.png");
1450
    /*right: -220px;*/
1451
    /*top: -20%;*/
1452
    right: -203px;
1453
    top: -8%;
1454
    width: 300px;
1455
    padding: 8% 0 5% 220px;
1456
    background-size: contain;
1457
    background-repeat: no-repeat;
1458
    background-position: bottom center;
1459
  }
1460
}
1461

    
1462
@media only screen and (min-width: 960px) {
1463
  .how .third:after {
1464
    bottom: -6%;
1465
  }
1466
}
1467

    
1468
@media only screen and (min-width: 1200px) {
1469
  .how .third:after {
1470
    bottom: -10%;
1471
    left: 25%;
1472
    width: 25%;
1473
  }
1474
}
1475

    
1476
@media only screen and (max-width: 639px) {
1477
  .how .first {
1478
    position: relative;
1479
    padding-bottom: 30%;
1480
  }
1481

    
1482
  .how .first:after {
1483
    content: "we";
1484
    text-align: center;
1485
    padding: 25px 105px 25px 0;
1486
    position: absolute;
1487
    background-image: url("../img/methodology/arrows/3.svg");
1488
    /*left: 26%;*/
1489
    left: 33%;
1490
    top: 72%;
1491
    background-size: contain;
1492
    background-repeat: no-repeat;
1493
    background-position: center;
1494
  }
1495

    
1496
  .how .second {
1497
    position: relative;
1498
    padding: 0 15% 30% 15%;
1499
  }
1500

    
1501
  .how .second:after {
1502
    content: "and";
1503
    text-align: center;
1504
    padding: 25px 105px 25px 0;
1505
    position: absolute;
1506
    background-image: url("../img/methodology/arrows/3.svg");
1507
    /*left: 25%;*/
1508
    left: 32%;
1509
    top: 70%;
1510
    background-size: contain;
1511
    background-repeat: no-repeat;
1512
    background-position: center;
1513
  }
1514

    
1515
  .how .third {
1516
    position:  relative;
1517
    padding: 0 5% 30% 5%;
1518
  }
1519

    
1520
  .how .third:after {
1521
    content: "on which";
1522
    text-align: center;
1523
    padding: 25px 105px 25px 0;
1524
    position: absolute;
1525
    background-image: url("../img/methodology/arrows/3.svg");
1526
    /*left: 17%;*/
1527
    left: 27%;
1528
    top: 75%;
1529
    background-size: contain;
1530
    background-repeat: no-repeat;
1531
    background-position: center;
1532
  }
1533

    
1534
  .how .fourth {
1535
    position:  relative;
1536
    padding: 0 0 30% 0;
1537
  }
1538

    
1539
  .how .fourth > div:first-child {
1540
    padding: 0 10% 0 10%;
1541
  }
1542

    
1543
  .how .fourth:after {
1544
    content: "and";
1545
    text-align: center;
1546
    padding: 25px 105px 25px 0;
1547
    position: absolute;
1548
    background-image: url("../img/methodology/arrows/3.svg");
1549
    /*left: 26%;*/
1550
    left: 32%;
1551
    top: 79%;
1552
    background-size: contain;
1553
    background-repeat: no-repeat;
1554
    background-position: center;
1555
  }
1556

    
1557
  .how .fifth {
1558
    position:  relative;
1559
    padding: 0 2% 30% 2%;
1560
  }
1561

    
1562
  .how .fifth:after {
1563
    content: "We";
1564
    text-align: center;
1565
    padding: 25px 105px 25px 0;
1566
    position: absolute;
1567
    background-image: url("../img/methodology/arrows/3.svg");
1568
    /*left: 27%;*/
1569
    left: 33%;
1570
    top: 76%;
1571
    background-size: contain;
1572
    background-repeat: no-repeat;
1573
    background-position: center;
1574
  }
1575

    
1576
  .how .sixth {
1577
    padding: 0 5% 30% 0;
1578
  }
1579

    
1580
  .how .sixth > div:first-child {
1581
    padding: 0 15% 0 15%;
1582
  }
1583

    
1584
  .how .final {
1585
    padding: 20% 0 20% 0;
1586
  }
1587

    
1588
  .how .final > div:first-child {
1589
    position: relative;
1590
  }
1591

    
1592
  .how .final > div:first-child:before {
1593
    content: "";
1594
    position: absolute;
1595
    background-image: url("../img/methodology/arrows/6.svg");
1596
    left: 32%;
1597
    /*top: -80%;*/
1598
    /*height: 70%;*/
1599
    top: -37%;
1600
    height: 33%;
1601
    width: 30%;
1602
    background-size: contain;
1603
    background-repeat: no-repeat;
1604
    background-position: center;
1605
  }
1606

    
1607
  .how .final > div:first-child:after {
1608
    content: "We make visualizations, graphs, reports and deliver all in a customisable tool";
1609
    position: absolute;
1610
    background-image: url("../img/methodology/circle.png");
1611
    /*left: -62%;*/
1612
    /*top: 85%;*/
1613
    left: -52%;
1614
    top: 91%;
1615
    width: 300px;
1616
    padding: 12% 0 0 70%;
1617
    background-size: contain;
1618
    background-repeat: no-repeat;
1619
    background-position: center;
1620
  }
1621
}
1622

    
1623

    
1624
/*********************************/
1625

    
1626
/********* MOBILE ********/
1627
@media only screen and (max-width: 960px) {
1628

    
1629
  body {
1630
    background: #F9FBFC;
1631
  }
1632

    
1633
  ::-webkit-scrollbar {
1634
    width: 0px;
1635
    background: transparent; /* make scrollbar transparent */
1636
  }
1637

    
1638
  .uk-navbar-container:not(.uk-navbar-transparent) {
1639
    background: #F9FBFC;
1640
  }
1641

    
1642
  .uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
1643
    min-height: 60px;
1644
  }
1645

    
1646
  .uk-logo > img {
1647
    max-height: 125px;
1648
  }
1649

    
1650
  .uk-navbar-toggle-icon {
1651
    color: var(--primary-color);
1652
  }
1653

    
1654
  /*.searchForCountry.uk-search.uk-search-default {*/
1655
    /*width: 100%;*/
1656
    /*background: #FFFFFF 0% 0% no-repeat padding-box;*/
1657
    /*border: 1px solid #C7C7C7;*/
1658
    /*border-radius: 4px;*/
1659
  /*}*/
1660

    
1661
  /*.searchForCountry.uk-search .uk-search-icon {*/
1662
    /*color: #4687f4;*/
1663
    /*z-index: 10;*/
1664
  /*}*/
1665

    
1666
  .progress {
1667
    width: 100%;
1668
  }
1669

    
1670
  .overviewMobile .number.big {
1671
    font-size: 24px;
1672
  }
1673

    
1674
  .overviewMobile {
1675
    font-size: 12px;
1676
  }
1677

    
1678
  .goToDetailedViewLink {
1679
    text-align: center;
1680
    margin-top: 0px;
1681
  }
1682

    
1683
  .leadingOpenScienceCard {
1684
    font-size: 10px;
1685
  }
1686

    
1687
  .leadingOpenScienceCard .number {
1688
    font-size: 14px;
1689
  }
1690

    
1691
  .leadingOpenScienceCard .countryName {
1692
    font-size: 16px;
1693
    font-weight: bold;
1694
  }
1695

    
1696
  .footerSection {
1697
    text-align: center;
1698
    background-color: #fff;
1699
  }
1700

    
1701
  .footerImage {
1702
    opacity: 0.8;
1703
    float: none;
1704
    margin-top: 0px;
1705
  }
1706

    
1707
  [class*="uk-navbar-dropdown-bottom"] {
1708
    margin-top: -5px;
1709
    left: 200px !important;
1710
  }
1711

    
1712
  .tm-header-mobile .uk-nav-divider {
1713
    margin: 15px 0;
1714
  }
1715

    
1716
  .tm-header-mobile .smallHeader {
1717
    background: #FFFFFF 0% 0% no-repeat padding-box;
1718
    box-shadow: 0px 3px 6px #00000029;
1719
    opacity: 1;
1720
  }
1721

    
1722
  .continentPageEntitiesOverview .number.big {
1723
    font-size: 24px;
1724
  }
1725

    
1726
  .continentPageEntitiesOverview .entityName {
1727
    font-size: 16px;
1728
    font-weight: 600;
1729
  }
1730

    
1731
  .uk-tab {
1732
    flex-wrap: nowrap;
1733
    overflow-x: auto;
1734
    background: #fff;
1735
    padding-bottom: 15px;
1736
    padding-top: 10px;
1737
    margin-right: -20px;
1738
  }
1739

    
1740
  .entitiesContainer {
1741
    margin-left: 0px;
1742
    height: 200px;
1743
  }
1744

    
1745
  hr.entitiesDivider {
1746
    margin-left: -15px;
1747
    margin-right: -15px;
1748
  }
1749

    
1750
  .dataContainer {
1751
    border: none;
1752
  }
1753

    
1754
  .tabContent {
1755
    padding: 30px 0px;
1756
  }
1757

    
1758
  .dataContainer .tabContent {
1759
    padding: 0px;
1760
  }
1761

    
1762
  /*.autocomplete-container .input-container input {*/
1763
    /*padding: 0 15px 0 40px !important;*/
1764
  /*}*/
1765
}
1766

    
(3-3/4)