voltar 0.0.23

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/fonts/FontAwesome.otf +0 -0
  6. data/app/assets/fonts/Simple-Line-Icons.eot +0 -0
  7. data/app/assets/fonts/Simple-Line-Icons.svg +1369 -0
  8. data/app/assets/fonts/Simple-Line-Icons.ttf +0 -0
  9. data/app/assets/fonts/Simple-Line-Icons.woff +0 -0
  10. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  11. data/app/assets/fonts/fontawesome-webfont.svg +520 -0
  12. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  13. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  14. data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  15. data/app/assets/fonts/glyphicons-halflings-regular.svg +229 -0
  16. data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  17. data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  18. data/app/assets/fonts/sourcesanspro/sourcesanspro-bold.woff +0 -0
  19. data/app/assets/fonts/sourcesanspro/sourcesanspro-light.woff +0 -0
  20. data/app/assets/fonts/sourcesanspro/sourcesanspro.woff +0 -0
  21. data/app/assets/javascripts/voltar/app.js +203 -0
  22. data/app/assets/javascripts/voltar/application.js +33 -0
  23. data/app/assets/javascripts/voltar/controllers/app_ctrl.js.erb +673 -0
  24. data/app/assets/javascripts/voltar/directives/app_directives.js +345 -0
  25. data/app/assets/javascripts/voltar/factories/app_services.js +255 -0
  26. data/app/assets/javascripts/voltar/stripe.js.coffee +2 -0
  27. data/app/assets/stylesheets/voltar/app.css +4990 -0
  28. data/app/assets/stylesheets/voltar/application.css +23 -0
  29. data/app/assets/stylesheets/voltar/voltar.css.scss +93 -0
  30. data/app/controllers/voltar/application_controller.rb +4 -0
  31. data/app/controllers/voltar/dashboard_controller.rb +11 -0
  32. data/app/helpers/voltar/application_helper.rb +4 -0
  33. data/app/views/layouts/voltar/application.html.erb +40 -0
  34. data/app/views/voltar/account/_billing.html.erb +552 -0
  35. data/app/views/voltar/account/_locations.html.erb +135 -0
  36. data/app/views/voltar/account/_managers.html +134 -0
  37. data/app/views/voltar/account/_password.html.erb +57 -0
  38. data/app/views/voltar/account/_profile.html.erb +84 -0
  39. data/app/views/voltar/dashboard/index.html.erb +0 -0
  40. data/app/views/voltar/inventory/_delete_dialog.html.erb +16 -0
  41. data/app/views/voltar/inventory/_edit.html.erb +244 -0
  42. data/app/views/voltar/inventory/_index.html.erb +160 -0
  43. data/app/views/voltar/inventory/_mark_as_sold_dialog.html.erb +26 -0
  44. data/app/views/voltar/shared/_keen_js.html.haml +11 -0
  45. data/app/views/voltar/shared/_voltar_app.html.erb +83 -0
  46. data/app/views/voltar/shared/_voltar_aside.html.erb +71 -0
  47. data/app/views/voltar/shared/_voltar_footer.html.erb +13 -0
  48. data/app/views/voltar/shared/_voltar_header.html.erb +156 -0
  49. data/app/views/voltar/shared/app/_country_province_select.html +19 -0
  50. data/app/views/voltar/shared/app/_dashboard.html.erb +243 -0
  51. data/app/views/voltar/shared/app/_notifications.html.erb +13 -0
  52. data/app/views/voltar/shared/app/_spinner.html.erb +8 -0
  53. data/config/routes.rb +4 -0
  54. data/lib/tasks/voltar_tasks.rake +4 -0
  55. data/lib/voltar.rb +5 -0
  56. data/lib/voltar/engine.rb +15 -0
  57. data/lib/voltar/version.rb +3 -0
  58. data/test/dummy/README.rdoc +28 -0
  59. data/test/dummy/Rakefile +6 -0
  60. data/test/dummy/app/assets/javascripts/application.js +13 -0
  61. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  62. data/test/dummy/app/controllers/application_controller.rb +5 -0
  63. data/test/dummy/app/helpers/application_helper.rb +2 -0
  64. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  65. data/test/dummy/bin/bundle +3 -0
  66. data/test/dummy/bin/rails +4 -0
  67. data/test/dummy/bin/rake +4 -0
  68. data/test/dummy/bin/setup +29 -0
  69. data/test/dummy/config.ru +4 -0
  70. data/test/dummy/config/application.rb +26 -0
  71. data/test/dummy/config/boot.rb +5 -0
  72. data/test/dummy/config/database.yml +25 -0
  73. data/test/dummy/config/environment.rb +5 -0
  74. data/test/dummy/config/environments/development.rb +41 -0
  75. data/test/dummy/config/environments/production.rb +76 -0
  76. data/test/dummy/config/environments/test.rb +39 -0
  77. data/test/dummy/config/initializers/assets.rb +11 -0
  78. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  79. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  80. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  81. data/test/dummy/config/initializers/inflections.rb +16 -0
  82. data/test/dummy/config/initializers/mime_types.rb +4 -0
  83. data/test/dummy/config/initializers/session_store.rb +3 -0
  84. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  85. data/test/dummy/config/locales/en.yml +23 -0
  86. data/test/dummy/config/routes.rb +4 -0
  87. data/test/dummy/config/secrets.yml +22 -0
  88. data/test/dummy/log/development.log +0 -0
  89. data/test/dummy/public/404.html +67 -0
  90. data/test/dummy/public/422.html +67 -0
  91. data/test/dummy/public/500.html +66 -0
  92. data/test/dummy/public/favicon.ico +0 -0
  93. data/test/integration/navigation_test.rb +10 -0
  94. data/test/test_helper.rb +15 -0
  95. data/test/voltar_test.rb +7 -0
  96. data/vendor/assets/images/voltar/a0.jpg +0 -0
  97. data/vendor/assets/images/voltar/a1.jpg +0 -0
  98. data/vendor/assets/images/voltar/a10.jpg +0 -0
  99. data/vendor/assets/images/voltar/a2.jpg +0 -0
  100. data/vendor/assets/images/voltar/a3.jpg +0 -0
  101. data/vendor/assets/images/voltar/a4.jpg +0 -0
  102. data/vendor/assets/images/voltar/a5.jpg +0 -0
  103. data/vendor/assets/images/voltar/a6.jpg +0 -0
  104. data/vendor/assets/images/voltar/a7.jpg +0 -0
  105. data/vendor/assets/images/voltar/a8.jpg +0 -0
  106. data/vendor/assets/images/voltar/a9.jpg +0 -0
  107. data/vendor/assets/images/voltar/b0.jpg +0 -0
  108. data/vendor/assets/images/voltar/b1.jpg +0 -0
  109. data/vendor/assets/images/voltar/b2.jpg +0 -0
  110. data/vendor/assets/images/voltar/b3.jpg +0 -0
  111. data/vendor/assets/images/voltar/b4.jpg +0 -0
  112. data/vendor/assets/images/voltar/b5.jpg +0 -0
  113. data/vendor/assets/images/voltar/c0.jpg +0 -0
  114. data/vendor/assets/images/voltar/c1.jpg +0 -0
  115. data/vendor/assets/images/voltar/c2.jpg +0 -0
  116. data/vendor/assets/images/voltar/c3.jpg +0 -0
  117. data/vendor/assets/images/voltar/c4.jpg +0 -0
  118. data/vendor/assets/images/voltar/c5.jpg +0 -0
  119. data/vendor/assets/images/voltar/chosen-sprite.png +0 -0
  120. data/vendor/assets/images/voltar/chosen-sprite@2x.png +0 -0
  121. data/vendor/assets/images/voltar/logo.png +0 -0
  122. data/vendor/assets/images/voltar/p0.jpg +0 -0
  123. data/vendor/assets/javascripts/voltar/angular-animate.js +1689 -0
  124. data/vendor/assets/javascripts/voltar/angular-contenteditable.js +98 -0
  125. data/vendor/assets/javascripts/voltar/angular-cookies.js +206 -0
  126. data/vendor/assets/javascripts/voltar/angular-sanitize.js +647 -0
  127. data/vendor/assets/javascripts/voltar/angular-ui-router.js +3658 -0
  128. data/vendor/assets/javascripts/voltar/angular.js +22024 -0
  129. data/vendor/assets/javascripts/voltar/chosen.jquery.min.js +2 -0
  130. data/vendor/assets/javascripts/voltar/easypiechart/jquery.easy-pie-chart.js +209 -0
  131. data/vendor/assets/javascripts/voltar/flot/jquery.flot.min.js +29 -0
  132. data/vendor/assets/javascripts/voltar/flot/jquery.flot.orderBars.js +187 -0
  133. data/vendor/assets/javascripts/voltar/flot/jquery.flot.pie.min.js +56 -0
  134. data/vendor/assets/javascripts/voltar/flot/jquery.flot.resize.js +60 -0
  135. data/vendor/assets/javascripts/voltar/flot/jquery.flot.spline.js +212 -0
  136. data/vendor/assets/javascripts/voltar/flot/jquery.flot.tooltip.min.js +12 -0
  137. data/vendor/assets/javascripts/voltar/jquery.min.js +5 -0
  138. data/vendor/assets/javascripts/voltar/moment.js +2856 -0
  139. data/vendor/assets/javascripts/voltar/ngStorage.js +103 -0
  140. data/vendor/assets/javascripts/voltar/ocLazyLoad.js +906 -0
  141. data/vendor/assets/javascripts/voltar/smart-table.min.js +1 -0
  142. data/vendor/assets/javascripts/voltar/sparkline/jquery.sparkline.min.js +2 -0
  143. data/vendor/assets/javascripts/voltar/toaster.js +185 -0
  144. data/vendor/assets/javascripts/voltar/ui-bootstrap-tpls.js +4116 -0
  145. data/vendor/assets/javascripts/voltar/ui-jq.js +86 -0
  146. data/vendor/assets/javascripts/voltar/ui-load.js +93 -0
  147. data/vendor/assets/javascripts/voltar/ui-validate.js +119 -0
  148. data/vendor/assets/stylesheets/voltar/animate.css +1098 -0
  149. data/vendor/assets/stylesheets/voltar/bootstrap.css +6202 -0
  150. data/vendor/assets/stylesheets/voltar/chosen.css +399 -0
  151. data/vendor/assets/stylesheets/voltar/font-awesome.min.css +4 -0
  152. data/vendor/assets/stylesheets/voltar/font.css +18 -0
  153. data/vendor/assets/stylesheets/voltar/simple-line-icons.css +526 -0
  154. data/vendor/assets/stylesheets/voltar/toaster.css +213 -0
  155. metadata +333 -0
@@ -0,0 +1,2 @@
1
+ jQuery ->
2
+ Stripe.setPublishableKey($('meta[name="stripe-key"]').attr('content'))
@@ -0,0 +1,4990 @@
1
+ /*
2
+
3
+ */
4
+
5
+ html {
6
+ background-color: #f0f3f4;
7
+ }
8
+
9
+ body {
10
+ font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
11
+ font-size: 14px;
12
+ -webkit-font-smoothing: antialiased;
13
+ line-height: 1.42857143;
14
+ color: #58666e;
15
+ background-color: transparent;
16
+ }
17
+
18
+ *:focus {
19
+ outline: 0 !important;
20
+ }
21
+
22
+ .h1,
23
+ .h2,
24
+ .h3,
25
+ .h4,
26
+ .h5,
27
+ .h6 {
28
+ margin: 0;
29
+ }
30
+
31
+ a {
32
+ color: #363f44;
33
+ text-decoration: none;
34
+ cursor: pointer;
35
+ }
36
+
37
+ a:hover,
38
+ a:focus {
39
+ color: #141719;
40
+ text-decoration: none;
41
+ }
42
+
43
+ label {
44
+ font-weight: normal;
45
+ }
46
+
47
+ small,
48
+ .small {
49
+ font-size: 13px;
50
+ }
51
+
52
+ .badge,
53
+ .label {
54
+ font-weight: bold;
55
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
56
+ }
57
+
58
+ .badge.bg-light,
59
+ .label.bg-light {
60
+ text-shadow: none;
61
+ }
62
+
63
+ .badge {
64
+ background-color: #cfdadd;
65
+ }
66
+
67
+ .badge.up {
68
+ position: relative;
69
+ top: -10px;
70
+ padding: 3px 6px;
71
+ margin-left: -10px;
72
+ }
73
+
74
+ .badge-sm {
75
+ padding: 2px 5px !important;
76
+ font-size: 85%;
77
+ }
78
+
79
+ .label-sm {
80
+ padding-top: 0;
81
+ padding-bottom: 1px;
82
+ }
83
+
84
+ .badge-white {
85
+ padding: 2px 6px;
86
+ background-color: transparent;
87
+ border: 1px solid rgba(255, 255, 255, 0.35);
88
+ }
89
+
90
+ .badge-empty {
91
+ color: inherit;
92
+ background-color: transparent;
93
+ border: 1px solid rgba(0, 0, 0, 0.15);
94
+ }
95
+
96
+ blockquote {
97
+ border-color: #dee5e7;
98
+ }
99
+
100
+ .caret-white {
101
+ border-top-color: #fff;
102
+ border-top-color: rgba(255, 255, 255, 0.65);
103
+ }
104
+
105
+ a:hover .caret-white {
106
+ border-top-color: #fff;
107
+ }
108
+
109
+ .thumbnail {
110
+ border-color: #dee5e7;
111
+ }
112
+
113
+ .progress {
114
+ background-color: #edf1f2;
115
+ }
116
+
117
+ .progress-xxs {
118
+ height: 2px;
119
+ }
120
+
121
+ .progress-xs {
122
+ height: 6px;
123
+ }
124
+
125
+ .progress-sm {
126
+ height: 12px;
127
+ }
128
+
129
+ .progress-sm .progress-bar {
130
+ font-size: 10px;
131
+ line-height: 1em;
132
+ }
133
+
134
+ .progress,
135
+ .progress-bar {
136
+ -webkit-box-shadow: none;
137
+ box-shadow: none;
138
+ }
139
+
140
+ .progress-bar-primary {
141
+ background-color: #ff8503;
142
+ }
143
+
144
+ .progress-bar-info {
145
+ background-color: #23b7e5;
146
+ }
147
+
148
+ .progress-bar-success {
149
+ background-color: #27c24c;
150
+ }
151
+
152
+ .progress-bar-warning {
153
+ background-color: #fad733;
154
+ }
155
+
156
+ .progress-bar-danger {
157
+ background-color: #f05050;
158
+ }
159
+
160
+ .progress-bar-black {
161
+ background-color: #1c2b36;
162
+ }
163
+
164
+ .progress-bar-white {
165
+ background-color: #fff;
166
+ }
167
+
168
+ .accordion-group,
169
+ .accordion-inner {
170
+ border-color: #dee5e7;
171
+ border-radius: 2px;
172
+ }
173
+
174
+ .alert {
175
+ font-size: 13px;
176
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
177
+ }
178
+
179
+ .alert .close i {
180
+ display: block;
181
+ font-size: 12px;
182
+ font-weight: normal;
183
+ }
184
+
185
+ .form-control {
186
+ border-color: #cfdadd;
187
+ border-radius: 2px;
188
+ }
189
+
190
+ .form-control,
191
+ .form-control:focus {
192
+ -webkit-box-shadow: none;
193
+ box-shadow: none;
194
+ }
195
+
196
+ .form-control:focus {
197
+ border-color: #23b7e5;
198
+ }
199
+
200
+ .form-control-spin {
201
+ position: absolute;
202
+ top: 50%;
203
+ right: 10px;
204
+ z-index: 2;
205
+ margin-top: -7px;
206
+ }
207
+
208
+ .input-lg {
209
+ height: 45px;
210
+ }
211
+
212
+ .input-group-addon {
213
+ background-color: #edf1f2;
214
+ border-color: #cfdadd;
215
+ }
216
+
217
+ .list-group {
218
+ border-radius: 2px;
219
+ }
220
+
221
+ .list-group.no-radius .list-group-item {
222
+ border-radius: 0 !important;
223
+ }
224
+
225
+ .list-group.no-borders .list-group-item {
226
+ border: none;
227
+ }
228
+
229
+ .list-group.no-border .list-group-item {
230
+ border-width: 1px 0;
231
+ }
232
+
233
+ .list-group.no-bg .list-group-item {
234
+ background-color: transparent;
235
+ }
236
+
237
+ .list-group-item {
238
+ padding-right: 15px;
239
+ border-color: #e7ecee;
240
+ }
241
+
242
+ a.list-group-item:hover,
243
+ a.list-group-item:focus,
244
+ a.list-group-item.hover {
245
+ background-color: #f6f8f8;
246
+ }
247
+
248
+ .list-group-item.media {
249
+ margin-top: 0;
250
+ }
251
+
252
+ .list-group-item.active {
253
+ color: #fff;
254
+ background-color: #23b7e5 !important;
255
+ border-color: #23b7e5 !important;
256
+ }
257
+
258
+ .list-group-item.active .text-muted {
259
+ color: #ace4f5 !important;
260
+ }
261
+
262
+ .list-group-item.active a {
263
+ color: #fff;
264
+ }
265
+
266
+ .list-group-item.focus {
267
+ background-color: #e4eaec !important;
268
+ }
269
+
270
+ .list-group-item.select {
271
+ position: relative;
272
+ z-index: 1;
273
+ background-color: #dbeef9 !important;
274
+ border-color: #c5e4f5;
275
+ }
276
+
277
+ .list-group-alt .list-group-item:nth-child(2n+2) {
278
+ background-color: rgba(0, 0, 0, 0.02) !important;
279
+ }
280
+
281
+ .list-group-lg .list-group-item {
282
+ padding-top: 15px;
283
+ padding-bottom: 15px;
284
+ }
285
+
286
+ .list-group-sm .list-group-item {
287
+ padding: 6px 10px;
288
+ }
289
+
290
+ .list-group-sp .list-group-item {
291
+ margin-bottom: 5px;
292
+ border-radius: 3px;
293
+ }
294
+
295
+ .list-group-item > .badge {
296
+ margin-right: 0;
297
+ }
298
+
299
+ .list-group-item > .fa-chevron-right {
300
+ float: right;
301
+ margin-top: 4px;
302
+ margin-right: -5px;
303
+ }
304
+
305
+ .list-group-item > .fa-chevron-right + .badge {
306
+ margin-right: 5px;
307
+ }
308
+
309
+ .nav-pills.no-radius > li > a {
310
+ border-radius: 0;
311
+ }
312
+
313
+ .nav-pills > li.active > a {
314
+ color: #fff !important;
315
+ background-color: #23b7e5;
316
+ }
317
+
318
+ .nav-pills > li.active > a:hover,
319
+ .nav-pills > li.active > a:active {
320
+ background-color: #19a9d5;
321
+ }
322
+
323
+ .nav > li > a:hover,
324
+ .nav > li > a:focus {
325
+ background-color: #f6f8f8;
326
+ }
327
+
328
+ .nav.nav-lg > li > a {
329
+ padding: 20px 20px;
330
+ }
331
+
332
+ .nav.nav-md > li > a {
333
+ padding: 15px 15px;
334
+ }
335
+
336
+ .nav.nav-sm > li > a {
337
+ padding: 6px 12px;
338
+ }
339
+
340
+ .nav.nav-xs > li > a {
341
+ padding: 4px 10px;
342
+ }
343
+
344
+ .nav.nav-xxs > li > a {
345
+ padding: 1px 10px;
346
+ }
347
+
348
+ .nav.nav-rounded > li > a {
349
+ border-radius: 20px;
350
+ }
351
+
352
+ .nav .open > a,
353
+ .nav .open > a:hover,
354
+ .nav .open > a:focus {
355
+ background-color: #f6f8f8;
356
+ }
357
+
358
+ .nav-tabs {
359
+ border-color: #dee5e7;
360
+ }
361
+
362
+ .nav-tabs > li > a {
363
+ border-bottom-color: #dee5e7;
364
+ border-radius: 2px 2px 0 0;
365
+ }
366
+
367
+ .nav-tabs > li:hover > a,
368
+ .nav-tabs > li.active > a,
369
+ .nav-tabs > li.active > a:hover {
370
+ border-color: #dee5e7;
371
+ }
372
+
373
+ .nav-tabs > li.active > a {
374
+ border-bottom-color: #fff !important;
375
+ }
376
+
377
+ .nav-tabs-alt .nav-tabs.nav-justified > li {
378
+ display: table-cell;
379
+ width: 1%;
380
+ }
381
+
382
+ .nav-tabs-alt .nav-tabs > li > a {
383
+ background: transparent !important;
384
+ border-color: transparent !important;
385
+ border-bottom-color: #dee5e7 !important;
386
+ border-radius: 0;
387
+ }
388
+
389
+ .nav-tabs-alt .nav-tabs > li.active > a {
390
+ border-bottom-color: #23b7e5 !important;
391
+ }
392
+
393
+ .tab-container {
394
+ margin-bottom: 15px;
395
+ }
396
+
397
+ .tab-container .tab-content {
398
+ padding: 15px;
399
+ background-color: #fff;
400
+ border: 1px solid #dee5e7;
401
+ border-top-width: 0;
402
+ border-radius: 0 0 2px 2px;
403
+ }
404
+
405
+ .pagination > li > a {
406
+ border-color: #dee5e7;
407
+ }
408
+
409
+ .pagination > li > a:hover,
410
+ .pagination > li > a:focus {
411
+ background-color: #edf1f2;
412
+ border-color: #dee5e7;
413
+ }
414
+
415
+ .panel {
416
+ border-radius: 2px;
417
+ }
418
+
419
+ .panel .accordion-toggle {
420
+ display: block;
421
+ font-size: 14px;
422
+ cursor: pointer;
423
+ }
424
+
425
+ .panel .list-group-item {
426
+ border-color: #edf1f2;
427
+ }
428
+
429
+ .panel.no-borders {
430
+ border-width: 0;
431
+ }
432
+
433
+ .panel.no-borders .panel-heading,
434
+ .panel.no-borders .panel-footer {
435
+ border-width: 0;
436
+ }
437
+
438
+ .panel-heading {
439
+ border-radius: 2px 2px 0 0;
440
+ }
441
+
442
+ .panel-default .panel-heading {
443
+ background-color: #f6f8f8;
444
+ }
445
+
446
+ .panel-heading.no-border {
447
+ margin: -1px -1px 0 -1px;
448
+ border: none;
449
+ }
450
+
451
+ .panel-heading .nav {
452
+ margin: -10px -15px;
453
+ }
454
+
455
+ .panel-heading .list-group {
456
+ background: transparent;
457
+ }
458
+
459
+ .panel-footer {
460
+ background-color: #ffffff;
461
+ border-color: #edf1f2;
462
+ border-radius: 0 0 2px 2px;
463
+ }
464
+
465
+ .panel-default {
466
+ border-color: #dee5e7;
467
+ }
468
+
469
+ .panel-default > .panel-heading,
470
+ .panel-default > .panel-footer {
471
+ border-color: #edf1f2;
472
+ }
473
+
474
+ .panel-group .panel-heading + .panel-collapse .panel-body {
475
+ border-top: 1px solid #eaedef;
476
+ }
477
+
478
+ .table > tbody > tr > td,
479
+ .table > tfoot > tr > td {
480
+ padding: 8px 15px;
481
+ border-top: 1px solid #eaeff0;
482
+ }
483
+
484
+ .table > thead > tr > th {
485
+ padding: 8px 15px;
486
+ border-bottom: 1px solid #eaeff0;
487
+ }
488
+
489
+ .table-bordered {
490
+ border-color: #eaeff0;
491
+ }
492
+
493
+ .table-bordered > tbody > tr > td {
494
+ border-color: #eaeff0;
495
+ }
496
+
497
+ .table-bordered > thead > tr > th {
498
+ border-color: #eaeff0;
499
+ }
500
+
501
+ .table-striped > tbody > tr:nth-child(odd) > td,
502
+ .table-striped > tbody > tr:nth-child(odd) > th {
503
+ background-color: #fafbfc;
504
+ }
505
+
506
+ .table-striped > thead > th {
507
+ background-color: #fafbfc;
508
+ border-right: 1px solid #eaeff0;
509
+ }
510
+
511
+ .table-striped > thead > th:last-child {
512
+ border-right: none;
513
+ }
514
+
515
+ .well,
516
+ pre {
517
+ background-color: #edf1f2;
518
+ border-color: #dee5e7;
519
+ }
520
+
521
+ .dropdown-menu {
522
+ border: 1px solid #dee5e7;
523
+ border: 1px solid rgba(0, 0, 0, 0.1);
524
+ border-radius: 2px;
525
+ -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
526
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
527
+ }
528
+
529
+ .dropdown-menu.pull-left {
530
+ left: 100%;
531
+ }
532
+
533
+ .dropdown-menu > .panel {
534
+ margin: -5px 0;
535
+ border: none;
536
+ }
537
+
538
+ .dropdown-menu > li > a {
539
+ padding: 5px 15px;
540
+ }
541
+
542
+ .dropdown-menu > li > a:hover,
543
+ .dropdown-menu > li > a:focus,
544
+ .dropdown-menu > .active > a,
545
+ .dropdown-menu > .active > a:hover,
546
+ .dropdown-menu > .active > a:focus {
547
+ color: #141719;
548
+ background-color: #edf1f2 !important;
549
+ background-image: none;
550
+ filter: none;
551
+ }
552
+
553
+ .dropdown-header {
554
+ padding: 5px 15px;
555
+ }
556
+
557
+ .dropdown-submenu {
558
+ position: relative;
559
+ }
560
+
561
+ .dropdown-submenu:hover > a,
562
+ .dropdown-submenu:focus > a {
563
+ color: #58666e;
564
+ background-color: #edf1f2 !important;
565
+ }
566
+
567
+ .dropdown-submenu:hover > .dropdown-menu,
568
+ .dropdown-submenu:focus > .dropdown-menu {
569
+ display: block;
570
+ }
571
+
572
+ .dropdown-submenu.pull-left {
573
+ float: none !important;
574
+ }
575
+
576
+ .dropdown-submenu.pull-left > .dropdown-menu {
577
+ left: -100%;
578
+ margin-left: 10px;
579
+ }
580
+
581
+ .dropdown-submenu .dropdown-menu {
582
+ top: 0;
583
+ left: 100%;
584
+ margin-top: -6px;
585
+ margin-left: -1px;
586
+ }
587
+
588
+ .dropup .dropdown-submenu > .dropdown-menu {
589
+ top: auto;
590
+ bottom: 0;
591
+ }
592
+
593
+ .btn-group > .btn {
594
+ margin-left: -1px;
595
+ }
596
+
597
+ /*cols*/
598
+
599
+ .col-lg-2-4 {
600
+ position: relative;
601
+ min-height: 1px;
602
+ padding-right: 15px;
603
+ padding-left: 15px;
604
+ }
605
+
606
+ .col-0 {
607
+ clear: left;
608
+ }
609
+
610
+ .row.no-gutter {
611
+ margin-right: 0;
612
+ margin-left: 0;
613
+ }
614
+
615
+ .no-gutter [class*="col"] {
616
+ padding: 0;
617
+ }
618
+
619
+ .row-sm {
620
+ margin-right: -10px;
621
+ margin-left: -10px;
622
+ }
623
+
624
+ .row-sm > div {
625
+ padding-right: 10px;
626
+ padding-left: 10px;
627
+ }
628
+
629
+ .modal-backdrop {
630
+ background-color: #3a3f51;
631
+ }
632
+
633
+ .modal-backdrop.in {
634
+ opacity: 0.8;
635
+ filter: alpha(opacity=80);
636
+ }
637
+
638
+ .modal-over {
639
+ position: fixed;
640
+ top: 0;
641
+ right: 0;
642
+ bottom: 0;
643
+ left: 0;
644
+ }
645
+
646
+ .modal-center {
647
+ position: absolute;
648
+ top: 50%;
649
+ left: 50%;
650
+ }
651
+
652
+ /*layout*/
653
+
654
+ html,
655
+ body {
656
+ width: 100%;
657
+ height: 100%;
658
+ }
659
+
660
+ body {
661
+ overflow-x: hidden;
662
+ }
663
+
664
+ .app {
665
+ position: relative;
666
+ width: 100%;
667
+ height: auto;
668
+ min-height: 100%;
669
+ }
670
+
671
+ .app-header-fixed {
672
+ padding-top: 50px;
673
+ }
674
+
675
+ .app-header-fixed .app-header {
676
+ position: fixed;
677
+ top: 0;
678
+ width: 100%;
679
+ }
680
+
681
+ .app-header {
682
+ z-index: 1025;
683
+ border-radius: 0;
684
+ }
685
+
686
+ .app-aside {
687
+ float: left;
688
+ }
689
+
690
+ .app-aside:before {
691
+ position: absolute;
692
+ top: 0;
693
+ bottom: 0;
694
+ z-index: -1;
695
+ width: inherit;
696
+ background-color: inherit;
697
+ border: inherit;
698
+ content: "";
699
+ }
700
+
701
+ .app-aside-right {
702
+ padding-bottom: 50px;
703
+ }
704
+
705
+ .app-content {
706
+ height: 100%;
707
+ }
708
+
709
+ .app-content:before,
710
+ .app-content:after {
711
+ display: table;
712
+ content: " ";
713
+ }
714
+
715
+ .app-content:after {
716
+ clear: both;
717
+ }
718
+
719
+ .app-content-full {
720
+ position: absolute;
721
+ top: 50px;
722
+ bottom: 50px;
723
+ width: auto !important;
724
+ height: auto;
725
+ padding: 0 !important;
726
+ overflow-y: auto;
727
+ -webkit-overflow-scrolling: touch;
728
+ }
729
+
730
+ .app-content-full.h-full {
731
+ bottom: 0;
732
+ height: auto;
733
+ }
734
+
735
+ .app-content-body {
736
+ float: left;
737
+ width: 100%;
738
+ padding-bottom: 50px;
739
+ }
740
+
741
+ .app-footer {
742
+ position: absolute;
743
+ right: 0;
744
+ bottom: 0;
745
+ left: 0;
746
+ z-index: 1005;
747
+ }
748
+
749
+ .hbox {
750
+ display: table;
751
+ width: 100%;
752
+ height: 100%;
753
+ border-spacing: 0;
754
+ table-layout: fixed;
755
+ }
756
+
757
+ .hbox .col {
758
+ display: table-cell;
759
+ float: none;
760
+ height: 100%;
761
+ vertical-align: top;
762
+ }
763
+
764
+ .v-middle {
765
+ vertical-align: middle !important;
766
+ }
767
+
768
+ .v-top {
769
+ vertical-align: top !important;
770
+ }
771
+
772
+ .v-bottom {
773
+ vertical-align: bottom !important;
774
+ }
775
+
776
+ .vbox {
777
+ position: relative;
778
+ display: table;
779
+ width: 100%;
780
+ height: 100%;
781
+ min-height: 240px;
782
+ border-spacing: 0;
783
+ }
784
+
785
+ .vbox .row-row {
786
+ display: table-row;
787
+ height: 100%;
788
+ }
789
+
790
+ .vbox .row-row .cell {
791
+ position: relative;
792
+ width: 100%;
793
+ height: 100%;
794
+ overflow: auto;
795
+ -webkit-overflow-scrolling: touch;
796
+ }
797
+
798
+ .ie .vbox .row-row .cell {
799
+ display: table-cell;
800
+ }
801
+
802
+ .vbox .row-row .cell .cell-inner {
803
+ position: absolute;
804
+ top: 0;
805
+ right: 0;
806
+ bottom: 0;
807
+ left: 0;
808
+ }
809
+
810
+ .navbar {
811
+ margin: 0;
812
+ border-width: 0;
813
+ border-radius: 0;
814
+ }
815
+
816
+ .navbar .navbar-form-sm {
817
+ margin-top: 10px;
818
+ margin-bottom: 10px;
819
+ }
820
+
821
+ .navbar-md {
822
+ min-height: 60px;
823
+ }
824
+
825
+ .navbar-md .navbar-btn {
826
+ margin-top: 13px;
827
+ }
828
+
829
+ .navbar-md .navbar-form {
830
+ margin-top: 15px;
831
+ }
832
+
833
+ .navbar-md .navbar-nav > li > a {
834
+ padding-top: 20px;
835
+ padding-bottom: 20px;
836
+ }
837
+
838
+ .navbar-md .navbar-brand {
839
+ line-height: 60px;
840
+ }
841
+
842
+ .navbar-header > button {
843
+ padding: 10px 17px;
844
+ font-size: 16px;
845
+ line-height: 30px;
846
+ text-decoration: none;
847
+ background-color: transparent;
848
+ border: none;
849
+ }
850
+
851
+ .navbar-brand {
852
+ display: inline-block;
853
+ float: none;
854
+ height: auto;
855
+ padding: 0 20px;
856
+ font-size: 20px;
857
+ font-weight: 700;
858
+ line-height: 50px;
859
+ text-align: center;
860
+ }
861
+
862
+ .navbar-brand:hover {
863
+ text-decoration: none;
864
+ }
865
+
866
+ .navbar-brand img {
867
+ max-height: 20px;
868
+ margin-top: -4px;
869
+ vertical-align: middle;
870
+ }
871
+
872
+ @media (min-width: 768px) {
873
+ .app-aside,
874
+ .navbar-header {
875
+ width: 200px;
876
+ }
877
+ .app-content,
878
+ .app-footer {
879
+ margin-left: 200px;
880
+ }
881
+ .app-aside-right {
882
+ position: absolute;
883
+ top: 50px;
884
+ right: 0;
885
+ bottom: 0;
886
+ z-index: 1000;
887
+ }
888
+ .app-aside-right.pos-fix {
889
+ z-index: 1010;
890
+ }
891
+ .visible-folded {
892
+ display: none;
893
+ }
894
+ .app-aside-folded .hidden-folded {
895
+ display: none !important;
896
+ }
897
+ .app-aside-folded .visible-folded {
898
+ display: inherit;
899
+ }
900
+ .app-aside-folded .text-center-folded {
901
+ text-align: center;
902
+ }
903
+ .app-aside-folded .pull-none-folded {
904
+ float: none !important;
905
+ }
906
+ .app-aside-folded .w-auto-folded {
907
+ width: auto;
908
+ }
909
+ .app-aside-folded .app-aside,
910
+ .app-aside-folded .navbar-header {
911
+ width: 60px;
912
+ }
913
+ .app-aside-folded .app-content,
914
+ .app-aside-folded .app-footer {
915
+ margin-left: 60px;
916
+ }
917
+ .app-aside-folded .app-header .navbar-brand {
918
+ display: block;
919
+ padding: 0;
920
+ }
921
+ .app-aside-fixed .app-header .navbar-header {
922
+ position: fixed;
923
+ }
924
+ .app-aside-fixed .app-header .navbar-collapse {
925
+ padding-left: 200px;
926
+ }
927
+ .app-aside-fixed .aside-wrap {
928
+ position: fixed;
929
+ top: 50px;
930
+ bottom: 0;
931
+ left: 0;
932
+ z-index: 1000;
933
+ width: 200px;
934
+ overflow: hidden;
935
+ }
936
+ .app-aside-fixed .aside-wrap .navi-wrap {
937
+ position: relative;
938
+ width: 217px;
939
+ height: 100%;
940
+ overflow-x: hidden;
941
+ overflow-y: scroll;
942
+ -webkit-overflow-scrolling: touch;
943
+ }
944
+ .app-aside-fixed .aside-wrap .navi-wrap::-webkit-scrollbar {
945
+ -webkit-appearance: none;
946
+ }
947
+ .app-aside-fixed .aside-wrap .navi-wrap::-webkit-scrollbar:vertical {
948
+ width: 17px;
949
+ }
950
+ .smart .app-aside-fixed .aside-wrap .navi-wrap {
951
+ width: 200px;
952
+ }
953
+ .app-aside-fixed.app-aside-folded .app-header .navbar-collapse {
954
+ padding-left: 60px;
955
+ }
956
+ .app-aside-fixed.app-aside-folded .app-aside {
957
+ position: fixed;
958
+ top: 0;
959
+ bottom: 0;
960
+ z-index: 1010;
961
+ }
962
+ .app-aside-fixed.app-aside-folded .aside-wrap {
963
+ width: 60px;
964
+ }
965
+ .app-aside-fixed.app-aside-folded .aside-wrap .navi-wrap {
966
+ width: 77px;
967
+ }
968
+ .smart .app-aside-fixed.app-aside-folded .aside-wrap .navi-wrap {
969
+ width: 60px;
970
+ }
971
+ .bg-auto:before {
972
+ position: absolute;
973
+ top: 0;
974
+ bottom: 0;
975
+ z-index: -2;
976
+ width: inherit;
977
+ background-color: inherit;
978
+ border: inherit;
979
+ content: "";
980
+ }
981
+ .col.show {
982
+ display: table-cell !important;
983
+ }
984
+ }
985
+
986
+ @media (min-width: 768px) and (max-width: 991px) {
987
+ .hbox-auto-sm {
988
+ display: block;
989
+ }
990
+ .hbox-auto-sm > .col {
991
+ display: block;
992
+ width: auto;
993
+ height: auto;
994
+ }
995
+ .hbox-auto-sm > .col.show {
996
+ display: block !important;
997
+ }
998
+ }
999
+
1000
+ @media (max-width: 767px) {
1001
+ .app-aside {
1002
+ float: none;
1003
+ }
1004
+ .app-content-full {
1005
+ width: 100% !important;
1006
+ }
1007
+ .hbox-auto-xs {
1008
+ display: block;
1009
+ }
1010
+ .hbox-auto-xs > .col {
1011
+ display: block;
1012
+ width: auto;
1013
+ height: auto;
1014
+ }
1015
+ .navbar-nav {
1016
+ margin-top: 0;
1017
+ margin-bottom: 0;
1018
+ }
1019
+ .navbar-nav > li > a {
1020
+ box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
1021
+ }
1022
+ .navbar-nav > li > a .up {
1023
+ top: 0;
1024
+ }
1025
+ .navbar-nav > li > a .avatar {
1026
+ width: 30px;
1027
+ margin-top: -5px;
1028
+ }
1029
+ .navbar-nav .open .dropdown-menu {
1030
+ background-color: #fff;
1031
+ }
1032
+ .navbar-form {
1033
+ margin-top: 0 !important;
1034
+ margin-bottom: 0 !important;
1035
+ box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
1036
+ }
1037
+ .navbar-form .form-group {
1038
+ margin-bottom: 0;
1039
+ }
1040
+ }
1041
+
1042
+ .app.container {
1043
+ padding-right: 0;
1044
+ padding-left: 0;
1045
+ }
1046
+
1047
+ @media (min-width: 768px) {
1048
+ .app.container {
1049
+ width: 750px;
1050
+ -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
1051
+ box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
1052
+ }
1053
+ .app.container .app-aside {
1054
+ overflow-x: hidden;
1055
+ }
1056
+ .app.container.app-aside-folded .app-aside {
1057
+ overflow-x: visible;
1058
+ }
1059
+ .app.container.app-aside-fixed .aside-wrap {
1060
+ left: inherit;
1061
+ }
1062
+ .app.container.app-aside-fixed.app-aside-folded .app-aside > ul.nav {
1063
+ position: absolute;
1064
+ }
1065
+ .app.container .app-header,
1066
+ .app.container .app-aside {
1067
+ max-width: 750px;
1068
+ }
1069
+ }
1070
+
1071
+ @media (min-width: 992px) {
1072
+ .app.container {
1073
+ width: 970px;
1074
+ }
1075
+ .app.container .app-header,
1076
+ .app.container .app-aside {
1077
+ max-width: 970px;
1078
+ }
1079
+ }
1080
+
1081
+ @media (min-width: 1200px) {
1082
+ .app.container {
1083
+ width: 1170px;
1084
+ }
1085
+ .app.container .app-header,
1086
+ .app.container .app-aside {
1087
+ max-width: 1170px;
1088
+ }
1089
+ }
1090
+
1091
+ .nav-sub {
1092
+ height: 0;
1093
+ margin-left: -20px;
1094
+ overflow: hidden;
1095
+ opacity: 0;
1096
+ -webkit-transition: all 0.2s ease-in-out 0s;
1097
+ transition: all 0.2s ease-in-out 0s;
1098
+ }
1099
+
1100
+ .active .nav-sub,
1101
+ .app-aside-folded li:hover .nav-sub,
1102
+ .app-aside-folded li:focus .nav-sub,
1103
+ .app-aside-folded li:active .nav-sub {
1104
+ height: auto !important;
1105
+ margin-left: 0;
1106
+ overflow: auto;
1107
+ opacity: 1;
1108
+ }
1109
+
1110
+ .nav-sub-header {
1111
+ display: none !important;
1112
+ }
1113
+
1114
+ .nav-sub-header a {
1115
+ padding: 15px 20px;
1116
+ }
1117
+
1118
+ .navi ul.nav li {
1119
+ position: relative;
1120
+ display: block;
1121
+ }
1122
+
1123
+ .navi ul.nav li li a {
1124
+ padding-left: 55px;
1125
+ }
1126
+
1127
+ .navi ul.nav li a {
1128
+ position: relative;
1129
+ display: block;
1130
+ padding: 10px 20px;
1131
+ font-weight: normal;
1132
+ text-transform: none;
1133
+ -webkit-transition: background-color 0.2s ease-in-out 0s;
1134
+ transition: background-color 0.2s ease-in-out 0s;
1135
+ }
1136
+
1137
+ .navi ul.nav li a .badge,
1138
+ .navi ul.nav li a .label {
1139
+ padding: 2px 5px;
1140
+ margin-top: 2px;
1141
+ font-size: 11px;
1142
+ }
1143
+
1144
+ .navi ul.nav li a > i {
1145
+ position: relative;
1146
+ float: left;
1147
+ width: 40px;
1148
+ margin: -10px -10px;
1149
+ margin-right: 5px;
1150
+ overflow: hidden;
1151
+ line-height: 40px;
1152
+ text-align: center;
1153
+ }
1154
+
1155
+ .navi ul.nav li a > i:before {
1156
+ position: relative;
1157
+ z-index: 2;
1158
+ }
1159
+
1160
+ @media (min-width: 768px) {
1161
+ .app-aside-folded .nav-sub-header {
1162
+ display: block !important;
1163
+ }
1164
+ .app-aside-folded .nav-sub-header a {
1165
+ padding: 15px 20px !important;
1166
+ }
1167
+ .app-aside-folded .navi > ul > li > a {
1168
+ position: relative;
1169
+ height: 50px;
1170
+ padding: 0;
1171
+ text-align: center;
1172
+ border: none;
1173
+ }
1174
+ .app-aside-folded .navi > ul > li > a span {
1175
+ display: none;
1176
+ }
1177
+ .app-aside-folded .navi > ul > li > a span.pull-right {
1178
+ display: none !important;
1179
+ }
1180
+ .app-aside-folded .navi > ul > li > a i {
1181
+ display: block;
1182
+ float: none;
1183
+ width: auto;
1184
+ margin: 0;
1185
+ font-size: 16px;
1186
+ line-height: 50px;
1187
+ border: none !important;
1188
+ -webkit-transition: margin-top 0.2s;
1189
+ transition: margin-top 0.2s;
1190
+ }
1191
+ .app-aside-folded .navi > ul > li > a i b {
1192
+ left: 0 !important;
1193
+ }
1194
+ .app-aside-folded .navi > ul > li > a .badge,
1195
+ .app-aside-folded .navi > ul > li > a .label {
1196
+ position: absolute;
1197
+ top: 8px;
1198
+ right: 12px;
1199
+ z-index: 3;
1200
+ }
1201
+ .app-aside-folded .navi > ul ul {
1202
+ position: absolute;
1203
+ top: 0 !important;
1204
+ left: 100%;
1205
+ z-index: 1050;
1206
+ width: 200px;
1207
+ height: 0 !important;
1208
+ -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
1209
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
1210
+ }
1211
+ .app-aside-folded .navi li li a {
1212
+ padding-left: 20px !important;
1213
+ }
1214
+ .app-aside-folded.app-aside-fixed .app-aside > ul.nav {
1215
+ position: fixed;
1216
+ left: 80px;
1217
+ z-index: 1010;
1218
+ display: block;
1219
+ width: 260px;
1220
+ height: auto;
1221
+ overflow: visible;
1222
+ overflow-y: auto;
1223
+ opacity: 1;
1224
+ -webkit-overflow-scrolling: touch;
1225
+ }
1226
+ .app-aside-folded.app-aside-fixed .app-aside > ul.nav:before {
1227
+ position: absolute;
1228
+ top: 0;
1229
+ left: -60px;
1230
+ width: 60px;
1231
+ height: 50px;
1232
+ content: "";
1233
+ }
1234
+ .app-aside-folded.app-aside-fixed .app-aside > ul.nav a {
1235
+ padding-right: 20px !important;
1236
+ padding-left: 20px !important;
1237
+ }
1238
+ }
1239
+
1240
+ @media (max-width: 767px) {
1241
+ .app {
1242
+ overflow-x: hidden;
1243
+ }
1244
+ .app-content {
1245
+ -webkit-transition: -webkit-transform 0.2s ease;
1246
+ -moz-transition: -moz-transform 0.2s ease;
1247
+ -o-transition: -o-transform 0.2s ease;
1248
+ transition: transform 0.2s ease;
1249
+ }
1250
+ .off-screen {
1251
+ position: absolute;
1252
+ top: 50px;
1253
+ bottom: 0;
1254
+ z-index: 1010;
1255
+ display: block !important;
1256
+ width: 75%;
1257
+ overflow-x: hidden;
1258
+ overflow-y: auto;
1259
+ visibility: visible;
1260
+ -webkit-overflow-scrolling: touch;
1261
+ }
1262
+ .off-screen + * {
1263
+ position: absolute;
1264
+ top: 0;
1265
+ right: 0;
1266
+ bottom: 0;
1267
+ left: 0;
1268
+ z-index: 1015;
1269
+ width: 100%;
1270
+ padding-top: 50px;
1271
+ overflow: hidden;
1272
+ background-color: #f0f3f4;
1273
+ -webkit-transform: translate3d(75%, 0, 0px);
1274
+ transform: translate3d(75%, 0, 0px);
1275
+ -webkit-transition: -webkit-transform 0.2s ease;
1276
+ -moz-transition: -moz-transform 0.2s ease;
1277
+ -o-transition: -o-transform 0.2s ease;
1278
+ transition: transform 0.2s ease;
1279
+ -webkit-backface-visibility: hidden;
1280
+ -moz-backface-visibility: hidden;
1281
+ backface-visibility: hidden;
1282
+ }
1283
+ .off-screen + * .off-screen-toggle {
1284
+ position: absolute;
1285
+ top: 0;
1286
+ right: 0;
1287
+ bottom: 0;
1288
+ left: 0;
1289
+ z-index: 1020;
1290
+ display: block !important;
1291
+ }
1292
+ .off-screen.pull-right {
1293
+ right: 0;
1294
+ }
1295
+ .off-screen.pull-right + * {
1296
+ -webkit-transform: translate3d(-75%, 0, 0px);
1297
+ transform: translate3d(-75%, 0, 0px);
1298
+ }
1299
+ }
1300
+
1301
+ @media (min-width: 992px) {
1302
+ .app-aside-dock .app-content,
1303
+ .app-aside-dock .app-footer {
1304
+ margin-left: 0;
1305
+ }
1306
+ .app-aside-dock.app-aside-fixed.app-header-fixed {
1307
+ padding-top: 115px;
1308
+ }
1309
+ .app-aside-dock.app-aside-fixed .app-aside {
1310
+ position: fixed;
1311
+ top: 50px;
1312
+ z-index: 1000;
1313
+ width: 100%;
1314
+ }
1315
+ .app-aside-dock .app-aside,
1316
+ .app-aside-dock .aside-wrap,
1317
+ .app-aside-dock .navi-wrap {
1318
+ position: relative;
1319
+ top: 0;
1320
+ float: none;
1321
+ width: 100% !important;
1322
+ overflow: visible !important;
1323
+ }
1324
+ .app-aside-dock .app-aside {
1325
+ bottom: auto !important;
1326
+ }
1327
+ .app-aside-dock .app-aside.b-r {
1328
+ border-bottom: 1px solid #dee5e7;
1329
+ border-right-width: 0;
1330
+ }
1331
+ .app-aside-dock .app-aside:before {
1332
+ display: none;
1333
+ }
1334
+ .app-aside-dock .app-aside .hidden-folded,
1335
+ .app-aside-dock .app-aside .line,
1336
+ .app-aside-dock .app-aside .navi-wrap > div {
1337
+ display: none !important;
1338
+ }
1339
+ .app-aside-dock .app-aside .navi > ul > li {
1340
+ position: relative;
1341
+ display: inline-block;
1342
+ float: left;
1343
+ }
1344
+ .app-aside-dock .app-aside .navi > ul > li > a {
1345
+ height: auto;
1346
+ padding: 10px 15px 12px 15px;
1347
+ text-align: center;
1348
+ }
1349
+ .app-aside-dock .app-aside .navi > ul > li > a > .badge,
1350
+ .app-aside-dock .app-aside .navi > ul > li > a > .label {
1351
+ position: absolute;
1352
+ top: 5px;
1353
+ right: 8px;
1354
+ padding: 1px 4px;
1355
+ }
1356
+ .app-aside-dock .app-aside .navi > ul > li > a > i {
1357
+ display: block;
1358
+ float: none;
1359
+ width: 40px;
1360
+ margin-top: -10px;
1361
+ margin-right: auto;
1362
+ margin-bottom: -7px;
1363
+ margin-left: auto;
1364
+ font-size: 14px;
1365
+ line-height: 40px;
1366
+ }
1367
+ .app-aside-dock .app-aside .navi > ul > li > a > span.pull-right {
1368
+ position: absolute;
1369
+ bottom: 2px;
1370
+ left: 50%;
1371
+ display: block !important;
1372
+ margin-left: -6px;
1373
+ line-height: 1;
1374
+ }
1375
+ .app-aside-dock .app-aside .navi > ul > li > a > span.pull-right i {
1376
+ width: 12px;
1377
+ font-size: 12px;
1378
+ line-height: 12px;
1379
+ }
1380
+ .app-aside-dock .app-aside .navi > ul > li > a > span.pull-right i.text {
1381
+ line-height: 14px;
1382
+ -webkit-transform: rotate(90deg);
1383
+ -ms-transform: rotate(90deg);
1384
+ transform: rotate(90deg);
1385
+ }
1386
+ .app-aside-dock .app-aside .navi > ul > li > a > span {
1387
+ display: block;
1388
+ font-weight: normal;
1389
+ }
1390
+ .app-aside-dock .app-aside .navi > ul > li .nav-sub {
1391
+ position: absolute;
1392
+ top: auto !important;
1393
+ left: 0;
1394
+ z-index: 1050;
1395
+ display: none;
1396
+ width: 200px;
1397
+ height: auto !important;
1398
+ -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
1399
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
1400
+ }
1401
+ .app-aside-dock .app-aside .navi > ul > li .nav-sub-header {
1402
+ display: none !important;
1403
+ }
1404
+ .app-aside-dock .app-aside .navi li li a {
1405
+ padding-left: 15px;
1406
+ }
1407
+ .app-aside-dock .app-aside .navi li:hover .nav-sub,
1408
+ .app-aside-dock .app-aside .navi li:focus .nav-sub,
1409
+ .app-aside-dock .app-aside .navi li:active .nav-sub {
1410
+ display: block;
1411
+ height: auto !important;
1412
+ margin-left: 0;
1413
+ overflow: auto;
1414
+ opacity: 1;
1415
+ }
1416
+ }
1417
+
1418
+ .arrow {
1419
+ z-index: 10;
1420
+ border-width: 9px;
1421
+ }
1422
+
1423
+ .arrow,
1424
+ .arrow:after {
1425
+ position: absolute;
1426
+ display: block;
1427
+ width: 0;
1428
+ height: 0;
1429
+ border-color: transparent;
1430
+ border-style: solid;
1431
+ }
1432
+
1433
+ .arrow:after {
1434
+ border-width: 8px;
1435
+ content: "";
1436
+ }
1437
+
1438
+ .arrow.top {
1439
+ top: -9px;
1440
+ left: 50%;
1441
+ margin-left: -9px;
1442
+ border-bottom-color: rgba(0, 0, 0, 0.1);
1443
+ border-top-width: 0;
1444
+ }
1445
+
1446
+ .arrow.top:after {
1447
+ top: 1px;
1448
+ margin-left: -8px;
1449
+ border-bottom-color: #ffffff;
1450
+ border-top-width: 0;
1451
+ }
1452
+
1453
+ .arrow.top.arrow-primary:after {
1454
+ border-bottom-color: #ff8503;
1455
+ }
1456
+
1457
+ .arrow.top.arrow-info:after {
1458
+ border-bottom-color: #23b7e5;
1459
+ }
1460
+
1461
+ .arrow.top.arrow-success:after {
1462
+ border-bottom-color: #27c24c;
1463
+ }
1464
+
1465
+ .arrow.top.arrow-danger:after {
1466
+ border-bottom-color: #f05050;
1467
+ }
1468
+
1469
+ .arrow.top.arrow-warning:after {
1470
+ border-bottom-color: #fad733;
1471
+ }
1472
+
1473
+ .arrow.top.arrow-light:after {
1474
+ border-bottom-color: #edf1f2;
1475
+ }
1476
+
1477
+ .arrow.top.arrow-dark:after {
1478
+ border-bottom-color: #3a3f51;
1479
+ }
1480
+
1481
+ .arrow.top.arrow-black:after {
1482
+ border-bottom-color: #1c2b36;
1483
+ }
1484
+
1485
+ .arrow.right {
1486
+ top: 50%;
1487
+ right: -9px;
1488
+ margin-top: -9px;
1489
+ border-left-color: rgba(0, 0, 0, 0.1);
1490
+ border-right-width: 0;
1491
+ }
1492
+
1493
+ .arrow.right:after {
1494
+ right: 1px;
1495
+ bottom: -8px;
1496
+ border-left-color: #ffffff;
1497
+ border-right-width: 0;
1498
+ }
1499
+
1500
+ .arrow.right.arrow-primary:after {
1501
+ border-left-color: #ff8503;
1502
+ }
1503
+
1504
+ .arrow.right.arrow-info:after {
1505
+ border-left-color: #23b7e5;
1506
+ }
1507
+
1508
+ .arrow.right.arrow-success:after {
1509
+ border-left-color: #27c24c;
1510
+ }
1511
+
1512
+ .arrow.right.arrow-danger:after {
1513
+ border-left-color: #f05050;
1514
+ }
1515
+
1516
+ .arrow.right.arrow-warning:after {
1517
+ border-left-color: #fad733;
1518
+ }
1519
+
1520
+ .arrow.right.arrow-light:after {
1521
+ border-left-color: #edf1f2;
1522
+ }
1523
+
1524
+ .arrow.right.arrow-dark:after {
1525
+ border-left-color: #3a3f51;
1526
+ }
1527
+
1528
+ .arrow.right.arrow-black:after {
1529
+ border-left-color: #1c2b36;
1530
+ }
1531
+
1532
+ .arrow.bottom {
1533
+ bottom: -9px;
1534
+ left: 50%;
1535
+ margin-left: -9px;
1536
+ border-top-color: rgba(0, 0, 0, 0.1);
1537
+ border-bottom-width: 0;
1538
+ }
1539
+
1540
+ .arrow.bottom:after {
1541
+ bottom: 1px;
1542
+ margin-left: -8px;
1543
+ border-top-color: #ffffff;
1544
+ border-bottom-width: 0;
1545
+ }
1546
+
1547
+ .arrow.bottom.arrow-primary:after {
1548
+ border-top-color: #ff8503;
1549
+ }
1550
+
1551
+ .arrow.bottom.arrow-info:after {
1552
+ border-top-color: #23b7e5;
1553
+ }
1554
+
1555
+ .arrow.bottom.arrow-success:after {
1556
+ border-top-color: #27c24c;
1557
+ }
1558
+
1559
+ .arrow.bottom.arrow-danger:after {
1560
+ border-top-color: #f05050;
1561
+ }
1562
+
1563
+ .arrow.bottom.arrow-warning:after {
1564
+ border-top-color: #fad733;
1565
+ }
1566
+
1567
+ .arrow.bottom.arrow-light:after {
1568
+ border-top-color: #edf1f2;
1569
+ }
1570
+
1571
+ .arrow.bottom.arrow-dark:after {
1572
+ border-top-color: #3a3f51;
1573
+ }
1574
+
1575
+ .arrow.bottom.arrow-black:after {
1576
+ border-top-color: #1c2b36;
1577
+ }
1578
+
1579
+ .arrow.left {
1580
+ top: 50%;
1581
+ left: -9px;
1582
+ margin-top: -9px;
1583
+ border-right-color: rgba(0, 0, 0, 0.1);
1584
+ border-left-width: 0;
1585
+ }
1586
+
1587
+ .arrow.left:after {
1588
+ bottom: -8px;
1589
+ left: 1px;
1590
+ border-right-color: #ffffff;
1591
+ border-left-width: 0;
1592
+ }
1593
+
1594
+ .arrow.left.arrow-primary:after {
1595
+ border-right-color: #ff8503;
1596
+ }
1597
+
1598
+ .arrow.left.arrow-info:after {
1599
+ border-right-color: #23b7e5;
1600
+ }
1601
+
1602
+ .arrow.left.arrow-success:after {
1603
+ border-right-color: #27c24c;
1604
+ }
1605
+
1606
+ .arrow.left.arrow-danger:after {
1607
+ border-right-color: #f05050;
1608
+ }
1609
+
1610
+ .arrow.left.arrow-warning:after {
1611
+ border-right-color: #fad733;
1612
+ }
1613
+
1614
+ .arrow.left.arrow-light:after {
1615
+ border-right-color: #edf1f2;
1616
+ }
1617
+
1618
+ .arrow.left.arrow-dark:after {
1619
+ border-right-color: #3a3f51;
1620
+ }
1621
+
1622
+ .arrow.left.arrow-black:after {
1623
+ border-right-color: #1c2b36;
1624
+ }
1625
+
1626
+ .arrow.pull-left {
1627
+ left: 19px;
1628
+ }
1629
+
1630
+ .arrow.pull-right {
1631
+ right: 19px;
1632
+ left: auto;
1633
+ }
1634
+
1635
+ .arrow.pull-up {
1636
+ top: 19px;
1637
+ }
1638
+
1639
+ .arrow.pull-down {
1640
+ top: auto;
1641
+ bottom: 19px;
1642
+ }
1643
+
1644
+ .btn {
1645
+ font-weight: 500;
1646
+ border-radius: 2px;
1647
+ outline: 0!important;
1648
+ }
1649
+
1650
+ .btn-link {
1651
+ color: #58666e;
1652
+ }
1653
+
1654
+ .btn-link.active {
1655
+ box-shadow: none;
1656
+ webkit-box-shadow: none;
1657
+ }
1658
+
1659
+ .btn-default {
1660
+ color: #58666e !important;
1661
+ background-color: #fcfdfd;
1662
+ background-color: #fff;
1663
+ border-color: #dee5e7;
1664
+ border-bottom-color: #d8e1e3;
1665
+ -webkit-box-shadow: 0 1px 1px rgba(90, 90, 90, 0.1);
1666
+ box-shadow: 0 1px 1px rgba(90, 90, 90, 0.1);
1667
+ }
1668
+
1669
+ .btn-default:hover,
1670
+ .btn-default:focus,
1671
+ .btn-default:active,
1672
+ .btn-default.active,
1673
+ .open .dropdown-toggle.btn-default {
1674
+ color: #58666e !important;
1675
+ background-color: #edf1f2;
1676
+ border-color: #c7d3d6;
1677
+ }
1678
+
1679
+ .btn-default:active,
1680
+ .btn-default.active,
1681
+ .open .dropdown-toggle.btn-default {
1682
+ background-image: none;
1683
+ }
1684
+
1685
+ .btn-default.disabled,
1686
+ .btn-default[disabled],
1687
+ fieldset[disabled] .btn-default,
1688
+ .btn-default.disabled:hover,
1689
+ .btn-default[disabled]:hover,
1690
+ fieldset[disabled] .btn-default:hover,
1691
+ .btn-default.disabled:focus,
1692
+ .btn-default[disabled]:focus,
1693
+ fieldset[disabled] .btn-default:focus,
1694
+ .btn-default.disabled:active,
1695
+ .btn-default[disabled]:active,
1696
+ fieldset[disabled] .btn-default:active,
1697
+ .btn-default.disabled.active,
1698
+ .btn-default[disabled].active,
1699
+ fieldset[disabled] .btn-default.active {
1700
+ background-color: #fcfdfd;
1701
+ border-color: #dee5e7;
1702
+ }
1703
+
1704
+ .btn-default.btn-bg {
1705
+ border-color: rgba(0, 0, 0, 0.1);
1706
+ background-clip: padding-box;
1707
+ }
1708
+
1709
+ .btn-primary {
1710
+ color: #ffffff !important;
1711
+ background-color: #ff8503;
1712
+ border-color: #ff8503;
1713
+ }
1714
+
1715
+ .btn-primary:hover,
1716
+ .btn-primary:focus,
1717
+ .btn-primary:active,
1718
+ .btn-primary.active,
1719
+ .open .dropdown-toggle.btn-primary {
1720
+ color: #ffffff !important;
1721
+ background-color: #e97800;
1722
+ border-color: #d97000;
1723
+ }
1724
+
1725
+ .btn-primary:active,
1726
+ .btn-primary.active,
1727
+ .open .dropdown-toggle.btn-primary {
1728
+ background-image: none;
1729
+ }
1730
+
1731
+ .btn-primary.disabled,
1732
+ .btn-primary[disabled],
1733
+ fieldset[disabled] .btn-primary,
1734
+ .btn-primary.disabled:hover,
1735
+ .btn-primary[disabled]:hover,
1736
+ fieldset[disabled] .btn-primary:hover,
1737
+ .btn-primary.disabled:focus,
1738
+ .btn-primary[disabled]:focus,
1739
+ fieldset[disabled] .btn-primary:focus,
1740
+ .btn-primary.disabled:active,
1741
+ .btn-primary[disabled]:active,
1742
+ fieldset[disabled] .btn-primary:active,
1743
+ .btn-primary.disabled.active,
1744
+ .btn-primary[disabled].active,
1745
+ fieldset[disabled] .btn-primary.active {
1746
+ background-color: #ff8503;
1747
+ border-color: #ff8503;
1748
+ }
1749
+
1750
+ .btn-success {
1751
+ color: #ffffff !important;
1752
+ background-color: #27c24c;
1753
+ border-color: #27c24c;
1754
+ }
1755
+
1756
+ .btn-success:hover,
1757
+ .btn-success:focus,
1758
+ .btn-success:active,
1759
+ .btn-success.active,
1760
+ .open .dropdown-toggle.btn-success {
1761
+ color: #ffffff !important;
1762
+ background-color: #23ad44;
1763
+ border-color: #20a03f;
1764
+ }
1765
+
1766
+ .btn-success:active,
1767
+ .btn-success.active,
1768
+ .open .dropdown-toggle.btn-success {
1769
+ background-image: none;
1770
+ }
1771
+
1772
+ .btn-success.disabled,
1773
+ .btn-success[disabled],
1774
+ fieldset[disabled] .btn-success,
1775
+ .btn-success.disabled:hover,
1776
+ .btn-success[disabled]:hover,
1777
+ fieldset[disabled] .btn-success:hover,
1778
+ .btn-success.disabled:focus,
1779
+ .btn-success[disabled]:focus,
1780
+ fieldset[disabled] .btn-success:focus,
1781
+ .btn-success.disabled:active,
1782
+ .btn-success[disabled]:active,
1783
+ fieldset[disabled] .btn-success:active,
1784
+ .btn-success.disabled.active,
1785
+ .btn-success[disabled].active,
1786
+ fieldset[disabled] .btn-success.active {
1787
+ background-color: #27c24c;
1788
+ border-color: #27c24c;
1789
+ }
1790
+
1791
+ .btn-info {
1792
+ color: #ffffff !important;
1793
+ background-color: #23b7e5;
1794
+ border-color: #23b7e5;
1795
+ }
1796
+
1797
+ .btn-info:hover,
1798
+ .btn-info:focus,
1799
+ .btn-info:active,
1800
+ .btn-info.active,
1801
+ .open .dropdown-toggle.btn-info {
1802
+ color: #ffffff !important;
1803
+ background-color: #19a9d5;
1804
+ border-color: #189ec8;
1805
+ }
1806
+
1807
+ .btn-info:active,
1808
+ .btn-info.active,
1809
+ .open .dropdown-toggle.btn-info {
1810
+ background-image: none;
1811
+ }
1812
+
1813
+ .btn-info.disabled,
1814
+ .btn-info[disabled],
1815
+ fieldset[disabled] .btn-info,
1816
+ .btn-info.disabled:hover,
1817
+ .btn-info[disabled]:hover,
1818
+ fieldset[disabled] .btn-info:hover,
1819
+ .btn-info.disabled:focus,
1820
+ .btn-info[disabled]:focus,
1821
+ fieldset[disabled] .btn-info:focus,
1822
+ .btn-info.disabled:active,
1823
+ .btn-info[disabled]:active,
1824
+ fieldset[disabled] .btn-info:active,
1825
+ .btn-info.disabled.active,
1826
+ .btn-info[disabled].active,
1827
+ fieldset[disabled] .btn-info.active {
1828
+ background-color: #23b7e5;
1829
+ border-color: #23b7e5;
1830
+ }
1831
+
1832
+ .btn-warning {
1833
+ color: #ffffff !important;
1834
+ background-color: #fad733;
1835
+ border-color: #fad733;
1836
+ }
1837
+
1838
+ .btn-warning:hover,
1839
+ .btn-warning:focus,
1840
+ .btn-warning:active,
1841
+ .btn-warning.active,
1842
+ .open .dropdown-toggle.btn-warning {
1843
+ color: #ffffff !important;
1844
+ background-color: #f9d21a;
1845
+ border-color: #f9cf0b;
1846
+ }
1847
+
1848
+ .btn-warning:active,
1849
+ .btn-warning.active,
1850
+ .open .dropdown-toggle.btn-warning {
1851
+ background-image: none;
1852
+ }
1853
+
1854
+ .btn-warning.disabled,
1855
+ .btn-warning[disabled],
1856
+ fieldset[disabled] .btn-warning,
1857
+ .btn-warning.disabled:hover,
1858
+ .btn-warning[disabled]:hover,
1859
+ fieldset[disabled] .btn-warning:hover,
1860
+ .btn-warning.disabled:focus,
1861
+ .btn-warning[disabled]:focus,
1862
+ fieldset[disabled] .btn-warning:focus,
1863
+ .btn-warning.disabled:active,
1864
+ .btn-warning[disabled]:active,
1865
+ fieldset[disabled] .btn-warning:active,
1866
+ .btn-warning.disabled.active,
1867
+ .btn-warning[disabled].active,
1868
+ fieldset[disabled] .btn-warning.active {
1869
+ background-color: #fad733;
1870
+ border-color: #fad733;
1871
+ }
1872
+
1873
+ .btn-danger {
1874
+ color: #ffffff !important;
1875
+ background-color: #f05050;
1876
+ border-color: #f05050;
1877
+ }
1878
+
1879
+ .btn-danger:hover,
1880
+ .btn-danger:focus,
1881
+ .btn-danger:active,
1882
+ .btn-danger.active,
1883
+ .open .dropdown-toggle.btn-danger {
1884
+ color: #ffffff !important;
1885
+ background-color: #ee3939;
1886
+ border-color: #ed2a2a;
1887
+ }
1888
+
1889
+ .btn-danger:active,
1890
+ .btn-danger.active,
1891
+ .open .dropdown-toggle.btn-danger {
1892
+ background-image: none;
1893
+ }
1894
+
1895
+ .btn-danger.disabled,
1896
+ .btn-danger[disabled],
1897
+ fieldset[disabled] .btn-danger,
1898
+ .btn-danger.disabled:hover,
1899
+ .btn-danger[disabled]:hover,
1900
+ fieldset[disabled] .btn-danger:hover,
1901
+ .btn-danger.disabled:focus,
1902
+ .btn-danger[disabled]:focus,
1903
+ fieldset[disabled] .btn-danger:focus,
1904
+ .btn-danger.disabled:active,
1905
+ .btn-danger[disabled]:active,
1906
+ fieldset[disabled] .btn-danger:active,
1907
+ .btn-danger.disabled.active,
1908
+ .btn-danger[disabled].active,
1909
+ fieldset[disabled] .btn-danger.active {
1910
+ background-color: #f05050;
1911
+ border-color: #f05050;
1912
+ }
1913
+
1914
+ .btn-dark {
1915
+ color: #ffffff !important;
1916
+ background-color: #3a3f51;
1917
+ border-color: #3a3f51;
1918
+ }
1919
+
1920
+ .btn-dark:hover,
1921
+ .btn-dark:focus,
1922
+ .btn-dark:active,
1923
+ .btn-dark.active,
1924
+ .open .dropdown-toggle.btn-dark {
1925
+ color: #ffffff !important;
1926
+ background-color: #2f3342;
1927
+ border-color: #292d39;
1928
+ }
1929
+
1930
+ .btn-dark:active,
1931
+ .btn-dark.active,
1932
+ .open .dropdown-toggle.btn-dark {
1933
+ background-image: none;
1934
+ }
1935
+
1936
+ .btn-dark.disabled,
1937
+ .btn-dark[disabled],
1938
+ fieldset[disabled] .btn-dark,
1939
+ .btn-dark.disabled:hover,
1940
+ .btn-dark[disabled]:hover,
1941
+ fieldset[disabled] .btn-dark:hover,
1942
+ .btn-dark.disabled:focus,
1943
+ .btn-dark[disabled]:focus,
1944
+ fieldset[disabled] .btn-dark:focus,
1945
+ .btn-dark.disabled:active,
1946
+ .btn-dark[disabled]:active,
1947
+ fieldset[disabled] .btn-dark:active,
1948
+ .btn-dark.disabled.active,
1949
+ .btn-dark[disabled].active,
1950
+ fieldset[disabled] .btn-dark.active {
1951
+ background-color: #3a3f51;
1952
+ border-color: #3a3f51;
1953
+ }
1954
+
1955
+ .btn-black {
1956
+ color: #ffffff !important;
1957
+ background-color: #1c2b36;
1958
+ border-color: #1c2b36;
1959
+ }
1960
+
1961
+ .btn-black:hover,
1962
+ .btn-black:focus,
1963
+ .btn-black:active,
1964
+ .btn-black.active,
1965
+ .open .dropdown-toggle.btn-black {
1966
+ color: #ffffff !important;
1967
+ background-color: #131e25;
1968
+ border-color: #0e161b;
1969
+ }
1970
+
1971
+ .btn-black:active,
1972
+ .btn-black.active,
1973
+ .open .dropdown-toggle.btn-black {
1974
+ background-image: none;
1975
+ }
1976
+
1977
+ .btn-black.disabled,
1978
+ .btn-black[disabled],
1979
+ fieldset[disabled] .btn-black,
1980
+ .btn-black.disabled:hover,
1981
+ .btn-black[disabled]:hover,
1982
+ fieldset[disabled] .btn-black:hover,
1983
+ .btn-black.disabled:focus,
1984
+ .btn-black[disabled]:focus,
1985
+ fieldset[disabled] .btn-black:focus,
1986
+ .btn-black.disabled:active,
1987
+ .btn-black[disabled]:active,
1988
+ fieldset[disabled] .btn-black:active,
1989
+ .btn-black.disabled.active,
1990
+ .btn-black[disabled].active,
1991
+ fieldset[disabled] .btn-black.active {
1992
+ background-color: #1c2b36;
1993
+ border-color: #1c2b36;
1994
+ }
1995
+
1996
+ .btn-icon {
1997
+ width: 34px;
1998
+ height: 34px;
1999
+ padding: 0 !important;
2000
+ text-align: center;
2001
+ }
2002
+
2003
+ .btn-icon i {
2004
+ position: relative;
2005
+ top: -1px;
2006
+ line-height: 34px;
2007
+ }
2008
+
2009
+ .btn-icon.btn-sm {
2010
+ width: 30px;
2011
+ height: 30px;
2012
+ }
2013
+
2014
+ .btn-icon.btn-sm i {
2015
+ line-height: 30px;
2016
+ }
2017
+
2018
+ .btn-icon.btn-lg {
2019
+ width: 45px;
2020
+ height: 45px;
2021
+ }
2022
+
2023
+ .btn-icon.btn-lg i {
2024
+ line-height: 45px;
2025
+ }
2026
+
2027
+ .btn-rounded {
2028
+ padding-right: 15px;
2029
+ padding-left: 15px;
2030
+ border-radius: 50px;
2031
+ }
2032
+
2033
+ .btn-rounded.btn-lg {
2034
+ padding-right: 25px;
2035
+ padding-left: 25px;
2036
+ }
2037
+
2038
+ .btn > i.pull-left,
2039
+ .btn > i.pull-right {
2040
+ line-height: 1.42857143;
2041
+ }
2042
+
2043
+ .btn-block {
2044
+ padding-right: 12px;
2045
+ padding-left: 12px;
2046
+ }
2047
+
2048
+ .btn-group-vertical > .btn:first-child:not(:last-child) {
2049
+ border-top-right-radius: 2px;
2050
+ }
2051
+
2052
+ .btn-group-vertical > .btn:last-child:not(:first-child) {
2053
+ border-bottom-left-radius: 2px;
2054
+ }
2055
+
2056
+ .btn-addon i {
2057
+ position: relative;
2058
+ float: left;
2059
+ width: 34px;
2060
+ height: 34px;
2061
+ margin: -7px -12px;
2062
+ margin-right: 12px;
2063
+ line-height: 34px;
2064
+ text-align: center;
2065
+ background-color: rgba(0, 0, 0, 0.1);
2066
+ border-radius: 2px 0 0 2px;
2067
+ }
2068
+
2069
+ .btn-addon i.pull-right {
2070
+ margin-right: -12px;
2071
+ margin-left: 12px;
2072
+ border-radius: 0 2px 2px 0;
2073
+ }
2074
+
2075
+ .btn-addon.btn-sm i {
2076
+ width: 30px;
2077
+ height: 30px;
2078
+ margin: -6px -10px;
2079
+ margin-right: 10px;
2080
+ line-height: 30px;
2081
+ }
2082
+
2083
+ .btn-addon.btn-sm i.pull-right {
2084
+ margin-right: -10px;
2085
+ margin-left: 10px;
2086
+ }
2087
+
2088
+ .btn-addon.btn-lg i {
2089
+ width: 45px;
2090
+ height: 45px;
2091
+ margin: -11px -16px;
2092
+ margin-right: 16px;
2093
+ line-height: 45px;
2094
+ }
2095
+
2096
+ .btn-addon.btn-lg i.pull-right {
2097
+ margin-right: -16px;
2098
+ margin-left: 16px;
2099
+ }
2100
+
2101
+ .btn-addon.btn-default i {
2102
+ background-color: transparent;
2103
+ border-right: 1px solid #dee5e7;
2104
+ }
2105
+
2106
+ .list-icon i {
2107
+ display: inline-block;
2108
+ width: 40px;
2109
+ margin: 0;
2110
+ font-size: 14px;
2111
+ text-align: center;
2112
+ vertical-align: middle;
2113
+ -webkit-transition: font-size 0.2s;
2114
+ transition: font-size 0.2s;
2115
+ }
2116
+
2117
+ .list-icon div {
2118
+ line-height: 40px;
2119
+ white-space: nowrap;
2120
+ }
2121
+
2122
+ .list-icon div:hover i {
2123
+ font-size: 26px;
2124
+ }
2125
+
2126
+ .settings {
2127
+ position: fixed;
2128
+ top: 120px;
2129
+ right: -240px;
2130
+ z-index: 1050;
2131
+ width: 240px;
2132
+ -webkit-transition: right 0.2s;
2133
+ transition: right 0.2s;
2134
+ }
2135
+
2136
+ .settings.active {
2137
+ right: -1px;
2138
+ }
2139
+
2140
+ .settings > .btn {
2141
+ position: absolute;
2142
+ top: -1px;
2143
+ left: -42px;
2144
+ padding: 10px 15px;
2145
+ background: #f6f8f8 !important;
2146
+ border-color: #dee5e7;
2147
+ border-right-width: 0;
2148
+ }
2149
+
2150
+ .settings .i-checks span b {
2151
+ display: inline-block;
2152
+ float: left;
2153
+ width: 50%;
2154
+ height: 20px;
2155
+ }
2156
+
2157
+ .settings .i-checks span b.header {
2158
+ height: 10px;
2159
+ }
2160
+
2161
+ .streamline {
2162
+ position: relative;
2163
+ border-color: #dee5e7;
2164
+ }
2165
+
2166
+ .streamline .sl-item:after,
2167
+ .streamline:after {
2168
+ position: absolute;
2169
+ bottom: 0;
2170
+ left: 0;
2171
+ width: 9px;
2172
+ height: 9px;
2173
+ margin-left: -5px;
2174
+ background-color: #fff;
2175
+ border-color: inherit;
2176
+ border-style: solid;
2177
+ border-width: 1px;
2178
+ border-radius: 10px;
2179
+ content: '';
2180
+ }
2181
+
2182
+ .sl-item {
2183
+ position: relative;
2184
+ padding-bottom: 1px;
2185
+ border-color: #dee5e7;
2186
+ }
2187
+
2188
+ .sl-item:before,
2189
+ .sl-item:after {
2190
+ display: table;
2191
+ content: " ";
2192
+ }
2193
+
2194
+ .sl-item:after {
2195
+ clear: both;
2196
+ }
2197
+
2198
+ .sl-item:after {
2199
+ top: 6px;
2200
+ bottom: auto;
2201
+ }
2202
+
2203
+ .sl-item.b-l {
2204
+ margin-left: -1px;
2205
+ }
2206
+
2207
+ .timeline {
2208
+ padding: 0;
2209
+ margin: 0;
2210
+ }
2211
+
2212
+ .tl-item {
2213
+ display: block;
2214
+ }
2215
+
2216
+ .tl-item:before,
2217
+ .tl-item:after {
2218
+ display: table;
2219
+ content: " ";
2220
+ }
2221
+
2222
+ .tl-item:after {
2223
+ clear: both;
2224
+ }
2225
+
2226
+ .visible-left {
2227
+ display: none;
2228
+ }
2229
+
2230
+ .tl-wrap {
2231
+ display: block;
2232
+ padding: 15px 0 15px 20px;
2233
+ margin-left: 6em;
2234
+ border-color: #dee5e7;
2235
+ border-style: solid;
2236
+ border-width: 0 0 0 4px;
2237
+ }
2238
+
2239
+ .tl-wrap:before,
2240
+ .tl-wrap:after {
2241
+ display: table;
2242
+ content: " ";
2243
+ }
2244
+
2245
+ .tl-wrap:after {
2246
+ clear: both;
2247
+ }
2248
+
2249
+ .tl-wrap:before {
2250
+ position: relative;
2251
+ top: 15px;
2252
+ float: left;
2253
+ width: 10px;
2254
+ height: 10px;
2255
+ margin-left: -27px;
2256
+ background: #edf1f2;
2257
+ border-color: inherit;
2258
+ border-style: solid;
2259
+ border-width: 3px;
2260
+ border-radius: 50%;
2261
+ content: "";
2262
+ box-shadow: 0 0 0 4px #f0f3f4;
2263
+ }
2264
+
2265
+ .tl-wrap:hover:before {
2266
+ background: transparent;
2267
+ border-color: #fff;
2268
+ }
2269
+
2270
+ .tl-date {
2271
+ position: relative;
2272
+ top: 10px;
2273
+ display: block;
2274
+ float: left;
2275
+ width: 4.5em;
2276
+ margin-left: -7.5em;
2277
+ text-align: right;
2278
+ }
2279
+
2280
+ .tl-content {
2281
+ position: relative;
2282
+ display: inline-block;
2283
+ padding-top: 10px;
2284
+ padding-bottom: 10px;
2285
+ }
2286
+
2287
+ .tl-content.block {
2288
+ display: block;
2289
+ width: 100%;
2290
+ }
2291
+
2292
+ .tl-content.panel {
2293
+ margin-bottom: 0;
2294
+ }
2295
+
2296
+ .tl-header {
2297
+ display: block;
2298
+ width: 12em;
2299
+ margin-left: 2px;
2300
+ text-align: center;
2301
+ }
2302
+
2303
+ .timeline-center .tl-item {
2304
+ margin-left: 50%;
2305
+ }
2306
+
2307
+ .timeline-center .tl-item .tl-wrap {
2308
+ margin-left: -2px;
2309
+ }
2310
+
2311
+ .timeline-center .tl-header {
2312
+ width: auto;
2313
+ margin: 0;
2314
+ }
2315
+
2316
+ .timeline-center .tl-left {
2317
+ margin-right: 50%;
2318
+ margin-left: 0;
2319
+ }
2320
+
2321
+ .timeline-center .tl-left .hidden-left {
2322
+ display: none !important;
2323
+ }
2324
+
2325
+ .timeline-center .tl-left .visible-left {
2326
+ display: inherit;
2327
+ }
2328
+
2329
+ .timeline-center .tl-left .tl-wrap {
2330
+ float: right;
2331
+ padding-right: 20px;
2332
+ padding-left: 0;
2333
+ margin-right: -2px;
2334
+ border-right-width: 4px;
2335
+ border-left-width: 0;
2336
+ }
2337
+
2338
+ .timeline-center .tl-left .tl-wrap:before {
2339
+ float: right;
2340
+ margin-right: -27px;
2341
+ margin-left: 0;
2342
+ }
2343
+
2344
+ .timeline-center .tl-left .tl-date {
2345
+ float: right;
2346
+ margin-right: -8.5em;
2347
+ margin-left: 0;
2348
+ text-align: left;
2349
+ }
2350
+
2351
+ .i-switch {
2352
+ position: relative;
2353
+ display: inline-block;
2354
+ width: 35px;
2355
+ height: 20px;
2356
+ margin: 0;
2357
+ cursor: pointer;
2358
+ background-color: #27c24c;
2359
+ border-radius: 30px;
2360
+ }
2361
+
2362
+ .i-switch input {
2363
+ position: absolute;
2364
+ opacity: 0;
2365
+ filter: alpha(opacity=0);
2366
+ }
2367
+
2368
+ .i-switch input:checked + i:before {
2369
+ top: 50%;
2370
+ right: 5px;
2371
+ bottom: 50%;
2372
+ left: 50%;
2373
+ border-width: 0;
2374
+ border-radius: 5px;
2375
+ }
2376
+
2377
+ .i-switch input:checked + i:after {
2378
+ margin-left: 16px;
2379
+ }
2380
+
2381
+ .i-switch i:before {
2382
+ position: absolute;
2383
+ top: -1px;
2384
+ right: -1px;
2385
+ bottom: -1px;
2386
+ left: -1px;
2387
+ background-color: #fff;
2388
+ border: 1px solid #f0f0f0;
2389
+ border-radius: 30px;
2390
+ content: "";
2391
+ -webkit-transition: all 0.2s;
2392
+ transition: all 0.2s;
2393
+ }
2394
+
2395
+ .i-switch i:after {
2396
+ position: absolute;
2397
+ top: 1px;
2398
+ bottom: 1px;
2399
+ width: 18px;
2400
+ background-color: #fff;
2401
+ border-radius: 50%;
2402
+ content: "";
2403
+ -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
2404
+ box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
2405
+ -webkit-transition: margin-left 0.3s;
2406
+ transition: margin-left 0.3s;
2407
+ }
2408
+
2409
+ .i-switch-md {
2410
+ width: 40px;
2411
+ height: 24px;
2412
+ }
2413
+
2414
+ .i-switch-md input:checked + i:after {
2415
+ margin-left: 17px;
2416
+ }
2417
+
2418
+ .i-switch-md i:after {
2419
+ width: 22px;
2420
+ }
2421
+
2422
+ .i-switch-lg {
2423
+ width: 50px;
2424
+ height: 30px;
2425
+ }
2426
+
2427
+ .i-switch-lg input:checked + i:after {
2428
+ margin-left: 21px;
2429
+ }
2430
+
2431
+ .i-switch-lg i:after {
2432
+ width: 28px;
2433
+ }
2434
+
2435
+ .i-checks {
2436
+ padding-left: 20px;
2437
+ cursor: pointer;
2438
+ }
2439
+
2440
+ .i-checks input {
2441
+ position: absolute;
2442
+ margin-left: -20px;
2443
+ opacity: 0;
2444
+ }
2445
+
2446
+ .i-checks input:checked + i {
2447
+ border-color: #23b7e5;
2448
+ }
2449
+
2450
+ .i-checks input:checked + i:before {
2451
+ top: 4px;
2452
+ left: 4px;
2453
+ width: 10px;
2454
+ height: 10px;
2455
+ background-color: #23b7e5;
2456
+ }
2457
+
2458
+ .i-checks input:checked + span .active {
2459
+ display: inherit;
2460
+ }
2461
+
2462
+ .i-checks input[type="radio"] + i,
2463
+ .i-checks input[type="radio"] + i:before {
2464
+ border-radius: 50%;
2465
+ }
2466
+
2467
+ .i-checks input[disabled] + i,
2468
+ fieldset[disabled] .i-checks input + i {
2469
+ border-color: #dee5e7;
2470
+ }
2471
+
2472
+ .i-checks input[disabled] + i:before,
2473
+ fieldset[disabled] .i-checks input + i:before {
2474
+ background-color: #dee5e7;
2475
+ }
2476
+
2477
+ .i-checks > i {
2478
+ position: relative;
2479
+ display: inline-block;
2480
+ width: 20px;
2481
+ height: 20px;
2482
+ margin-top: -2px;
2483
+ margin-right: 4px;
2484
+ margin-left: -20px;
2485
+ line-height: 1;
2486
+ vertical-align: middle;
2487
+ background-color: #fff;
2488
+ border: 1px solid #cfdadd;
2489
+ }
2490
+
2491
+ .i-checks > i:before {
2492
+ position: absolute;
2493
+ top: 10px;
2494
+ left: 10px;
2495
+ width: 0;
2496
+ height: 0;
2497
+ background-color: transparent;
2498
+ content: "";
2499
+ -webkit-transition: all 0.2s;
2500
+ transition: all 0.2s;
2501
+ }
2502
+
2503
+ .i-checks > span {
2504
+ margin-left: -20px;
2505
+ }
2506
+
2507
+ .i-checks > span .active {
2508
+ display: none;
2509
+ }
2510
+
2511
+ .datepicker {
2512
+ margin: 0 5px;
2513
+ }
2514
+
2515
+ .datepicker .btn-default {
2516
+ border-width: 0;
2517
+ box-shadow: none;
2518
+ }
2519
+
2520
+ .datepicker .btn[disabled] {
2521
+ opacity: 0.4;
2522
+ }
2523
+
2524
+ .datepicker .btn-info .text-info {
2525
+ color: #fff !important;
2526
+ }
2527
+
2528
+ /*Charts*/
2529
+
2530
+ .jqstooltip {
2531
+ padding: 5px 10px !important;
2532
+ background-color: rgba(0, 0, 0, 0.8) !important;
2533
+ border: solid 1px #000 !important;
2534
+ -webkit-border-radius: 3px;
2535
+ -moz-border-radius: 3px;
2536
+ border-radius: 3px;
2537
+ -webkit-box-sizing: content-box;
2538
+ -moz-box-sizing: content-box;
2539
+ box-sizing: content-box;
2540
+ }
2541
+
2542
+ .easyPieChart {
2543
+ position: relative;
2544
+ text-align: center;
2545
+ }
2546
+
2547
+ .easyPieChart > div {
2548
+ position: relative;
2549
+ z-index: 1;
2550
+ }
2551
+
2552
+ .easyPieChart > div .text {
2553
+ position: absolute;
2554
+ top: 60%;
2555
+ width: 100%;
2556
+ line-height: 1;
2557
+ }
2558
+
2559
+ .easyPieChart > div img {
2560
+ margin-top: -4px;
2561
+ }
2562
+
2563
+ .easyPieChart canvas {
2564
+ position: absolute;
2565
+ top: 0;
2566
+ left: 0;
2567
+ z-index: 0;
2568
+ }
2569
+
2570
+ #flotTip {
2571
+ z-index: 100;
2572
+ padding: 4px 10px;
2573
+ font-size: 12px;
2574
+ color: #fff;
2575
+ background-color: rgba(0, 0, 0, 0.8);
2576
+ border: solid 1px #000 !important;
2577
+ -webkit-border-radius: 3px;
2578
+ -moz-border-radius: 3px;
2579
+ border-radius: 3px;
2580
+ }
2581
+
2582
+ .legendColorBox > div {
2583
+ margin: 5px;
2584
+ border: none !important;
2585
+ }
2586
+
2587
+ .legendColorBox > div > div {
2588
+ border-radius: 10px;
2589
+ }
2590
+
2591
+ .sortable-placeholder {
2592
+ min-height: 50px;
2593
+ margin-bottom: 5px;
2594
+ list-style: none;
2595
+ border: 1px dashed #CCC;
2596
+ }
2597
+
2598
+ .item {
2599
+ position: relative;
2600
+ }
2601
+
2602
+ .item .top {
2603
+ position: absolute;
2604
+ top: 0;
2605
+ left: 0;
2606
+ }
2607
+
2608
+ .item .bottom {
2609
+ position: absolute;
2610
+ bottom: 0;
2611
+ left: 0;
2612
+ }
2613
+
2614
+ .item .center {
2615
+ position: absolute;
2616
+ top: 50%;
2617
+ }
2618
+
2619
+ .item-overlay {
2620
+ position: absolute;
2621
+ top: 0;
2622
+ right: 0;
2623
+ bottom: 0;
2624
+ left: 0;
2625
+ display: none;
2626
+ }
2627
+
2628
+ .item-overlay.active,
2629
+ .item:hover .item-overlay {
2630
+ display: block;
2631
+ }
2632
+
2633
+ .form-validation .form-control.ng-dirty.ng-invalid {
2634
+ border-color: #f05050;
2635
+ }
2636
+
2637
+ .form-validation .form-control.ng-dirty.ng-valid,
2638
+ .form-validation .form-control.ng-dirty.ng-valid:focus {
2639
+ border-color: #27c24c;
2640
+ }
2641
+
2642
+ .form-validation .i-checks .ng-invalid.ng-dirty + i {
2643
+ border-color: #f05050;
2644
+ }
2645
+
2646
+ .ng-animate .bg-auto:before {
2647
+ display: none;
2648
+ }
2649
+
2650
+ [ui-view].ng-leave {
2651
+ display: none;
2652
+ }
2653
+
2654
+ [ui-view].ng-leave.smooth {
2655
+ display: block;
2656
+ }
2657
+
2658
+ .smooth.ng-animate {
2659
+ position: absolute;
2660
+ width: 100%;
2661
+ height: 100%;
2662
+ overflow: hidden;
2663
+ }
2664
+
2665
+ .fade-in-right-big.ng-enter {
2666
+ -webkit-animation: fadeInRightBig 0.5s;
2667
+ animation: fadeInRightBig 0.5s;
2668
+ }
2669
+
2670
+ .fade-in-right-big.ng-leave {
2671
+ -webkit-animation: fadeOutLeftBig 0.5s;
2672
+ animation: fadeOutLeftBig 0.5s;
2673
+ }
2674
+
2675
+ .fade-in-left-big.ng-enter {
2676
+ -webkit-animation: fadeInLeftBig 0.5s;
2677
+ animation: fadeInLeftBig 0.5s;
2678
+ }
2679
+
2680
+ .fade-in-left-big.ng-leave {
2681
+ -webkit-animation: fadeOutRightBig 0.5s;
2682
+ animation: fadeOutRightBig 0.5s;
2683
+ }
2684
+
2685
+ .fade-in-up-big.ng-enter {
2686
+ -webkit-animation: fadeInUpBig 0.5s;
2687
+ animation: fadeInUpBig 0.5s;
2688
+ }
2689
+
2690
+ .fade-in-up-big.ng-leave {
2691
+ -webkit-animation: fadeOutUpBig 0.5s;
2692
+ animation: fadeOutUpBig 0.5s;
2693
+ }
2694
+
2695
+ .fade-in-down-big.ng-enter {
2696
+ -webkit-animation: fadeInDownBig 0.5s;
2697
+ animation: fadeInDownBig 0.5s;
2698
+ }
2699
+
2700
+ .fade-in-down-big.ng-leave {
2701
+ -webkit-animation: fadeOutDownBig 0.5s;
2702
+ animation: fadeOutDownBig 0.5s;
2703
+ }
2704
+
2705
+ .fade-in.ng-enter {
2706
+ -webkit-animation: fadeIn 0.5s;
2707
+ animation: fadeIn 0.5s;
2708
+ }
2709
+
2710
+ .fade-in.ng-leave {
2711
+ -webkit-animation: fadeOut 0.5s;
2712
+ animation: fadeOut 0.5s;
2713
+ }
2714
+
2715
+ .fade-in-right.ng-enter {
2716
+ -webkit-animation: fadeInRight 0.5s;
2717
+ animation: fadeInRight 0.5s;
2718
+ }
2719
+
2720
+ .fade-in-right.ng-leave {
2721
+ -webkit-animation: fadeOutLeft 0.5s;
2722
+ animation: fadeOutLeft 0.5s;
2723
+ }
2724
+
2725
+ .fade-in-left.ng-enter {
2726
+ -webkit-animation: fadeInLeft 0.5s;
2727
+ animation: fadeInLeft 0.5s;
2728
+ }
2729
+
2730
+ .fade-in-left.ng-leave {
2731
+ -webkit-animation: fadeOutRight 0.5s;
2732
+ animation: fadeOutRight 0.5s;
2733
+ }
2734
+
2735
+ .fade-in-up.ng-enter {
2736
+ -webkit-animation: fadeInUp 0.5s;
2737
+ animation: fadeInUp 0.5s;
2738
+ }
2739
+
2740
+ .fade-in-up.ng-leave {
2741
+ -webkit-animation: fadeOutUp 0.5s;
2742
+ animation: fadeOutUp 0.5s;
2743
+ }
2744
+
2745
+ .fade-in-down.ng-enter {
2746
+ -webkit-animation: fadeInDown 0.5s;
2747
+ animation: fadeInDown 0.5s;
2748
+ }
2749
+
2750
+ .fade-in-down.ng-leave {
2751
+ -webkit-animation: fadeOutDown 0.5s;
2752
+ animation: fadeOutDown 0.5s;
2753
+ }
2754
+
2755
+ .bg-gd {
2756
+ background-image: -webkit-gradient(linear, left 0, left 100%, from(rgba(40, 50, 60, 0)), to(rgba(40, 50, 60, 0.075)));
2757
+ background-image: -webkit-linear-gradient(top, rgba(40, 50, 60, 0), 0, rgba(40, 50, 60, 0.075), 100%);
2758
+ background-image: -moz-linear-gradient(top, rgba(40, 50, 60, 0) 0, rgba(40, 50, 60, 0.075) 100%);
2759
+ background-image: linear-gradient(to bottom, rgba(40, 50, 60, 0) 0, rgba(40, 50, 60, 0.075) 100%);
2760
+ background-repeat: repeat-x;
2761
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0028323c', endColorstr='#1328323c', GradientType=0);
2762
+ filter: none;
2763
+ }
2764
+
2765
+ .bg-gd-dk {
2766
+ background-image: -webkit-gradient(linear, left 10%, left 100%, from(rgba(40, 50, 60, 0)), to(rgba(40, 50, 60, 0.5)));
2767
+ background-image: -webkit-linear-gradient(top, rgba(40, 50, 60, 0), 10%, rgba(40, 50, 60, 0.5), 100%);
2768
+ background-image: -moz-linear-gradient(top, rgba(40, 50, 60, 0) 10%, rgba(40, 50, 60, 0.5) 100%);
2769
+ background-image: linear-gradient(to bottom, rgba(40, 50, 60, 0) 10%, rgba(40, 50, 60, 0.5) 100%);
2770
+ background-repeat: repeat-x;
2771
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0028323c', endColorstr='#8028323c', GradientType=0);
2772
+ filter: none;
2773
+ }
2774
+
2775
+ .bg-white-opacity {
2776
+ background-color: rgba(255, 255, 255, 0.5);
2777
+ }
2778
+
2779
+ .bg-black-opacity {
2780
+ background-color: rgba(32, 43, 54, 0.5);
2781
+ }
2782
+
2783
+ .bg-light {
2784
+ color: #58666e;
2785
+ background-color: #edf1f2;
2786
+ }
2787
+
2788
+ .bg-light.lt,
2789
+ .bg-light .lt {
2790
+ background-color: #f3f5f6;
2791
+ }
2792
+
2793
+ .bg-light.lter,
2794
+ .bg-light .lter {
2795
+ background-color: #f6f8f8;
2796
+ }
2797
+
2798
+ .bg-light.dk,
2799
+ .bg-light .dk {
2800
+ background-color: #e4eaec;
2801
+ }
2802
+
2803
+ .bg-light.dker,
2804
+ .bg-light .dker {
2805
+ background-color: #dde6e9;
2806
+ }
2807
+
2808
+ .bg-light.bg,
2809
+ .bg-light .bg {
2810
+ background-color: #edf1f2;
2811
+ }
2812
+
2813
+ .bg-dark {
2814
+ color: #9ea4b9;
2815
+ background-color: #3a3f51;
2816
+ }
2817
+
2818
+ .bg-dark.lt,
2819
+ .bg-dark .lt {
2820
+ background-color: #474c5e;
2821
+ }
2822
+
2823
+ .bg-dark.lter,
2824
+ .bg-dark .lter {
2825
+ background-color: #54596a;
2826
+ }
2827
+
2828
+ .bg-dark.dk,
2829
+ .bg-dark .dk {
2830
+ background-color: #2e3344;
2831
+ }
2832
+
2833
+ .bg-dark.dker,
2834
+ .bg-dark .dker {
2835
+ background-color: #232735;
2836
+ }
2837
+
2838
+ .bg-dark.bg,
2839
+ .bg-dark .bg {
2840
+ background-color: #3a3f51;
2841
+ }
2842
+
2843
+ .bg-dark a {
2844
+ color: #bbc0cf;
2845
+ }
2846
+
2847
+ .bg-dark a:hover {
2848
+ color: #ffffff;
2849
+ }
2850
+
2851
+ .bg-dark a.list-group-item:hover,
2852
+ .bg-dark a.list-group-item:focus {
2853
+ background-color: inherit;
2854
+ }
2855
+
2856
+ .bg-dark .nav > li:hover > a,
2857
+ .bg-dark .nav > li:focus > a,
2858
+ .bg-dark .nav > li.active > a {
2859
+ color: #ffffff;
2860
+ background-color: #2e3344;
2861
+ }
2862
+
2863
+ .bg-dark .nav > li > a {
2864
+ color: #adb2c4;
2865
+ }
2866
+
2867
+ .bg-dark .nav > li > a:hover,
2868
+ .bg-dark .nav > li > a:focus {
2869
+ background-color: #32374a;
2870
+ }
2871
+
2872
+ .bg-dark .nav .open > a {
2873
+ background-color: #2e3344;
2874
+ }
2875
+
2876
+ .bg-dark .caret {
2877
+ border-top-color: #9ea4b9;
2878
+ border-bottom-color: #9ea4b9;
2879
+ }
2880
+
2881
+ .bg-dark.navbar .nav > li.active > a {
2882
+ color: #ffffff;
2883
+ background-color: #2e3344;
2884
+ }
2885
+
2886
+ .bg-dark .open > a,
2887
+ .bg-dark .open > a:hover,
2888
+ .bg-dark .open > a:focus {
2889
+ color: #ffffff;
2890
+ }
2891
+
2892
+ .bg-dark .text-muted {
2893
+ color: #8088a4 !important;
2894
+ }
2895
+
2896
+ .bg-dark .text-lt {
2897
+ color: #e8e9ef !important;
2898
+ }
2899
+
2900
+ .bg-dark.auto .list-group-item,
2901
+ .bg-dark .auto .list-group-item {
2902
+ background-color: transparent;
2903
+ border-color: #2f3342 !important;
2904
+ }
2905
+
2906
+ .bg-dark.auto .list-group-item:hover,
2907
+ .bg-dark .auto .list-group-item:hover,
2908
+ .bg-dark.auto .list-group-item:focus,
2909
+ .bg-dark .auto .list-group-item:focus,
2910
+ .bg-dark.auto .list-group-item:active,
2911
+ .bg-dark .auto .list-group-item:active,
2912
+ .bg-dark.auto .list-group-item.active,
2913
+ .bg-dark .auto .list-group-item.active {
2914
+ background-color: #2e3344 !important;
2915
+ }
2916
+
2917
+ .bg-black {
2918
+ color: #6b94b3;
2919
+ background-color: #1c2b36;
2920
+ }
2921
+
2922
+ .bg-black.lt,
2923
+ .bg-black .lt {
2924
+ background-color: #263845;
2925
+ }
2926
+
2927
+ .bg-black.lter,
2928
+ .bg-black .lter {
2929
+ background-color: #314554;
2930
+ }
2931
+
2932
+ .bg-black.dk,
2933
+ .bg-black .dk {
2934
+ background-color: #131e26;
2935
+ }
2936
+
2937
+ .bg-black.dker,
2938
+ .bg-black .dker {
2939
+ background-color: #0a1015;
2940
+ }
2941
+
2942
+ .bg-black.bg,
2943
+ .bg-black .bg {
2944
+ background-color: #1c2b36;
2945
+ }
2946
+
2947
+ .bg-black a {
2948
+ color: #8dadc4;
2949
+ }
2950
+
2951
+ .bg-black a:hover {
2952
+ color: #ffffff;
2953
+ }
2954
+
2955
+ .bg-black a.list-group-item:hover,
2956
+ .bg-black a.list-group-item:focus {
2957
+ background-color: inherit;
2958
+ }
2959
+
2960
+ .bg-black .nav > li:hover > a,
2961
+ .bg-black .nav > li:focus > a,
2962
+ .bg-black .nav > li.active > a {
2963
+ color: #ffffff;
2964
+ background-color: #131e26;
2965
+ }
2966
+
2967
+ .bg-black .nav > li > a {
2968
+ color: #7ca1bb;
2969
+ }
2970
+
2971
+ .bg-black .nav > li > a:hover,
2972
+ .bg-black .nav > li > a:focus {
2973
+ background-color: #16232d;
2974
+ }
2975
+
2976
+ .bg-black .nav .open > a {
2977
+ background-color: #131e26;
2978
+ }
2979
+
2980
+ .bg-black .caret {
2981
+ border-top-color: #6b94b3;
2982
+ border-bottom-color: #6b94b3;
2983
+ }
2984
+
2985
+ .bg-black.navbar .nav > li.active > a {
2986
+ color: #ffffff;
2987
+ background-color: #131e26;
2988
+ }
2989
+
2990
+ .bg-black .open > a,
2991
+ .bg-black .open > a:hover,
2992
+ .bg-black .open > a:focus {
2993
+ color: #ffffff;
2994
+ }
2995
+
2996
+ .bg-black .text-muted {
2997
+ color: #507b9b !important;
2998
+ }
2999
+
3000
+ .bg-black .text-lt {
3001
+ color: #bfd1de !important;
3002
+ }
3003
+
3004
+ .bg-black.auto .list-group-item,
3005
+ .bg-black .auto .list-group-item {
3006
+ background-color: transparent;
3007
+ border-color: #131e25 !important;
3008
+ }
3009
+
3010
+ .bg-black.auto .list-group-item:hover,
3011
+ .bg-black .auto .list-group-item:hover,
3012
+ .bg-black.auto .list-group-item:focus,
3013
+ .bg-black .auto .list-group-item:focus,
3014
+ .bg-black.auto .list-group-item:active,
3015
+ .bg-black .auto .list-group-item:active,
3016
+ .bg-black.auto .list-group-item.active,
3017
+ .bg-black .auto .list-group-item.active {
3018
+ background-color: #131e26 !important;
3019
+ }
3020
+
3021
+ .bg-primary {
3022
+ color: #ffe8cf;
3023
+ background-color: #ff8503;
3024
+ }
3025
+
3026
+ .bg-primary.lt,
3027
+ .bg-primary .lt {
3028
+ background-color: #fc911f;
3029
+ }
3030
+
3031
+ .bg-primary.lter,
3032
+ .bg-primary .lter {
3033
+ background-color: #fa9e3b;
3034
+ }
3035
+
3036
+ .bg-primary.dk,
3037
+ .bg-primary .dk {
3038
+ background-color: #e97800;
3039
+ }
3040
+
3041
+ .bg-primary.dker,
3042
+ .bg-primary .dker {
3043
+ background-color: #cf6b00;
3044
+ }
3045
+
3046
+ .bg-primary.bg,
3047
+ .bg-primary .bg {
3048
+ background-color: #ff8503;
3049
+ }
3050
+
3051
+ .bg-primary a {
3052
+ color: #ffffff;
3053
+ }
3054
+
3055
+ .bg-primary a:hover {
3056
+ color: #ffffff;
3057
+ }
3058
+
3059
+ .bg-primary a.list-group-item:hover,
3060
+ .bg-primary a.list-group-item:focus {
3061
+ background-color: inherit;
3062
+ }
3063
+
3064
+ .bg-primary .nav > li:hover > a,
3065
+ .bg-primary .nav > li:focus > a,
3066
+ .bg-primary .nav > li.active > a {
3067
+ color: #ffffff;
3068
+ background-color: #e97800;
3069
+ }
3070
+
3071
+ .bg-primary .nav > li > a {
3072
+ color: #f2f2f2;
3073
+ }
3074
+
3075
+ .bg-primary .nav > li > a:hover,
3076
+ .bg-primary .nav > li > a:focus {
3077
+ background-color: #f37d00;
3078
+ }
3079
+
3080
+ .bg-primary .nav .open > a {
3081
+ background-color: #e97800;
3082
+ }
3083
+
3084
+ .bg-primary .caret {
3085
+ border-top-color: #ffe8cf;
3086
+ border-bottom-color: #ffe8cf;
3087
+ }
3088
+
3089
+ .bg-primary.navbar .nav > li.active > a {
3090
+ color: #ffffff;
3091
+ background-color: #e97800;
3092
+ }
3093
+
3094
+ .bg-primary .open > a,
3095
+ .bg-primary .open > a:hover,
3096
+ .bg-primary .open > a:focus {
3097
+ color: #ffffff;
3098
+ }
3099
+
3100
+ .bg-primary .text-muted {
3101
+ color: #ffcf9c !important;
3102
+ }
3103
+
3104
+ .bg-primary .text-lt {
3105
+ color: #ffffff !important;
3106
+ }
3107
+
3108
+ .bg-primary.auto .list-group-item,
3109
+ .bg-primary .auto .list-group-item {
3110
+ background-color: transparent;
3111
+ border-color: #e97800 !important;
3112
+ }
3113
+
3114
+ .bg-primary.auto .list-group-item:hover,
3115
+ .bg-primary .auto .list-group-item:hover,
3116
+ .bg-primary.auto .list-group-item:focus,
3117
+ .bg-primary .auto .list-group-item:focus,
3118
+ .bg-primary.auto .list-group-item:active,
3119
+ .bg-primary .auto .list-group-item:active,
3120
+ .bg-primary.auto .list-group-item.active,
3121
+ .bg-primary .auto .list-group-item.active {
3122
+ background-color: #e97800 !important;
3123
+ }
3124
+
3125
+ .bg-success {
3126
+ color: #c2f3ce;
3127
+ background-color: #27c24c;
3128
+ }
3129
+
3130
+ .bg-success.lt,
3131
+ .bg-success .lt {
3132
+ background-color: #31d257;
3133
+ }
3134
+
3135
+ .bg-success.lter,
3136
+ .bg-success .lter {
3137
+ background-color: #48d46a;
3138
+ }
3139
+
3140
+ .bg-success.dk,
3141
+ .bg-success .dk {
3142
+ background-color: #20af42;
3143
+ }
3144
+
3145
+ .bg-success.dker,
3146
+ .bg-success .dker {
3147
+ background-color: #1a9c39;
3148
+ }
3149
+
3150
+ .bg-success.bg,
3151
+ .bg-success .bg {
3152
+ background-color: #27c24c;
3153
+ }
3154
+
3155
+ .bg-success a {
3156
+ color: #edfbf0;
3157
+ }
3158
+
3159
+ .bg-success a:hover {
3160
+ color: #ffffff;
3161
+ }
3162
+
3163
+ .bg-success a.list-group-item:hover,
3164
+ .bg-success a.list-group-item:focus {
3165
+ background-color: inherit;
3166
+ }
3167
+
3168
+ .bg-success .nav > li:hover > a,
3169
+ .bg-success .nav > li:focus > a,
3170
+ .bg-success .nav > li.active > a {
3171
+ color: #ffffff;
3172
+ background-color: #20af42;
3173
+ }
3174
+
3175
+ .bg-success .nav > li > a {
3176
+ color: #d7f7df;
3177
+ }
3178
+
3179
+ .bg-success .nav > li > a:hover,
3180
+ .bg-success .nav > li > a:focus {
3181
+ background-color: #22b846;
3182
+ }
3183
+
3184
+ .bg-success .nav .open > a {
3185
+ background-color: #20af42;
3186
+ }
3187
+
3188
+ .bg-success .caret {
3189
+ border-top-color: #c2f3ce;
3190
+ border-bottom-color: #c2f3ce;
3191
+ }
3192
+
3193
+ .bg-success.navbar .nav > li.active > a {
3194
+ color: #ffffff;
3195
+ background-color: #20af42;
3196
+ }
3197
+
3198
+ .bg-success .open > a,
3199
+ .bg-success .open > a:hover,
3200
+ .bg-success .open > a:focus {
3201
+ color: #ffffff;
3202
+ }
3203
+
3204
+ .bg-success .text-muted {
3205
+ color: #98eaab !important;
3206
+ }
3207
+
3208
+ .bg-success .text-lt {
3209
+ color: #ffffff !important;
3210
+ }
3211
+
3212
+ .bg-success.auto .list-group-item,
3213
+ .bg-success .auto .list-group-item {
3214
+ background-color: transparent;
3215
+ border-color: #23ad44 !important;
3216
+ }
3217
+
3218
+ .bg-success.auto .list-group-item:hover,
3219
+ .bg-success .auto .list-group-item:hover,
3220
+ .bg-success.auto .list-group-item:focus,
3221
+ .bg-success .auto .list-group-item:focus,
3222
+ .bg-success.auto .list-group-item:active,
3223
+ .bg-success .auto .list-group-item:active,
3224
+ .bg-success.auto .list-group-item.active,
3225
+ .bg-success .auto .list-group-item.active {
3226
+ background-color: #20af42 !important;
3227
+ }
3228
+
3229
+ .bg-info {
3230
+ color: #d9f3fb;
3231
+ background-color: #23b7e5;
3232
+ }
3233
+
3234
+ .bg-info.lt,
3235
+ .bg-info .lt {
3236
+ background-color: #3dbde5;
3237
+ }
3238
+
3239
+ .bg-info.lter,
3240
+ .bg-info .lter {
3241
+ background-color: #55c3e6;
3242
+ }
3243
+
3244
+ .bg-info.dk,
3245
+ .bg-info .dk {
3246
+ background-color: #16aad8;
3247
+ }
3248
+
3249
+ .bg-info.dker,
3250
+ .bg-info .dker {
3251
+ background-color: #1199c4;
3252
+ }
3253
+
3254
+ .bg-info.bg,
3255
+ .bg-info .bg {
3256
+ background-color: #23b7e5;
3257
+ }
3258
+
3259
+ .bg-info a {
3260
+ color: #ffffff;
3261
+ }
3262
+
3263
+ .bg-info a:hover {
3264
+ color: #ffffff;
3265
+ }
3266
+
3267
+ .bg-info a.list-group-item:hover,
3268
+ .bg-info a.list-group-item:focus {
3269
+ background-color: inherit;
3270
+ }
3271
+
3272
+ .bg-info .nav > li:hover > a,
3273
+ .bg-info .nav > li:focus > a,
3274
+ .bg-info .nav > li.active > a {
3275
+ color: #ffffff;
3276
+ background-color: #16aad8;
3277
+ }
3278
+
3279
+ .bg-info .nav > li > a {
3280
+ color: #f2f2f2;
3281
+ }
3282
+
3283
+ .bg-info .nav > li > a:hover,
3284
+ .bg-info .nav > li > a:focus {
3285
+ background-color: #17b2e2;
3286
+ }
3287
+
3288
+ .bg-info .nav .open > a {
3289
+ background-color: #16aad8;
3290
+ }
3291
+
3292
+ .bg-info .caret {
3293
+ border-top-color: #d9f3fb;
3294
+ border-bottom-color: #d9f3fb;
3295
+ }
3296
+
3297
+ .bg-info.navbar .nav > li.active > a {
3298
+ color: #ffffff;
3299
+ background-color: #16aad8;
3300
+ }
3301
+
3302
+ .bg-info .open > a,
3303
+ .bg-info .open > a:hover,
3304
+ .bg-info .open > a:focus {
3305
+ color: #ffffff;
3306
+ }
3307
+
3308
+ .bg-info .text-muted {
3309
+ color: #ace4f5 !important;
3310
+ }
3311
+
3312
+ .bg-info .text-lt {
3313
+ color: #ffffff !important;
3314
+ }
3315
+
3316
+ .bg-info.auto .list-group-item,
3317
+ .bg-info .auto .list-group-item {
3318
+ background-color: transparent;
3319
+ border-color: #19a9d5 !important;
3320
+ }
3321
+
3322
+ .bg-info.auto .list-group-item:hover,
3323
+ .bg-info .auto .list-group-item:hover,
3324
+ .bg-info.auto .list-group-item:focus,
3325
+ .bg-info .auto .list-group-item:focus,
3326
+ .bg-info.auto .list-group-item:active,
3327
+ .bg-info .auto .list-group-item:active,
3328
+ .bg-info.auto .list-group-item.active,
3329
+ .bg-info .auto .list-group-item.active {
3330
+ background-color: #16aad8 !important;
3331
+ }
3332
+
3333
+ .bg-warning {
3334
+ color: #fffefa;
3335
+ background-color: #fad733;
3336
+ }
3337
+
3338
+ .bg-warning.lt,
3339
+ .bg-warning .lt {
3340
+ background-color: #f8da4e;
3341
+ }
3342
+
3343
+ .bg-warning.lter,
3344
+ .bg-warning .lter {
3345
+ background-color: #f7de69;
3346
+ }
3347
+
3348
+ .bg-warning.dk,
3349
+ .bg-warning .dk {
3350
+ background-color: #fcd417;
3351
+ }
3352
+
3353
+ .bg-warning.dker,
3354
+ .bg-warning .dker {
3355
+ background-color: #face00;
3356
+ }
3357
+
3358
+ .bg-warning.bg,
3359
+ .bg-warning .bg {
3360
+ background-color: #fad733;
3361
+ }
3362
+
3363
+ .bg-warning a {
3364
+ color: #ffffff;
3365
+ }
3366
+
3367
+ .bg-warning a:hover {
3368
+ color: #ffffff;
3369
+ }
3370
+
3371
+ .bg-warning a.list-group-item:hover,
3372
+ .bg-warning a.list-group-item:focus {
3373
+ background-color: inherit;
3374
+ }
3375
+
3376
+ .bg-warning .nav > li:hover > a,
3377
+ .bg-warning .nav > li:focus > a,
3378
+ .bg-warning .nav > li.active > a {
3379
+ color: #ffffff;
3380
+ background-color: #fcd417;
3381
+ }
3382
+
3383
+ .bg-warning .nav > li > a {
3384
+ color: #f2f2f2;
3385
+ }
3386
+
3387
+ .bg-warning .nav > li > a:hover,
3388
+ .bg-warning .nav > li > a:focus {
3389
+ background-color: #fcd621;
3390
+ }
3391
+
3392
+ .bg-warning .nav .open > a {
3393
+ background-color: #fcd417;
3394
+ }
3395
+
3396
+ .bg-warning .caret {
3397
+ border-top-color: #fffefa;
3398
+ border-bottom-color: #fffefa;
3399
+ }
3400
+
3401
+ .bg-warning.navbar .nav > li.active > a {
3402
+ color: #ffffff;
3403
+ background-color: #fcd417;
3404
+ }
3405
+
3406
+ .bg-warning .open > a,
3407
+ .bg-warning .open > a:hover,
3408
+ .bg-warning .open > a:focus {
3409
+ color: #ffffff;
3410
+ }
3411
+
3412
+ .bg-warning .text-muted {
3413
+ color: #fef4c8 !important;
3414
+ }
3415
+
3416
+ .bg-warning .text-lt {
3417
+ color: #ffffff !important;
3418
+ }
3419
+
3420
+ .bg-warning.auto .list-group-item,
3421
+ .bg-warning .auto .list-group-item {
3422
+ background-color: transparent;
3423
+ border-color: #f9d21a !important;
3424
+ }
3425
+
3426
+ .bg-warning.auto .list-group-item:hover,
3427
+ .bg-warning .auto .list-group-item:hover,
3428
+ .bg-warning.auto .list-group-item:focus,
3429
+ .bg-warning .auto .list-group-item:focus,
3430
+ .bg-warning.auto .list-group-item:active,
3431
+ .bg-warning .auto .list-group-item:active,
3432
+ .bg-warning.auto .list-group-item.active,
3433
+ .bg-warning .auto .list-group-item.active {
3434
+ background-color: #fcd417 !important;
3435
+ }
3436
+
3437
+ .bg-danger {
3438
+ color: #ffffff;
3439
+ background-color: #f05050;
3440
+ }
3441
+
3442
+ .bg-danger.lt,
3443
+ .bg-danger .lt {
3444
+ background-color: #f06a6a;
3445
+ }
3446
+
3447
+ .bg-danger.lter,
3448
+ .bg-danger .lter {
3449
+ background-color: #f18282;
3450
+ }
3451
+
3452
+ .bg-danger.dk,
3453
+ .bg-danger .dk {
3454
+ background-color: #f13636;
3455
+ }
3456
+
3457
+ .bg-danger.dker,
3458
+ .bg-danger .dker {
3459
+ background-color: #f21b1b;
3460
+ }
3461
+
3462
+ .bg-danger.bg,
3463
+ .bg-danger .bg {
3464
+ background-color: #f05050;
3465
+ }
3466
+
3467
+ .bg-danger a {
3468
+ color: #ffffff;
3469
+ }
3470
+
3471
+ .bg-danger a:hover {
3472
+ color: #ffffff;
3473
+ }
3474
+
3475
+ .bg-danger a.list-group-item:hover,
3476
+ .bg-danger a.list-group-item:focus {
3477
+ background-color: inherit;
3478
+ }
3479
+
3480
+ .bg-danger .nav > li:hover > a,
3481
+ .bg-danger .nav > li:focus > a,
3482
+ .bg-danger .nav > li.active > a {
3483
+ color: #ffffff;
3484
+ background-color: #f13636;
3485
+ }
3486
+
3487
+ .bg-danger .nav > li > a {
3488
+ color: #f2f2f2;
3489
+ }
3490
+
3491
+ .bg-danger .nav > li > a:hover,
3492
+ .bg-danger .nav > li > a:focus {
3493
+ background-color: #f13f3f;
3494
+ }
3495
+
3496
+ .bg-danger .nav .open > a {
3497
+ background-color: #f13636;
3498
+ }
3499
+
3500
+ .bg-danger .caret {
3501
+ border-top-color: #ffffff;
3502
+ border-bottom-color: #ffffff;
3503
+ }
3504
+
3505
+ .bg-danger.navbar .nav > li.active > a {
3506
+ color: #ffffff;
3507
+ background-color: #f13636;
3508
+ }
3509
+
3510
+ .bg-danger .open > a,
3511
+ .bg-danger .open > a:hover,
3512
+ .bg-danger .open > a:focus {
3513
+ color: #ffffff;
3514
+ }
3515
+
3516
+ .bg-danger .text-muted {
3517
+ color: #e6e6e6 !important;
3518
+ }
3519
+
3520
+ .bg-danger .text-lt {
3521
+ color: #ffffff !important;
3522
+ }
3523
+
3524
+ .bg-danger.auto .list-group-item,
3525
+ .bg-danger .auto .list-group-item {
3526
+ background-color: transparent;
3527
+ border-color: #ee3939 !important;
3528
+ }
3529
+
3530
+ .bg-danger.auto .list-group-item:hover,
3531
+ .bg-danger .auto .list-group-item:hover,
3532
+ .bg-danger.auto .list-group-item:focus,
3533
+ .bg-danger .auto .list-group-item:focus,
3534
+ .bg-danger.auto .list-group-item:active,
3535
+ .bg-danger .auto .list-group-item:active,
3536
+ .bg-danger.auto .list-group-item.active,
3537
+ .bg-danger .auto .list-group-item.active {
3538
+ background-color: #f13636 !important;
3539
+ }
3540
+
3541
+ .bg-white {
3542
+ color: #58666e;
3543
+ background-color: #fff;
3544
+ }
3545
+
3546
+ .bg-white a {
3547
+ color: #363f44;
3548
+ }
3549
+
3550
+ .bg-white a:hover {
3551
+ color: #1f2427;
3552
+ }
3553
+
3554
+ .bg-white .text-muted {
3555
+ color: #98a6ad !important;
3556
+ }
3557
+
3558
+ .bg-white .lt,
3559
+ .bg-white .lter,
3560
+ .bg-white .dk,
3561
+ .bg-white .dker {
3562
+ background-color: #fff;
3563
+ }
3564
+
3565
+ .bg-white-only {
3566
+ background-color: #fff;
3567
+ }
3568
+
3569
+ a.bg-light:hover {
3570
+ color: #363f44;
3571
+ }
3572
+
3573
+ a.bg-primary:hover {
3574
+ background-color: #e97800;
3575
+ }
3576
+
3577
+ a.text-primary:hover {
3578
+ color: #e97800;
3579
+ }
3580
+
3581
+ .text-primary {
3582
+ color: #ff8503;
3583
+ }
3584
+
3585
+ .text-primary-lt {
3586
+ color: #ff911d;
3587
+ }
3588
+
3589
+ .text-primary-lter {
3590
+ color: #ff9e36;
3591
+ }
3592
+
3593
+ .text-primary-dk {
3594
+ color: #e97800;
3595
+ }
3596
+
3597
+ .text-primary-dker {
3598
+ color: #cf6b00;
3599
+ }
3600
+
3601
+ a.bg-info:hover {
3602
+ background-color: #19a9d5;
3603
+ }
3604
+
3605
+ a.text-info:hover {
3606
+ color: #19a9d5;
3607
+ }
3608
+
3609
+ .text-info {
3610
+ color: #23b7e5;
3611
+ }
3612
+
3613
+ .text-info-lt {
3614
+ color: #3abee8;
3615
+ }
3616
+
3617
+ .text-info-lter {
3618
+ color: #51c6ea;
3619
+ }
3620
+
3621
+ .text-info-dk {
3622
+ color: #19a9d5;
3623
+ }
3624
+
3625
+ .text-info-dker {
3626
+ color: #1797be;
3627
+ }
3628
+
3629
+ a.bg-success:hover {
3630
+ background-color: #23ad44;
3631
+ }
3632
+
3633
+ a.text-success:hover {
3634
+ color: #23ad44;
3635
+ }
3636
+
3637
+ .text-success {
3638
+ color: #27c24c;
3639
+ }
3640
+
3641
+ .text-success-lt {
3642
+ color: #2ed556;
3643
+ }
3644
+
3645
+ .text-success-lter {
3646
+ color: #43d967;
3647
+ }
3648
+
3649
+ .text-success-dk {
3650
+ color: #23ad44;
3651
+ }
3652
+
3653
+ .text-success-dker {
3654
+ color: #1e983b;
3655
+ }
3656
+
3657
+ a.bg-warning:hover {
3658
+ background-color: #f9d21a;
3659
+ }
3660
+
3661
+ a.text-warning:hover {
3662
+ color: #f9d21a;
3663
+ }
3664
+
3665
+ .text-warning {
3666
+ color: #fad733;
3667
+ }
3668
+
3669
+ .text-warning-lt {
3670
+ color: #fbdc4c;
3671
+ }
3672
+
3673
+ .text-warning-lter {
3674
+ color: #fbe165;
3675
+ }
3676
+
3677
+ .text-warning-dk {
3678
+ color: #f9d21a;
3679
+ }
3680
+
3681
+ .text-warning-dker {
3682
+ color: #f4ca06;
3683
+ }
3684
+
3685
+ a.bg-danger:hover {
3686
+ background-color: #ee3939;
3687
+ }
3688
+
3689
+ a.text-danger:hover {
3690
+ color: #ee3939;
3691
+ }
3692
+
3693
+ .text-danger {
3694
+ color: #f05050;
3695
+ }
3696
+
3697
+ .text-danger-lt {
3698
+ color: #f26767;
3699
+ }
3700
+
3701
+ .text-danger-lter {
3702
+ color: #f47f7f;
3703
+ }
3704
+
3705
+ .text-danger-dk {
3706
+ color: #ee3939;
3707
+ }
3708
+
3709
+ .text-danger-dker {
3710
+ color: #ec2121;
3711
+ }
3712
+
3713
+ a.bg-dark:hover {
3714
+ background-color: #2f3342;
3715
+ }
3716
+
3717
+ a.text-dark:hover {
3718
+ color: #2f3342;
3719
+ }
3720
+
3721
+ .text-dark {
3722
+ color: #3a3f51;
3723
+ }
3724
+
3725
+ .text-dark-lt {
3726
+ color: #454b60;
3727
+ }
3728
+
3729
+ .text-dark-lter {
3730
+ color: #4f566f;
3731
+ }
3732
+
3733
+ .text-dark-dk {
3734
+ color: #2f3342;
3735
+ }
3736
+
3737
+ .text-dark-dker {
3738
+ color: #252833;
3739
+ }
3740
+
3741
+ a.bg-#000000:hover {
3742
+ background-color: #131e25;
3743
+ }
3744
+
3745
+ a.text-#000000:hover {
3746
+ color: #131e25;
3747
+ }
3748
+
3749
+ .text-#000000 {
3750
+ color: #1c2b36;
3751
+ }
3752
+
3753
+ .text-#000000-lt {
3754
+ color: #253847;
3755
+ }
3756
+
3757
+ .text-#000000-lter {
3758
+ color: #2d4658;
3759
+ }
3760
+
3761
+ .text-#000000-dk {
3762
+ color: #131e25;
3763
+ }
3764
+
3765
+ .text-#000000-dker {
3766
+ color: #0b1014;
3767
+ }
3768
+
3769
+ .text-white {
3770
+ color: #fff;
3771
+ }
3772
+
3773
+ .text-muted {
3774
+ color: #98a6ad;
3775
+ }
3776
+
3777
+ .pos-rlt {
3778
+ position: relative;
3779
+ }
3780
+
3781
+ .pos-stc {
3782
+ position: static;
3783
+ }
3784
+
3785
+ .pos-abt {
3786
+ position: absolute;
3787
+ }
3788
+
3789
+ .pos-fix {
3790
+ position: fixed;
3791
+ }
3792
+
3793
+ .line {
3794
+ width: 100%;
3795
+ height: 2px;
3796
+ margin: 10px 0;
3797
+ overflow: hidden;
3798
+ font-size: 0;
3799
+ }
3800
+
3801
+ .line-xs {
3802
+ margin: 0;
3803
+ }
3804
+
3805
+ .line-lg {
3806
+ margin-top: 15px;
3807
+ margin-bottom: 15px;
3808
+ }
3809
+
3810
+ .line-dashed {
3811
+ background-color: transparent;
3812
+ border-style: dashed !important;
3813
+ border-width: 0;
3814
+ }
3815
+
3816
+ .no-line {
3817
+ border-width: 0;
3818
+ }
3819
+
3820
+ .no-border,
3821
+ .no-borders {
3822
+ border-color: transparent;
3823
+ border-width: 0;
3824
+ }
3825
+
3826
+ .no-radius {
3827
+ border-radius: 0;
3828
+ }
3829
+
3830
+ .block {
3831
+ display: block;
3832
+ }
3833
+
3834
+ .block.hide {
3835
+ display: none;
3836
+ }
3837
+
3838
+ .inline {
3839
+ display: inline-block !important;
3840
+ }
3841
+
3842
+ .none {
3843
+ display: none;
3844
+ }
3845
+
3846
+ .pull-none {
3847
+ float: none;
3848
+ }
3849
+
3850
+ .rounded {
3851
+ border-radius: 500px;
3852
+ }
3853
+
3854
+ .clear {
3855
+ display: block;
3856
+ overflow: hidden;
3857
+ }
3858
+
3859
+ .no-bg {
3860
+ color: inherit;
3861
+ background-color: transparent;
3862
+ }
3863
+
3864
+ .no-select {
3865
+ -webkit-user-select: none;
3866
+ -khtml-user-select: none;
3867
+ -moz-user-select: none;
3868
+ -ms-user-select: none;
3869
+ user-select: none;
3870
+ -webkit-touch-callout: none;
3871
+ }
3872
+
3873
+ .l-h {
3874
+ line-height: 1.42857143;
3875
+ }
3876
+
3877
+ .l-h-0x {
3878
+ line-height: 0;
3879
+ }
3880
+
3881
+ .l-h-1x {
3882
+ line-height: 1.2;
3883
+ }
3884
+
3885
+ .l-h-2x {
3886
+ line-height: 2em;
3887
+ }
3888
+
3889
+ .l-s-1x {
3890
+ letter-spacing: 1;
3891
+ }
3892
+
3893
+ .l-s-2x {
3894
+ letter-spacing: 2;
3895
+ }
3896
+
3897
+ .l-s-3x {
3898
+ letter-spacing: 3;
3899
+ }
3900
+
3901
+ .font-normal {
3902
+ font-weight: normal;
3903
+ }
3904
+
3905
+ .font-thin {
3906
+ font-weight: 300;
3907
+ }
3908
+
3909
+ .font-bold {
3910
+ font-weight: 700;
3911
+ }
3912
+
3913
+ .text-3x {
3914
+ font-size: 3em;
3915
+ }
3916
+
3917
+ .text-2x {
3918
+ font-size: 2em;
3919
+ }
3920
+
3921
+ .text-lg {
3922
+ font-size: 18px;
3923
+ }
3924
+
3925
+ .text-md {
3926
+ font-size: 16px;
3927
+ }
3928
+
3929
+ .text-base {
3930
+ font-size: 14px;
3931
+ }
3932
+
3933
+ .text-sm {
3934
+ font-size: 13px;
3935
+ }
3936
+
3937
+ .text-xs {
3938
+ font-size: 12px;
3939
+ }
3940
+
3941
+ .text-xxs {
3942
+ text-indent: -9999px;
3943
+ }
3944
+
3945
+ .text-ellipsis {
3946
+ display: block;
3947
+ overflow: hidden;
3948
+ text-overflow: ellipsis;
3949
+ white-space: nowrap;
3950
+ }
3951
+
3952
+ .text-u-c {
3953
+ text-transform: uppercase;
3954
+ }
3955
+
3956
+ .text-l-t {
3957
+ text-decoration: line-through;
3958
+ }
3959
+
3960
+ .text-u-l {
3961
+ text-decoration: underline;
3962
+ }
3963
+
3964
+ .text-active,
3965
+ .active > .text,
3966
+ .active > .auto .text {
3967
+ display: none !important;
3968
+ }
3969
+
3970
+ .active > .text-active,
3971
+ .active > .auto .text-active {
3972
+ display: inline-block !important;
3973
+ }
3974
+
3975
+ .box-shadow {
3976
+ box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
3977
+ }
3978
+
3979
+ .box-shadow-lg {
3980
+ box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
3981
+ }
3982
+
3983
+ .text-shadow {
3984
+ font-size: 170px;
3985
+ text-shadow: 0 1px 0 #dee5e7, 0 2px 0 #fcfdfd, 0 5px 10px rgba(0, 0, 0, 0.125), 0 10px 20px rgba(0, 0, 0, 0.2);
3986
+ }
3987
+
3988
+ .no-shadow {
3989
+ -webkit-box-shadow: none !important;
3990
+ box-shadow: none !important;
3991
+ }
3992
+
3993
+ .wrapper-xs {
3994
+ padding: 5px;
3995
+ }
3996
+
3997
+ .wrapper-sm {
3998
+ padding: 10px;
3999
+ }
4000
+
4001
+ .wrapper {
4002
+ padding: 15px;
4003
+ }
4004
+
4005
+ .wrapper-md {
4006
+ padding: 20px;
4007
+ }
4008
+
4009
+ .wrapper-lg {
4010
+ padding: 30px;
4011
+ }
4012
+
4013
+ .wrapper-xl {
4014
+ padding: 50px;
4015
+ }
4016
+
4017
+ .padder-lg {
4018
+ padding-right: 30px;
4019
+ padding-left: 30px;
4020
+ }
4021
+
4022
+ .padder-md {
4023
+ padding-right: 20px;
4024
+ padding-left: 20px;
4025
+ }
4026
+
4027
+ .padder {
4028
+ padding-right: 15px;
4029
+ padding-left: 15px;
4030
+ }
4031
+
4032
+ .padder-v {
4033
+ padding-top: 15px;
4034
+ padding-bottom: 15px;
4035
+ }
4036
+
4037
+ .no-padder {
4038
+ padding: 0 !important;
4039
+ }
4040
+
4041
+ .pull-in {
4042
+ margin-right: -15px;
4043
+ margin-left: -15px;
4044
+ }
4045
+
4046
+ .pull-out {
4047
+ margin: -10px -15px;
4048
+ }
4049
+
4050
+ .b {
4051
+ border: 1px solid rgba(0, 0, 0, 0.05);
4052
+ }
4053
+
4054
+ .b-a {
4055
+ border: 1px solid #dee5e7;
4056
+ }
4057
+
4058
+ .b-t {
4059
+ border-top: 1px solid #dee5e7;
4060
+ }
4061
+
4062
+ .b-r {
4063
+ border-right: 1px solid #dee5e7;
4064
+ }
4065
+
4066
+ .b-b {
4067
+ border-bottom: 1px solid #dee5e7;
4068
+ }
4069
+
4070
+ .b-l {
4071
+ border-left: 1px solid #dee5e7;
4072
+ }
4073
+
4074
+ .b-light {
4075
+ border-color: #edf1f2;
4076
+ }
4077
+
4078
+ .b-dark {
4079
+ border-color: #3a3f51;
4080
+ }
4081
+
4082
+ .b-black {
4083
+ border-color: #3a3f51;
4084
+ }
4085
+
4086
+ .b-primary {
4087
+ border-color: #ff8503;
4088
+ }
4089
+
4090
+ .b-success {
4091
+ border-color: #27c24c;
4092
+ }
4093
+
4094
+ .b-info {
4095
+ border-color: #23b7e5;
4096
+ }
4097
+
4098
+ .b-warning {
4099
+ border-color: #fad733;
4100
+ }
4101
+
4102
+ .b-danger {
4103
+ border-color: #f05050;
4104
+ }
4105
+
4106
+ .b-white {
4107
+ border-color: #ffffff;
4108
+ }
4109
+
4110
+ .b-dashed {
4111
+ border-style: dashed !important;
4112
+ }
4113
+
4114
+ .b-l-light {
4115
+ border-left-color: #edf1f2;
4116
+ }
4117
+
4118
+ .b-l-dark {
4119
+ border-left-color: #3a3f51;
4120
+ }
4121
+
4122
+ .b-l-black {
4123
+ border-left-color: #3a3f51;
4124
+ }
4125
+
4126
+ .b-l-primary {
4127
+ border-left-color: #ff8503;
4128
+ }
4129
+
4130
+ .b-l-success {
4131
+ border-left-color: #27c24c;
4132
+ }
4133
+
4134
+ .b-l-info {
4135
+ border-left-color: #23b7e5;
4136
+ }
4137
+
4138
+ .b-l-warning {
4139
+ border-left-color: #fad733;
4140
+ }
4141
+
4142
+ .b-l-danger {
4143
+ border-left-color: #f05050;
4144
+ }
4145
+
4146
+ .b-l-white {
4147
+ border-left-color: #ffffff;
4148
+ }
4149
+
4150
+ .b-l-2x {
4151
+ border-left-width: 2px;
4152
+ }
4153
+
4154
+ .b-l-3x {
4155
+ border-left-width: 3px;
4156
+ }
4157
+
4158
+ .b-l-4x {
4159
+ border-left-width: 4px;
4160
+ }
4161
+
4162
+ .b-l-5x {
4163
+ border-left-width: 5px;
4164
+ }
4165
+
4166
+ .b-2x {
4167
+ border-width: 2px;
4168
+ }
4169
+
4170
+ .b-3x {
4171
+ border-width: 3px;
4172
+ }
4173
+
4174
+ .b-4x {
4175
+ border-width: 4px;
4176
+ }
4177
+
4178
+ .b-5x {
4179
+ border-width: 5px;
4180
+ }
4181
+
4182
+ .r {
4183
+ border-radius: 2px 2px 2px 2px;
4184
+ }
4185
+
4186
+ .r-2x {
4187
+ border-radius: 4px;
4188
+ }
4189
+
4190
+ .r-3x {
4191
+ border-radius: 6px;
4192
+ }
4193
+
4194
+ .r-l {
4195
+ border-radius: 2px 0 0 2px;
4196
+ }
4197
+
4198
+ .r-r {
4199
+ border-radius: 0 2px 2px 0;
4200
+ }
4201
+
4202
+ .r-t {
4203
+ border-radius: 2px 2px 0 0;
4204
+ }
4205
+
4206
+ .r-b {
4207
+ border-radius: 0 0 2px 2px;
4208
+ }
4209
+
4210
+ .m-xxs {
4211
+ margin: 2px 4px;
4212
+ }
4213
+
4214
+ .m-xs {
4215
+ margin: 5px;
4216
+ }
4217
+
4218
+ .m-sm {
4219
+ margin: 10px;
4220
+ }
4221
+
4222
+ .m {
4223
+ margin: 15px;
4224
+ }
4225
+
4226
+ .m-md {
4227
+ margin: 20px;
4228
+ }
4229
+
4230
+ .m-lg {
4231
+ margin: 30px;
4232
+ }
4233
+
4234
+ .m-xl {
4235
+ margin: 50px;
4236
+ }
4237
+
4238
+ .m-n {
4239
+ margin: 0 !important;
4240
+ }
4241
+
4242
+ .m-l-none {
4243
+ margin-left: 0 !important;
4244
+ }
4245
+
4246
+ .m-l-xs {
4247
+ margin-left: 5px;
4248
+ }
4249
+
4250
+ .m-l-sm {
4251
+ margin-left: 10px;
4252
+ }
4253
+
4254
+ .m-l {
4255
+ margin-left: 15px;
4256
+ }
4257
+
4258
+ .m-l-md {
4259
+ margin-left: 20px;
4260
+ }
4261
+
4262
+ .m-l-lg {
4263
+ margin-left: 30px;
4264
+ }
4265
+
4266
+ .m-l-xl {
4267
+ margin-left: 40px;
4268
+ }
4269
+
4270
+ .m-l-xxl {
4271
+ margin-left: 50px;
4272
+ }
4273
+
4274
+ .m-l-n-xxs {
4275
+ margin-left: -1px;
4276
+ }
4277
+
4278
+ .m-l-n-xs {
4279
+ margin-left: -5px;
4280
+ }
4281
+
4282
+ .m-l-n-sm {
4283
+ margin-left: -10px;
4284
+ }
4285
+
4286
+ .m-l-n {
4287
+ margin-left: -15px;
4288
+ }
4289
+
4290
+ .m-l-n-md {
4291
+ margin-left: -20px;
4292
+ }
4293
+
4294
+ .m-l-n-lg {
4295
+ margin-left: -30px;
4296
+ }
4297
+
4298
+ .m-l-n-xl {
4299
+ margin-left: -40px;
4300
+ }
4301
+
4302
+ .m-l-n-xxl {
4303
+ margin-left: -50px;
4304
+ }
4305
+
4306
+ .m-t-none {
4307
+ margin-top: 0 !important;
4308
+ }
4309
+
4310
+ .m-t-xxs {
4311
+ margin-top: 1px;
4312
+ }
4313
+
4314
+ .m-t-xs {
4315
+ margin-top: 5px;
4316
+ }
4317
+
4318
+ .m-t-sm {
4319
+ margin-top: 10px;
4320
+ }
4321
+
4322
+ .m-t {
4323
+ margin-top: 15px;
4324
+ }
4325
+
4326
+ .m-t-md {
4327
+ margin-top: 20px;
4328
+ }
4329
+
4330
+ .m-t-lg {
4331
+ margin-top: 30px;
4332
+ }
4333
+
4334
+ .m-t-xl {
4335
+ margin-top: 40px;
4336
+ }
4337
+
4338
+ .m-t-xxl {
4339
+ margin-top: 50px;
4340
+ }
4341
+
4342
+ .m-t-n-xxs {
4343
+ margin-top: -1px;
4344
+ }
4345
+
4346
+ .m-t-n-xs {
4347
+ margin-top: -5px;
4348
+ }
4349
+
4350
+ .m-t-n-sm {
4351
+ margin-top: -10px;
4352
+ }
4353
+
4354
+ .m-t-n {
4355
+ margin-top: -15px;
4356
+ }
4357
+
4358
+ .m-t-n-md {
4359
+ margin-top: -20px;
4360
+ }
4361
+
4362
+ .m-t-n-lg {
4363
+ margin-top: -30px;
4364
+ }
4365
+
4366
+ .m-t-n-xl {
4367
+ margin-top: -40px;
4368
+ }
4369
+
4370
+ .m-t-n-xxl {
4371
+ margin-top: -50px;
4372
+ }
4373
+
4374
+ .m-r-none {
4375
+ margin-right: 0 !important;
4376
+ }
4377
+
4378
+ .m-r-xxs {
4379
+ margin-right: 1px;
4380
+ }
4381
+
4382
+ .m-r-xs {
4383
+ margin-right: 5px;
4384
+ }
4385
+
4386
+ .m-r-sm {
4387
+ margin-right: 10px;
4388
+ }
4389
+
4390
+ .m-r {
4391
+ margin-right: 15px;
4392
+ }
4393
+
4394
+ .m-r-md {
4395
+ margin-right: 20px;
4396
+ }
4397
+
4398
+ .m-r-lg {
4399
+ margin-right: 30px;
4400
+ }
4401
+
4402
+ .m-r-xl {
4403
+ margin-right: 40px;
4404
+ }
4405
+
4406
+ .m-r-xxl {
4407
+ margin-right: 50px;
4408
+ }
4409
+
4410
+ .m-r-n-xxs {
4411
+ margin-right: -1px;
4412
+ }
4413
+
4414
+ .m-r-n-xs {
4415
+ margin-right: -5px;
4416
+ }
4417
+
4418
+ .m-r-n-sm {
4419
+ margin-right: -10px;
4420
+ }
4421
+
4422
+ .m-r-n {
4423
+ margin-right: -15px;
4424
+ }
4425
+
4426
+ .m-r-n-md {
4427
+ margin-right: -20px;
4428
+ }
4429
+
4430
+ .m-r-n-lg {
4431
+ margin-right: -30px;
4432
+ }
4433
+
4434
+ .m-r-n-xl {
4435
+ margin-right: -40px;
4436
+ }
4437
+
4438
+ .m-r-n-xxl {
4439
+ margin-right: -50px;
4440
+ }
4441
+
4442
+ .m-b-none {
4443
+ margin-bottom: 0 !important;
4444
+ }
4445
+
4446
+ .m-b-xxs {
4447
+ margin-bottom: 1px;
4448
+ }
4449
+
4450
+ .m-b-xs {
4451
+ margin-bottom: 5px;
4452
+ }
4453
+
4454
+ .m-b-sm {
4455
+ margin-bottom: 10px;
4456
+ }
4457
+
4458
+ .m-b {
4459
+ margin-bottom: 15px;
4460
+ }
4461
+
4462
+ .m-b-md {
4463
+ margin-bottom: 20px;
4464
+ }
4465
+
4466
+ .m-b-lg {
4467
+ margin-bottom: 30px;
4468
+ }
4469
+
4470
+ .m-b-xl {
4471
+ margin-bottom: 40px;
4472
+ }
4473
+
4474
+ .m-b-xxl {
4475
+ margin-bottom: 50px;
4476
+ }
4477
+
4478
+ .m-b-n-xxs {
4479
+ margin-bottom: -1px;
4480
+ }
4481
+
4482
+ .m-b-n-xs {
4483
+ margin-bottom: -5px;
4484
+ }
4485
+
4486
+ .m-b-n-sm {
4487
+ margin-bottom: -10px;
4488
+ }
4489
+
4490
+ .m-b-n {
4491
+ margin-bottom: -15px;
4492
+ }
4493
+
4494
+ .m-b-n-md {
4495
+ margin-bottom: -20px;
4496
+ }
4497
+
4498
+ .m-b-n-lg {
4499
+ margin-bottom: -30px;
4500
+ }
4501
+
4502
+ .m-b-n-xl {
4503
+ margin-bottom: -40px;
4504
+ }
4505
+
4506
+ .m-b-n-xxl {
4507
+ margin-bottom: -50px;
4508
+ }
4509
+
4510
+ .avatar {
4511
+ position: relative;
4512
+ display: block;
4513
+ white-space: nowrap;
4514
+ border-radius: 500px;
4515
+ }
4516
+
4517
+ .avatar img {
4518
+ width: 100%;
4519
+ border-radius: 500px;
4520
+ }
4521
+
4522
+ .avatar i {
4523
+ position: absolute;
4524
+ top: 0;
4525
+ left: 0;
4526
+ width: 10px;
4527
+ height: 10px;
4528
+ margin: 2px;
4529
+ border-style: solid;
4530
+ border-width: 2px;
4531
+ border-radius: 100%;
4532
+ }
4533
+
4534
+ .avatar i.right {
4535
+ right: 0;
4536
+ left: auto;
4537
+ }
4538
+
4539
+ .avatar i.bottom {
4540
+ top: auto;
4541
+ right: 0;
4542
+ bottom: 0;
4543
+ left: auto;
4544
+ }
4545
+
4546
+ .avatar i.left {
4547
+ top: auto;
4548
+ bottom: 0;
4549
+ }
4550
+
4551
+ .avatar i.on {
4552
+ background-color: #27c24c;
4553
+ }
4554
+
4555
+ .avatar i.off {
4556
+ background-color: #98a6ad;
4557
+ }
4558
+
4559
+ .avatar i.busy {
4560
+ background-color: #f05050;
4561
+ }
4562
+
4563
+ .avatar i.away {
4564
+ background-color: #fad733;
4565
+ }
4566
+
4567
+ .avatar.thumb-md i {
4568
+ width: 12px;
4569
+ height: 12px;
4570
+ margin: 3px;
4571
+ }
4572
+
4573
+ .avatar.thumb-sm i {
4574
+ margin: 1px;
4575
+ }
4576
+
4577
+ .avatar.thumb-xs i {
4578
+ margin: 0;
4579
+ }
4580
+
4581
+ .w-xxs {
4582
+ width: 60px;
4583
+ }
4584
+
4585
+ .w-xs {
4586
+ width: 90px;
4587
+ }
4588
+
4589
+ .w-sm {
4590
+ width: 150px;
4591
+ }
4592
+
4593
+ .w {
4594
+ width: 200px;
4595
+ }
4596
+
4597
+ .w-md {
4598
+ width: 240px;
4599
+ }
4600
+
4601
+ .w-lg {
4602
+ width: 280px;
4603
+ }
4604
+
4605
+ .w-xl {
4606
+ width: 320px;
4607
+ }
4608
+
4609
+ .w-xxl {
4610
+ width: 360px;
4611
+ }
4612
+
4613
+ .w-full {
4614
+ width: 100%;
4615
+ }
4616
+
4617
+ .w-auto {
4618
+ width: auto;
4619
+ }
4620
+
4621
+ .h-auto {
4622
+ height: auto;
4623
+ }
4624
+
4625
+ .h-full {
4626
+ height: 100%;
4627
+ }
4628
+
4629
+ .thumb-xl {
4630
+ display: inline-block;
4631
+ width: 128px;
4632
+ }
4633
+
4634
+ .thumb-lg {
4635
+ display: inline-block;
4636
+ width: 96px;
4637
+ }
4638
+
4639
+ .thumb-md {
4640
+ display: inline-block;
4641
+ width: 64px;
4642
+ }
4643
+
4644
+ .thumb {
4645
+ display: inline-block;
4646
+ width: 50px;
4647
+ }
4648
+
4649
+ .thumb-sm {
4650
+ display: inline-block;
4651
+ width: 40px;
4652
+ }
4653
+
4654
+ .thumb-xs {
4655
+ display: inline-block;
4656
+ width: 34px;
4657
+ }
4658
+
4659
+ .thumb-xxs {
4660
+ display: inline-block;
4661
+ width: 30px;
4662
+ }
4663
+
4664
+ .thumb-wrapper {
4665
+ padding: 2px;
4666
+ border: 1px solid #dee5e7;
4667
+ }
4668
+
4669
+ .thumb img,
4670
+ .thumb-xs img,
4671
+ .thumb-sm img,
4672
+ .thumb-md img,
4673
+ .thumb-lg img,
4674
+ .thumb-btn img {
4675
+ height: auto;
4676
+ max-width: 100%;
4677
+ vertical-align: middle;
4678
+ }
4679
+
4680
+ .img-full {
4681
+ width: 100%;
4682
+ }
4683
+
4684
+ .img-full img {
4685
+ width: 100%;
4686
+ }
4687
+
4688
+ .scrollable {
4689
+ overflow-x: hidden;
4690
+ overflow-y: auto;
4691
+ -webkit-overflow-scrolling: touch;
4692
+ }
4693
+
4694
+ .scrollable.hover {
4695
+ overflow-y: hidden !important;
4696
+ }
4697
+
4698
+ .scrollable.hover:hover {
4699
+ overflow: visible !important;
4700
+ overflow-y: auto !important;
4701
+ }
4702
+
4703
+ .smart .scrollable {
4704
+ overflow-y: auto !important;
4705
+ }
4706
+
4707
+ .scroll-x,
4708
+ .scroll-y {
4709
+ overflow: hidden;
4710
+ -webkit-overflow-scrolling: touch;
4711
+ }
4712
+
4713
+ .scroll-y {
4714
+ overflow-y: auto;
4715
+ }
4716
+
4717
+ .scroll-x {
4718
+ overflow-x: auto;
4719
+ }
4720
+
4721
+ .hover-action {
4722
+ display: none;
4723
+ }
4724
+
4725
+ .hover-rotate {
4726
+ -webkit-transition: all 0.2s ease-in-out 0.1s;
4727
+ transition: all 0.2s ease-in-out 0.1s;
4728
+ }
4729
+
4730
+ .hover-anchor:hover > .hover-action,
4731
+ .hover-anchor:focus > .hover-action,
4732
+ .hover-anchor:active > .hover-action {
4733
+ display: inherit;
4734
+ }
4735
+
4736
+ .hover-anchor:hover > .hover-rotate,
4737
+ .hover-anchor:focus > .hover-rotate,
4738
+ .hover-anchor:active > .hover-rotate {
4739
+ -webkit-transform: rotate(90deg);
4740
+ -ms-transform: rotate(90deg);
4741
+ transform: rotate(90deg);
4742
+ }
4743
+
4744
+ .backdrop {
4745
+ position: absolute;
4746
+ top: 0;
4747
+ right: 0;
4748
+ bottom: 0;
4749
+ left: 0;
4750
+ z-index: 1050;
4751
+ }
4752
+
4753
+ .backdrop.fade {
4754
+ opacity: 0;
4755
+ filter: alpha(opacity=0);
4756
+ }
4757
+
4758
+ .backdrop.in {
4759
+ opacity: 0.8;
4760
+ filter: alpha(opacity=80);
4761
+ }
4762
+
4763
+ /*desktop*/
4764
+
4765
+ @media screen and (min-width: 992px) {
4766
+ .col-lg-2-4 {
4767
+ float: left;
4768
+ width: 20.000%;
4769
+ }
4770
+ }
4771
+
4772
+ @media (min-width: 768px) and (max-width: 991px) {
4773
+ .hidden-sm.show {
4774
+ display: inherit !important;
4775
+ }
4776
+ }
4777
+
4778
+ /*phone*/
4779
+
4780
+ @media (max-width: 767px) {
4781
+ .w-auto-xs {
4782
+ width: auto;
4783
+ }
4784
+ .shift {
4785
+ display: none !important;
4786
+ }
4787
+ .shift.in {
4788
+ display: block !important;
4789
+ }
4790
+ .row-2 [class*="col"] {
4791
+ float: left;
4792
+ width: 50%;
4793
+ }
4794
+ .row-2 .col-0 {
4795
+ clear: none;
4796
+ }
4797
+ .row-2 li:nth-child(odd) {
4798
+ margin-left: 0;
4799
+ clear: left;
4800
+ }
4801
+ .text-center-xs {
4802
+ text-align: center;
4803
+ }
4804
+ .text-left-xs {
4805
+ text-align: left;
4806
+ }
4807
+ .text-right-xs {
4808
+ text-align: right;
4809
+ }
4810
+ .no-border-xs {
4811
+ border-width: 0;
4812
+ }
4813
+ .pull-none-xs {
4814
+ float: none !important;
4815
+ }
4816
+ .pull-right-xs {
4817
+ float: right !important;
4818
+ }
4819
+ .pull-left-xs {
4820
+ float: left !important;
4821
+ }
4822
+ .dropdown-menu.pull-none-xs {
4823
+ left: 0;
4824
+ }
4825
+ .hidden-xs.show {
4826
+ display: inherit !important;
4827
+ }
4828
+ .wrapper-lg,
4829
+ .wrapper-md {
4830
+ padding: 15px;
4831
+ }
4832
+ .padder-lg,
4833
+ .padder-md {
4834
+ padding-right: 15px;
4835
+ padding-left: 15px;
4836
+ }
4837
+ }
4838
+
4839
+ .butterbar {
4840
+ position: relative;
4841
+ height: 3px;
4842
+ margin-bottom: -3px;
4843
+ }
4844
+
4845
+ .butterbar .bar {
4846
+ position: absolute;
4847
+ width: 100%;
4848
+ height: 0;
4849
+ text-indent: -9999px;
4850
+ background-color: #23b7e5;
4851
+ }
4852
+
4853
+ .butterbar .bar:before {
4854
+ position: absolute;
4855
+ right: 50%;
4856
+ left: 50%;
4857
+ height: 3px;
4858
+ background-color: inherit;
4859
+ content: "";
4860
+ }
4861
+
4862
+ .butterbar.active {
4863
+ -webkit-animation: changebar 2.25s infinite 0.75s;
4864
+ -moz-animation: changebar 2.25s infinite 0.75s;
4865
+ animation: changebar 2.25s infinite 0.75s;
4866
+ }
4867
+
4868
+ .butterbar.active .bar {
4869
+ -webkit-animation: changebar 2.25s infinite;
4870
+ -moz-animation: changebar 2.25s infinite;
4871
+ animation: changebar 2.25s infinite;
4872
+ }
4873
+
4874
+ .butterbar.active .bar:before {
4875
+ -webkit-animation: movingbar 0.75s infinite;
4876
+ -moz-animation: movingbar 0.75s infinite;
4877
+ animation: movingbar 0.75s infinite;
4878
+ }
4879
+
4880
+ /* Moving bar */
4881
+
4882
+ @-webkit-keyframes movingbar {
4883
+ 0% {
4884
+ right: 50%;
4885
+ left: 50%;
4886
+ }
4887
+ 99.9% {
4888
+ right: 0;
4889
+ left: 0;
4890
+ }
4891
+ 100% {
4892
+ right: 50%;
4893
+ left: 50%;
4894
+ }
4895
+ }
4896
+
4897
+ @-moz-keyframes movingbar {
4898
+ 0% {
4899
+ right: 50%;
4900
+ left: 50%;
4901
+ }
4902
+ 99.9% {
4903
+ right: 0;
4904
+ left: 0;
4905
+ }
4906
+ 100% {
4907
+ right: 50%;
4908
+ left: 50%;
4909
+ }
4910
+ }
4911
+
4912
+ @keyframes movingbar {
4913
+ 0% {
4914
+ right: 50%;
4915
+ left: 50%;
4916
+ }
4917
+ 99.9% {
4918
+ right: 0;
4919
+ left: 0;
4920
+ }
4921
+ 100% {
4922
+ right: 50%;
4923
+ left: 50%;
4924
+ }
4925
+ }
4926
+
4927
+ /* change bar */
4928
+
4929
+ @-webkit-keyframes changebar {
4930
+ 0% {
4931
+ background-color: #23b7e5;
4932
+ }
4933
+ 33.3% {
4934
+ background-color: #23b7e5;
4935
+ }
4936
+ 33.33% {
4937
+ background-color: #fad733;
4938
+ }
4939
+ 66.6% {
4940
+ background-color: #fad733;
4941
+ }
4942
+ 66.66% {
4943
+ background-color: #ff8503;
4944
+ }
4945
+ 99.9% {
4946
+ background-color: #ff8503;
4947
+ }
4948
+ }
4949
+
4950
+ @-moz-keyframes changebar {
4951
+ 0% {
4952
+ background-color: #23b7e5;
4953
+ }
4954
+ 33.3% {
4955
+ background-color: #23b7e5;
4956
+ }
4957
+ 33.33% {
4958
+ background-color: #fad733;
4959
+ }
4960
+ 66.6% {
4961
+ background-color: #fad733;
4962
+ }
4963
+ 66.66% {
4964
+ background-color: #ff8503;
4965
+ }
4966
+ 99.9% {
4967
+ background-color: #ff8503;
4968
+ }
4969
+ }
4970
+
4971
+ @keyframes changebar {
4972
+ 0% {
4973
+ background-color: #23b7e5;
4974
+ }
4975
+ 33.3% {
4976
+ background-color: #23b7e5;
4977
+ }
4978
+ 33.33% {
4979
+ background-color: #fad733;
4980
+ }
4981
+ 66.6% {
4982
+ background-color: #fad733;
4983
+ }
4984
+ 66.66% {
4985
+ background-color: #ff8503;
4986
+ }
4987
+ 99.9% {
4988
+ background-color: #ff8503;
4989
+ }
4990
+ }