mithril-materialized 2.0.0-beta.3 → 2.0.0-beta.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/dist/advanced.css +1888 -0
  2. package/dist/autocomplete.d.ts +3 -3
  3. package/dist/breadcrumb.d.ts +53 -0
  4. package/dist/button.d.ts +10 -10
  5. package/dist/carousel.d.ts +2 -2
  6. package/dist/chip.d.ts +2 -2
  7. package/dist/code-block.d.ts +2 -2
  8. package/dist/collapsible.d.ts +2 -2
  9. package/dist/collection.d.ts +2 -2
  10. package/dist/components.css +2310 -0
  11. package/dist/core.css +3402 -0
  12. package/dist/datepicker.d.ts +66 -0
  13. package/dist/dropdown.d.ts +2 -2
  14. package/dist/file-upload.d.ts +34 -0
  15. package/dist/floating-action-button.d.ts +2 -2
  16. package/dist/forms.css +2284 -0
  17. package/dist/index.css +1451 -144
  18. package/dist/index.d.ts +12 -1
  19. package/dist/index.esm.js +4590 -2612
  20. package/dist/index.js +4610 -2611
  21. package/dist/index.min.css +8 -0
  22. package/dist/index.umd.js +4610 -2611
  23. package/dist/input-options.d.ts +1 -1
  24. package/dist/input.d.ts +9 -9
  25. package/dist/label.d.ts +2 -2
  26. package/dist/material-box.d.ts +2 -2
  27. package/dist/modal.d.ts +2 -2
  28. package/dist/option.d.ts +4 -4
  29. package/dist/pagination.d.ts +2 -2
  30. package/dist/parallax.d.ts +2 -2
  31. package/dist/pickers.css +487 -0
  32. package/dist/pushpin.d.ts +32 -0
  33. package/dist/radio.d.ts +4 -4
  34. package/dist/search-select.d.ts +2 -2
  35. package/dist/select.d.ts +2 -2
  36. package/dist/sidenav.d.ts +76 -0
  37. package/dist/switch.d.ts +2 -2
  38. package/dist/tabs.d.ts +2 -2
  39. package/dist/theme-switcher.d.ts +49 -0
  40. package/dist/timepicker.d.ts +42 -0
  41. package/dist/toast.d.ts +45 -0
  42. package/dist/tooltip.d.ts +59 -0
  43. package/dist/utilities.css +3197 -0
  44. package/dist/wizard.d.ts +58 -0
  45. package/package.json +13 -5
  46. package/sass/components/_breadcrumb.scss +248 -0
  47. package/sass/components/_buttons.scss +3 -3
  48. package/sass/components/_collapsible.scss +8 -8
  49. package/sass/components/_datepicker.scss +45 -14
  50. package/sass/components/_file-upload.scss +228 -0
  51. package/sass/components/_global.scss +7 -5
  52. package/sass/components/_modal.scss +5 -2
  53. package/sass/components/_navbar.scss +13 -5
  54. package/sass/components/_sidenav.scss +164 -7
  55. package/sass/components/_tabs.scss +5 -4
  56. package/sass/components/_theme-switcher.scss +120 -0
  57. package/sass/components/_theme-variables.scss +187 -0
  58. package/sass/components/_timepicker.scss +179 -87
  59. package/sass/components/_wizard.scss +416 -0
  60. package/sass/components/forms/_input-fields.scss +34 -12
  61. package/sass/components/forms/_radio-buttons.scss +10 -10
  62. package/sass/components/forms/_switches.scss +6 -6
  63. package/sass/materialize.scss +7 -0
  64. package/dist/pickers.d.ts +0 -130
package/dist/core.css ADDED
@@ -0,0 +1,3402 @@
1
+ @charset "UTF-8";
2
+ /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
3
+ /* Document
4
+ ========================================================================== */
5
+ /**
6
+ * 1. Correct the line height in all browsers.
7
+ * 2. Prevent adjustments of font size after orientation changes in
8
+ * IE on Windows Phone and in iOS.
9
+ */
10
+ html {
11
+ line-height: 1.15; /* 1 */
12
+ -ms-text-size-adjust: 100%; /* 2 */
13
+ -webkit-text-size-adjust: 100%; /* 2 */
14
+ }
15
+
16
+ /* Sections
17
+ ========================================================================== */
18
+ /**
19
+ * Remove the margin in all browsers (opinionated).
20
+ */
21
+ body {
22
+ margin: 0;
23
+ }
24
+
25
+ /**
26
+ * Add the correct display in IE 9-.
27
+ */
28
+ article,
29
+ aside,
30
+ footer,
31
+ header,
32
+ nav,
33
+ section {
34
+ display: block;
35
+ }
36
+
37
+ /**
38
+ * Correct the font size and margin on `h1` elements within `section` and
39
+ * `article` contexts in Chrome, Firefox, and Safari.
40
+ */
41
+ h1 {
42
+ font-size: 2em;
43
+ margin: 0.67em 0;
44
+ }
45
+
46
+ /* Grouping content
47
+ ========================================================================== */
48
+ /**
49
+ * Add the correct display in IE 9-.
50
+ * 1. Add the correct display in IE.
51
+ */
52
+ figcaption,
53
+ figure,
54
+ main { /* 1 */
55
+ display: block;
56
+ }
57
+
58
+ /**
59
+ * Add the correct margin in IE 8.
60
+ */
61
+ figure {
62
+ margin: 1em 40px;
63
+ }
64
+
65
+ /**
66
+ * 1. Add the correct box sizing in Firefox.
67
+ * 2. Show the overflow in Edge and IE.
68
+ */
69
+ hr {
70
+ box-sizing: content-box; /* 1 */
71
+ height: 0; /* 1 */
72
+ overflow: visible; /* 2 */
73
+ }
74
+
75
+ /**
76
+ * 1. Correct the inheritance and scaling of font size in all browsers.
77
+ * 2. Correct the odd `em` font sizing in all browsers.
78
+ */
79
+ pre {
80
+ font-family: monospace, monospace; /* 1 */
81
+ font-size: 1em; /* 2 */
82
+ }
83
+
84
+ /* Text-level semantics
85
+ ========================================================================== */
86
+ /**
87
+ * 1. Remove the gray background on active links in IE 10.
88
+ * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
89
+ */
90
+ a {
91
+ background-color: transparent; /* 1 */
92
+ -webkit-text-decoration-skip: objects; /* 2 */
93
+ }
94
+
95
+ /**
96
+ * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
97
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
98
+ */
99
+ abbr[title] {
100
+ border-bottom: none; /* 1 */
101
+ text-decoration: underline; /* 2 */
102
+ text-decoration: underline dotted; /* 2 */
103
+ }
104
+
105
+ /**
106
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
107
+ */
108
+ b,
109
+ strong {
110
+ font-weight: inherit;
111
+ }
112
+
113
+ /**
114
+ * Add the correct font weight in Chrome, Edge, and Safari.
115
+ */
116
+ b,
117
+ strong {
118
+ font-weight: bolder;
119
+ }
120
+
121
+ /**
122
+ * 1. Correct the inheritance and scaling of font size in all browsers.
123
+ * 2. Correct the odd `em` font sizing in all browsers.
124
+ */
125
+ code,
126
+ kbd,
127
+ samp {
128
+ font-family: monospace, monospace; /* 1 */
129
+ font-size: 1em; /* 2 */
130
+ }
131
+
132
+ /**
133
+ * Add the correct font style in Android 4.3-.
134
+ */
135
+ dfn {
136
+ font-style: italic;
137
+ }
138
+
139
+ /**
140
+ * Add the correct background and color in IE 9-.
141
+ */
142
+ mark {
143
+ background-color: #ff0;
144
+ color: #000;
145
+ }
146
+
147
+ /**
148
+ * Add the correct font size in all browsers.
149
+ */
150
+ small {
151
+ font-size: 80%;
152
+ }
153
+
154
+ /**
155
+ * Prevent `sub` and `sup` elements from affecting the line height in
156
+ * all browsers.
157
+ */
158
+ sub,
159
+ sup {
160
+ font-size: 75%;
161
+ line-height: 0;
162
+ position: relative;
163
+ vertical-align: baseline;
164
+ }
165
+
166
+ sub {
167
+ bottom: -0.25em;
168
+ }
169
+
170
+ sup {
171
+ top: -0.5em;
172
+ }
173
+
174
+ /* Embedded content
175
+ ========================================================================== */
176
+ /**
177
+ * Add the correct display in IE 9-.
178
+ */
179
+ audio,
180
+ video {
181
+ display: inline-block;
182
+ }
183
+
184
+ /**
185
+ * Add the correct display in iOS 4-7.
186
+ */
187
+ audio:not([controls]) {
188
+ display: none;
189
+ height: 0;
190
+ }
191
+
192
+ /**
193
+ * Remove the border on images inside links in IE 10-.
194
+ */
195
+ img {
196
+ border-style: none;
197
+ }
198
+
199
+ /**
200
+ * Hide the overflow in IE.
201
+ */
202
+ svg:not(:root) {
203
+ overflow: hidden;
204
+ }
205
+
206
+ /* Forms
207
+ ========================================================================== */
208
+ /**
209
+ * 1. Change the font styles in all browsers (opinionated).
210
+ * 2. Remove the margin in Firefox and Safari.
211
+ */
212
+ button,
213
+ input,
214
+ optgroup,
215
+ select,
216
+ textarea {
217
+ font-family: sans-serif; /* 1 */
218
+ font-size: 100%; /* 1 */
219
+ line-height: 1.15; /* 1 */
220
+ margin: 0; /* 2 */
221
+ }
222
+
223
+ /**
224
+ * Show the overflow in IE.
225
+ * 1. Show the overflow in Edge.
226
+ */
227
+ button,
228
+ input { /* 1 */
229
+ overflow: visible;
230
+ }
231
+
232
+ /**
233
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
234
+ * 1. Remove the inheritance of text transform in Firefox.
235
+ */
236
+ button,
237
+ select { /* 1 */
238
+ text-transform: none;
239
+ }
240
+
241
+ /**
242
+ * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
243
+ * controls in Android 4.
244
+ * 2. Correct the inability to style clickable types in iOS and Safari.
245
+ */
246
+ button,
247
+ html [type=button],
248
+ [type=reset],
249
+ [type=submit] {
250
+ -webkit-appearance: button; /* 2 */
251
+ }
252
+
253
+ /**
254
+ * Remove the inner border and padding in Firefox.
255
+ */
256
+ button::-moz-focus-inner,
257
+ [type=button]::-moz-focus-inner,
258
+ [type=reset]::-moz-focus-inner,
259
+ [type=submit]::-moz-focus-inner {
260
+ border-style: none;
261
+ padding: 0;
262
+ }
263
+
264
+ /**
265
+ * Restore the focus styles unset by the previous rule.
266
+ */
267
+ button:-moz-focusring,
268
+ [type=button]:-moz-focusring,
269
+ [type=reset]:-moz-focusring,
270
+ [type=submit]:-moz-focusring {
271
+ outline: 1px dotted ButtonText;
272
+ }
273
+
274
+ /**
275
+ * Correct the padding in Firefox.
276
+ */
277
+ fieldset {
278
+ padding: 0.35em 0.75em 0.625em;
279
+ }
280
+
281
+ /**
282
+ * 1. Correct the text wrapping in Edge and IE.
283
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
284
+ * 3. Remove the padding so developers are not caught out when they zero out
285
+ * `fieldset` elements in all browsers.
286
+ */
287
+ legend {
288
+ box-sizing: border-box; /* 1 */
289
+ color: inherit; /* 2 */
290
+ display: table; /* 1 */
291
+ max-width: 100%; /* 1 */
292
+ padding: 0; /* 3 */
293
+ white-space: normal; /* 1 */
294
+ }
295
+
296
+ /**
297
+ * 1. Add the correct display in IE 9-.
298
+ * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
299
+ */
300
+ progress {
301
+ display: inline-block; /* 1 */
302
+ vertical-align: baseline; /* 2 */
303
+ }
304
+
305
+ /**
306
+ * Remove the default vertical scrollbar in IE.
307
+ */
308
+ textarea {
309
+ overflow: auto;
310
+ }
311
+
312
+ /**
313
+ * 1. Add the correct box sizing in IE 10-.
314
+ * 2. Remove the padding in IE 10-.
315
+ */
316
+ [type=checkbox],
317
+ [type=radio] {
318
+ box-sizing: border-box; /* 1 */
319
+ padding: 0; /* 2 */
320
+ }
321
+
322
+ /**
323
+ * Correct the cursor style of increment and decrement buttons in Chrome.
324
+ */
325
+ [type=number]::-webkit-inner-spin-button,
326
+ [type=number]::-webkit-outer-spin-button {
327
+ height: auto;
328
+ }
329
+
330
+ /**
331
+ * 1. Correct the odd appearance in Chrome and Safari.
332
+ * 2. Correct the outline style in Safari.
333
+ */
334
+ [type=search] {
335
+ -webkit-appearance: textfield; /* 1 */
336
+ outline-offset: -2px; /* 2 */
337
+ }
338
+
339
+ /**
340
+ * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
341
+ */
342
+ [type=search]::-webkit-search-cancel-button,
343
+ [type=search]::-webkit-search-decoration {
344
+ -webkit-appearance: none;
345
+ }
346
+
347
+ /**
348
+ * 1. Correct the inability to style clickable types in iOS and Safari.
349
+ * 2. Change font properties to `inherit` in Safari.
350
+ */
351
+ ::-webkit-file-upload-button {
352
+ -webkit-appearance: button; /* 1 */
353
+ font: inherit; /* 2 */
354
+ }
355
+
356
+ /* Interactive
357
+ ========================================================================== */
358
+ /*
359
+ * Add the correct display in IE 9-.
360
+ * 1. Add the correct display in Edge, IE, and Firefox.
361
+ */
362
+ details,
363
+ menu {
364
+ display: block;
365
+ }
366
+
367
+ /*
368
+ * Add the correct display in all browsers.
369
+ */
370
+ summary {
371
+ display: list-item;
372
+ }
373
+
374
+ /* Scripting
375
+ ========================================================================== */
376
+ /**
377
+ * Add the correct display in IE 9-.
378
+ */
379
+ canvas {
380
+ display: inline-block;
381
+ }
382
+
383
+ /**
384
+ * Add the correct display in IE.
385
+ */
386
+ template {
387
+ display: none;
388
+ }
389
+
390
+ /* Hidden
391
+ ========================================================================== */
392
+ /**
393
+ * Add the correct display in IE 10-.
394
+ */
395
+ [hidden] {
396
+ display: none;
397
+ }
398
+
399
+ html {
400
+ box-sizing: border-box;
401
+ }
402
+
403
+ *, *:before, *:after {
404
+ box-sizing: inherit;
405
+ }
406
+
407
+ button,
408
+ input,
409
+ optgroup,
410
+ select,
411
+ textarea {
412
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
413
+ }
414
+
415
+ ul:not(.browser-default) {
416
+ padding-left: 0;
417
+ list-style-type: none;
418
+ }
419
+ ul:not(.browser-default) > li {
420
+ list-style-type: none;
421
+ }
422
+
423
+ a {
424
+ color: #039be5;
425
+ text-decoration: none;
426
+ -webkit-tap-highlight-color: transparent;
427
+ }
428
+
429
+ .valign-wrapper {
430
+ display: flex;
431
+ align-items: center;
432
+ }
433
+
434
+ .clearfix {
435
+ clear: both;
436
+ }
437
+
438
+ .z-depth-0 {
439
+ box-shadow: none !important;
440
+ }
441
+
442
+ /* 2dp elevation modified*/
443
+ .z-depth-1 {
444
+ box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
445
+ }
446
+
447
+ .z-depth-1-half {
448
+ box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
449
+ }
450
+
451
+ /* 6dp elevation modified*/
452
+ .z-depth-2 {
453
+ box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
454
+ }
455
+
456
+ /* 12dp elevation modified*/
457
+ .z-depth-3 {
458
+ box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
459
+ }
460
+
461
+ /* 16dp elevation */
462
+ .z-depth-4 {
463
+ box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
464
+ }
465
+
466
+ /* 24dp elevation */
467
+ .z-depth-5 {
468
+ box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
469
+ }
470
+
471
+ .hoverable {
472
+ transition: box-shadow 0.25s;
473
+ }
474
+ .hoverable:hover {
475
+ box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
476
+ }
477
+
478
+ .divider {
479
+ height: 1px;
480
+ overflow: hidden;
481
+ background-color: #e0e0e0;
482
+ }
483
+
484
+ blockquote {
485
+ margin: 20px 0;
486
+ padding-left: 1.5rem;
487
+ border-left: 5px solid #ee6e73;
488
+ }
489
+
490
+ i {
491
+ line-height: inherit;
492
+ }
493
+ i.left {
494
+ float: left;
495
+ margin-right: 15px;
496
+ }
497
+ i.right {
498
+ float: right;
499
+ margin-left: 15px;
500
+ }
501
+ i.tiny {
502
+ font-size: 1rem;
503
+ }
504
+ i.small {
505
+ font-size: 2rem;
506
+ }
507
+ i.medium {
508
+ font-size: 4rem;
509
+ }
510
+ i.large {
511
+ font-size: 6rem;
512
+ }
513
+
514
+ img.responsive-img,
515
+ video.responsive-video {
516
+ max-width: 100%;
517
+ height: auto;
518
+ }
519
+
520
+ .pagination li {
521
+ display: inline-block;
522
+ border-radius: 2px;
523
+ text-align: center;
524
+ vertical-align: top;
525
+ height: 30px;
526
+ }
527
+ .pagination li a {
528
+ color: #444;
529
+ display: inline-block;
530
+ font-size: 1.2rem;
531
+ padding: 0 10px;
532
+ line-height: 30px;
533
+ }
534
+ .pagination li.active a {
535
+ color: #fff;
536
+ }
537
+ .pagination li.active {
538
+ background-color: #ee6e73;
539
+ }
540
+ .pagination li.disabled a {
541
+ cursor: default;
542
+ color: #999;
543
+ }
544
+ .pagination li i {
545
+ font-size: 2rem;
546
+ }
547
+ .pagination li.pages ul li {
548
+ display: inline-block;
549
+ float: none;
550
+ }
551
+
552
+ @media only screen and (max-width : 992px) {
553
+ .pagination {
554
+ width: 100%;
555
+ }
556
+ .pagination li.prev,
557
+ .pagination li.next {
558
+ width: 10%;
559
+ }
560
+ .pagination li.pages {
561
+ width: 80%;
562
+ overflow: hidden;
563
+ white-space: nowrap;
564
+ }
565
+ }
566
+ .breadcrumb {
567
+ display: inline-block;
568
+ font-size: 18px;
569
+ color: rgba(255, 255, 255, 0.7);
570
+ }
571
+ .breadcrumb i,
572
+ .breadcrumb [class^=mdi-], .breadcrumb [class*=mdi-],
573
+ .breadcrumb i.material-icons {
574
+ display: inline-block;
575
+ float: left;
576
+ font-size: 24px;
577
+ }
578
+ .breadcrumb:before {
579
+ content: "\e5cc";
580
+ color: rgba(255, 255, 255, 0.7);
581
+ vertical-align: top;
582
+ display: inline-block;
583
+ font-family: "Material Icons";
584
+ font-weight: normal;
585
+ font-style: normal;
586
+ font-size: 25px;
587
+ margin: 0 10px 0 8px;
588
+ -webkit-font-smoothing: antialiased;
589
+ float: left;
590
+ }
591
+ .breadcrumb:first-child:before {
592
+ display: none;
593
+ }
594
+ .breadcrumb:last-child {
595
+ color: #fff;
596
+ }
597
+
598
+ .parallax-container {
599
+ position: relative;
600
+ overflow: hidden;
601
+ height: 500px;
602
+ }
603
+ .parallax-container .parallax {
604
+ position: absolute;
605
+ top: 0;
606
+ left: 0;
607
+ right: 0;
608
+ bottom: 0;
609
+ z-index: -1;
610
+ }
611
+ .parallax-container .parallax img {
612
+ opacity: 0;
613
+ position: absolute;
614
+ left: 50%;
615
+ bottom: 0;
616
+ min-width: 100%;
617
+ min-height: 100%;
618
+ transform: translate3d(0, 0, 0);
619
+ transform: translateX(-50%);
620
+ }
621
+
622
+ .pin-top, .pin-bottom {
623
+ position: relative;
624
+ }
625
+
626
+ .pinned {
627
+ position: fixed !important;
628
+ }
629
+
630
+ /*********************
631
+ Transition Classes
632
+ **********************/
633
+ ul.staggered-list li {
634
+ opacity: 0;
635
+ }
636
+
637
+ .fade-in {
638
+ opacity: 0;
639
+ transform-origin: 0 50%;
640
+ }
641
+
642
+ /*********************
643
+ Media Query Classes
644
+ **********************/
645
+ @media only screen and (max-width : 600px) {
646
+ .hide-on-small-only, .hide-on-small-and-down {
647
+ display: none !important;
648
+ }
649
+ }
650
+
651
+ @media only screen and (max-width : 992px) {
652
+ .hide-on-med-and-down {
653
+ display: none !important;
654
+ }
655
+ }
656
+
657
+ @media only screen and (min-width : 601px) {
658
+ .hide-on-med-and-up {
659
+ display: none !important;
660
+ }
661
+ }
662
+
663
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
664
+ .hide-on-med-only {
665
+ display: none !important;
666
+ }
667
+ }
668
+
669
+ @media only screen and (min-width : 993px) {
670
+ .hide-on-large-only {
671
+ display: none !important;
672
+ }
673
+ }
674
+
675
+ @media only screen and (min-width : 1201px) {
676
+ .hide-on-extra-large-only {
677
+ display: none !important;
678
+ }
679
+ }
680
+
681
+ @media only screen and (min-width : 1201px) {
682
+ .show-on-extra-large {
683
+ display: block !important;
684
+ }
685
+ }
686
+
687
+ @media only screen and (min-width : 993px) {
688
+ .show-on-large {
689
+ display: block !important;
690
+ }
691
+ }
692
+
693
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
694
+ .show-on-medium {
695
+ display: block !important;
696
+ }
697
+ }
698
+
699
+ @media only screen and (max-width : 600px) {
700
+ .show-on-small {
701
+ display: block !important;
702
+ }
703
+ }
704
+
705
+ @media only screen and (min-width : 601px) {
706
+ .show-on-medium-and-up {
707
+ display: block !important;
708
+ }
709
+ }
710
+
711
+ @media only screen and (max-width : 992px) {
712
+ .show-on-medium-and-down {
713
+ display: block !important;
714
+ }
715
+ }
716
+
717
+ @media only screen and (max-width : 600px) {
718
+ .center-on-small-only {
719
+ text-align: center;
720
+ }
721
+ }
722
+
723
+ .page-footer {
724
+ padding-top: 20px;
725
+ color: #fff;
726
+ background-color: #ee6e73;
727
+ }
728
+ .page-footer .footer-copyright {
729
+ overflow: hidden;
730
+ min-height: 50px;
731
+ display: flex;
732
+ align-items: center;
733
+ justify-content: space-between;
734
+ padding: 10px 0px;
735
+ color: rgba(255, 255, 255, 0.8);
736
+ background-color: rgba(51, 51, 51, 0.08);
737
+ }
738
+
739
+ table, th, td {
740
+ border: none;
741
+ }
742
+
743
+ table {
744
+ width: 100%;
745
+ display: table;
746
+ border-collapse: collapse;
747
+ border-spacing: 0;
748
+ }
749
+ table.striped tr {
750
+ border-bottom: none;
751
+ }
752
+ table.striped > tbody > tr:nth-child(odd) {
753
+ background-color: rgba(242, 242, 242, 0.5);
754
+ }
755
+ table.striped > tbody > tr > td {
756
+ border-radius: 0;
757
+ }
758
+ table.highlight > tbody > tr {
759
+ transition: background-color 0.25s ease;
760
+ }
761
+ table.highlight > tbody > tr:hover {
762
+ background-color: rgba(242, 242, 242, 0.5);
763
+ }
764
+ table.centered thead tr th, table.centered tbody tr td {
765
+ text-align: center;
766
+ }
767
+
768
+ tr {
769
+ border-bottom: 1px solid rgba(0, 0, 0, 0.12);
770
+ }
771
+
772
+ td, th {
773
+ padding: 15px 5px;
774
+ display: table-cell;
775
+ text-align: left;
776
+ vertical-align: middle;
777
+ border-radius: 2px;
778
+ }
779
+
780
+ @media only screen and (max-width : 992px) {
781
+ table.responsive-table {
782
+ width: 100%;
783
+ border-collapse: collapse;
784
+ border-spacing: 0;
785
+ display: block;
786
+ position: relative;
787
+ /* sort out borders */
788
+ }
789
+ table.responsive-table td:empty:before {
790
+ content: " ";
791
+ }
792
+ table.responsive-table th,
793
+ table.responsive-table td {
794
+ margin: 0;
795
+ vertical-align: top;
796
+ }
797
+ table.responsive-table th {
798
+ text-align: left;
799
+ }
800
+ table.responsive-table thead {
801
+ display: block;
802
+ float: left;
803
+ }
804
+ table.responsive-table thead tr {
805
+ display: block;
806
+ padding: 0 10px 0 0;
807
+ }
808
+ table.responsive-table thead tr th::before {
809
+ content: " ";
810
+ }
811
+ table.responsive-table tbody {
812
+ display: block;
813
+ width: auto;
814
+ position: relative;
815
+ overflow-x: auto;
816
+ white-space: nowrap;
817
+ }
818
+ table.responsive-table tbody tr {
819
+ display: inline-block;
820
+ vertical-align: top;
821
+ }
822
+ table.responsive-table th {
823
+ display: block;
824
+ text-align: right;
825
+ }
826
+ table.responsive-table td {
827
+ display: block;
828
+ min-height: 1.25em;
829
+ text-align: left;
830
+ }
831
+ table.responsive-table tr {
832
+ border-bottom: none;
833
+ padding: 0 10px;
834
+ }
835
+ table.responsive-table thead {
836
+ border: 0;
837
+ border-right: 1px solid rgba(0, 0, 0, 0.12);
838
+ }
839
+ }
840
+ .collection {
841
+ margin: 0.5rem 0 1rem 0;
842
+ border: 1px solid var(--mm-border-color, #e0e0e0);
843
+ border-radius: 2px;
844
+ overflow: hidden;
845
+ position: relative;
846
+ }
847
+ .collection .collection-item {
848
+ background-color: var(--mm-surface-color, #fff);
849
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
850
+ line-height: 1.5rem;
851
+ padding: 10px 20px;
852
+ margin: 0;
853
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
854
+ }
855
+ .collection .collection-item.avatar {
856
+ min-height: 84px;
857
+ padding-left: 72px;
858
+ position: relative;
859
+ }
860
+ .collection .collection-item.avatar:not(.circle-clipper) > .circle,
861
+ .collection .collection-item.avatar :not(.circle-clipper) > .circle {
862
+ position: absolute;
863
+ width: 42px;
864
+ height: 42px;
865
+ overflow: hidden;
866
+ left: 15px;
867
+ display: inline-block;
868
+ vertical-align: middle;
869
+ }
870
+ .collection .collection-item.avatar i.circle {
871
+ font-size: 18px;
872
+ line-height: 42px;
873
+ color: #fff;
874
+ background-color: #999;
875
+ text-align: center;
876
+ }
877
+ .collection .collection-item.avatar .title {
878
+ font-size: 16px;
879
+ }
880
+ .collection .collection-item.avatar p {
881
+ margin: 0;
882
+ }
883
+ .collection .collection-item.avatar .secondary-content {
884
+ position: absolute;
885
+ top: 16px;
886
+ right: 16px;
887
+ }
888
+ .collection .collection-item:last-child {
889
+ border-bottom: none;
890
+ }
891
+ .collection .collection-item.active {
892
+ background-color: #26a69a;
893
+ color: rgb(234.25, 250.25, 248.75);
894
+ }
895
+ .collection .collection-item.active .secondary-content {
896
+ color: #fff;
897
+ }
898
+ .collection a.collection-item {
899
+ display: block;
900
+ transition: 0.25s;
901
+ color: #26a69a;
902
+ }
903
+ .collection a.collection-item:not(.active):hover {
904
+ background-color: #ddd;
905
+ }
906
+ .collection.with-header .collection-header {
907
+ background-color: var(--mm-surface-color, #fff);
908
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
909
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
910
+ padding: 10px 20px;
911
+ }
912
+ .collection.with-header .collection-item {
913
+ padding-left: 30px;
914
+ }
915
+ .collection.with-header .collection-item.avatar {
916
+ padding-left: 72px;
917
+ }
918
+
919
+ .secondary-content {
920
+ float: right;
921
+ color: #26a69a;
922
+ }
923
+
924
+ .collapsible .collection {
925
+ margin: 0;
926
+ border: none;
927
+ }
928
+
929
+ .video-container {
930
+ position: relative;
931
+ padding-bottom: 56.25%;
932
+ height: 0;
933
+ overflow: hidden;
934
+ }
935
+ .video-container iframe, .video-container object, .video-container embed {
936
+ position: absolute;
937
+ top: 0;
938
+ left: 0;
939
+ width: 100%;
940
+ height: 100%;
941
+ }
942
+
943
+ .progress {
944
+ position: relative;
945
+ height: 4px;
946
+ display: block;
947
+ width: 100%;
948
+ background-color: #acece6;
949
+ border-radius: 2px;
950
+ margin: 0.5rem 0 1rem 0;
951
+ overflow: hidden;
952
+ }
953
+ .progress .determinate {
954
+ position: absolute;
955
+ top: 0;
956
+ left: 0;
957
+ bottom: 0;
958
+ background-color: #26a69a;
959
+ transition: width 0.3s linear;
960
+ }
961
+ .progress .indeterminate {
962
+ background-color: #26a69a;
963
+ }
964
+ .progress .indeterminate:before {
965
+ content: "";
966
+ position: absolute;
967
+ background-color: inherit;
968
+ top: 0;
969
+ left: 0;
970
+ bottom: 0;
971
+ will-change: left, right;
972
+ animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
973
+ }
974
+ .progress .indeterminate:after {
975
+ content: "";
976
+ position: absolute;
977
+ background-color: inherit;
978
+ top: 0;
979
+ left: 0;
980
+ bottom: 0;
981
+ will-change: left, right;
982
+ animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
983
+ animation-delay: 1.15s;
984
+ }
985
+
986
+ @keyframes indeterminate {
987
+ 0% {
988
+ left: -35%;
989
+ right: 100%;
990
+ }
991
+ 60% {
992
+ left: 100%;
993
+ right: -90%;
994
+ }
995
+ 100% {
996
+ left: 100%;
997
+ right: -90%;
998
+ }
999
+ }
1000
+ @keyframes indeterminate-short {
1001
+ 0% {
1002
+ left: -200%;
1003
+ right: 100%;
1004
+ }
1005
+ 60% {
1006
+ left: 107%;
1007
+ right: -8%;
1008
+ }
1009
+ 100% {
1010
+ left: 107%;
1011
+ right: -8%;
1012
+ }
1013
+ }
1014
+ /*******************
1015
+ Utility Classes
1016
+ *******************/
1017
+ .hide {
1018
+ display: none !important;
1019
+ }
1020
+
1021
+ .left-align {
1022
+ text-align: left;
1023
+ }
1024
+
1025
+ .right-align {
1026
+ text-align: right;
1027
+ }
1028
+
1029
+ .center, .center-align {
1030
+ text-align: center;
1031
+ }
1032
+
1033
+ .left {
1034
+ float: left !important;
1035
+ }
1036
+
1037
+ .right {
1038
+ float: right !important;
1039
+ }
1040
+
1041
+ .no-select, input[type=range],
1042
+ input[type=range] + .thumb {
1043
+ user-select: none;
1044
+ }
1045
+
1046
+ .circle {
1047
+ border-radius: 50%;
1048
+ }
1049
+
1050
+ .center-block {
1051
+ display: block;
1052
+ margin-left: auto;
1053
+ margin-right: auto;
1054
+ }
1055
+
1056
+ .truncate {
1057
+ display: block;
1058
+ white-space: nowrap;
1059
+ overflow: hidden;
1060
+ text-overflow: ellipsis;
1061
+ }
1062
+
1063
+ .no-padding {
1064
+ padding: 0 !important;
1065
+ }
1066
+
1067
+ .container {
1068
+ margin: 0 auto;
1069
+ max-width: 1280px;
1070
+ width: 90%;
1071
+ }
1072
+
1073
+ @media only screen and (min-width : 601px) {
1074
+ .container {
1075
+ width: 85%;
1076
+ }
1077
+ }
1078
+ @media only screen and (min-width : 993px) {
1079
+ .container {
1080
+ width: 70%;
1081
+ }
1082
+ }
1083
+ .col .row {
1084
+ margin-left: -0.75rem;
1085
+ margin-right: -0.75rem;
1086
+ }
1087
+
1088
+ .section {
1089
+ padding-top: 1rem;
1090
+ padding-bottom: 1rem;
1091
+ }
1092
+ .section.no-pad {
1093
+ padding: 0;
1094
+ }
1095
+ .section.no-pad-bot {
1096
+ padding-bottom: 0;
1097
+ }
1098
+ .section.no-pad-top {
1099
+ padding-top: 0;
1100
+ }
1101
+
1102
+ .row {
1103
+ margin-left: auto;
1104
+ margin-right: auto;
1105
+ margin-bottom: 20px;
1106
+ }
1107
+ .row:after {
1108
+ content: "";
1109
+ display: table;
1110
+ clear: both;
1111
+ }
1112
+ .row .col {
1113
+ float: left;
1114
+ box-sizing: border-box;
1115
+ padding: 0 0.75rem;
1116
+ min-height: 1px;
1117
+ }
1118
+ .row .col[class*=push-], .row .col[class*=pull-] {
1119
+ position: relative;
1120
+ }
1121
+ .row .col.s1 {
1122
+ width: 8.3333333333%;
1123
+ margin-left: auto;
1124
+ left: auto;
1125
+ right: auto;
1126
+ }
1127
+ .row .col.s2 {
1128
+ width: 16.6666666667%;
1129
+ margin-left: auto;
1130
+ left: auto;
1131
+ right: auto;
1132
+ }
1133
+ .row .col.s3 {
1134
+ width: 25%;
1135
+ margin-left: auto;
1136
+ left: auto;
1137
+ right: auto;
1138
+ }
1139
+ .row .col.s4 {
1140
+ width: 33.3333333333%;
1141
+ margin-left: auto;
1142
+ left: auto;
1143
+ right: auto;
1144
+ }
1145
+ .row .col.s5 {
1146
+ width: 41.6666666667%;
1147
+ margin-left: auto;
1148
+ left: auto;
1149
+ right: auto;
1150
+ }
1151
+ .row .col.s6 {
1152
+ width: 50%;
1153
+ margin-left: auto;
1154
+ left: auto;
1155
+ right: auto;
1156
+ }
1157
+ .row .col.s7 {
1158
+ width: 58.3333333333%;
1159
+ margin-left: auto;
1160
+ left: auto;
1161
+ right: auto;
1162
+ }
1163
+ .row .col.s8 {
1164
+ width: 66.6666666667%;
1165
+ margin-left: auto;
1166
+ left: auto;
1167
+ right: auto;
1168
+ }
1169
+ .row .col.s9 {
1170
+ width: 75%;
1171
+ margin-left: auto;
1172
+ left: auto;
1173
+ right: auto;
1174
+ }
1175
+ .row .col.s10 {
1176
+ width: 83.3333333333%;
1177
+ margin-left: auto;
1178
+ left: auto;
1179
+ right: auto;
1180
+ }
1181
+ .row .col.s11 {
1182
+ width: 91.6666666667%;
1183
+ margin-left: auto;
1184
+ left: auto;
1185
+ right: auto;
1186
+ }
1187
+ .row .col.s12 {
1188
+ width: 100%;
1189
+ margin-left: auto;
1190
+ left: auto;
1191
+ right: auto;
1192
+ }
1193
+ .row .col.offset-s1 {
1194
+ margin-left: 8.3333333333%;
1195
+ }
1196
+ .row .col.pull-s1 {
1197
+ right: 8.3333333333%;
1198
+ }
1199
+ .row .col.push-s1 {
1200
+ left: 8.3333333333%;
1201
+ }
1202
+ .row .col.offset-s2 {
1203
+ margin-left: 16.6666666667%;
1204
+ }
1205
+ .row .col.pull-s2 {
1206
+ right: 16.6666666667%;
1207
+ }
1208
+ .row .col.push-s2 {
1209
+ left: 16.6666666667%;
1210
+ }
1211
+ .row .col.offset-s3 {
1212
+ margin-left: 25%;
1213
+ }
1214
+ .row .col.pull-s3 {
1215
+ right: 25%;
1216
+ }
1217
+ .row .col.push-s3 {
1218
+ left: 25%;
1219
+ }
1220
+ .row .col.offset-s4 {
1221
+ margin-left: 33.3333333333%;
1222
+ }
1223
+ .row .col.pull-s4 {
1224
+ right: 33.3333333333%;
1225
+ }
1226
+ .row .col.push-s4 {
1227
+ left: 33.3333333333%;
1228
+ }
1229
+ .row .col.offset-s5 {
1230
+ margin-left: 41.6666666667%;
1231
+ }
1232
+ .row .col.pull-s5 {
1233
+ right: 41.6666666667%;
1234
+ }
1235
+ .row .col.push-s5 {
1236
+ left: 41.6666666667%;
1237
+ }
1238
+ .row .col.offset-s6 {
1239
+ margin-left: 50%;
1240
+ }
1241
+ .row .col.pull-s6 {
1242
+ right: 50%;
1243
+ }
1244
+ .row .col.push-s6 {
1245
+ left: 50%;
1246
+ }
1247
+ .row .col.offset-s7 {
1248
+ margin-left: 58.3333333333%;
1249
+ }
1250
+ .row .col.pull-s7 {
1251
+ right: 58.3333333333%;
1252
+ }
1253
+ .row .col.push-s7 {
1254
+ left: 58.3333333333%;
1255
+ }
1256
+ .row .col.offset-s8 {
1257
+ margin-left: 66.6666666667%;
1258
+ }
1259
+ .row .col.pull-s8 {
1260
+ right: 66.6666666667%;
1261
+ }
1262
+ .row .col.push-s8 {
1263
+ left: 66.6666666667%;
1264
+ }
1265
+ .row .col.offset-s9 {
1266
+ margin-left: 75%;
1267
+ }
1268
+ .row .col.pull-s9 {
1269
+ right: 75%;
1270
+ }
1271
+ .row .col.push-s9 {
1272
+ left: 75%;
1273
+ }
1274
+ .row .col.offset-s10 {
1275
+ margin-left: 83.3333333333%;
1276
+ }
1277
+ .row .col.pull-s10 {
1278
+ right: 83.3333333333%;
1279
+ }
1280
+ .row .col.push-s10 {
1281
+ left: 83.3333333333%;
1282
+ }
1283
+ .row .col.offset-s11 {
1284
+ margin-left: 91.6666666667%;
1285
+ }
1286
+ .row .col.pull-s11 {
1287
+ right: 91.6666666667%;
1288
+ }
1289
+ .row .col.push-s11 {
1290
+ left: 91.6666666667%;
1291
+ }
1292
+ .row .col.offset-s12 {
1293
+ margin-left: 100%;
1294
+ }
1295
+ .row .col.pull-s12 {
1296
+ right: 100%;
1297
+ }
1298
+ .row .col.push-s12 {
1299
+ left: 100%;
1300
+ }
1301
+ @media only screen and (min-width : 601px) {
1302
+ .row .col.m1 {
1303
+ width: 8.3333333333%;
1304
+ margin-left: auto;
1305
+ left: auto;
1306
+ right: auto;
1307
+ }
1308
+ .row .col.m2 {
1309
+ width: 16.6666666667%;
1310
+ margin-left: auto;
1311
+ left: auto;
1312
+ right: auto;
1313
+ }
1314
+ .row .col.m3 {
1315
+ width: 25%;
1316
+ margin-left: auto;
1317
+ left: auto;
1318
+ right: auto;
1319
+ }
1320
+ .row .col.m4 {
1321
+ width: 33.3333333333%;
1322
+ margin-left: auto;
1323
+ left: auto;
1324
+ right: auto;
1325
+ }
1326
+ .row .col.m5 {
1327
+ width: 41.6666666667%;
1328
+ margin-left: auto;
1329
+ left: auto;
1330
+ right: auto;
1331
+ }
1332
+ .row .col.m6 {
1333
+ width: 50%;
1334
+ margin-left: auto;
1335
+ left: auto;
1336
+ right: auto;
1337
+ }
1338
+ .row .col.m7 {
1339
+ width: 58.3333333333%;
1340
+ margin-left: auto;
1341
+ left: auto;
1342
+ right: auto;
1343
+ }
1344
+ .row .col.m8 {
1345
+ width: 66.6666666667%;
1346
+ margin-left: auto;
1347
+ left: auto;
1348
+ right: auto;
1349
+ }
1350
+ .row .col.m9 {
1351
+ width: 75%;
1352
+ margin-left: auto;
1353
+ left: auto;
1354
+ right: auto;
1355
+ }
1356
+ .row .col.m10 {
1357
+ width: 83.3333333333%;
1358
+ margin-left: auto;
1359
+ left: auto;
1360
+ right: auto;
1361
+ }
1362
+ .row .col.m11 {
1363
+ width: 91.6666666667%;
1364
+ margin-left: auto;
1365
+ left: auto;
1366
+ right: auto;
1367
+ }
1368
+ .row .col.m12 {
1369
+ width: 100%;
1370
+ margin-left: auto;
1371
+ left: auto;
1372
+ right: auto;
1373
+ }
1374
+ .row .col.offset-m1 {
1375
+ margin-left: 8.3333333333%;
1376
+ }
1377
+ .row .col.pull-m1 {
1378
+ right: 8.3333333333%;
1379
+ }
1380
+ .row .col.push-m1 {
1381
+ left: 8.3333333333%;
1382
+ }
1383
+ .row .col.offset-m2 {
1384
+ margin-left: 16.6666666667%;
1385
+ }
1386
+ .row .col.pull-m2 {
1387
+ right: 16.6666666667%;
1388
+ }
1389
+ .row .col.push-m2 {
1390
+ left: 16.6666666667%;
1391
+ }
1392
+ .row .col.offset-m3 {
1393
+ margin-left: 25%;
1394
+ }
1395
+ .row .col.pull-m3 {
1396
+ right: 25%;
1397
+ }
1398
+ .row .col.push-m3 {
1399
+ left: 25%;
1400
+ }
1401
+ .row .col.offset-m4 {
1402
+ margin-left: 33.3333333333%;
1403
+ }
1404
+ .row .col.pull-m4 {
1405
+ right: 33.3333333333%;
1406
+ }
1407
+ .row .col.push-m4 {
1408
+ left: 33.3333333333%;
1409
+ }
1410
+ .row .col.offset-m5 {
1411
+ margin-left: 41.6666666667%;
1412
+ }
1413
+ .row .col.pull-m5 {
1414
+ right: 41.6666666667%;
1415
+ }
1416
+ .row .col.push-m5 {
1417
+ left: 41.6666666667%;
1418
+ }
1419
+ .row .col.offset-m6 {
1420
+ margin-left: 50%;
1421
+ }
1422
+ .row .col.pull-m6 {
1423
+ right: 50%;
1424
+ }
1425
+ .row .col.push-m6 {
1426
+ left: 50%;
1427
+ }
1428
+ .row .col.offset-m7 {
1429
+ margin-left: 58.3333333333%;
1430
+ }
1431
+ .row .col.pull-m7 {
1432
+ right: 58.3333333333%;
1433
+ }
1434
+ .row .col.push-m7 {
1435
+ left: 58.3333333333%;
1436
+ }
1437
+ .row .col.offset-m8 {
1438
+ margin-left: 66.6666666667%;
1439
+ }
1440
+ .row .col.pull-m8 {
1441
+ right: 66.6666666667%;
1442
+ }
1443
+ .row .col.push-m8 {
1444
+ left: 66.6666666667%;
1445
+ }
1446
+ .row .col.offset-m9 {
1447
+ margin-left: 75%;
1448
+ }
1449
+ .row .col.pull-m9 {
1450
+ right: 75%;
1451
+ }
1452
+ .row .col.push-m9 {
1453
+ left: 75%;
1454
+ }
1455
+ .row .col.offset-m10 {
1456
+ margin-left: 83.3333333333%;
1457
+ }
1458
+ .row .col.pull-m10 {
1459
+ right: 83.3333333333%;
1460
+ }
1461
+ .row .col.push-m10 {
1462
+ left: 83.3333333333%;
1463
+ }
1464
+ .row .col.offset-m11 {
1465
+ margin-left: 91.6666666667%;
1466
+ }
1467
+ .row .col.pull-m11 {
1468
+ right: 91.6666666667%;
1469
+ }
1470
+ .row .col.push-m11 {
1471
+ left: 91.6666666667%;
1472
+ }
1473
+ .row .col.offset-m12 {
1474
+ margin-left: 100%;
1475
+ }
1476
+ .row .col.pull-m12 {
1477
+ right: 100%;
1478
+ }
1479
+ .row .col.push-m12 {
1480
+ left: 100%;
1481
+ }
1482
+ }
1483
+ @media only screen and (min-width : 993px) {
1484
+ .row .col.l1 {
1485
+ width: 8.3333333333%;
1486
+ margin-left: auto;
1487
+ left: auto;
1488
+ right: auto;
1489
+ }
1490
+ .row .col.l2 {
1491
+ width: 16.6666666667%;
1492
+ margin-left: auto;
1493
+ left: auto;
1494
+ right: auto;
1495
+ }
1496
+ .row .col.l3 {
1497
+ width: 25%;
1498
+ margin-left: auto;
1499
+ left: auto;
1500
+ right: auto;
1501
+ }
1502
+ .row .col.l4 {
1503
+ width: 33.3333333333%;
1504
+ margin-left: auto;
1505
+ left: auto;
1506
+ right: auto;
1507
+ }
1508
+ .row .col.l5 {
1509
+ width: 41.6666666667%;
1510
+ margin-left: auto;
1511
+ left: auto;
1512
+ right: auto;
1513
+ }
1514
+ .row .col.l6 {
1515
+ width: 50%;
1516
+ margin-left: auto;
1517
+ left: auto;
1518
+ right: auto;
1519
+ }
1520
+ .row .col.l7 {
1521
+ width: 58.3333333333%;
1522
+ margin-left: auto;
1523
+ left: auto;
1524
+ right: auto;
1525
+ }
1526
+ .row .col.l8 {
1527
+ width: 66.6666666667%;
1528
+ margin-left: auto;
1529
+ left: auto;
1530
+ right: auto;
1531
+ }
1532
+ .row .col.l9 {
1533
+ width: 75%;
1534
+ margin-left: auto;
1535
+ left: auto;
1536
+ right: auto;
1537
+ }
1538
+ .row .col.l10 {
1539
+ width: 83.3333333333%;
1540
+ margin-left: auto;
1541
+ left: auto;
1542
+ right: auto;
1543
+ }
1544
+ .row .col.l11 {
1545
+ width: 91.6666666667%;
1546
+ margin-left: auto;
1547
+ left: auto;
1548
+ right: auto;
1549
+ }
1550
+ .row .col.l12 {
1551
+ width: 100%;
1552
+ margin-left: auto;
1553
+ left: auto;
1554
+ right: auto;
1555
+ }
1556
+ .row .col.offset-l1 {
1557
+ margin-left: 8.3333333333%;
1558
+ }
1559
+ .row .col.pull-l1 {
1560
+ right: 8.3333333333%;
1561
+ }
1562
+ .row .col.push-l1 {
1563
+ left: 8.3333333333%;
1564
+ }
1565
+ .row .col.offset-l2 {
1566
+ margin-left: 16.6666666667%;
1567
+ }
1568
+ .row .col.pull-l2 {
1569
+ right: 16.6666666667%;
1570
+ }
1571
+ .row .col.push-l2 {
1572
+ left: 16.6666666667%;
1573
+ }
1574
+ .row .col.offset-l3 {
1575
+ margin-left: 25%;
1576
+ }
1577
+ .row .col.pull-l3 {
1578
+ right: 25%;
1579
+ }
1580
+ .row .col.push-l3 {
1581
+ left: 25%;
1582
+ }
1583
+ .row .col.offset-l4 {
1584
+ margin-left: 33.3333333333%;
1585
+ }
1586
+ .row .col.pull-l4 {
1587
+ right: 33.3333333333%;
1588
+ }
1589
+ .row .col.push-l4 {
1590
+ left: 33.3333333333%;
1591
+ }
1592
+ .row .col.offset-l5 {
1593
+ margin-left: 41.6666666667%;
1594
+ }
1595
+ .row .col.pull-l5 {
1596
+ right: 41.6666666667%;
1597
+ }
1598
+ .row .col.push-l5 {
1599
+ left: 41.6666666667%;
1600
+ }
1601
+ .row .col.offset-l6 {
1602
+ margin-left: 50%;
1603
+ }
1604
+ .row .col.pull-l6 {
1605
+ right: 50%;
1606
+ }
1607
+ .row .col.push-l6 {
1608
+ left: 50%;
1609
+ }
1610
+ .row .col.offset-l7 {
1611
+ margin-left: 58.3333333333%;
1612
+ }
1613
+ .row .col.pull-l7 {
1614
+ right: 58.3333333333%;
1615
+ }
1616
+ .row .col.push-l7 {
1617
+ left: 58.3333333333%;
1618
+ }
1619
+ .row .col.offset-l8 {
1620
+ margin-left: 66.6666666667%;
1621
+ }
1622
+ .row .col.pull-l8 {
1623
+ right: 66.6666666667%;
1624
+ }
1625
+ .row .col.push-l8 {
1626
+ left: 66.6666666667%;
1627
+ }
1628
+ .row .col.offset-l9 {
1629
+ margin-left: 75%;
1630
+ }
1631
+ .row .col.pull-l9 {
1632
+ right: 75%;
1633
+ }
1634
+ .row .col.push-l9 {
1635
+ left: 75%;
1636
+ }
1637
+ .row .col.offset-l10 {
1638
+ margin-left: 83.3333333333%;
1639
+ }
1640
+ .row .col.pull-l10 {
1641
+ right: 83.3333333333%;
1642
+ }
1643
+ .row .col.push-l10 {
1644
+ left: 83.3333333333%;
1645
+ }
1646
+ .row .col.offset-l11 {
1647
+ margin-left: 91.6666666667%;
1648
+ }
1649
+ .row .col.pull-l11 {
1650
+ right: 91.6666666667%;
1651
+ }
1652
+ .row .col.push-l11 {
1653
+ left: 91.6666666667%;
1654
+ }
1655
+ .row .col.offset-l12 {
1656
+ margin-left: 100%;
1657
+ }
1658
+ .row .col.pull-l12 {
1659
+ right: 100%;
1660
+ }
1661
+ .row .col.push-l12 {
1662
+ left: 100%;
1663
+ }
1664
+ }
1665
+ @media only screen and (min-width : 1201px) {
1666
+ .row .col.xl1 {
1667
+ width: 8.3333333333%;
1668
+ margin-left: auto;
1669
+ left: auto;
1670
+ right: auto;
1671
+ }
1672
+ .row .col.xl2 {
1673
+ width: 16.6666666667%;
1674
+ margin-left: auto;
1675
+ left: auto;
1676
+ right: auto;
1677
+ }
1678
+ .row .col.xl3 {
1679
+ width: 25%;
1680
+ margin-left: auto;
1681
+ left: auto;
1682
+ right: auto;
1683
+ }
1684
+ .row .col.xl4 {
1685
+ width: 33.3333333333%;
1686
+ margin-left: auto;
1687
+ left: auto;
1688
+ right: auto;
1689
+ }
1690
+ .row .col.xl5 {
1691
+ width: 41.6666666667%;
1692
+ margin-left: auto;
1693
+ left: auto;
1694
+ right: auto;
1695
+ }
1696
+ .row .col.xl6 {
1697
+ width: 50%;
1698
+ margin-left: auto;
1699
+ left: auto;
1700
+ right: auto;
1701
+ }
1702
+ .row .col.xl7 {
1703
+ width: 58.3333333333%;
1704
+ margin-left: auto;
1705
+ left: auto;
1706
+ right: auto;
1707
+ }
1708
+ .row .col.xl8 {
1709
+ width: 66.6666666667%;
1710
+ margin-left: auto;
1711
+ left: auto;
1712
+ right: auto;
1713
+ }
1714
+ .row .col.xl9 {
1715
+ width: 75%;
1716
+ margin-left: auto;
1717
+ left: auto;
1718
+ right: auto;
1719
+ }
1720
+ .row .col.xl10 {
1721
+ width: 83.3333333333%;
1722
+ margin-left: auto;
1723
+ left: auto;
1724
+ right: auto;
1725
+ }
1726
+ .row .col.xl11 {
1727
+ width: 91.6666666667%;
1728
+ margin-left: auto;
1729
+ left: auto;
1730
+ right: auto;
1731
+ }
1732
+ .row .col.xl12 {
1733
+ width: 100%;
1734
+ margin-left: auto;
1735
+ left: auto;
1736
+ right: auto;
1737
+ }
1738
+ .row .col.offset-xl1 {
1739
+ margin-left: 8.3333333333%;
1740
+ }
1741
+ .row .col.pull-xl1 {
1742
+ right: 8.3333333333%;
1743
+ }
1744
+ .row .col.push-xl1 {
1745
+ left: 8.3333333333%;
1746
+ }
1747
+ .row .col.offset-xl2 {
1748
+ margin-left: 16.6666666667%;
1749
+ }
1750
+ .row .col.pull-xl2 {
1751
+ right: 16.6666666667%;
1752
+ }
1753
+ .row .col.push-xl2 {
1754
+ left: 16.6666666667%;
1755
+ }
1756
+ .row .col.offset-xl3 {
1757
+ margin-left: 25%;
1758
+ }
1759
+ .row .col.pull-xl3 {
1760
+ right: 25%;
1761
+ }
1762
+ .row .col.push-xl3 {
1763
+ left: 25%;
1764
+ }
1765
+ .row .col.offset-xl4 {
1766
+ margin-left: 33.3333333333%;
1767
+ }
1768
+ .row .col.pull-xl4 {
1769
+ right: 33.3333333333%;
1770
+ }
1771
+ .row .col.push-xl4 {
1772
+ left: 33.3333333333%;
1773
+ }
1774
+ .row .col.offset-xl5 {
1775
+ margin-left: 41.6666666667%;
1776
+ }
1777
+ .row .col.pull-xl5 {
1778
+ right: 41.6666666667%;
1779
+ }
1780
+ .row .col.push-xl5 {
1781
+ left: 41.6666666667%;
1782
+ }
1783
+ .row .col.offset-xl6 {
1784
+ margin-left: 50%;
1785
+ }
1786
+ .row .col.pull-xl6 {
1787
+ right: 50%;
1788
+ }
1789
+ .row .col.push-xl6 {
1790
+ left: 50%;
1791
+ }
1792
+ .row .col.offset-xl7 {
1793
+ margin-left: 58.3333333333%;
1794
+ }
1795
+ .row .col.pull-xl7 {
1796
+ right: 58.3333333333%;
1797
+ }
1798
+ .row .col.push-xl7 {
1799
+ left: 58.3333333333%;
1800
+ }
1801
+ .row .col.offset-xl8 {
1802
+ margin-left: 66.6666666667%;
1803
+ }
1804
+ .row .col.pull-xl8 {
1805
+ right: 66.6666666667%;
1806
+ }
1807
+ .row .col.push-xl8 {
1808
+ left: 66.6666666667%;
1809
+ }
1810
+ .row .col.offset-xl9 {
1811
+ margin-left: 75%;
1812
+ }
1813
+ .row .col.pull-xl9 {
1814
+ right: 75%;
1815
+ }
1816
+ .row .col.push-xl9 {
1817
+ left: 75%;
1818
+ }
1819
+ .row .col.offset-xl10 {
1820
+ margin-left: 83.3333333333%;
1821
+ }
1822
+ .row .col.pull-xl10 {
1823
+ right: 83.3333333333%;
1824
+ }
1825
+ .row .col.push-xl10 {
1826
+ left: 83.3333333333%;
1827
+ }
1828
+ .row .col.offset-xl11 {
1829
+ margin-left: 91.6666666667%;
1830
+ }
1831
+ .row .col.pull-xl11 {
1832
+ right: 91.6666666667%;
1833
+ }
1834
+ .row .col.push-xl11 {
1835
+ left: 91.6666666667%;
1836
+ }
1837
+ .row .col.offset-xl12 {
1838
+ margin-left: 100%;
1839
+ }
1840
+ .row .col.pull-xl12 {
1841
+ right: 100%;
1842
+ }
1843
+ .row .col.push-xl12 {
1844
+ left: 100%;
1845
+ }
1846
+ }
1847
+
1848
+ a {
1849
+ text-decoration: none;
1850
+ }
1851
+
1852
+ html {
1853
+ line-height: 1.5;
1854
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
1855
+ font-weight: normal;
1856
+ color: rgba(0, 0, 0, 0.87);
1857
+ }
1858
+ @media only screen and (min-width: 0) {
1859
+ html {
1860
+ font-size: 14px;
1861
+ }
1862
+ }
1863
+ @media only screen and (min-width: 992px) {
1864
+ html {
1865
+ font-size: 14.5px;
1866
+ }
1867
+ }
1868
+ @media only screen and (min-width: 1200px) {
1869
+ html {
1870
+ font-size: 15px;
1871
+ }
1872
+ }
1873
+
1874
+ h1, h2, h3, h4, h5, h6 {
1875
+ font-weight: 400;
1876
+ line-height: 1.3;
1877
+ }
1878
+
1879
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
1880
+ font-weight: inherit;
1881
+ }
1882
+
1883
+ h1 {
1884
+ font-size: 4.2rem;
1885
+ line-height: 110%;
1886
+ margin: 2.8rem 0 1.68rem 0;
1887
+ }
1888
+
1889
+ h2 {
1890
+ font-size: 3.56rem;
1891
+ line-height: 110%;
1892
+ margin: 2.3733333333rem 0 1.424rem 0;
1893
+ }
1894
+
1895
+ h3 {
1896
+ font-size: 2.92rem;
1897
+ line-height: 110%;
1898
+ margin: 1.9466666667rem 0 1.168rem 0;
1899
+ }
1900
+
1901
+ h4 {
1902
+ font-size: 2.28rem;
1903
+ line-height: 110%;
1904
+ margin: 1.52rem 0 0.912rem 0;
1905
+ }
1906
+
1907
+ h5 {
1908
+ font-size: 1.64rem;
1909
+ line-height: 110%;
1910
+ margin: 1.0933333333rem 0 0.656rem 0;
1911
+ }
1912
+
1913
+ h6 {
1914
+ font-size: 1.15rem;
1915
+ line-height: 110%;
1916
+ margin: 0.7666666667rem 0 0.46rem 0;
1917
+ }
1918
+
1919
+ em {
1920
+ font-style: italic;
1921
+ }
1922
+
1923
+ strong {
1924
+ font-weight: 500;
1925
+ }
1926
+
1927
+ small {
1928
+ font-size: 75%;
1929
+ }
1930
+
1931
+ .light {
1932
+ font-weight: 300;
1933
+ }
1934
+
1935
+ .thin {
1936
+ font-weight: 200;
1937
+ }
1938
+
1939
+ @media only screen and (min-width: 360px) {
1940
+ .flow-text {
1941
+ font-size: 1.2rem;
1942
+ }
1943
+ }
1944
+ @media only screen and (min-width: 390px) {
1945
+ .flow-text {
1946
+ font-size: 1.224rem;
1947
+ }
1948
+ }
1949
+ @media only screen and (min-width: 420px) {
1950
+ .flow-text {
1951
+ font-size: 1.248rem;
1952
+ }
1953
+ }
1954
+ @media only screen and (min-width: 450px) {
1955
+ .flow-text {
1956
+ font-size: 1.272rem;
1957
+ }
1958
+ }
1959
+ @media only screen and (min-width: 480px) {
1960
+ .flow-text {
1961
+ font-size: 1.296rem;
1962
+ }
1963
+ }
1964
+ @media only screen and (min-width: 510px) {
1965
+ .flow-text {
1966
+ font-size: 1.32rem;
1967
+ }
1968
+ }
1969
+ @media only screen and (min-width: 540px) {
1970
+ .flow-text {
1971
+ font-size: 1.344rem;
1972
+ }
1973
+ }
1974
+ @media only screen and (min-width: 570px) {
1975
+ .flow-text {
1976
+ font-size: 1.368rem;
1977
+ }
1978
+ }
1979
+ @media only screen and (min-width: 600px) {
1980
+ .flow-text {
1981
+ font-size: 1.392rem;
1982
+ }
1983
+ }
1984
+ @media only screen and (min-width: 630px) {
1985
+ .flow-text {
1986
+ font-size: 1.416rem;
1987
+ }
1988
+ }
1989
+ @media only screen and (min-width: 660px) {
1990
+ .flow-text {
1991
+ font-size: 1.44rem;
1992
+ }
1993
+ }
1994
+ @media only screen and (min-width: 690px) {
1995
+ .flow-text {
1996
+ font-size: 1.464rem;
1997
+ }
1998
+ }
1999
+ @media only screen and (min-width: 720px) {
2000
+ .flow-text {
2001
+ font-size: 1.488rem;
2002
+ }
2003
+ }
2004
+ @media only screen and (min-width: 750px) {
2005
+ .flow-text {
2006
+ font-size: 1.512rem;
2007
+ }
2008
+ }
2009
+ @media only screen and (min-width: 780px) {
2010
+ .flow-text {
2011
+ font-size: 1.536rem;
2012
+ }
2013
+ }
2014
+ @media only screen and (min-width: 810px) {
2015
+ .flow-text {
2016
+ font-size: 1.56rem;
2017
+ }
2018
+ }
2019
+ @media only screen and (min-width: 840px) {
2020
+ .flow-text {
2021
+ font-size: 1.584rem;
2022
+ }
2023
+ }
2024
+ @media only screen and (min-width: 870px) {
2025
+ .flow-text {
2026
+ font-size: 1.608rem;
2027
+ }
2028
+ }
2029
+ @media only screen and (min-width: 900px) {
2030
+ .flow-text {
2031
+ font-size: 1.632rem;
2032
+ }
2033
+ }
2034
+ @media only screen and (min-width: 930px) {
2035
+ .flow-text {
2036
+ font-size: 1.656rem;
2037
+ }
2038
+ }
2039
+ @media only screen and (min-width: 960px) {
2040
+ .flow-text {
2041
+ font-size: 1.68rem;
2042
+ }
2043
+ }
2044
+ @media only screen and (max-width: 360px) {
2045
+ .flow-text {
2046
+ font-size: 1.2rem;
2047
+ }
2048
+ }
2049
+
2050
+ .scale-transition {
2051
+ transition: transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important;
2052
+ }
2053
+ .scale-transition.scale-out {
2054
+ transform: scale(0);
2055
+ transition: transform 0.2s !important;
2056
+ }
2057
+ .scale-transition.scale-in {
2058
+ transform: scale(1);
2059
+ }
2060
+
2061
+ /* Text Inputs + Textarea
2062
+ ========================================================================== */
2063
+ /* Style Placeholders */
2064
+ ::placeholder {
2065
+ color: var(--mm-text-hint, #d1d1d1);
2066
+ }
2067
+
2068
+ /* Text inputs */
2069
+ input:not([type]):not(.browser-default),
2070
+ input[type=text]:not(.browser-default),
2071
+ input[type=password]:not(.browser-default),
2072
+ input[type=email]:not(.browser-default),
2073
+ input[type=url]:not(.browser-default),
2074
+ input[type=time]:not(.browser-default),
2075
+ input[type=date]:not(.browser-default),
2076
+ input[type=datetime]:not(.browser-default),
2077
+ input[type=datetime-local]:not(.browser-default),
2078
+ input[type=tel]:not(.browser-default),
2079
+ input[type=number]:not(.browser-default),
2080
+ input[type=search]:not(.browser-default),
2081
+ textarea.materialize-textarea {
2082
+ background-color: transparent;
2083
+ border: none;
2084
+ border-bottom: 1px solid var(--mm-input-border, 1px solid #9e9e9e);
2085
+ border-radius: 0;
2086
+ outline: none;
2087
+ height: 3rem;
2088
+ width: 100%;
2089
+ font-size: 16px;
2090
+ margin: 0 0 8px 0;
2091
+ padding: 0;
2092
+ box-shadow: none;
2093
+ box-sizing: content-box;
2094
+ transition: box-shadow 0.3s, border 0.3s;
2095
+ color: var(--mm-input-text, inherit);
2096
+ }
2097
+ input:not([type]):not(.browser-default):disabled, input:not([type]):not(.browser-default)[readonly=readonly],
2098
+ input[type=text]:not(.browser-default):disabled,
2099
+ input[type=text]:not(.browser-default)[readonly=readonly],
2100
+ input[type=password]:not(.browser-default):disabled,
2101
+ input[type=password]:not(.browser-default)[readonly=readonly],
2102
+ input[type=email]:not(.browser-default):disabled,
2103
+ input[type=email]:not(.browser-default)[readonly=readonly],
2104
+ input[type=url]:not(.browser-default):disabled,
2105
+ input[type=url]:not(.browser-default)[readonly=readonly],
2106
+ input[type=time]:not(.browser-default):disabled,
2107
+ input[type=time]:not(.browser-default)[readonly=readonly],
2108
+ input[type=date]:not(.browser-default):disabled,
2109
+ input[type=date]:not(.browser-default)[readonly=readonly],
2110
+ input[type=datetime]:not(.browser-default):disabled,
2111
+ input[type=datetime]:not(.browser-default)[readonly=readonly],
2112
+ input[type=datetime-local]:not(.browser-default):disabled,
2113
+ input[type=datetime-local]:not(.browser-default)[readonly=readonly],
2114
+ input[type=tel]:not(.browser-default):disabled,
2115
+ input[type=tel]:not(.browser-default)[readonly=readonly],
2116
+ input[type=number]:not(.browser-default):disabled,
2117
+ input[type=number]:not(.browser-default)[readonly=readonly],
2118
+ input[type=search]:not(.browser-default):disabled,
2119
+ input[type=search]:not(.browser-default)[readonly=readonly],
2120
+ textarea.materialize-textarea:disabled,
2121
+ textarea.materialize-textarea[readonly=readonly] {
2122
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
2123
+ border-bottom: 1px dotted var(--mm-input-border, 1px dotted rgba(0, 0, 0, 0.42));
2124
+ }
2125
+ input:not([type]):not(.browser-default):disabled + label, input:not([type]):not(.browser-default)[readonly=readonly] + label,
2126
+ input[type=text]:not(.browser-default):disabled + label,
2127
+ input[type=text]:not(.browser-default)[readonly=readonly] + label,
2128
+ input[type=password]:not(.browser-default):disabled + label,
2129
+ input[type=password]:not(.browser-default)[readonly=readonly] + label,
2130
+ input[type=email]:not(.browser-default):disabled + label,
2131
+ input[type=email]:not(.browser-default)[readonly=readonly] + label,
2132
+ input[type=url]:not(.browser-default):disabled + label,
2133
+ input[type=url]:not(.browser-default)[readonly=readonly] + label,
2134
+ input[type=time]:not(.browser-default):disabled + label,
2135
+ input[type=time]:not(.browser-default)[readonly=readonly] + label,
2136
+ input[type=date]:not(.browser-default):disabled + label,
2137
+ input[type=date]:not(.browser-default)[readonly=readonly] + label,
2138
+ input[type=datetime]:not(.browser-default):disabled + label,
2139
+ input[type=datetime]:not(.browser-default)[readonly=readonly] + label,
2140
+ input[type=datetime-local]:not(.browser-default):disabled + label,
2141
+ input[type=datetime-local]:not(.browser-default)[readonly=readonly] + label,
2142
+ input[type=tel]:not(.browser-default):disabled + label,
2143
+ input[type=tel]:not(.browser-default)[readonly=readonly] + label,
2144
+ input[type=number]:not(.browser-default):disabled + label,
2145
+ input[type=number]:not(.browser-default)[readonly=readonly] + label,
2146
+ input[type=search]:not(.browser-default):disabled + label,
2147
+ input[type=search]:not(.browser-default)[readonly=readonly] + label,
2148
+ textarea.materialize-textarea:disabled + label,
2149
+ textarea.materialize-textarea[readonly=readonly] + label {
2150
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
2151
+ }
2152
+ input:not([type]):not(.browser-default):focus:not([readonly]),
2153
+ input[type=text]:not(.browser-default):focus:not([readonly]),
2154
+ input[type=password]:not(.browser-default):focus:not([readonly]),
2155
+ input[type=email]:not(.browser-default):focus:not([readonly]),
2156
+ input[type=url]:not(.browser-default):focus:not([readonly]),
2157
+ input[type=time]:not(.browser-default):focus:not([readonly]),
2158
+ input[type=date]:not(.browser-default):focus:not([readonly]),
2159
+ input[type=datetime]:not(.browser-default):focus:not([readonly]),
2160
+ input[type=datetime-local]:not(.browser-default):focus:not([readonly]),
2161
+ input[type=tel]:not(.browser-default):focus:not([readonly]),
2162
+ input[type=number]:not(.browser-default):focus:not([readonly]),
2163
+ input[type=search]:not(.browser-default):focus:not([readonly]),
2164
+ textarea.materialize-textarea:focus:not([readonly]) {
2165
+ border-bottom: 1px solid var(--mm-input-border-focus, #26a69a);
2166
+ box-shadow: 0 1px 0 0 var(--mm-input-border-focus, #26a69a);
2167
+ }
2168
+ input:not([type]):not(.browser-default):focus:not([readonly]) + label,
2169
+ input[type=text]:not(.browser-default):focus:not([readonly]) + label,
2170
+ input[type=password]:not(.browser-default):focus:not([readonly]) + label,
2171
+ input[type=email]:not(.browser-default):focus:not([readonly]) + label,
2172
+ input[type=url]:not(.browser-default):focus:not([readonly]) + label,
2173
+ input[type=time]:not(.browser-default):focus:not([readonly]) + label,
2174
+ input[type=date]:not(.browser-default):focus:not([readonly]) + label,
2175
+ input[type=datetime]:not(.browser-default):focus:not([readonly]) + label,
2176
+ input[type=datetime-local]:not(.browser-default):focus:not([readonly]) + label,
2177
+ input[type=tel]:not(.browser-default):focus:not([readonly]) + label,
2178
+ input[type=number]:not(.browser-default):focus:not([readonly]) + label,
2179
+ input[type=search]:not(.browser-default):focus:not([readonly]) + label,
2180
+ textarea.materialize-textarea:focus:not([readonly]) + label {
2181
+ color: var(--mm-input-border-focus, #26a69a);
2182
+ }
2183
+ input:not([type]):not(.browser-default):focus.valid ~ label,
2184
+ input[type=text]:not(.browser-default):focus.valid ~ label,
2185
+ input[type=password]:not(.browser-default):focus.valid ~ label,
2186
+ input[type=email]:not(.browser-default):focus.valid ~ label,
2187
+ input[type=url]:not(.browser-default):focus.valid ~ label,
2188
+ input[type=time]:not(.browser-default):focus.valid ~ label,
2189
+ input[type=date]:not(.browser-default):focus.valid ~ label,
2190
+ input[type=datetime]:not(.browser-default):focus.valid ~ label,
2191
+ input[type=datetime-local]:not(.browser-default):focus.valid ~ label,
2192
+ input[type=tel]:not(.browser-default):focus.valid ~ label,
2193
+ input[type=number]:not(.browser-default):focus.valid ~ label,
2194
+ input[type=search]:not(.browser-default):focus.valid ~ label,
2195
+ textarea.materialize-textarea:focus.valid ~ label {
2196
+ color: #4CAF50;
2197
+ }
2198
+ input:not([type]):not(.browser-default):focus.invalid ~ label,
2199
+ input[type=text]:not(.browser-default):focus.invalid ~ label,
2200
+ input[type=password]:not(.browser-default):focus.invalid ~ label,
2201
+ input[type=email]:not(.browser-default):focus.invalid ~ label,
2202
+ input[type=url]:not(.browser-default):focus.invalid ~ label,
2203
+ input[type=time]:not(.browser-default):focus.invalid ~ label,
2204
+ input[type=date]:not(.browser-default):focus.invalid ~ label,
2205
+ input[type=datetime]:not(.browser-default):focus.invalid ~ label,
2206
+ input[type=datetime-local]:not(.browser-default):focus.invalid ~ label,
2207
+ input[type=tel]:not(.browser-default):focus.invalid ~ label,
2208
+ input[type=number]:not(.browser-default):focus.invalid ~ label,
2209
+ input[type=search]:not(.browser-default):focus.invalid ~ label,
2210
+ textarea.materialize-textarea:focus.invalid ~ label {
2211
+ color: #F44336;
2212
+ }
2213
+ input:not([type]):not(.browser-default).validate + label,
2214
+ input[type=text]:not(.browser-default).validate + label,
2215
+ input[type=password]:not(.browser-default).validate + label,
2216
+ input[type=email]:not(.browser-default).validate + label,
2217
+ input[type=url]:not(.browser-default).validate + label,
2218
+ input[type=time]:not(.browser-default).validate + label,
2219
+ input[type=date]:not(.browser-default).validate + label,
2220
+ input[type=datetime]:not(.browser-default).validate + label,
2221
+ input[type=datetime-local]:not(.browser-default).validate + label,
2222
+ input[type=tel]:not(.browser-default).validate + label,
2223
+ input[type=number]:not(.browser-default).validate + label,
2224
+ input[type=search]:not(.browser-default).validate + label,
2225
+ textarea.materialize-textarea.validate + label {
2226
+ width: 100%;
2227
+ }
2228
+ input:not([type]):not(.browser-default):-webkit-autofill, input:not([type]):not(.browser-default):-webkit-autofill:hover, input:not([type]):not(.browser-default):-webkit-autofill:focus, input:not([type]):not(.browser-default):-webkit-autofill:active,
2229
+ input[type=text]:not(.browser-default):-webkit-autofill,
2230
+ input[type=text]:not(.browser-default):-webkit-autofill:hover,
2231
+ input[type=text]:not(.browser-default):-webkit-autofill:focus,
2232
+ input[type=text]:not(.browser-default):-webkit-autofill:active,
2233
+ input[type=password]:not(.browser-default):-webkit-autofill,
2234
+ input[type=password]:not(.browser-default):-webkit-autofill:hover,
2235
+ input[type=password]:not(.browser-default):-webkit-autofill:focus,
2236
+ input[type=password]:not(.browser-default):-webkit-autofill:active,
2237
+ input[type=email]:not(.browser-default):-webkit-autofill,
2238
+ input[type=email]:not(.browser-default):-webkit-autofill:hover,
2239
+ input[type=email]:not(.browser-default):-webkit-autofill:focus,
2240
+ input[type=email]:not(.browser-default):-webkit-autofill:active,
2241
+ input[type=url]:not(.browser-default):-webkit-autofill,
2242
+ input[type=url]:not(.browser-default):-webkit-autofill:hover,
2243
+ input[type=url]:not(.browser-default):-webkit-autofill:focus,
2244
+ input[type=url]:not(.browser-default):-webkit-autofill:active,
2245
+ input[type=time]:not(.browser-default):-webkit-autofill,
2246
+ input[type=time]:not(.browser-default):-webkit-autofill:hover,
2247
+ input[type=time]:not(.browser-default):-webkit-autofill:focus,
2248
+ input[type=time]:not(.browser-default):-webkit-autofill:active,
2249
+ input[type=date]:not(.browser-default):-webkit-autofill,
2250
+ input[type=date]:not(.browser-default):-webkit-autofill:hover,
2251
+ input[type=date]:not(.browser-default):-webkit-autofill:focus,
2252
+ input[type=date]:not(.browser-default):-webkit-autofill:active,
2253
+ input[type=datetime]:not(.browser-default):-webkit-autofill,
2254
+ input[type=datetime]:not(.browser-default):-webkit-autofill:hover,
2255
+ input[type=datetime]:not(.browser-default):-webkit-autofill:focus,
2256
+ input[type=datetime]:not(.browser-default):-webkit-autofill:active,
2257
+ input[type=datetime-local]:not(.browser-default):-webkit-autofill,
2258
+ input[type=datetime-local]:not(.browser-default):-webkit-autofill:hover,
2259
+ input[type=datetime-local]:not(.browser-default):-webkit-autofill:focus,
2260
+ input[type=datetime-local]:not(.browser-default):-webkit-autofill:active,
2261
+ input[type=tel]:not(.browser-default):-webkit-autofill,
2262
+ input[type=tel]:not(.browser-default):-webkit-autofill:hover,
2263
+ input[type=tel]:not(.browser-default):-webkit-autofill:focus,
2264
+ input[type=tel]:not(.browser-default):-webkit-autofill:active,
2265
+ input[type=number]:not(.browser-default):-webkit-autofill,
2266
+ input[type=number]:not(.browser-default):-webkit-autofill:hover,
2267
+ input[type=number]:not(.browser-default):-webkit-autofill:focus,
2268
+ input[type=number]:not(.browser-default):-webkit-autofill:active,
2269
+ input[type=search]:not(.browser-default):-webkit-autofill,
2270
+ input[type=search]:not(.browser-default):-webkit-autofill:hover,
2271
+ input[type=search]:not(.browser-default):-webkit-autofill:focus,
2272
+ input[type=search]:not(.browser-default):-webkit-autofill:active,
2273
+ textarea.materialize-textarea:-webkit-autofill,
2274
+ textarea.materialize-textarea:-webkit-autofill:hover,
2275
+ textarea.materialize-textarea:-webkit-autofill:focus,
2276
+ textarea.materialize-textarea:-webkit-autofill:active {
2277
+ -webkit-box-shadow: 0 0 0 30px var(--mm-input-background, transparent) inset !important;
2278
+ -webkit-text-fill-color: var(--mm-input-text, inherit) !important;
2279
+ background-color: transparent !important;
2280
+ color: var(--mm-input-text, inherit) !important;
2281
+ transition: background-color 5000s ease-in-out 0s;
2282
+ }
2283
+ input:not([type]):not(.browser-default):-ms-input-placeholder,
2284
+ input[type=text]:not(.browser-default):-ms-input-placeholder,
2285
+ input[type=password]:not(.browser-default):-ms-input-placeholder,
2286
+ input[type=email]:not(.browser-default):-ms-input-placeholder,
2287
+ input[type=url]:not(.browser-default):-ms-input-placeholder,
2288
+ input[type=time]:not(.browser-default):-ms-input-placeholder,
2289
+ input[type=date]:not(.browser-default):-ms-input-placeholder,
2290
+ input[type=datetime]:not(.browser-default):-ms-input-placeholder,
2291
+ input[type=datetime-local]:not(.browser-default):-ms-input-placeholder,
2292
+ input[type=tel]:not(.browser-default):-ms-input-placeholder,
2293
+ input[type=number]:not(.browser-default):-ms-input-placeholder,
2294
+ input[type=search]:not(.browser-default):-ms-input-placeholder,
2295
+ textarea.materialize-textarea:-ms-input-placeholder {
2296
+ color: var(--mm-text-hint, #d1d1d1) !important;
2297
+ }
2298
+ input:not([type]):not(.browser-default)::-ms-input-placeholder,
2299
+ input[type=text]:not(.browser-default)::-ms-input-placeholder,
2300
+ input[type=password]:not(.browser-default)::-ms-input-placeholder,
2301
+ input[type=email]:not(.browser-default)::-ms-input-placeholder,
2302
+ input[type=url]:not(.browser-default)::-ms-input-placeholder,
2303
+ input[type=time]:not(.browser-default)::-ms-input-placeholder,
2304
+ input[type=date]:not(.browser-default)::-ms-input-placeholder,
2305
+ input[type=datetime]:not(.browser-default)::-ms-input-placeholder,
2306
+ input[type=datetime-local]:not(.browser-default)::-ms-input-placeholder,
2307
+ input[type=tel]:not(.browser-default)::-ms-input-placeholder,
2308
+ input[type=number]:not(.browser-default)::-ms-input-placeholder,
2309
+ input[type=search]:not(.browser-default)::-ms-input-placeholder,
2310
+ textarea.materialize-textarea::-ms-input-placeholder {
2311
+ color: var(--mm-text-hint, #d1d1d1) !important;
2312
+ }
2313
+
2314
+ /* Validation Sass Placeholders */
2315
+ .select-wrapper.valid > input.select-dropdown, input:not([type]):not(.browser-default).valid, input:not([type]):not(.browser-default):focus.valid,
2316
+ input[type=text]:not(.browser-default).valid,
2317
+ input[type=text]:not(.browser-default):focus.valid,
2318
+ input[type=password]:not(.browser-default).valid,
2319
+ input[type=password]:not(.browser-default):focus.valid,
2320
+ input[type=email]:not(.browser-default).valid,
2321
+ input[type=email]:not(.browser-default):focus.valid,
2322
+ input[type=url]:not(.browser-default).valid,
2323
+ input[type=url]:not(.browser-default):focus.valid,
2324
+ input[type=time]:not(.browser-default).valid,
2325
+ input[type=time]:not(.browser-default):focus.valid,
2326
+ input[type=date]:not(.browser-default).valid,
2327
+ input[type=date]:not(.browser-default):focus.valid,
2328
+ input[type=datetime]:not(.browser-default).valid,
2329
+ input[type=datetime]:not(.browser-default):focus.valid,
2330
+ input[type=datetime-local]:not(.browser-default).valid,
2331
+ input[type=datetime-local]:not(.browser-default):focus.valid,
2332
+ input[type=tel]:not(.browser-default).valid,
2333
+ input[type=tel]:not(.browser-default):focus.valid,
2334
+ input[type=number]:not(.browser-default).valid,
2335
+ input[type=number]:not(.browser-default):focus.valid,
2336
+ input[type=search]:not(.browser-default).valid,
2337
+ input[type=search]:not(.browser-default):focus.valid,
2338
+ textarea.materialize-textarea.valid,
2339
+ textarea.materialize-textarea:focus.valid {
2340
+ border-bottom: 1px solid #4CAF50;
2341
+ box-shadow: 0 1px 0 0 #4CAF50;
2342
+ }
2343
+
2344
+ .select-wrapper.invalid > input.select-dropdown, .select-wrapper.invalid > input.select-dropdown:focus, input:not([type]):not(.browser-default).invalid, input:not([type]):not(.browser-default):focus.invalid,
2345
+ input[type=text]:not(.browser-default).invalid,
2346
+ input[type=text]:not(.browser-default):focus.invalid,
2347
+ input[type=password]:not(.browser-default).invalid,
2348
+ input[type=password]:not(.browser-default):focus.invalid,
2349
+ input[type=email]:not(.browser-default).invalid,
2350
+ input[type=email]:not(.browser-default):focus.invalid,
2351
+ input[type=url]:not(.browser-default).invalid,
2352
+ input[type=url]:not(.browser-default):focus.invalid,
2353
+ input[type=time]:not(.browser-default).invalid,
2354
+ input[type=time]:not(.browser-default):focus.invalid,
2355
+ input[type=date]:not(.browser-default).invalid,
2356
+ input[type=date]:not(.browser-default):focus.invalid,
2357
+ input[type=datetime]:not(.browser-default).invalid,
2358
+ input[type=datetime]:not(.browser-default):focus.invalid,
2359
+ input[type=datetime-local]:not(.browser-default).invalid,
2360
+ input[type=datetime-local]:not(.browser-default):focus.invalid,
2361
+ input[type=tel]:not(.browser-default).invalid,
2362
+ input[type=tel]:not(.browser-default):focus.invalid,
2363
+ input[type=number]:not(.browser-default).invalid,
2364
+ input[type=number]:not(.browser-default):focus.invalid,
2365
+ input[type=search]:not(.browser-default).invalid,
2366
+ input[type=search]:not(.browser-default):focus.invalid,
2367
+ textarea.materialize-textarea.invalid,
2368
+ textarea.materialize-textarea:focus.invalid {
2369
+ border-bottom: 1px solid #F44336;
2370
+ box-shadow: 0 1px 0 0 #F44336;
2371
+ }
2372
+
2373
+ .select-wrapper.valid .helper-text[data-success], .select-wrapper.invalid ~ .helper-text[data-error], input:not([type]):not(.browser-default).valid ~ .helper-text[data-success], input:not([type]):not(.browser-default):focus.valid ~ .helper-text[data-success], input:not([type]):not(.browser-default).invalid ~ .helper-text[data-error], input:not([type]):not(.browser-default):focus.invalid ~ .helper-text[data-error],
2374
+ input[type=text]:not(.browser-default).valid ~ .helper-text[data-success],
2375
+ input[type=text]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2376
+ input[type=text]:not(.browser-default).invalid ~ .helper-text[data-error],
2377
+ input[type=text]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2378
+ input[type=password]:not(.browser-default).valid ~ .helper-text[data-success],
2379
+ input[type=password]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2380
+ input[type=password]:not(.browser-default).invalid ~ .helper-text[data-error],
2381
+ input[type=password]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2382
+ input[type=email]:not(.browser-default).valid ~ .helper-text[data-success],
2383
+ input[type=email]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2384
+ input[type=email]:not(.browser-default).invalid ~ .helper-text[data-error],
2385
+ input[type=email]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2386
+ input[type=url]:not(.browser-default).valid ~ .helper-text[data-success],
2387
+ input[type=url]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2388
+ input[type=url]:not(.browser-default).invalid ~ .helper-text[data-error],
2389
+ input[type=url]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2390
+ input[type=time]:not(.browser-default).valid ~ .helper-text[data-success],
2391
+ input[type=time]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2392
+ input[type=time]:not(.browser-default).invalid ~ .helper-text[data-error],
2393
+ input[type=time]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2394
+ input[type=date]:not(.browser-default).valid ~ .helper-text[data-success],
2395
+ input[type=date]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2396
+ input[type=date]:not(.browser-default).invalid ~ .helper-text[data-error],
2397
+ input[type=date]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2398
+ input[type=datetime]:not(.browser-default).valid ~ .helper-text[data-success],
2399
+ input[type=datetime]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2400
+ input[type=datetime]:not(.browser-default).invalid ~ .helper-text[data-error],
2401
+ input[type=datetime]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2402
+ input[type=datetime-local]:not(.browser-default).valid ~ .helper-text[data-success],
2403
+ input[type=datetime-local]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2404
+ input[type=datetime-local]:not(.browser-default).invalid ~ .helper-text[data-error],
2405
+ input[type=datetime-local]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2406
+ input[type=tel]:not(.browser-default).valid ~ .helper-text[data-success],
2407
+ input[type=tel]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2408
+ input[type=tel]:not(.browser-default).invalid ~ .helper-text[data-error],
2409
+ input[type=tel]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2410
+ input[type=number]:not(.browser-default).valid ~ .helper-text[data-success],
2411
+ input[type=number]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2412
+ input[type=number]:not(.browser-default).invalid ~ .helper-text[data-error],
2413
+ input[type=number]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2414
+ input[type=search]:not(.browser-default).valid ~ .helper-text[data-success],
2415
+ input[type=search]:not(.browser-default):focus.valid ~ .helper-text[data-success],
2416
+ input[type=search]:not(.browser-default).invalid ~ .helper-text[data-error],
2417
+ input[type=search]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
2418
+ textarea.materialize-textarea.valid ~ .helper-text[data-success],
2419
+ textarea.materialize-textarea:focus.valid ~ .helper-text[data-success],
2420
+ textarea.materialize-textarea.invalid ~ .helper-text[data-error],
2421
+ textarea.materialize-textarea:focus.invalid ~ .helper-text[data-error] {
2422
+ color: transparent;
2423
+ user-select: none;
2424
+ pointer-events: none;
2425
+ }
2426
+
2427
+ .select-wrapper.valid ~ .helper-text:after, input:not([type]):not(.browser-default).valid ~ .helper-text:after, input:not([type]):not(.browser-default):focus.valid ~ .helper-text:after,
2428
+ input[type=text]:not(.browser-default).valid ~ .helper-text:after,
2429
+ input[type=text]:not(.browser-default):focus.valid ~ .helper-text:after,
2430
+ input[type=password]:not(.browser-default).valid ~ .helper-text:after,
2431
+ input[type=password]:not(.browser-default):focus.valid ~ .helper-text:after,
2432
+ input[type=email]:not(.browser-default).valid ~ .helper-text:after,
2433
+ input[type=email]:not(.browser-default):focus.valid ~ .helper-text:after,
2434
+ input[type=url]:not(.browser-default).valid ~ .helper-text:after,
2435
+ input[type=url]:not(.browser-default):focus.valid ~ .helper-text:after,
2436
+ input[type=time]:not(.browser-default).valid ~ .helper-text:after,
2437
+ input[type=time]:not(.browser-default):focus.valid ~ .helper-text:after,
2438
+ input[type=date]:not(.browser-default).valid ~ .helper-text:after,
2439
+ input[type=date]:not(.browser-default):focus.valid ~ .helper-text:after,
2440
+ input[type=datetime]:not(.browser-default).valid ~ .helper-text:after,
2441
+ input[type=datetime]:not(.browser-default):focus.valid ~ .helper-text:after,
2442
+ input[type=datetime-local]:not(.browser-default).valid ~ .helper-text:after,
2443
+ input[type=datetime-local]:not(.browser-default):focus.valid ~ .helper-text:after,
2444
+ input[type=tel]:not(.browser-default).valid ~ .helper-text:after,
2445
+ input[type=tel]:not(.browser-default):focus.valid ~ .helper-text:after,
2446
+ input[type=number]:not(.browser-default).valid ~ .helper-text:after,
2447
+ input[type=number]:not(.browser-default):focus.valid ~ .helper-text:after,
2448
+ input[type=search]:not(.browser-default).valid ~ .helper-text:after,
2449
+ input[type=search]:not(.browser-default):focus.valid ~ .helper-text:after,
2450
+ textarea.materialize-textarea.valid ~ .helper-text:after,
2451
+ textarea.materialize-textarea:focus.valid ~ .helper-text:after {
2452
+ content: attr(data-success);
2453
+ color: #4CAF50;
2454
+ }
2455
+
2456
+ .select-wrapper.invalid ~ .helper-text:after, input:not([type]):not(.browser-default).invalid ~ .helper-text:after, input:not([type]):not(.browser-default):focus.invalid ~ .helper-text:after,
2457
+ input[type=text]:not(.browser-default).invalid ~ .helper-text:after,
2458
+ input[type=text]:not(.browser-default):focus.invalid ~ .helper-text:after,
2459
+ input[type=password]:not(.browser-default).invalid ~ .helper-text:after,
2460
+ input[type=password]:not(.browser-default):focus.invalid ~ .helper-text:after,
2461
+ input[type=email]:not(.browser-default).invalid ~ .helper-text:after,
2462
+ input[type=email]:not(.browser-default):focus.invalid ~ .helper-text:after,
2463
+ input[type=url]:not(.browser-default).invalid ~ .helper-text:after,
2464
+ input[type=url]:not(.browser-default):focus.invalid ~ .helper-text:after,
2465
+ input[type=time]:not(.browser-default).invalid ~ .helper-text:after,
2466
+ input[type=time]:not(.browser-default):focus.invalid ~ .helper-text:after,
2467
+ input[type=date]:not(.browser-default).invalid ~ .helper-text:after,
2468
+ input[type=date]:not(.browser-default):focus.invalid ~ .helper-text:after,
2469
+ input[type=datetime]:not(.browser-default).invalid ~ .helper-text:after,
2470
+ input[type=datetime]:not(.browser-default):focus.invalid ~ .helper-text:after,
2471
+ input[type=datetime-local]:not(.browser-default).invalid ~ .helper-text:after,
2472
+ input[type=datetime-local]:not(.browser-default):focus.invalid ~ .helper-text:after,
2473
+ input[type=tel]:not(.browser-default).invalid ~ .helper-text:after,
2474
+ input[type=tel]:not(.browser-default):focus.invalid ~ .helper-text:after,
2475
+ input[type=number]:not(.browser-default).invalid ~ .helper-text:after,
2476
+ input[type=number]:not(.browser-default):focus.invalid ~ .helper-text:after,
2477
+ input[type=search]:not(.browser-default).invalid ~ .helper-text:after,
2478
+ input[type=search]:not(.browser-default):focus.invalid ~ .helper-text:after,
2479
+ textarea.materialize-textarea.invalid ~ .helper-text:after,
2480
+ textarea.materialize-textarea:focus.invalid ~ .helper-text:after {
2481
+ content: attr(data-error);
2482
+ color: #F44336;
2483
+ }
2484
+
2485
+ .select-wrapper + label:after, input:not([type]):not(.browser-default) + label:after,
2486
+ input[type=text]:not(.browser-default) + label:after,
2487
+ input[type=password]:not(.browser-default) + label:after,
2488
+ input[type=email]:not(.browser-default) + label:after,
2489
+ input[type=url]:not(.browser-default) + label:after,
2490
+ input[type=time]:not(.browser-default) + label:after,
2491
+ input[type=date]:not(.browser-default) + label:after,
2492
+ input[type=datetime]:not(.browser-default) + label:after,
2493
+ input[type=datetime-local]:not(.browser-default) + label:after,
2494
+ input[type=tel]:not(.browser-default) + label:after,
2495
+ input[type=number]:not(.browser-default) + label:after,
2496
+ input[type=search]:not(.browser-default) + label:after,
2497
+ textarea.materialize-textarea + label:after {
2498
+ display: block;
2499
+ content: "";
2500
+ position: absolute;
2501
+ top: 100%;
2502
+ left: 0;
2503
+ opacity: 0;
2504
+ transition: 0.2s opacity ease-out, 0.2s color ease-out;
2505
+ }
2506
+
2507
+ .input-field {
2508
+ position: relative;
2509
+ margin-top: 1rem;
2510
+ margin-bottom: 1rem;
2511
+ }
2512
+ .input-field.inline {
2513
+ display: inline-block;
2514
+ vertical-align: middle;
2515
+ margin-left: 5px;
2516
+ }
2517
+ .input-field.inline input,
2518
+ .input-field.inline .select-dropdown {
2519
+ margin-bottom: 1rem;
2520
+ }
2521
+ .input-field.col label {
2522
+ left: 0.75rem;
2523
+ }
2524
+ .input-field.col .prefix ~ label,
2525
+ .input-field.col .prefix ~ .validate ~ label {
2526
+ width: calc(100% - 3rem - 1.5rem);
2527
+ }
2528
+ .input-field > label {
2529
+ color: #9e9e9e;
2530
+ position: absolute;
2531
+ top: 0;
2532
+ left: 0;
2533
+ font-size: 1rem;
2534
+ cursor: text;
2535
+ transition: transform 0.2s ease-out, color 0.2s ease-out;
2536
+ transform-origin: 0% 100%;
2537
+ text-align: initial;
2538
+ transform: translateY(12px);
2539
+ }
2540
+ .input-field > label:not(.label-icon).active {
2541
+ transform: translateY(-14px) scale(0.8);
2542
+ transform-origin: 0 0;
2543
+ }
2544
+ .input-field > input[type]:-webkit-autofill:not(.browser-default):not([type=search]) + label, .input-field > input[type=date]:not(.browser-default) + label, .input-field > input[type=time]:not(.browser-default) + label {
2545
+ transform: translateY(-14px) scale(0.8);
2546
+ transform-origin: 0 0;
2547
+ }
2548
+ .input-field .helper-text {
2549
+ position: relative;
2550
+ min-height: 18px;
2551
+ display: block;
2552
+ font-size: 12px;
2553
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
2554
+ }
2555
+ .input-field .helper-text::after {
2556
+ opacity: 1;
2557
+ position: absolute;
2558
+ top: 0;
2559
+ left: 0;
2560
+ }
2561
+ .input-field .prefix {
2562
+ position: absolute;
2563
+ width: 3rem;
2564
+ font-size: 2rem;
2565
+ transition: color 0.2s;
2566
+ top: 0.5rem;
2567
+ }
2568
+ .input-field .prefix.active {
2569
+ color: #26a69a;
2570
+ }
2571
+ .input-field .prefix ~ input,
2572
+ .input-field .prefix ~ textarea,
2573
+ .input-field .prefix ~ label,
2574
+ .input-field .prefix ~ .validate ~ label,
2575
+ .input-field .prefix ~ .helper-text,
2576
+ .input-field .prefix ~ .autocomplete-content {
2577
+ margin-left: 3rem;
2578
+ width: 92%;
2579
+ width: calc(100% - 3rem);
2580
+ }
2581
+ .input-field .prefix ~ label {
2582
+ margin-left: 3rem;
2583
+ }
2584
+ @media only screen and (max-width : 992px) {
2585
+ .input-field .prefix ~ input {
2586
+ width: 86%;
2587
+ width: calc(100% - 3rem);
2588
+ }
2589
+ }
2590
+ @media only screen and (max-width : 600px) {
2591
+ .input-field .prefix ~ input {
2592
+ width: 80%;
2593
+ width: calc(100% - 3rem);
2594
+ }
2595
+ }
2596
+
2597
+ .input-field input[type=color]:not(.browser-default) {
2598
+ margin-top: 8px;
2599
+ }
2600
+
2601
+ /* Search Field */
2602
+ .input-field input[type=search] {
2603
+ display: block;
2604
+ line-height: inherit;
2605
+ transition: 0.3s background-color;
2606
+ }
2607
+ .nav-wrapper .input-field input[type=search] {
2608
+ height: inherit;
2609
+ padding-left: 4rem;
2610
+ width: calc(100% - 4rem);
2611
+ border: 0;
2612
+ box-shadow: none;
2613
+ }
2614
+ .input-field input[type=search]:focus:not(.browser-default) {
2615
+ background-color: var(--mm-input-background, #fff);
2616
+ border: 0;
2617
+ box-shadow: none;
2618
+ color: var(--mm-input-text, #444);
2619
+ }
2620
+ .input-field input[type=search]:focus:not(.browser-default) + label i, .input-field input[type=search]:focus:not(.browser-default) ~ .mdi-navigation-close, .input-field input[type=search]:focus:not(.browser-default) ~ .material-icons {
2621
+ color: var(--mm-input-text, #444);
2622
+ }
2623
+ .input-field input[type=search] + .label-icon {
2624
+ transform: none;
2625
+ left: 1rem;
2626
+ }
2627
+ .input-field input[type=search] ~ .mdi-navigation-close, .input-field input[type=search] ~ .material-icons {
2628
+ position: absolute;
2629
+ top: 0;
2630
+ right: 1rem;
2631
+ color: transparent;
2632
+ cursor: pointer;
2633
+ font-size: 2rem;
2634
+ transition: 0.3s color;
2635
+ }
2636
+
2637
+ /* Textarea */
2638
+ textarea {
2639
+ width: 100%;
2640
+ height: 3rem;
2641
+ background-color: transparent;
2642
+ }
2643
+ textarea.materialize-textarea {
2644
+ line-height: normal;
2645
+ overflow-y: hidden; /* prevents scroll bar flash */
2646
+ padding: 0.8rem 0 0.8rem 0; /* prevents text jump on Enter keypress */
2647
+ resize: none;
2648
+ min-height: 3rem;
2649
+ box-sizing: border-box;
2650
+ }
2651
+
2652
+ .hiddendiv {
2653
+ visibility: hidden;
2654
+ white-space: pre-wrap;
2655
+ word-wrap: break-word;
2656
+ overflow-wrap: break-word; /* future version of deprecated 'word-wrap' */
2657
+ padding-top: 1.2rem; /* prevents text jump on Enter keypress */
2658
+ position: absolute;
2659
+ top: 0;
2660
+ z-index: -1;
2661
+ }
2662
+
2663
+ /* Autocomplete */
2664
+ .autocomplete-content li .highlight {
2665
+ color: #444;
2666
+ }
2667
+ .autocomplete-content li img {
2668
+ height: 40px;
2669
+ width: 40px;
2670
+ margin: 5px 15px;
2671
+ }
2672
+
2673
+ /* Character Counter */
2674
+ .character-counter {
2675
+ min-height: 18px;
2676
+ }
2677
+
2678
+ /* Radio Buttons
2679
+ ========================================================================== */
2680
+ [type=radio]:not(:checked),
2681
+ [type=radio]:checked {
2682
+ position: absolute;
2683
+ opacity: 0;
2684
+ pointer-events: none;
2685
+ }
2686
+
2687
+ [type=radio]:not(:checked) + span,
2688
+ [type=radio]:checked + span {
2689
+ position: relative;
2690
+ padding-left: 35px;
2691
+ cursor: pointer;
2692
+ display: inline-block;
2693
+ height: 25px;
2694
+ line-height: 25px;
2695
+ font-size: 1rem;
2696
+ transition: 0.28s ease;
2697
+ user-select: none;
2698
+ }
2699
+
2700
+ [type=radio] + span:before,
2701
+ [type=radio] + span:after {
2702
+ content: "";
2703
+ position: absolute;
2704
+ left: 0;
2705
+ top: 0;
2706
+ margin: 4px;
2707
+ width: 16px;
2708
+ height: 16px;
2709
+ z-index: 0;
2710
+ transition: 0.28s ease;
2711
+ }
2712
+
2713
+ /* Unchecked styles */
2714
+ [type=radio]:not(:checked) + span:before,
2715
+ [type=radio]:not(:checked) + span:after,
2716
+ [type=radio]:checked + span:before,
2717
+ [type=radio]:checked + span:after,
2718
+ [type=radio].with-gap:checked + span:before,
2719
+ [type=radio].with-gap:checked + span:after {
2720
+ border-radius: 50%;
2721
+ }
2722
+
2723
+ [type=radio]:not(:checked) + span:before,
2724
+ [type=radio]:not(:checked) + span:after {
2725
+ border: 2px solid var(--mm-text-secondary, #5a5a5a);
2726
+ }
2727
+
2728
+ [type=radio]:not(:checked) + span:after {
2729
+ transform: scale(0);
2730
+ }
2731
+
2732
+ /* Checked styles */
2733
+ [type=radio]:checked + span:before {
2734
+ border: 2px solid transparent;
2735
+ }
2736
+
2737
+ [type=radio]:checked + span:after,
2738
+ [type=radio].with-gap:checked + span:before,
2739
+ [type=radio].with-gap:checked + span:after {
2740
+ border: 2px solid var(--mm-primary-color, #26a69a);
2741
+ }
2742
+
2743
+ [type=radio]:checked + span:after,
2744
+ [type=radio].with-gap:checked + span:after {
2745
+ background-color: var(--mm-primary-color, #26a69a);
2746
+ }
2747
+
2748
+ [type=radio]:checked + span:after {
2749
+ transform: scale(1.02);
2750
+ }
2751
+
2752
+ /* Radio With gap */
2753
+ [type=radio].with-gap:checked + span:after {
2754
+ transform: scale(0.5);
2755
+ }
2756
+
2757
+ /* Focused styles */
2758
+ [type=radio].tabbed:focus + span:before {
2759
+ box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
2760
+ }
2761
+
2762
+ /* Disabled Radio With gap */
2763
+ [type=radio].with-gap:disabled:checked + span:before {
2764
+ border: 2px solid var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
2765
+ }
2766
+
2767
+ [type=radio].with-gap:disabled:checked + span:after {
2768
+ border: none;
2769
+ background-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
2770
+ }
2771
+
2772
+ /* Disabled style */
2773
+ [type=radio]:disabled:not(:checked) + span:before,
2774
+ [type=radio]:disabled:checked + span:before {
2775
+ background-color: transparent;
2776
+ border-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
2777
+ }
2778
+
2779
+ [type=radio]:disabled + span {
2780
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
2781
+ }
2782
+
2783
+ [type=radio]:disabled:not(:checked) + span:before {
2784
+ border-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
2785
+ }
2786
+
2787
+ [type=radio]:disabled:checked + span:after {
2788
+ background-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
2789
+ border-color: var(--mm-text-disabled, #949494);
2790
+ }
2791
+
2792
+ /* Checkboxes
2793
+ ========================================================================== */
2794
+ /* Remove default checkbox */
2795
+ [type=checkbox]:not(:checked),
2796
+ [type=checkbox]:checked {
2797
+ position: absolute;
2798
+ opacity: 0;
2799
+ pointer-events: none;
2800
+ }
2801
+
2802
+ [type=checkbox] {
2803
+ /* checkbox aspect */
2804
+ }
2805
+ [type=checkbox] + span:not(.lever) {
2806
+ position: relative;
2807
+ padding-left: 35px;
2808
+ cursor: pointer;
2809
+ display: inline-block;
2810
+ height: 25px;
2811
+ line-height: 25px;
2812
+ font-size: 1rem;
2813
+ user-select: none;
2814
+ }
2815
+ [type=checkbox] + span:not(.lever):before, [type=checkbox]:not(.filled-in) + span:not(.lever):after {
2816
+ content: "";
2817
+ position: absolute;
2818
+ top: 0;
2819
+ left: 0;
2820
+ width: 18px;
2821
+ height: 18px;
2822
+ z-index: 0;
2823
+ border: 2px solid #5a5a5a;
2824
+ border-radius: 1px;
2825
+ margin-top: 3px;
2826
+ transition: 0.2s;
2827
+ }
2828
+ [type=checkbox]:not(.filled-in) + span:not(.lever):after {
2829
+ border: 0;
2830
+ transform: scale(0);
2831
+ }
2832
+ [type=checkbox]:not(:checked):disabled + span:not(.lever):before {
2833
+ border: none;
2834
+ background-color: rgba(0, 0, 0, 0.42);
2835
+ }
2836
+ [type=checkbox].tabbed:focus + span:not(.lever):after {
2837
+ transform: scale(1);
2838
+ border: 0;
2839
+ border-radius: 50%;
2840
+ box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
2841
+ background-color: rgba(0, 0, 0, 0.1);
2842
+ }
2843
+
2844
+ [type=checkbox]:checked + span:not(.lever):before {
2845
+ top: -4px;
2846
+ left: -5px;
2847
+ width: 12px;
2848
+ height: 22px;
2849
+ border-top: 2px solid transparent;
2850
+ border-left: 2px solid transparent;
2851
+ border-right: 2px solid #26a69a;
2852
+ border-bottom: 2px solid #26a69a;
2853
+ transform: rotate(40deg);
2854
+ backface-visibility: hidden;
2855
+ transform-origin: 100% 100%;
2856
+ }
2857
+ [type=checkbox]:checked:disabled + span:before {
2858
+ border-right: 2px solid rgba(0, 0, 0, 0.42);
2859
+ border-bottom: 2px solid rgba(0, 0, 0, 0.42);
2860
+ }
2861
+
2862
+ /* Indeterminate checkbox */
2863
+ [type=checkbox]:indeterminate + span:not(.lever):before {
2864
+ top: -11px;
2865
+ left: -12px;
2866
+ width: 10px;
2867
+ height: 22px;
2868
+ border-top: none;
2869
+ border-left: none;
2870
+ border-right: 2px solid #26a69a;
2871
+ border-bottom: none;
2872
+ transform: rotate(90deg);
2873
+ backface-visibility: hidden;
2874
+ transform-origin: 100% 100%;
2875
+ }
2876
+ [type=checkbox]:indeterminate:disabled + span:not(.lever):before {
2877
+ border-right: 2px solid rgba(0, 0, 0, 0.42);
2878
+ background-color: transparent;
2879
+ }
2880
+
2881
+ [type=checkbox].filled-in + span:not(.lever):after {
2882
+ border-radius: 2px;
2883
+ }
2884
+ [type=checkbox].filled-in + span:not(.lever):before,
2885
+ [type=checkbox].filled-in + span:not(.lever):after {
2886
+ content: "";
2887
+ left: 0;
2888
+ position: absolute;
2889
+ /* .1s delay is for check animation */
2890
+ transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
2891
+ z-index: 1;
2892
+ }
2893
+ [type=checkbox].filled-in:not(:checked) + span:not(.lever):before {
2894
+ width: 0;
2895
+ height: 0;
2896
+ border: 3px solid transparent;
2897
+ left: 6px;
2898
+ top: 10px;
2899
+ transform: rotateZ(37deg);
2900
+ transform-origin: 100% 100%;
2901
+ }
2902
+ [type=checkbox].filled-in:not(:checked) + span:not(.lever):after {
2903
+ height: 20px;
2904
+ width: 20px;
2905
+ background-color: transparent;
2906
+ border: 2px solid #5a5a5a;
2907
+ top: 0px;
2908
+ z-index: 0;
2909
+ }
2910
+ [type=checkbox].filled-in:checked + span:not(.lever):before {
2911
+ top: 0;
2912
+ left: 1px;
2913
+ width: 8px;
2914
+ height: 13px;
2915
+ border-top: 2px solid transparent;
2916
+ border-left: 2px solid transparent;
2917
+ border-right: 2px solid #fff;
2918
+ border-bottom: 2px solid #fff;
2919
+ transform: rotateZ(37deg);
2920
+ transform-origin: 100% 100%;
2921
+ }
2922
+ [type=checkbox].filled-in:checked + span:not(.lever):after {
2923
+ top: 0;
2924
+ width: 20px;
2925
+ height: 20px;
2926
+ border: 2px solid #26a69a;
2927
+ background-color: #26a69a;
2928
+ z-index: 0;
2929
+ }
2930
+ [type=checkbox].filled-in.tabbed:focus + span:not(.lever):after {
2931
+ border-radius: 2px;
2932
+ border-color: #5a5a5a;
2933
+ background-color: rgba(0, 0, 0, 0.1);
2934
+ }
2935
+ [type=checkbox].filled-in.tabbed:checked:focus + span:not(.lever):after {
2936
+ border-radius: 2px;
2937
+ background-color: #26a69a;
2938
+ border-color: #26a69a;
2939
+ }
2940
+ [type=checkbox].filled-in:disabled:not(:checked) + span:not(.lever):before {
2941
+ background-color: transparent;
2942
+ border: 2px solid transparent;
2943
+ }
2944
+ [type=checkbox].filled-in:disabled:not(:checked) + span:not(.lever):after {
2945
+ border-color: transparent;
2946
+ background-color: #949494;
2947
+ }
2948
+ [type=checkbox].filled-in:disabled:checked + span:not(.lever):before {
2949
+ background-color: transparent;
2950
+ }
2951
+ [type=checkbox].filled-in:disabled:checked + span:not(.lever):after {
2952
+ background-color: #949494;
2953
+ border-color: #949494;
2954
+ }
2955
+
2956
+ /* Switch
2957
+ ========================================================================== */
2958
+ .switch,
2959
+ .switch * {
2960
+ -webkit-tap-highlight-color: transparent;
2961
+ user-select: none;
2962
+ }
2963
+
2964
+ .switch label {
2965
+ cursor: pointer;
2966
+ }
2967
+
2968
+ .switch label input[type=checkbox] {
2969
+ opacity: 0;
2970
+ width: 0;
2971
+ height: 0;
2972
+ }
2973
+ .switch label input[type=checkbox]:checked + .lever {
2974
+ background-color: var(--mm-switch-checked-track, rgb(132.0625, 199.4375, 193.12109375));
2975
+ }
2976
+ .switch label input[type=checkbox]:checked + .lever:before, .switch label input[type=checkbox]:checked + .lever:after {
2977
+ left: 18px;
2978
+ }
2979
+ .switch label input[type=checkbox]:checked + .lever:after {
2980
+ background-color: var(--mm-switch-checked-thumb, #26a69a);
2981
+ }
2982
+
2983
+ .switch label .lever {
2984
+ content: "";
2985
+ display: inline-block;
2986
+ position: relative;
2987
+ width: 36px;
2988
+ height: 14px;
2989
+ background-color: var(--mm-switch-unchecked-track, rgba(0, 0, 0, 0.38));
2990
+ border-radius: 15px;
2991
+ margin-right: 10px;
2992
+ transition: background 0.3s ease;
2993
+ vertical-align: middle;
2994
+ margin: 0 16px;
2995
+ }
2996
+ .switch label .lever:before, .switch label .lever:after {
2997
+ content: "";
2998
+ position: absolute;
2999
+ display: inline-block;
3000
+ width: 20px;
3001
+ height: 20px;
3002
+ border-radius: 50%;
3003
+ left: 0;
3004
+ top: -3px;
3005
+ transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
3006
+ }
3007
+ .switch label .lever:before {
3008
+ background-color: rgba(38, 166, 154, 0.15);
3009
+ }
3010
+ .switch label .lever:after {
3011
+ background-color: var(--mm-switch-unchecked-thumb, #F1F1F1);
3012
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
3013
+ }
3014
+
3015
+ input[type=checkbox]:checked:not(:disabled) ~ .lever:active::before,
3016
+ input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::before {
3017
+ transform: scale(2.4);
3018
+ background-color: rgba(38, 166, 154, 0.15);
3019
+ }
3020
+
3021
+ input[type=checkbox]:not(:disabled) ~ .lever:active:before,
3022
+ input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
3023
+ transform: scale(2.4);
3024
+ background-color: rgba(0, 0, 0, 0.08);
3025
+ }
3026
+
3027
+ .switch input[type=checkbox][disabled] + .lever {
3028
+ cursor: default;
3029
+ background-color: var(--mm-switch-disabled-track, rgba(0, 0, 0, 0.12));
3030
+ }
3031
+
3032
+ .switch label input[type=checkbox][disabled] + .lever:after,
3033
+ .switch label input[type=checkbox][disabled]:checked + .lever:after {
3034
+ background-color: var(--mm-switch-disabled-thumb, #949494);
3035
+ }
3036
+
3037
+ /* Select Field
3038
+ ========================================================================== */
3039
+ select.browser-default {
3040
+ opacity: 1;
3041
+ }
3042
+
3043
+ select {
3044
+ opacity: 0;
3045
+ background-color: rgba(255, 255, 255, 0.9);
3046
+ width: 100%;
3047
+ padding: 5px;
3048
+ border: 1px solid #f2f2f2;
3049
+ border-radius: 2px;
3050
+ height: 3rem;
3051
+ }
3052
+
3053
+ .select-label {
3054
+ position: absolute;
3055
+ }
3056
+
3057
+ .select-wrapper {
3058
+ position: relative;
3059
+ }
3060
+ .select-wrapper.valid + label, .select-wrapper.invalid + label {
3061
+ width: 100%;
3062
+ pointer-events: none;
3063
+ }
3064
+ .select-wrapper input.select-dropdown {
3065
+ position: relative;
3066
+ cursor: pointer;
3067
+ background-color: transparent;
3068
+ border: none;
3069
+ border-bottom: 1px solid #9e9e9e;
3070
+ outline: none;
3071
+ height: 3rem;
3072
+ line-height: 3rem;
3073
+ width: 100%;
3074
+ font-size: 16px;
3075
+ margin: 0 0 8px 0;
3076
+ padding: 0;
3077
+ display: block;
3078
+ user-select: none;
3079
+ z-index: 1;
3080
+ }
3081
+ .select-wrapper input.select-dropdown:focus {
3082
+ border-bottom: 1px solid #26a69a;
3083
+ }
3084
+ .select-wrapper .caret {
3085
+ position: absolute;
3086
+ right: 0;
3087
+ top: 0;
3088
+ bottom: 0;
3089
+ margin: auto 0;
3090
+ z-index: 0;
3091
+ fill: rgba(0, 0, 0, 0.87);
3092
+ }
3093
+ .select-wrapper + label {
3094
+ position: absolute;
3095
+ top: -26px;
3096
+ font-size: 0.8rem;
3097
+ }
3098
+ .select-wrapper .hide-select {
3099
+ width: 0;
3100
+ height: 0;
3101
+ overflow: hidden;
3102
+ position: absolute;
3103
+ top: 0;
3104
+ z-index: -1;
3105
+ }
3106
+
3107
+ select:disabled {
3108
+ color: rgba(0, 0, 0, 0.42);
3109
+ }
3110
+
3111
+ .select-wrapper.disabled + label {
3112
+ color: rgba(0, 0, 0, 0.42);
3113
+ }
3114
+ .select-wrapper.disabled .caret {
3115
+ fill: rgba(0, 0, 0, 0.42);
3116
+ }
3117
+
3118
+ .select-wrapper input.select-dropdown:disabled {
3119
+ color: rgba(0, 0, 0, 0.42);
3120
+ cursor: default;
3121
+ user-select: none;
3122
+ }
3123
+
3124
+ .select-wrapper i {
3125
+ color: rgba(0, 0, 0, 0.3);
3126
+ }
3127
+
3128
+ .select-dropdown li.disabled,
3129
+ .select-dropdown li.disabled > span,
3130
+ .select-dropdown li.optgroup {
3131
+ color: rgba(0, 0, 0, 0.3);
3132
+ background-color: transparent;
3133
+ }
3134
+
3135
+ body.keyboard-focused .select-dropdown.dropdown-content li:focus {
3136
+ background-color: rgba(0, 0, 0, 0.08);
3137
+ }
3138
+
3139
+ .select-dropdown.dropdown-content li:hover {
3140
+ background-color: rgba(0, 0, 0, 0.08);
3141
+ }
3142
+ .select-dropdown.dropdown-content li.selected {
3143
+ background-color: rgba(0, 0, 0, 0.03);
3144
+ }
3145
+
3146
+ .prefix ~ .select-wrapper {
3147
+ margin-left: 3rem;
3148
+ width: 92%;
3149
+ width: calc(100% - 3rem);
3150
+ }
3151
+
3152
+ .prefix ~ label {
3153
+ margin-left: 3rem;
3154
+ }
3155
+
3156
+ .select-dropdown li img {
3157
+ height: 40px;
3158
+ width: 40px;
3159
+ margin: 5px 15px;
3160
+ float: right;
3161
+ }
3162
+
3163
+ .select-dropdown li.optgroup {
3164
+ border-top: 1px solid #eee;
3165
+ }
3166
+ .select-dropdown li.optgroup.selected > span {
3167
+ color: rgba(0, 0, 0, 0.7);
3168
+ }
3169
+ .select-dropdown li.optgroup > span {
3170
+ color: rgba(0, 0, 0, 0.4);
3171
+ }
3172
+ .select-dropdown li.optgroup ~ li.optgroup-option {
3173
+ padding-left: 1rem;
3174
+ }
3175
+
3176
+ /* File Input
3177
+ ========================================================================== */
3178
+ .file-field {
3179
+ position: relative;
3180
+ }
3181
+ .file-field .file-path-wrapper {
3182
+ overflow: hidden;
3183
+ padding-left: 10px;
3184
+ }
3185
+ .file-field input.file-path {
3186
+ width: 100%;
3187
+ }
3188
+ .file-field .btn {
3189
+ float: left;
3190
+ height: 3rem;
3191
+ line-height: 3rem;
3192
+ }
3193
+ .file-field span {
3194
+ cursor: pointer;
3195
+ }
3196
+ .file-field input[type=file] {
3197
+ position: absolute;
3198
+ top: 0;
3199
+ right: 0;
3200
+ left: 0;
3201
+ bottom: 0;
3202
+ width: 100%;
3203
+ margin: 0;
3204
+ padding: 0;
3205
+ font-size: 20px;
3206
+ cursor: pointer;
3207
+ opacity: 0;
3208
+ filter: alpha(opacity=0);
3209
+ }
3210
+ .file-field input[type=file]::-webkit-file-upload-button {
3211
+ display: none;
3212
+ }
3213
+ .file-field .close {
3214
+ height: 20px;
3215
+ }
3216
+
3217
+ /* Range
3218
+ ========================================================================== */
3219
+ .range-field {
3220
+ position: relative;
3221
+ }
3222
+
3223
+ input[type=range],
3224
+ input[type=range] + .thumb {
3225
+ cursor: pointer;
3226
+ }
3227
+
3228
+ input[type=range] {
3229
+ position: relative;
3230
+ background-color: transparent;
3231
+ border: none;
3232
+ outline: none;
3233
+ width: 100%;
3234
+ margin: 15px 0;
3235
+ padding: 0;
3236
+ }
3237
+ input[type=range]:focus {
3238
+ outline: none;
3239
+ }
3240
+
3241
+ input[type=range] + .thumb {
3242
+ position: absolute;
3243
+ top: 10px;
3244
+ left: 0;
3245
+ border: none;
3246
+ height: 0;
3247
+ width: 0;
3248
+ border-radius: 50%;
3249
+ background-color: #26a69a;
3250
+ margin-left: 7px;
3251
+ transform-origin: 50% 50%;
3252
+ transform: rotate(-45deg);
3253
+ }
3254
+ input[type=range] + .thumb .value {
3255
+ display: block;
3256
+ width: 30px;
3257
+ text-align: center;
3258
+ color: #26a69a;
3259
+ font-size: 0;
3260
+ transform: rotate(45deg);
3261
+ }
3262
+ input[type=range] + .thumb.active {
3263
+ border-radius: 50% 50% 50% 0;
3264
+ }
3265
+ input[type=range] + .thumb.active .value {
3266
+ color: #fff;
3267
+ margin-left: -1px;
3268
+ margin-top: 8px;
3269
+ font-size: 10px;
3270
+ }
3271
+
3272
+ input[type=range] {
3273
+ -webkit-appearance: none;
3274
+ }
3275
+
3276
+ input[type=range]::-webkit-slider-runnable-track {
3277
+ height: 3px;
3278
+ background: #c2c0c2;
3279
+ border: none;
3280
+ }
3281
+
3282
+ input[type=range]::-webkit-slider-thumb {
3283
+ border: none;
3284
+ height: 14px;
3285
+ width: 14px;
3286
+ border-radius: 50%;
3287
+ background: #26a69a;
3288
+ transition: box-shadow 0.3s;
3289
+ -webkit-appearance: none;
3290
+ background-color: #26a69a;
3291
+ transform-origin: 50% 50%;
3292
+ margin: -5px 0 0 0;
3293
+ }
3294
+
3295
+ .keyboard-focused input[type=range]:focus:not(.active)::-webkit-slider-thumb {
3296
+ box-shadow: 0 0 0 10px rgba(38, 166, 154, 0.26);
3297
+ }
3298
+
3299
+ input[type=range] {
3300
+ /* fix for FF unable to apply focus style bug */
3301
+ border: 1px solid white;
3302
+ /*required for proper track sizing in FF*/
3303
+ }
3304
+
3305
+ input[type=range]::-moz-range-track {
3306
+ height: 3px;
3307
+ background: #c2c0c2;
3308
+ border: none;
3309
+ }
3310
+
3311
+ input[type=range]::-moz-focus-inner {
3312
+ border: 0;
3313
+ }
3314
+
3315
+ input[type=range]::-moz-range-thumb {
3316
+ border: none;
3317
+ height: 14px;
3318
+ width: 14px;
3319
+ border-radius: 50%;
3320
+ background: #26a69a;
3321
+ transition: box-shadow 0.3s;
3322
+ margin-top: -5px;
3323
+ }
3324
+
3325
+ input[type=range]:-moz-focusring {
3326
+ outline: 1px solid #fff;
3327
+ outline-offset: -1px;
3328
+ }
3329
+
3330
+ .keyboard-focused input[type=range]:focus:not(.active)::-moz-range-thumb {
3331
+ box-shadow: 0 0 0 10px rgba(38, 166, 154, 0.26);
3332
+ }
3333
+
3334
+ input[type=range]::-ms-track {
3335
+ height: 3px;
3336
+ background: transparent;
3337
+ border-color: transparent;
3338
+ border-width: 6px 0;
3339
+ /*remove default tick marks*/
3340
+ color: transparent;
3341
+ }
3342
+
3343
+ input[type=range]::-ms-fill-lower {
3344
+ background: #777;
3345
+ }
3346
+
3347
+ input[type=range]::-ms-fill-upper {
3348
+ background: #ddd;
3349
+ }
3350
+
3351
+ input[type=range]::-ms-thumb {
3352
+ border: none;
3353
+ height: 14px;
3354
+ width: 14px;
3355
+ border-radius: 50%;
3356
+ background: #26a69a;
3357
+ transition: box-shadow 0.3s;
3358
+ }
3359
+
3360
+ .keyboard-focused input[type=range]:focus:not(.active)::-ms-thumb {
3361
+ box-shadow: 0 0 0 10px rgba(38, 166, 154, 0.26);
3362
+ }
3363
+
3364
+ /* Shared styles for form groups (Options and RadioButtons components) */
3365
+ /* New grid-based style for horizontal and consistent alignment */
3366
+ .grid-container {
3367
+ display: grid;
3368
+ /* Create columns that are at least 150px wide and fill the available space */
3369
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
3370
+ /* Add space between grid items */
3371
+ gap: 15px;
3372
+ padding-top: 10px;
3373
+ padding-bottom: 20px;
3374
+ }
3375
+
3376
+ /* The paragraph elements don't need margin anymore as gap handles it */
3377
+ .grid-container p {
3378
+ margin: 0;
3379
+ }
3380
+
3381
+ .form-group-label {
3382
+ font-size: 0.8rem;
3383
+ color: #9e9e9e;
3384
+ margin-bottom: 15px;
3385
+ display: block;
3386
+ cursor: text;
3387
+ text-align: initial;
3388
+ }
3389
+
3390
+ select:focus {
3391
+ outline: 1px solid rgb(201.05, 242.65, 238.75);
3392
+ }
3393
+
3394
+ button:focus {
3395
+ outline: none;
3396
+ background-color: rgb(41.8, 182.6, 169.4);
3397
+ }
3398
+
3399
+ label {
3400
+ font-size: 0.8rem;
3401
+ color: #9e9e9e;
3402
+ }