Project

General

Profile

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

    
6082
/*# sourceMappingURL=login_page.css.map */
(6-6/16)