spectre_rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 25df06bfe6c9aa1088b25781817780128c31b68c
4
+ data.tar.gz: fb2f00b2fe7d10371ac1f11dfe00842d7f68e6b8
5
+ SHA512:
6
+ metadata.gz: d8fa6d0f88fee4129a85993b222c9f1cc43f94da10f2b8851bae4e45d100d24dbde1f7ca1774f32139a678bb5ce6519f436dd70bb231fb6dee0181747ee2e1c3
7
+ data.tar.gz: 74ad19f4446fd977d95703679fac8a14b987208c073157e713888b26ba1d89461c38672b2fca31ca28c899a84ac486a2520245a81f398a1f19556623dab64800
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.2
5
+ before_install: gem install bundler -v 1.16.0
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in spectre_rails.gemspec
6
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Leihb
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # SpectreRails
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/spectre_rails`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'spectre_rails'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install spectre_rails
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/spectre_rails.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "spectre_rails"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ require "spectre_rails/version"
2
+
3
+ module SpectreRails
4
+ class Engine < Rails::Engine; end
5
+ end
@@ -0,0 +1,3 @@
1
+ module SpectreRails
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,27 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "spectre_rails/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "spectre_rails"
8
+ spec.version = SpectreRails::VERSION
9
+ spec.authors = ["Leihb"]
10
+ spec.email = ["leihaibo1992@gmail.com"]
11
+
12
+ spec.summary = %q{ a gem for spectre css library}
13
+ spec.description = %q{ a gem for spectre css library}
14
+ spec.homepage = "https://github.com/leihb/spectre_rails"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.16"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "rspec", "~> 3.0"
27
+ end
@@ -0,0 +1,3595 @@
1
+ /*! Spectre.css v0.5.0 | MIT License | github.com/picturepan2/spectre */
2
+ /* Manually forked from Normalize.css */
3
+ /* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
4
+ /** 1. Change the default font family in all browsers (opinionated). 2. Correct the line height in all browsers. 3. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS. */
5
+ /* Document ========================================================================== */
6
+ html {
7
+ font-family: sans-serif; /* 1 */
8
+ -webkit-text-size-adjust: 100%; /* 3 */
9
+ -ms-text-size-adjust: 100%; /* 3 */
10
+ }
11
+
12
+ /* Sections ========================================================================== */
13
+ /** Remove the margin in all browsers (opinionated). */
14
+ body {
15
+ margin: 0;
16
+ }
17
+
18
+ /** Add the correct display in IE 9-. */
19
+ article,
20
+ aside,
21
+ footer,
22
+ header,
23
+ nav,
24
+ section {
25
+ display: block;
26
+ }
27
+
28
+ /** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
29
+ h1 {
30
+ font-size: 2em;
31
+ margin: .67em 0;
32
+ }
33
+
34
+ /* Grouping content ========================================================================== */
35
+ /** Add the correct display in IE 9-. 1. Add the correct display in IE. */
36
+ figcaption,
37
+ figure,
38
+ main {
39
+ /* 1 */ display: block;
40
+ }
41
+
42
+ /** Add the correct margin in IE 8 (removed). */
43
+ /** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
44
+ hr {
45
+ box-sizing: content-box; /* 1 */
46
+ height: 0; /* 1 */
47
+ overflow: visible; /* 2 */
48
+ }
49
+
50
+ /** 1. Correct the inheritance and scaling of font size in all browsers. (removed) 2. Correct the odd `em` font sizing in all browsers. */
51
+ /* Text-level semantics ========================================================================== */
52
+ /** 1. Remove the gray background on active links in IE 10. 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
53
+ a {
54
+ background-color: transparent; /* 1 */
55
+ -webkit-text-decoration-skip: objects; /* 2 */
56
+ }
57
+
58
+ /** Remove the outline on focused links when they are also active or hovered in all browsers (opinionated). */
59
+ a:active,
60
+ a:hover {
61
+ outline-width: 0;
62
+ }
63
+
64
+ /** Modify default styling of address. */
65
+ address {
66
+ font-style: normal;
67
+ }
68
+
69
+ /** 1. Remove the bottom border in Firefox 39-. 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. (removed) */
70
+ /** Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
71
+ b,
72
+ strong {
73
+ font-weight: inherit;
74
+ }
75
+
76
+ /** Add the correct font weight in Chrome, Edge, and Safari. */
77
+ b,
78
+ strong {
79
+ font-weight: bolder;
80
+ }
81
+
82
+ /** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
83
+ code,
84
+ kbd,
85
+ pre,
86
+ samp {
87
+ font-family: "SF Mono", "Segoe UI Mono", "Roboto Mono", Menlo, Courier, monospace; /* 1 (changed) */
88
+ font-size: 1em; /* 2 */
89
+ }
90
+
91
+ /** Add the correct font style in Android 4.3-. */
92
+ dfn {
93
+ font-style: italic;
94
+ }
95
+
96
+ /** Add the correct background and color in IE 9-. (Removed) */
97
+ /** Add the correct font size in all browsers. */
98
+ small {
99
+ font-size: 80%;
100
+ font-weight: 400; /* (added) */
101
+ }
102
+
103
+ /** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
104
+ sub,
105
+ sup {
106
+ font-size: 75%;
107
+ line-height: 0;
108
+ position: relative;
109
+ vertical-align: baseline;
110
+ }
111
+
112
+ sub {
113
+ bottom: -.25em;
114
+ }
115
+
116
+ sup {
117
+ top: -.5em;
118
+ }
119
+
120
+ /* Embedded content ========================================================================== */
121
+ /** Add the correct display in IE 9-. */
122
+ audio,
123
+ video {
124
+ display: inline-block;
125
+ }
126
+
127
+ /** Add the correct display in iOS 4-7. */
128
+ audio:not([controls]) {
129
+ display: none;
130
+ height: 0;
131
+ }
132
+
133
+ /** Remove the border on images inside links in IE 10-. */
134
+ img {
135
+ border-style: none;
136
+ }
137
+
138
+ /** Hide the overflow in IE. */
139
+ svg:not(:root) {
140
+ overflow: hidden;
141
+ }
142
+
143
+ /* Forms ========================================================================== */
144
+ /** 1. Change the font styles in all browsers (opinionated). 2. Remove the margin in Firefox and Safari. */
145
+ button,
146
+ input,
147
+ optgroup,
148
+ select,
149
+ textarea {
150
+ font-family: inherit; /* 1 (changed) */
151
+ font-size: inherit; /* 1 (changed) */
152
+ line-height: inherit; /* 1 (changed) */
153
+ margin: 0; /* 2 */
154
+ }
155
+
156
+ /** Show the overflow in IE. 1. Show the overflow in Edge. */
157
+ button,
158
+ input {
159
+ /* 1 */ overflow: visible;
160
+ }
161
+
162
+ /** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
163
+ button,
164
+ select {
165
+ /* 1 */ text-transform: none;
166
+ }
167
+
168
+ /** 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4. 2. Correct the inability to style clickable types in iOS and Safari. */
169
+ button,
170
+ html [type="button"],
171
+ [type="reset"],
172
+ [type="submit"] {
173
+ -webkit-appearance: button; /* 2 */
174
+ }
175
+
176
+ /** Remove the inner border and padding in Firefox. */
177
+ button::-moz-focus-inner,
178
+ [type="button"]::-moz-focus-inner,
179
+ [type="reset"]::-moz-focus-inner,
180
+ [type="submit"]::-moz-focus-inner {
181
+ border-style: none;
182
+ padding: 0;
183
+ }
184
+
185
+ /** Restore the focus styles unset by the previous rule (removed). */
186
+ /** Change the border, margin, and padding in all browsers (opinionated) (changed). */
187
+ fieldset {
188
+ border: 0;
189
+ margin: 0;
190
+ padding: 0;
191
+ }
192
+
193
+ /** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
194
+ legend {
195
+ box-sizing: border-box; /* 1 */
196
+ color: inherit; /* 2 */
197
+ display: table; /* 1 */
198
+ max-width: 100%; /* 1 */
199
+ padding: 0; /* 3 */
200
+ white-space: normal; /* 1 */
201
+ }
202
+
203
+ /** 1. Add the correct display in IE 9-. 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */
204
+ progress {
205
+ display: inline-block; /* 1 */
206
+ vertical-align: baseline; /* 2 */
207
+ }
208
+
209
+ /** Remove the default vertical scrollbar in IE. */
210
+ textarea {
211
+ overflow: auto;
212
+ }
213
+
214
+ /** 1. Add the correct box sizing in IE 10-. 2. Remove the padding in IE 10-. */
215
+ [type="checkbox"],
216
+ [type="radio"] {
217
+ box-sizing: border-box; /* 1 */
218
+ padding: 0; /* 2 */
219
+ }
220
+
221
+ /** Correct the cursor style of increment and decrement buttons in Chrome. */
222
+ [type="number"]::-webkit-inner-spin-button,
223
+ [type="number"]::-webkit-outer-spin-button {
224
+ height: auto;
225
+ }
226
+
227
+ /** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
228
+ [type="search"] {
229
+ -webkit-appearance: textfield; /* 1 */
230
+ outline-offset: -2px; /* 2 */
231
+ }
232
+
233
+ /** Remove the inner padding and cancel buttons in Chrome and Safari on macOS. */
234
+ [type="search"]::-webkit-search-cancel-button,
235
+ [type="search"]::-webkit-search-decoration {
236
+ -webkit-appearance: none;
237
+ }
238
+
239
+ /** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */
240
+ ::-webkit-file-upload-button {
241
+ -webkit-appearance: button; /* 1 */
242
+ font: inherit; /* 2 */
243
+ }
244
+
245
+ /* Interactive ========================================================================== */
246
+ /* Add the correct display in IE 9-. 1. Add the correct display in Edge, IE, and Firefox. */
247
+ details,
248
+ menu {
249
+ display: block;
250
+ }
251
+
252
+ /* Add the correct display in all browsers. */
253
+ summary {
254
+ display: list-item;
255
+ outline: none;
256
+ }
257
+
258
+ /* Scripting ========================================================================== */
259
+ /** Add the correct display in IE 9-. */
260
+ canvas {
261
+ display: inline-block;
262
+ }
263
+
264
+ /** Add the correct display in IE. */
265
+ template {
266
+ display: none;
267
+ }
268
+
269
+ /* Hidden ========================================================================== */
270
+ /** Add the correct display in IE 10-. */
271
+ [hidden] {
272
+ display: none;
273
+ }
274
+
275
+ *,
276
+ *::before,
277
+ *::after {
278
+ box-sizing: inherit;
279
+ }
280
+
281
+ html {
282
+ box-sizing: border-box;
283
+ font-size: 20px;
284
+ line-height: 1.5;
285
+ -webkit-tap-highlight-color: transparent;
286
+ }
287
+
288
+ body {
289
+ background: #fff;
290
+ color: #50596c;
291
+ font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
292
+ font-size: .8rem;
293
+ overflow-x: hidden;
294
+ text-rendering: optimizeLegibility;
295
+ }
296
+
297
+ a {
298
+ color: #5755d9;
299
+ outline: none;
300
+ text-decoration: none;
301
+ }
302
+
303
+ a:focus {
304
+ box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2);
305
+ }
306
+
307
+ a:focus,
308
+ a:hover,
309
+ a:active,
310
+ a.active {
311
+ color: #4240d4;
312
+ text-decoration: underline;
313
+ }
314
+
315
+ h1,
316
+ h2,
317
+ h3,
318
+ h4,
319
+ h5,
320
+ h6 {
321
+ color: inherit;
322
+ font-weight: 500;
323
+ line-height: 1.2;
324
+ margin-bottom: .5em;
325
+ margin-top: 0;
326
+ }
327
+
328
+ .h1,
329
+ .h2,
330
+ .h3,
331
+ .h4,
332
+ .h5,
333
+ .h6 {
334
+ font-weight: 500;
335
+ }
336
+
337
+ h1,
338
+ .h1 {
339
+ font-size: 2rem;
340
+ }
341
+
342
+ h2,
343
+ .h2 {
344
+ font-size: 1.6rem;
345
+ }
346
+
347
+ h3,
348
+ .h3 {
349
+ font-size: 1.4rem;
350
+ }
351
+
352
+ h4,
353
+ .h4 {
354
+ font-size: 1.2rem;
355
+ }
356
+
357
+ h5,
358
+ .h5 {
359
+ font-size: 1rem;
360
+ }
361
+
362
+ h6,
363
+ .h6 {
364
+ font-size: .8rem;
365
+ }
366
+
367
+ p {
368
+ margin: 0 0 1rem;
369
+ }
370
+
371
+ a,
372
+ ins,
373
+ u {
374
+ -webkit-text-decoration-skip: ink edges;
375
+ text-decoration-skip: ink edges;
376
+ }
377
+
378
+ abbr[title] {
379
+ border-bottom: .05rem dotted;
380
+ cursor: help;
381
+ text-decoration: none;
382
+ }
383
+
384
+ kbd {
385
+ background: #454d5d;
386
+ border-radius: .1rem;
387
+ color: #fff;
388
+ font-size: .7rem;
389
+ line-height: 1.2;
390
+ padding: .1rem .15rem;
391
+ }
392
+
393
+ mark {
394
+ background: #ffe9b3;
395
+ border-radius: .1rem;
396
+ color: #50596c;
397
+ padding: .05rem;
398
+ }
399
+
400
+ blockquote {
401
+ border-left: .1rem solid #e7e9ed;
402
+ margin-left: 0;
403
+ padding: .4rem .8rem;
404
+ }
405
+
406
+ blockquote p:last-child {
407
+ margin-bottom: 0;
408
+ }
409
+
410
+ ul,
411
+ ol {
412
+ margin: .8rem 0 .8rem .8rem;
413
+ padding: 0;
414
+ }
415
+
416
+ ul ul,
417
+ ul ol,
418
+ ol ul,
419
+ ol ol {
420
+ margin: .8rem 0 .8rem .8rem;
421
+ }
422
+
423
+ ul li,
424
+ ol li {
425
+ margin-top: .4rem;
426
+ }
427
+
428
+ ul {
429
+ list-style: disc inside;
430
+ }
431
+
432
+ ul ul {
433
+ list-style-type: circle;
434
+ }
435
+
436
+ ol {
437
+ list-style: decimal inside;
438
+ }
439
+
440
+ ol ol {
441
+ list-style-type: lower-alpha;
442
+ }
443
+
444
+ dl dt {
445
+ font-weight: bold;
446
+ }
447
+
448
+ dl dd {
449
+ margin: .4rem 0 .8rem 0;
450
+ }
451
+
452
+ :lang(zh) {
453
+ font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", sans-serif;
454
+ }
455
+
456
+ :lang(ja) {
457
+ font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, Meiryo, "Helvetica Neue", sans-serif;
458
+ }
459
+
460
+ :lang(ko) {
461
+ font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Malgun Gothic", "Helvetica Neue", sans-serif;
462
+ }
463
+
464
+ :lang(zh) ins,
465
+ :lang(zh) u,
466
+ :lang(ja) ins,
467
+ :lang(ja) u,
468
+ .cjk ins,
469
+ .cjk u {
470
+ border-bottom: .05rem solid;
471
+ text-decoration: none;
472
+ }
473
+
474
+ :lang(zh) del + del,
475
+ :lang(zh) del + s,
476
+ :lang(zh) ins + ins,
477
+ :lang(zh) ins + u,
478
+ :lang(zh) s + del,
479
+ :lang(zh) s + s,
480
+ :lang(zh) u + ins,
481
+ :lang(zh) u + u,
482
+ :lang(ja) del + del,
483
+ :lang(ja) del + s,
484
+ :lang(ja) ins + ins,
485
+ :lang(ja) ins + u,
486
+ :lang(ja) s + del,
487
+ :lang(ja) s + s,
488
+ :lang(ja) u + ins,
489
+ :lang(ja) u + u,
490
+ .cjk del + del,
491
+ .cjk del + s,
492
+ .cjk ins + ins,
493
+ .cjk ins + u,
494
+ .cjk s + del,
495
+ .cjk s + s,
496
+ .cjk u + ins,
497
+ .cjk u + u {
498
+ margin-left: .125em;
499
+ }
500
+
501
+ .table {
502
+ border-collapse: collapse;
503
+ border-spacing: 0;
504
+ text-align: left;
505
+ width: 100%;
506
+ }
507
+
508
+ .table.table-striped tbody tr:nth-of-type(odd) {
509
+ background: #f8f9fa;
510
+ }
511
+
512
+ .table tbody tr.active,
513
+ .table.table-striped tbody tr.active {
514
+ background: #f0f1f4;
515
+ }
516
+
517
+ .table.table-hover tbody tr:hover {
518
+ background: #f0f1f4;
519
+ }
520
+
521
+ .table.table-scroll {
522
+ display: block;
523
+ overflow-x: auto;
524
+ padding-bottom: .75rem;
525
+ white-space: nowrap;
526
+ }
527
+
528
+ .table td,
529
+ .table th {
530
+ border-bottom: .05rem solid #e7e9ed;
531
+ padding: .6rem .4rem;
532
+ }
533
+
534
+ .table th {
535
+ border-bottom-width: .1rem;
536
+ }
537
+
538
+ .btn {
539
+ -webkit-appearance: none;
540
+ -moz-appearance: none;
541
+ appearance: none;
542
+ background: #fff;
543
+ border: .05rem solid #5755d9;
544
+ border-radius: .1rem;
545
+ color: #5755d9;
546
+ cursor: pointer;
547
+ display: inline-block;
548
+ font-size: .8rem;
549
+ height: 1.8rem;
550
+ line-height: 1rem;
551
+ outline: none;
552
+ padding: .35rem .4rem;
553
+ text-align: center;
554
+ text-decoration: none;
555
+ transition: all .2s ease;
556
+ -webkit-user-select: none;
557
+ -moz-user-select: none;
558
+ -ms-user-select: none;
559
+ user-select: none;
560
+ vertical-align: middle;
561
+ white-space: nowrap;
562
+ }
563
+
564
+ .btn:focus {
565
+ box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2);
566
+ }
567
+
568
+ .btn:focus,
569
+ .btn:hover {
570
+ background: #f1f1fc;
571
+ border-color: #4b48d6;
572
+ text-decoration: none;
573
+ }
574
+
575
+ .btn:active,
576
+ .btn.active {
577
+ background: #4b48d6;
578
+ border-color: #3634d2;
579
+ color: #fff;
580
+ text-decoration: none;
581
+ }
582
+
583
+ .btn:active.loading::after,
584
+ .btn.active.loading::after {
585
+ border-bottom-color: #fff;
586
+ border-left-color: #fff;
587
+ }
588
+
589
+ .btn[disabled],
590
+ .btn:disabled,
591
+ .btn.disabled {
592
+ cursor: default;
593
+ opacity: .5;
594
+ pointer-events: none;
595
+ }
596
+
597
+ .btn.btn-primary {
598
+ background: #5755d9;
599
+ border-color: #4b48d6;
600
+ color: #fff;
601
+ }
602
+
603
+ .btn.btn-primary:focus,
604
+ .btn.btn-primary:hover {
605
+ background: #4240d4;
606
+ border-color: #3634d2;
607
+ color: #fff;
608
+ }
609
+
610
+ .btn.btn-primary:active,
611
+ .btn.btn-primary.active {
612
+ background: #3a38d2;
613
+ border-color: #302ecd;
614
+ color: #fff;
615
+ }
616
+
617
+ .btn.btn-primary.loading::after,
618
+ .btn.btn-success.loading::after,
619
+ .btn.btn-error.loading::after {
620
+ border-bottom-color: #fff;
621
+ border-left-color: #fff;
622
+ }
623
+
624
+ .btn.btn-success {
625
+ background: #32b643;
626
+ border-color: #2faa3f;
627
+ color: #fff;
628
+ }
629
+
630
+ .btn.btn-success:focus {
631
+ box-shadow: 0 0 0 .1rem rgba(50, 182, 67, .2);
632
+ }
633
+
634
+ .btn.btn-success:focus,
635
+ .btn.btn-success:hover {
636
+ background: #30ae40;
637
+ border-color: #2da23c;
638
+ color: #fff;
639
+ }
640
+
641
+ .btn.btn-success:active,
642
+ .btn.btn-success.active {
643
+ background: #2a9a39;
644
+ border-color: #278e34;
645
+ color: #fff;
646
+ }
647
+
648
+ .btn.btn-error {
649
+ background: #e85600;
650
+ border-color: #d95000;
651
+ color: #fff;
652
+ }
653
+
654
+ .btn.btn-error:focus {
655
+ box-shadow: 0 0 0 .1rem rgba(232, 86, 0, .2);
656
+ }
657
+
658
+ .btn.btn-error:focus,
659
+ .btn.btn-error:hover {
660
+ background: #de5200;
661
+ border-color: #cf4d00;
662
+ color: #fff;
663
+ }
664
+
665
+ .btn.btn-error:active,
666
+ .btn.btn-error.active {
667
+ background: #c44900;
668
+ border-color: #b54300;
669
+ color: #fff;
670
+ }
671
+
672
+ .btn.btn-link {
673
+ background: transparent;
674
+ border-color: transparent;
675
+ color: #5755d9;
676
+ }
677
+
678
+ .btn.btn-link:focus,
679
+ .btn.btn-link:hover,
680
+ .btn.btn-link:active,
681
+ .btn.btn-link.active {
682
+ color: #4240d4;
683
+ }
684
+
685
+ .btn.btn-sm {
686
+ font-size: .7rem;
687
+ height: 1.4rem;
688
+ padding: .15rem .3rem;
689
+ }
690
+
691
+ .btn.btn-lg {
692
+ font-size: .9rem;
693
+ height: 2rem;
694
+ padding: .45rem .6rem;
695
+ }
696
+
697
+ .btn.btn-block {
698
+ display: block;
699
+ width: 100%;
700
+ }
701
+
702
+ .btn.btn-action {
703
+ padding-left: 0;
704
+ padding-right: 0;
705
+ width: 1.8rem;
706
+ }
707
+
708
+ .btn.btn-action.btn-sm {
709
+ width: 1.4rem;
710
+ }
711
+
712
+ .btn.btn-action.btn-lg {
713
+ width: 2rem;
714
+ }
715
+
716
+ .btn.btn-clear {
717
+ background: transparent;
718
+ border: 0;
719
+ color: currentColor;
720
+ height: .8rem;
721
+ line-height: .8rem;
722
+ margin-left: .2rem;
723
+ margin-right: -2px;
724
+ opacity: 1;
725
+ padding: 0;
726
+ text-decoration: none;
727
+ width: .8rem;
728
+ }
729
+
730
+ .btn.btn-clear:hover {
731
+ opacity: .95;
732
+ }
733
+
734
+ .btn.btn-clear::before {
735
+ content: "\2715";
736
+ }
737
+
738
+ .btn-group {
739
+ display: inline-flex;
740
+ display: -ms-inline-flexbox;
741
+ -ms-flex-wrap: wrap;
742
+ flex-wrap: wrap;
743
+ }
744
+
745
+ .btn-group .btn {
746
+ -ms-flex: 1 0 auto;
747
+ flex: 1 0 auto;
748
+ }
749
+
750
+ .btn-group .btn:first-child:not(:last-child) {
751
+ border-bottom-right-radius: 0;
752
+ border-top-right-radius: 0;
753
+ }
754
+
755
+ .btn-group .btn:not(:first-child):not(:last-child) {
756
+ border-radius: 0;
757
+ margin-left: -.05rem;
758
+ }
759
+
760
+ .btn-group .btn:last-child:not(:first-child) {
761
+ border-bottom-left-radius: 0;
762
+ border-top-left-radius: 0;
763
+ margin-left: -.05rem;
764
+ }
765
+
766
+ .btn-group .btn:focus,
767
+ .btn-group .btn:hover,
768
+ .btn-group .btn:active,
769
+ .btn-group .btn.active {
770
+ z-index: 1;
771
+ }
772
+
773
+ .btn-group.btn-group-block {
774
+ display: flex;
775
+ display: -ms-flexbox;
776
+ }
777
+
778
+ .btn-group.btn-group-block .btn {
779
+ -ms-flex: 1 0 0;
780
+ flex: 1 0 0;
781
+ }
782
+
783
+ .form-group:not(:last-child) {
784
+ margin-bottom: .4rem;
785
+ }
786
+
787
+ fieldset {
788
+ margin-bottom: .8rem;
789
+ }
790
+
791
+ legend {
792
+ font-size: .9rem;
793
+ font-weight: 500;
794
+ margin-bottom: .8rem;
795
+ }
796
+
797
+ .form-label {
798
+ display: block;
799
+ line-height: 1rem;
800
+ padding: .4rem 0;
801
+ }
802
+
803
+ .form-label.label-sm {
804
+ font-size: .7rem;
805
+ padding: .2rem 0;
806
+ }
807
+
808
+ .form-label.label-lg {
809
+ font-size: .9rem;
810
+ padding: .5rem 0;
811
+ }
812
+
813
+ .form-input {
814
+ -webkit-appearance: none;
815
+ -moz-appearance: none;
816
+ appearance: none;
817
+ background: #fff;
818
+ background-image: none;
819
+ border: .05rem solid #caced7;
820
+ border-radius: .1rem;
821
+ color: #50596c;
822
+ display: block;
823
+ font-size: .8rem;
824
+ height: 1.8rem;
825
+ line-height: 1rem;
826
+ max-width: 100%;
827
+ outline: none;
828
+ padding: .35rem .4rem;
829
+ position: relative;
830
+ transition: all .2s ease;
831
+ width: 100%;
832
+ }
833
+
834
+ .form-input:focus {
835
+ border-color: #5755d9;
836
+ box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2);
837
+ }
838
+
839
+ .form-input::-webkit-input-placeholder {
840
+ color: #acb3c2;
841
+ }
842
+
843
+ .form-input:-ms-input-placeholder {
844
+ color: #acb3c2;
845
+ }
846
+
847
+ .form-input::placeholder {
848
+ color: #acb3c2;
849
+ }
850
+
851
+ .form-input.input-sm {
852
+ font-size: .7rem;
853
+ height: 1.4rem;
854
+ padding: .15rem .3rem;
855
+ }
856
+
857
+ .form-input.input-lg {
858
+ font-size: .9rem;
859
+ height: 2rem;
860
+ padding: .45rem .6rem;
861
+ }
862
+
863
+ .form-input.input-inline {
864
+ display: inline-block;
865
+ vertical-align: middle;
866
+ width: auto;
867
+ }
868
+
869
+ .form-input[type="file"] {
870
+ height: auto;
871
+ }
872
+
873
+ textarea.form-input {
874
+ height: auto;
875
+ }
876
+
877
+ .form-input-hint {
878
+ color: #acb3c2;
879
+ font-size: .7rem;
880
+ margin-top: .2rem;
881
+ }
882
+
883
+ .has-success .form-input-hint,
884
+ .is-success + .form-input-hint {
885
+ color: #32b643;
886
+ }
887
+
888
+ .has-error .form-input-hint,
889
+ .is-error + .form-input-hint {
890
+ color: #e85600;
891
+ }
892
+
893
+ .form-select {
894
+ -webkit-appearance: none;
895
+ -moz-appearance: none;
896
+ appearance: none;
897
+ border: .05rem solid #caced7;
898
+ border-radius: .1rem;
899
+ color: inherit;
900
+ font-size: .8rem;
901
+ height: 1.8rem;
902
+ line-height: 1rem;
903
+ outline: none;
904
+ padding: .35rem .4rem;
905
+ vertical-align: middle;
906
+ width: 100%;
907
+ }
908
+
909
+ .form-select[size],
910
+ .form-select[multiple] {
911
+ height: auto;
912
+ }
913
+
914
+ .form-select[size] option,
915
+ .form-select[multiple] option {
916
+ padding: .1rem .2rem;
917
+ }
918
+
919
+ .form-select:not([multiple]):not([size]) {
920
+ background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23667189'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E") no-repeat right .35rem center/.4rem .5rem;
921
+ padding-right: 1.2rem;
922
+ }
923
+
924
+ .form-select:focus {
925
+ border-color: #5755d9;
926
+ box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2);
927
+ }
928
+
929
+ .form-select::-ms-expand {
930
+ display: none;
931
+ }
932
+
933
+ .form-select.select-sm {
934
+ font-size: .7rem;
935
+ height: 1.4rem;
936
+ padding: .15rem 1.1rem .15rem .3rem;
937
+ }
938
+
939
+ .form-select.select-lg {
940
+ font-size: .9rem;
941
+ height: 2rem;
942
+ padding: .45rem 1.4rem .45rem .6rem;
943
+ }
944
+
945
+ .has-icon-left,
946
+ .has-icon-right {
947
+ position: relative;
948
+ }
949
+
950
+ .has-icon-left .form-icon,
951
+ .has-icon-right .form-icon {
952
+ height: .8rem;
953
+ margin: 0 .35rem;
954
+ position: absolute;
955
+ top: 50%;
956
+ transform: translateY(-50%);
957
+ width: .8rem;
958
+ }
959
+
960
+ .has-icon-left .form-icon {
961
+ left: .05rem;
962
+ }
963
+
964
+ .has-icon-left .form-input {
965
+ padding-left: 1.5rem;
966
+ }
967
+
968
+ .has-icon-right .form-icon {
969
+ right: .05rem;
970
+ }
971
+
972
+ .has-icon-right .form-input {
973
+ padding-right: 1.5rem;
974
+ }
975
+
976
+ .form-checkbox,
977
+ .form-radio,
978
+ .form-switch {
979
+ display: inline-block;
980
+ line-height: 1rem;
981
+ margin: .2rem 0;
982
+ min-height: 1.2rem;
983
+ padding: .2rem .4rem .2rem 1.2rem;
984
+ position: relative;
985
+ }
986
+
987
+ .form-checkbox input,
988
+ .form-radio input,
989
+ .form-switch input {
990
+ clip: rect(0, 0, 0, 0);
991
+ height: 1px;
992
+ margin: -1px;
993
+ overflow: hidden;
994
+ position: absolute;
995
+ width: 1px;
996
+ }
997
+
998
+ .form-checkbox input:focus + .form-icon,
999
+ .form-radio input:focus + .form-icon,
1000
+ .form-switch input:focus + .form-icon {
1001
+ border-color: #5755d9;
1002
+ box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2);
1003
+ }
1004
+
1005
+ .form-checkbox input:checked + .form-icon,
1006
+ .form-radio input:checked + .form-icon,
1007
+ .form-switch input:checked + .form-icon {
1008
+ background: #5755d9;
1009
+ border-color: #5755d9;
1010
+ }
1011
+
1012
+ .form-checkbox .form-icon,
1013
+ .form-radio .form-icon,
1014
+ .form-switch .form-icon {
1015
+ border: .05rem solid #caced7;
1016
+ cursor: pointer;
1017
+ display: inline-block;
1018
+ position: absolute;
1019
+ transition: all .2s ease;
1020
+ }
1021
+
1022
+ .form-checkbox.input-sm,
1023
+ .form-radio.input-sm,
1024
+ .form-switch.input-sm {
1025
+ font-size: .7rem;
1026
+ margin: 0;
1027
+ }
1028
+
1029
+ .form-checkbox.input-lg,
1030
+ .form-radio.input-lg,
1031
+ .form-switch.input-lg {
1032
+ font-size: .9rem;
1033
+ margin: .3rem 0;
1034
+ }
1035
+
1036
+ .form-checkbox .form-icon,
1037
+ .form-radio .form-icon {
1038
+ background: #fff;
1039
+ height: .8rem;
1040
+ left: 0;
1041
+ top: .3rem;
1042
+ width: .8rem;
1043
+ }
1044
+
1045
+ .form-checkbox input:active + .form-icon,
1046
+ .form-radio input:active + .form-icon {
1047
+ background: #f0f1f4;
1048
+ }
1049
+
1050
+ .form-checkbox .form-icon {
1051
+ border-radius: .1rem;
1052
+ }
1053
+
1054
+ .form-checkbox input:checked + .form-icon::before {
1055
+ background-clip: padding-box;
1056
+ border: .1rem solid #fff;
1057
+ border-left-width: 0;
1058
+ border-top-width: 0;
1059
+ content: "";
1060
+ height: 12px;
1061
+ left: 50%;
1062
+ margin-left: -4px;
1063
+ margin-top: -8px;
1064
+ position: absolute;
1065
+ top: 50%;
1066
+ transform: rotate(45deg);
1067
+ width: 8px;
1068
+ }
1069
+
1070
+ .form-checkbox input:indeterminate + .form-icon {
1071
+ background: #5755d9;
1072
+ border-color: #5755d9;
1073
+ }
1074
+
1075
+ .form-checkbox input:indeterminate + .form-icon::before {
1076
+ background: #fff;
1077
+ content: "";
1078
+ height: 2px;
1079
+ left: 50%;
1080
+ margin-left: -5px;
1081
+ margin-top: -1px;
1082
+ position: absolute;
1083
+ top: 50%;
1084
+ width: 10px;
1085
+ }
1086
+
1087
+ .form-radio .form-icon {
1088
+ border-radius: 50%;
1089
+ }
1090
+
1091
+ .form-radio input:checked + .form-icon::before {
1092
+ background: #fff;
1093
+ border-radius: 50%;
1094
+ content: "";
1095
+ height: 4px;
1096
+ left: 50%;
1097
+ position: absolute;
1098
+ top: 50%;
1099
+ transform: translate(-50%, -50%);
1100
+ width: 4px;
1101
+ }
1102
+
1103
+ .form-switch {
1104
+ padding-left: 2rem;
1105
+ }
1106
+
1107
+ .form-switch .form-icon {
1108
+ background: #e7e9ed;
1109
+ background-clip: padding-box;
1110
+ border-radius: .45rem;
1111
+ height: .9rem;
1112
+ left: 0;
1113
+ top: .25rem;
1114
+ width: 1.6rem;
1115
+ }
1116
+
1117
+ .form-switch .form-icon::before {
1118
+ background: #fff;
1119
+ border-radius: 50%;
1120
+ content: "";
1121
+ display: block;
1122
+ height: .8rem;
1123
+ left: 0;
1124
+ position: absolute;
1125
+ top: 0;
1126
+ transition: all .2s ease;
1127
+ width: .8rem;
1128
+ }
1129
+
1130
+ .form-switch input:checked + .form-icon::before {
1131
+ left: 14px;
1132
+ }
1133
+
1134
+ .form-switch input:active + .form-icon::before {
1135
+ background: #f8f9fa;
1136
+ }
1137
+
1138
+ .input-group {
1139
+ display: flex;
1140
+ display: -ms-flexbox;
1141
+ }
1142
+
1143
+ .input-group .input-group-addon {
1144
+ background: #f8f9fa;
1145
+ border: .05rem solid #caced7;
1146
+ border-radius: .1rem;
1147
+ line-height: 1rem;
1148
+ padding: .35rem .4rem;
1149
+ white-space: nowrap;
1150
+ }
1151
+
1152
+ .input-group .input-group-addon.addon-sm {
1153
+ font-size: .7rem;
1154
+ padding: .15rem .3rem;
1155
+ }
1156
+
1157
+ .input-group .input-group-addon.addon-lg {
1158
+ font-size: .9rem;
1159
+ padding: .45rem .6rem;
1160
+ }
1161
+
1162
+ .input-group .form-input,
1163
+ .input-group .form-select {
1164
+ -ms-flex: 1 1 auto;
1165
+ flex: 1 1 auto;
1166
+ }
1167
+
1168
+ .input-group .input-group-btn {
1169
+ z-index: 1;
1170
+ }
1171
+
1172
+ .input-group .form-input:first-child:not(:last-child),
1173
+ .input-group .form-select:first-child:not(:last-child),
1174
+ .input-group .input-group-addon:first-child:not(:last-child),
1175
+ .input-group .input-group-btn:first-child:not(:last-child) {
1176
+ border-bottom-right-radius: 0;
1177
+ border-top-right-radius: 0;
1178
+ }
1179
+
1180
+ .input-group .form-input:not(:first-child):not(:last-child),
1181
+ .input-group .form-select:not(:first-child):not(:last-child),
1182
+ .input-group .input-group-addon:not(:first-child):not(:last-child),
1183
+ .input-group .input-group-btn:not(:first-child):not(:last-child) {
1184
+ border-radius: 0;
1185
+ margin-left: -.05rem;
1186
+ }
1187
+
1188
+ .input-group .form-input:last-child:not(:first-child),
1189
+ .input-group .form-select:last-child:not(:first-child),
1190
+ .input-group .input-group-addon:last-child:not(:first-child),
1191
+ .input-group .input-group-btn:last-child:not(:first-child) {
1192
+ border-bottom-left-radius: 0;
1193
+ border-top-left-radius: 0;
1194
+ margin-left: -.05rem;
1195
+ }
1196
+
1197
+ .input-group .form-input:focus,
1198
+ .input-group .form-select:focus,
1199
+ .input-group .input-group-addon:focus,
1200
+ .input-group .input-group-btn:focus {
1201
+ z-index: 2;
1202
+ }
1203
+
1204
+ .input-group .form-select {
1205
+ width: auto;
1206
+ }
1207
+
1208
+ .input-group.input-inline {
1209
+ display: inline-flex;
1210
+ display: -ms-inline-flexbox;
1211
+ }
1212
+
1213
+ .has-success .form-input,
1214
+ .form-input.is-success,
1215
+ .has-success .form-select,
1216
+ .form-select.is-success {
1217
+ border-color: #32b643;
1218
+ }
1219
+
1220
+ .has-success .form-input:focus,
1221
+ .form-input.is-success:focus,
1222
+ .has-success .form-select:focus,
1223
+ .form-select.is-success:focus {
1224
+ box-shadow: 0 0 0 .1rem rgba(50, 182, 67, .2);
1225
+ }
1226
+
1227
+ .has-error .form-input,
1228
+ .form-input.is-error,
1229
+ .has-error .form-select,
1230
+ .form-select.is-error {
1231
+ border-color: #e85600;
1232
+ }
1233
+
1234
+ .has-error .form-input:focus,
1235
+ .form-input.is-error:focus,
1236
+ .has-error .form-select:focus,
1237
+ .form-select.is-error:focus {
1238
+ box-shadow: 0 0 0 .1rem rgba(232, 86, 0, .2);
1239
+ }
1240
+
1241
+ .has-error .form-checkbox .form-icon,
1242
+ .form-checkbox.is-error .form-icon,
1243
+ .has-error .form-radio .form-icon,
1244
+ .form-radio.is-error .form-icon,
1245
+ .has-error .form-switch .form-icon,
1246
+ .form-switch.is-error .form-icon {
1247
+ border-color: #e85600;
1248
+ }
1249
+
1250
+ .has-error .form-checkbox input:checked + .form-icon,
1251
+ .form-checkbox.is-error input:checked + .form-icon,
1252
+ .has-error .form-radio input:checked + .form-icon,
1253
+ .form-radio.is-error input:checked + .form-icon,
1254
+ .has-error .form-switch input:checked + .form-icon,
1255
+ .form-switch.is-error input:checked + .form-icon {
1256
+ background: #e85600;
1257
+ border-color: #e85600;
1258
+ }
1259
+
1260
+ .has-error .form-checkbox input:focus + .form-icon,
1261
+ .form-checkbox.is-error input:focus + .form-icon,
1262
+ .has-error .form-radio input:focus + .form-icon,
1263
+ .form-radio.is-error input:focus + .form-icon,
1264
+ .has-error .form-switch input:focus + .form-icon,
1265
+ .form-switch.is-error input:focus + .form-icon {
1266
+ border-color: #e85600;
1267
+ box-shadow: 0 0 0 .1rem rgba(232, 86, 0, .2);
1268
+ }
1269
+
1270
+ .form-input:not(:placeholder-shown):invalid {
1271
+ border-color: #e85600;
1272
+ }
1273
+
1274
+ .form-input:not(:placeholder-shown):invalid:focus {
1275
+ box-shadow: 0 0 0 .1rem rgba(232, 86, 0, .2);
1276
+ }
1277
+
1278
+ .form-input:not(:placeholder-shown):invalid + .form-input-hint {
1279
+ color: #e85600;
1280
+ }
1281
+
1282
+ .form-input:disabled,
1283
+ .form-input.disabled,
1284
+ .form-select:disabled,
1285
+ .form-select.disabled {
1286
+ background-color: #f0f1f4;
1287
+ cursor: not-allowed;
1288
+ opacity: .5;
1289
+ }
1290
+
1291
+ .form-input[readonly] {
1292
+ background-color: #f8f9fa;
1293
+ }
1294
+
1295
+ input:disabled + .form-icon,
1296
+ input.disabled + .form-icon {
1297
+ background: #f0f1f4;
1298
+ cursor: not-allowed;
1299
+ opacity: .5;
1300
+ }
1301
+
1302
+ .form-switch input:disabled + .form-icon::before,
1303
+ .form-switch input.disabled + .form-icon::before {
1304
+ background: #fff;
1305
+ }
1306
+
1307
+ .form-horizontal {
1308
+ padding: .4rem 0;
1309
+ }
1310
+
1311
+ .form-horizontal .form-group {
1312
+ display: flex;
1313
+ display: -ms-flexbox;
1314
+ }
1315
+
1316
+ .label {
1317
+ background: #f0f1f4;
1318
+ border-radius: .1rem;
1319
+ color: #5b657a;
1320
+ display: inline-block;
1321
+ line-height: 1.2;
1322
+ padding: .1rem .15rem;
1323
+ }
1324
+
1325
+ .label.label-rounded {
1326
+ border-radius: 5rem;
1327
+ padding-left: .4rem;
1328
+ padding-right: .4rem;
1329
+ }
1330
+
1331
+ .label.label-primary {
1332
+ background: #5755d9;
1333
+ color: #fff;
1334
+ }
1335
+
1336
+ .label.label-secondary {
1337
+ background: #f1f1fc;
1338
+ color: #5755d9;
1339
+ }
1340
+
1341
+ .label.label-success {
1342
+ background: #32b643;
1343
+ color: #fff;
1344
+ }
1345
+
1346
+ .label.label-warning {
1347
+ background: #ffb700;
1348
+ color: #fff;
1349
+ }
1350
+
1351
+ .label.label-error {
1352
+ background: #e85600;
1353
+ color: #fff;
1354
+ }
1355
+
1356
+ code {
1357
+ background: #fdf4f4;
1358
+ border-radius: .1rem;
1359
+ color: #e06870;
1360
+ font-size: 85%;
1361
+ line-height: 1.2;
1362
+ padding: .1rem .15rem;
1363
+ }
1364
+
1365
+ .code {
1366
+ border-radius: .1rem;
1367
+ color: #50596c;
1368
+ position: relative;
1369
+ }
1370
+
1371
+ .code::before {
1372
+ color: #acb3c2;
1373
+ content: attr(data-lang);
1374
+ font-size: .7rem;
1375
+ position: absolute;
1376
+ right: .4rem;
1377
+ top: .1rem;
1378
+ }
1379
+
1380
+ .code code {
1381
+ background: #f8f9fa;
1382
+ color: inherit;
1383
+ display: block;
1384
+ line-height: 1.5;
1385
+ overflow-x: auto;
1386
+ padding: 1rem;
1387
+ width: 100%;
1388
+ }
1389
+
1390
+ .img-responsive {
1391
+ display: block;
1392
+ height: auto;
1393
+ max-width: 100%;
1394
+ }
1395
+
1396
+ .img-fit-cover {
1397
+ object-fit: cover;
1398
+ }
1399
+
1400
+ .img-fit-contain {
1401
+ object-fit: contain;
1402
+ }
1403
+
1404
+ .video-responsive {
1405
+ display: block;
1406
+ overflow: hidden;
1407
+ padding: 0;
1408
+ position: relative;
1409
+ width: 100%;
1410
+ }
1411
+
1412
+ .video-responsive::before {
1413
+ content: "";
1414
+ display: block;
1415
+ padding-bottom: 56.25%;
1416
+ }
1417
+
1418
+ .video-responsive iframe,
1419
+ .video-responsive object,
1420
+ .video-responsive embed {
1421
+ border: 0;
1422
+ bottom: 0;
1423
+ height: 100%;
1424
+ left: 0;
1425
+ position: absolute;
1426
+ right: 0;
1427
+ top: 0;
1428
+ width: 100%;
1429
+ }
1430
+
1431
+ video.video-responsive {
1432
+ height: auto;
1433
+ max-width: 100%;
1434
+ }
1435
+
1436
+ video.video-responsive::before {
1437
+ content: none;
1438
+ }
1439
+
1440
+ .video-responsive-4-3::before {
1441
+ padding-bottom: 75%;
1442
+ }
1443
+
1444
+ .video-responsive-1-1::before {
1445
+ padding-bottom: 100%;
1446
+ }
1447
+
1448
+ .figure {
1449
+ margin: 0 0 .4rem 0;
1450
+ }
1451
+
1452
+ .figure .figure-caption {
1453
+ color: #667189;
1454
+ margin-top: .4rem;
1455
+ }
1456
+
1457
+ .container {
1458
+ margin-left: auto;
1459
+ margin-right: auto;
1460
+ padding-left: .4rem;
1461
+ padding-right: .4rem;
1462
+ width: 100%;
1463
+ }
1464
+
1465
+ .container.grid-xl {
1466
+ max-width: 1296px;
1467
+ }
1468
+
1469
+ .container.grid-lg {
1470
+ max-width: 976px;
1471
+ }
1472
+
1473
+ .container.grid-md {
1474
+ max-width: 856px;
1475
+ }
1476
+
1477
+ .container.grid-sm {
1478
+ max-width: 616px;
1479
+ }
1480
+
1481
+ .container.grid-xs {
1482
+ max-width: 496px;
1483
+ }
1484
+
1485
+ .show-xs,
1486
+ .show-sm,
1487
+ .show-md,
1488
+ .show-lg,
1489
+ .show-xl {
1490
+ display: none !important;
1491
+ }
1492
+
1493
+ .columns {
1494
+ display: flex;
1495
+ display: -ms-flexbox;
1496
+ -ms-flex-wrap: wrap;
1497
+ flex-wrap: wrap;
1498
+ margin-left: -.4rem;
1499
+ margin-right: -.4rem;
1500
+ }
1501
+
1502
+ .columns.col-gapless {
1503
+ margin-left: 0;
1504
+ margin-right: 0;
1505
+ }
1506
+
1507
+ .columns.col-gapless > .column {
1508
+ padding-left: 0;
1509
+ padding-right: 0;
1510
+ }
1511
+
1512
+ .columns.col-oneline {
1513
+ -ms-flex-wrap: nowrap;
1514
+ flex-wrap: nowrap;
1515
+ overflow-x: auto;
1516
+ }
1517
+
1518
+ .column {
1519
+ -ms-flex: 1;
1520
+ flex: 1;
1521
+ max-width: 100%;
1522
+ padding-left: .4rem;
1523
+ padding-right: .4rem;
1524
+ }
1525
+
1526
+ .column.col-12,
1527
+ .column.col-11,
1528
+ .column.col-10,
1529
+ .column.col-9,
1530
+ .column.col-8,
1531
+ .column.col-7,
1532
+ .column.col-6,
1533
+ .column.col-5,
1534
+ .column.col-4,
1535
+ .column.col-3,
1536
+ .column.col-2,
1537
+ .column.col-1 {
1538
+ -ms-flex: none;
1539
+ flex: none;
1540
+ }
1541
+
1542
+ .col-12 {
1543
+ width: 100%;
1544
+ }
1545
+
1546
+ .col-11 {
1547
+ width: 91.66666667%;
1548
+ }
1549
+
1550
+ .col-10 {
1551
+ width: 83.33333333%;
1552
+ }
1553
+
1554
+ .col-9 {
1555
+ width: 75%;
1556
+ }
1557
+
1558
+ .col-8 {
1559
+ width: 66.66666667%;
1560
+ }
1561
+
1562
+ .col-7 {
1563
+ width: 58.33333333%;
1564
+ }
1565
+
1566
+ .col-6 {
1567
+ width: 50%;
1568
+ }
1569
+
1570
+ .col-5 {
1571
+ width: 41.66666667%;
1572
+ }
1573
+
1574
+ .col-4 {
1575
+ width: 33.33333333%;
1576
+ }
1577
+
1578
+ .col-3 {
1579
+ width: 25%;
1580
+ }
1581
+
1582
+ .col-2 {
1583
+ width: 16.66666667%;
1584
+ }
1585
+
1586
+ .col-1 {
1587
+ width: 8.33333333%;
1588
+ }
1589
+
1590
+ .col-auto {
1591
+ -ms-flex: 0 0 auto;
1592
+ flex: 0 0 auto;
1593
+ max-width: none;
1594
+ width: auto;
1595
+ }
1596
+
1597
+ .col-mx-auto {
1598
+ margin-left: auto;
1599
+ margin-right: auto;
1600
+ }
1601
+
1602
+ .col-ml-auto {
1603
+ margin-left: auto;
1604
+ }
1605
+
1606
+ .col-mr-auto {
1607
+ margin-right: auto;
1608
+ }
1609
+
1610
+ @media (max-width: 1280px) {
1611
+ .col-xl-12,
1612
+ .col-xl-11,
1613
+ .col-xl-10,
1614
+ .col-xl-9,
1615
+ .col-xl-8,
1616
+ .col-xl-7,
1617
+ .col-xl-6,
1618
+ .col-xl-5,
1619
+ .col-xl-4,
1620
+ .col-xl-3,
1621
+ .col-xl-2,
1622
+ .col-xl-1 {
1623
+ -ms-flex: none;
1624
+ flex: none;
1625
+ }
1626
+ .col-xl-12 {
1627
+ width: 100%;
1628
+ }
1629
+ .col-xl-11 {
1630
+ width: 91.66666667%;
1631
+ }
1632
+ .col-xl-10 {
1633
+ width: 83.33333333%;
1634
+ }
1635
+ .col-xl-9 {
1636
+ width: 75%;
1637
+ }
1638
+ .col-xl-8 {
1639
+ width: 66.66666667%;
1640
+ }
1641
+ .col-xl-7 {
1642
+ width: 58.33333333%;
1643
+ }
1644
+ .col-xl-6 {
1645
+ width: 50%;
1646
+ }
1647
+ .col-xl-5 {
1648
+ width: 41.66666667%;
1649
+ }
1650
+ .col-xl-4 {
1651
+ width: 33.33333333%;
1652
+ }
1653
+ .col-xl-3 {
1654
+ width: 25%;
1655
+ }
1656
+ .col-xl-2 {
1657
+ width: 16.66666667%;
1658
+ }
1659
+ .col-xl-1 {
1660
+ width: 8.33333333%;
1661
+ }
1662
+ .hide-xl {
1663
+ display: none !important;
1664
+ }
1665
+ .show-xl {
1666
+ display: block !important;
1667
+ }
1668
+ }
1669
+
1670
+ @media (max-width: 960px) {
1671
+ .col-lg-12,
1672
+ .col-lg-11,
1673
+ .col-lg-10,
1674
+ .col-lg-9,
1675
+ .col-lg-8,
1676
+ .col-lg-7,
1677
+ .col-lg-6,
1678
+ .col-lg-5,
1679
+ .col-lg-4,
1680
+ .col-lg-3,
1681
+ .col-lg-2,
1682
+ .col-lg-1 {
1683
+ -ms-flex: none;
1684
+ flex: none;
1685
+ }
1686
+ .col-lg-12 {
1687
+ width: 100%;
1688
+ }
1689
+ .col-lg-11 {
1690
+ width: 91.66666667%;
1691
+ }
1692
+ .col-lg-10 {
1693
+ width: 83.33333333%;
1694
+ }
1695
+ .col-lg-9 {
1696
+ width: 75%;
1697
+ }
1698
+ .col-lg-8 {
1699
+ width: 66.66666667%;
1700
+ }
1701
+ .col-lg-7 {
1702
+ width: 58.33333333%;
1703
+ }
1704
+ .col-lg-6 {
1705
+ width: 50%;
1706
+ }
1707
+ .col-lg-5 {
1708
+ width: 41.66666667%;
1709
+ }
1710
+ .col-lg-4 {
1711
+ width: 33.33333333%;
1712
+ }
1713
+ .col-lg-3 {
1714
+ width: 25%;
1715
+ }
1716
+ .col-lg-2 {
1717
+ width: 16.66666667%;
1718
+ }
1719
+ .col-lg-1 {
1720
+ width: 8.33333333%;
1721
+ }
1722
+ .hide-lg {
1723
+ display: none !important;
1724
+ }
1725
+ .show-lg {
1726
+ display: block !important;
1727
+ }
1728
+ }
1729
+
1730
+ @media (max-width: 840px) {
1731
+ .col-md-12,
1732
+ .col-md-11,
1733
+ .col-md-10,
1734
+ .col-md-9,
1735
+ .col-md-8,
1736
+ .col-md-7,
1737
+ .col-md-6,
1738
+ .col-md-5,
1739
+ .col-md-4,
1740
+ .col-md-3,
1741
+ .col-md-2,
1742
+ .col-md-1 {
1743
+ -ms-flex: none;
1744
+ flex: none;
1745
+ }
1746
+ .col-md-12 {
1747
+ width: 100%;
1748
+ }
1749
+ .col-md-11 {
1750
+ width: 91.66666667%;
1751
+ }
1752
+ .col-md-10 {
1753
+ width: 83.33333333%;
1754
+ }
1755
+ .col-md-9 {
1756
+ width: 75%;
1757
+ }
1758
+ .col-md-8 {
1759
+ width: 66.66666667%;
1760
+ }
1761
+ .col-md-7 {
1762
+ width: 58.33333333%;
1763
+ }
1764
+ .col-md-6 {
1765
+ width: 50%;
1766
+ }
1767
+ .col-md-5 {
1768
+ width: 41.66666667%;
1769
+ }
1770
+ .col-md-4 {
1771
+ width: 33.33333333%;
1772
+ }
1773
+ .col-md-3 {
1774
+ width: 25%;
1775
+ }
1776
+ .col-md-2 {
1777
+ width: 16.66666667%;
1778
+ }
1779
+ .col-md-1 {
1780
+ width: 8.33333333%;
1781
+ }
1782
+ .hide-md {
1783
+ display: none !important;
1784
+ }
1785
+ .show-md {
1786
+ display: block !important;
1787
+ }
1788
+ }
1789
+
1790
+ @media (max-width: 600px) {
1791
+ .col-sm-12,
1792
+ .col-sm-11,
1793
+ .col-sm-10,
1794
+ .col-sm-9,
1795
+ .col-sm-8,
1796
+ .col-sm-7,
1797
+ .col-sm-6,
1798
+ .col-sm-5,
1799
+ .col-sm-4,
1800
+ .col-sm-3,
1801
+ .col-sm-2,
1802
+ .col-sm-1 {
1803
+ -ms-flex: none;
1804
+ flex: none;
1805
+ }
1806
+ .col-sm-12 {
1807
+ width: 100%;
1808
+ }
1809
+ .col-sm-11 {
1810
+ width: 91.66666667%;
1811
+ }
1812
+ .col-sm-10 {
1813
+ width: 83.33333333%;
1814
+ }
1815
+ .col-sm-9 {
1816
+ width: 75%;
1817
+ }
1818
+ .col-sm-8 {
1819
+ width: 66.66666667%;
1820
+ }
1821
+ .col-sm-7 {
1822
+ width: 58.33333333%;
1823
+ }
1824
+ .col-sm-6 {
1825
+ width: 50%;
1826
+ }
1827
+ .col-sm-5 {
1828
+ width: 41.66666667%;
1829
+ }
1830
+ .col-sm-4 {
1831
+ width: 33.33333333%;
1832
+ }
1833
+ .col-sm-3 {
1834
+ width: 25%;
1835
+ }
1836
+ .col-sm-2 {
1837
+ width: 16.66666667%;
1838
+ }
1839
+ .col-sm-1 {
1840
+ width: 8.33333333%;
1841
+ }
1842
+ .hide-sm {
1843
+ display: none !important;
1844
+ }
1845
+ .show-sm {
1846
+ display: block !important;
1847
+ }
1848
+ }
1849
+
1850
+ @media (max-width: 480px) {
1851
+ .col-xs-12,
1852
+ .col-xs-11,
1853
+ .col-xs-10,
1854
+ .col-xs-9,
1855
+ .col-xs-8,
1856
+ .col-xs-7,
1857
+ .col-xs-6,
1858
+ .col-xs-5,
1859
+ .col-xs-4,
1860
+ .col-xs-3,
1861
+ .col-xs-2,
1862
+ .col-xs-1 {
1863
+ -ms-flex: none;
1864
+ flex: none;
1865
+ }
1866
+ .col-xs-12 {
1867
+ width: 100%;
1868
+ }
1869
+ .col-xs-11 {
1870
+ width: 91.66666667%;
1871
+ }
1872
+ .col-xs-10 {
1873
+ width: 83.33333333%;
1874
+ }
1875
+ .col-xs-9 {
1876
+ width: 75%;
1877
+ }
1878
+ .col-xs-8 {
1879
+ width: 66.66666667%;
1880
+ }
1881
+ .col-xs-7 {
1882
+ width: 58.33333333%;
1883
+ }
1884
+ .col-xs-6 {
1885
+ width: 50%;
1886
+ }
1887
+ .col-xs-5 {
1888
+ width: 41.66666667%;
1889
+ }
1890
+ .col-xs-4 {
1891
+ width: 33.33333333%;
1892
+ }
1893
+ .col-xs-3 {
1894
+ width: 25%;
1895
+ }
1896
+ .col-xs-2 {
1897
+ width: 16.66666667%;
1898
+ }
1899
+ .col-xs-1 {
1900
+ width: 8.33333333%;
1901
+ }
1902
+ .hide-xs {
1903
+ display: none !important;
1904
+ }
1905
+ .show-xs {
1906
+ display: block !important;
1907
+ }
1908
+ }
1909
+
1910
+ .navbar {
1911
+ align-items: stretch;
1912
+ display: flex;
1913
+ display: -ms-flexbox;
1914
+ -ms-flex-align: stretch;
1915
+ -ms-flex-pack: justify;
1916
+ -ms-flex-wrap: wrap;
1917
+ flex-wrap: wrap;
1918
+ justify-content: space-between;
1919
+ }
1920
+
1921
+ .navbar .navbar-section {
1922
+ align-items: center;
1923
+ display: flex;
1924
+ display: -ms-flexbox;
1925
+ -ms-flex: 1 0 0;
1926
+ flex: 1 0 0;
1927
+ -ms-flex-align: center;
1928
+ }
1929
+
1930
+ .navbar .navbar-section:not(:first-child):last-child {
1931
+ -ms-flex-pack: end;
1932
+ justify-content: flex-end;
1933
+ }
1934
+
1935
+ .navbar .navbar-center {
1936
+ align-items: center;
1937
+ display: flex;
1938
+ display: -ms-flexbox;
1939
+ -ms-flex: 0 0 auto;
1940
+ flex: 0 0 auto;
1941
+ -ms-flex-align: center;
1942
+ }
1943
+
1944
+ .navbar .navbar-brand {
1945
+ font-size: .9rem;
1946
+ font-weight: 500;
1947
+ text-decoration: none;
1948
+ }
1949
+
1950
+ .accordion input:checked ~ .accordion-header .icon,
1951
+ .accordion[open] .accordion-header .icon {
1952
+ transform: rotate(90deg);
1953
+ }
1954
+
1955
+ .accordion input:checked ~ .accordion-body,
1956
+ .accordion[open] .accordion-body {
1957
+ max-height: 50rem;
1958
+ }
1959
+
1960
+ .accordion .accordion-header {
1961
+ display: block;
1962
+ padding: .2rem .4rem;
1963
+ }
1964
+
1965
+ .accordion .accordion-header .icon {
1966
+ transition: all .2s ease;
1967
+ }
1968
+
1969
+ .accordion .accordion-body {
1970
+ margin-bottom: .4rem;
1971
+ max-height: 0;
1972
+ overflow: hidden;
1973
+ transition: max-height .2s ease;
1974
+ }
1975
+
1976
+ summary.accordion-header::-webkit-details-marker {
1977
+ display: none;
1978
+ }
1979
+
1980
+ .form-autocomplete {
1981
+ position: relative;
1982
+ }
1983
+
1984
+ .form-autocomplete .form-autocomplete-input {
1985
+ align-content: flex-start;
1986
+ display: flex;
1987
+ display: -ms-flexbox;
1988
+ -ms-flex-line-pack: start;
1989
+ -ms-flex-wrap: wrap;
1990
+ flex-wrap: wrap;
1991
+ height: auto;
1992
+ min-height: 1.6rem;
1993
+ padding: .1rem;
1994
+ }
1995
+
1996
+ .form-autocomplete .form-autocomplete-input.is-focused {
1997
+ border-color: #5755d9;
1998
+ box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2);
1999
+ }
2000
+
2001
+ .form-autocomplete .form-autocomplete-input .form-input {
2002
+ border-color: transparent;
2003
+ box-shadow: none;
2004
+ display: inline-block;
2005
+ -ms-flex: 1 0 auto;
2006
+ flex: 1 0 auto;
2007
+ height: 1.2rem;
2008
+ line-height: .8rem;
2009
+ margin: .1rem;
2010
+ width: auto;
2011
+ }
2012
+
2013
+ .form-autocomplete .menu {
2014
+ left: 0;
2015
+ position: absolute;
2016
+ top: 100%;
2017
+ width: 100%;
2018
+ }
2019
+
2020
+ .avatar {
2021
+ background: #5755d9;
2022
+ border-radius: 50%;
2023
+ color: rgba(255, 255, 255, .85);
2024
+ display: inline-block;
2025
+ font-size: .8rem;
2026
+ font-weight: 300;
2027
+ height: 1.6rem;
2028
+ line-height: 1.25;
2029
+ margin: 0;
2030
+ position: relative;
2031
+ vertical-align: middle;
2032
+ width: 1.6rem;
2033
+ }
2034
+
2035
+ .avatar.avatar-xs {
2036
+ font-size: .4rem;
2037
+ height: .8rem;
2038
+ width: .8rem;
2039
+ }
2040
+
2041
+ .avatar.avatar-sm {
2042
+ font-size: .6rem;
2043
+ height: 1.2rem;
2044
+ width: 1.2rem;
2045
+ }
2046
+
2047
+ .avatar.avatar-lg {
2048
+ font-size: 1.2rem;
2049
+ height: 2.4rem;
2050
+ width: 2.4rem;
2051
+ }
2052
+
2053
+ .avatar.avatar-xl {
2054
+ font-size: 1.6rem;
2055
+ height: 3.2rem;
2056
+ width: 3.2rem;
2057
+ }
2058
+
2059
+ .avatar img {
2060
+ border-radius: 50%;
2061
+ height: 100%;
2062
+ position: relative;
2063
+ width: 100%;
2064
+ z-index: 1;
2065
+ }
2066
+
2067
+ .avatar .avatar-icon,
2068
+ .avatar .avatar-presence {
2069
+ background: #fff;
2070
+ bottom: 14.64%;
2071
+ height: 50%;
2072
+ padding: .1rem;
2073
+ position: absolute;
2074
+ right: 14.64%;
2075
+ transform: translate(50%, 50%);
2076
+ width: 50%;
2077
+ z-index: 2;
2078
+ }
2079
+
2080
+ .avatar .avatar-presence {
2081
+ background: #acb3c2;
2082
+ border-radius: 50%;
2083
+ box-shadow: 0 0 0 .1rem #fff;
2084
+ height: .5em;
2085
+ width: .5em;
2086
+ }
2087
+
2088
+ .avatar .avatar-presence.online {
2089
+ background: #32b643;
2090
+ }
2091
+
2092
+ .avatar .avatar-presence.busy {
2093
+ background: #e85600;
2094
+ }
2095
+
2096
+ .avatar .avatar-presence.away {
2097
+ background: #ffb700;
2098
+ }
2099
+
2100
+ .avatar[data-initial]::before {
2101
+ color: currentColor;
2102
+ content: attr(data-initial);
2103
+ left: 50%;
2104
+ position: absolute;
2105
+ top: 50%;
2106
+ transform: translate(-50%, -50%);
2107
+ z-index: 1;
2108
+ }
2109
+
2110
+ .badge {
2111
+ position: relative;
2112
+ white-space: nowrap;
2113
+ }
2114
+
2115
+ .badge[data-badge]::after,
2116
+ .badge:not([data-badge])::after {
2117
+ background: #5755d9;
2118
+ background-clip: padding-box;
2119
+ border-radius: .5rem;
2120
+ box-shadow: 0 0 0 .1rem #fff;
2121
+ color: #fff;
2122
+ content: attr(data-badge);
2123
+ display: inline-block;
2124
+ transform: translate(-.1rem, -.5rem);
2125
+ }
2126
+
2127
+ .badge[data-badge]::after {
2128
+ font-size: .7rem;
2129
+ height: .9rem;
2130
+ line-height: 1;
2131
+ min-width: .9rem;
2132
+ padding: .1rem .2rem;
2133
+ text-align: center;
2134
+ white-space: nowrap;
2135
+ }
2136
+
2137
+ .badge:not([data-badge])::after,
2138
+ .badge[data-badge=""]::after {
2139
+ height: 6px;
2140
+ min-width: 6px;
2141
+ padding: 0;
2142
+ width: 6px;
2143
+ }
2144
+
2145
+ .badge.btn::after {
2146
+ position: absolute;
2147
+ right: 0;
2148
+ top: 0;
2149
+ transform: translate(50%, -50%);
2150
+ }
2151
+
2152
+ .badge.avatar::after {
2153
+ position: absolute;
2154
+ right: 14.64%;
2155
+ top: 14.64%;
2156
+ transform: translate(50%, -50%);
2157
+ z-index: 100;
2158
+ }
2159
+
2160
+ .badge.avatar-xs::after {
2161
+ content: "";
2162
+ height: .4rem;
2163
+ min-width: .4rem;
2164
+ padding: 0;
2165
+ width: .4rem;
2166
+ }
2167
+
2168
+ .breadcrumb {
2169
+ list-style: none;
2170
+ margin: .2rem 0;
2171
+ padding: .2rem 0;
2172
+ }
2173
+
2174
+ .breadcrumb .breadcrumb-item {
2175
+ color: #667189;
2176
+ display: inline-block;
2177
+ margin: 0;
2178
+ padding: .2rem 0;
2179
+ }
2180
+
2181
+ .breadcrumb .breadcrumb-item:not(:last-child) {
2182
+ margin-right: .2rem;
2183
+ }
2184
+
2185
+ .breadcrumb .breadcrumb-item:not(:last-child) a {
2186
+ color: #667189;
2187
+ }
2188
+
2189
+ .breadcrumb .breadcrumb-item:not(:first-child)::before {
2190
+ color: #e7e9ed;
2191
+ content: "/";
2192
+ padding-right: .4rem;
2193
+ }
2194
+
2195
+ .bar {
2196
+ background: #f0f1f4;
2197
+ border-radius: .1rem;
2198
+ display: flex;
2199
+ display: -ms-flexbox;
2200
+ -ms-flex-wrap: nowrap;
2201
+ flex-wrap: nowrap;
2202
+ height: .8rem;
2203
+ width: 100%;
2204
+ }
2205
+
2206
+ .bar.bar-sm {
2207
+ height: .2rem;
2208
+ }
2209
+
2210
+ .bar .bar-item {
2211
+ background: #5755d9;
2212
+ color: #fff;
2213
+ display: block;
2214
+ -ms-flex-negative: 0;
2215
+ flex-shrink: 0;
2216
+ font-size: .7rem;
2217
+ height: 100%;
2218
+ line-height: .8rem;
2219
+ position: relative;
2220
+ text-align: center;
2221
+ width: 0;
2222
+ }
2223
+
2224
+ .bar .bar-item:first-child {
2225
+ border-bottom-left-radius: .1rem;
2226
+ border-top-left-radius: .1rem;
2227
+ }
2228
+
2229
+ .bar .bar-item:last-child {
2230
+ border-bottom-right-radius: .1rem;
2231
+ border-top-right-radius: .1rem;
2232
+ -ms-flex-negative: 1;
2233
+ flex-shrink: 1;
2234
+ }
2235
+
2236
+ .bar-slider {
2237
+ height: .1rem;
2238
+ margin: .4rem 0;
2239
+ position: relative;
2240
+ }
2241
+
2242
+ .bar-slider .bar-item {
2243
+ left: 0;
2244
+ padding: 0;
2245
+ position: absolute;
2246
+ }
2247
+
2248
+ .bar-slider .bar-item:not(:last-child):first-child {
2249
+ background: #f0f1f4;
2250
+ z-index: 1;
2251
+ }
2252
+
2253
+ .bar-slider .bar-slider-btn {
2254
+ background: #5755d9;
2255
+ border: 0;
2256
+ border-radius: 50%;
2257
+ height: .6rem;
2258
+ padding: 0;
2259
+ position: absolute;
2260
+ right: 0;
2261
+ top: 50%;
2262
+ transform: translate(50%, -50%);
2263
+ width: .6rem;
2264
+ }
2265
+
2266
+ .bar-slider .bar-slider-btn:active {
2267
+ box-shadow: 0 0 0 .1rem #5755d9;
2268
+ }
2269
+
2270
+ .card {
2271
+ background: #fff;
2272
+ border: .05rem solid #e7e9ed;
2273
+ border-radius: .1rem;
2274
+ display: flex;
2275
+ display: -ms-flexbox;
2276
+ -ms-flex-direction: column;
2277
+ flex-direction: column;
2278
+ }
2279
+
2280
+ .card .card-header,
2281
+ .card .card-body,
2282
+ .card .card-footer {
2283
+ padding: .8rem;
2284
+ padding-bottom: 0;
2285
+ }
2286
+
2287
+ .card .card-header:last-child,
2288
+ .card .card-body:last-child,
2289
+ .card .card-footer:last-child {
2290
+ padding-bottom: .8rem;
2291
+ }
2292
+
2293
+ .card .card-image {
2294
+ padding-top: .8rem;
2295
+ }
2296
+
2297
+ .card .card-image:first-child {
2298
+ padding-top: 0;
2299
+ }
2300
+
2301
+ .card .card-image:first-child img {
2302
+ border-top-left-radius: .1rem;
2303
+ border-top-right-radius: .1rem;
2304
+ }
2305
+
2306
+ .card .card-image:last-child img {
2307
+ border-bottom-left-radius: .1rem;
2308
+ border-bottom-right-radius: .1rem;
2309
+ }
2310
+
2311
+ .chip {
2312
+ align-items: center;
2313
+ background: #f0f1f4;
2314
+ border-radius: 5rem;
2315
+ color: #667189;
2316
+ display: inline-flex;
2317
+ display: -ms-inline-flexbox;
2318
+ -ms-flex-align: center;
2319
+ font-size: 90%;
2320
+ height: 1.2rem;
2321
+ line-height: .8rem;
2322
+ margin: .1rem;
2323
+ max-width: 100%;
2324
+ padding: .2rem .4rem;
2325
+ text-decoration: none;
2326
+ vertical-align: middle;
2327
+ }
2328
+
2329
+ .chip.active {
2330
+ background: #5755d9;
2331
+ color: #fff;
2332
+ }
2333
+
2334
+ .chip .avatar {
2335
+ margin-left: -.4rem;
2336
+ margin-right: .2rem;
2337
+ }
2338
+
2339
+ .dropdown {
2340
+ display: inline-block;
2341
+ position: relative;
2342
+ }
2343
+
2344
+ .dropdown .menu {
2345
+ animation: slide-down .15s ease 1;
2346
+ display: none;
2347
+ left: 0;
2348
+ max-height: 50vh;
2349
+ overflow-y: auto;
2350
+ position: absolute;
2351
+ top: 100%;
2352
+ }
2353
+
2354
+ .dropdown.dropdown-right .menu {
2355
+ left: auto;
2356
+ right: 0;
2357
+ }
2358
+
2359
+ .dropdown.active .menu,
2360
+ .dropdown .dropdown-toggle:focus + .menu,
2361
+ .dropdown .menu:hover {
2362
+ display: block;
2363
+ }
2364
+
2365
+ .dropdown .btn-group .dropdown-toggle:nth-last-child(2) {
2366
+ border-bottom-right-radius: .1rem;
2367
+ border-top-right-radius: .1rem;
2368
+ }
2369
+
2370
+ .empty {
2371
+ background: #f8f9fa;
2372
+ border-radius: .1rem;
2373
+ color: #667189;
2374
+ padding: 3.2rem 1.6rem;
2375
+ text-align: center;
2376
+ }
2377
+
2378
+ .empty .empty-icon {
2379
+ margin-bottom: .8rem;
2380
+ }
2381
+
2382
+ .empty .empty-title,
2383
+ .empty .empty-subtitle {
2384
+ margin: .4rem auto;
2385
+ }
2386
+
2387
+ .empty .empty-action {
2388
+ margin-top: .8rem;
2389
+ }
2390
+
2391
+ .menu {
2392
+ background: #fff;
2393
+ border-radius: .1rem;
2394
+ box-shadow: 0 .05rem .2rem rgba(69, 77, 93, .3);
2395
+ list-style: none;
2396
+ margin: 0;
2397
+ min-width: 180px;
2398
+ padding: .4rem;
2399
+ transform: translateY(.2rem);
2400
+ z-index: 100;
2401
+ }
2402
+
2403
+ .menu.menu-nav {
2404
+ background: transparent;
2405
+ box-shadow: none;
2406
+ }
2407
+
2408
+ .menu .menu-item {
2409
+ margin-top: 0;
2410
+ padding: 0 .4rem;
2411
+ text-decoration: none;
2412
+ -webkit-user-select: none;
2413
+ -moz-user-select: none;
2414
+ -ms-user-select: none;
2415
+ user-select: none;
2416
+ }
2417
+
2418
+ .menu .menu-item > a {
2419
+ border-radius: .1rem;
2420
+ color: inherit;
2421
+ display: block;
2422
+ margin: 0 -.4rem;
2423
+ padding: .2rem .4rem;
2424
+ text-decoration: none;
2425
+ }
2426
+
2427
+ .menu .menu-item > a:focus,
2428
+ .menu .menu-item > a:hover {
2429
+ background: #f1f1fc;
2430
+ color: #5755d9;
2431
+ }
2432
+
2433
+ .menu .menu-item > a:active,
2434
+ .menu .menu-item > a.active {
2435
+ background: #f1f1fc;
2436
+ color: #5755d9;
2437
+ }
2438
+
2439
+ .menu .menu-item + .menu-item {
2440
+ margin-top: .2rem;
2441
+ }
2442
+
2443
+ .menu .menu-badge {
2444
+ float: right;
2445
+ padding: .2rem 0;
2446
+ }
2447
+
2448
+ .menu .menu-badge .btn {
2449
+ margin-top: -.1rem;
2450
+ }
2451
+
2452
+ .modal {
2453
+ align-items: center;
2454
+ bottom: 0;
2455
+ display: none;
2456
+ -ms-flex-align: center;
2457
+ -ms-flex-pack: center;
2458
+ justify-content: center;
2459
+ left: 0;
2460
+ opacity: 0;
2461
+ overflow: hidden;
2462
+ padding: .4rem;
2463
+ position: fixed;
2464
+ right: 0;
2465
+ top: 0;
2466
+ }
2467
+
2468
+ .modal:target,
2469
+ .modal.active {
2470
+ display: flex;
2471
+ display: -ms-flexbox;
2472
+ opacity: 1;
2473
+ z-index: 400;
2474
+ }
2475
+
2476
+ .modal:target .modal-overlay,
2477
+ .modal.active .modal-overlay {
2478
+ background: rgba(248, 249, 250, .75);
2479
+ bottom: 0;
2480
+ cursor: default;
2481
+ display: block;
2482
+ left: 0;
2483
+ position: absolute;
2484
+ right: 0;
2485
+ top: 0;
2486
+ }
2487
+
2488
+ .modal:target .modal-container,
2489
+ .modal.active .modal-container {
2490
+ animation: slide-down .2s ease 1;
2491
+ max-width: 640px;
2492
+ width: 100%;
2493
+ z-index: 1;
2494
+ }
2495
+
2496
+ .modal.modal-sm .modal-container {
2497
+ max-width: 320px;
2498
+ padding: 0 .4rem;
2499
+ }
2500
+
2501
+ .modal.modal-lg .modal-overlay {
2502
+ background: #fff;
2503
+ }
2504
+
2505
+ .modal.modal-lg .modal-container {
2506
+ box-shadow: none;
2507
+ max-width: 960px;
2508
+ }
2509
+
2510
+ .modal-container {
2511
+ background: #fff;
2512
+ border-radius: .1rem;
2513
+ box-shadow: 0 .2rem .5rem rgba(69, 77, 93, .3);
2514
+ display: block;
2515
+ padding: 0 .8rem;
2516
+ text-align: left;
2517
+ }
2518
+
2519
+ .modal-container .modal-header {
2520
+ padding: .8rem;
2521
+ }
2522
+
2523
+ .modal-container .modal-body {
2524
+ max-height: 50vh;
2525
+ overflow-y: auto;
2526
+ padding: .8rem;
2527
+ position: relative;
2528
+ }
2529
+
2530
+ .modal-container .modal-footer {
2531
+ padding: .8rem;
2532
+ text-align: right;
2533
+ }
2534
+
2535
+ .nav {
2536
+ display: flex;
2537
+ display: -ms-flexbox;
2538
+ -ms-flex-direction: column;
2539
+ flex-direction: column;
2540
+ list-style: none;
2541
+ margin: .2rem 0;
2542
+ }
2543
+
2544
+ .nav .nav-item a {
2545
+ color: #667189;
2546
+ padding: .2rem .4rem;
2547
+ text-decoration: none;
2548
+ }
2549
+
2550
+ .nav .nav-item a:focus,
2551
+ .nav .nav-item a:hover {
2552
+ color: #5755d9;
2553
+ }
2554
+
2555
+ .nav .nav-item.active > a {
2556
+ color: #50596c;
2557
+ font-weight: bold;
2558
+ }
2559
+
2560
+ .nav .nav-item.active > a:focus,
2561
+ .nav .nav-item.active > a:hover {
2562
+ color: #5755d9;
2563
+ }
2564
+
2565
+ .nav .nav {
2566
+ margin-bottom: .4rem;
2567
+ margin-left: .8rem;
2568
+ }
2569
+
2570
+ .pagination {
2571
+ display: flex;
2572
+ display: -ms-flexbox;
2573
+ list-style: none;
2574
+ margin: .2rem 0;
2575
+ padding: .2rem 0;
2576
+ }
2577
+
2578
+ .pagination .page-item {
2579
+ margin: .2rem .05rem;
2580
+ }
2581
+
2582
+ .pagination .page-item span {
2583
+ display: inline-block;
2584
+ padding: .2rem .2rem;
2585
+ }
2586
+
2587
+ .pagination .page-item a {
2588
+ border-radius: .1rem;
2589
+ color: #667189;
2590
+ display: inline-block;
2591
+ padding: .2rem .4rem;
2592
+ text-decoration: none;
2593
+ }
2594
+
2595
+ .pagination .page-item a:focus,
2596
+ .pagination .page-item a:hover {
2597
+ color: #5755d9;
2598
+ }
2599
+
2600
+ .pagination .page-item.disabled a {
2601
+ cursor: default;
2602
+ opacity: .5;
2603
+ pointer-events: none;
2604
+ }
2605
+
2606
+ .pagination .page-item.active a {
2607
+ background: #5755d9;
2608
+ color: #fff;
2609
+ }
2610
+
2611
+ .pagination .page-item.page-prev,
2612
+ .pagination .page-item.page-next {
2613
+ -ms-flex: 1 0 50%;
2614
+ flex: 1 0 50%;
2615
+ }
2616
+
2617
+ .pagination .page-item.page-next {
2618
+ text-align: right;
2619
+ }
2620
+
2621
+ .pagination .page-item .page-item-title {
2622
+ margin: 0;
2623
+ }
2624
+
2625
+ .pagination .page-item .page-item-subtitle {
2626
+ margin: 0;
2627
+ opacity: .5;
2628
+ }
2629
+
2630
+ .panel {
2631
+ border: .05rem solid #e7e9ed;
2632
+ border-radius: .1rem;
2633
+ display: flex;
2634
+ display: -ms-flexbox;
2635
+ -ms-flex-direction: column;
2636
+ flex-direction: column;
2637
+ }
2638
+
2639
+ .panel .panel-header,
2640
+ .panel .panel-footer {
2641
+ -ms-flex: 0 0 auto;
2642
+ flex: 0 0 auto;
2643
+ padding: .8rem;
2644
+ }
2645
+
2646
+ .panel .panel-nav {
2647
+ -ms-flex: 0 0 auto;
2648
+ flex: 0 0 auto;
2649
+ }
2650
+
2651
+ .panel .panel-body {
2652
+ -ms-flex: 1 1 auto;
2653
+ flex: 1 1 auto;
2654
+ overflow-y: auto;
2655
+ padding: 0 .8rem;
2656
+ }
2657
+
2658
+ .popover {
2659
+ display: inline-block;
2660
+ position: relative;
2661
+ }
2662
+
2663
+ .popover .popover-container {
2664
+ left: 50%;
2665
+ opacity: 0;
2666
+ padding: .4rem;
2667
+ position: absolute;
2668
+ top: 0;
2669
+ transform: translate(-50%, -50%) scale(0);
2670
+ transition: transform .2s ease;
2671
+ width: 320px;
2672
+ z-index: 400;
2673
+ }
2674
+
2675
+ .popover *:focus + .popover-container,
2676
+ .popover:hover .popover-container,
2677
+ .popover .popover-container:hover {
2678
+ display: block;
2679
+ opacity: 1;
2680
+ transform: translate(-50%, -100%) scale(1);
2681
+ }
2682
+
2683
+ .popover.popover-right .popover-container {
2684
+ left: 100%;
2685
+ top: 50%;
2686
+ }
2687
+
2688
+ .popover.popover-right :focus + .popover-container,
2689
+ .popover.popover-right:hover .popover-container,
2690
+ .popover.popover-right .popover-container:hover {
2691
+ transform: translate(0, -50%) scale(1);
2692
+ }
2693
+
2694
+ .popover.popover-bottom .popover-container {
2695
+ left: 50%;
2696
+ top: 100%;
2697
+ }
2698
+
2699
+ .popover.popover-bottom :focus + .popover-container,
2700
+ .popover.popover-bottom:hover .popover-container,
2701
+ .popover.popover-bottom .popover-container:hover {
2702
+ transform: translate(-50%, 0) scale(1);
2703
+ }
2704
+
2705
+ .popover.popover-left .popover-container {
2706
+ left: 0;
2707
+ top: 50%;
2708
+ }
2709
+
2710
+ .popover.popover-left :focus + .popover-container,
2711
+ .popover.popover-left:hover .popover-container,
2712
+ .popover.popover-left .popover-container:hover {
2713
+ transform: translate(-100%, -50%) scale(1);
2714
+ }
2715
+
2716
+ .popover .card {
2717
+ border: 0;
2718
+ box-shadow: 0 .2rem .5rem rgba(69, 77, 93, .3);
2719
+ }
2720
+
2721
+ .step {
2722
+ display: flex;
2723
+ display: -ms-flexbox;
2724
+ -ms-flex-wrap: nowrap;
2725
+ flex-wrap: nowrap;
2726
+ list-style: none;
2727
+ margin: .2rem 0;
2728
+ width: 100%;
2729
+ }
2730
+
2731
+ .step .step-item {
2732
+ -ms-flex: 1 1 0;
2733
+ flex: 1 1 0;
2734
+ margin-top: 0;
2735
+ min-height: 1rem;
2736
+ position: relative;
2737
+ text-align: center;
2738
+ }
2739
+
2740
+ .step .step-item:not(:first-child)::before {
2741
+ background: #5755d9;
2742
+ content: "";
2743
+ height: 2px;
2744
+ left: -50%;
2745
+ position: absolute;
2746
+ top: 9px;
2747
+ width: 100%;
2748
+ }
2749
+
2750
+ .step .step-item a {
2751
+ color: #acb3c2;
2752
+ display: inline-block;
2753
+ padding: 20px 10px 0;
2754
+ text-decoration: none;
2755
+ }
2756
+
2757
+ .step .step-item a::before {
2758
+ background: #5755d9;
2759
+ border: .1rem solid #fff;
2760
+ border-radius: 50%;
2761
+ content: "";
2762
+ display: block;
2763
+ height: .6rem;
2764
+ left: 50%;
2765
+ position: absolute;
2766
+ top: .2rem;
2767
+ transform: translateX(-50%);
2768
+ width: .6rem;
2769
+ z-index: 1;
2770
+ }
2771
+
2772
+ .step .step-item.active a::before {
2773
+ background: #fff;
2774
+ border: .1rem solid #5755d9;
2775
+ }
2776
+
2777
+ .step .step-item.active ~ .step-item::before {
2778
+ background: #e7e9ed;
2779
+ }
2780
+
2781
+ .step .step-item.active ~ .step-item a::before {
2782
+ background: #e7e9ed;
2783
+ }
2784
+
2785
+ .tab {
2786
+ align-items: center;
2787
+ border-bottom: .05rem solid #e7e9ed;
2788
+ display: flex;
2789
+ display: -ms-flexbox;
2790
+ -ms-flex-align: center;
2791
+ -ms-flex-wrap: wrap;
2792
+ flex-wrap: wrap;
2793
+ list-style: none;
2794
+ margin: .2rem 0 .15rem 0;
2795
+ }
2796
+
2797
+ .tab .tab-item {
2798
+ margin-top: 0;
2799
+ }
2800
+
2801
+ .tab .tab-item a {
2802
+ border-bottom: .1rem solid transparent;
2803
+ color: inherit;
2804
+ display: block;
2805
+ margin: 0 .4rem 0 0;
2806
+ padding: .4rem .2rem .3rem .2rem;
2807
+ text-decoration: none;
2808
+ }
2809
+
2810
+ .tab .tab-item a:focus,
2811
+ .tab .tab-item a:hover {
2812
+ color: #5755d9;
2813
+ }
2814
+
2815
+ .tab .tab-item.active a,
2816
+ .tab .tab-item a.active {
2817
+ border-bottom-color: #5755d9;
2818
+ color: #5755d9;
2819
+ }
2820
+
2821
+ .tab .tab-item.tab-action {
2822
+ -ms-flex: 1 0 auto;
2823
+ flex: 1 0 auto;
2824
+ text-align: right;
2825
+ }
2826
+
2827
+ .tab .tab-item .btn-clear {
2828
+ margin-top: -.2rem;
2829
+ }
2830
+
2831
+ .tab.tab-block .tab-item {
2832
+ -ms-flex: 1 0 0;
2833
+ flex: 1 0 0;
2834
+ text-align: center;
2835
+ }
2836
+
2837
+ .tab.tab-block .tab-item a {
2838
+ margin: 0;
2839
+ }
2840
+
2841
+ .tab.tab-block .tab-item .badge[data-badge]::after {
2842
+ position: absolute;
2843
+ right: .1rem;
2844
+ top: .1rem;
2845
+ transform: translate(0, 0);
2846
+ }
2847
+
2848
+ .tab:not(.tab-block) .badge {
2849
+ padding-right: 0;
2850
+ }
2851
+
2852
+ .tile {
2853
+ align-content: space-between;
2854
+ align-items: flex-start;
2855
+ display: flex;
2856
+ display: -ms-flexbox;
2857
+ -ms-flex-align: start;
2858
+ -ms-flex-line-pack: justify;
2859
+ }
2860
+
2861
+ .tile .tile-icon,
2862
+ .tile .tile-action {
2863
+ -ms-flex: 0 0 auto;
2864
+ flex: 0 0 auto;
2865
+ }
2866
+
2867
+ .tile .tile-content {
2868
+ -ms-flex: 1 1 auto;
2869
+ flex: 1 1 auto;
2870
+ }
2871
+
2872
+ .tile .tile-content:not(:first-child) {
2873
+ padding-left: .4rem;
2874
+ }
2875
+
2876
+ .tile .tile-content:not(:last-child) {
2877
+ padding-right: .4rem;
2878
+ }
2879
+
2880
+ .tile .tile-title,
2881
+ .tile .tile-subtitle {
2882
+ line-height: 1rem;
2883
+ }
2884
+
2885
+ .tile.tile-centered {
2886
+ align-items: center;
2887
+ -ms-flex-align: center;
2888
+ }
2889
+
2890
+ .tile.tile-centered .tile-content {
2891
+ overflow: hidden;
2892
+ }
2893
+
2894
+ .tile.tile-centered .tile-title,
2895
+ .tile.tile-centered .tile-subtitle {
2896
+ margin-bottom: 0;
2897
+ overflow: hidden;
2898
+ text-overflow: ellipsis;
2899
+ white-space: nowrap;
2900
+ }
2901
+
2902
+ .toast {
2903
+ background: rgba(69, 77, 93, .9);
2904
+ border: .05rem solid #454d5d;
2905
+ border-color: #454d5d;
2906
+ border-radius: .1rem;
2907
+ color: #fff;
2908
+ display: block;
2909
+ padding: .4rem;
2910
+ width: 100%;
2911
+ }
2912
+
2913
+ .toast.toast-primary {
2914
+ background: rgba(87, 85, 217, .9);
2915
+ border-color: #5755d9;
2916
+ }
2917
+
2918
+ .toast.toast-success {
2919
+ background: rgba(50, 182, 67, .9);
2920
+ border-color: #32b643;
2921
+ }
2922
+
2923
+ .toast.toast-warning {
2924
+ background: rgba(255, 183, 0, .9);
2925
+ border-color: #ffb700;
2926
+ }
2927
+
2928
+ .toast.toast-error {
2929
+ background: rgba(232, 86, 0, .9);
2930
+ border-color: #e85600;
2931
+ }
2932
+
2933
+ .toast a {
2934
+ color: #fff;
2935
+ text-decoration: underline;
2936
+ }
2937
+
2938
+ .toast a:focus,
2939
+ .toast a:hover,
2940
+ .toast a:active,
2941
+ .toast a.active {
2942
+ opacity: .75;
2943
+ }
2944
+
2945
+ .toast .btn-clear {
2946
+ margin: 4px -2px 4px 4px;
2947
+ }
2948
+
2949
+ .tooltip {
2950
+ position: relative;
2951
+ }
2952
+
2953
+ .tooltip::after {
2954
+ background: rgba(69, 77, 93, .9);
2955
+ border-radius: .1rem;
2956
+ bottom: 100%;
2957
+ color: #fff;
2958
+ content: attr(data-tooltip);
2959
+ display: block;
2960
+ font-size: .7rem;
2961
+ left: 50%;
2962
+ max-width: 320px;
2963
+ opacity: 0;
2964
+ overflow: hidden;
2965
+ padding: .2rem .4rem;
2966
+ pointer-events: none;
2967
+ position: absolute;
2968
+ text-overflow: ellipsis;
2969
+ transform: translate(-50%, .4rem);
2970
+ transition: all .2s ease;
2971
+ white-space: pre;
2972
+ z-index: 300;
2973
+ }
2974
+
2975
+ .tooltip:focus::after,
2976
+ .tooltip:hover::after {
2977
+ opacity: 1;
2978
+ transform: translate(-50%, -.2rem);
2979
+ }
2980
+
2981
+ .tooltip[disabled],
2982
+ .tooltip.disabled {
2983
+ pointer-events: auto;
2984
+ }
2985
+
2986
+ .tooltip.tooltip-right::after {
2987
+ bottom: 50%;
2988
+ left: 100%;
2989
+ transform: translate(-.2rem, 50%);
2990
+ }
2991
+
2992
+ .tooltip.tooltip-right:focus::after,
2993
+ .tooltip.tooltip-right:hover::after {
2994
+ transform: translate(.2rem, 50%);
2995
+ }
2996
+
2997
+ .tooltip.tooltip-bottom::after {
2998
+ bottom: auto;
2999
+ top: 100%;
3000
+ transform: translate(-50%, -.4rem);
3001
+ }
3002
+
3003
+ .tooltip.tooltip-bottom:focus::after,
3004
+ .tooltip.tooltip-bottom:hover::after {
3005
+ transform: translate(-50%, .2rem);
3006
+ }
3007
+
3008
+ .tooltip.tooltip-left::after {
3009
+ bottom: 50%;
3010
+ left: auto;
3011
+ right: 100%;
3012
+ transform: translate(.4rem, 50%);
3013
+ }
3014
+
3015
+ .tooltip.tooltip-left:focus::after,
3016
+ .tooltip.tooltip-left:hover::after {
3017
+ transform: translate(-.2rem, 50%);
3018
+ }
3019
+
3020
+ @keyframes loading {
3021
+ 0% {
3022
+ transform: rotate(0deg);
3023
+ }
3024
+ 100% {
3025
+ transform: rotate(360deg);
3026
+ }
3027
+ }
3028
+
3029
+ @keyframes slide-down {
3030
+ 0% {
3031
+ opacity: 0;
3032
+ transform: translateY(-1.6rem);
3033
+ }
3034
+ 100% {
3035
+ opacity: 1;
3036
+ transform: translateY(0);
3037
+ }
3038
+ }
3039
+
3040
+ .text-primary {
3041
+ color: #5755d9;
3042
+ }
3043
+
3044
+ a.text-primary:focus,
3045
+ a.text-primary:hover {
3046
+ color: #4240d4;
3047
+ }
3048
+
3049
+ .text-secondary {
3050
+ color: #e5e5f9;
3051
+ }
3052
+
3053
+ a.text-secondary:focus,
3054
+ a.text-secondary:hover {
3055
+ color: #d1d0f4;
3056
+ }
3057
+
3058
+ .text-gray {
3059
+ color: #acb3c2;
3060
+ }
3061
+
3062
+ a.text-gray:focus,
3063
+ a.text-gray:hover {
3064
+ color: #9ea6b7;
3065
+ }
3066
+
3067
+ .text-light {
3068
+ color: #fff;
3069
+ }
3070
+
3071
+ a.text-light:focus,
3072
+ a.text-light:hover {
3073
+ color: #f2f2f2;
3074
+ }
3075
+
3076
+ .text-success {
3077
+ color: #32b643;
3078
+ }
3079
+
3080
+ a.text-success:focus,
3081
+ a.text-success:hover {
3082
+ color: #2da23c;
3083
+ }
3084
+
3085
+ .text-warning {
3086
+ color: #ffb700;
3087
+ }
3088
+
3089
+ a.text-warning:focus,
3090
+ a.text-warning:hover {
3091
+ color: #e6a500;
3092
+ }
3093
+
3094
+ .text-error {
3095
+ color: #e85600;
3096
+ }
3097
+
3098
+ a.text-error:focus,
3099
+ a.text-error:hover {
3100
+ color: #cf4d00;
3101
+ }
3102
+
3103
+ .bg-primary {
3104
+ background: #5755d9;
3105
+ color: #fff;
3106
+ }
3107
+
3108
+ .bg-secondary {
3109
+ background: #f1f1fc;
3110
+ }
3111
+
3112
+ .bg-dark {
3113
+ background: #454d5d;
3114
+ color: #fff;
3115
+ }
3116
+
3117
+ .bg-gray {
3118
+ background: #f8f9fa;
3119
+ }
3120
+
3121
+ .bg-success {
3122
+ background: #32b643;
3123
+ color: #fff;
3124
+ }
3125
+
3126
+ .bg-warning {
3127
+ background: #ffb700;
3128
+ color: #fff;
3129
+ }
3130
+
3131
+ .bg-error {
3132
+ background: #e85600;
3133
+ color: #fff;
3134
+ }
3135
+
3136
+ .c-hand {
3137
+ cursor: pointer;
3138
+ }
3139
+
3140
+ .c-move {
3141
+ cursor: move;
3142
+ }
3143
+
3144
+ .c-zoom-in {
3145
+ cursor: zoom-in;
3146
+ }
3147
+
3148
+ .c-zoom-out {
3149
+ cursor: zoom-out;
3150
+ }
3151
+
3152
+ .c-not-allowed {
3153
+ cursor: not-allowed;
3154
+ }
3155
+
3156
+ .c-auto {
3157
+ cursor: auto;
3158
+ }
3159
+
3160
+ .d-block {
3161
+ display: block;
3162
+ }
3163
+
3164
+ .d-inline {
3165
+ display: inline;
3166
+ }
3167
+
3168
+ .d-inline-block {
3169
+ display: inline-block;
3170
+ }
3171
+
3172
+ .d-flex {
3173
+ display: flex;
3174
+ display: -ms-flexbox;
3175
+ }
3176
+
3177
+ .d-inline-flex {
3178
+ display: inline-flex;
3179
+ display: -ms-inline-flexbox;
3180
+ }
3181
+
3182
+ .d-none,
3183
+ .d-hide {
3184
+ display: none !important;
3185
+ }
3186
+
3187
+ .d-visible {
3188
+ visibility: visible;
3189
+ }
3190
+
3191
+ .d-invisible {
3192
+ visibility: hidden;
3193
+ }
3194
+
3195
+ .text-hide {
3196
+ background: transparent;
3197
+ border: 0;
3198
+ color: transparent;
3199
+ font-size: 0;
3200
+ line-height: 0;
3201
+ text-shadow: none;
3202
+ }
3203
+
3204
+ .text-assistive {
3205
+ border: 0;
3206
+ clip: rect(0, 0, 0, 0);
3207
+ height: 1px;
3208
+ margin: -1px;
3209
+ overflow: hidden;
3210
+ padding: 0;
3211
+ position: absolute;
3212
+ width: 1px;
3213
+ }
3214
+
3215
+ .divider,
3216
+ .divider-vert {
3217
+ display: block;
3218
+ position: relative;
3219
+ }
3220
+
3221
+ .divider[data-content]::after,
3222
+ .divider-vert[data-content]::after {
3223
+ background: #fff;
3224
+ color: #acb3c2;
3225
+ content: attr(data-content);
3226
+ display: inline-block;
3227
+ font-size: .7rem;
3228
+ padding: 0 .4rem;
3229
+ transform: translateY(-.65rem);
3230
+ }
3231
+
3232
+ .divider {
3233
+ border-top: .05rem solid #e7e9ed;
3234
+ height: .05rem;
3235
+ margin: .4rem 0;
3236
+ }
3237
+
3238
+ .divider[data-content] {
3239
+ margin: .8rem 0;
3240
+ }
3241
+
3242
+ .divider-vert {
3243
+ display: block;
3244
+ padding: .8rem;
3245
+ }
3246
+
3247
+ .divider-vert::before {
3248
+ border-left: .05rem solid #e7e9ed;
3249
+ bottom: .4rem;
3250
+ content: "";
3251
+ display: block;
3252
+ left: 50%;
3253
+ position: absolute;
3254
+ top: .4rem;
3255
+ transform: translateX(-50%);
3256
+ }
3257
+
3258
+ .divider-vert[data-content]::after {
3259
+ left: 50%;
3260
+ padding: .2rem 0;
3261
+ position: absolute;
3262
+ top: 50%;
3263
+ transform: translate(-50%, -50%);
3264
+ }
3265
+
3266
+ .loading {
3267
+ color: transparent !important;
3268
+ min-height: .8rem;
3269
+ pointer-events: none;
3270
+ position: relative;
3271
+ }
3272
+
3273
+ .loading::after {
3274
+ animation: loading 500ms infinite linear;
3275
+ border: .1rem solid #5755d9;
3276
+ border-radius: 50%;
3277
+ border-right-color: transparent;
3278
+ border-top-color: transparent;
3279
+ content: "";
3280
+ display: block;
3281
+ height: .8rem;
3282
+ left: 50%;
3283
+ margin-left: -.4rem;
3284
+ margin-top: -.4rem;
3285
+ position: absolute;
3286
+ top: 50%;
3287
+ width: .8rem;
3288
+ z-index: 1;
3289
+ }
3290
+
3291
+ .loading.loading-lg {
3292
+ min-height: 2rem;
3293
+ }
3294
+
3295
+ .loading.loading-lg::after {
3296
+ height: 1.6rem;
3297
+ margin-left: -.8rem;
3298
+ margin-top: -.8rem;
3299
+ width: 1.6rem;
3300
+ }
3301
+
3302
+ .clearfix::after,
3303
+ .container::after {
3304
+ clear: both;
3305
+ content: "";
3306
+ display: table;
3307
+ }
3308
+
3309
+ .float-left {
3310
+ float: left !important;
3311
+ }
3312
+
3313
+ .float-right {
3314
+ float: right !important;
3315
+ }
3316
+
3317
+ .relative {
3318
+ position: relative;
3319
+ }
3320
+
3321
+ .absolute {
3322
+ position: absolute;
3323
+ }
3324
+
3325
+ .fixed {
3326
+ position: fixed;
3327
+ }
3328
+
3329
+ .centered {
3330
+ display: block;
3331
+ float: none;
3332
+ margin-left: auto;
3333
+ margin-right: auto;
3334
+ }
3335
+
3336
+ .flex-centered {
3337
+ align-items: center;
3338
+ display: flex;
3339
+ display: -ms-flexbox;
3340
+ -ms-flex-align: center;
3341
+ -ms-flex-pack: center;
3342
+ justify-content: center;
3343
+ }
3344
+
3345
+ .m-0 {
3346
+ margin: 0;
3347
+ }
3348
+
3349
+ .mb-0 {
3350
+ margin-bottom: 0;
3351
+ }
3352
+
3353
+ .ml-0 {
3354
+ margin-left: 0;
3355
+ }
3356
+
3357
+ .mr-0 {
3358
+ margin-right: 0;
3359
+ }
3360
+
3361
+ .mt-0 {
3362
+ margin-top: 0;
3363
+ }
3364
+
3365
+ .mx-0 {
3366
+ margin-left: 0;
3367
+ margin-right: 0;
3368
+ }
3369
+
3370
+ .my-0 {
3371
+ margin-bottom: 0;
3372
+ margin-top: 0;
3373
+ }
3374
+
3375
+ .m-1 {
3376
+ margin: .2rem;
3377
+ }
3378
+
3379
+ .mb-1 {
3380
+ margin-bottom: .2rem;
3381
+ }
3382
+
3383
+ .ml-1 {
3384
+ margin-left: .2rem;
3385
+ }
3386
+
3387
+ .mr-1 {
3388
+ margin-right: .2rem;
3389
+ }
3390
+
3391
+ .mt-1 {
3392
+ margin-top: .2rem;
3393
+ }
3394
+
3395
+ .mx-1 {
3396
+ margin-left: .2rem;
3397
+ margin-right: .2rem;
3398
+ }
3399
+
3400
+ .my-1 {
3401
+ margin-bottom: .2rem;
3402
+ margin-top: .2rem;
3403
+ }
3404
+
3405
+ .m-2 {
3406
+ margin: .4rem;
3407
+ }
3408
+
3409
+ .mb-2 {
3410
+ margin-bottom: .4rem;
3411
+ }
3412
+
3413
+ .ml-2 {
3414
+ margin-left: .4rem;
3415
+ }
3416
+
3417
+ .mr-2 {
3418
+ margin-right: .4rem;
3419
+ }
3420
+
3421
+ .mt-2 {
3422
+ margin-top: .4rem;
3423
+ }
3424
+
3425
+ .mx-2 {
3426
+ margin-left: .4rem;
3427
+ margin-right: .4rem;
3428
+ }
3429
+
3430
+ .my-2 {
3431
+ margin-bottom: .4rem;
3432
+ margin-top: .4rem;
3433
+ }
3434
+
3435
+ .p-0 {
3436
+ padding: 0;
3437
+ }
3438
+
3439
+ .pb-0 {
3440
+ padding-bottom: 0;
3441
+ }
3442
+
3443
+ .pl-0 {
3444
+ padding-left: 0;
3445
+ }
3446
+
3447
+ .pr-0 {
3448
+ padding-right: 0;
3449
+ }
3450
+
3451
+ .pt-0 {
3452
+ padding-top: 0;
3453
+ }
3454
+
3455
+ .px-0 {
3456
+ padding-left: 0;
3457
+ padding-right: 0;
3458
+ }
3459
+
3460
+ .py-0 {
3461
+ padding-bottom: 0;
3462
+ padding-top: 0;
3463
+ }
3464
+
3465
+ .p-1 {
3466
+ padding: .2rem;
3467
+ }
3468
+
3469
+ .pb-1 {
3470
+ padding-bottom: .2rem;
3471
+ }
3472
+
3473
+ .pl-1 {
3474
+ padding-left: .2rem;
3475
+ }
3476
+
3477
+ .pr-1 {
3478
+ padding-right: .2rem;
3479
+ }
3480
+
3481
+ .pt-1 {
3482
+ padding-top: .2rem;
3483
+ }
3484
+
3485
+ .px-1 {
3486
+ padding-left: .2rem;
3487
+ padding-right: .2rem;
3488
+ }
3489
+
3490
+ .py-1 {
3491
+ padding-bottom: .2rem;
3492
+ padding-top: .2rem;
3493
+ }
3494
+
3495
+ .p-2 {
3496
+ padding: .4rem;
3497
+ }
3498
+
3499
+ .pb-2 {
3500
+ padding-bottom: .4rem;
3501
+ }
3502
+
3503
+ .pl-2 {
3504
+ padding-left: .4rem;
3505
+ }
3506
+
3507
+ .pr-2 {
3508
+ padding-right: .4rem;
3509
+ }
3510
+
3511
+ .pt-2 {
3512
+ padding-top: .4rem;
3513
+ }
3514
+
3515
+ .px-2 {
3516
+ padding-left: .4rem;
3517
+ padding-right: .4rem;
3518
+ }
3519
+
3520
+ .py-2 {
3521
+ padding-bottom: .4rem;
3522
+ padding-top: .4rem;
3523
+ }
3524
+
3525
+ .rounded {
3526
+ border-radius: .1rem;
3527
+ }
3528
+
3529
+ .circle {
3530
+ border-radius: 50%;
3531
+ }
3532
+
3533
+ .text-left {
3534
+ text-align: left;
3535
+ }
3536
+
3537
+ .text-right {
3538
+ text-align: right;
3539
+ }
3540
+
3541
+ .text-center {
3542
+ text-align: center;
3543
+ }
3544
+
3545
+ .text-justify {
3546
+ text-align: justify;
3547
+ }
3548
+
3549
+ .text-lowercase {
3550
+ text-transform: lowercase;
3551
+ }
3552
+
3553
+ .text-uppercase {
3554
+ text-transform: uppercase;
3555
+ }
3556
+
3557
+ .text-capitalize {
3558
+ text-transform: capitalize;
3559
+ }
3560
+
3561
+ .text-normal {
3562
+ font-weight: normal;
3563
+ }
3564
+
3565
+ .text-bold {
3566
+ font-weight: bold;
3567
+ }
3568
+
3569
+ .text-italic {
3570
+ font-style: italic;
3571
+ }
3572
+
3573
+ .text-large {
3574
+ font-size: 1.2em;
3575
+ }
3576
+
3577
+ .text-ellipsis {
3578
+ overflow: hidden;
3579
+ text-overflow: ellipsis;
3580
+ white-space: nowrap;
3581
+ }
3582
+
3583
+ .text-clip {
3584
+ overflow: hidden;
3585
+ text-overflow: clip;
3586
+ white-space: nowrap;
3587
+ }
3588
+
3589
+ .text-break {
3590
+ -webkit-hyphens: auto;
3591
+ -ms-hyphens: auto;
3592
+ hyphens: auto;
3593
+ word-break: break-word;
3594
+ word-wrap: break-word;
3595
+ }