Project

General

Profile

1
/*
2
*  Altair Admin Landing Page
3
*  author: tzd
4
*
5
*  Content:
6
*    1. variables/mixins
7
*    2. UIkit custom styles
8
*    3. custom components
9
*    4. material design styles
10
*    5. partials (header,sidebars,top bar)
11
*    6. altair landing page styles
12
*
13
*/
14
/* 1. altair variables/mixins ======================== */
15
/* 2. UIkit custom styles ============================ */
16
/* animations */
17
[class*="uk-animation-"] {
18
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20
  -webkit-animation-duration: 560ms;
21
  animation-duration: 560ms;
22
}
23
/* alerts */
24
.uk-alert {
25
  border: none;
26
  background: #1976d2;
27
  color: #fff;
28
  text-shadow: none;
29
  padding-right: 32px;
30
  position: relative;
31
  display: block;
32
}
33
.uk-alert-success {
34
  background: #8bc34a !important;
35
}
36
.uk-alert-danger {
37
  background: #e53935 !important;
38
}
39
.uk-alert-warning {
40
  background: #ffa000 !important;
41
}
42
.uk-alert-info {
43
  background: #0097a7 !important;
44
}
45
.uk-alert-large {
46
  padding: 24px 32px 24px 24px;
47
}
48
.uk-alert-close {
49
  position: absolute;
50
  top: 10px;
51
  right: 8px;
52
  float: none !important;
53
  margin: 0 !important;
54
}
55
.uk-alert-close:after {
56
  color: #fff !important;
57
}
58
/* badges */
59
.uk-badge {
60
  background: #0097a7;
61
  padding: 2px 6px;
62
  border: none;
63
  border-radius: 2px;
64
  text-shadow: none;
65
  font-size: 11px;
66
  line-height: 15px;
67
  font-weight: 400;
68
}
69
.uk-badge-primary {
70
  background: #2196f3;
71
}
72
.uk-badge-danger {
73
  background: #e53935;
74
}
75
.uk-badge-warning {
76
  background: #ffa000;
77
}
78
.uk-badge-success {
79
  background: #7cb342;
80
}
81
.uk-badge-muted {
82
  background: #bdbdbd;
83
}
84
.uk-badge-notification {
85
  border-radius: 20px;
86
}
87
.uk-badge.inline-label {
88
  vertical-align: 1px;
89
  margin-left: 4px;
90
}
91
.uk-badge-outline {
92
  border: 1px solid rgba(0, 0, 0, 0.12);
93
  background: #fff;
94
  color: #212121;
95
  padding-bottom: 0;
96
  line-height: 16px;
97
}
98
/* buttons */
99
.uk-button {
100
  font-weight: 400;
101
  border-radius: 2px;
102
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
103
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
104
}
105
/* comments */
106
.uk-comment-list > li + li {
107
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
108
  margin-top: 16px !important;
109
}
110
.uk-comment-list .uk-comment + ul {
111
  margin: 8px 0 0 0;
112
}
113
@media only screen and (min-width: 768px) {
114
  .uk-comment-list .uk-comment + ul {
115
    padding-left: 48px;
116
  }
117
}
118
.uk-comment-header {
119
  padding: 16px 8px 8px;
120
  border: none;
121
  background: none;
122
  margin-bottom: 0;
123
}
124
.uk-comment-title {
125
  margin: 0;
126
  font-size: 14px;
127
  line-height: 20px;
128
}
129
/* dialog modals */
130
.uk-modal {
131
  z-index: 1304;
132
  background: rgba(0, 0, 0, 0.5);
133
  -webkit-transition: opacity 250ms ease-out;
134
  transition: opacity 250ms ease-out;
135
  overflow: auto !important;
136
}
137
.uk-modal.uk-modal-no-backdrop {
138
  background: transparent;
139
}
140
.uk-modal-dialog {
141
  border-radius: 2px;
142
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
143
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
144
  padding: 24px;
145
  display: block !important;
146
  -webkit-animation: none !important;
147
  animation: none !important;
148
  -webkit-transition: opacity 280ms ease-in, -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
149
  transition: opacity 280ms ease-in, -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
150
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease-in;
151
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease-in, -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
152
  -webkit-transform: scale(0);
153
  transform: scale(0);
154
}
155
.uk-open .uk-modal-dialog {
156
  -webkit-transform: scale(1);
157
  transform: scale(1);
158
}
159
.uk-modal-dialog .uk-modal-header {
160
  background: none;
161
  border-bottom: none;
162
  margin: 0 -24px 24px;
163
  padding: 0 32px 0 24px;
164
  overflow: hidden;
165
}
166
.uk-modal-dialog .uk-modal-header .uk-modal-title {
167
  margin: 0;
168
  font: 500 18px / 28px "Roboto", sans-serif;
169
}
170
.uk-modal-dialog .uk-modal-header .uk-modal-title span {
171
  font-size: 16px;
172
  display: block;
173
  color: #727272;
174
}
175
.uk-modal-dialog .uk-modal-header .material-icons {
176
  font-size: 24px;
177
  vertical-align: -4px;
178
  cursor: default;
179
}
180
.uk-modal-dialog .uk-modal-footer {
181
  margin: 16px -16px -16px;
182
  padding: 16px;
183
  background: #fff;
184
  border-top: none;
185
}
186
.uk-modal-dialog .uk-modal-footer:before,
187
.uk-modal-dialog .uk-modal-footer:after {
188
  content: " ";
189
  display: table;
190
}
191
.uk-modal-dialog .uk-modal-footer:after {
192
  clear: both;
193
}
194
.uk-modal-dialog .uk-modal-footer .md-icon-btn {
195
  margin-top: 2px;
196
}
197
.uk-modal-dialog .uk-modal-caption {
198
  bottom: 16px;
199
  margin: 0 32px;
200
}
201
.uk-modal-dialog > .uk-close:first-child {
202
  top: 8px;
203
  right: 8px;
204
  position: absolute;
205
  float: none;
206
  margin: 0;
207
}
208
.uk-modal-dialog-lightbox {
209
  padding: 0;
210
}
211
.uk-modal-dialog-lightbox > .uk-close:first-child {
212
  top: -11px;
213
  right: -11px;
214
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
215
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
216
  border: none;
217
}
218
.uk-modal-dialog .uk-overflow-container {
219
  margin: 16px 0;
220
}
221
.uk-modal .uk-margin.uk-modal-content {
222
  margin-bottom: 0;
223
}
224
.uk-modal.uk-modal-dialog-replace .uk-modal-content {
225
  font-size: 18px;
226
}
227
.uk-modal-spinner {
228
  -webkit-animation: uk-rotate 2s infinite linear;
229
  animation: uk-rotate 2s infinite linear;
230
  margin-left: -12px;
231
  margin-top: -17px;
232
  left: 50%;
233
  right: auto;
234
}
235
/* dropdowns */
236
.uk-dropdown {
237
  -webkit-transform: scale(0.25, 0);
238
  transform: scale(0.25, 0);
239
  opacity: 0;
240
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
241
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
242
  -webkit-animation: none !important;
243
  animation: none !important;
244
  -webkit-transform-origin: 50% 0 !important;
245
  transform-origin: 50% 0 !important;
246
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
247
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
248
  border: none;
249
  border-radius: 2px;
250
}
251
.uk-dropdown.uk-dropdown-xlarge {
252
  width: 360px;
253
}
254
@media only screen and (max-width: 479px) {
255
  .uk-dropdown.uk-dropdown-xlarge {
256
    width: 260px;
257
  }
258
}
259
.uk-dropdown.uk-dropdown-large {
260
  width: 260px;
261
}
262
.uk-dropdown.uk-dropdown-small {
263
  width: 160px;
264
}
265
.uk-dropdown > ul > li > a {
266
  font-size: 14px;
267
  color: #212121;
268
}
269
.uk-dropdown > ul > li > a:hover {
270
  background: rgba(0, 0, 0, 0.085);
271
}
272
.uk-dropdown > ul > li.uk-active > a {
273
  background: rgba(0, 0, 0, 0.085);
274
}
275
.uk-dropdown > ul > li.padding_sm {
276
  padding: 2px 4px;
277
}
278
.uk-dropdown > ul > li.padding_md {
279
  padding: 4px 8px;
280
}
281
.uk-dropdown.dropdown-modal {
282
  z-index: 1310;
283
}
284
.uk-dropdown.dropdown-fs {
285
  z-index: 9999;
286
}
287
.uk-dropdown.uk-dropdown-scrollable {
288
  -webkit-overflow-scrolling: touch;
289
}
290
[data-uk-dropdown*="top-"] .uk-dropdown {
291
  -webkit-transform-origin: 50% 100% !important;
292
  transform-origin: 50% 100% !important;
293
}
294
[data-uk-dropdown*="left-"] .uk-dropdown {
295
  -webkit-transform-origin: 100% 50% !important;
296
  transform-origin: 100% 50% !important;
297
}
298
[data-uk-dropdown*="right-"] .uk-dropdown {
299
  -webkit-transform-origin: 0 50% !important;
300
  transform-origin: 0 50% !important;
301
}
302
[data-uk-dropdown*='justify'] {
303
  position: static !important;
304
}
305
[data-uk-dropdown*='justify'] [class*="uk-dropdown-width"] {
306
  left: 0 !important;
307
  width: 100% !important;
308
  min-width: inherit !important;
309
  margin-left: 0 !important;
310
}
311
.uk-dropdown-active {
312
  display: block !important;
313
}
314
.uk-dropdown-shown {
315
  -webkit-transform: scale(1, 1);
316
  transform: scale(1, 1);
317
  opacity: 1;
318
}
319
.uk-nav-dropdown > li > a:focus,
320
.uk-nav-dropdown > li > a:hover {
321
  text-shadow: none;
322
  -webkit-box-shadow: none;
323
  box-shadow: none;
324
  color: #212121;
325
  background: rgba(153, 153, 153, 0.2);
326
}
327
/* forms */
328
.uk-form input:not([type]),
329
.uk-form input[type=color],
330
.uk-form input[type=date],
331
.uk-form input[type=datetime-local],
332
.uk-form input[type=email],
333
.uk-form input[type=month],
334
.uk-form input[type=number],
335
.uk-form input[type=password],
336
.uk-form input[type=search],
337
.uk-form input[type=tel],
338
.uk-form input[type=text],
339
.uk-form input[type=time],
340
.uk-form input[type=url],
341
.uk-form input[type=week],
342
.uk-form select,
343
.uk-form textarea {
344
  -webkit-box-sizing: border-box;
345
  box-sizing: border-box;
346
  padding: 8px;
347
  border: 1px solid rgba(0, 0, 0, 0.12);
348
  -webkit-transition: border 200ms ease-in;
349
  transition: border 200ms ease-in;
350
  resize: none;
351
}
352
.uk-form input:not([type]):focus,
353
.uk-form input[type=color]:focus,
354
.uk-form input[type=date]:focus,
355
.uk-form input[type=datetime-local]:focus,
356
.uk-form input[type=email]:focus,
357
.uk-form input[type=month]:focus,
358
.uk-form input[type=number]:focus,
359
.uk-form input[type=password]:focus,
360
.uk-form input[type=search]:focus,
361
.uk-form input[type=tel]:focus,
362
.uk-form input[type=text]:focus,
363
.uk-form input[type=time]:focus,
364
.uk-form input[type=url]:focus,
365
.uk-form input[type=week]:focus,
366
.uk-form select:focus,
367
.uk-form textarea:focus {
368
  background: none;
369
  border-color: #2196f3;
370
}
371
.uk-form textarea {
372
  -webkit-transition: border-color 200ms ease-in, height 280ms ease-in;
373
  transition: border-color 200ms ease-in, height 280ms ease-in;
374
}
375
.uk-form-row {
376
  -webkit-transition: all 200ms ease-out;
377
  transition: all 200ms ease-out;
378
}
379
.uk-form-row + .uk-form-row {
380
  margin-top: 24px;
381
}
382
.uk-form-stacked .uk-form-label {
383
  font-weight: 500;
384
  font-size: 13px;
385
  display: block;
386
  padding-bottom: 8px;
387
}
388
.uk-form-stacked .uk-form-label + p {
389
  margin-top: 0;
390
}
391
.uk-form-help-block {
392
  display: block;
393
  font-size: 12px;
394
  color: #727272;
395
  padding: 4px 0 0 0;
396
  font-style: italic;
397
}
398
.uk-form-width-large,
399
.uk-form-width-medium,
400
.uk-form-width-small,
401
.uk-form-width-mini {
402
  max-width: 100%;
403
}
404
/* grid */
405
.uk-grid + .uk-grid,
406
.uk-grid-margin,
407
.uk-grid > * > .uk-panel + .uk-panel {
408
  margin-top: 48px;
409
}
410
.uk-grid.uk-grid-small + .uk-grid-small,
411
.uk-grid.uk-grid-small > * > .uk-panel + .uk-panel,
412
.uk-grid.uk-grid-small > .uk-grid-margin {
413
  margin-top: 10px;
414
}
415
/* icons */
416
[class*="uk-icon-"] {
417
  color: #727272;
418
}
419
/* navbar */
420
.uk-navbar {
421
  border-radius: 0;
422
  border: none;
423
  -webkit-box-sizing: border-box;
424
  box-sizing: border-box;
425
}
426
.uk-navbar-brand {
427
  line-height: 64px;
428
  display: inline-block;
429
  margin: 0;
430
  text-shadow: none;
431
  color: #fff;
432
}
433
.uk-navbar-nav > li > a {
434
  height: 64px;
435
  text-shadow: none;
436
  font-size: 16px;
437
  border-radius: 0 !important;
438
  line-height: 68px;
439
  border: none !important;
440
  margin: 0;
441
}
442
.uk-navbar-nav > li > a:hover,
443
.uk-navbar-nav > li > a:active {
444
  background: none;
445
}
446
.uk-navbar-nav > li > a.uk-navbar-nav-subtitle {
447
  line-height: 50px;
448
  margin: 0;
449
}
450
.uk-navbar-nav > li > a.uk-navbar-nav-subtitle > div {
451
  margin-top: -12px;
452
  font-size: 11px;
453
}
454
/* panels */
455
.uk-panel-box {
456
  border-radius: 2px;
457
  background: #fff;
458
  border-color: rgba(0, 0, 0, 0.12);
459
}
460
.uk-panel-box .uk-panel-teaser {
461
  border-radius: 2px 2px 0 0;
462
}
463
/* tables */
464
.uk-table td {
465
  border-bottom-color: rgba(0, 0, 0, 0.12);
466
}
467
.uk-table th {
468
  border-bottom: 1px #444;
469
}
470
.uk-table-nowrap td,
471
.uk-table-nowrap th {
472
  white-space: nowrap;
473
}
474
.uk-table-align-vertical td,
475
.uk-table-align-vertical th {
476
  vertical-align: middle;
477
}
478
.uk-table-no-border td {
479
  border-bottom-color: transparent;
480
}
481
/* sticky */
482
.uk-sticky-placeholder .uk-active {
483
  z-index: 1094;
484
}
485
/* subnav */
486
.uk-subnav-pill > * > * {
487
  color: #212121;
488
}
489
.uk-subnav-pill > .uk-active > * {
490
  background: #7cb342;
491
}
492
/* tables */
493
.uk-table thead th {
494
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
495
}
496
.uk-table thead th,
497
.uk-table tfoot td,
498
.uk-table tfoot th {
499
  font-style: normal;
500
  font-weight: 400;
501
  color: #727272;
502
  font-size: 14px;
503
}
504
.uk-table td {
505
  border-bottom-color: #e0e0e0;
506
}
507
.uk-table tfoot td,
508
.uk-table tfoot th {
509
  border-top: 2px solid rgba(0, 0, 0, 0.12);
510
  border-bottom: none;
511
}
512
.uk-table-striped tbody tr:nth-of-type(odd) {
513
  background: rgba(0, 0, 0, 0.085);
514
}
515
.uk-table-hover tbody tr:hover {
516
  background: rgba(0, 0, 0, 0.085);
517
}
518
/* thumbnails */
519
.uk-thumbnail {
520
  border-radius: 0;
521
  border-color: rgba(0, 0, 0, 0.12);
522
}
523
.uk-thumbnail-caption {
524
  padding: 4px 4px 0;
525
  line-height: 20px;
526
  color: #727272;
527
  font-size: 12px;
528
}
529
/* utilities */
530
.uk-text-small {
531
  font-size: 12px;
532
}
533
.uk-text-muted {
534
  color: #757575 !important;
535
}
536
.uk-text-primary {
537
  color: #2196f3 !important;
538
}
539
.uk-text-danger {
540
  color: #e53935 !important;
541
}
542
.uk-text-success {
543
  color: #7cb342 !important;
544
}
545
.uk-text-warning {
546
  color: #ffa000 !important;
547
}
548
.uk-margin-bottom {
549
  margin-bottom: 16px !important;
550
}
551
.uk-margin-small-bottom {
552
  margin-bottom: 8px !important;
553
}
554
.uk-margin-medium-bottom {
555
  margin-bottom: 32px !important;
556
}
557
.uk-margin-large-bottom {
558
  margin-bottom: 48px !important;
559
}
560
.uk-margin-medium-top {
561
  margin-top: 32px !important;
562
}
563
.uk-margin-large-top {
564
  margin-top: 48px !important;
565
}
566
.uk-margin-right {
567
  margin-right: 16px !important;
568
}
569
.uk-margin-medium-right {
570
  margin-right: 32px !important;
571
}
572
.uk-close {
573
  font-size: 18px;
574
  opacity: 1;
575
}
576
.uk-close:hover,
577
.uk-close:focus {
578
  opacity: 1;
579
}
580
.uk-close:after {
581
  opacity: 1 !important;
582
  color: #727272;
583
  content: '\e5cd';
584
  font-family: "Material Icons";
585
}
586
/* ------------ Components ------------ */
587
/* accordion */
588
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
589
/* ========================================================================
590
   Component: Accordion
591
 ========================================================================== */
592
/* Sub-object: `uk-accordion-title`
593
 ========================================================================== */
594
.uk-accordion-title {
595
  margin-top: 0;
596
  margin-bottom: 15px;
597
  padding: 5px 15px;
598
  background: #f5f5f5;
599
  font-size: 18px;
600
  line-height: 24px;
601
  cursor: pointer;
602
  border: 1px solid #ddd;
603
  border-radius: 4px;
604
}
605
/* Sub-object: `uk-accordion-content`
606
 ========================================================================== */
607
.uk-accordion-content {
608
  padding: 0 15px 15px 15px;
609
}
610
/*
611
 * Micro clearfix to make panels more robust
612
 */
613
.uk-accordion-content:before,
614
.uk-accordion-content:after {
615
  content: "";
616
  display: table;
617
}
618
.uk-accordion-content:after {
619
  clear: both;
620
}
621
/*
622
 * Remove margin from the last-child
623
 */
624
.uk-accordion-content > :last-child {
625
  margin-bottom: 0;
626
}
627
.uk-accordion-title {
628
  background: rgba(153, 153, 153, 0.2);
629
  border-radius: 0;
630
  border: none;
631
  margin: 0 0 4px;
632
  font-size: 15px;
633
  font-weight: 400;
634
  padding: 8px 24px 8px 16px;
635
  position: relative;
636
}
637
.uk-accordion-title:after {
638
  content: '\e313';
639
  font-family: "Material Icons";
640
  font-size: 18px;
641
  position: absolute;
642
  top: 8px;
643
  right: 8px;
644
  display: block;
645
  color: #727272;
646
  -webkit-transition: -webkit-transform 280ms;
647
  transition: -webkit-transform 280ms;
648
  transition: transform 280ms;
649
  transition: transform 280ms, -webkit-transform 280ms;
650
}
651
.uk-accordion-title.uk-active:after {
652
  -webkit-transform: rotate(-180deg);
653
  transform: rotate(-180deg);
654
}
655
.uk-accordion-title-primary {
656
  background: #2196f3;
657
  color: #fff;
658
}
659
.uk-accordion-title-primary:after {
660
  color: #fff;
661
}
662
.uk-accordion-title-danger {
663
  background: #e53935;
664
  color: #fff;
665
}
666
.uk-accordion-title-danger:after {
667
  color: #fff;
668
}
669
.uk-accordion-title-success {
670
  background: #7cb342;
671
  color: #fff;
672
}
673
.uk-accordion-title-success:after {
674
  color: #fff;
675
}
676
.uk-accordion-title-warning {
677
  background: #ffa000;
678
  color: #fff;
679
}
680
.uk-accordion-title-warning:after {
681
  color: #fff;
682
}
683
.uk-accordion-content {
684
  padding: 16px;
685
}
686
.uk-accordion-alt .uk-accordion-title {
687
  background: #fff;
688
  margin: 0;
689
  padding: 16px 24px 16px 48px;
690
  border-top: 1px solid rgba(0, 0, 0, 0.12);
691
}
692
.uk-accordion-alt .uk-accordion-title:first-child {
693
  border-top: none;
694
}
695
.uk-accordion-alt .uk-accordion-title:after {
696
  color: #2196f3;
697
  content: '\e145';
698
  right: auto;
699
  left: 16px;
700
  top: 16px;
701
}
702
.uk-accordion-alt .uk-accordion-title.uk-active:after {
703
  -webkit-transform: rotate(-180deg);
704
  transform: rotate(-180deg);
705
  content: '\e15b';
706
}
707
.uk-accordion-alt .uk-accordion-content {
708
  padding: 24px;
709
}
710
/* dotnav */
711
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
712
/* ========================================================================
713
   Component: Dotnav
714
 ========================================================================== */
715
/*
716
 * 1. Gutter
717
 * 2. Remove default list style
718
 */
719
.uk-dotnav {
720
  display: -ms-flexbox;
721
  display: -webkit-box;
722
  display: flex;
723
  -ms-flex-wrap: wrap;
724
  flex-wrap: wrap;
725
  /* 1 */
726
  margin-left: -15px;
727
  margin-top: -15px;
728
  /* 2 */
729
  padding: 0;
730
  list-style: none;
731
}
732
/*
733
 * 1. Space is allocated solely based on content dimensions
734
 * 2. Horizontal gutter is using `padding` so `uk-width-*` classes can be applied
735
 */
736
.uk-dotnav > * {
737
  /* 1 */
738
  -ms-flex: none;
739
  -webkit-box-flex: 0;
740
  flex: none;
741
  /* 2 */
742
  padding-left: 15px;
743
  margin-top: 15px;
744
}
745
/*
746
 * DEPRECATED IE9 Support
747
 */
748
.uk-dotnav:before,
749
.uk-dotnav:after {
750
  content: "";
751
  display: block;
752
  overflow: hidden;
753
}
754
.uk-dotnav:after {
755
  clear: both;
756
}
757
.uk-dotnav > * {
758
  float: left;
759
}
760
/* Items
761
 ========================================================================== */
762
/*
763
 * Items
764
 * 1. Hide text if present
765
 */
766
.uk-dotnav > * > * {
767
  display: block;
768
  -webkit-box-sizing: content-box;
769
  box-sizing: content-box;
770
  width: 20px;
771
  height: 20px;
772
  border-radius: 50%;
773
  background: rgba(50, 50, 50, 0.1);
774
  /* 1 */
775
  text-indent: 100%;
776
  overflow: hidden;
777
  white-space: nowrap;
778
}
779
/*
780
 * Hover
781
 * 1. Apply hover style also to focus state
782
 * 2. Remove default focus style
783
 */
784
.uk-dotnav > * > :hover,
785
.uk-dotnav > * > :focus {
786
  background: rgba(50, 50, 50, 0.4);
787
  /* 2 */
788
  outline: none;
789
}
790
/* OnClick */
791
.uk-dotnav > * > :active {
792
  background: rgba(50, 50, 50, 0.6);
793
}
794
/* Active */
795
.uk-dotnav > .uk-active > * {
796
  background: rgba(50, 50, 50, 0.4);
797
}
798
/* Modifier: `uk-dotnav-contrast`
799
 ========================================================================== */
800
.uk-dotnav-contrast > * > * {
801
  background: rgba(255, 255, 255, 0.4);
802
}
803
/*
804
 * Hover
805
 * 1. Apply hover style also to focus state
806
 */
807
.uk-dotnav-contrast > * > :hover,
808
.uk-dotnav-contrast > * > :focus {
809
  background: rgba(255, 255, 255, 0.7);
810
}
811
/* OnClick */
812
.uk-dotnav-contrast > * > :active {
813
  background: rgba(255, 255, 255, 0.9);
814
}
815
/* Active */
816
.uk-dotnav-contrast > .uk-active > * {
817
  background: rgba(255, 255, 255, 0.9);
818
}
819
/* Modifier: 'uk-dotnav-vertical'
820
 ========================================================================== */
821
/*
822
 * DEPRECATED
823
 */
824
.uk-dotnav-vertical {
825
  -ms-flex-direction: column;
826
  -webkit-box-orient: vertical;
827
  -webkit-box-direction: normal;
828
  flex-direction: column;
829
}
830
/*
831
 * DEPRECATED IE9 Support
832
 */
833
.uk-dotnav-vertical > * {
834
  float: none;
835
}
836
/* autocomplete, timepicker */
837
.uk-autocomplete .uk-dropdown {
838
  display: block;
839
  max-height: 0;
840
  padding: 0;
841
  overflow-x: hidden;
842
  overflow-y: auto;
843
  border-radius: 0;
844
  border: none;
845
  -webkit-transform: scale(0.25, 0);
846
  transform: scale(0.25, 0);
847
  opacity: 0;
848
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
849
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
850
  -webkit-animation: none !important;
851
  animation: none !important;
852
  -webkit-transform-origin: 0 0;
853
  transform-origin: 0 0;
854
}
855
.uk-autocomplete.uk-open .uk-dropdown {
856
  -webkit-transform: scale(1);
857
  transform: scale(1);
858
  opacity: 1;
859
  max-height: 210px;
860
}
861
[data-uk-autocomplete] .uk-dropdown {
862
  width: 100%;
863
  -webkit-box-sizing: border-box;
864
  box-sizing: border-box;
865
}
866
[data-uk-autocomplete] .uk-dropdown .uk-nav {
867
  margin: 0;
868
}
869
/* slideshow */
870
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
871
/* ========================================================================
872
   Component: Slideshow
873
 ========================================================================== */
874
/*
875
 * 1. Create position context
876
 * 2. Create stacking context to prevent z-index issues with other components
877
 * 3. Set width because child elements are positioned absolute. Height is set via JS
878
 * 4. Reset list style
879
 * 5. Clip child elements
880
 * 6. Deactivate browser history navigation in IE11
881
 */
882
.uk-slideshow {
883
  /* 1 */
884
  position: relative;
885
  /* 2 */
886
  z-index: 0;
887
  /* 3 */
888
  width: 100%;
889
  /* 4 */
890
  margin: 0;
891
  padding: 0;
892
  list-style: none;
893
  /* 5 */
894
  overflow: hidden;
895
  /* 6 */
896
  -ms-touch-action: pan-y;
897
  touch-action: pan-y;
898
}
899
/*
900
 * Sub-object item
901
 * 1. Position items above each other
902
 * 2. Expand to parent container width
903
 * 3. Hide by default
904
 */
905
.uk-slideshow > li {
906
  /* 1 */
907
  position: absolute;
908
  top: 0;
909
  left: 0;
910
  /* 2 */
911
  width: 100%;
912
  /* 3 */
913
  opacity: 0;
914
}
915
/*
916
 * Active
917
 * 1. Stack at first
918
 * 2. Show slide
919
 */
920
.uk-slideshow > .uk-active {
921
  /* 1 */
922
  z-index: 10;
923
  /* 2 */
924
  opacity: 1;
925
}
926
/*
927
 * Hide default images which is only relevant to keep existing proportions
928
 */
929
.uk-slideshow > li > img {
930
  visibility: hidden;
931
}
932
/*
933
 * Pointer for controls
934
 */
935
[data-uk-slideshow-slide] {
936
  cursor: pointer;
937
}
938
/* Modifier: `uk-slideshow-fullscreen`
939
 ========================================================================== */
940
.uk-slideshow-fullscreen,
941
.uk-slideshow-fullscreen > li {
942
  height: 100vh;
943
}
944
/* Animations
945
 ========================================================================== */
946
/*
947
 * Fade
948
 */
949
.uk-slideshow-fade-in {
950
  -webkit-animation: uk-fade 0.5s linear;
951
  animation: uk-fade 0.5s linear;
952
}
953
.uk-slideshow-fade-out {
954
  -webkit-animation: uk-fade 0.5s linear reverse;
955
  animation: uk-fade 0.5s linear reverse;
956
}
957
/*
958
 * Scroll
959
 */
960
.uk-slideshow-scroll-forward-in {
961
  -webkit-animation: uk-slide-right 0.5s ease-in-out;
962
  animation: uk-slide-right 0.5s ease-in-out;
963
}
964
.uk-slideshow-scroll-forward-out {
965
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
966
  animation: uk-slide-left 0.5s ease-in-out reverse;
967
}
968
.uk-slideshow-scroll-backward-in {
969
  -webkit-animation: uk-slide-left 0.5s ease-in-out;
970
  animation: uk-slide-left 0.5s ease-in-out;
971
}
972
.uk-slideshow-scroll-backward-out {
973
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
974
  animation: uk-slide-right 0.5s ease-in-out reverse;
975
}
976
/*
977
 * Scale
978
 */
979
.uk-slideshow-scale-out {
980
  -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
981
  animation: uk-fade-scale-15 0.5s ease-in-out reverse;
982
}
983
/*
984
 * Swipe
985
 */
986
.uk-slideshow-swipe-forward-in {
987
  -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
988
  animation: uk-slide-left-33 0.5s ease-in-out;
989
}
990
.uk-slideshow-swipe-forward-out {
991
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
992
  animation: uk-slide-left 0.5s ease-in-out reverse;
993
}
994
.uk-slideshow-swipe-backward-in {
995
  -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
996
  animation: uk-slide-right-33 0.5s ease-in-out;
997
}
998
.uk-slideshow-swipe-backward-out {
999
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
1000
  animation: uk-slide-right 0.5s ease-in-out reverse;
1001
}
1002
.uk-slideshow-swipe-forward-in:before,
1003
.uk-slideshow-swipe-backward-in:before {
1004
  content: '';
1005
  position: absolute;
1006
  top: 0;
1007
  bottom: 0;
1008
  left: 0;
1009
  right: 0;
1010
  z-index: 1;
1011
  background: rgba(0, 0, 0, 0.6);
1012
  -webkit-animation: uk-fade 0.5s ease-in-out reverse;
1013
  animation: uk-fade 0.5s ease-in-out reverse;
1014
}
1015
/* slider */
1016
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
1017
/* ========================================================================
1018
   Component: Slider
1019
 ========================================================================== */
1020
/*
1021
 * RTL Compatibility
1022
 */
1023
[data-uk-slider] {
1024
  direction: ltr;
1025
}
1026
html[dir="rtl"] .uk-slider > * {
1027
  direction: rtl;
1028
}
1029
/*
1030
 * 1. Create position context
1031
 * 2. Create stacking context to prevent z-index issues with other components
1032
 * 3. Deactivate browser history navigation in IE11
1033
 */
1034
.uk-slider {
1035
  /* 1 */
1036
  position: relative;
1037
  /* 2 */
1038
  z-index: 0;
1039
  /* 3 */
1040
  -ms-touch-action: pan-y;
1041
  touch-action: pan-y;
1042
}
1043
/*
1044
 * 1. Reset list style without interfering with grid
1045
 */
1046
.uk-slider:not(.uk-grid) {
1047
  /* 1 */
1048
  margin: 0;
1049
  padding: 0;
1050
  list-style: none;
1051
}
1052
/*
1053
 * Sub-object item
1054
 * 1. Position items above each other
1055
 */
1056
.uk-slider > * {
1057
  /* 1 */
1058
  position: absolute;
1059
  top: 0;
1060
  left: 0;
1061
}
1062
/*
1063
 * Clip child elements
1064
 */
1065
.uk-slider-container {
1066
  overflow: hidden;
1067
}
1068
/*
1069
 * Dragged
1070
 */
1071
.uk-slider:not(.uk-drag) {
1072
  -webkit-transition: -webkit-transform 200ms linear;
1073
  transition: -webkit-transform 200ms linear;
1074
  transition: transform 200ms linear;
1075
  transition: transform 200ms linear, -webkit-transform 200ms linear;
1076
}
1077
/*
1078
 * 1. Makes text unselectable
1079
 */
1080
.uk-slider.uk-drag {
1081
  cursor: col-resize;
1082
  /* 1 */
1083
  -moz-user-select: none;
1084
  -webkit-user-select: none;
1085
  -ms-user-select: none;
1086
  user-select: none;
1087
}
1088
/*
1089
 * 1. Prevents images and links from being dragged (default browser behavior)
1090
 * 2. Disables the default callout shown when you touch and hold a touch target
1091
 * Currently only works in Webkit
1092
 */
1093
.uk-slider a,
1094
.uk-slider img {
1095
  /* 1 */
1096
  -webkit-user-drag: none;
1097
  user-drag: none;
1098
  /* 2 */
1099
  -webkit-touch-callout: none;
1100
}
1101
/*
1102
 * 1. Prevents images and links from being dragged in Firefox
1103
 */
1104
.uk-slider img {
1105
  pointer-events: none;
1106
}
1107
/* Modifier: `uk-slider-fullscreen`
1108
 ========================================================================== */
1109
.uk-slider-fullscreen,
1110
.uk-slider-fullscreen > li {
1111
  height: 100vh;
1112
}
1113
.uk-slider-container {
1114
  padding: 8px 0;
1115
}
1116
/* slidenav */
1117
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
1118
/* ========================================================================
1119
   Component: Slidenav
1120
 ========================================================================== */
1121
/*
1122
 * 1. Required for `a` elements
1123
 * 2. Dimension
1124
 * 3. Style
1125
 */
1126
.uk-slidenav {
1127
  /* 1 */
1128
  display: inline-block;
1129
  /* 2 */
1130
  -webkit-box-sizing: border-box;
1131
  box-sizing: border-box;
1132
  width: 60px;
1133
  height: 60px;
1134
  /* 3 */
1135
  line-height: 60px;
1136
  color: rgba(50, 50, 50, 0.4);
1137
  font-size: 60px;
1138
  text-align: center;
1139
}
1140
/*
1141
 * Hover
1142
 * 1. Apply hover style also to focus state
1143
 * 2. Remove default focus style
1144
 * 3. Required for `a` elements
1145
 * 4. Style
1146
 */
1147
.uk-slidenav:hover,
1148
.uk-slidenav:focus {
1149
  /* 2 */
1150
  outline: none;
1151
  /* 3 */
1152
  text-decoration: none;
1153
  /* 4 */
1154
  color: rgba(50, 50, 50, 0.7);
1155
  cursor: pointer;
1156
}
1157
/* Active */
1158
.uk-slidenav:active {
1159
  color: rgba(50, 50, 50, 0.9);
1160
}
1161
/*
1162
 * Icons
1163
 */
1164
.uk-slidenav-previous:before {
1165
  content: "\f104";
1166
  font-family: FontAwesome;
1167
}
1168
.uk-slidenav-next:before {
1169
  content: "\f105";
1170
  font-family: FontAwesome;
1171
}
1172
/* Sub-object: `uk-slidenav-position`
1173
 ========================================================================== */
1174
/*
1175
 * Create position context
1176
 */
1177
.uk-slidenav-position {
1178
  position: relative;
1179
}
1180
/*
1181
 * Center vertically
1182
 */
1183
.uk-slidenav-position .uk-slidenav {
1184
  display: none;
1185
  position: absolute;
1186
  top: 50%;
1187
  z-index: 1;
1188
  margin-top: -30px;
1189
}
1190
.uk-slidenav-position:hover .uk-slidenav {
1191
  display: block;
1192
}
1193
.uk-slidenav-position .uk-slidenav-previous {
1194
  left: 20px;
1195
}
1196
.uk-slidenav-position .uk-slidenav-next {
1197
  right: 20px;
1198
}
1199
/* Modifier: `uk-slidenav-contrast`
1200
 ========================================================================== */
1201
.uk-slidenav-contrast {
1202
  color: rgba(255, 255, 255, 0.5);
1203
}
1204
/*
1205
 * Hover
1206
 * 1. Apply hover style also to focus state
1207
 */
1208
.uk-slidenav-contrast:hover,
1209
.uk-slidenav-contrast:focus {
1210
  color: rgba(255, 255, 255, 0.7);
1211
}
1212
/* Active */
1213
.uk-slidenav-contrast:active {
1214
  color: rgba(255, 255, 255, 0.9);
1215
}
1216
/* tooltips */
1217
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
1218
/* ========================================================================
1219
   Component: Tooltip
1220
 ========================================================================== */
1221
/*
1222
 * 1. Hide by default
1223
 * 2. Set fixed position
1224
 * 3. Set dimensions
1225
 * 4. Set style
1226
 */
1227
.uk-tooltip {
1228
  /* 1 */
1229
  display: none;
1230
  /* 2 */
1231
  position: absolute;
1232
  z-index: 1030;
1233
  /* 3 */
1234
  -webkit-box-sizing: border-box;
1235
  box-sizing: border-box;
1236
  max-width: 200px;
1237
  padding: 5px 8px;
1238
  /* 4 */
1239
  background: #333;
1240
  color: rgba(255, 255, 255, 0.7);
1241
  font-size: 12px;
1242
  line-height: 18px;
1243
  border-radius: 3px;
1244
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
1245
}
1246
/* Triangle
1247
 ========================================================================== */
1248
/*
1249
 * 1. Dashed is less antialised than solid
1250
 */
1251
.uk-tooltip:after {
1252
  content: "";
1253
  display: block;
1254
  position: absolute;
1255
  width: 0;
1256
  height: 0;
1257
  /* 1 */
1258
  border: 5px dashed #333;
1259
}
1260
/* Direction modifiers
1261
 ========================================================================== */
1262
/*
1263
 * Top
1264
 */
1265
.uk-tooltip-top:after,
1266
.uk-tooltip-top-left:after,
1267
.uk-tooltip-top-right:after {
1268
  bottom: -5px;
1269
  border-top-style: solid;
1270
  border-bottom: none;
1271
  border-left-color: transparent;
1272
  border-right-color: transparent;
1273
  border-top-color: #333;
1274
}
1275
/*
1276
 * Bottom
1277
 */
1278
.uk-tooltip-bottom:after,
1279
.uk-tooltip-bottom-left:after,
1280
.uk-tooltip-bottom-right:after {
1281
  top: -5px;
1282
  border-bottom-style: solid;
1283
  border-top: none;
1284
  border-left-color: transparent;
1285
  border-right-color: transparent;
1286
  border-bottom-color: #333;
1287
}
1288
/*
1289
 * Top/Bottom center
1290
 */
1291
.uk-tooltip-top:after,
1292
.uk-tooltip-bottom:after {
1293
  left: 50%;
1294
  margin-left: -5px;
1295
}
1296
/*
1297
 * Top/Bottom left
1298
 */
1299
.uk-tooltip-top-left:after,
1300
.uk-tooltip-bottom-left:after {
1301
  left: 10px;
1302
}
1303
/*
1304
 * Top/Bottom right
1305
 */
1306
.uk-tooltip-top-right:after,
1307
.uk-tooltip-bottom-right:after {
1308
  right: 10px;
1309
}
1310
/*
1311
 * Left
1312
 */
1313
.uk-tooltip-left:after {
1314
  right: -5px;
1315
  top: 50%;
1316
  margin-top: -5px;
1317
  border-left-style: solid;
1318
  border-right: none;
1319
  border-top-color: transparent;
1320
  border-bottom-color: transparent;
1321
  border-left-color: #333;
1322
}
1323
/*
1324
 * Right
1325
 */
1326
.uk-tooltip-right:after {
1327
  left: -5px;
1328
  top: 50%;
1329
  margin-top: -5px;
1330
  border-right-style: solid;
1331
  border-left: none;
1332
  border-top-color: transparent;
1333
  border-bottom-color: transparent;
1334
  border-right-color: #333;
1335
}
1336
.uk-tooltip {
1337
  background: #424242;
1338
  color: #fff;
1339
  font-size: 13px;
1340
  padding: 3px 16px;
1341
  line-height: 22px;
1342
  text-shadow: none;
1343
  min-width: 80px;
1344
  text-align: center;
1345
  z-index: 1304;
1346
  opacity: 0;
1347
}
1348
.uk-tooltip .uk-tooltip-inner {
1349
  text-overflow: ellipsis;
1350
  display: inline-block;
1351
  vertical-align: top;
1352
  white-space: nowrap;
1353
  overflow: hidden;
1354
  width: 100%;
1355
}
1356
.uk-tooltip:after {
1357
  display: none !important;
1358
}
1359
.uk-tooltip.long-text {
1360
  text-align: left;
1361
}
1362
.uk-tooltip.long-text .uk-tooltip-inner {
1363
  white-space: normal;
1364
  overflow: visible;
1365
  line-height: 18px;
1366
  padding: 4px 0;
1367
}
1368
.uk-tooltip-small {
1369
  -webkit-transform: scale(0.85);
1370
  transform: scale(0.85);
1371
}
1372
/* tabs */
1373
.uk-tab {
1374
  border-bottom-color: rgba(0, 0, 0, 0.12);
1375
}
1376
.uk-sticky-placeholder .uk-tab {
1377
  background: #fff;
1378
  padding-top: 8px;
1379
}
1380
.uk-tab > li {
1381
  margin-bottom: 0;
1382
  margin-top: 0 ;
1383
  z-index: 1;
1384
}
1385
.uk-tab > li > a {
1386
  font-size: 13px;
1387
  text-transform: uppercase;
1388
  color: #212121;
1389
  border: none;
1390
  border-bottom: 2px solid transparent;
1391
  border-radius: 0 !important;
1392
  font-weight: 500;
1393
  min-width: 100px;
1394
  max-width: 100%;
1395
  text-align: center;
1396
  -webkit-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
1397
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
1398
  padding: 8px !important;
1399
  margin: 0 !important;
1400
  -webkit-box-sizing: border-box;
1401
  box-sizing: border-box;
1402
  position: relative;
1403
  top: 1px;
1404
  text-shadow: none;
1405
}
1406
.uk-tab > li > a:hover,
1407
.uk-tab > li > a:focus {
1408
  background: none;
1409
  color: #212121;
1410
  border-bottom-color: #b2dbfb;
1411
}
1412
.uk-tab > li.uk-active > a {
1413
  background: transparent !important;
1414
  border-bottom-color: #2196f3;
1415
}
1416
.uk-tab > li.uk-disabled > a,
1417
.uk-tab > li.uk-disabled > a:hover,
1418
.uk-tab > li.uk-disabled > a:focus {
1419
  color: #aaa;
1420
}
1421
.uk-tab-bottom li {
1422
  margin-top: 0;
1423
}
1424
.uk-tab-bottom li > a {
1425
  border-top: 2px solid transparent;
1426
  border-bottom: none;
1427
  top: auto;
1428
  bottom: 1px;
1429
}
1430
.uk-tab-bottom li > a:hover,
1431
.uk-tab-bottom li > a:focus {
1432
  border-top-color: #b2dbfb;
1433
}
1434
.uk-tab-bottom li.uk-active > a {
1435
  border-top-color: #2196f3;
1436
}
1437
.uk-tab-left {
1438
  border-bottom: none;
1439
}
1440
.uk-tab-left li > a {
1441
  border-right: 2px solid transparent;
1442
  border-bottom: none;
1443
  text-align: right;
1444
  top: auto;
1445
  bottom: auto;
1446
}
1447
.uk-tab-left li > a:hover,
1448
.uk-tab-left li > a:focus {
1449
  border-right-color: #b2dbfb;
1450
}
1451
.uk-tab-left li.uk-active > a {
1452
  border-right-color: #2196f3;
1453
}
1454
.uk-tab-right {
1455
  border-bottom: none;
1456
}
1457
.uk-tab-right li > a {
1458
  border-left: 2px solid transparent;
1459
  border-bottom: none;
1460
  text-align: left;
1461
  top: auto;
1462
  bottom: auto;
1463
}
1464
.uk-tab-right li > a:hover,
1465
.uk-tab-right li > a:focus {
1466
  border-left-color: #b2dbfb;
1467
}
1468
.uk-tab-right li.uk-active > a {
1469
  border-left-color: #2196f3;
1470
}
1471
.uk-tab-responsive li a {
1472
  border: none !important;
1473
}
1474
.uk-tab-responsive > a:before {
1475
  content: '\e5d2';
1476
  font-family: "Material Icons";
1477
  color: #727272;
1478
  margin-right: 8px;
1479
  vertical-align: -4px;
1480
  font-size: 18px;
1481
}
1482
.uk-tab-icons > li > a {
1483
  min-width: 64px;
1484
}
1485
.uk-tab-icons > li > a > .material-icons {
1486
  font-size: 24px;
1487
}
1488
.uk-tab-double-header {
1489
  margin: 10px 24px 0 !important;
1490
}
1491
.uk-tab-double-header > li > a {
1492
  color: #fff;
1493
  border-bottom: 4px solid transparent;
1494
}
1495
.uk-tab-double-header > li > a:hover,
1496
.uk-tab-double-header > li > a:focus {
1497
  color: #fff;
1498
  border-bottom-color: #39a1f4;
1499
}
1500
.uk-tab-double-header > li.uk-active > a {
1501
  color: #fff;
1502
  border-bottom-color: #7cb342;
1503
}
1504
.uk-tab-double-header > li.uk-tab-responsive > a {
1505
  border-bottom: none;
1506
  padding-bottom: 5px !important;
1507
}
1508
.uk-tab-double-header > li.uk-tab-responsive > a:before {
1509
  color: #fff;
1510
}
1511
.uk-tab-large > li {
1512
  margin-bottom: 0;
1513
  margin-top: 0 ;
1514
  z-index: 1;
1515
}
1516
.uk-tab-large > li > a {
1517
  font-size: 16px;
1518
  padding: 12px 24px !important;
1519
}
1520
/* text truncate */
1521
.uk-text-truncate {
1522
  display: block;
1523
}
1524
.uk-switcher {
1525
  overflow: hidden;
1526
}
1527
.uk-switcher > li {
1528
  padding: 8px 4px;
1529
}
1530
/*
1531
* add extra Uikit grid sizes
1532
*
1533
* usage:
1534
* set custom breakpoint (1480px) and name ("xlarge-x")
1535
* @media (min-width: 1480px) {
1536
*  .add-grid-sizes(xlarge-x);
1537
* }
1538
*/
1539
@media (min-width: 1480px) {
1540
  /* Whole */
1541
  .uk-width-xLarge-1-1,
1542
  .uk-grid-width-xLarge-1-1 > * {
1543
    width: 100%;
1544
  }
1545
  /* Halves */
1546
  .uk-width-xLarge-1-2,
1547
  .uk-width-xLarge-2-4,
1548
  .uk-width-xLarge-3-6,
1549
  .uk-width-xLarge-5-10,
1550
  .uk-grid-width-xLarge-1-2 > *,
1551
  .uk-grid-width-xLarge-2-4 > *,
1552
  .uk-grid-width-xLarge-3-6 > *,
1553
  .uk-grid-width-xLarge-5-10 > * {
1554
    width: 50%;
1555
  }
1556
  /* Thirds */
1557
  .uk-width-xLarge-1-3,
1558
  .uk-width-xLarge-2-6,
1559
  .uk-grid-width-xLarge-1-3 > *,
1560
  .uk-grid-width-xLarge-2-6 > * {
1561
    width: 33.333%;
1562
  }
1563
  .uk-width-xLarge-2-3,
1564
  .uk-width-xLarge-4-6,
1565
  .uk-grid-width-xLarge-2-3 > *,
1566
  .uk-grid-width-xLarge-4-6 > * {
1567
    width: 66.666%;
1568
  }
1569
  /* Quarters */
1570
  .uk-width-xLarge-1-4,
1571
  .uk-grid-width-xLarge-1-4 > * {
1572
    width: 25%;
1573
  }
1574
  .uk-width-xLarge-3-4,
1575
  .uk-grid-width-xLarge-3-4 > * {
1576
    width: 75%;
1577
  }
1578
  /* Fifths */
1579
  .uk-width-xLarge-1-5,
1580
  .uk-width-xLarge-2-10,
1581
  .uk-grid-width-xLarge-1-5 > *,
1582
  .uk-grid-width-xLarge-2-10 > * {
1583
    width: 20%;
1584
  }
1585
  .uk-width-xLarge-2-5,
1586
  .uk-width-xLarge-4-10,
1587
  .uk-grid-width-xLarge-2-5 > *,
1588
  .uk-grid-width-xLarge-4-10 > * {
1589
    width: 40%;
1590
  }
1591
  .uk-width-xLarge-3-5,
1592
  .uk-width-xLarge-6-10,
1593
  .uk-grid-width-xLarge-3-5 > *,
1594
  .uk-grid-width-xLarge-6-10 > * {
1595
    width: 60%;
1596
  }
1597
  .uk-width-xLarge-4-5,
1598
  .uk-width-xLarge-8-10,
1599
  .uk-grid-width-xLarge-4-5 > *,
1600
  .uk-grid-width-xLarge-8-10 > * {
1601
    width: 80%;
1602
  }
1603
  /* Sixths */
1604
  .uk-width-xLarge-1-6,
1605
  .uk-grid-width-xLarge-1-6 > * {
1606
    width: 16.666%;
1607
  }
1608
  .uk-width-xLarge-5-6,
1609
  .uk-grid-width-xLarge-5-6 > * {
1610
    width: 83.333%;
1611
  }
1612
  /* Tenths */
1613
  .uk-width-xLarge-1-10,
1614
  .uk-grid-width-xLarge-1-10 > * {
1615
    width: 10%;
1616
  }
1617
  .uk-width-xLarge-3-10,
1618
  .uk-grid-width-xLarge-3-10 > * {
1619
    width: 30%;
1620
  }
1621
  .uk-width-xLarge-7-10,
1622
  .uk-grid-width-xLarge-7-10 > * {
1623
    width: 70%;
1624
  }
1625
  .uk-width-xLarge-9-10,
1626
  .uk-grid-width-xLarge-9-10 > * {
1627
    width: 90%;
1628
  }
1629
}
1630
/* ie9 fixes */
1631
.lte-ie9 *[class*="uk-animation-"] {
1632
  opacity: 1 !important;
1633
}
1634
/* 3. custom components ============================== */
1635
/* pricing tables */
1636
.pricing_table.pricing_table_a {
1637
  text-align: center;
1638
}
1639
.pricing_table.pricing_table_a .pricing_table_plan {
1640
  font-size: 18px;
1641
  font-weight: 400;
1642
  padding: 16px 0;
1643
  margin-bottom: 16px;
1644
}
1645
.pricing_table.pricing_table_a .pricing_table_price {
1646
  padding: 8px 0 0;
1647
  font-size: 48px;
1648
  margin-bottom: 24px;
1649
}
1650
.pricing_table.pricing_table_a .pricing_table_price .currency {
1651
  vertical-align: top;
1652
  font-size: 24px;
1653
  padding: 0 4px;
1654
}
1655
.pricing_table.pricing_table_a .pricing_table_price .period {
1656
  font-size: 14px;
1657
  padding: 4px;
1658
  color: #aaa;
1659
  display: block;
1660
}
1661
.pricing_table.pricing_table_a .pricing_table_features {
1662
  margin: 0;
1663
  padding: 0;
1664
  list-style: none;
1665
}
1666
.pricing_table.pricing_table_a .pricing_table_features > li {
1667
  padding: 0;
1668
  margin: 0;
1669
  list-style: none;
1670
}
1671
.pricing_table.pricing_table_a .pricing_table_features li {
1672
  font-size: 16px;
1673
  padding: 8px 0;
1674
}
1675
.pricing_table.pricing_table_a .pricing_table_select {
1676
  padding: 32px 0;
1677
}
1678
.pricing_table.pricing_table_b {
1679
  text-align: center;
1680
}
1681
.pricing_table.pricing_table_b .pricing_table_plan {
1682
  font-size: 16px;
1683
  font-weight: 400;
1684
  padding: 16px 0;
1685
  margin-bottom: 16px;
1686
  text-transform: uppercase;
1687
}
1688
.pricing_table.pricing_table_b .pricing_table_price {
1689
  padding: 8px 0 0;
1690
  font-size: 48px;
1691
  margin-bottom: 24px;
1692
}
1693
.pricing_table.pricing_table_b .pricing_table_price .currency {
1694
  vertical-align: top;
1695
  font-size: 24px;
1696
  padding: 0 4px;
1697
}
1698
.pricing_table.pricing_table_b .pricing_table_price .period {
1699
  font-size: 14px;
1700
  padding: 4px;
1701
  color: #aaa;
1702
  display: block;
1703
}
1704
.pricing_table.pricing_table_b .pricing_table_features {
1705
  margin: 0;
1706
  padding: 0;
1707
  list-style: none;
1708
}
1709
.pricing_table.pricing_table_b .pricing_table_features > li {
1710
  padding: 0;
1711
  margin: 0;
1712
  list-style: none;
1713
}
1714
.pricing_table.pricing_table_b .pricing_table_features li {
1715
  font-size: 16px;
1716
  padding: 8px 0;
1717
}
1718
.pricing_table.pricing_table_b .pricing_table_select {
1719
  padding: 32px 0;
1720
}
1721
.pricing_table.pricing_table_c {
1722
  text-align: center;
1723
}
1724
.pricing_table.pricing_table_c .pricing_table_plan {
1725
  font-size: 16px;
1726
  font-weight: 400;
1727
  padding: 16px 0;
1728
  margin-bottom: 8px;
1729
}
1730
.pricing_table.pricing_table_c .pricing_table_price {
1731
  padding: 8px 0 0;
1732
  font-size: 48px;
1733
  margin-bottom: 24px;
1734
}
1735
.pricing_table.pricing_table_c .pricing_table_price .currency {
1736
  vertical-align: top;
1737
  font-size: 24px;
1738
  padding: 0 4px;
1739
}
1740
.pricing_table.pricing_table_c .pricing_table_price .period {
1741
  font-size: 14px;
1742
  color: #aaa;
1743
  vertical-align: 0;
1744
  padding-left: 4px;
1745
}
1746
.pricing_table.pricing_table_c .pricing_table_features {
1747
  margin: 0;
1748
  padding: 0;
1749
  list-style: none;
1750
}
1751
.pricing_table.pricing_table_c .pricing_table_features > li {
1752
  padding: 0;
1753
  margin: 0;
1754
  list-style: none;
1755
}
1756
.pricing_table.pricing_table_c .pricing_table_features li {
1757
  font-size: 16px;
1758
  padding: 8px 0;
1759
}
1760
.pricing_table.pricing_table_c .pricing_table_select {
1761
  padding: 32px 0;
1762
}
1763
.al_timeline {
1764
  position: relative;
1765
  padding: 24px 0 32px;
1766
}
1767
.al_timeline:after {
1768
  position: absolute;
1769
  top: 0;
1770
  bottom: 0;
1771
  margin-left: -2px;
1772
  left: 50%;
1773
  content: '';
1774
  width: 4px;
1775
  background: rgba(255, 255, 255, 0.5);
1776
  display: block;
1777
}
1778
.al_timeline_block:before,
1779
.al_timeline_block:after {
1780
  content: " ";
1781
  display: table;
1782
}
1783
.al_timeline_block:after {
1784
  clear: both;
1785
}
1786
.al_timeline_block + * {
1787
  margin-top: 48px;
1788
}
1789
.al_timeline_block:nth-child(even) .al_timeline_content {
1790
  float: right;
1791
}
1792
.al_timeline_block:nth-child(even) .al_timeline_content:after {
1793
  border-left-color: transparent;
1794
  border-right-color: #fff;
1795
  right: auto;
1796
  left: -20px;
1797
}
1798
.al_timeline_content {
1799
  -webkit-box-sizing: border-box;
1800
  box-sizing: border-box;
1801
  background: #fff;
1802
  width: 44%;
1803
  padding: 16px;
1804
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
1805
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
1806
  position: relative;
1807
  border-radius: 4px;
1808
}
1809
.al_timeline_content:after {
1810
  position: absolute;
1811
  top: 24px;
1812
  right: -20px;
1813
  content: '';
1814
  display: block;
1815
  border: 10px solid transparent;
1816
  border-left-color: #fff;
1817
}
1818
.al_timeline_image {
1819
  position: absolute;
1820
  left: 50%;
1821
  width: 64px;
1822
  height: 64px;
1823
  margin-left: -32px;
1824
  background: #fff;
1825
  border-radius: 50%;
1826
  text-align: center;
1827
  z-index: 10;
1828
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
1829
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
1830
}
1831
.al_timeline_image > i {
1832
  font-size: 32px;
1833
  line-height: 64px;
1834
}
1835
@media only screen and (max-width: 959px) {
1836
  .al_timeline:after {
1837
    margin-left: 0;
1838
    left: 30px;
1839
  }
1840
  .al_timeline_block {
1841
    padding-left: 96px;
1842
  }
1843
  .al_timeline_content {
1844
    width: 100%;
1845
  }
1846
  .al_timeline_content:after {
1847
    border-left-color: transparent;
1848
    border-right-color: #fff;
1849
    right: auto;
1850
    left: -20px;
1851
  }
1852
  .al_timeline_image {
1853
    left: 0;
1854
    margin-left: 0;
1855
  }
1856
}
1857
@media only screen and (max-width: 767px) {
1858
  .al_timeline:after {
1859
    margin-left: 0;
1860
    left: 22px;
1861
  }
1862
  .al_timeline_block {
1863
    padding-left: 72px;
1864
  }
1865
  .al_timeline_content {
1866
    width: 100%;
1867
  }
1868
  .al_timeline_content:after {
1869
    border-left-color: transparent;
1870
    border-right-color: #fff;
1871
    right: auto;
1872
    left: -20px;
1873
    top: 14px;
1874
  }
1875
  .al_timeline_image {
1876
    width: 48px;
1877
    height: 48px;
1878
    left: 0;
1879
    margin-left: 0;
1880
  }
1881
  .al_timeline_image > i {
1882
    line-height: 48px;
1883
    font-size: 24px;
1884
  }
1885
}
1886
/* 4. material designv styles ========================= */
1887
/* bg colors */
1888
.md-bg-cyan {
1889
  background-color: #00acc1 !important;
1890
  color: #fff;
1891
}
1892
.md-bg-light-green {
1893
  background-color: #7cb342 !important;
1894
  color: #fff;
1895
}
1896
.md-bg-grey {
1897
  background-color: #616161 !important;
1898
  color: #fff;
1899
}
1900
.md-bg-red {
1901
  background-color: #d32f2f !important;
1902
  color: #fff;
1903
}
1904
.md-bg-light-blue {
1905
  background-color: #0288d1 !important;
1906
  color: #fff;
1907
}
1908
.md-bg-teal {
1909
  background-color: #00897b !important;
1910
  color: #fff;
1911
}
1912
.md-bg-purple {
1913
  background-color: #8e24aa !important;
1914
  color: #fff;
1915
}
1916
/* buttons */
1917
.md-btn {
1918
  background: #fff;
1919
  border: none;
1920
  border-radius: 2px;
1921
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1922
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
1923
  min-height: 31px;
1924
  min-width: 70px;
1925
  padding: 2px 16px;
1926
  text-align: center;
1927
  text-shadow: none;
1928
  text-transform: uppercase;
1929
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
1930
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
1931
  color: #212121;
1932
  -webkit-box-sizing: border-box;
1933
  box-sizing: border-box;
1934
  cursor: pointer;
1935
  -webkit-appearance: none;
1936
  display: inline-block;
1937
  vertical-align: middle;
1938
  font: 500 14px / 31px "Roboto", sans-serif !important;
1939
}
1940
.md-btn:hover,
1941
.md-btn:focus,
1942
.md-btn:active,
1943
.uk-button-dropdown.uk-open > .md-btn {
1944
  background: #fff;
1945
  outline: none;
1946
  text-decoration: none;
1947
  color: #212121;
1948
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
1949
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
1950
}
1951
.md-btn:active,
1952
.uk-button-dropdown.uk-open > .md-btn {
1953
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
1954
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
1955
}
1956
.md-btn-flat {
1957
  -webkit-box-shadow: none !important;
1958
  box-shadow: none !important;
1959
  background: none;
1960
}
1961
.md-btn-flat:hover,
1962
.md-btn-flat:focus {
1963
  background: rgba(153, 153, 153, 0.2);
1964
}
1965
.md-btn-flat:active {
1966
  background: rgba(153, 153, 153, 0.4);
1967
}
1968
.md-btn-flat-danger,
1969
.md-btn-flat-danger:hover,
1970
.md-btn-flat-danger:focus,
1971
.md-btn-flat-danger:active {
1972
  color: #e53935;
1973
}
1974
.md-btn-flat-danger:hover,
1975
.md-btn-flat-danger:focus,
1976
.md-btn-flat-danger:active {
1977
  background: #fceaea;
1978
}
1979
.md-btn-flat-primary,
1980
.md-btn-flat-primary:hover,
1981
.md-btn-flat-primary:focus,
1982
.md-btn-flat-primary:active {
1983
  color: #1976d2;
1984
}
1985
.md-btn-flat-primary:hover,
1986
.md-btn-flat-primary:focus,
1987
.md-btn-flat-primary:active {
1988
  background: #e3f2fd;
1989
}
1990
.md-btn-flat-success,
1991
.md-btn-flat-success:hover,
1992
.md-btn-flat-success:focus,
1993
.md-btn-flat-success:active {
1994
  color: #7cb342;
1995
}
1996
.md-btn-flat-success:hover,
1997
.md-btn-flat-success:focus,
1998
.md-btn-flat-success:active {
1999
  background: #e1efd2;
2000
}
2001
.md-btn-flat-warning,
2002
.md-btn-flat-warning:hover,
2003
.md-btn-flat-warning:focus,
2004
.md-btn-flat-warning:active {
2005
  color: #ffa000;
2006
}
2007
.md-btn-flat-warning:hover,
2008
.md-btn-flat-warning:focus,
2009
.md-btn-flat-warning:active {
2010
  background: #ffeccc;
2011
}
2012
.md-btn-flat.disabled {
2013
  background: none !important;
2014
}
2015
.md-btn-danger,
2016
.md-btn-danger:hover,
2017
.md-btn-danger:focus,
2018
.md-btn-danger:active {
2019
  background: #e53935;
2020
}
2021
.md-btn-primary,
2022
.md-btn-primary:hover,
2023
.md-btn-primary:focus,
2024
.md-btn-primary:active {
2025
  background: #2196f3;
2026
}
2027
.md-btn-success,
2028
.md-btn-success:hover,
2029
.md-btn-success:focus,
2030
.md-btn-success:active {
2031
  background: #7cb342;
2032
}
2033
.md-btn-warning,
2034
.md-btn-warning:hover,
2035
.md-btn-warning:focus,
2036
.md-btn-warning:active {
2037
  background: #ffa000;
2038
}
2039
.md-btn-danger,
2040
.md-btn-primary,
2041
.md-btn-success,
2042
.md-btn-warning,
2043
.md-btn-danger:hover,
2044
.md-btn-primary:hover,
2045
.md-btn-success:hover,
2046
.md-btn-warning:hover,
2047
.md-btn-danger:focus,
2048
.md-btn-primary:focus,
2049
.md-btn-success:focus,
2050
.md-btn-warning:focus,
2051
.md-btn-danger:active,
2052
.md-btn-primary:active,
2053
.md-btn-success:active,
2054
.md-btn-warning:active,
2055
.md-btn-danger > i,
2056
.md-btn-primary > i,
2057
.md-btn-success > i,
2058
.md-btn-warning > i {
2059
  color: #fff;
2060
}
2061
.md-btn.disabled,
2062
.md-btn.disabled:hover,
2063
.md-btn.disabled:focus,
2064
.md-btn.disabled:active {
2065
  color: #a8a8a8;
2066
  background: #eaeaea;
2067
  -webkit-box-shadow: none !important;
2068
  box-shadow: none !important;
2069
  cursor: default;
2070
  pointer-events: none;
2071
}
2072
.md-btn > i.material-icons {
2073
  margin-top: 5px;
2074
  font-size: 18px;
2075
}
2076
.md-btn-mini {
2077
  line-height: 21px !important;
2078
  min-width: 12px;
2079
  font-size: 10px !important;
2080
  min-height: 24px;
2081
}
2082
.md-btn-small {
2083
  line-height: 27px !important;
2084
  min-width: 14px;
2085
  font-size: 11px !important;
2086
}
2087
.md-btn-large {
2088
  line-height: 42px !important;
2089
  font-size: 16px !important;
2090
}
2091
.md-btn::-moz-focus-inner {
2092
  border: 0;
2093
  padding: 0;
2094
}
2095
.md-btn + .md-btn {
2096
  margin-left: 8px;
2097
}
2098
.md-btn-block {
2099
  width: 100%;
2100
}
2101
.md-btn-block + .md-btn-block {
2102
  margin-left: 0;
2103
  margin-top: 12px;
2104
}
2105
.md-btn + .md-btn-group {
2106
  margin-left: 16px;
2107
}
2108
.md-btn-facebook {
2109
  background: #3b5998 !important;
2110
}
2111
.md-btn-twitter {
2112
  background: #00aced !important;
2113
}
2114
.md-btn-gplus {
2115
  background: #dd4b39 !important;
2116
}
2117
.md-btn-facebook,
2118
.md-btn-twitter,
2119
.md-btn-gplus,
2120
.md-btn-facebook > i,
2121
.md-btn-twitter > i,
2122
.md-btn-gplus > i {
2123
  color: #fff !important;
2124
}
2125
.md-btn-icon > i.no_margin {
2126
  margin-right: 0 !important;
2127
  margin-left: 0 !important;
2128
}
2129
.md-btn-icon-large,
2130
.md-btn-icon.md-btn-large {
2131
  min-width: 72px;
2132
}
2133
.md-btn-icon-large > i,
2134
.md-btn-icon.md-btn-large > i {
2135
  font-size: 24px;
2136
  margin-right: 12px;
2137
  vertical-align: -3px;
2138
}
2139
.md-btn-icon-default,
2140
.md-btn-icon {
2141
  min-width: 64px;
2142
}
2143
.md-btn-icon-default > i,
2144
.md-btn-icon > i {
2145
  font-size: 18px;
2146
  margin-right: 8px;
2147
  vertical-align: -2px;
2148
}
2149
.md-btn-icon-small,
2150
.md-btn-icon.md-btn-small {
2151
  min-width: 48px;
2152
}
2153
.md-btn-icon-small > i,
2154
.md-btn-icon.md-btn-small > i {
2155
  font-size: 16px;
2156
  margin-right: 6px;
2157
  vertical-align: -2px;
2158
}
2159
.md-btn-icon-mini,
2160
.md-btn-icon.md-btn-mini {
2161
  min-width: 36px;
2162
}
2163
.md-btn-icon-mini > i,
2164
.md-btn-icon.md-btn-mini > i {
2165
  font-size: 16px;
2166
  margin-right: 4px;
2167
  vertical-align: -2px;
2168
}
2169
.md-fab {
2170
  -webkit-box-sizing: border-box;
2171
  box-sizing: border-box;
2172
  width: 64px;
2173
  height: 64px;
2174
  border-radius: 50%;
2175
  background: #fff;
2176
  color: #727272;
2177
  display: block;
2178
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2179
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2180
  -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
2181
  transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
2182
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
2183
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
2184
  border: none;
2185
  position: relative;
2186
  text-align: center;
2187
  cursor: pointer;
2188
}
2189
.md-fab:hover,
2190
.md-fab:focus,
2191
.md-fab:active {
2192
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
2193
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
2194
}
2195
.md-fab > i {
2196
  font-size: 36px;
2197
  line-height: 64px;
2198
  height: inherit;
2199
  width: inherit;
2200
  position: absolute;
2201
  left: 0;
2202
  top: 0;
2203
  color: #727272;
2204
}
2205
.md-fab.md-fab-accent {
2206
  background: #7cb342;
2207
}
2208
.md-fab.md-fab-accent > i {
2209
  color: #fff;
2210
}
2211
.md-fab.md-fab-success {
2212
  background: #7cb342;
2213
}
2214
.md-fab.md-fab-success > i {
2215
  color: #fff;
2216
}
2217
.md-fab.md-fab-danger {
2218
  background: #e53935;
2219
}
2220
.md-fab.md-fab-danger > i {
2221
  color: #fff;
2222
}
2223
.md-fab.md-fab-primary {
2224
  background: #2196f3;
2225
}
2226
.md-fab.md-fab-primary > i {
2227
  color: #fff;
2228
}
2229
.md-fab.md-fab-warning {
2230
  background: #ffa000;
2231
}
2232
.md-fab.md-fab-warning > i {
2233
  color: #fff;
2234
}
2235
.md-fab.md-fab-small {
2236
  width: 48px;
2237
  height: 48px;
2238
  border-radius: 50%;
2239
}
2240
.md-fab.md-fab-small > i {
2241
  line-height: 48px;
2242
  height: inherit;
2243
  width: inherit;
2244
  font-size: 24px;
2245
}
2246
.md-fab-speed-dial .md-fab-action-close {
2247
  display: none;
2248
}
2249
.md-fab-wrapper {
2250
  position: fixed;
2251
  bottom: 24px;
2252
  right: 24px;
2253
  z-index: 1004;
2254
  -webkit-transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
2255
  transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
2256
}
2257
@media only screen and (max-width: 767px) {
2258
  .md-fab-wrapper {
2259
    bottom: 20px;
2260
    right: 20px;
2261
  }
2262
}
2263
.md-fab-wrapper > .md-fab + .md-fab {
2264
  margin-top: 16px;
2265
}
2266
.md-fab-wrapper.md-fab-in-card {
2267
  position: absolute;
2268
}
2269
.md-fab-speed-dial .md-fab-wrapper-small {
2270
  position: absolute;
2271
  bottom: 80px;
2272
  right: 8px;
2273
  min-height: 48px;
2274
  width: 48px;
2275
  z-index: -1;
2276
}
2277
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small {
2278
  -webkit-transform: scale(0);
2279
  transform: scale(0);
2280
  opacity: 0;
2281
  position: absolute;
2282
  right: 0;
2283
}
2284
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(1) {
2285
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
2286
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
2287
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
2288
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
2289
}
2290
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(2) {
2291
  bottom: 64px;
2292
}
2293
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(2) {
2294
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
2295
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
2296
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
2297
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
2298
}
2299
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(3) {
2300
  bottom: 128px;
2301
}
2302
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(3) {
2303
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
2304
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
2305
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
2306
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
2307
}
2308
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(4) {
2309
  bottom: 192px;
2310
}
2311
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(4) {
2312
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
2313
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
2314
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
2315
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
2316
}
2317
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(5) {
2318
  bottom: 256px;
2319
}
2320
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(5) {
2321
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
2322
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
2323
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
2324
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
2325
}
2326
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(6) {
2327
  bottom: 320px;
2328
}
2329
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(6) {
2330
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
2331
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
2332
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
2333
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
2334
}
2335
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(7) {
2336
  bottom: 384px;
2337
}
2338
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(7) {
2339
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
2340
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
2341
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
2342
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
2343
}
2344
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(8) {
2345
  bottom: 448px;
2346
}
2347
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(8) {
2348
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
2349
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
2350
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
2351
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
2352
}
2353
.md-fab-speed-dial.md-fab-active .md-fab-small {
2354
  -webkit-transform: scale(1);
2355
  transform: scale(1);
2356
  opacity: 1;
2357
  z-index: 10;
2358
}
2359
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(1) {
2360
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
2361
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
2362
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
2363
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
2364
}
2365
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(2) {
2366
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
2367
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
2368
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
2369
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
2370
}
2371
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(3) {
2372
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
2373
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
2374
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
2375
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
2376
}
2377
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(4) {
2378
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
2379
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
2380
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
2381
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
2382
}
2383
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(5) {
2384
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
2385
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
2386
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
2387
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
2388
}
2389
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(6) {
2390
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
2391
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
2392
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
2393
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
2394
}
2395
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(7) {
2396
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
2397
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
2398
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
2399
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
2400
}
2401
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(8) {
2402
  -webkit-transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
2403
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
2404
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
2405
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
2406
}
2407
.md-fab-toolbar {
2408
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
2409
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
2410
  cursor: default;
2411
}
2412
.md-fab-toolbar > i {
2413
  cursor: pointer;
2414
}
2415
.md-fab-toolbar-actions {
2416
  visibility: hidden;
2417
  white-space: nowrap;
2418
  padding: 0 16px;
2419
  overflow: hidden;
2420
  -webkit-box-sizing: border-box;
2421
  box-sizing: border-box;
2422
}
2423
.md-fab-toolbar-actions > a,
2424
.md-fab-toolbar-actions > button {
2425
  display: block;
2426
  float: left;
2427
  opacity: 0;
2428
  margin: 0 0 0 16px;
2429
  height: 64px;
2430
  width: 48px;
2431
  -webkit-box-sizing: border-box;
2432
  box-sizing: border-box;
2433
  -webkit-transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
2434
  transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
2435
  background: none;
2436
  border: none;
2437
  outline: none;
2438
  cursor: pointer;
2439
}
2440
.md-fab-toolbar-actions > a:first-child,
2441
.md-fab-toolbar-actions > button:first-child {
2442
  margin-left: 0;
2443
}
2444
.md-fab-toolbar-actions .material-icons {
2445
  font-size: 36px;
2446
  line-height: 64px;
2447
}
2448
.md-fab-toolbar.md-fab-animated {
2449
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2450
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2451
  border-radius: 4px;
2452
}
2453
.md-fab-toolbar.md-fab-animated > i {
2454
  display: none;
2455
}
2456
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions {
2457
  visibility: visible;
2458
}
2459
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions > a,
2460
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions > button {
2461
  opacity: 1;
2462
}
2463
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > a,
2464
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > button {
2465
  height: 48px;
2466
  width: 36px;
2467
  padding: 0;
2468
  margin: 0 0 0 8px;
2469
}
2470
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > a:first-child,
2471
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > button:first-child {
2472
  margin-left: 0;
2473
}
2474
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions .material-icons {
2475
  font-size: 24px;
2476
  line-height: 48px;
2477
  height: inherit;
2478
}
2479
.md-fab-sheet {
2480
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
2481
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
2482
  cursor: default;
2483
}
2484
.md-fab-sheet > i {
2485
  cursor: pointer;
2486
}
2487
.md-fab-sheet-actions {
2488
  visibility: hidden;
2489
  white-space: nowrap;
2490
  overflow: hidden;
2491
  -webkit-box-sizing: border-box;
2492
  box-sizing: border-box;
2493
  padding: 4px 0;
2494
}
2495
.md-fab-sheet-actions > a {
2496
  display: block;
2497
  opacity: 0;
2498
  padding: 4px 16px;
2499
  -webkit-box-sizing: border-box;
2500
  box-sizing: border-box;
2501
  font: 400 16px / 32px "Roboto", sans-serif;
2502
  text-align: left;
2503
}
2504
.md-fab-sheet-actions > a,
2505
.md-fab-sheet-actions > a:hover {
2506
  color: #212121;
2507
}
2508
.md-fab-sheet-actions .material-icons {
2509
  font-size: 24px;
2510
  margin-right: 8px;
2511
  vertical-align: -6px;
2512
}
2513
.md-fab-sheet.md-fab-animated {
2514
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2515
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
2516
  border-radius: 4px;
2517
}
2518
.md-fab-sheet.md-fab-animated > i {
2519
  display: none;
2520
}
2521
.md-fab-sheet.md-fab-active .md-fab-sheet-actions {
2522
  visibility: visible;
2523
}
2524
.md-fab-sheet.md-fab-active .md-fab-sheet-actions > a {
2525
  opacity: 1;
2526
}
2527
.sidebar_secondary_active .md-fab-wrapper {
2528
  margin-right: 264px;
2529
}
2530
@media only screen and (max-width: 767px) {
2531
  .sidebar_secondary_active .md-fab-wrapper {
2532
    margin-right: 280px;
2533
  }
2534
}
2535
.md-toggle-group .md-toggle-button {
2536
  border-width: 0 0 2px;
2537
  border-style: solid;
2538
  border-color: transparent;
2539
  background: none;
2540
  line-height: 30px;
2541
  min-width: 42px;
2542
  text-align: center;
2543
  padding: 0 8px;
2544
  vertical-align: middle;
2545
  cursor: pointer;
2546
}
2547
.md-toggle-group .md-toggle-button.md-toggle-active {
2548
  border-bottom-color: #212121;
2549
}
2550
.md-toggle-group.md-toggle-group-small .md-toggle-button {
2551
  font-size: 11px;
2552
  line-height: 24px;
2553
  min-width: 16px;
2554
  padding: 0 6px;
2555
}
2556
.md-btn-group {
2557
  display: inline-block;
2558
  vertical-align: top;
2559
  position: relative;
2560
  font-size: 0;
2561
  white-space: nowrap;
2562
}
2563
.md-btn-group .md-btn {
2564
  vertical-align: top;
2565
  margin-left: 0 !important;
2566
}
2567
.md-btn-group .md-btn:first-child {
2568
  border-top-right-radius: 0;
2569
  border-bottom-right-radius: 0;
2570
}
2571
.md-btn-group .md-btn:not(:first-child):not(:last-child) {
2572
  border-radius: 0;
2573
}
2574
.md-btn-group .md-btn:last-child {
2575
  border-top-left-radius: 0;
2576
  border-bottom-left-radius: 0;
2577
}
2578
.md-color-red-50 {
2579
  color: #ffebee !important;
2580
}
2581
.md-bg-red-50 {
2582
  background-color: #ffebee !important;
2583
}
2584
.md-color-red-100 {
2585
  color: #ffcdd2 !important;
2586
}
2587
.md-bg-red-100 {
2588
  background-color: #ffcdd2 !important;
2589
}
2590
.md-color-red-200 {
2591
  color: #ef9a9a !important;
2592
}
2593
.md-bg-red-200 {
2594
  background-color: #ef9a9a !important;
2595
}
2596
.md-color-red-300 {
2597
  color: #e57373 !important;
2598
}
2599
.md-bg-red-300 {
2600
  background-color: #e57373 !important;
2601
}
2602
.md-color-red-400 {
2603
  color: #ef5350 !important;
2604
}
2605
.md-bg-red-400 {
2606
  background-color: #ef5350 !important;
2607
}
2608
.md-color-red-500 {
2609
  color: #f44336 !important;
2610
}
2611
.md-bg-red-500 {
2612
  background-color: #f44336 !important;
2613
}
2614
.md-color-red-600 {
2615
  color: #e53935 !important;
2616
}
2617
.md-bg-red-600 {
2618
  background-color: #e53935 !important;
2619
}
2620
.md-color-red-700 {
2621
  color: #d32f2f !important;
2622
}
2623
.md-bg-red-700 {
2624
  background-color: #d32f2f !important;
2625
}
2626
.md-color-red-800 {
2627
  color: #c62828 !important;
2628
}
2629
.md-bg-red-800 {
2630
  background-color: #c62828 !important;
2631
}
2632
.md-color-red-900 {
2633
  color: #b71c1c !important;
2634
}
2635
.md-bg-red-900 {
2636
  background-color: #b71c1c !important;
2637
}
2638
.md-color-red-A100 {
2639
  color: #ff8a80 !important;
2640
}
2641
.md-bg-red-A100 {
2642
  background-color: #ff8a80 !important;
2643
}
2644
.md-color-red-A200 {
2645
  color: #ff5252 !important;
2646
}
2647
.md-bg-red-A200 {
2648
  background-color: #ff5252 !important;
2649
}
2650
.md-color-red-A400 {
2651
  color: #ff1744 !important;
2652
}
2653
.md-bg-red-A400 {
2654
  background-color: #ff1744 !important;
2655
}
2656
.md-color-red-A700 {
2657
  color: #d50000 !important;
2658
}
2659
.md-bg-red-A700 {
2660
  background-color: #d50000 !important;
2661
}
2662
.md-color-pink-50 {
2663
  color: #fce4ec !important;
2664
}
2665
.md-bg-pink-50 {
2666
  background-color: #fce4ec !important;
2667
}
2668
.md-color-pink-100 {
2669
  color: #f8bbd0 !important;
2670
}
2671
.md-bg-pink-100 {
2672
  background-color: #f8bbd0 !important;
2673
}
2674
.md-color-pink-200 {
2675
  color: #f48fb1 !important;
2676
}
2677
.md-bg-pink-200 {
2678
  background-color: #f48fb1 !important;
2679
}
2680
.md-color-pink-300 {
2681
  color: #f06292 !important;
2682
}
2683
.md-bg-pink-300 {
2684
  background-color: #f06292 !important;
2685
}
2686
.md-color-pink-400 {
2687
  color: #ec407a !important;
2688
}
2689
.md-bg-pink-400 {
2690
  background-color: #ec407a !important;
2691
}
2692
.md-color-pink-500 {
2693
  color: #e91e63 !important;
2694
}
2695
.md-bg-pink-500 {
2696
  background-color: #e91e63 !important;
2697
}
2698
.md-color-pink-600 {
2699
  color: #d81b60 !important;
2700
}
2701
.md-bg-pink-600 {
2702
  background-color: #d81b60 !important;
2703
}
2704
.md-color-pink-700 {
2705
  color: #c2185b !important;
2706
}
2707
.md-bg-pink-700 {
2708
  background-color: #c2185b !important;
2709
}
2710
.md-color-pink-800 {
2711
  color: #ad1457 !important;
2712
}
2713
.md-bg-pink-800 {
2714
  background-color: #ad1457 !important;
2715
}
2716
.md-color-pink-900 {
2717
  color: #880e4f !important;
2718
}
2719
.md-bg-pink-900 {
2720
  background-color: #880e4f !important;
2721
}
2722
.md-color-pink-A100 {
2723
  color: #ff80ab !important;
2724
}
2725
.md-bg-pink-A100 {
2726
  background-color: #ff80ab !important;
2727
}
2728
.md-color-pink-A200 {
2729
  color: #ff4081 !important;
2730
}
2731
.md-bg-pink-A200 {
2732
  background-color: #ff4081 !important;
2733
}
2734
.md-color-pink-A400 {
2735
  color: #f50057 !important;
2736
}
2737
.md-bg-pink-A400 {
2738
  background-color: #f50057 !important;
2739
}
2740
.md-color-pink-A700 {
2741
  color: #c51162 !important;
2742
}
2743
.md-bg-pink-A700 {
2744
  background-color: #c51162 !important;
2745
}
2746
.md-color-purple-50 {
2747
  color: #f3e5f5 !important;
2748
}
2749
.md-bg-purple-50 {
2750
  background-color: #f3e5f5 !important;
2751
}
2752
.md-color-purple-100 {
2753
  color: #e1bee7 !important;
2754
}
2755
.md-bg-purple-100 {
2756
  background-color: #e1bee7 !important;
2757
}
2758
.md-color-purple-200 {
2759
  color: #ce93d8 !important;
2760
}
2761
.md-bg-purple-200 {
2762
  background-color: #ce93d8 !important;
2763
}
2764
.md-color-purple-300 {
2765
  color: #ba68c8 !important;
2766
}
2767
.md-bg-purple-300 {
2768
  background-color: #ba68c8 !important;
2769
}
2770
.md-color-purple-400 {
2771
  color: #ab47bc !important;
2772
}
2773
.md-bg-purple-400 {
2774
  background-color: #ab47bc !important;
2775
}
2776
.md-color-purple-500 {
2777
  color: #9c27b0 !important;
2778
}
2779
.md-bg-purple-500 {
2780
  background-color: #9c27b0 !important;
2781
}
2782
.md-color-purple-600 {
2783
  color: #8e24aa !important;
2784
}
2785
.md-bg-purple-600 {
2786
  background-color: #8e24aa !important;
2787
}
2788
.md-color-purple-700 {
2789
  color: #7b1fa2 !important;
2790
}
2791
.md-bg-purple-700 {
2792
  background-color: #7b1fa2 !important;
2793
}
2794
.md-color-purple-800 {
2795
  color: #6a1b9a !important;
2796
}
2797
.md-bg-purple-800 {
2798
  background-color: #6a1b9a !important;
2799
}
2800
.md-color-purple-900 {
2801
  color: #4a148c !important;
2802
}
2803
.md-bg-purple-900 {
2804
  background-color: #4a148c !important;
2805
}
2806
.md-color-purple-A100 {
2807
  color: #ea80fc !important;
2808
}
2809
.md-bg-purple-A100 {
2810
  background-color: #ea80fc !important;
2811
}
2812
.md-color-purple-A200 {
2813
  color: #e040fb !important;
2814
}
2815
.md-bg-purple-A200 {
2816
  background-color: #e040fb !important;
2817
}
2818
.md-color-purple-A400 {
2819
  color: #d500f9 !important;
2820
}
2821
.md-bg-purple-A400 {
2822
  background-color: #d500f9 !important;
2823
}
2824
.md-color-purple-A700 {
2825
  color: #aa00ff !important;
2826
}
2827
.md-bg-purple-A700 {
2828
  background-color: #aa00ff !important;
2829
}
2830
.md-color-deep-purple-50 {
2831
  color: #ede7f6 !important;
2832
}
2833
.md-bg-deep-purple-50 {
2834
  background-color: #ede7f6 !important;
2835
}
2836
.md-color-deep-purple-100 {
2837
  color: #d1c4e9 !important;
2838
}
2839
.md-bg-deep-purple-100 {
2840
  background-color: #d1c4e9 !important;
2841
}
2842
.md-color-deep-purple-200 {
2843
  color: #b39ddb !important;
2844
}
2845
.md-bg-deep-purple-200 {
2846
  background-color: #b39ddb !important;
2847
}
2848
.md-color-deep-purple-300 {
2849
  color: #9575cd !important;
2850
}
2851
.md-bg-deep-purple-300 {
2852
  background-color: #9575cd !important;
2853
}
2854
.md-color-deep-purple-400 {
2855
  color: #7e57c2 !important;
2856
}
2857
.md-bg-deep-purple-400 {
2858
  background-color: #7e57c2 !important;
2859
}
2860
.md-color-deep-purple-500 {
2861
  color: #673ab7 !important;
2862
}
2863
.md-bg-deep-purple-500 {
2864
  background-color: #673ab7 !important;
2865
}
2866
.md-color-deep-purple-600 {
2867
  color: #5e35b1 !important;
2868
}
2869
.md-bg-deep-purple-600 {
2870
  background-color: #5e35b1 !important;
2871
}
2872
.md-color-deep-purple-700 {
2873
  color: #512da8 !important;
2874
}
2875
.md-bg-deep-purple-700 {
2876
  background-color: #512da8 !important;
2877
}
2878
.md-color-deep-purple-800 {
2879
  color: #4527a0 !important;
2880
}
2881
.md-bg-deep-purple-800 {
2882
  background-color: #4527a0 !important;
2883
}
2884
.md-color-deep-purple-900 {
2885
  color: #311b92 !important;
2886
}
2887
.md-bg-deep-purple-900 {
2888
  background-color: #311b92 !important;
2889
}
2890
.md-color-deep-purple-A100 {
2891
  color: #b388ff !important;
2892
}
2893
.md-bg-deep-purple-A100 {
2894
  background-color: #b388ff !important;
2895
}
2896
.md-color-deep-purple-A200 {
2897
  color: #7c4dff !important;
2898
}
2899
.md-bg-deep-purple-A200 {
2900
  background-color: #7c4dff !important;
2901
}
2902
.md-color-deep-purple-A400 {
2903
  color: #651fff !important;
2904
}
2905
.md-bg-deep-purple-A400 {
2906
  background-color: #651fff !important;
2907
}
2908
.md-color-deep-purple-A700 {
2909
  color: #6200ea !important;
2910
}
2911
.md-bg-deep-purple-A700 {
2912
  background-color: #6200ea !important;
2913
}
2914
.md-color-indigo-50 {
2915
  color: #e8eaf6 !important;
2916
}
2917
.md-bg-indigo-50 {
2918
  background-color: #e8eaf6 !important;
2919
}
2920
.md-color-indigo-100 {
2921
  color: #c5cae9 !important;
2922
}
2923
.md-bg-indigo-100 {
2924
  background-color: #c5cae9 !important;
2925
}
2926
.md-color-indigo-200 {
2927
  color: #9fa8da !important;
2928
}
2929
.md-bg-indigo-200 {
2930
  background-color: #9fa8da !important;
2931
}
2932
.md-color-indigo-300 {
2933
  color: #7986cb !important;
2934
}
2935
.md-bg-indigo-300 {
2936
  background-color: #7986cb !important;
2937
}
2938
.md-color-indigo-400 {
2939
  color: #5c6bc0 !important;
2940
}
2941
.md-bg-indigo-400 {
2942
  background-color: #5c6bc0 !important;
2943
}
2944
.md-color-indigo-500 {
2945
  color: #3f51b5 !important;
2946
}
2947
.md-bg-indigo-500 {
2948
  background-color: #3f51b5 !important;
2949
}
2950
.md-color-indigo-600 {
2951
  color: #3949ab !important;
2952
}
2953
.md-bg-indigo-600 {
2954
  background-color: #3949ab !important;
2955
}
2956
.md-color-indigo-700 {
2957
  color: #303f9f !important;
2958
}
2959
.md-bg-indigo-700 {
2960
  background-color: #303f9f !important;
2961
}
2962
.md-color-indigo-800 {
2963
  color: #283593 !important;
2964
}
2965
.md-bg-indigo-800 {
2966
  background-color: #283593 !important;
2967
}
2968
.md-color-indigo-900 {
2969
  color: #1a237e !important;
2970
}
2971
.md-bg-indigo-900 {
2972
  background-color: #1a237e !important;
2973
}
2974
.md-color-indigo-A100 {
2975
  color: #8c9eff !important;
2976
}
2977
.md-bg-indigo-A100 {
2978
  background-color: #8c9eff !important;
2979
}
2980
.md-color-indigo-A200 {
2981
  color: #536dfe !important;
2982
}
2983
.md-bg-indigo-A200 {
2984
  background-color: #536dfe !important;
2985
}
2986
.md-color-indigo-A400 {
2987
  color: #3d5afe !important;
2988
}
2989
.md-bg-indigo-A400 {
2990
  background-color: #3d5afe !important;
2991
}
2992
.md-color-indigo-A700 {
2993
  color: #304ffe !important;
2994
}
2995
.md-bg-indigo-A700 {
2996
  background-color: #304ffe !important;
2997
}
2998
.md-color-blue-50 {
2999
  color: #e3f2fd !important;
3000
}
3001
.md-bg-blue-50 {
3002
  background-color: #e3f2fd !important;
3003
}
3004
.md-color-blue-100 {
3005
  color: #bbdefb !important;
3006
}
3007
.md-bg-blue-100 {
3008
  background-color: #bbdefb !important;
3009
}
3010
.md-color-blue-200 {
3011
  color: #90caf9 !important;
3012
}
3013
.md-bg-blue-200 {
3014
  background-color: #90caf9 !important;
3015
}
3016
.md-color-blue-300 {
3017
  color: #64b5f6 !important;
3018
}
3019
.md-bg-blue-300 {
3020
  background-color: #64b5f6 !important;
3021
}
3022
.md-color-blue-400 {
3023
  color: #42a5f5 !important;
3024
}
3025
.md-bg-blue-400 {
3026
  background-color: #42a5f5 !important;
3027
}
3028
.md-color-blue-500 {
3029
  color: #2196f3 !important;
3030
}
3031
.md-bg-blue-500 {
3032
  background-color: #2196f3 !important;
3033
}
3034
.md-color-blue-600 {
3035
  color: #1e88e5 !important;
3036
}
3037
.md-bg-blue-600 {
3038
  background-color: #1e88e5 !important;
3039
}
3040
.md-color-blue-700 {
3041
  color: #1976d2 !important;
3042
}
3043
.md-bg-blue-700 {
3044
  background-color: #1976d2 !important;
3045
}
3046
.md-color-blue-800 {
3047
  color: #1565c0 !important;
3048
}
3049
.md-bg-blue-800 {
3050
  background-color: #1565c0 !important;
3051
}
3052
.md-color-blue-900 {
3053
  color: #0d47a1 !important;
3054
}
3055
.md-bg-blue-900 {
3056
  background-color: #0d47a1 !important;
3057
}
3058
.md-color-blue-A100 {
3059
  color: #82b1ff !important;
3060
}
3061
.md-bg-blue-A100 {
3062
  background-color: #82b1ff !important;
3063
}
3064
.md-color-blue-A200 {
3065
  color: #448aff !important;
3066
}
3067
.md-bg-blue-A200 {
3068
  background-color: #448aff !important;
3069
}
3070
.md-color-blue-A400 {
3071
  color: #2979ff !important;
3072
}
3073
.md-bg-blue-A400 {
3074
  background-color: #2979ff !important;
3075
}
3076
.md-color-blue-A700 {
3077
  color: #2962ff !important;
3078
}
3079
.md-bg-blue-A700 {
3080
  background-color: #2962ff !important;
3081
}
3082
.md-color-light-blue-50 {
3083
  color: #e1f5fe !important;
3084
}
3085
.md-bg-light-blue-50 {
3086
  background-color: #e1f5fe !important;
3087
}
3088
.md-color-light-blue-100 {
3089
  color: #b3e5fc !important;
3090
}
3091
.md-bg-light-blue-100 {
3092
  background-color: #b3e5fc !important;
3093
}
3094
.md-color-light-blue-200 {
3095
  color: #81d4fa !important;
3096
}
3097
.md-bg-light-blue-200 {
3098
  background-color: #81d4fa !important;
3099
}
3100
.md-color-light-blue-300 {
3101
  color: #4fc3f7 !important;
3102
}
3103
.md-bg-light-blue-300 {
3104
  background-color: #4fc3f7 !important;
3105
}
3106
.md-color-light-blue-400 {
3107
  color: #29b6f6 !important;
3108
}
3109
.md-bg-light-blue-400 {
3110
  background-color: #29b6f6 !important;
3111
}
3112
.md-color-light-blue-500 {
3113
  color: #03a9f4 !important;
3114
}
3115
.md-bg-light-blue-500 {
3116
  background-color: #03a9f4 !important;
3117
}
3118
.md-color-light-blue-600 {
3119
  color: #039be5 !important;
3120
}
3121
.md-bg-light-blue-600 {
3122
  background-color: #039be5 !important;
3123
}
3124
.md-color-light-blue-700 {
3125
  color: #0288d1 !important;
3126
}
3127
.md-bg-light-blue-700 {
3128
  background-color: #0288d1 !important;
3129
}
3130
.md-color-light-blue-800 {
3131
  color: #0277bd !important;
3132
}
3133
.md-bg-light-blue-800 {
3134
  background-color: #0277bd !important;
3135
}
3136
.md-color-light-blue-900 {
3137
  color: #01579b !important;
3138
}
3139
.md-bg-light-blue-900 {
3140
  background-color: #01579b !important;
3141
}
3142
.md-color-light-blue-A100 {
3143
  color: #80d8ff !important;
3144
}
3145
.md-bg-light-blue-A100 {
3146
  background-color: #80d8ff !important;
3147
}
3148
.md-color-light-blue-A200 {
3149
  color: #40c4ff !important;
3150
}
3151
.md-bg-light-blue-A200 {
3152
  background-color: #40c4ff !important;
3153
}
3154
.md-color-light-blue-A400 {
3155
  color: #00b0ff !important;
3156
}
3157
.md-bg-light-blue-A400 {
3158
  background-color: #00b0ff !important;
3159
}
3160
.md-color-light-blue-A700 {
3161
  color: #0091ea !important;
3162
}
3163
.md-bg-light-blue-A700 {
3164
  background-color: #0091ea !important;
3165
}
3166
.md-color-cyan-50 {
3167
  color: #e0f7fa !important;
3168
}
3169
.md-bg-cyan-50 {
3170
  background-color: #e0f7fa !important;
3171
}
3172
.md-color-cyan-100 {
3173
  color: #b2ebf2 !important;
3174
}
3175
.md-bg-cyan-100 {
3176
  background-color: #b2ebf2 !important;
3177
}
3178
.md-color-cyan-200 {
3179
  color: #80deea !important;
3180
}
3181
.md-bg-cyan-200 {
3182
  background-color: #80deea !important;
3183
}
3184
.md-color-cyan-300 {
3185
  color: #4dd0e1 !important;
3186
}
3187
.md-bg-cyan-300 {
3188
  background-color: #4dd0e1 !important;
3189
}
3190
.md-color-cyan-400 {
3191
  color: #26c6da !important;
3192
}
3193
.md-bg-cyan-400 {
3194
  background-color: #26c6da !important;
3195
}
3196
.md-color-cyan-500 {
3197
  color: #00bcd4 !important;
3198
}
3199
.md-bg-cyan-500 {
3200
  background-color: #00bcd4 !important;
3201
}
3202
.md-color-cyan-600 {
3203
  color: #00acc1 !important;
3204
}
3205
.md-bg-cyan-600 {
3206
  background-color: #00acc1 !important;
3207
}
3208
.md-color-cyan-700 {
3209
  color: #0097a7 !important;
3210
}
3211
.md-bg-cyan-700 {
3212
  background-color: #0097a7 !important;
3213
}
3214
.md-color-cyan-800 {
3215
  color: #00838f !important;
3216
}
3217
.md-bg-cyan-800 {
3218
  background-color: #00838f !important;
3219
}
3220
.md-color-cyan-900 {
3221
  color: #006064 !important;
3222
}
3223
.md-bg-cyan-900 {
3224
  background-color: #006064 !important;
3225
}
3226
.md-color-cyan-A100 {
3227
  color: #84ffff !important;
3228
}
3229
.md-bg-cyan-A100 {
3230
  background-color: #84ffff !important;
3231
}
3232
.md-color-cyan-A200 {
3233
  color: #18ffff !important;
3234
}
3235
.md-bg-cyan-A200 {
3236
  background-color: #18ffff !important;
3237
}
3238
.md-color-cyan-A400 {
3239
  color: #00e5ff !important;
3240
}
3241
.md-bg-cyan-A400 {
3242
  background-color: #00e5ff !important;
3243
}
3244
.md-color-cyan-A700 {
3245
  color: #00b8d4 !important;
3246
}
3247
.md-bg-cyan-A700 {
3248
  background-color: #00b8d4 !important;
3249
}
3250
.md-color-teal-50 {
3251
  color: #e0f2f1 !important;
3252
}
3253
.md-bg-teal-50 {
3254
  background-color: #e0f2f1 !important;
3255
}
3256
.md-color-teal-100 {
3257
  color: #b2dfdb !important;
3258
}
3259
.md-bg-teal-100 {
3260
  background-color: #b2dfdb !important;
3261
}
3262
.md-color-teal-200 {
3263
  color: #80cbc4 !important;
3264
}
3265
.md-bg-teal-200 {
3266
  background-color: #80cbc4 !important;
3267
}
3268
.md-color-teal-300 {
3269
  color: #4db6ac !important;
3270
}
3271
.md-bg-teal-300 {
3272
  background-color: #4db6ac !important;
3273
}
3274
.md-color-teal-400 {
3275
  color: #26a69a !important;
3276
}
3277
.md-bg-teal-400 {
3278
  background-color: #26a69a !important;
3279
}
3280
.md-color-teal-500 {
3281
  color: #009688 !important;
3282
}
3283
.md-bg-teal-500 {
3284
  background-color: #009688 !important;
3285
}
3286
.md-color-teal-600 {
3287
  color: #00897b !important;
3288
}
3289
.md-bg-teal-600 {
3290
  background-color: #00897b !important;
3291
}
3292
.md-color-teal-700 {
3293
  color: #00796b !important;
3294
}
3295
.md-bg-teal-700 {
3296
  background-color: #00796b !important;
3297
}
3298
.md-color-teal-800 {
3299
  color: #00695c !important;
3300
}
3301
.md-bg-teal-800 {
3302
  background-color: #00695c !important;
3303
}
3304
.md-color-teal-900 {
3305
  color: #004d40 !important;
3306
}
3307
.md-bg-teal-900 {
3308
  background-color: #004d40 !important;
3309
}
3310
.md-color-teal-A100 {
3311
  color: #a7ffeb !important;
3312
}
3313
.md-bg-teal-A100 {
3314
  background-color: #a7ffeb !important;
3315
}
3316
.md-color-teal-A200 {
3317
  color: #64ffda !important;
3318
}
3319
.md-bg-teal-A200 {
3320
  background-color: #64ffda !important;
3321
}
3322
.md-color-teal-A400 {
3323
  color: #1de9b6 !important;
3324
}
3325
.md-bg-teal-A400 {
3326
  background-color: #1de9b6 !important;
3327
}
3328
.md-color-teal-A700 {
3329
  color: #00bfa5 !important;
3330
}
3331
.md-bg-teal-A700 {
3332
  background-color: #00bfa5 !important;
3333
}
3334
.md-color-green-50 {
3335
  color: #e8f5e9 !important;
3336
}
3337
.md-bg-green-50 {
3338
  background-color: #e8f5e9 !important;
3339
}
3340
.md-color-green-100 {
3341
  color: #c8e6c9 !important;
3342
}
3343
.md-bg-green-100 {
3344
  background-color: #c8e6c9 !important;
3345
}
3346
.md-color-green-200 {
3347
  color: #a5d6a7 !important;
3348
}
3349
.md-bg-green-200 {
3350
  background-color: #a5d6a7 !important;
3351
}
3352
.md-color-green-300 {
3353
  color: #81c784 !important;
3354
}
3355
.md-bg-green-300 {
3356
  background-color: #81c784 !important;
3357
}
3358
.md-color-green-400 {
3359
  color: #66bb6a !important;
3360
}
3361
.md-bg-green-400 {
3362
  background-color: #66bb6a !important;
3363
}
3364
.md-color-green-500 {
3365
  color: #4caf50 !important;
3366
}
3367
.md-bg-green-500 {
3368
  background-color: #4caf50 !important;
3369
}
3370
.md-color-green-600 {
3371
  color: #43a047 !important;
3372
}
3373
.md-bg-green-600 {
3374
  background-color: #43a047 !important;
3375
}
3376
.md-color-green-700 {
3377
  color: #388e3c !important;
3378
}
3379
.md-bg-green-700 {
3380
  background-color: #388e3c !important;
3381
}
3382
.md-color-green-800 {
3383
  color: #2e7d32 !important;
3384
}
3385
.md-bg-green-800 {
3386
  background-color: #2e7d32 !important;
3387
}
3388
.md-color-green-900 {
3389
  color: #1b5e20 !important;
3390
}
3391
.md-bg-green-900 {
3392
  background-color: #1b5e20 !important;
3393
}
3394
.md-color-green-A100 {
3395
  color: #b9f6ca !important;
3396
}
3397
.md-bg-green-A100 {
3398
  background-color: #b9f6ca !important;
3399
}
3400
.md-color-green-A200 {
3401
  color: #69f0ae !important;
3402
}
3403
.md-bg-green-A200 {
3404
  background-color: #69f0ae !important;
3405
}
3406
.md-color-green-A400 {
3407
  color: #00e676 !important;
3408
}
3409
.md-bg-green-A400 {
3410
  background-color: #00e676 !important;
3411
}
3412
.md-color-green-A700 {
3413
  color: #00c853 !important;
3414
}
3415
.md-bg-green-A700 {
3416
  background-color: #00c853 !important;
3417
}
3418
.md-color-light-green-50 {
3419
  color: #f1f8e9 !important;
3420
}
3421
.md-bg-light-green-50 {
3422
  background-color: #f1f8e9 !important;
3423
}
3424
.md-color-light-green-100 {
3425
  color: #dcedc8 !important;
3426
}
3427
.md-bg-light-green-100 {
3428
  background-color: #dcedc8 !important;
3429
}
3430
.md-color-light-green-200 {
3431
  color: #c5e1a5 !important;
3432
}
3433
.md-bg-light-green-200 {
3434
  background-color: #c5e1a5 !important;
3435
}
3436
.md-color-light-green-300 {
3437
  color: #aed581 !important;
3438
}
3439
.md-bg-light-green-300 {
3440
  background-color: #aed581 !important;
3441
}
3442
.md-color-light-green-400 {
3443
  color: #9ccc65 !important;
3444
}
3445
.md-bg-light-green-400 {
3446
  background-color: #9ccc65 !important;
3447
}
3448
.md-color-light-green-500 {
3449
  color: #8bc34a !important;
3450
}
3451
.md-bg-light-green-500 {
3452
  background-color: #8bc34a !important;
3453
}
3454
.md-color-light-green-600 {
3455
  color: #7cb342 !important;
3456
}
3457
.md-bg-light-green-600 {
3458
  background-color: #7cb342 !important;
3459
}
3460
.md-color-light-green-700 {
3461
  color: #689f38 !important;
3462
}
3463
.md-bg-light-green-700 {
3464
  background-color: #689f38 !important;
3465
}
3466
.md-color-light-green-800 {
3467
  color: #558b2f !important;
3468
}
3469
.md-bg-light-green-800 {
3470
  background-color: #558b2f !important;
3471
}
3472
.md-color-light-green-900 {
3473
  color: #33691e !important;
3474
}
3475
.md-bg-light-green-900 {
3476
  background-color: #33691e !important;
3477
}
3478
.md-color-light-green-A100 {
3479
  color: #ccff90 !important;
3480
}
3481
.md-bg-light-green-A100 {
3482
  background-color: #ccff90 !important;
3483
}
3484
.md-color-light-green-A200 {
3485
  color: #b2ff59 !important;
3486
}
3487
.md-bg-light-green-A200 {
3488
  background-color: #b2ff59 !important;
3489
}
3490
.md-color-light-green-A400 {
3491
  color: #76ff03 !important;
3492
}
3493
.md-bg-light-green-A400 {
3494
  background-color: #76ff03 !important;
3495
}
3496
.md-color-light-green-A700 {
3497
  color: #64dd17 !important;
3498
}
3499
.md-bg-light-green-A700 {
3500
  background-color: #64dd17 !important;
3501
}
3502
.md-color-lime-50 {
3503
  color: #f9fbe7 !important;
3504
}
3505
.md-bg-lime-50 {
3506
  background-color: #f9fbe7 !important;
3507
}
3508
.md-color-lime-100 {
3509
  color: #f0f4c3 !important;
3510
}
3511
.md-bg-lime-100 {
3512
  background-color: #f0f4c3 !important;
3513
}
3514
.md-color-lime-200 {
3515
  color: #e6ee9c !important;
3516
}
3517
.md-bg-lime-200 {
3518
  background-color: #e6ee9c !important;
3519
}
3520
.md-color-lime-300 {
3521
  color: #dce775 !important;
3522
}
3523
.md-bg-lime-300 {
3524
  background-color: #dce775 !important;
3525
}
3526
.md-color-lime-400 {
3527
  color: #d4e157 !important;
3528
}
3529
.md-bg-lime-400 {
3530
  background-color: #d4e157 !important;
3531
}
3532
.md-color-lime-500 {
3533
  color: #cddc39 !important;
3534
}
3535
.md-bg-lime-500 {
3536
  background-color: #cddc39 !important;
3537
}
3538
.md-color-lime-600 {
3539
  color: #c0ca33 !important;
3540
}
3541
.md-bg-lime-600 {
3542
  background-color: #c0ca33 !important;
3543
}
3544
.md-color-lime-700 {
3545
  color: #afb42b !important;
3546
}
3547
.md-bg-lime-700 {
3548
  background-color: #afb42b !important;
3549
}
3550
.md-color-lime-800 {
3551
  color: #9e9d24 !important;
3552
}
3553
.md-bg-lime-800 {
3554
  background-color: #9e9d24 !important;
3555
}
3556
.md-color-lime-900 {
3557
  color: #827717 !important;
3558
}
3559
.md-bg-lime-900 {
3560
  background-color: #827717 !important;
3561
}
3562
.md-color-lime-A100 {
3563
  color: #f4ff81 !important;
3564
}
3565
.md-bg-lime-A100 {
3566
  background-color: #f4ff81 !important;
3567
}
3568
.md-color-lime-A200 {
3569
  color: #eeff41 !important;
3570
}
3571
.md-bg-lime-A200 {
3572
  background-color: #eeff41 !important;
3573
}
3574
.md-color-lime-A400 {
3575
  color: #c6ff00 !important;
3576
}
3577
.md-bg-lime-A400 {
3578
  background-color: #c6ff00 !important;
3579
}
3580
.md-color-lime-A700 {
3581
  color: #aeea00 !important;
3582
}
3583
.md-bg-lime-A700 {
3584
  background-color: #aeea00 !important;
3585
}
3586
.md-color-yellow-50 {
3587
  color: #fffde7 !important;
3588
}
3589
.md-bg-yellow-50 {
3590
  background-color: #fffde7 !important;
3591
}
3592
.md-color-yellow-100 {
3593
  color: #fff9c4 !important;
3594
}
3595
.md-bg-yellow-100 {
3596
  background-color: #fff9c4 !important;
3597
}
3598
.md-color-yellow-200 {
3599
  color: #fff59d !important;
3600
}
3601
.md-bg-yellow-200 {
3602
  background-color: #fff59d !important;
3603
}
3604
.md-color-yellow-300 {
3605
  color: #fff176 !important;
3606
}
3607
.md-bg-yellow-300 {
3608
  background-color: #fff176 !important;
3609
}
3610
.md-color-yellow-400 {
3611
  color: #ffee58 !important;
3612
}
3613
.md-bg-yellow-400 {
3614
  background-color: #ffee58 !important;
3615
}
3616
.md-color-yellow-500 {
3617
  color: #ffeb3b !important;
3618
}
3619
.md-bg-yellow-500 {
3620
  background-color: #ffeb3b !important;
3621
}
3622
.md-color-yellow-600 {
3623
  color: #fdd835 !important;
3624
}
3625
.md-bg-yellow-600 {
3626
  background-color: #fdd835 !important;
3627
}
3628
.md-color-yellow-700 {
3629
  color: #fbc02d !important;
3630
}
3631
.md-bg-yellow-700 {
3632
  background-color: #fbc02d !important;
3633
}
3634
.md-color-yellow-800 {
3635
  color: #f9a825 !important;
3636
}
3637
.md-bg-yellow-800 {
3638
  background-color: #f9a825 !important;
3639
}
3640
.md-color-yellow-900 {
3641
  color: #f57f17 !important;
3642
}
3643
.md-bg-yellow-900 {
3644
  background-color: #f57f17 !important;
3645
}
3646
.md-color-yellow-A100 {
3647
  color: #ffff8d !important;
3648
}
3649
.md-bg-yellow-A100 {
3650
  background-color: #ffff8d !important;
3651
}
3652
.md-color-yellow-A200 {
3653
  color: #ffff00 !important;
3654
}
3655
.md-bg-yellow-A200 {
3656
  background-color: #ffff00 !important;
3657
}
3658
.md-color-yellow-A400 {
3659
  color: #ffea00 !important;
3660
}
3661
.md-bg-yellow-A400 {
3662
  background-color: #ffea00 !important;
3663
}
3664
.md-color-yellow-A700 {
3665
  color: #ffd600 !important;
3666
}
3667
.md-bg-yellow-A700 {
3668
  background-color: #ffd600 !important;
3669
}
3670
.md-color-amber-50 {
3671
  color: #fff8e1 !important;
3672
}
3673
.md-bg-amber-50 {
3674
  background-color: #fff8e1 !important;
3675
}
3676
.md-color-amber-100 {
3677
  color: #ffecb3 !important;
3678
}
3679
.md-bg-amber-100 {
3680
  background-color: #ffecb3 !important;
3681
}
3682
.md-color-amber-200 {
3683
  color: #ffe082 !important;
3684
}
3685
.md-bg-amber-200 {
3686
  background-color: #ffe082 !important;
3687
}
3688
.md-color-amber-300 {
3689
  color: #ffd54f !important;
3690
}
3691
.md-bg-amber-300 {
3692
  background-color: #ffd54f !important;
3693
}
3694
.md-color-amber-400 {
3695
  color: #ffca28 !important;
3696
}
3697
.md-bg-amber-400 {
3698
  background-color: #ffca28 !important;
3699
}
3700
.md-color-amber-500 {
3701
  color: #ffc107 !important;
3702
}
3703
.md-bg-amber-500 {
3704
  background-color: #ffc107 !important;
3705
}
3706
.md-color-amber-600 {
3707
  color: #ffb300 !important;
3708
}
3709
.md-bg-amber-600 {
3710
  background-color: #ffb300 !important;
3711
}
3712
.md-color-amber-700 {
3713
  color: #ffa000 !important;
3714
}
3715
.md-bg-amber-700 {
3716
  background-color: #ffa000 !important;
3717
}
3718
.md-color-amber-800 {
3719
  color: #ff8f00 !important;
3720
}
3721
.md-bg-amber-800 {
3722
  background-color: #ff8f00 !important;
3723
}
3724
.md-color-amber-900 {
3725
  color: #ff6f00 !important;
3726
}
3727
.md-bg-amber-900 {
3728
  background-color: #ff6f00 !important;
3729
}
3730
.md-color-amber-A100 {
3731
  color: #ffe57f !important;
3732
}
3733
.md-bg-amber-A100 {
3734
  background-color: #ffe57f !important;
3735
}
3736
.md-color-amber-A200 {
3737
  color: #ffd740 !important;
3738
}
3739
.md-bg-amber-A200 {
3740
  background-color: #ffd740 !important;
3741
}
3742
.md-color-amber-A400 {
3743
  color: #ffc400 !important;
3744
}
3745
.md-bg-amber-A400 {
3746
  background-color: #ffc400 !important;
3747
}
3748
.md-color-amber-A700 {
3749
  color: #ffab00 !important;
3750
}
3751
.md-bg-amber-A700 {
3752
  background-color: #ffab00 !important;
3753
}
3754
.md-color-orange-50 {
3755
  color: #fff3e0 !important;
3756
}
3757
.md-bg-orange-50 {
3758
  background-color: #fff3e0 !important;
3759
}
3760
.md-color-orange-100 {
3761
  color: #ffe0b2 !important;
3762
}
3763
.md-bg-orange-100 {
3764
  background-color: #ffe0b2 !important;
3765
}
3766
.md-color-orange-200 {
3767
  color: #ffcc80 !important;
3768
}
3769
.md-bg-orange-200 {
3770
  background-color: #ffcc80 !important;
3771
}
3772
.md-color-orange-300 {
3773
  color: #ffb74d !important;
3774
}
3775
.md-bg-orange-300 {
3776
  background-color: #ffb74d !important;
3777
}
3778
.md-color-orange-400 {
3779
  color: #ffa726 !important;
3780
}
3781
.md-bg-orange-400 {
3782
  background-color: #ffa726 !important;
3783
}
3784
.md-color-orange-500 {
3785
  color: #ff9800 !important;
3786
}
3787
.md-bg-orange-500 {
3788
  background-color: #ff9800 !important;
3789
}
3790
.md-color-orange-600 {
3791
  color: #fb8c00 !important;
3792
}
3793
.md-bg-orange-600 {
3794
  background-color: #fb8c00 !important;
3795
}
3796
.md-color-orange-700 {
3797
  color: #f57c00 !important;
3798
}
3799
.md-bg-orange-700 {
3800
  background-color: #f57c00 !important;
3801
}
3802
.md-color-orange-800 {
3803
  color: #ef6c00 !important;
3804
}
3805
.md-bg-orange-800 {
3806
  background-color: #ef6c00 !important;
3807
}
3808
.md-color-orange-900 {
3809
  color: #e65100 !important;
3810
}
3811
.md-bg-orange-900 {
3812
  background-color: #e65100 !important;
3813
}
3814
.md-color-orange-A100 {
3815
  color: #ffd180 !important;
3816
}
3817
.md-bg-orange-A100 {
3818
  background-color: #ffd180 !important;
3819
}
3820
.md-color-orange-A200 {
3821
  color: #ffab40 !important;
3822
}
3823
.md-bg-orange-A200 {
3824
  background-color: #ffab40 !important;
3825
}
3826
.md-color-orange-A400 {
3827
  color: #ff9100 !important;
3828
}
3829
.md-bg-orange-A400 {
3830
  background-color: #ff9100 !important;
3831
}
3832
.md-color-orange-A700 {
3833
  color: #ff6d00 !important;
3834
}
3835
.md-bg-orange-A700 {
3836
  background-color: #ff6d00 !important;
3837
}
3838
.md-color-deep-orange-50 {
3839
  color: #fbe9e7 !important;
3840
}
3841
.md-bg-deep-orange-50 {
3842
  background-color: #fbe9e7 !important;
3843
}
3844
.md-color-deep-orange-100 {
3845
  color: #ffccbc !important;
3846
}
3847
.md-bg-deep-orange-100 {
3848
  background-color: #ffccbc !important;
3849
}
3850
.md-color-deep-orange-200 {
3851
  color: #ffab91 !important;
3852
}
3853
.md-bg-deep-orange-200 {
3854
  background-color: #ffab91 !important;
3855
}
3856
.md-color-deep-orange-300 {
3857
  color: #ff8a65 !important;
3858
}
3859
.md-bg-deep-orange-300 {
3860
  background-color: #ff8a65 !important;
3861
}
3862
.md-color-deep-orange-400 {
3863
  color: #ff7043 !important;
3864
}
3865
.md-bg-deep-orange-400 {
3866
  background-color: #ff7043 !important;
3867
}
3868
.md-color-deep-orange-500 {
3869
  color: #ff5722 !important;
3870
}
3871
.md-bg-deep-orange-500 {
3872
  background-color: #ff5722 !important;
3873
}
3874
.md-color-deep-orange-600 {
3875
  color: #f4511e !important;
3876
}
3877
.md-bg-deep-orange-600 {
3878
  background-color: #f4511e !important;
3879
}
3880
.md-color-deep-orange-700 {
3881
  color: #e64a19 !important;
3882
}
3883
.md-bg-deep-orange-700 {
3884
  background-color: #e64a19 !important;
3885
}
3886
.md-color-deep-orange-800 {
3887
  color: #d84315 !important;
3888
}
3889
.md-bg-deep-orange-800 {
3890
  background-color: #d84315 !important;
3891
}
3892
.md-color-deep-orange-900 {
3893
  color: #bf360c !important;
3894
}
3895
.md-bg-deep-orange-900 {
3896
  background-color: #bf360c !important;
3897
}
3898
.md-color-deep-orange-A100 {
3899
  color: #ff9e80 !important;
3900
}
3901
.md-bg-deep-orange-A100 {
3902
  background-color: #ff9e80 !important;
3903
}
3904
.md-color-deep-orange-A200 {
3905
  color: #ff6e40 !important;
3906
}
3907
.md-bg-deep-orange-A200 {
3908
  background-color: #ff6e40 !important;
3909
}
3910
.md-color-deep-orange-A400 {
3911
  color: #ff3d00 !important;
3912
}
3913
.md-bg-deep-orange-A400 {
3914
  background-color: #ff3d00 !important;
3915
}
3916
.md-color-deep-orange-A700 {
3917
  color: #dd2c00 !important;
3918
}
3919
.md-bg-deep-orange-A700 {
3920
  background-color: #dd2c00 !important;
3921
}
3922
.md-color-brown-50 {
3923
  color: #efebe9 !important;
3924
}
3925
.md-bg-brown-50 {
3926
  background-color: #efebe9 !important;
3927
}
3928
.md-color-brown-100 {
3929
  color: #d7ccc8 !important;
3930
}
3931
.md-bg-brown-100 {
3932
  background-color: #d7ccc8 !important;
3933
}
3934
.md-color-brown-200 {
3935
  color: #bcaaa4 !important;
3936
}
3937
.md-bg-brown-200 {
3938
  background-color: #bcaaa4 !important;
3939
}
3940
.md-color-brown-300 {
3941
  color: #a1887f !important;
3942
}
3943
.md-bg-brown-300 {
3944
  background-color: #a1887f !important;
3945
}
3946
.md-color-brown-400 {
3947
  color: #8d6e63 !important;
3948
}
3949
.md-bg-brown-400 {
3950
  background-color: #8d6e63 !important;
3951
}
3952
.md-color-brown-500 {
3953
  color: #795548 !important;
3954
}
3955
.md-bg-brown-500 {
3956
  background-color: #795548 !important;
3957
}
3958
.md-color-brown-600 {
3959
  color: #6d4c41 !important;
3960
}
3961
.md-bg-brown-600 {
3962
  background-color: #6d4c41 !important;
3963
}
3964
.md-color-brown-700 {
3965
  color: #5d4037 !important;
3966
}
3967
.md-bg-brown-700 {
3968
  background-color: #5d4037 !important;
3969
}
3970
.md-color-brown-800 {
3971
  color: #4e342e !important;
3972
}
3973
.md-bg-brown-800 {
3974
  background-color: #4e342e !important;
3975
}
3976
.md-color-brown-900 {
3977
  color: #3e2723 !important;
3978
}
3979
.md-bg-brown-900 {
3980
  background-color: #3e2723 !important;
3981
}
3982
.md-color-grey-50 {
3983
  color: #fafafa !important;
3984
}
3985
.md-bg-grey-50 {
3986
  background-color: #fafafa !important;
3987
}
3988
.md-color-grey-100 {
3989
  color: #f5f5f5 !important;
3990
}
3991
.md-bg-grey-100 {
3992
  background-color: #f5f5f5 !important;
3993
}
3994
.md-color-grey-200 {
3995
  color: #eeeeee !important;
3996
}
3997
.md-bg-grey-200 {
3998
  background-color: #eeeeee !important;
3999
}
4000
.md-color-grey-300 {
4001
  color: #e0e0e0 !important;
4002
}
4003
.md-bg-grey-300 {
4004
  background-color: #e0e0e0 !important;
4005
}
4006
.md-color-grey-400 {
4007
  color: #bdbdbd !important;
4008
}
4009
.md-bg-grey-400 {
4010
  background-color: #bdbdbd !important;
4011
}
4012
.md-color-grey-500 {
4013
  color: #9e9e9e !important;
4014
}
4015
.md-bg-grey-500 {
4016
  background-color: #9e9e9e !important;
4017
}
4018
.md-color-grey-600 {
4019
  color: #757575 !important;
4020
}
4021
.md-bg-grey-600 {
4022
  background-color: #757575 !important;
4023
}
4024
.md-color-grey-700 {
4025
  color: #616161 !important;
4026
}
4027
.md-bg-grey-700 {
4028
  background-color: #616161 !important;
4029
}
4030
.md-color-grey-800 {
4031
  color: #424242 !important;
4032
}
4033
.md-bg-grey-800 {
4034
  background-color: #424242 !important;
4035
}
4036
.md-color-grey-900 {
4037
  color: #212121 !important;
4038
}
4039
.md-bg-grey-900 {
4040
  background-color: #212121 !important;
4041
}
4042
.md-color-blue-grey-50 {
4043
  color: #eceff1 !important;
4044
}
4045
.md-bg-blue-grey-50 {
4046
  background-color: #eceff1 !important;
4047
}
4048
.md-color-blue-grey-100 {
4049
  color: #cfd8dc !important;
4050
}
4051
.md-bg-blue-grey-100 {
4052
  background-color: #cfd8dc !important;
4053
}
4054
.md-color-blue-grey-200 {
4055
  color: #b0bec5 !important;
4056
}
4057
.md-bg-blue-grey-200 {
4058
  background-color: #b0bec5 !important;
4059
}
4060
.md-color-blue-grey-300 {
4061
  color: #90a4ae !important;
4062
}
4063
.md-bg-blue-grey-300 {
4064
  background-color: #90a4ae !important;
4065
}
4066
.md-color-blue-grey-400 {
4067
  color: #78909c !important;
4068
}
4069
.md-bg-blue-grey-400 {
4070
  background-color: #78909c !important;
4071
}
4072
.md-color-blue-grey-500 {
4073
  color: #607d8b !important;
4074
}
4075
.md-bg-blue-grey-500 {
4076
  background-color: #607d8b !important;
4077
}
4078
.md-color-blue-grey-600 {
4079
  color: #546e7a !important;
4080
}
4081
.md-bg-blue-grey-600 {
4082
  background-color: #546e7a !important;
4083
}
4084
.md-color-blue-grey-700 {
4085
  color: #455a64 !important;
4086
}
4087
.md-bg-blue-grey-700 {
4088
  background-color: #455a64 !important;
4089
}
4090
.md-color-blue-grey-800 {
4091
  color: #37474f !important;
4092
}
4093
.md-bg-blue-grey-800 {
4094
  background-color: #37474f !important;
4095
}
4096
.md-color-blue-grey-900 {
4097
  color: #263238 !important;
4098
}
4099
.md-bg-blue-grey-900 {
4100
  background-color: #263238 !important;
4101
}
4102
.md-color-white {
4103
  color: #fff !important;
4104
}
4105
/* cards */
4106
.md-card {
4107
  background: #fff;
4108
  position: relative;
4109
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
4110
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
4111
  border: none;
4112
}
4113
.md-card + .md-card,
4114
.md-card + .uk-grid,
4115
.uk-grid + .md-card {
4116
  margin-top: 25px;
4117
}
4118
.md-card .full_width_in_card {
4119
  padding: 16px 24px;
4120
  background: rgba(0, 0, 0, 0.085);
4121
}
4122
.md-card .md-card-toolbar {
4123
  height: 64px;
4124
  padding: 0 16px;
4125
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
4126
  background: #fff;
4127
}
4128
.md-card .md-card-toolbar:before,
4129
.md-card .md-card-toolbar:after {
4130
  content: " ";
4131
  display: table;
4132
}
4133
.md-card .md-card-toolbar:after {
4134
  clear: both;
4135
}
4136
.md-card .md-card-toolbar-heading-text {
4137
  font: 500 14px / 50px "Roboto", sans-serif;
4138
  color: #212121;
4139
  margin: 0;
4140
  float: left;
4141
  overflow: hidden;
4142
  height: 48px;
4143
}
4144
.md-card .md-card-toolbar-heading-text.large {
4145
  font-size: 18px;
4146
  font-weight: 400;
4147
}
4148
.md-card .md-card-toolbar .md-toggle-group {
4149
  float: left;
4150
  margin: 8px 0 0 16px;
4151
}
4152
.md-card .md-card-toolbar .md-toggle-group.md-toggle-group-small {
4153
  margin-top: 10px;
4154
}
4155
.md-card .md-card-toolbar .md-card-toolbar-actions {
4156
  float: right;
4157
  padding-top: 10px;
4158
}
4159
.md-card .md-card-toolbar .md-card-toolbar-actions .uk-open .md-card-toolbar-icon {
4160
  background: rgba(0, 0, 0, 0.085);
4161
  color: #212121;
4162
}
4163
.md-card .md-card-toolbar .md-card-toolbar-actions .md-card-dropdown {
4164
  display: inline-block;
4165
  position: relative;
4166
}
4167
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control {
4168
  min-width: 220px;
4169
  margin-top: -3px;
4170
}
4171
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control .selectize-input {
4172
  min-height: 30px;
4173
  padding: 4px 8px;
4174
}
4175
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control .selectize-dropdown {
4176
  margin-top: -34px;
4177
}
4178
.md-card .md-card-toolbar .md-icon + .md-card-dropdown {
4179
  margin-left: 4px;
4180
}
4181
.md-card .md-card-toolbar .md-card-fullscreen-deactivate {
4182
  margin: 9px 8px 0 0;
4183
}
4184
.md-card .md-card-toolbar-input {
4185
  border: none;
4186
  font: 400 18px / 24px "Roboto", sans-serif;
4187
  height: auto;
4188
  background: none !important;
4189
  padding: 12px 0;
4190
  width: 50%;
4191
  -webkit-box-sizing: border-box;
4192
  box-sizing: border-box;
4193
}
4194
.md-card .md-card-toolbar .uk-tab {
4195
  margin-top: -2px;
4196
  border-bottom: none;
4197
}
4198
.md-card .md-card-toolbar .uk-tab li > a {
4199
  padding: 10px 8px !important;
4200
}
4201
.md-card .md-card-head {
4202
  height: 160px;
4203
  position: relative;
4204
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
4205
}
4206
.md-card .md-card-head-menu {
4207
  position: absolute;
4208
  right: 8px;
4209
  top: 8px;
4210
}
4211
.md-card .md-card-head-avatar {
4212
  width: 82px;
4213
  height: 82px;
4214
  border-radius: 50%;
4215
  margin-top: 16px;
4216
  border: 2px solid #fff;
4217
  display: inline-block;
4218
}
4219
.md-card .md-card-head-text {
4220
  padding: 8px 16px 16px;
4221
  font: 500 16px / 22px "Roboto", sans-serif;
4222
  color: #212121;
4223
  margin: 0;
4224
}
4225
.md-card .md-card-head-text span {
4226
  display: block;
4227
  font: 400 12px / 18px "Roboto", sans-serif;
4228
  margin-top: -2px;
4229
}
4230
.md-card .md-card-head-text.text_dark {
4231
  color: #212121 !important;
4232
}
4233
.md-card .md-card-head-text-over {
4234
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
4235
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
4236
}
4237
.md-card .md-card-head-subtext {
4238
  position: absolute;
4239
  bottom: 10px;
4240
  left: 0;
4241
  right: 0;
4242
  padding: 0 16px;
4243
  text-align: right;
4244
  color: #fff;
4245
}
4246
.md-card .md-card-head-subtext span {
4247
  font-size: 26px;
4248
}
4249
.md-card .md-card-head-icon {
4250
  font-size: 48px;
4251
  color: #fff;
4252
  vertical-align: middle;
4253
}
4254
.md-card .md-card-head.head_background {
4255
  background-repeat: no-repeat;
4256
  background-position: center center;
4257
  background-size: cover;
4258
  border-bottom-color: transparent;
4259
}
4260
.md-card .md-card-head.head_background .md-card-head-text {
4261
  color: #fff;
4262
}
4263
.md-card .md-card-head.head_background_top {
4264
  background-repeat: no-repeat;
4265
  background-position: center top;
4266
}
4267
.md-card .md-card-head.head_background_bottom {
4268
  background-repeat: no-repeat;
4269
  background-position: center bottom;
4270
}
4271
.md-card .md-card-head .head_chart {
4272
  height: 100px;
4273
  width: 100%;
4274
  position: absolute !important;
4275
  left: 0;
4276
  top: 40px;
4277
}
4278
.md-card .md-card-head .fitVid_player {
4279
  width: 100%;
4280
  height: 160px;
4281
  overflow: hidden;
4282
}
4283
.md-card .md-card-head-img {
4284
  height: 100%;
4285
  width: auto;
4286
}
4287
.md-card .md-card-head iframe {
4288
  height: 160px;
4289
}
4290
.md-card .md-card-content {
4291
  padding: 16px;
4292
}
4293
.md-card .md-card-content.padding-reset {
4294
  padding: 0;
4295
}
4296
.md-card .md-card-content.large-padding {
4297
  padding: 24px 35px;
4298
}
4299
.md-card .md-card-content.small-padding {
4300
  padding: 8px;
4301
}
4302
.md-card .md-card-footer {
4303
  padding: 16px;
4304
  font-size: 14px;
4305
  line-height: 18px;
4306
}
4307
.md-card .md-card-footer .md-card-footer-head {
4308
  font: 500 16px / 20px "Roboto", sans-serif;
4309
  margin: 0 0 4px;
4310
}
4311
.md-card.md-card-fullscreen {
4312
  position: fixed;
4313
  z-index: 9998;
4314
  overflow-x: hidden;
4315
}
4316
.md-card.md-card-fullscreen .md-card-fullscreen-activate {
4317
  display: none;
4318
}
4319
.md-card .md-card-fullscreen-content {
4320
  display: none;
4321
  padding: 16px 0;
4322
}
4323
.md-card-fullscreen-content-hidden .md-card .md-card-fullscreen-content {
4324
  display: block;
4325
  visibility: hidden;
4326
  padding: 0;
4327
}
4328
.md-card.mdToolbar_fixed {
4329
  overflow-y: hidden;
4330
}
4331
.md-card.mdToolbar_fixed > .md-card-toolbar {
4332
  position: fixed;
4333
  left: 0;
4334
  right: 0;
4335
  top: 0;
4336
  z-index: 9999;
4337
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
4338
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
4339
}
4340
.md-card.mdToolbar_fixed > .md-card-content {
4341
  overflow-y: scroll;
4342
  -webkit-box-sizing: border-box;
4343
  box-sizing: border-box;
4344
  position: absolute;
4345
  width: 100%;
4346
  top: 64px;
4347
  bottom: 0;
4348
}
4349
.md-card.md-card-overlay {
4350
  overflow: hidden;
4351
  padding-bottom: 54px;
4352
}
4353
.md-card.md-card-overlay .md-card-content {
4354
  height: 142px;
4355
  overflow: hidden;
4356
  -webkit-box-sizing: border-box;
4357
  box-sizing: border-box;
4358
}
4359
.md-card.md-card-overlay .md-card-content.no_truncate {
4360
  position: relative;
4361
}
4362
.md-card.md-card-overlay .md-card-content.no_truncate:after {
4363
  position: absolute;
4364
  bottom: 0;
4365
  left: 0;
4366
  right: 0;
4367
  height: 8px;
4368
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #ffffff), to(rgba(255, 255, 255, 0)));
4369
  background-image: linear-gradient(to top, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
4370
  display: block;
4371
  content: '';
4372
  z-index: 10;
4373
}
4374
.md-card.md-card-overlay .md-card-content > pre {
4375
  margin-top: 0;
4376
  max-height: 110px;
4377
}
4378
.md-card.md-card-overlay .md-card-content > pre > code {
4379
  overflow: hidden;
4380
}
4381
.md-card.md-card-overlay .md-card-overlay-content {
4382
  position: absolute;
4383
  top: 100%;
4384
  left: 0;
4385
  right: 0;
4386
  padding: 0 16px;
4387
  margin-top: -54px;
4388
  border-top: 1px solid rgba(0, 0, 0, 0.12);
4389
  text-align: left;
4390
  bottom: 0;
4391
  background: #fff;
4392
  z-index: 10;
4393
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
4394
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
4395
}
4396
.md-card.md-card-overlay .md-card-overlay-content p {
4397
  margin: 0;
4398
}
4399
.md-card.md-card-overlay .md-card-overlay-content p + * {
4400
  margin-top: 16px;
4401
}
4402
.md-card.md-card-overlay .md-card-overlay-content p + p {
4403
  margin-top: 4px;
4404
}
4405
.md-card.md-card-overlay .md-card-overlay-header {
4406
  padding: 12px 0;
4407
}
4408
.md-card.md-card-overlay .md-card-overlay-header:before,
4409
.md-card.md-card-overlay .md-card-overlay-header:after {
4410
  content: " ";
4411
  display: table;
4412
}
4413
.md-card.md-card-overlay .md-card-overlay-header:after {
4414
  clear: both;
4415
}
4416
.md-card.md-card-overlay .md-card-overlay-header h3,
4417
.md-card.md-card-overlay .md-card-overlay-header h4 {
4418
  margin: 0;
4419
  text-overflow: ellipsis;
4420
  display: inline-block;
4421
  vertical-align: top;
4422
  white-space: nowrap;
4423
  overflow: hidden;
4424
  width: 100%;
4425
  padding-right: 32px;
4426
  -webkit-box-sizing: border-box;
4427
  box-sizing: border-box;
4428
}
4429
.md-card.md-card-overlay .md-card-overlay-header h3 {
4430
  font: 400 16px / 30px "Roboto", sans-serif;
4431
}
4432
.md-card.md-card-overlay .md-card-overlay-header h4 {
4433
  font: 500 14px / 30px "Roboto", sans-serif;
4434
}
4435
.md-card.md-card-overlay .md-card-overlay-header .md-icon {
4436
  position: absolute;
4437
  right: 12px;
4438
  top: 11px;
4439
}
4440
.md-card.md-card-overlay-active .md-card-overlay-content {
4441
  top: -1px;
4442
  margin-top: 0;
4443
}
4444
.md-card.md-card-hover {
4445
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
4446
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
4447
  will-change: box-shadow;
4448
}
4449
.md-card.md-card-hover:hover {
4450
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
4451
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
4452
}
4453
.uk-sortable-dragged .md-card {
4454
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
4455
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
4456
}
4457
.uk-sortable-dragged .md-card canvas {
4458
  margin: 0 auto;
4459
  display: block;
4460
}
4461
.md-card .heading_list {
4462
  padding: 0;
4463
}
4464
.md-card-primary,
4465
.md-card-success,
4466
.md-card-danger,
4467
.md-card-warning {
4468
  border-left: 4px solid transparent;
4469
}
4470
.md-card-primary {
4471
  border-left-color: #2196f3;
4472
}
4473
.md-card-success {
4474
  border-left-color: #7cb342;
4475
}
4476
.md-card-danger {
4477
  border-left-color: #e53935;
4478
}
4479
.md-card-warning {
4480
  border-left-color: #ffa000;
4481
}
4482
.md-expand,
4483
.md-expand-group > * {
4484
  opacity: 0;
4485
}
4486
.md-card-placeholder {
4487
  min-width: 100%;
4488
}
4489
.md-card-list-wrapper,
4490
.md-card-list-wrapper:before,
4491
.md-card-list-wrapper:after,
4492
.md-card-list-wrapper *,
4493
.md-card-list-wrapper *:before,
4494
.md-card-list-wrapper *:after {
4495
  -webkit-box-sizing: border-box;
4496
  box-sizing: border-box;
4497
}
4498
.md-card-list-wrapper .md-card-list-header {
4499
  position: absolute;
4500
  top: -24px;
4501
  left: 0;
4502
}
4503
.md-card-list-wrapper .md-card-list {
4504
  margin: 48px 0 0 0;
4505
  position: relative;
4506
}
4507
.md-card-list-wrapper .md-card-list:first-child {
4508
  margin-top: 24px;
4509
}
4510
.md-card-list-wrapper .md-card-list > ul {
4511
  margin: 0;
4512
  padding: 0;
4513
  list-style: none;
4514
}
4515
.md-card-list-wrapper .md-card-list > ul > li {
4516
  padding: 0;
4517
  margin: 0;
4518
  list-style: none;
4519
}
4520
.md-card-list-wrapper .md-card-list > ul > li {
4521
  min-height: 34px;
4522
  padding: 8px 16px;
4523
  font-size: 13px;
4524
  -webkit-transition: background 150ms,padding 200ms;
4525
  transition: background 150ms,padding 200ms;
4526
  background: #fff;
4527
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
4528
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
4529
}
4530
.md-card-list-wrapper .md-card-list > ul > li:before,
4531
.md-card-list-wrapper .md-card-list > ul > li:after {
4532
  content: " ";
4533
  display: table;
4534
}
4535
.md-card-list-wrapper .md-card-list > ul > li:after {
4536
  clear: both;
4537
}
4538
.md-card-list-wrapper .md-card-list > ul > li.item-shown {
4539
  background: #fff;
4540
  padding: 8px 36px;
4541
}
4542
@media only screen and (max-width: 767px) {
4543
  .md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-subject {
4544
    clear: both;
4545
    float: none;
4546
    padding-top: 16px;
4547
  }
4548
  .md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-subject > span {
4549
    white-space: normal;
4550
  }
4551
}
4552
.md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-sender {
4553
  width: auto;
4554
  overflow: hidden;
4555
}
4556
.md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected {
4557
  position: relative;
4558
}
4559
.md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
4560
  content: '';
4561
  position: absolute;
4562
  display: block;
4563
  left: 0;
4564
  top: 0;
4565
  bottom: 0;
4566
  width: 8px;
4567
  background: #e3f2fd;
4568
}
4569
.md-card-list-wrapper .md-card-list .md-card-list-item-select,
4570
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper,
4571
.md-card-list-wrapper .md-card-list .md-card-list-item-sender {
4572
  float: left;
4573
}
4574
.md-card-list-wrapper .md-card-list .md-card-list-item-select {
4575
  padding: 6px 8px 0 0;
4576
}
4577
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper,
4578
.md-card-list-wrapper .md-card-list .md-card-list-item-sender,
4579
.md-card-list-wrapper .md-card-list .md-card-list-item-subject,
4580
.md-card-list-wrapper .md-card-list .md-card-list-item-date {
4581
  padding: 0 8px;
4582
}
4583
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper .md-card-list-item-avatar {
4584
  background: #757575;
4585
  color: #fff;
4586
  width: 34px;
4587
  border-radius: 50%;
4588
  display: block;
4589
}
4590
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper .md-card-list-item-avatar-large {
4591
  width: 82px;
4592
  border-radius: 50%;
4593
}
4594
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper span.md-card-list-item-avatar {
4595
  line-height: 34px;
4596
  text-transform: uppercase;
4597
  text-align: center;
4598
}
4599
.md-card-list-wrapper .md-card-list .md-card-list-item-sender {
4600
  width: 220px;
4601
  line-height: 34px;
4602
}
4603
.md-card-list-wrapper .md-card-list .md-card-list-item-sender > span {
4604
  text-overflow: ellipsis;
4605
  display: inline-block;
4606
  vertical-align: top;
4607
  white-space: nowrap;
4608
  overflow: hidden;
4609
  width: 100%;
4610
}
4611
@media only screen and (max-width: 1219px) {
4612
  .md-card-list-wrapper .md-card-list .md-card-list-item-sender {
4613
    display: none;
4614
  }
4615
}
4616
.md-card-list-wrapper .md-card-list .md-card-list-item-subject {
4617
  overflow: hidden;
4618
  font-weight: 500;
4619
}
4620
.md-card-list-wrapper .md-card-list .md-card-list-item-subject > span {
4621
  line-height: 34px;
4622
  text-overflow: ellipsis;
4623
  display: inline-block;
4624
  vertical-align: top;
4625
  white-space: nowrap;
4626
  overflow: hidden;
4627
  width: 100%;
4628
}
4629
.md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small {
4630
  display: none;
4631
}
4632
@media only screen and (max-width: 1219px) {
4633
  .md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small {
4634
    display: block;
4635
  }
4636
  .md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small + span {
4637
    line-height: inherit;
4638
  }
4639
}
4640
.md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small > span {
4641
  text-overflow: ellipsis;
4642
  display: inline-block;
4643
  vertical-align: top;
4644
  white-space: nowrap;
4645
  overflow: hidden;
4646
  width: 100%;
4647
  font-size: 12px;
4648
  color: #999;
4649
}
4650
.md-card-list-wrapper .md-card-list .md-card-list-item-date {
4651
  line-height: 34px;
4652
  float: right;
4653
  color: #999;
4654
}
4655
@media only screen and (max-width: 479px) {
4656
  .md-card-list-wrapper .md-card-list .md-card-list-item-date {
4657
    display: none;
4658
  }
4659
}
4660
.md-card-list-wrapper .md-card-list .md-card-list-item-menu {
4661
  float: right;
4662
  margin: 0 0 0 8px;
4663
  position: relative;
4664
}
4665
.md-card-list-wrapper .md-card-list .md-card-list-item-menu .uk-dropdown .material-icons {
4666
  margin-right: 8px;
4667
}
4668
.md-card-list-wrapper .md-card-list .md-card-list-item-content-wrapper {
4669
  display: none;
4670
  clear: both;
4671
  opacity: 0;
4672
}
4673
.md-card-list-wrapper .md-card-list .md-card-list-item-content {
4674
  padding: 16px 16px 0 0;
4675
  max-height: 360px;
4676
  overflow-x: hidden;
4677
  margin: 0 0 40px;
4678
  top: 20px;
4679
  position: relative;
4680
  font-size: 14px;
4681
}
4682
.md-card-list-wrapper .md-card-list .md-card-list-item-content + .md-card-list-item-reply {
4683
  padding-top: 10px;
4684
}
4685
.md-card-list-wrapper .md-card-list .md-card-list-item-reply {
4686
  padding: 16px 0;
4687
}
4688
.md-card-list-wrapper .md-card-list .md-card-list-item-selected {
4689
  background: #e3f2fd;
4690
}
4691
/* forms */
4692
select,
4693
textarea,
4694
input:not([type]),
4695
input[type="text"],
4696
input[type="password"],
4697
input[type="datetime"],
4698
input[type="datetime-local"],
4699
input[type="date"],
4700
input[type="month"],
4701
input[type="time"],
4702
input[type="week"],
4703
input[type="number"],
4704
input[type="email"],
4705
input[type="url"],
4706
input[type="search"],
4707
input[type="tel"],
4708
input[type="color"] {
4709
  outline: none;
4710
}
4711
select.md-input,
4712
textarea.md-input,
4713
input:not([type]).md-input,
4714
input[type="text"].md-input,
4715
input[type="password"].md-input,
4716
input[type="datetime"].md-input,
4717
input[type="datetime-local"].md-input,
4718
input[type="date"].md-input,
4719
input[type="month"].md-input,
4720
input[type="time"].md-input,
4721
input[type="week"].md-input,
4722
input[type="number"].md-input,
4723
input[type="email"].md-input,
4724
input[type="url"].md-input,
4725
input[type="search"].md-input,
4726
input[type="tel"].md-input,
4727
input[type="color"].md-input {
4728
  border-radius: 0;
4729
  border-width: 0 0 1px;
4730
  border-style: solid;
4731
  border-color: rgba(0, 0, 0, 0.12);
4732
  font: 400 15px / 18px "Roboto", sans-serif;
4733
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
4734
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
4735
  -webkit-box-sizing: border-box;
4736
  box-sizing: border-box;
4737
  padding: 12px 4px;
4738
  background: transparent;
4739
  width: 100%;
4740
  display: block;
4741
}
4742
select.md-input.md-input-danger,
4743
textarea.md-input.md-input-danger,
4744
input:not([type]).md-input.md-input-danger,
4745
input[type="text"].md-input.md-input-danger,
4746
input[type="password"].md-input.md-input-danger,
4747
input[type="datetime"].md-input.md-input-danger,
4748
input[type="datetime-local"].md-input.md-input-danger,
4749
input[type="date"].md-input.md-input-danger,
4750
input[type="month"].md-input.md-input-danger,
4751
input[type="time"].md-input.md-input-danger,
4752
input[type="week"].md-input.md-input-danger,
4753
input[type="number"].md-input.md-input-danger,
4754
input[type="email"].md-input.md-input-danger,
4755
input[type="url"].md-input.md-input-danger,
4756
input[type="search"].md-input.md-input-danger,
4757
input[type="tel"].md-input.md-input-danger,
4758
input[type="color"].md-input.md-input-danger {
4759
  border-color: #e53935;
4760
}
4761
select.md-input.md-input-danger:focus,
4762
textarea.md-input.md-input-danger:focus,
4763
input:not([type]).md-input.md-input-danger:focus,
4764
input[type="text"].md-input.md-input-danger:focus,
4765
input[type="password"].md-input.md-input-danger:focus,
4766
input[type="datetime"].md-input.md-input-danger:focus,
4767
input[type="datetime-local"].md-input.md-input-danger:focus,
4768
input[type="date"].md-input.md-input-danger:focus,
4769
input[type="month"].md-input.md-input-danger:focus,
4770
input[type="time"].md-input.md-input-danger:focus,
4771
input[type="week"].md-input.md-input-danger:focus,
4772
input[type="number"].md-input.md-input-danger:focus,
4773
input[type="email"].md-input.md-input-danger:focus,
4774
input[type="url"].md-input.md-input-danger:focus,
4775
input[type="search"].md-input.md-input-danger:focus,
4776
input[type="tel"].md-input.md-input-danger:focus,
4777
input[type="color"].md-input.md-input-danger:focus {
4778
  border-bottom-color: #e53935;
4779
}
4780
select.md-input.md-input-success,
4781
textarea.md-input.md-input-success,
4782
input:not([type]).md-input.md-input-success,
4783
input[type="text"].md-input.md-input-success,
4784
input[type="password"].md-input.md-input-success,
4785
input[type="datetime"].md-input.md-input-success,
4786
input[type="datetime-local"].md-input.md-input-success,
4787
input[type="date"].md-input.md-input-success,
4788
input[type="month"].md-input.md-input-success,
4789
input[type="time"].md-input.md-input-success,
4790
input[type="week"].md-input.md-input-success,
4791
input[type="number"].md-input.md-input-success,
4792
input[type="email"].md-input.md-input-success,
4793
input[type="url"].md-input.md-input-success,
4794
input[type="search"].md-input.md-input-success,
4795
input[type="tel"].md-input.md-input-success,
4796
input[type="color"].md-input.md-input-success {
4797
  border-color: #7cb342;
4798
}
4799
select.md-input.md-input-success:focus,
4800
textarea.md-input.md-input-success:focus,
4801
input:not([type]).md-input.md-input-success:focus,
4802
input[type="text"].md-input.md-input-success:focus,
4803
input[type="password"].md-input.md-input-success:focus,
4804
input[type="datetime"].md-input.md-input-success:focus,
4805
input[type="datetime-local"].md-input.md-input-success:focus,
4806
input[type="date"].md-input.md-input-success:focus,
4807
input[type="month"].md-input.md-input-success:focus,
4808
input[type="time"].md-input.md-input-success:focus,
4809
input[type="week"].md-input.md-input-success:focus,
4810
input[type="number"].md-input.md-input-success:focus,
4811
input[type="email"].md-input.md-input-success:focus,
4812
input[type="url"].md-input.md-input-success:focus,
4813
input[type="search"].md-input.md-input-success:focus,
4814
input[type="tel"].md-input.md-input-success:focus,
4815
input[type="color"].md-input.md-input-success:focus {
4816
  border-bottom-color: #7cb342;
4817
}
4818
select.md-input:focus,
4819
textarea.md-input:focus,
4820
input:not([type]).md-input:focus,
4821
input[type="text"].md-input:focus,
4822
input[type="password"].md-input:focus,
4823
input[type="datetime"].md-input:focus,
4824
input[type="datetime-local"].md-input:focus,
4825
input[type="date"].md-input:focus,
4826
input[type="month"].md-input:focus,
4827
input[type="time"].md-input:focus,
4828
input[type="week"].md-input:focus,
4829
input[type="number"].md-input:focus,
4830
input[type="email"].md-input:focus,
4831
input[type="url"].md-input:focus,
4832
input[type="search"].md-input:focus,
4833
input[type="tel"].md-input:focus,
4834
input[type="color"].md-input:focus {
4835
  background: transparent;
4836
  border-color: rgba(0, 0, 0, 0.12);
4837
}
4838
select.md-input-small,
4839
textarea.md-input-small,
4840
input:not([type]).md-input-small,
4841
input[type="text"].md-input-small,
4842
input[type="password"].md-input-small,
4843
input[type="datetime"].md-input-small,
4844
input[type="datetime-local"].md-input-small,
4845
input[type="date"].md-input-small,
4846
input[type="month"].md-input-small,
4847
input[type="time"].md-input-small,
4848
input[type="week"].md-input-small,
4849
input[type="number"].md-input-small,
4850
input[type="email"].md-input-small,
4851
input[type="url"].md-input-small,
4852
input[type="search"].md-input-small,
4853
input[type="tel"].md-input-small,
4854
input[type="color"].md-input-small {
4855
  padding: 4px;
4856
}
4857
select.md-input.uk-form-width-mini,
4858
textarea.md-input.uk-form-width-mini,
4859
input:not([type]).md-input.uk-form-width-mini,
4860
input[type="text"].md-input.uk-form-width-mini,
4861
input[type="password"].md-input.uk-form-width-mini,
4862
input[type="datetime"].md-input.uk-form-width-mini,
4863
input[type="datetime-local"].md-input.uk-form-width-mini,
4864
input[type="date"].md-input.uk-form-width-mini,
4865
input[type="month"].md-input.uk-form-width-mini,
4866
input[type="time"].md-input.uk-form-width-mini,
4867
input[type="week"].md-input.uk-form-width-mini,
4868
input[type="number"].md-input.uk-form-width-mini,
4869
input[type="email"].md-input.uk-form-width-mini,
4870
input[type="url"].md-input.uk-form-width-mini,
4871
input[type="search"].md-input.uk-form-width-mini,
4872
input[type="tel"].md-input.uk-form-width-mini,
4873
input[type="color"].md-input.uk-form-width-mini {
4874
  width: 40px;
4875
}
4876
select.md-input.uk-form-width-small,
4877
textarea.md-input.uk-form-width-small,
4878
input:not([type]).md-input.uk-form-width-small,
4879
input[type="text"].md-input.uk-form-width-small,
4880
input[type="password"].md-input.uk-form-width-small,
4881
input[type="datetime"].md-input.uk-form-width-small,
4882
input[type="datetime-local"].md-input.uk-form-width-small,
4883
input[type="date"].md-input.uk-form-width-small,
4884
input[type="month"].md-input.uk-form-width-small,
4885
input[type="time"].md-input.uk-form-width-small,
4886
input[type="week"].md-input.uk-form-width-small,
4887
input[type="number"].md-input.uk-form-width-small,
4888
input[type="email"].md-input.uk-form-width-small,
4889
input[type="url"].md-input.uk-form-width-small,
4890
input[type="search"].md-input.uk-form-width-small,
4891
input[type="tel"].md-input.uk-form-width-small,
4892
input[type="color"].md-input.uk-form-width-small {
4893
  width: 130px;
4894
}
4895
select.md-input.uk-form-width-medium,
4896
textarea.md-input.uk-form-width-medium,
4897
input:not([type]).md-input.uk-form-width-medium,
4898
input[type="text"].md-input.uk-form-width-medium,
4899
input[type="password"].md-input.uk-form-width-medium,
4900
input[type="datetime"].md-input.uk-form-width-medium,
4901
input[type="datetime-local"].md-input.uk-form-width-medium,
4902
input[type="date"].md-input.uk-form-width-medium,
4903
input[type="month"].md-input.uk-form-width-medium,
4904
input[type="time"].md-input.uk-form-width-medium,
4905
input[type="week"].md-input.uk-form-width-medium,
4906
input[type="number"].md-input.uk-form-width-medium,
4907
input[type="email"].md-input.uk-form-width-medium,
4908
input[type="url"].md-input.uk-form-width-medium,
4909
input[type="search"].md-input.uk-form-width-medium,
4910
input[type="tel"].md-input.uk-form-width-medium,
4911
input[type="color"].md-input.uk-form-width-medium {
4912
  width: 200px;
4913
}
4914
select.md-input.uk-form-width-large,
4915
textarea.md-input.uk-form-width-large,
4916
input:not([type]).md-input.uk-form-width-large,
4917
input[type="text"].md-input.uk-form-width-large,
4918
input[type="password"].md-input.uk-form-width-large,
4919
input[type="datetime"].md-input.uk-form-width-large,
4920
input[type="datetime-local"].md-input.uk-form-width-large,
4921
input[type="date"].md-input.uk-form-width-large,
4922
input[type="month"].md-input.uk-form-width-large,
4923
input[type="time"].md-input.uk-form-width-large,
4924
input[type="week"].md-input.uk-form-width-large,
4925
input[type="number"].md-input.uk-form-width-large,
4926
input[type="email"].md-input.uk-form-width-large,
4927
input[type="url"].md-input.uk-form-width-large,
4928
input[type="search"].md-input.uk-form-width-large,
4929
input[type="tel"].md-input.uk-form-width-large,
4930
input[type="color"].md-input.uk-form-width-large {
4931
  width: 500px;
4932
}
4933
select.md-input.uk-form-width-mini {
4934
  width: 65px;
4935
}
4936
.md-input-width-small {
4937
  min-width: 80px !important;
4938
}
4939
.md-input-width-medium {
4940
  min-width: 160px !important;
4941
}
4942
.md-input-width-large {
4943
  min-width: 320px !important;
4944
}
4945
textarea.md-input {
4946
  min-height: 80px;
4947
  resize: none;
4948
  overflow: hidden;
4949
  -webkit-transition: height 200ms ease-out;
4950
  transition: height 200ms ease-out;
4951
  line-height: 24px;
4952
}
4953
textarea.no_autosize {
4954
  min-height: inherit;
4955
  overflow: auto;
4956
  -webkit-transition: none;
4957
  transition: none;
4958
  resize: both;
4959
}
4960
.md-input-wrapper {
4961
  position: relative;
4962
  padding-top: 4px;
4963
  width: 100%;
4964
  display: block;
4965
}
4966
.md-input-wrapper .md-input-bar {
4967
  display: block;
4968
  position: absolute;
4969
  bottom: 0;
4970
  left: 0;
4971
  width: 100%;
4972
}
4973
.md-input-wrapper .md-input-bar:before,
4974
.md-input-wrapper .md-input-bar:after {
4975
  content: '';
4976
  display: block;
4977
  position: absolute;
4978
  bottom: 0;
4979
  width: 0;
4980
  height: 2px;
4981
  background: #1976d2;
4982
  -webkit-transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
4983
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
4984
}
4985
.md-input-wrapper .md-input-bar:before {
4986
  left: 50%;
4987
}
4988
.md-input-wrapper .md-input-bar:after {
4989
  right: 50%;
4990
}
4991
.md-input-wrapper .md-input-bar.uk-form-width-mini {
4992
  width: 40px;
4993
}
4994
.md-input-wrapper .md-input-bar.uk-form-width-small {
4995
  width: 130px;
4996
}
4997
.md-input-wrapper .md-input-bar.uk-form-width-medium {
4998
  width: 200px;
4999
}
5000
.md-input-wrapper .md-input-bar.uk-form-width-large {
5001
  width: 500px;
5002
}
5003
.md-input-wrapper > label {
5004
  color: #727272;
5005
  position: absolute;
5006
  top: 16px;
5007
  left: 4px;
5008
  right: 0;
5009
  pointer-events: none;
5010
  -webkit-transition: all 150ms ease-out;
5011
  transition: all 150ms ease-out;
5012
}
5013
.md-input-wrapper + * {
5014
  margin-top: 10px;
5015
}
5016
.md-input-wrapper.md-input-wrapper-disabled > label {
5017
  color: rgba(0, 0, 0, 0.26);
5018
}
5019
.md-input-wrapper-count {
5020
  padding-bottom: 24px;
5021
}
5022
.md-input-wrapper-count .md-input-bar {
5023
  bottom: 24px;
5024
}
5025
.md-input-wrapper-count .text-count-wrapper {
5026
  font-size: 12px;
5027
  position: absolute;
5028
  right: 0;
5029
  bottom: 0;
5030
  opacity: 0;
5031
  -webkit-transition: opacity 200ms ease-in;
5032
  transition: opacity 200ms ease-in;
5033
}
5034
.md-input-wrapper-count > .md-input-wrapper-count .text-count-wrapper {
5035
  position: absolute;
5036
  bottom: 0;
5037
  right: 0;
5038
}
5039
.md-input-filled > label,
5040
.md-input-focus > label {
5041
  top: -6px;
5042
  font-size: 12px;
5043
}
5044
.md-input-filled.md-input-wrapper-count .text-count-wrapper,
5045
.md-input-focus.md-input-wrapper-count .text-count-wrapper {
5046
  opacity: 1;
5047
}
5048
.md-input-focus .md-input-bar:before,
5049
.md-input-focus .md-input-bar:after {
5050
  width: 50%;
5051
}
5052
.md-input-wrapper-danger .md-input-bar:before,
5053
.md-input-wrapper-danger .md-input-bar:after {
5054
  background: #e53935;
5055
}
5056
.md-input-wrapper-danger.md-input-wrapper-count .text-count-wrapper {
5057
  color: #e53935;
5058
}
5059
.md-input-wrapper-success .md-input-bar:before,
5060
.md-input-wrapper-success .md-input-bar:after {
5061
  background: #7cb342;
5062
}
5063
.md-input-wrapper-success.md-input-wrapper-count .text-count-wrapper {
5064
  color: #7cb342;
5065
}
5066
.md-form-group {
5067
  position: relative;
5068
}
5069
label.md-label {
5070
  color: #999;
5071
  padding: 0 6px;
5072
  font-size: 11px;
5073
}
5074
@font-face {
5075
  font-family: 'Material Icons';
5076
  font-style: normal;
5077
  font-weight: 400;
5078
  src: url("../icons/material-design-icons/MaterialIcons-Regular.eot");
5079
  /* For IE6-8 */
5080
  src: local('Material Icons'), local('MaterialIcons-Regular'), url("../icons/material-design-icons/MaterialIcons-Regular.woff2") format('woff2'), url("../icons/material-design-icons/MaterialIcons-Regular.woff") format('woff'), url("../icons/material-design-icons/MaterialIcons-Regular.ttf") format('truetype');
5081
}
5082
.material-icons {
5083
  font-family: 'Material Icons';
5084
  font-weight: normal;
5085
  font-style: normal;
5086
  font-size: 18px;
5087
  /* Preferred icon size */
5088
  display: inline-block;
5089
  width: 1em;
5090
  height: 1em;
5091
  line-height: 1;
5092
  text-transform: none;
5093
  letter-spacing: normal;
5094
  /* Support for all WebKit browsers. */
5095
  -webkit-font-smoothing: antialiased;
5096
  /* Support for Safari and Chrome. */
5097
  text-rendering: optimizeLegibility;
5098
  /* Support for Firefox. */
5099
  -moz-osx-font-smoothing: grayscale;
5100
  /* Support for IE. */
5101
  -webkit-font-feature-settings: 'liga';
5102
  font-feature-settings: 'liga';
5103
  vertical-align: -4px;
5104
  color: rgba(0, 0, 0, 0.54);
5105
}
5106
.material-icons.md-inactive {
5107
  color: rgba(0, 0, 0, 0.26);
5108
}
5109
.material-icons.md-24 {
5110
  font-size: 24px;
5111
  vertical-align: -8px;
5112
}
5113
.material-icons.md-36 {
5114
  font-size: 36px;
5115
  vertical-align: -16px;
5116
}
5117
.material-icons.md-48 {
5118
  font-size: 48px;
5119
  vertical-align: -24px;
5120
}
5121
.material-icons.md-light {
5122
  color: #ffffff;
5123
}
5124
.material-icons.md-light.md-inactive {
5125
  color: rgba(255, 255, 255, 0.3);
5126
}
5127
/* list */
5128
.md-list {
5129
  margin: 0;
5130
  padding: 0;
5131
  list-style: none;
5132
  /*&-outside-wrapper {
5133
        overflow: hidden;
5134
    }*/
5135
}
5136
.md-list > li {
5137
  padding: 0;
5138
  margin: 0;
5139
  list-style: none;
5140
}
5141
.md-list,
5142
.md-list:before,
5143
.md-list:after,
5144
.md-list *,
5145
.md-list *:before,
5146
.md-list *:after {
5147
  -webkit-box-sizing: border-box;
5148
  box-sizing: border-box;
5149
}
5150
.md-list .uk-nestable-list > li,
5151
.md-list > li {
5152
  min-height: 48px;
5153
  padding: 8px 4px;
5154
  -webkit-box-sizing: border-box;
5155
  box-sizing: border-box;
5156
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
5157
  position: relative;
5158
}
5159
.md-list .uk-nestable-list > li > .md-list-content,
5160
.md-list > li > .md-list-content {
5161
  overflow: hidden;
5162
}
5163
.md-list .uk-nestable-list > li > .md-list-content > span,
5164
.md-list > li > .md-list-content > span {
5165
  display: block;
5166
}
5167
.md-list .uk-nestable-list > li > .md-list-content .md-list-heading,
5168
.md-list > li > .md-list-content .md-list-heading {
5169
  margin: 0;
5170
  font-weight: 500;
5171
  display: block;
5172
  overflow: hidden;
5173
  padding-bottom: 1px;
5174
}
5175
.md-list .uk-nestable-list > li > .md-list-content .md-list-menu,
5176
.md-list > li > .md-list-content .md-list-menu {
5177
  float: right;
5178
}
5179
.md-list .uk-nestable-list > li > .md-list-content .md-list-menu .md-list-menu-toggle,
5180
.md-list > li > .md-list-content .md-list-menu .md-list-menu-toggle {
5181
  display: block;
5182
  font-size: 18px;
5183
  color: rgba(0, 0, 0, 0.8);
5184
  width: 28px;
5185
  height: 28px;
5186
  line-height: 28px;
5187
  border-radius: 14px;
5188
  text-align: center;
5189
}
5190
.md-list .uk-nestable-list > li > .md-list-content .uk-badge,
5191
.md-list > li > .md-list-content .uk-badge {
5192
  float: right;
5193
  color: #fff !important;
5194
}
5195
.md-list .uk-nestable-list > li > .md-list-content .md-list-action,
5196
.md-list > li > .md-list-content .md-list-action {
5197
  float: right;
5198
  margin-left: 8px;
5199
  margin-top: 2px;
5200
  display: none;
5201
}
5202
.md-list .uk-nestable-list > li > .md-list-content .md-list-action-placeholder,
5203
.md-list > li > .md-list-content .md-list-action-placeholder {
5204
  float: right;
5205
  margin-left: 8px;
5206
  display: none;
5207
  width: 32px;
5208
  height: 32px;
5209
}
5210
.md-list .uk-nestable-list > li .md-list-action-dropdown,
5211
.md-list > li .md-list-action-dropdown {
5212
  position: absolute;
5213
  right: 16px;
5214
  top: 10px;
5215
  display: none;
5216
}
5217
.md-list .uk-nestable-list > li > a.md-list-content,
5218
.md-list > li > a.md-list-content {
5219
  display: block;
5220
  color: #212121;
5221
}
5222
.md-list .uk-nestable-list > li:last-child,
5223
.md-list > li:last-child {
5224
  border-bottom: none;
5225
}
5226
.md-list .uk-nestable-list > li.md-list-item-active,
5227
.md-list > li.md-list-item-active {
5228
  color: #7cb342;
5229
  background: #ededed;
5230
}
5231
.md-list .uk-nestable-list > li.md-list-item-disabled > .md-list-content,
5232
.md-list > li.md-list-item-disabled > .md-list-content {
5233
  color: #bdbdbd;
5234
}
5235
.md-list .uk-nestable-list > li.md-list-item-disabled > .md-list-content span,
5236
.md-list > li.md-list-item-disabled > .md-list-content span {
5237
  color: #bdbdbd !important;
5238
}
5239
.md-list .uk-nestable-list > li.heading_list,
5240
.md-list > li.heading_list {
5241
  min-height: 32px;
5242
  padding: 32px 8px 16px;
5243
  border-bottom: none;
5244
  background: transparent !important;
5245
  text-transform: uppercase;
5246
}
5247
.uk-touch .md-list .uk-nestable-list > li > .md-list-addon-element .uk-nestable-handle,
5248
.uk-touch .md-list > li > .md-list-addon-element .uk-nestable-handle,
5249
.md-list .uk-nestable-list > li:hover > .md-list-addon-element .uk-nestable-handle,
5250
.md-list > li:hover > .md-list-addon-element .uk-nestable-handle {
5251
  display: block;
5252
}
5253
.uk-touch .md-list .uk-nestable-list > li > .md-list-content .md-list-action,
5254
.uk-touch .md-list > li > .md-list-content .md-list-action,
5255
.md-list .uk-nestable-list > li:hover > .md-list-content .md-list-action,
5256
.md-list > li:hover > .md-list-content .md-list-action,
5257
.uk-touch .md-list .uk-nestable-list > li > .md-list-content .md-list-action-placeholder,
5258
.uk-touch .md-list > li > .md-list-content .md-list-action-placeholder,
5259
.md-list .uk-nestable-list > li:hover > .md-list-content .md-list-action-placeholder,
5260
.md-list > li:hover > .md-list-content .md-list-action-placeholder {
5261
  display: block;
5262
}
5263
.uk-touch .md-list .uk-nestable-list > li .md-list-action-dropdown,
5264
.uk-touch .md-list > li .md-list-action-dropdown,
5265
.md-list .uk-nestable-list > li:hover .md-list-action-dropdown,
5266
.md-list > li:hover .md-list-action-dropdown {
5267
  display: block;
5268
}
5269
.md-list .uk-nestable-list > li {
5270
  margin-left: 64px;
5271
}
5272
.md-list-addon > li {
5273
  margin-left: 64px;
5274
  position: relative;
5275
}
5276
.md-list-addon > li:last-child .md-list-addon-element {
5277
  border-bottom: none;
5278
  bottom: 0;
5279
}
5280
.md-list-addon > li:first-child .md-list-addon-element {
5281
  top: 0;
5282
}
5283
.md-list-addon > li.md-list-item-active .md-list-addon-element,
5284
.md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
5285
  color: #7cb342;
5286
}
5287
.md-list-addon-element {
5288
  position: absolute;
5289
  left: -64px;
5290
  top: -1px;
5291
  bottom: -1px;
5292
  width: 64px;
5293
  text-align: center;
5294
  padding: 8px 0;
5295
  display: block;
5296
}
5297
.md-list-addon-element .element-status {
5298
  position: absolute;
5299
  right: 12px;
5300
  top: 10px;
5301
  width: 12px;
5302
  height: 12px;
5303
  border-radius: 50%;
5304
  background: #bdbdbd;
5305
  border: 1px solid #fff;
5306
}
5307
.md-list-addon-element .element-status-danger {
5308
  background: #e53935;
5309
}
5310
.md-list-addon-element .element-status-success {
5311
  background: #7cb342;
5312
}
5313
.md-list-addon-element .element-status-warning {
5314
  background: #ffa000;
5315
}
5316
.md-list-addon-element > .md-list-addon-avatar {
5317
  margin-top: 2px;
5318
}
5319
.md-list-addon-element > .md-list-addon-icon {
5320
  font-size: 28px;
5321
  margin-top: 4px;
5322
  color: #727272;
5323
}
5324
.md-list-addon-element > .material-icons {
5325
  margin-top: 6px;
5326
}
5327
.md-list-addon-element .iradio_md,
5328
.md-list-addon-element .icheckbox_md {
5329
  margin-top: 10px;
5330
}
5331
.md-list-addon-element .uk-nestable-handle {
5332
  position: absolute;
5333
  left: -2px;
5334
  top: 12px;
5335
  display: none;
5336
}
5337
.md-list-interactive li {
5338
  cursor: pointer;
5339
}
5340
.md-list-bg {
5341
  background: #fff;
5342
}
5343
.md-list-separated li {
5344
  background: #fff;
5345
  padding: 8px;
5346
}
5347
.md-list-separated li + li {
5348
  border-top: none;
5349
  margin-top: 8px;
5350
}
5351
.md-list-bg-no-sep {
5352
  background: #fff;
5353
  padding: 8px;
5354
}
5355
.md-list-bg-no-sep li > .md-list-content {
5356
  padding: 0 4px;
5357
}
5358
.md-list-outside > li {
5359
  padding: 0;
5360
}
5361
.md-list-outside > li > .md-list-content {
5362
  padding: 8px 16px;
5363
  display: block;
5364
  color: #212121;
5365
}
5366
.md-list-outside > li.md-list-item-active,
5367
.md-list-outside > li:hover:not(.heading_list) {
5368
  background: rgba(0, 0, 0, 0.085);
5369
}
5370
.md-list-outside > li.heading_list {
5371
  padding: 32px 16px 16px;
5372
}
5373
.md-list-outside.md-list-addon li {
5374
  margin-left: 0;
5375
}
5376
.md-list-outside.md-list-addon li .md-list-addon-element {
5377
  position: relative;
5378
  top: auto;
5379
  left: auto;
5380
  float: left;
5381
}
5382
.md-list-outside.md-list-addon li .md-list-content {
5383
  padding-left: 0;
5384
}
5385
.md-list .uk-nestable-list {
5386
  padding-left: 0;
5387
}
5388
.md-list .uk-nestable-list .uk-nestable-item {
5389
  padding-right: 0;
5390
}
5391
.md-list .uk-nestable-item + .uk-nestable-item {
5392
  margin-top: 0;
5393
}
5394
.md-list-right.md-list-addon > li {
5395
  margin-left: 0;
5396
  margin-right: 64px;
5397
}
5398
.md-list-right.md-list-addon > li .md-list-addon-element {
5399
  left: auto;
5400
  right: -64px;
5401
}
5402
.md-list-borderless > li {
5403
  border-bottom: none;
5404
}
5405
.uk-touch .md-list-addon-element .uk-nestable-handle {
5406
  display: block !important;
5407
}
5408
.uk-touch .md-list-content .md-list-action,
5409
.uk-touch .md-list-content .md-list-action-placeholder {
5410
  display: block !important;
5411
}
5412
.uk-touch .md-list-action-dropdown {
5413
  display: block !important;
5414
}
5415
/* panels */
5416
.md-panel-full {
5417
  position: relative;
5418
  overflow: hidden;
5419
  min-height: 100%;
5420
}
5421
.md-panel-full,
5422
.md-panel-full:before,
5423
.md-panel-full:after,
5424
.md-panel-full *,
5425
.md-panel-full *:before,
5426
.md-panel-full *:after {
5427
  -webkit-box-sizing: border-box;
5428
  box-sizing: border-box;
5429
}
5430
.md-panel-full > .uk-grid {
5431
  height: 100%;
5432
}
5433
.md-panel-full > .uk-grid [class*=uk-width] {
5434
  height: 100%;
5435
}
5436
.md-panel-full .md-panel-full-aside {
5437
  margin: 16px 16px 32px;
5438
  padding: 16px;
5439
}
5440
.md-panel-full .md-panel-full-aside.md-panel-full-aside-bg {
5441
  background: #fff;
5442
}
5443
.md-panel-full .md-panel-full-content {
5444
  background: #fff;
5445
  padding: 25px 25px 90px;
5446
  width: inherit;
5447
  min-width: 100%;
5448
  min-height: 100%;
5449
}
5450
.md-panel-full .md-panel-full-content > .md-panel-full-content-inner {
5451
  position: relative;
5452
  z-index: 10;
5453
}
5454
.md-panel-full .md-panel-full-content:before {
5455
  width: inherit;
5456
  content: '';
5457
  position: absolute;
5458
  background: #fff;
5459
  display: block;
5460
  right: 0;
5461
  top: 0;
5462
  bottom: 0;
5463
  -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.26);
5464
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.26);
5465
  z-index: 5;
5466
}
5467
.md-panel-full .md-panel-full-content .md-panel-full-content-header {
5468
  margin-bottom: 24px;
5469
}
5470
.md-panel-full .md-panel-full-content .md-panel-full-content-header .md-panel-full-content-menu {
5471
  float: right;
5472
}
5473
/* top bar */
5474
.md-top-bar .md-top-bar-checkbox {
5475
  padding-top: 10px;
5476
}
5477
.md-top-bar .md-top-bar-icons {
5478
  margin-top: 5px;
5479
}
5480
.md-top-bar .md-top-bar-icons,
5481
.md-top-bar .md-top-bar-checkbox {
5482
  display: inline-block;
5483
}
5484
.md-top-bar .md-btn-group {
5485
  margin-top: 4px;
5486
}
5487
.md-top-bar .md-top-bar-actions-left {
5488
  float: left;
5489
  padding-left: 16px;
5490
}
5491
.md-top-bar .md-top-bar-actions-left .md-btn-group {
5492
  margin-left: 8px;
5493
}
5494
.md-top-bar .md-top-bar-actions-right {
5495
  float: right;
5496
  padding-right: 16px;
5497
}
5498
.md-top-bar .md-top-bar-actions-right .md-btn-group {
5499
  margin-right: 8px;
5500
}
5501
.md-top-bar .md-btn-small {
5502
  padding: 2px 12px;
5503
}
5504
/*** utils ***/
5505
/* avatar */
5506
.md-user-image {
5507
  width: 34px;
5508
  border-radius: 50%;
5509
}
5510
.md-user-image-large {
5511
  width: 82px;
5512
  border-radius: 50%;
5513
}
5514
.md-user-placeholder {
5515
  background-color: rgba(0, 0, 0, 0.085);
5516
  width: 34px;
5517
  height: 34px;
5518
  border-radius: 50%;
5519
}
5520
.md-user-letters {
5521
  display: inline-block;
5522
  line-height: 35px;
5523
  width: 34px;
5524
  height: 34px;
5525
  border-radius: 50%;
5526
  text-align: center;
5527
  text-transform: uppercase;
5528
  font-weight: 500;
5529
  background-color: rgba(0, 0, 0, 0.085);
5530
}
5531
/* icons */
5532
.md-icon {
5533
  font-size: 24px;
5534
  line-height: 32px !important;
5535
  height: 32px !important;
5536
  color: #727272;
5537
  border-radius: 50%;
5538
  cursor: pointer;
5539
  -webkit-transition: background 280ms ease-out, color 280ms ease-out;
5540
  transition: background 280ms ease-out, color 280ms ease-out;
5541
  width: 32px !important;
5542
  text-align: center;
5543
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
5544
}
5545
.md-icon:hover,
5546
.md-icon:focus,
5547
.md-icon:active,
5548
.md-icon.active {
5549
  color: #212121;
5550
  background: rgba(0, 0, 0, 0.08);
5551
}
5552
.md-icon-light {
5553
  color: #fff;
5554
}
5555
.md-icon-light:hover,
5556
.md-icon-light:focus,
5557
.md-icon-light:active {
5558
  color: #fff;
5559
  background: rgba(0, 0, 0, 0.2);
5560
}
5561
.md-icon-dark {
5562
  color: #212121;
5563
}
5564
.md-icon-dark:hover,
5565
.md-icon-dark:focus,
5566
.md-icon-dark:active {
5567
  color: #212121;
5568
  background: rgba(255, 255, 255, 0.6);
5569
}
5570
.md-icon + .md-icon {
5571
  margin-left: 4px;
5572
}
5573
.md-icon-btn {
5574
  display: inline-block;
5575
}
5576
.md-icon-btn.active .md-icon {
5577
  color: #212121;
5578
  background: rgba(0, 0, 0, 0.08);
5579
}
5580
button.md-icon {
5581
  background: none;
5582
  border: none;
5583
  outline: none;
5584
}
5585
.uk-open .md-icon {
5586
  color: #212121;
5587
  background: rgba(0, 0, 0, 0.08);
5588
}
5589
.uk-open .md-icon-light {
5590
  color: #fff;
5591
  background: rgba(0, 0, 0, 0.2);
5592
}
5593
.uk-open .md-icon-dark {
5594
  color: #212121;
5595
  background: rgba(255, 255, 255, 0.6);
5596
}
5597
/* dropdown list */
5598
.md-list-inputs {
5599
  margin: 0;
5600
  padding: 0;
5601
  list-style: none;
5602
}
5603
.md-list-inputs > li {
5604
  padding: 0;
5605
  margin: 0;
5606
  list-style: none;
5607
}
5608
.md-list-inputs li + li {
5609
  margin-top: 8px;
5610
}
5611
.md-list-inputs li .icheckbox_md {
5612
  float: left;
5613
}
5614
.md-list-inputs li label {
5615
  overflow: hidden;
5616
  padding-left: 8px;
5617
  display: block;
5618
  cursor: pointer;
5619
}
5620
/* hr */
5621
.md-hr {
5622
  margin: 32px 0;
5623
  height: 0;
5624
  border-top: 2px solid rgba(0, 0, 0, 0.12);
5625
}
5626
/* animated show */
5627
@-webkit-keyframes hierarchical_show {
5628
  0% {
5629
    opacity: 0;
5630
    -webkit-transform: scale3d(0.2, 0.2, 2);
5631
    transform: scale3d(0.2, 0.2, 2);
5632
  }
5633
  50% {
5634
    opacity: 1;
5635
  }
5636
  100% {
5637
    -webkit-transform: scale3d(1, 1, 1);
5638
    transform: scale3d(1, 1, 1);
5639
  }
5640
}
5641
@keyframes hierarchical_show {
5642
  0% {
5643
    opacity: 0;
5644
    -webkit-transform: scale3d(0.2, 0.2, 2);
5645
    transform: scale3d(0.2, 0.2, 2);
5646
  }
5647
  50% {
5648
    opacity: 1;
5649
  }
5650
  100% {
5651
    -webkit-transform: scale3d(1, 1, 1);
5652
    transform: scale3d(1, 1, 1);
5653
  }
5654
}
5655
.hierarchical_show {
5656
  will-change: transform, opacity;
5657
}
5658
.hierarchical_show > * {
5659
  visibility: hidden;
5660
}
5661
.hierarchical_show_inView > * {
5662
  -webkit-animation-fill-mode: both;
5663
  animation-fill-mode: both;
5664
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
5665
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
5666
  -webkit-animation-duration: 700ms;
5667
  animation-duration: 700ms;
5668
  -webkit-animation-name: hierarchical_show;
5669
  animation-name: hierarchical_show;
5670
  visibility: visible;
5671
}
5672
@-webkit-keyframes hierarchical_slide {
5673
  0% {
5674
    opacity: 0;
5675
    -webkit-transform: translate3d(0, 160%, 0);
5676
    transform: translate3d(0, 160%, 0);
5677
  }
5678
  33% {
5679
    opacity: 1;
5680
  }
5681
  100% {
5682
    -webkit-transform: translate3d(0, 0, 0);
5683
    transform: translate3d(0, 0, 0);
5684
  }
5685
}
5686
@keyframes hierarchical_slide {
5687
  0% {
5688
    opacity: 0;
5689
    -webkit-transform: translate3d(0, 160%, 0);
5690
    transform: translate3d(0, 160%, 0);
5691
  }
5692
  33% {
5693
    opacity: 1;
5694
  }
5695
  100% {
5696
    -webkit-transform: translate3d(0, 0, 0);
5697
    transform: translate3d(0, 0, 0);
5698
  }
5699
}
5700
.hierarchical_slide {
5701
  will-change: transform, opacity;
5702
}
5703
.hierarchical_slide > * {
5704
  visibility: hidden;
5705
}
5706
.hierarchical_slide_inView > * {
5707
  -webkit-animation-fill-mode: both;
5708
  animation-fill-mode: both;
5709
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
5710
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
5711
  -webkit-animation-duration: 700ms;
5712
  animation-duration: 700ms;
5713
  -webkit-animation-name: hierarchical_slide;
5714
  animation-name: hierarchical_slide;
5715
  visibility: visible;
5716
}
5717
.fast_animation {
5718
  -webkit-animation-duration: 350ms;
5719
  animation-duration: 350ms;
5720
}
5721
/* 5. partials (header,sidebars,top bar) ============= */
5722
/* 6. altair landing page styles ===================== */
5723
html {
5724
  background: #fff;
5725
}
5726
body {
5727
  font: 400 15px / 1.42857143 "Roboto", sans-serif;
5728
  -webkit-box-sizing: border-box;
5729
  box-sizing: border-box;
5730
  overflow-x: hidden;
5731
}
5732
/*html, body {
5733
    height: 100%;
5734
}*/
5735
a,
5736
button {
5737
  outline: none !important;
5738
}
5739
a {
5740
  color: #1e88e5;
5741
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
5742
}
5743
a:hover,
5744
a:active {
5745
  color: #0d47a1;
5746
  text-decoration: none;
5747
}
5748
.uk-text-upper {
5749
  text-transform: uppercase;
5750
}
5751
.animate > * {
5752
  visibility: hidden;
5753
}
5754
.animated {
5755
  visibility: visible;
5756
}
5757
[class*=uk-animation-] {
5758
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
5759
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
5760
  -webkit-animation-duration: 840ms;
5761
  animation-duration: 840ms;
5762
}
5763
.heading_a {
5764
  margin: 0;
5765
  font: 300 42px / 48px "Roboto", sans-serif;
5766
}
5767
.heading_a .sub-heading {
5768
  font-weight: 300;
5769
  font-size: 24px;
5770
  line-height: 30px;
5771
  display: block;
5772
  padding-top: 10px;
5773
}
5774
@media only screen and (max-width: 959px) {
5775
  .heading_a {
5776
    font: 300 32px / 36px "Roboto", sans-serif;
5777
  }
5778
  .heading_a .sub-heading {
5779
    font-size: 20px;
5780
    line-height: 24px;
5781
  }
5782
}
5783
.heading_b {
5784
  margin: 0;
5785
  font: 300 32px / 36px "Roboto", sans-serif;
5786
}
5787
.heading_b .sub-heading {
5788
  font-weight: 300;
5789
  font-size: 20px;
5790
  line-height: 26px;
5791
  display: block;
5792
  padding-top: 10px;
5793
}
5794
@media only screen and (max-width: 959px) {
5795
  .heading_b {
5796
    font: 300 28px / 32px "Roboto", sans-serif;
5797
  }
5798
  .heading_b .sub-heading {
5799
    font-size: 18px;
5800
    line-height: 22px;
5801
  }
5802
}
5803
.heading_c {
5804
  margin: 0;
5805
  font: 400 24px / 28px "Roboto", sans-serif;
5806
}
5807
.heading_c .sub-heading {
5808
  font-weight: 300;
5809
  font-size: 18px;
5810
  line-height: 20px;
5811
  display: block;
5812
  padding-top: 10px;
5813
}
5814
@media only screen and (max-width: 959px) {
5815
  .heading_c {
5816
    font: 300 22px / 25px "Roboto", sans-serif;
5817
  }
5818
  .heading_c .sub-heading {
5819
    font-size: 16px;
5820
    line-height: 20px;
5821
  }
5822
}
5823
.heading_a + .uk-grid,
5824
.heading_b + .uk-grid,
5825
.heading_c + .uk-grid {
5826
  margin-top: 24px;
5827
}
5828
.heading_a .material-icons,
5829
.heading_b .material-icons,
5830
.heading_c .material-icons {
5831
  vertical-align: middle;
5832
}
5833
.heading_light,
5834
.heading_light .sub-heading {
5835
  color: #fff;
5836
}
5837
.icon_large {
5838
  font-size: 64px;
5839
}
5840
@media only screen and (max-width: 959px) {
5841
  .icon_large {
5842
    font-size: 48px;
5843
  }
5844
}
5845
.icon_dark {
5846
  color: #727272;
5847
}
5848
#header_main {
5849
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
5850
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
5851
  position: relative;
5852
  z-index: 10;
5853
}
5854
#header_main .uk-navbar {
5855
  background: #fff;
5856
}
5857
#header_main .uk-navbar-nav > li > a {
5858
  color: #727272;
5859
  text-transform: uppercase;
5860
  font-size: 14px;
5861
  font-family: "Roboto", sans-serif;
5862
  font-weight: 500;
5863
  -webkit-box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0);
5864
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0);
5865
  background: none !important;
5866
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
5867
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
5868
}
5869
#header_main .uk-navbar-nav > li > a:hover,
5870
#header_main .uk-navbar-nav > li > a:active {
5871
  color: #727272;
5872
}
5873
#header_main .uk-navbar-nav > li.current_active a {
5874
  -webkit-box-shadow: inset 0 -4px 0 #7cb342;
5875
  box-shadow: inset 0 -4px 0 #7cb342;
5876
}
5877
#header_main.header-light {
5878
  background: #fff;
5879
}
5880
#header_main .header_cta {
5881
  margin-top: 14px;
5882
}
5883
@media only screen and (max-width: 959px) {
5884
  #header_main .header_cta {
5885
    margin-top: 6px;
5886
  }
5887
}
5888
#mobile_navigation_toggle {
5889
  display: none;
5890
}
5891
#mobile_navigation .uk-offcanvas-bar {
5892
  background: #fff;
5893
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
5894
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
5895
  -webkit-transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
5896
  transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
5897
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
5898
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
5899
}
5900
#mobile_navigation .uk-offcanvas-bar:after {
5901
  display: none;
5902
}
5903
#mobile_navigation .uk-offcanvas-bar ul {
5904
  margin: 32px 0 0 0;
5905
  padding: 0;
5906
  list-style: none;
5907
}
5908
#mobile_navigation .uk-offcanvas-bar ul > li {
5909
  padding: 0;
5910
  margin: 0;
5911
  list-style: none;
5912
}
5913
#mobile_navigation .uk-offcanvas-bar ul li a {
5914
  display: block;
5915
  font-size: 16px;
5916
  font-weight: 500;
5917
  line-height: 25px;
5918
  padding: 8px 20px;
5919
  color: #212121;
5920
}
5921
#mobile_navigation .uk-offcanvas-bar ul li a small {
5922
  font-size: 12px;
5923
  color: #727272;
5924
  display: block;
5925
  margin-top: -2px;
5926
}
5927
#mobile_navigation .uk-offcanvas-bar ul li a .menu_icon {
5928
  width: 48px;
5929
  text-align: left;
5930
  display: inline-block;
5931
  color: #727272;
5932
  float: left;
5933
}
5934
#mobile_navigation .uk-offcanvas-bar ul li a .menu_icon .material-icons {
5935
  font-size: 24px;
5936
  vertical-align: top;
5937
}
5938
#mobile_navigation .uk-offcanvas-bar ul li a .menu_title {
5939
  display: block;
5940
  overflow: hidden;
5941
}
5942
.uk-offcanvas-page {
5943
  -webkit-transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
5944
  transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
5945
}
5946
.header_sticky {
5947
  padding-top: 64px;
5948
}
5949
@media only screen and (max-width: 959px) {
5950
  .header_sticky {
5951
    padding-top: 48px;
5952
  }
5953
}
5954
.header_sticky #header_main {
5955
  position: fixed;
5956
  top: 0;
5957
  left: 0;
5958
  right: 0;
5959
  z-index: 1000;
5960
}
5961
.header_shadow #header_main {
5962
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
5963
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
5964
}
5965
.banner {
5966
  color: #fff;
5967
  position: relative;
5968
}
5969
.banner .uk-slideshow,
5970
.banner .uk-slideshow > li {
5971
  height: 640px;
5972
}
5973
.banner .uk-slideshow > li {
5974
  background-size: 100% auto;
5975
  background-position: center center;
5976
  background-repeat: no-repeat;
5977
}
5978
.banner .uk-slideshow > li .slide_content_a {
5979
  margin: 160px 0 0 640px;
5980
}
5981
.banner .uk-slideshow > li .slide_content_b {
5982
  margin: 320px 0 0 0;
5983
  background: rgba(0, 0, 0, 0.4);
5984
  padding: 24px;
5985
}
5986
.banner .uk-slideshow > li .slide_content_c {
5987
  margin: 120px 540px 0 0;
5988
}
5989
.banner .uk-slideshow > li .slide_content_c .slide_header,
5990
.banner .uk-slideshow > li .slide_content_c p {
5991
  color: #212121;
5992
}
5993
.banner .uk-slideshow > li .slide_header {
5994
  color: #fff;
5995
  font: 400 38px / 42px "Roboto", sans-serif;
5996
  margin: 0 0 18px;
5997
}
5998
.banner .uk-slideshow > li p {
5999
  margin: 0;
6000
  font-size: 20px;
6001
  font-weight: 300;
6002
}
6003
.banner .uk-slideshow > li p + * {
6004
  margin-top: 32px;
6005
}
6006
.banner .slide_navigation {
6007
  display: none;
6008
}
6009
.banner:hover .slide_navigation {
6010
  display: block;
6011
}
6012
.uk-touch .slide_navigation {
6013
  display: block !important;
6014
}
6015
.uk-slidenav {
6016
  position: absolute;
6017
  top: 50%;
6018
  margin-top: -30px;
6019
  color: #fff !important;
6020
  background: rgba(0, 0, 0, 0.2);
6021
  border-radius: 12px;
6022
  font-size: 48px;
6023
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
6024
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
6025
}
6026
.uk-slidenav-previous {
6027
  left: 16px;
6028
}
6029
.uk-slidenav-previous:before {
6030
  position: relative;
6031
  left: -2px;
6032
  top: -2px;
6033
}
6034
.uk-slidenav-next {
6035
  right: 16px;
6036
}
6037
.uk-slidenav-next:before {
6038
  position: relative;
6039
  right: -2px;
6040
  top: -2px;
6041
}
6042
.uk-slidenav:active,
6043
.uk-slidenav:hover {
6044
  background: rgba(0, 0, 0, 0.6);
6045
  border-radius: 50%;
6046
}
6047
.uk-dotnav > li {
6048
  border: 2px solid rgba(255, 255, 255, 0.8);
6049
  padding: 2px;
6050
  margin-right: 6px;
6051
  border-radius: 50%;
6052
}
6053
.uk-dotnav > li.uk-active {
6054
  border-color: #fff;
6055
}
6056
.uk-dotnav > li.uk-active > a {
6057
  background: #7cb342;
6058
}
6059
.uk-dotnav > li > a {
6060
  margin: 0;
6061
  width: 14px;
6062
  height: 14px;
6063
}
6064
.section {
6065
  padding: 48px 0;
6066
  position: relative;
6067
}
6068
.section_large {
6069
  padding: 64px 0;
6070
}
6071
.section_dark {
6072
  color: #fff;
6073
}
6074
.section_gallery {
6075
  position: relative;
6076
}
6077
.section_gallery .slide_navigation {
6078
  display: none;
6079
}
6080
.section_gallery:hover .slide_navigation {
6081
  display: block;
6082
}
6083
[class*=uk-width].uk-container-center {
6084
  float: none;
6085
}
6086
@media only screen and (max-width: 1219px) {
6087
  .banner .uk-slideshow,
6088
  .banner .uk-slideshow > li {
6089
    height: auto;
6090
    min-height: 360px;
6091
  }
6092
  .banner .uk-slideshow > li .slide_content_a,
6093
  .banner .uk-slideshow > li .slide_content_b,
6094
  .banner .uk-slideshow > li .slide_content_c {
6095
    margin: 0;
6096
    position: absolute;
6097
    left: 0;
6098
    right: 0;
6099
    top: 0;
6100
    bottom: 0;
6101
    background: rgba(0, 0, 0, 0.4);
6102
    padding: 48px 48px 0;
6103
    text-align: center;
6104
  }
6105
  .banner .uk-slideshow > li .slide_header {
6106
    margin-bottom: 20px;
6107
    color: #fff !important;
6108
  }
6109
  .banner .uk-slideshow > li p {
6110
    font-size: 20px;
6111
    color: #fff !important;
6112
  }
6113
  .banner .uk-slideshow > li p + * {
6114
    margin-top: 24px;
6115
  }
6116
}
6117
@media only screen and (max-width: 959px) {
6118
  #header_main {
6119
    height: 48px;
6120
  }
6121
  #header_main .uk-navbar-brand {
6122
    line-height: 48px;
6123
    padding: 0;
6124
  }
6125
  #main_navigation {
6126
    display: none;
6127
  }
6128
  #mobile_navigation_toggle {
6129
    padding: 12px 4px 10px;
6130
    display: inline-block;
6131
  }
6132
  #mobile_navigation_toggle i {
6133
    font-size: 24px;
6134
  }
6135
}
6136
@media only screen and (max-width: 767px) {
6137
  .banner .uk-slideshow > li {
6138
    background-size: auto 100%;
6139
  }
6140
  .banner .uk-slideshow > li .slide_content_a,
6141
  .banner .uk-slideshow > li .slide_content_b,
6142
  .banner .uk-slideshow > li .slide_content_c {
6143
    margin: 0;
6144
    position: absolute;
6145
    left: 0;
6146
    right: 0;
6147
    top: 0;
6148
    bottom: 0;
6149
    background: rgba(0, 0, 0, 0.4);
6150
    padding: 24px 12px;
6151
    text-align: center;
6152
  }
6153
  .banner .uk-slideshow > li .slide_header {
6154
    font: 400 24px / 28px "Roboto", sans-serif;
6155
    margin-bottom: 6px;
6156
    color: #fff !important;
6157
  }
6158
  .banner .uk-slideshow > li p {
6159
    font-size: 15px;
6160
    color: #fff !important;
6161
  }
6162
  .banner .uk-slideshow > li p + * {
6163
    margin-top: 24px;
6164
  }
6165
  .uk-container {
6166
    padding-left: 15px;
6167
    padding-right: 15px;
6168
  }
6169
}
6170
/* theme */
6171

    
6172
/*# sourceMappingURL=main.css.map */
(1-1/4)