creative-dashpaper-gem 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +41 -0
  3. data/lib/creative/dash_papergem/version.rb +8 -0
  4. data/lib/creative/dash_papergem.rb +10 -0
  5. data/vendor/assets/fonts/themify.eot +0 -0
  6. data/vendor/assets/fonts/themify.svg +362 -0
  7. data/vendor/assets/fonts/themify.ttf +0 -0
  8. data/vendor/assets/fonts/themify.woff +0 -0
  9. data/vendor/assets/images/apple-icon.png +0 -0
  10. data/vendor/assets/images/background.jpg +0 -0
  11. data/vendor/assets/images/faces/face-0.jpg +0 -0
  12. data/vendor/assets/images/faces/face-1.jpg +0 -0
  13. data/vendor/assets/images/faces/face-2.jpg +0 -0
  14. data/vendor/assets/images/faces/face-3.jpg +0 -0
  15. data/vendor/assets/images/favicon.png +0 -0
  16. data/vendor/assets/images/new_logo.png +0 -0
  17. data/vendor/assets/images/tim_80x80.png +0 -0
  18. data/vendor/assets/javascripts/bootstrap-checkbox-radio.js +248 -0
  19. data/vendor/assets/javascripts/bootstrap-notify.js +404 -0
  20. data/vendor/assets/javascripts/bootstrap.min.js +7 -0
  21. data/vendor/assets/javascripts/chartist.min.js +9 -0
  22. data/vendor/assets/javascripts/demo.js +151 -0
  23. data/vendor/assets/javascripts/jquery-1.10.2.js +9789 -0
  24. data/vendor/assets/javascripts/paper-dashboard.js +126 -0
  25. data/vendor/assets/stylesheets/animate.min.css +6 -0
  26. data/vendor/assets/stylesheets/bootstrap.min.css +5 -0
  27. data/vendor/assets/stylesheets/demo.css +70 -0
  28. data/vendor/assets/stylesheets/paper/_alerts.scss +64 -0
  29. data/vendor/assets/stylesheets/paper/_buttons.scss +114 -0
  30. data/vendor/assets/stylesheets/paper/_cards.scss +243 -0
  31. data/vendor/assets/stylesheets/paper/_chartist.scss +230 -0
  32. data/vendor/assets/stylesheets/paper/_checkbox-radio.scss +132 -0
  33. data/vendor/assets/stylesheets/paper/_dropdown.scss +115 -0
  34. data/vendor/assets/stylesheets/paper/_footers.scss +43 -0
  35. data/vendor/assets/stylesheets/paper/_inputs.scss +171 -0
  36. data/vendor/assets/stylesheets/paper/_misc.scss +69 -0
  37. data/vendor/assets/stylesheets/paper/_mixins.scss +17 -0
  38. data/vendor/assets/stylesheets/paper/_navbars.scss +167 -0
  39. data/vendor/assets/stylesheets/paper/_responsive.scss +447 -0
  40. data/vendor/assets/stylesheets/paper/_sidebar-and-main-panel.scss +195 -0
  41. data/vendor/assets/stylesheets/paper/_tables.scss +77 -0
  42. data/vendor/assets/stylesheets/paper/_typography.scss +117 -0
  43. data/vendor/assets/stylesheets/paper/_variables.scss +262 -0
  44. data/vendor/assets/stylesheets/paper/mixins/_buttons.scss +85 -0
  45. data/vendor/assets/stylesheets/paper/mixins/_cards.scss +8 -0
  46. data/vendor/assets/stylesheets/paper/mixins/_chartist.scss +104 -0
  47. data/vendor/assets/stylesheets/paper/mixins/_icons.scss +13 -0
  48. data/vendor/assets/stylesheets/paper/mixins/_inputs.scss +17 -0
  49. data/vendor/assets/stylesheets/paper/mixins/_labels.scss +21 -0
  50. data/vendor/assets/stylesheets/paper/mixins/_navbars.scss +11 -0
  51. data/vendor/assets/stylesheets/paper/mixins/_sidebar.scss +42 -0
  52. data/vendor/assets/stylesheets/paper/mixins/_tabs.scss +4 -0
  53. data/vendor/assets/stylesheets/paper/mixins/_transparency.scss +20 -0
  54. data/vendor/assets/stylesheets/paper/mixins/_vendor-prefixes.scss +197 -0
  55. data/vendor/assets/stylesheets/paper-dashboard.css +3315 -0
  56. data/vendor/assets/stylesheets/paper-dashboard.scss +28 -0
  57. data/vendor/assets/stylesheets/themify-icons.css +1081 -0
  58. metadata +148 -0
@@ -0,0 +1,3315 @@
1
+ /* light colors - used for select dropdown */
2
+ .ct-blue {
3
+ stroke: #7A9E9F !important;
4
+ }
5
+
6
+ .ct-azure {
7
+ stroke: #68B3C8 !important;
8
+ }
9
+
10
+ .ct-green {
11
+ stroke: #7AC29A !important;
12
+ }
13
+
14
+ .ct-orange {
15
+ stroke: #F3BB45 !important;
16
+ }
17
+
18
+ .ct-red {
19
+ stroke: #EB5E28 !important;
20
+ }
21
+
22
+ h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, .navbar, .brand, a, .td-name, td {
23
+ -moz-osx-font-smoothing: grayscale;
24
+ -webkit-font-smoothing: antialiased;
25
+ font-family: 'Muli', "Helvetica", Arial, sans-serif;
26
+ }
27
+
28
+ h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
29
+ font-weight: 400;
30
+ margin: 30px 0 15px;
31
+ }
32
+
33
+ h1, .h1 {
34
+ font-size: 3.2em;
35
+ }
36
+
37
+ h2, .h2 {
38
+ font-size: 2.6em;
39
+ }
40
+
41
+ h3, .h3 {
42
+ font-size: 1.825em;
43
+ line-height: 1.4;
44
+ margin: 20px 0 10px;
45
+ }
46
+
47
+ h4, .h4 {
48
+ font-size: 1.5em;
49
+ font-weight: 600;
50
+ line-height: 1.2em;
51
+ }
52
+
53
+ h5, .h5 {
54
+ font-size: 1.25em;
55
+ font-weight: 400;
56
+ line-height: 1.4em;
57
+ margin-bottom: 15px;
58
+ }
59
+
60
+ h6, .h6 {
61
+ font-size: 0.9em;
62
+ font-weight: 600;
63
+ text-transform: uppercase;
64
+ }
65
+
66
+ p {
67
+ font-size: 16px;
68
+ line-height: 1.4em;
69
+ }
70
+
71
+ h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
72
+ color: #9A9A9A;
73
+ font-weight: 300;
74
+ line-height: 1.4em;
75
+ }
76
+
77
+ h1 small, h2 small, h3 small, h1 .small, h2 .small, h3 .small {
78
+ font-size: 60%;
79
+ }
80
+
81
+ .title-uppercase {
82
+ text-transform: uppercase;
83
+ }
84
+
85
+ blockquote {
86
+ font-style: italic;
87
+ }
88
+
89
+ blockquote small {
90
+ font-style: normal;
91
+ }
92
+
93
+ .text-muted {
94
+ color: #DDDDDD;
95
+ }
96
+
97
+ .text-primary, .text-primary:hover {
98
+ color: #427C89;
99
+ }
100
+
101
+ .text-info, .text-info:hover {
102
+ color: #3091B2;
103
+ }
104
+
105
+ .text-success, .text-success:hover {
106
+ color: #42A084;
107
+ }
108
+
109
+ .text-warning, .text-warning:hover {
110
+ color: #BB992F;
111
+ }
112
+
113
+ .text-danger, .text-danger:hover {
114
+ color: #B33C12;
115
+ }
116
+
117
+ .glyphicon {
118
+ line-height: 1;
119
+ }
120
+
121
+ strong {
122
+ color: #403D39;
123
+ }
124
+
125
+ .icon-primary {
126
+ color: #7A9E9F;
127
+ }
128
+
129
+ .icon-info {
130
+ color: #68B3C8;
131
+ }
132
+
133
+ .icon-success {
134
+ color: #7AC29A;
135
+ }
136
+
137
+ .icon-warning {
138
+ color: #F3BB45;
139
+ }
140
+
141
+ .icon-danger {
142
+ color: #EB5E28;
143
+ }
144
+
145
+ .chart-legend .text-primary, .chart-legend .text-primary:hover {
146
+ color: #7A9E9F;
147
+ }
148
+ .chart-legend .text-info, .chart-legend .text-info:hover {
149
+ color: #68B3C8;
150
+ }
151
+ .chart-legend .text-success, .chart-legend .text-success:hover {
152
+ color: #7AC29A;
153
+ }
154
+ .chart-legend .text-warning, .chart-legend .text-warning:hover {
155
+ color: #F3BB45;
156
+ }
157
+ .chart-legend .text-danger, .chart-legend .text-danger:hover {
158
+ color: #EB5E28;
159
+ }
160
+
161
+ /* General overwrite */
162
+ body {
163
+ color: #66615b;
164
+ font-size: 14px;
165
+ font-family: 'Muli', Arial, sans-serif;
166
+ }
167
+ body .wrapper {
168
+ min-height: 100vh;
169
+ position: relative;
170
+ }
171
+
172
+ a {
173
+ color: #68B3C8;
174
+ }
175
+ a:hover, a:focus {
176
+ color: #3091B2;
177
+ text-decoration: none;
178
+ }
179
+
180
+ a:focus, a:active,
181
+ button::-moz-focus-inner,
182
+ input::-moz-focus-inner,
183
+ select::-moz-focus-inner,
184
+ input[type="file"] > input[type="button"]::-moz-focus-inner {
185
+ outline: 0 !important;
186
+ }
187
+
188
+ .ui-slider-handle:focus,
189
+ .navbar-toggle,
190
+ input:focus,
191
+ button:focus {
192
+ outline: 0 !important;
193
+ }
194
+
195
+ /* Animations */
196
+ .form-control,
197
+ .input-group-addon,
198
+ .tagsinput,
199
+ .navbar,
200
+ .navbar .alert {
201
+ -webkit-transition: all 300ms linear;
202
+ -moz-transition: all 300ms linear;
203
+ -o-transition: all 300ms linear;
204
+ -ms-transition: all 300ms linear;
205
+ transition: all 300ms linear;
206
+ }
207
+
208
+ .sidebar .nav a,
209
+ .table > tbody > tr .td-actions .btn {
210
+ -webkit-transition: all 150ms ease-in;
211
+ -moz-transition: all 150ms ease-in;
212
+ -o-transition: all 150ms ease-in;
213
+ -ms-transition: all 150ms ease-in;
214
+ transition: all 150ms ease-in;
215
+ }
216
+
217
+ .btn {
218
+ -webkit-transition: all 100ms ease-in;
219
+ -moz-transition: all 100ms ease-in;
220
+ -o-transition: all 100ms ease-in;
221
+ -ms-transition: all 100ms ease-in;
222
+ transition: all 100ms ease-in;
223
+ }
224
+
225
+ .fa {
226
+ width: 21px;
227
+ text-align: center;
228
+ }
229
+
230
+ .fa-base {
231
+ font-size: 1.25em !important;
232
+ }
233
+
234
+ .margin-top {
235
+ margin-top: 50px;
236
+ }
237
+
238
+ hr {
239
+ border-color: #F1EAE0;
240
+ }
241
+
242
+ .wrapper {
243
+ position: relative;
244
+ top: 0;
245
+ height: 100vh;
246
+ }
247
+
248
+ .sidebar {
249
+ position: absolute;
250
+ top: 0;
251
+ bottom: 0;
252
+ left: 0;
253
+ z-index: 1;
254
+ background-size: cover;
255
+ background-position: center center;
256
+ }
257
+ .sidebar .sidebar-wrapper {
258
+ position: relative;
259
+ max-height: none;
260
+ min-height: 100%;
261
+ overflow: hidden;
262
+ width: 260px;
263
+ z-index: 4;
264
+ box-shadow: inset -1px 0px 0px 0px #DDDDDD;
265
+ }
266
+ .sidebar .sidebar-background {
267
+ position: absolute;
268
+ z-index: 1;
269
+ height: 100%;
270
+ width: 100%;
271
+ display: block;
272
+ top: 0;
273
+ left: 0;
274
+ background-size: cover;
275
+ background-position: center center;
276
+ }
277
+
278
+ .sidebar,
279
+ .off-canvas-sidebar {
280
+ width: 260px;
281
+ display: block;
282
+ font-weight: 200;
283
+ }
284
+ .sidebar .logo,
285
+ .off-canvas-sidebar .logo {
286
+ padding: 18px 0px;
287
+ margin: 0 20px;
288
+ }
289
+ .sidebar .logo p,
290
+ .off-canvas-sidebar .logo p {
291
+ float: left;
292
+ font-size: 20px;
293
+ margin: 10px 10px;
294
+ line-height: 20px;
295
+ }
296
+ .sidebar .logo .simple-text,
297
+ .off-canvas-sidebar .logo .simple-text {
298
+ text-transform: uppercase;
299
+ padding: 4px 0px;
300
+ display: block;
301
+ font-size: 18px;
302
+ text-align: center;
303
+ font-weight: 400;
304
+ line-height: 30px;
305
+ }
306
+ .sidebar .nav,
307
+ .off-canvas-sidebar .nav {
308
+ margin-top: 20px;
309
+ }
310
+ .sidebar .nav li > a,
311
+ .off-canvas-sidebar .nav li > a {
312
+ margin: 10px 0px;
313
+ padding-left: 25px;
314
+ padding-right: 25px;
315
+ opacity: .7;
316
+ }
317
+ .sidebar .nav li:hover > a,
318
+ .off-canvas-sidebar .nav li:hover > a {
319
+ opacity: 1;
320
+ }
321
+ .sidebar .nav li.active > a,
322
+ .off-canvas-sidebar .nav li.active > a {
323
+ color: #7A9E9F;
324
+ opacity: 1;
325
+ }
326
+ .sidebar .nav li.active > a:before,
327
+ .off-canvas-sidebar .nav li.active > a:before {
328
+ border-right: 17px solid #DDDDDD;
329
+ border-top: 17px solid transparent;
330
+ border-bottom: 17px solid transparent;
331
+ content: "";
332
+ display: inline-block;
333
+ position: absolute;
334
+ right: 0;
335
+ top: 8px;
336
+ }
337
+ .sidebar .nav li.active > a:after,
338
+ .off-canvas-sidebar .nav li.active > a:after {
339
+ border-right: 17px solid #f4f3ef;
340
+ border-top: 17px solid transparent;
341
+ border-bottom: 17px solid transparent;
342
+ content: "";
343
+ display: inline-block;
344
+ position: absolute;
345
+ right: -1px;
346
+ top: 8px;
347
+ }
348
+ .sidebar .nav p,
349
+ .off-canvas-sidebar .nav p {
350
+ margin: 0;
351
+ line-height: 30px;
352
+ font-size: 12px;
353
+ font-weight: 600;
354
+ text-transform: uppercase;
355
+ }
356
+ .sidebar .nav i,
357
+ .off-canvas-sidebar .nav i {
358
+ font-size: 24px;
359
+ float: left;
360
+ margin-right: 15px;
361
+ line-height: 30px;
362
+ width: 30px;
363
+ text-align: center;
364
+ }
365
+ .sidebar:after, .sidebar:before,
366
+ .off-canvas-sidebar:after,
367
+ .off-canvas-sidebar:before {
368
+ display: block;
369
+ content: "";
370
+ position: absolute;
371
+ width: 100%;
372
+ height: 100%;
373
+ top: 0;
374
+ left: 0;
375
+ z-index: 2;
376
+ background: #FFFFFF;
377
+ }
378
+ .sidebar:after, .sidebar:before, .sidebar[data-background-color="white"]:after, .sidebar[data-background-color="white"]:before,
379
+ .off-canvas-sidebar:after,
380
+ .off-canvas-sidebar:before,
381
+ .off-canvas-sidebar[data-background-color="white"]:after,
382
+ .off-canvas-sidebar[data-background-color="white"]:before {
383
+ background-color: #FFFFFF;
384
+ }
385
+ .sidebar .logo, .sidebar[data-background-color="white"] .logo,
386
+ .off-canvas-sidebar .logo,
387
+ .off-canvas-sidebar[data-background-color="white"] .logo {
388
+ border-bottom: 1px solid rgba(102, 97, 91, 0.3);
389
+ }
390
+ .sidebar .logo p, .sidebar[data-background-color="white"] .logo p,
391
+ .off-canvas-sidebar .logo p,
392
+ .off-canvas-sidebar[data-background-color="white"] .logo p {
393
+ color: #66615B;
394
+ }
395
+ .sidebar .logo .simple-text, .sidebar[data-background-color="white"] .logo .simple-text,
396
+ .off-canvas-sidebar .logo .simple-text,
397
+ .off-canvas-sidebar[data-background-color="white"] .logo .simple-text {
398
+ color: #66615B;
399
+ }
400
+ .sidebar .nav li:not(.active) > a, .sidebar[data-background-color="white"] .nav li:not(.active) > a,
401
+ .off-canvas-sidebar .nav li:not(.active) > a,
402
+ .off-canvas-sidebar[data-background-color="white"] .nav li:not(.active) > a {
403
+ color: #66615B;
404
+ }
405
+ .sidebar .nav .divider, .sidebar[data-background-color="white"] .nav .divider,
406
+ .off-canvas-sidebar .nav .divider,
407
+ .off-canvas-sidebar[data-background-color="white"] .nav .divider {
408
+ background-color: rgba(102, 97, 91, 0.2);
409
+ }
410
+ .sidebar[data-background-color="black"]:after, .sidebar[data-background-color="black"]:before,
411
+ .off-canvas-sidebar[data-background-color="black"]:after,
412
+ .off-canvas-sidebar[data-background-color="black"]:before {
413
+ background-color: #212120;
414
+ }
415
+ .sidebar[data-background-color="black"] .logo,
416
+ .off-canvas-sidebar[data-background-color="black"] .logo {
417
+ border-bottom: 1px solid rgba(255, 255, 255, 0.3);
418
+ }
419
+ .sidebar[data-background-color="black"] .logo p,
420
+ .off-canvas-sidebar[data-background-color="black"] .logo p {
421
+ color: #FFFFFF;
422
+ }
423
+ .sidebar[data-background-color="black"] .logo .simple-text,
424
+ .off-canvas-sidebar[data-background-color="black"] .logo .simple-text {
425
+ color: #FFFFFF;
426
+ }
427
+ .sidebar[data-background-color="black"] .nav li:not(.active) > a,
428
+ .off-canvas-sidebar[data-background-color="black"] .nav li:not(.active) > a {
429
+ color: #FFFFFF;
430
+ }
431
+ .sidebar[data-background-color="black"] .nav .divider,
432
+ .off-canvas-sidebar[data-background-color="black"] .nav .divider {
433
+ background-color: rgba(255, 255, 255, 0.2);
434
+ }
435
+ .sidebar[data-active-color="primary"] .nav li.active > a,
436
+ .off-canvas-sidebar[data-active-color="primary"] .nav li.active > a {
437
+ color: #7A9E9F;
438
+ opacity: 1;
439
+ }
440
+ .sidebar[data-active-color="info"] .nav li.active > a,
441
+ .off-canvas-sidebar[data-active-color="info"] .nav li.active > a {
442
+ color: #68B3C8;
443
+ opacity: 1;
444
+ }
445
+ .sidebar[data-active-color="success"] .nav li.active > a,
446
+ .off-canvas-sidebar[data-active-color="success"] .nav li.active > a {
447
+ color: #7AC29A;
448
+ opacity: 1;
449
+ }
450
+ .sidebar[data-active-color="warning"] .nav li.active > a,
451
+ .off-canvas-sidebar[data-active-color="warning"] .nav li.active > a {
452
+ color: #F3BB45;
453
+ opacity: 1;
454
+ }
455
+ .sidebar[data-active-color="danger"] .nav li.active > a,
456
+ .off-canvas-sidebar[data-active-color="danger"] .nav li.active > a {
457
+ color: #EB5E28;
458
+ opacity: 1;
459
+ }
460
+
461
+ .main-panel {
462
+ background-color: #f4f3ef;
463
+ background-image: linear-gradient(to bottom, transparent 0%, rgba(112, 112, 112, 0) 60%, rgba(186, 186, 186, 0.15) 100%);
464
+ position: relative;
465
+ z-index: 2;
466
+ float: right;
467
+ width: calc(100% - 260px);
468
+ min-height: 100%;
469
+ }
470
+ .main-panel > .content {
471
+ padding: 30px 15px;
472
+ min-height: calc(100% - 123px);
473
+ }
474
+ .main-panel > .footer {
475
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
476
+ }
477
+ .main-panel .navbar {
478
+ margin-bottom: 0;
479
+ }
480
+
481
+ .sidebar,
482
+ .main-panel {
483
+ overflow: auto;
484
+ max-height: 100%;
485
+ height: 100%;
486
+ -webkit-transition-property: top,bottom;
487
+ transition-property: top,bottom;
488
+ -webkit-transition-duration: .2s,.2s;
489
+ transition-duration: .2s,.2s;
490
+ -webkit-transition-timing-function: linear,linear;
491
+ transition-timing-function: linear,linear;
492
+ -webkit-overflow-scrolling: touch;
493
+ }
494
+
495
+ .btn,
496
+ .navbar .navbar-nav > li > a.btn {
497
+ border-radius: 20px;
498
+ box-sizing: border-box;
499
+ border-width: 2px;
500
+ background-color: transparent;
501
+ font-size: 14px;
502
+ font-weight: 500;
503
+ padding: 7px 18px;
504
+ border-color: #66615B;
505
+ color: #66615B;
506
+ -webkit-transition: all 150ms linear;
507
+ -moz-transition: all 150ms linear;
508
+ -o-transition: all 150ms linear;
509
+ -ms-transition: all 150ms linear;
510
+ transition: all 150ms linear;
511
+ }
512
+ .btn:hover, .btn:focus, .btn:active, .btn.active, .open > .btn.dropdown-toggle,
513
+ .navbar .navbar-nav > li > a.btn:hover,
514
+ .navbar .navbar-nav > li > a.btn:focus,
515
+ .navbar .navbar-nav > li > a.btn:active,
516
+ .navbar .navbar-nav > li > a.btn.active, .open >
517
+ .navbar .navbar-nav > li > a.btn.dropdown-toggle {
518
+ background-color: #66615B;
519
+ color: rgba(255, 255, 255, 0.7);
520
+ border-color: #66615B;
521
+ }
522
+ .btn:hover .caret, .btn:focus .caret, .btn:active .caret, .btn.active .caret, .open > .btn.dropdown-toggle .caret,
523
+ .navbar .navbar-nav > li > a.btn:hover .caret,
524
+ .navbar .navbar-nav > li > a.btn:focus .caret,
525
+ .navbar .navbar-nav > li > a.btn:active .caret,
526
+ .navbar .navbar-nav > li > a.btn.active .caret, .open >
527
+ .navbar .navbar-nav > li > a.btn.dropdown-toggle .caret {
528
+ border-top-color: rgba(255, 255, 255, 0.7);
529
+ }
530
+ .btn.disabled, .btn.disabled:hover, .btn.disabled:focus, .btn.disabled.focus, .btn.disabled:active, .btn.disabled.active, .btn:disabled, .btn:disabled:hover, .btn:disabled:focus, .btn:disabled.focus, .btn:disabled:active, .btn:disabled.active, .btn[disabled], .btn[disabled]:hover, .btn[disabled]:focus, .btn[disabled].focus, .btn[disabled]:active, .btn[disabled].active, fieldset[disabled] .btn, fieldset[disabled] .btn:hover, fieldset[disabled] .btn:focus, fieldset[disabled] .btn.focus, fieldset[disabled] .btn:active, fieldset[disabled] .btn.active,
531
+ .navbar .navbar-nav > li > a.btn.disabled,
532
+ .navbar .navbar-nav > li > a.btn.disabled:hover,
533
+ .navbar .navbar-nav > li > a.btn.disabled:focus,
534
+ .navbar .navbar-nav > li > a.btn.disabled.focus,
535
+ .navbar .navbar-nav > li > a.btn.disabled:active,
536
+ .navbar .navbar-nav > li > a.btn.disabled.active,
537
+ .navbar .navbar-nav > li > a.btn:disabled,
538
+ .navbar .navbar-nav > li > a.btn:disabled:hover,
539
+ .navbar .navbar-nav > li > a.btn:disabled:focus,
540
+ .navbar .navbar-nav > li > a.btn:disabled.focus,
541
+ .navbar .navbar-nav > li > a.btn:disabled:active,
542
+ .navbar .navbar-nav > li > a.btn:disabled.active,
543
+ .navbar .navbar-nav > li > a.btn[disabled],
544
+ .navbar .navbar-nav > li > a.btn[disabled]:hover,
545
+ .navbar .navbar-nav > li > a.btn[disabled]:focus,
546
+ .navbar .navbar-nav > li > a.btn[disabled].focus,
547
+ .navbar .navbar-nav > li > a.btn[disabled]:active,
548
+ .navbar .navbar-nav > li > a.btn[disabled].active, fieldset[disabled]
549
+ .navbar .navbar-nav > li > a.btn, fieldset[disabled]
550
+ .navbar .navbar-nav > li > a.btn:hover, fieldset[disabled]
551
+ .navbar .navbar-nav > li > a.btn:focus, fieldset[disabled]
552
+ .navbar .navbar-nav > li > a.btn.focus, fieldset[disabled]
553
+ .navbar .navbar-nav > li > a.btn:active, fieldset[disabled]
554
+ .navbar .navbar-nav > li > a.btn.active {
555
+ background-color: transparent;
556
+ border-color: #66615B;
557
+ }
558
+ .btn.btn-fill,
559
+ .navbar .navbar-nav > li > a.btn.btn-fill {
560
+ color: #FFFFFF;
561
+ background-color: #66615B;
562
+ opacity: 1;
563
+ filter: alpha(opacity=100);
564
+ }
565
+ .btn.btn-fill:hover, .btn.btn-fill:focus, .btn.btn-fill:active, .btn.btn-fill.active, .open > .btn.btn-fill.dropdown-toggle,
566
+ .navbar .navbar-nav > li > a.btn.btn-fill:hover,
567
+ .navbar .navbar-nav > li > a.btn.btn-fill:focus,
568
+ .navbar .navbar-nav > li > a.btn.btn-fill:active,
569
+ .navbar .navbar-nav > li > a.btn.btn-fill.active, .open >
570
+ .navbar .navbar-nav > li > a.btn.btn-fill.dropdown-toggle {
571
+ background-color: #403D39;
572
+ color: #FFFFFF;
573
+ border-color: #403D39;
574
+ }
575
+ .btn.btn-fill .caret,
576
+ .navbar .navbar-nav > li > a.btn.btn-fill .caret {
577
+ border-top-color: #FFFFFF;
578
+ }
579
+ .btn.btn-simple:hover, .btn.btn-simple:focus, .btn.btn-simple:active, .btn.btn-simple.active, .open > .btn.btn-simple.dropdown-toggle,
580
+ .navbar .navbar-nav > li > a.btn.btn-simple:hover,
581
+ .navbar .navbar-nav > li > a.btn.btn-simple:focus,
582
+ .navbar .navbar-nav > li > a.btn.btn-simple:active,
583
+ .navbar .navbar-nav > li > a.btn.btn-simple.active, .open >
584
+ .navbar .navbar-nav > li > a.btn.btn-simple.dropdown-toggle {
585
+ background-color: transparent;
586
+ color: #403D39;
587
+ }
588
+ .btn.btn-simple .caret,
589
+ .navbar .navbar-nav > li > a.btn.btn-simple .caret {
590
+ border-top-color: #FFFFFF;
591
+ }
592
+ .btn .caret,
593
+ .navbar .navbar-nav > li > a.btn .caret {
594
+ border-top-color: #66615B;
595
+ }
596
+ .btn:hover, .btn:focus,
597
+ .navbar .navbar-nav > li > a.btn:hover,
598
+ .navbar .navbar-nav > li > a.btn:focus {
599
+ outline: 0 !important;
600
+ }
601
+ .btn:active, .btn.active, .open > .btn.dropdown-toggle,
602
+ .navbar .navbar-nav > li > a.btn:active,
603
+ .navbar .navbar-nav > li > a.btn.active, .open >
604
+ .navbar .navbar-nav > li > a.btn.dropdown-toggle {
605
+ -webkit-box-shadow: none;
606
+ box-shadow: none;
607
+ outline: 0 !important;
608
+ }
609
+ .btn.btn-icon,
610
+ .navbar .navbar-nav > li > a.btn.btn-icon {
611
+ padding: 7px;
612
+ }
613
+
614
+ .btn-group .btn + .btn,
615
+ .btn-group .btn + .btn-group,
616
+ .btn-group .btn-group + .btn,
617
+ .btn-group .btn-group + .btn-group {
618
+ margin-left: -2px;
619
+ }
620
+
621
+ .navbar .navbar-nav > li > a.btn-primary, .btn-primary {
622
+ border-color: #7A9E9F;
623
+ color: #7A9E9F;
624
+ }
625
+ .navbar .navbar-nav > li > a.btn-primary:hover, .navbar .navbar-nav > li > a.btn-primary:focus, .navbar .navbar-nav > li > a.btn-primary:active, .navbar .navbar-nav > li > a.btn-primary.active, .open > .navbar .navbar-nav > li > a.btn-primary.dropdown-toggle, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
626
+ background-color: #7A9E9F;
627
+ color: rgba(255, 255, 255, 0.7);
628
+ border-color: #7A9E9F;
629
+ }
630
+ .navbar .navbar-nav > li > a.btn-primary:hover .caret, .navbar .navbar-nav > li > a.btn-primary:focus .caret, .navbar .navbar-nav > li > a.btn-primary:active .caret, .navbar .navbar-nav > li > a.btn-primary.active .caret, .open > .navbar .navbar-nav > li > a.btn-primary.dropdown-toggle .caret, .btn-primary:hover .caret, .btn-primary:focus .caret, .btn-primary:active .caret, .btn-primary.active .caret, .open > .btn-primary.dropdown-toggle .caret {
631
+ border-top-color: rgba(255, 255, 255, 0.7);
632
+ }
633
+ .navbar .navbar-nav > li > a.btn-primary.disabled, .navbar .navbar-nav > li > a.btn-primary.disabled:hover, .navbar .navbar-nav > li > a.btn-primary.disabled:focus, .navbar .navbar-nav > li > a.btn-primary.disabled.focus, .navbar .navbar-nav > li > a.btn-primary.disabled:active, .navbar .navbar-nav > li > a.btn-primary.disabled.active, .navbar .navbar-nav > li > a.btn-primary:disabled, .navbar .navbar-nav > li > a.btn-primary:disabled:hover, .navbar .navbar-nav > li > a.btn-primary:disabled:focus, .navbar .navbar-nav > li > a.btn-primary:disabled.focus, .navbar .navbar-nav > li > a.btn-primary:disabled:active, .navbar .navbar-nav > li > a.btn-primary:disabled.active, .navbar .navbar-nav > li > a.btn-primary[disabled], .navbar .navbar-nav > li > a.btn-primary[disabled]:hover, .navbar .navbar-nav > li > a.btn-primary[disabled]:focus, .navbar .navbar-nav > li > a.btn-primary[disabled].focus, .navbar .navbar-nav > li > a.btn-primary[disabled]:active, .navbar .navbar-nav > li > a.btn-primary[disabled].active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-primary, fieldset[disabled] .navbar .navbar-nav > li > a.btn-primary:hover, fieldset[disabled] .navbar .navbar-nav > li > a.btn-primary:focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-primary.focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-primary:active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-primary.active, .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary:disabled, .btn-primary:disabled:hover, .btn-primary:disabled:focus, .btn-primary:disabled.focus, .btn-primary:disabled:active, .btn-primary:disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
634
+ background-color: transparent;
635
+ border-color: #7A9E9F;
636
+ }
637
+ .navbar .navbar-nav > li > a.btn-primary.btn-fill, .btn-primary.btn-fill {
638
+ color: #FFFFFF;
639
+ background-color: #7A9E9F;
640
+ opacity: 1;
641
+ filter: alpha(opacity=100);
642
+ }
643
+ .navbar .navbar-nav > li > a.btn-primary.btn-fill:hover, .navbar .navbar-nav > li > a.btn-primary.btn-fill:focus, .navbar .navbar-nav > li > a.btn-primary.btn-fill:active, .navbar .navbar-nav > li > a.btn-primary.btn-fill.active, .open > .navbar .navbar-nav > li > a.btn-primary.btn-fill.dropdown-toggle, .btn-primary.btn-fill:hover, .btn-primary.btn-fill:focus, .btn-primary.btn-fill:active, .btn-primary.btn-fill.active, .open > .btn-primary.btn-fill.dropdown-toggle {
644
+ background-color: #427C89;
645
+ color: #FFFFFF;
646
+ border-color: #427C89;
647
+ }
648
+ .navbar .navbar-nav > li > a.btn-primary.btn-fill .caret, .btn-primary.btn-fill .caret {
649
+ border-top-color: #FFFFFF;
650
+ }
651
+ .navbar .navbar-nav > li > a.btn-primary.btn-simple:hover, .navbar .navbar-nav > li > a.btn-primary.btn-simple:focus, .navbar .navbar-nav > li > a.btn-primary.btn-simple:active, .navbar .navbar-nav > li > a.btn-primary.btn-simple.active, .open > .navbar .navbar-nav > li > a.btn-primary.btn-simple.dropdown-toggle, .btn-primary.btn-simple:hover, .btn-primary.btn-simple:focus, .btn-primary.btn-simple:active, .btn-primary.btn-simple.active, .open > .btn-primary.btn-simple.dropdown-toggle {
652
+ background-color: transparent;
653
+ color: #427C89;
654
+ }
655
+ .navbar .navbar-nav > li > a.btn-primary.btn-simple .caret, .btn-primary.btn-simple .caret {
656
+ border-top-color: #FFFFFF;
657
+ }
658
+ .navbar .navbar-nav > li > a.btn-primary .caret, .btn-primary .caret {
659
+ border-top-color: #7A9E9F;
660
+ }
661
+
662
+ .navbar .navbar-nav > li > a.btn-success, .btn-success {
663
+ border-color: #7AC29A;
664
+ color: #7AC29A;
665
+ }
666
+ .navbar .navbar-nav > li > a.btn-success:hover, .navbar .navbar-nav > li > a.btn-success:focus, .navbar .navbar-nav > li > a.btn-success:active, .navbar .navbar-nav > li > a.btn-success.active, .open > .navbar .navbar-nav > li > a.btn-success.dropdown-toggle, .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
667
+ background-color: #7AC29A;
668
+ color: rgba(255, 255, 255, 0.7);
669
+ border-color: #7AC29A;
670
+ }
671
+ .navbar .navbar-nav > li > a.btn-success:hover .caret, .navbar .navbar-nav > li > a.btn-success:focus .caret, .navbar .navbar-nav > li > a.btn-success:active .caret, .navbar .navbar-nav > li > a.btn-success.active .caret, .open > .navbar .navbar-nav > li > a.btn-success.dropdown-toggle .caret, .btn-success:hover .caret, .btn-success:focus .caret, .btn-success:active .caret, .btn-success.active .caret, .open > .btn-success.dropdown-toggle .caret {
672
+ border-top-color: rgba(255, 255, 255, 0.7);
673
+ }
674
+ .navbar .navbar-nav > li > a.btn-success.disabled, .navbar .navbar-nav > li > a.btn-success.disabled:hover, .navbar .navbar-nav > li > a.btn-success.disabled:focus, .navbar .navbar-nav > li > a.btn-success.disabled.focus, .navbar .navbar-nav > li > a.btn-success.disabled:active, .navbar .navbar-nav > li > a.btn-success.disabled.active, .navbar .navbar-nav > li > a.btn-success:disabled, .navbar .navbar-nav > li > a.btn-success:disabled:hover, .navbar .navbar-nav > li > a.btn-success:disabled:focus, .navbar .navbar-nav > li > a.btn-success:disabled.focus, .navbar .navbar-nav > li > a.btn-success:disabled:active, .navbar .navbar-nav > li > a.btn-success:disabled.active, .navbar .navbar-nav > li > a.btn-success[disabled], .navbar .navbar-nav > li > a.btn-success[disabled]:hover, .navbar .navbar-nav > li > a.btn-success[disabled]:focus, .navbar .navbar-nav > li > a.btn-success[disabled].focus, .navbar .navbar-nav > li > a.btn-success[disabled]:active, .navbar .navbar-nav > li > a.btn-success[disabled].active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-success, fieldset[disabled] .navbar .navbar-nav > li > a.btn-success:hover, fieldset[disabled] .navbar .navbar-nav > li > a.btn-success:focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-success.focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-success:active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-success.active, .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success:disabled, .btn-success:disabled:hover, .btn-success:disabled:focus, .btn-success:disabled.focus, .btn-success:disabled:active, .btn-success:disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
675
+ background-color: transparent;
676
+ border-color: #7AC29A;
677
+ }
678
+ .navbar .navbar-nav > li > a.btn-success.btn-fill, .btn-success.btn-fill {
679
+ color: #FFFFFF;
680
+ background-color: #7AC29A;
681
+ opacity: 1;
682
+ filter: alpha(opacity=100);
683
+ }
684
+ .navbar .navbar-nav > li > a.btn-success.btn-fill:hover, .navbar .navbar-nav > li > a.btn-success.btn-fill:focus, .navbar .navbar-nav > li > a.btn-success.btn-fill:active, .navbar .navbar-nav > li > a.btn-success.btn-fill.active, .open > .navbar .navbar-nav > li > a.btn-success.btn-fill.dropdown-toggle, .btn-success.btn-fill:hover, .btn-success.btn-fill:focus, .btn-success.btn-fill:active, .btn-success.btn-fill.active, .open > .btn-success.btn-fill.dropdown-toggle {
685
+ background-color: #42A084;
686
+ color: #FFFFFF;
687
+ border-color: #42A084;
688
+ }
689
+ .navbar .navbar-nav > li > a.btn-success.btn-fill .caret, .btn-success.btn-fill .caret {
690
+ border-top-color: #FFFFFF;
691
+ }
692
+ .navbar .navbar-nav > li > a.btn-success.btn-simple:hover, .navbar .navbar-nav > li > a.btn-success.btn-simple:focus, .navbar .navbar-nav > li > a.btn-success.btn-simple:active, .navbar .navbar-nav > li > a.btn-success.btn-simple.active, .open > .navbar .navbar-nav > li > a.btn-success.btn-simple.dropdown-toggle, .btn-success.btn-simple:hover, .btn-success.btn-simple:focus, .btn-success.btn-simple:active, .btn-success.btn-simple.active, .open > .btn-success.btn-simple.dropdown-toggle {
693
+ background-color: transparent;
694
+ color: #42A084;
695
+ }
696
+ .navbar .navbar-nav > li > a.btn-success.btn-simple .caret, .btn-success.btn-simple .caret {
697
+ border-top-color: #FFFFFF;
698
+ }
699
+ .navbar .navbar-nav > li > a.btn-success .caret, .btn-success .caret {
700
+ border-top-color: #7AC29A;
701
+ }
702
+
703
+ .navbar .navbar-nav > li > a.btn-info, .btn-info {
704
+ border-color: #68B3C8;
705
+ color: #68B3C8;
706
+ }
707
+ .navbar .navbar-nav > li > a.btn-info:hover, .navbar .navbar-nav > li > a.btn-info:focus, .navbar .navbar-nav > li > a.btn-info:active, .navbar .navbar-nav > li > a.btn-info.active, .open > .navbar .navbar-nav > li > a.btn-info.dropdown-toggle, .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
708
+ background-color: #68B3C8;
709
+ color: rgba(255, 255, 255, 0.7);
710
+ border-color: #68B3C8;
711
+ }
712
+ .navbar .navbar-nav > li > a.btn-info:hover .caret, .navbar .navbar-nav > li > a.btn-info:focus .caret, .navbar .navbar-nav > li > a.btn-info:active .caret, .navbar .navbar-nav > li > a.btn-info.active .caret, .open > .navbar .navbar-nav > li > a.btn-info.dropdown-toggle .caret, .btn-info:hover .caret, .btn-info:focus .caret, .btn-info:active .caret, .btn-info.active .caret, .open > .btn-info.dropdown-toggle .caret {
713
+ border-top-color: rgba(255, 255, 255, 0.7);
714
+ }
715
+ .navbar .navbar-nav > li > a.btn-info.disabled, .navbar .navbar-nav > li > a.btn-info.disabled:hover, .navbar .navbar-nav > li > a.btn-info.disabled:focus, .navbar .navbar-nav > li > a.btn-info.disabled.focus, .navbar .navbar-nav > li > a.btn-info.disabled:active, .navbar .navbar-nav > li > a.btn-info.disabled.active, .navbar .navbar-nav > li > a.btn-info:disabled, .navbar .navbar-nav > li > a.btn-info:disabled:hover, .navbar .navbar-nav > li > a.btn-info:disabled:focus, .navbar .navbar-nav > li > a.btn-info:disabled.focus, .navbar .navbar-nav > li > a.btn-info:disabled:active, .navbar .navbar-nav > li > a.btn-info:disabled.active, .navbar .navbar-nav > li > a.btn-info[disabled], .navbar .navbar-nav > li > a.btn-info[disabled]:hover, .navbar .navbar-nav > li > a.btn-info[disabled]:focus, .navbar .navbar-nav > li > a.btn-info[disabled].focus, .navbar .navbar-nav > li > a.btn-info[disabled]:active, .navbar .navbar-nav > li > a.btn-info[disabled].active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-info, fieldset[disabled] .navbar .navbar-nav > li > a.btn-info:hover, fieldset[disabled] .navbar .navbar-nav > li > a.btn-info:focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-info.focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-info:active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-info.active, .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info:disabled, .btn-info:disabled:hover, .btn-info:disabled:focus, .btn-info:disabled.focus, .btn-info:disabled:active, .btn-info:disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
716
+ background-color: transparent;
717
+ border-color: #68B3C8;
718
+ }
719
+ .navbar .navbar-nav > li > a.btn-info.btn-fill, .btn-info.btn-fill {
720
+ color: #FFFFFF;
721
+ background-color: #68B3C8;
722
+ opacity: 1;
723
+ filter: alpha(opacity=100);
724
+ }
725
+ .navbar .navbar-nav > li > a.btn-info.btn-fill:hover, .navbar .navbar-nav > li > a.btn-info.btn-fill:focus, .navbar .navbar-nav > li > a.btn-info.btn-fill:active, .navbar .navbar-nav > li > a.btn-info.btn-fill.active, .open > .navbar .navbar-nav > li > a.btn-info.btn-fill.dropdown-toggle, .btn-info.btn-fill:hover, .btn-info.btn-fill:focus, .btn-info.btn-fill:active, .btn-info.btn-fill.active, .open > .btn-info.btn-fill.dropdown-toggle {
726
+ background-color: #3091B2;
727
+ color: #FFFFFF;
728
+ border-color: #3091B2;
729
+ }
730
+ .navbar .navbar-nav > li > a.btn-info.btn-fill .caret, .btn-info.btn-fill .caret {
731
+ border-top-color: #FFFFFF;
732
+ }
733
+ .navbar .navbar-nav > li > a.btn-info.btn-simple:hover, .navbar .navbar-nav > li > a.btn-info.btn-simple:focus, .navbar .navbar-nav > li > a.btn-info.btn-simple:active, .navbar .navbar-nav > li > a.btn-info.btn-simple.active, .open > .navbar .navbar-nav > li > a.btn-info.btn-simple.dropdown-toggle, .btn-info.btn-simple:hover, .btn-info.btn-simple:focus, .btn-info.btn-simple:active, .btn-info.btn-simple.active, .open > .btn-info.btn-simple.dropdown-toggle {
734
+ background-color: transparent;
735
+ color: #3091B2;
736
+ }
737
+ .navbar .navbar-nav > li > a.btn-info.btn-simple .caret, .btn-info.btn-simple .caret {
738
+ border-top-color: #FFFFFF;
739
+ }
740
+ .navbar .navbar-nav > li > a.btn-info .caret, .btn-info .caret {
741
+ border-top-color: #68B3C8;
742
+ }
743
+
744
+ .navbar .navbar-nav > li > a.btn-warning, .btn-warning {
745
+ border-color: #F3BB45;
746
+ color: #F3BB45;
747
+ }
748
+ .navbar .navbar-nav > li > a.btn-warning:hover, .navbar .navbar-nav > li > a.btn-warning:focus, .navbar .navbar-nav > li > a.btn-warning:active, .navbar .navbar-nav > li > a.btn-warning.active, .open > .navbar .navbar-nav > li > a.btn-warning.dropdown-toggle, .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
749
+ background-color: #F3BB45;
750
+ color: rgba(255, 255, 255, 0.7);
751
+ border-color: #F3BB45;
752
+ }
753
+ .navbar .navbar-nav > li > a.btn-warning:hover .caret, .navbar .navbar-nav > li > a.btn-warning:focus .caret, .navbar .navbar-nav > li > a.btn-warning:active .caret, .navbar .navbar-nav > li > a.btn-warning.active .caret, .open > .navbar .navbar-nav > li > a.btn-warning.dropdown-toggle .caret, .btn-warning:hover .caret, .btn-warning:focus .caret, .btn-warning:active .caret, .btn-warning.active .caret, .open > .btn-warning.dropdown-toggle .caret {
754
+ border-top-color: rgba(255, 255, 255, 0.7);
755
+ }
756
+ .navbar .navbar-nav > li > a.btn-warning.disabled, .navbar .navbar-nav > li > a.btn-warning.disabled:hover, .navbar .navbar-nav > li > a.btn-warning.disabled:focus, .navbar .navbar-nav > li > a.btn-warning.disabled.focus, .navbar .navbar-nav > li > a.btn-warning.disabled:active, .navbar .navbar-nav > li > a.btn-warning.disabled.active, .navbar .navbar-nav > li > a.btn-warning:disabled, .navbar .navbar-nav > li > a.btn-warning:disabled:hover, .navbar .navbar-nav > li > a.btn-warning:disabled:focus, .navbar .navbar-nav > li > a.btn-warning:disabled.focus, .navbar .navbar-nav > li > a.btn-warning:disabled:active, .navbar .navbar-nav > li > a.btn-warning:disabled.active, .navbar .navbar-nav > li > a.btn-warning[disabled], .navbar .navbar-nav > li > a.btn-warning[disabled]:hover, .navbar .navbar-nav > li > a.btn-warning[disabled]:focus, .navbar .navbar-nav > li > a.btn-warning[disabled].focus, .navbar .navbar-nav > li > a.btn-warning[disabled]:active, .navbar .navbar-nav > li > a.btn-warning[disabled].active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-warning, fieldset[disabled] .navbar .navbar-nav > li > a.btn-warning:hover, fieldset[disabled] .navbar .navbar-nav > li > a.btn-warning:focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-warning.focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-warning:active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-warning.active, .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning:disabled, .btn-warning:disabled:hover, .btn-warning:disabled:focus, .btn-warning:disabled.focus, .btn-warning:disabled:active, .btn-warning:disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
757
+ background-color: transparent;
758
+ border-color: #F3BB45;
759
+ }
760
+ .navbar .navbar-nav > li > a.btn-warning.btn-fill, .btn-warning.btn-fill {
761
+ color: #FFFFFF;
762
+ background-color: #F3BB45;
763
+ opacity: 1;
764
+ filter: alpha(opacity=100);
765
+ }
766
+ .navbar .navbar-nav > li > a.btn-warning.btn-fill:hover, .navbar .navbar-nav > li > a.btn-warning.btn-fill:focus, .navbar .navbar-nav > li > a.btn-warning.btn-fill:active, .navbar .navbar-nav > li > a.btn-warning.btn-fill.active, .open > .navbar .navbar-nav > li > a.btn-warning.btn-fill.dropdown-toggle, .btn-warning.btn-fill:hover, .btn-warning.btn-fill:focus, .btn-warning.btn-fill:active, .btn-warning.btn-fill.active, .open > .btn-warning.btn-fill.dropdown-toggle {
767
+ background-color: #BB992F;
768
+ color: #FFFFFF;
769
+ border-color: #BB992F;
770
+ }
771
+ .navbar .navbar-nav > li > a.btn-warning.btn-fill .caret, .btn-warning.btn-fill .caret {
772
+ border-top-color: #FFFFFF;
773
+ }
774
+ .navbar .navbar-nav > li > a.btn-warning.btn-simple:hover, .navbar .navbar-nav > li > a.btn-warning.btn-simple:focus, .navbar .navbar-nav > li > a.btn-warning.btn-simple:active, .navbar .navbar-nav > li > a.btn-warning.btn-simple.active, .open > .navbar .navbar-nav > li > a.btn-warning.btn-simple.dropdown-toggle, .btn-warning.btn-simple:hover, .btn-warning.btn-simple:focus, .btn-warning.btn-simple:active, .btn-warning.btn-simple.active, .open > .btn-warning.btn-simple.dropdown-toggle {
775
+ background-color: transparent;
776
+ color: #BB992F;
777
+ }
778
+ .navbar .navbar-nav > li > a.btn-warning.btn-simple .caret, .btn-warning.btn-simple .caret {
779
+ border-top-color: #FFFFFF;
780
+ }
781
+ .navbar .navbar-nav > li > a.btn-warning .caret, .btn-warning .caret {
782
+ border-top-color: #F3BB45;
783
+ }
784
+
785
+ .navbar .navbar-nav > li > a.btn-danger, .btn-danger {
786
+ border-color: #EB5E28;
787
+ color: #EB5E28;
788
+ }
789
+ .navbar .navbar-nav > li > a.btn-danger:hover, .navbar .navbar-nav > li > a.btn-danger:focus, .navbar .navbar-nav > li > a.btn-danger:active, .navbar .navbar-nav > li > a.btn-danger.active, .open > .navbar .navbar-nav > li > a.btn-danger.dropdown-toggle, .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
790
+ background-color: #EB5E28;
791
+ color: rgba(255, 255, 255, 0.7);
792
+ border-color: #EB5E28;
793
+ }
794
+ .navbar .navbar-nav > li > a.btn-danger:hover .caret, .navbar .navbar-nav > li > a.btn-danger:focus .caret, .navbar .navbar-nav > li > a.btn-danger:active .caret, .navbar .navbar-nav > li > a.btn-danger.active .caret, .open > .navbar .navbar-nav > li > a.btn-danger.dropdown-toggle .caret, .btn-danger:hover .caret, .btn-danger:focus .caret, .btn-danger:active .caret, .btn-danger.active .caret, .open > .btn-danger.dropdown-toggle .caret {
795
+ border-top-color: rgba(255, 255, 255, 0.7);
796
+ }
797
+ .navbar .navbar-nav > li > a.btn-danger.disabled, .navbar .navbar-nav > li > a.btn-danger.disabled:hover, .navbar .navbar-nav > li > a.btn-danger.disabled:focus, .navbar .navbar-nav > li > a.btn-danger.disabled.focus, .navbar .navbar-nav > li > a.btn-danger.disabled:active, .navbar .navbar-nav > li > a.btn-danger.disabled.active, .navbar .navbar-nav > li > a.btn-danger:disabled, .navbar .navbar-nav > li > a.btn-danger:disabled:hover, .navbar .navbar-nav > li > a.btn-danger:disabled:focus, .navbar .navbar-nav > li > a.btn-danger:disabled.focus, .navbar .navbar-nav > li > a.btn-danger:disabled:active, .navbar .navbar-nav > li > a.btn-danger:disabled.active, .navbar .navbar-nav > li > a.btn-danger[disabled], .navbar .navbar-nav > li > a.btn-danger[disabled]:hover, .navbar .navbar-nav > li > a.btn-danger[disabled]:focus, .navbar .navbar-nav > li > a.btn-danger[disabled].focus, .navbar .navbar-nav > li > a.btn-danger[disabled]:active, .navbar .navbar-nav > li > a.btn-danger[disabled].active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-danger, fieldset[disabled] .navbar .navbar-nav > li > a.btn-danger:hover, fieldset[disabled] .navbar .navbar-nav > li > a.btn-danger:focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-danger.focus, fieldset[disabled] .navbar .navbar-nav > li > a.btn-danger:active, fieldset[disabled] .navbar .navbar-nav > li > a.btn-danger.active, .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger:disabled, .btn-danger:disabled:hover, .btn-danger:disabled:focus, .btn-danger:disabled.focus, .btn-danger:disabled:active, .btn-danger:disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
798
+ background-color: transparent;
799
+ border-color: #EB5E28;
800
+ }
801
+ .navbar .navbar-nav > li > a.btn-danger.btn-fill, .btn-danger.btn-fill {
802
+ color: #FFFFFF;
803
+ background-color: #EB5E28;
804
+ opacity: 1;
805
+ filter: alpha(opacity=100);
806
+ }
807
+ .navbar .navbar-nav > li > a.btn-danger.btn-fill:hover, .navbar .navbar-nav > li > a.btn-danger.btn-fill:focus, .navbar .navbar-nav > li > a.btn-danger.btn-fill:active, .navbar .navbar-nav > li > a.btn-danger.btn-fill.active, .open > .navbar .navbar-nav > li > a.btn-danger.btn-fill.dropdown-toggle, .btn-danger.btn-fill:hover, .btn-danger.btn-fill:focus, .btn-danger.btn-fill:active, .btn-danger.btn-fill.active, .open > .btn-danger.btn-fill.dropdown-toggle {
808
+ background-color: #B33C12;
809
+ color: #FFFFFF;
810
+ border-color: #B33C12;
811
+ }
812
+ .navbar .navbar-nav > li > a.btn-danger.btn-fill .caret, .btn-danger.btn-fill .caret {
813
+ border-top-color: #FFFFFF;
814
+ }
815
+ .navbar .navbar-nav > li > a.btn-danger.btn-simple:hover, .navbar .navbar-nav > li > a.btn-danger.btn-simple:focus, .navbar .navbar-nav > li > a.btn-danger.btn-simple:active, .navbar .navbar-nav > li > a.btn-danger.btn-simple.active, .open > .navbar .navbar-nav > li > a.btn-danger.btn-simple.dropdown-toggle, .btn-danger.btn-simple:hover, .btn-danger.btn-simple:focus, .btn-danger.btn-simple:active, .btn-danger.btn-simple.active, .open > .btn-danger.btn-simple.dropdown-toggle {
816
+ background-color: transparent;
817
+ color: #B33C12;
818
+ }
819
+ .navbar .navbar-nav > li > a.btn-danger.btn-simple .caret, .btn-danger.btn-simple .caret {
820
+ border-top-color: #FFFFFF;
821
+ }
822
+ .navbar .navbar-nav > li > a.btn-danger .caret, .btn-danger .caret {
823
+ border-top-color: #EB5E28;
824
+ }
825
+
826
+ .btn-neutral {
827
+ border-color: #FFFFFF;
828
+ color: #FFFFFF;
829
+ }
830
+ .btn-neutral:hover, .btn-neutral:focus, .btn-neutral:active, .btn-neutral.active, .open > .btn-neutral.dropdown-toggle {
831
+ background-color: #FFFFFF;
832
+ color: rgba(255, 255, 255, 0.7);
833
+ border-color: #FFFFFF;
834
+ }
835
+ .btn-neutral:hover .caret, .btn-neutral:focus .caret, .btn-neutral:active .caret, .btn-neutral.active .caret, .open > .btn-neutral.dropdown-toggle .caret {
836
+ border-top-color: rgba(255, 255, 255, 0.7);
837
+ }
838
+ .btn-neutral.disabled, .btn-neutral.disabled:hover, .btn-neutral.disabled:focus, .btn-neutral.disabled.focus, .btn-neutral.disabled:active, .btn-neutral.disabled.active, .btn-neutral:disabled, .btn-neutral:disabled:hover, .btn-neutral:disabled:focus, .btn-neutral:disabled.focus, .btn-neutral:disabled:active, .btn-neutral:disabled.active, .btn-neutral[disabled], .btn-neutral[disabled]:hover, .btn-neutral[disabled]:focus, .btn-neutral[disabled].focus, .btn-neutral[disabled]:active, .btn-neutral[disabled].active, fieldset[disabled] .btn-neutral, fieldset[disabled] .btn-neutral:hover, fieldset[disabled] .btn-neutral:focus, fieldset[disabled] .btn-neutral.focus, fieldset[disabled] .btn-neutral:active, fieldset[disabled] .btn-neutral.active {
839
+ background-color: transparent;
840
+ border-color: #FFFFFF;
841
+ }
842
+ .btn-neutral.btn-fill {
843
+ color: #FFFFFF;
844
+ background-color: #FFFFFF;
845
+ opacity: 1;
846
+ filter: alpha(opacity=100);
847
+ }
848
+ .btn-neutral.btn-fill:hover, .btn-neutral.btn-fill:focus, .btn-neutral.btn-fill:active, .btn-neutral.btn-fill.active, .open > .btn-neutral.btn-fill.dropdown-toggle {
849
+ background-color: #FFFFFF;
850
+ color: #FFFFFF;
851
+ border-color: #FFFFFF;
852
+ }
853
+ .btn-neutral.btn-fill .caret {
854
+ border-top-color: #FFFFFF;
855
+ }
856
+ .btn-neutral.btn-simple:hover, .btn-neutral.btn-simple:focus, .btn-neutral.btn-simple:active, .btn-neutral.btn-simple.active, .open > .btn-neutral.btn-simple.dropdown-toggle {
857
+ background-color: transparent;
858
+ color: #FFFFFF;
859
+ }
860
+ .btn-neutral.btn-simple .caret {
861
+ border-top-color: #FFFFFF;
862
+ }
863
+ .btn-neutral .caret {
864
+ border-top-color: #FFFFFF;
865
+ }
866
+ .btn-neutral:hover, .btn-neutral:focus {
867
+ color: #66615B;
868
+ }
869
+ .btn-neutral:active, .btn-neutral.active, .open > .btn-neutral.dropdown-toggle {
870
+ background-color: #FFFFFF;
871
+ color: #66615B;
872
+ }
873
+ .btn-neutral.btn-fill {
874
+ color: #66615B;
875
+ }
876
+ .btn-neutral.btn-fill:hover, .btn-neutral.btn-fill:focus {
877
+ color: #403D39;
878
+ }
879
+ .btn-neutral.btn-simple:active, .btn-neutral.btn-simple.active {
880
+ background-color: transparent;
881
+ }
882
+
883
+ .btn:disabled, .btn[disabled], .btn.disabled {
884
+ opacity: 0.5;
885
+ filter: alpha(opacity=50);
886
+ }
887
+
888
+ .btn-simple {
889
+ border: 0;
890
+ padding: 7px 18px;
891
+ }
892
+ .btn-simple.btn-icon {
893
+ padding: 7px;
894
+ }
895
+
896
+ .btn-lg {
897
+ font-size: 18px;
898
+ border-radius: 50px;
899
+ padding: 11px 30px;
900
+ font-weight: 400;
901
+ }
902
+ .btn-lg.btn-simple {
903
+ padding: 13px 30px;
904
+ }
905
+
906
+ .btn-sm {
907
+ font-size: 12px;
908
+ border-radius: 26px;
909
+ padding: 4px 10px;
910
+ }
911
+ .btn-sm.btn-simple {
912
+ padding: 6px 10px;
913
+ }
914
+
915
+ .btn-xs {
916
+ font-size: 12px;
917
+ border-radius: 26px;
918
+ padding: 2px 5px;
919
+ }
920
+ .btn-xs.btn-simple {
921
+ padding: 4px 5px;
922
+ }
923
+
924
+ .btn-wd {
925
+ min-width: 140px;
926
+ }
927
+
928
+ .btn-group.select {
929
+ width: 100%;
930
+ }
931
+
932
+ .btn-group.select .btn {
933
+ text-align: left;
934
+ }
935
+
936
+ .btn-group.select .caret {
937
+ position: absolute;
938
+ top: 50%;
939
+ margin-top: -1px;
940
+ right: 8px;
941
+ }
942
+
943
+ .form-control::-moz-placeholder {
944
+ color: #DDDDDD;
945
+ opacity: 1;
946
+ filter: alpha(opacity=100);
947
+ }
948
+
949
+ .form-control:-moz-placeholder {
950
+ color: #DDDDDD;
951
+ opacity: 1;
952
+ filter: alpha(opacity=100);
953
+ }
954
+
955
+ .form-control::-webkit-input-placeholder {
956
+ color: #DDDDDD;
957
+ opacity: 1;
958
+ filter: alpha(opacity=100);
959
+ }
960
+
961
+ .form-control:-ms-input-placeholder {
962
+ color: #DDDDDD;
963
+ opacity: 1;
964
+ filter: alpha(opacity=100);
965
+ }
966
+
967
+ .form-control {
968
+ background-color: #fffcf5;
969
+ border: medium none;
970
+ border-radius: 4px;
971
+ color: #66615b;
972
+ font-size: 14px;
973
+ transition: background-color 0.3s ease 0s;
974
+ padding: 7px 18px;
975
+ height: 40px;
976
+ -webkit-box-shadow: none;
977
+ box-shadow: none;
978
+ }
979
+ .form-control:focus {
980
+ background-color: #FFFFFF;
981
+ -webkit-box-shadow: none;
982
+ box-shadow: none;
983
+ outline: 0 !important;
984
+ }
985
+ .has-success .form-control, .has-error .form-control, .has-success .form-control:focus, .has-error .form-control:focus {
986
+ -webkit-box-shadow: none;
987
+ box-shadow: none;
988
+ }
989
+ .has-success .form-control {
990
+ background-color: #ABF3CB;
991
+ color: #7AC29A;
992
+ }
993
+ .has-success .form-control.border-input {
994
+ border: 1px solid #7AC29A;
995
+ }
996
+ .has-success .form-control:focus {
997
+ background-color: #FFFFFF;
998
+ }
999
+ .has-error .form-control {
1000
+ background-color: #FFC0A4;
1001
+ color: #EB5E28;
1002
+ }
1003
+ .has-error .form-control.border-input {
1004
+ border: 1px solid #EB5E28;
1005
+ }
1006
+ .has-error .form-control:focus {
1007
+ background-color: #FFFFFF;
1008
+ }
1009
+ .form-control + .form-control-feedback {
1010
+ border-radius: 6px;
1011
+ font-size: 14px;
1012
+ margin-top: -7px;
1013
+ position: absolute;
1014
+ right: 10px;
1015
+ top: 50%;
1016
+ vertical-align: middle;
1017
+ }
1018
+ .form-control.border-input {
1019
+ border: 1px solid #CCC5B9;
1020
+ }
1021
+ .open .form-control {
1022
+ border-bottom-color: transparent;
1023
+ }
1024
+
1025
+ .input-lg {
1026
+ height: 55px;
1027
+ padding: 11px 30px;
1028
+ }
1029
+
1030
+ .has-error .form-control-feedback, .has-error .control-label {
1031
+ color: #EB5E28;
1032
+ }
1033
+
1034
+ .has-success .form-control-feedback, .has-success .control-label {
1035
+ color: #7AC29A;
1036
+ }
1037
+
1038
+ .input-group-addon {
1039
+ background-color: #fffcf5;
1040
+ border: medium none;
1041
+ border-radius: 4px;
1042
+ }
1043
+ .has-success .input-group-addon, .has-error .input-group-addon {
1044
+ background-color: #FFFFFF;
1045
+ }
1046
+ .has-error .form-control:focus + .input-group-addon {
1047
+ color: #EB5E28;
1048
+ }
1049
+ .has-success .form-control:focus + .input-group-addon {
1050
+ color: #7AC29A;
1051
+ }
1052
+ .form-control:focus + .input-group-addon, .form-control:focus ~ .input-group-addon {
1053
+ background-color: #FFFFFF;
1054
+ }
1055
+
1056
+ .border-input .input-group-addon {
1057
+ border: solid 1px #CCC5B9;
1058
+ }
1059
+
1060
+ .input-group {
1061
+ margin-bottom: 15px;
1062
+ }
1063
+
1064
+ .input-group[disabled] .input-group-addon {
1065
+ background-color: #E3E3E3;
1066
+ }
1067
+
1068
+ .input-group .form-control:first-child,
1069
+ .input-group-addon:first-child,
1070
+ .input-group-btn:first-child > .dropdown-toggle,
1071
+ .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
1072
+ border-right: 0 none;
1073
+ }
1074
+
1075
+ .input-group .form-control:last-child,
1076
+ .input-group-addon:last-child,
1077
+ .input-group-btn:last-child > .dropdown-toggle,
1078
+ .input-group-btn:first-child > .btn:not(:first-child) {
1079
+ border-left: 0 none;
1080
+ }
1081
+
1082
+ .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
1083
+ background-color: #E3E3E3;
1084
+ cursor: not-allowed;
1085
+ color: #9A9A9A;
1086
+ opacity: 1;
1087
+ filter: alpha(opacity=100);
1088
+ }
1089
+
1090
+ .form-control[disabled]::-moz-placeholder {
1091
+ color: #9A9A9A;
1092
+ opacity: 1;
1093
+ filter: alpha(opacity=100);
1094
+ }
1095
+
1096
+ .form-control[disabled]:-moz-placeholder {
1097
+ color: #DDDDDD;
1098
+ opacity: 1;
1099
+ filter: alpha(opacity=100);
1100
+ }
1101
+
1102
+ .form-control[disabled]::-webkit-input-placeholder {
1103
+ color: #DDDDDD;
1104
+ opacity: 1;
1105
+ filter: alpha(opacity=100);
1106
+ }
1107
+
1108
+ .form-control[disabled]:-ms-input-placeholder {
1109
+ color: #DDDDDD;
1110
+ opacity: 1;
1111
+ filter: alpha(opacity=100);
1112
+ }
1113
+
1114
+ .input-group-btn .btn {
1115
+ border-width: 1px;
1116
+ padding: 9px 18px;
1117
+ }
1118
+
1119
+ .input-group-btn .btn-default:not(.btn-fill) {
1120
+ border-color: #DDDDDD;
1121
+ }
1122
+
1123
+ .input-group-btn:last-child > .btn {
1124
+ margin-left: 0;
1125
+ }
1126
+
1127
+ textarea.form-control {
1128
+ max-width: 100%;
1129
+ padding: 10px 18px;
1130
+ resize: none;
1131
+ }
1132
+
1133
+ .alert {
1134
+ border: 0;
1135
+ border-radius: 0;
1136
+ color: #FFFFFF;
1137
+ padding: 10px 15px;
1138
+ font-size: 14px;
1139
+ }
1140
+ .container .alert {
1141
+ border-radius: 4px;
1142
+ }
1143
+ .navbar .alert {
1144
+ border-radius: 0;
1145
+ left: 0;
1146
+ position: absolute;
1147
+ right: 0;
1148
+ top: 85px;
1149
+ width: 100%;
1150
+ z-index: 3;
1151
+ }
1152
+ .navbar:not(.navbar-transparent) .alert {
1153
+ top: 70px;
1154
+ }
1155
+ .alert span[data-notify="icon"] {
1156
+ font-size: 30px;
1157
+ display: block;
1158
+ left: 15px;
1159
+ position: absolute;
1160
+ top: 50%;
1161
+ margin-top: -20px;
1162
+ }
1163
+ .alert .close ~ span {
1164
+ display: block;
1165
+ max-width: 89%;
1166
+ }
1167
+ .alert[data-notify="container"] {
1168
+ padding: 10px 10px 10px 20px;
1169
+ border-radius: 4px;
1170
+ }
1171
+ .alert.alert-with-icon {
1172
+ padding-left: 65px;
1173
+ }
1174
+
1175
+ .alert-info {
1176
+ background-color: #7CE4FE;
1177
+ color: #3091B2;
1178
+ }
1179
+
1180
+ .alert-success {
1181
+ background-color: #8EF3C5;
1182
+ color: #42A084;
1183
+ }
1184
+
1185
+ .alert-warning {
1186
+ background-color: #FFE28C;
1187
+ color: #BB992F;
1188
+ }
1189
+
1190
+ .alert-danger {
1191
+ background-color: #FF8F5E;
1192
+ color: #B33C12;
1193
+ }
1194
+
1195
+ .table thead tr > th,
1196
+ .table thead tr > td,
1197
+ .table tbody tr > th,
1198
+ .table tbody tr > td,
1199
+ .table tfoot tr > th,
1200
+ .table tfoot tr > td {
1201
+ border-top: 1px solid #CCC5B9;
1202
+ }
1203
+ .table > thead > tr > th {
1204
+ border-bottom-width: 0;
1205
+ font-size: 1.25em;
1206
+ font-weight: 300;
1207
+ }
1208
+ .table .radio,
1209
+ .table .checkbox {
1210
+ margin-top: 0;
1211
+ margin-bottom: 22px;
1212
+ padding: 0;
1213
+ width: 15px;
1214
+ }
1215
+ .table > thead > tr > th,
1216
+ .table > tbody > tr > th,
1217
+ .table > tfoot > tr > th,
1218
+ .table > thead > tr > td,
1219
+ .table > tbody > tr > td,
1220
+ .table > tfoot > tr > td {
1221
+ padding: 12px;
1222
+ vertical-align: middle;
1223
+ }
1224
+ .table .th-description {
1225
+ max-width: 150px;
1226
+ }
1227
+ .table .td-price {
1228
+ font-size: 26px;
1229
+ font-weight: 300;
1230
+ margin-top: 5px;
1231
+ text-align: right;
1232
+ }
1233
+ .table .td-total {
1234
+ font-weight: 600;
1235
+ font-size: 1.25em;
1236
+ padding-top: 20px;
1237
+ text-align: right;
1238
+ }
1239
+ .table .td-actions .btn.btn-sm, .table .td-actions .btn.btn-xs {
1240
+ padding-left: 3px;
1241
+ padding-right: 3px;
1242
+ }
1243
+ .table > tbody > tr {
1244
+ position: relative;
1245
+ }
1246
+
1247
+ .table-striped tbody > tr:nth-of-type(2n+1) {
1248
+ background-color: #fff;
1249
+ }
1250
+ .table-striped tbody > tr:nth-of-type(2n) {
1251
+ background-color: #FFFCF5;
1252
+ }
1253
+ .table-striped > thead > tr > th,
1254
+ .table-striped > tbody > tr > th,
1255
+ .table-striped > tfoot > tr > th,
1256
+ .table-striped > thead > tr > td,
1257
+ .table-striped > tbody > tr > td,
1258
+ .table-striped > tfoot > tr > td {
1259
+ padding: 15px 8px;
1260
+ }
1261
+
1262
+ /* Checkbox and radio */
1263
+ .checkbox,
1264
+ .radio {
1265
+ margin-bottom: 12px;
1266
+ padding-left: 30px;
1267
+ position: relative;
1268
+ -webkit-transition: color,opacity 0.25s linear;
1269
+ transition: color,opacity 0.25s linear;
1270
+ font-size: 14px;
1271
+ font-weight: normal;
1272
+ line-height: 1.5;
1273
+ color: #66615b;
1274
+ cursor: pointer;
1275
+ }
1276
+ .checkbox .icons,
1277
+ .radio .icons {
1278
+ color: #66615b;
1279
+ display: block;
1280
+ height: 20px;
1281
+ left: 0;
1282
+ position: absolute;
1283
+ top: 0;
1284
+ width: 20px;
1285
+ text-align: center;
1286
+ line-height: 21px;
1287
+ font-size: 20px;
1288
+ cursor: pointer;
1289
+ -webkit-transition: color,opacity 0.15s linear;
1290
+ transition: color,opacity 0.15s linear;
1291
+ opacity: .50;
1292
+ }
1293
+ .checkbox.checked .icons,
1294
+ .radio.checked .icons {
1295
+ opacity: 1;
1296
+ }
1297
+ .checkbox input,
1298
+ .radio input {
1299
+ outline: none !important;
1300
+ display: none;
1301
+ }
1302
+
1303
+ .checkbox label,
1304
+ .radio label {
1305
+ padding-left: 10px;
1306
+ }
1307
+
1308
+ .checkbox .icons .first-icon,
1309
+ .radio .icons .first-icon,
1310
+ .checkbox .icons .second-icon,
1311
+ .radio .icons .second-icon {
1312
+ display: inline-table;
1313
+ position: absolute;
1314
+ left: 0;
1315
+ top: 0;
1316
+ background-color: transparent;
1317
+ margin: 0;
1318
+ opacity: 1;
1319
+ filter: alpha(opacity=100);
1320
+ }
1321
+
1322
+ .checkbox .icons .second-icon,
1323
+ .radio .icons .second-icon {
1324
+ opacity: 0;
1325
+ filter: alpha(opacity=0);
1326
+ }
1327
+
1328
+ .checkbox:hover,
1329
+ .radio:hover {
1330
+ -webkit-transition: color 0.2s linear;
1331
+ transition: color 0.2s linear;
1332
+ }
1333
+
1334
+ .checkbox:hover .first-icon,
1335
+ .radio:hover .first-icon {
1336
+ opacity: 0;
1337
+ filter: alpha(opacity=0);
1338
+ }
1339
+
1340
+ .checkbox:hover .second-icon,
1341
+ .radio:hover .second-icon {
1342
+ opacity: 1;
1343
+ filter: alpha(opacity=100);
1344
+ }
1345
+
1346
+ .checkbox.checked .first-icon,
1347
+ .radio.checked .first-icon {
1348
+ opacity: 0;
1349
+ filter: alpha(opacity=0);
1350
+ }
1351
+
1352
+ .checkbox.checked .second-icon,
1353
+ .radio.checked .second-icon {
1354
+ opacity: 1;
1355
+ filter: alpha(opacity=100);
1356
+ -webkit-transition: color 0.2s linear;
1357
+ transition: color 0.2s linear;
1358
+ }
1359
+
1360
+ .checkbox.disabled,
1361
+ .radio.disabled {
1362
+ cursor: default;
1363
+ color: #DDDDDD;
1364
+ }
1365
+
1366
+ .checkbox.disabled .icons,
1367
+ .radio.disabled .icons {
1368
+ color: #DDDDDD;
1369
+ }
1370
+
1371
+ .checkbox.disabled .first-icon,
1372
+ .radio.disabled .first-icon {
1373
+ opacity: 1;
1374
+ filter: alpha(opacity=100);
1375
+ }
1376
+
1377
+ .checkbox.disabled .second-icon,
1378
+ .radio.disabled .second-icon {
1379
+ opacity: 0;
1380
+ filter: alpha(opacity=0);
1381
+ }
1382
+
1383
+ .checkbox.disabled.checked .icons,
1384
+ .radio.disabled.checked .icons {
1385
+ color: #DDDDDD;
1386
+ }
1387
+
1388
+ .checkbox.disabled.checked .first-icon,
1389
+ .radio.disabled.checked .first-icon {
1390
+ opacity: 0;
1391
+ filter: alpha(opacity=0);
1392
+ }
1393
+
1394
+ .checkbox.disabled.checked .second-icon,
1395
+ .radio.disabled.checked .second-icon {
1396
+ opacity: 1;
1397
+ color: #DDDDDD;
1398
+ filter: alpha(opacity=100);
1399
+ }
1400
+
1401
+ .nav > li > a:hover,
1402
+ .nav > li > a:focus {
1403
+ background-color: transparent;
1404
+ }
1405
+
1406
+ .navbar {
1407
+ border: 0;
1408
+ border-radius: 0;
1409
+ font-size: 16px;
1410
+ z-index: 3;
1411
+ }
1412
+ .navbar .navbar-brand {
1413
+ font-weight: 600;
1414
+ margin: 5px 0px;
1415
+ padding: 20px 15px;
1416
+ font-size: 20px;
1417
+ }
1418
+ .navbar .navbar-nav > li > a {
1419
+ line-height: 1.42857;
1420
+ margin: 15px 0px;
1421
+ padding: 10px 15px;
1422
+ }
1423
+ .navbar .navbar-nav > li > a i,
1424
+ .navbar .navbar-nav > li > a p {
1425
+ display: inline-block;
1426
+ margin: 0;
1427
+ }
1428
+ .navbar .navbar-nav > li > a i {
1429
+ position: relative;
1430
+ top: 1px;
1431
+ }
1432
+ .navbar .navbar-nav > li > a.btn {
1433
+ margin: 15px 3px;
1434
+ padding: 7px 18px;
1435
+ }
1436
+ .navbar .btn {
1437
+ margin: 15px 3px;
1438
+ font-size: 14px;
1439
+ }
1440
+ .navbar .btn-simple {
1441
+ font-size: 16px;
1442
+ }
1443
+
1444
+ .navbar-nav > li > .dropdown-menu {
1445
+ border-radius: 6px;
1446
+ margin-top: -5px;
1447
+ }
1448
+
1449
+ .navbar-default {
1450
+ background-color: #f4f3ef;
1451
+ border-bottom: 1px solid #DDDDDD;
1452
+ }
1453
+ .navbar-default .brand {
1454
+ color: #66615b !important;
1455
+ }
1456
+ .navbar-default .navbar-nav > li > a:not(.btn) {
1457
+ color: #9A9A9A;
1458
+ }
1459
+ .navbar-default .navbar-nav > .active > a,
1460
+ .navbar-default .navbar-nav > .active > a:not(.btn):hover,
1461
+ .navbar-default .navbar-nav > .active > a:not(.btn):focus,
1462
+ .navbar-default .navbar-nav > li > a:not(.btn):hover,
1463
+ .navbar-default .navbar-nav > li > a:not(.btn):focus {
1464
+ background-color: transparent;
1465
+ border-radius: 3px;
1466
+ color: #68B3C8;
1467
+ opacity: 1;
1468
+ filter: alpha(opacity=100);
1469
+ }
1470
+ .navbar-default .navbar-nav > .dropdown > a:hover .caret,
1471
+ .navbar-default .navbar-nav > .dropdown > a:focus .caret {
1472
+ border-bottom-color: #68B3C8;
1473
+ border-top-color: #68B3C8;
1474
+ }
1475
+ .navbar-default .navbar-nav > .open > a,
1476
+ .navbar-default .navbar-nav > .open > a:hover,
1477
+ .navbar-default .navbar-nav > .open > a:focus {
1478
+ background-color: transparent;
1479
+ color: #68B3C8;
1480
+ }
1481
+ .navbar-default .navbar-nav .navbar-toggle:hover, .navbar-default .navbar-nav .navbar-toggle:focus {
1482
+ background-color: transparent;
1483
+ }
1484
+ .navbar-default:not(.navbar-transparent) .btn-default:hover {
1485
+ color: #68B3C8;
1486
+ border-color: #68B3C8;
1487
+ }
1488
+ .navbar-default:not(.navbar-transparent) .btn-neutral, .navbar-default:not(.navbar-transparent) .btn-neutral:hover, .navbar-default:not(.navbar-transparent) .btn-neutral:active {
1489
+ color: #9A9A9A;
1490
+ }
1491
+
1492
+ .navbar-form {
1493
+ -webkit-box-shadow: none;
1494
+ box-shadow: none;
1495
+ }
1496
+ .navbar-form .form-control {
1497
+ border-radius: 0;
1498
+ border: 0;
1499
+ padding: 0;
1500
+ background-color: transparent;
1501
+ height: 22px;
1502
+ font-size: 16px;
1503
+ line-height: 1.4em;
1504
+ color: #E3E3E3;
1505
+ }
1506
+ .navbar-transparent .navbar-form .form-control, [class*="navbar-ct"] .navbar-form .form-control {
1507
+ color: #FFFFFF;
1508
+ border: 0;
1509
+ border-bottom: 1px solid rgba(255, 255, 255, 0.6);
1510
+ }
1511
+
1512
+ .navbar-ct-primary {
1513
+ background-color: #8ECFD5;
1514
+ }
1515
+
1516
+ .navbar-ct-info {
1517
+ background-color: #7CE4FE;
1518
+ }
1519
+
1520
+ .navbar-ct-success {
1521
+ background-color: #8EF3C5;
1522
+ }
1523
+
1524
+ .navbar-ct-warning {
1525
+ background-color: #FFE28C;
1526
+ }
1527
+
1528
+ .navbar-ct-danger {
1529
+ background-color: #FF8F5E;
1530
+ }
1531
+
1532
+ .navbar-transparent {
1533
+ padding-top: 15px;
1534
+ background-color: transparent;
1535
+ border-bottom: 1px solid transparent;
1536
+ }
1537
+
1538
+ .navbar-toggle {
1539
+ margin-top: 19px;
1540
+ margin-bottom: 19px;
1541
+ border: 0;
1542
+ }
1543
+ .navbar-toggle .icon-bar {
1544
+ background-color: #FFFFFF;
1545
+ }
1546
+ .navbar-toggle .navbar-collapse,
1547
+ .navbar-toggle .navbar-form {
1548
+ border-color: transparent;
1549
+ }
1550
+ .navbar-toggle.navbar-default .navbar-toggle:hover, .navbar-toggle.navbar-default .navbar-toggle:focus {
1551
+ background-color: transparent;
1552
+ }
1553
+
1554
+ .footer {
1555
+ background-attachment: fixed;
1556
+ position: relative;
1557
+ line-height: 20px;
1558
+ }
1559
+ .footer nav ul {
1560
+ list-style: none;
1561
+ margin: 0;
1562
+ padding: 0;
1563
+ font-weight: normal;
1564
+ }
1565
+ .footer nav ul li {
1566
+ display: inline-block;
1567
+ padding: 10px 15px;
1568
+ margin: 15px 3px;
1569
+ line-height: 20px;
1570
+ text-align: center;
1571
+ }
1572
+ .footer nav ul a:not(.btn) {
1573
+ color: #66615b;
1574
+ display: block;
1575
+ margin-bottom: 3px;
1576
+ }
1577
+ .footer nav ul a:not(.btn):focus, .footer nav ul a:not(.btn):hover {
1578
+ color: #403D39;
1579
+ }
1580
+ .footer .copyright {
1581
+ color: #66615b;
1582
+ padding: 10px 15px;
1583
+ font-size: 14px;
1584
+ margin: 15px 3px;
1585
+ line-height: 20px;
1586
+ text-align: center;
1587
+ }
1588
+ .footer .heart {
1589
+ color: #EB5E28;
1590
+ }
1591
+
1592
+ .dropdown-menu {
1593
+ background-color: #FFFCF5;
1594
+ border: 0 none;
1595
+ border-radius: 6px;
1596
+ display: block;
1597
+ margin-top: 10px;
1598
+ padding: 0px;
1599
+ position: absolute;
1600
+ visibility: hidden;
1601
+ z-index: 9000;
1602
+ opacity: 0;
1603
+ filter: alpha(opacity=0);
1604
+ -webkit-box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.1);
1605
+ box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.1);
1606
+ }
1607
+ .open .dropdown-menu {
1608
+ opacity: 1;
1609
+ filter: alpha(opacity=100);
1610
+ visibility: visible;
1611
+ }
1612
+ .dropdown-menu .divider {
1613
+ background-color: #F1EAE0;
1614
+ margin: 0px;
1615
+ }
1616
+ .dropdown-menu .dropdown-header {
1617
+ color: #9A9A9A;
1618
+ font-size: 12px;
1619
+ padding: 10px 15px;
1620
+ }
1621
+ .select .dropdown-menu {
1622
+ border-radius: 0 0 10px 10px;
1623
+ -webkit-box-shadow: none;
1624
+ box-shadow: none;
1625
+ -webkit-transform-origin: 50% -40px;
1626
+ -moz-transform-origin: 50% -40px;
1627
+ -o-transform-origin: 50% -40px;
1628
+ -ms-transform-origin: 50% -40px;
1629
+ transform-origin: 50% -40px;
1630
+ -webkit-transform: scale(1);
1631
+ -moz-transform: scale(1);
1632
+ -o-transform: scale(1);
1633
+ -ms-transform: scale(1);
1634
+ transform: scale(1);
1635
+ -webkit-transition: all 150ms linear;
1636
+ -moz-transition: all 150ms linear;
1637
+ -o-transition: all 150ms linear;
1638
+ -ms-transition: all 150ms linear;
1639
+ transition: all 150ms linear;
1640
+ margin-top: -20px;
1641
+ }
1642
+ .select.open .dropdown-menu {
1643
+ margin-top: -1px;
1644
+ }
1645
+ .dropdown-menu > li > a {
1646
+ color: #66615b;
1647
+ font-size: 14px;
1648
+ padding: 10px 15px;
1649
+ -webkit-transition: none;
1650
+ -moz-transition: none;
1651
+ -o-transition: none;
1652
+ -ms-transition: none;
1653
+ transition: none;
1654
+ }
1655
+ .dropdown-menu > li > a img {
1656
+ margin-top: -3px;
1657
+ }
1658
+ .dropdown-menu > li > a:focus {
1659
+ outline: 0 !important;
1660
+ }
1661
+ .btn-group.select .dropdown-menu {
1662
+ min-width: 100%;
1663
+ }
1664
+ .dropdown-menu > li:first-child > a {
1665
+ border-top-left-radius: 6px;
1666
+ border-top-right-radius: 6px;
1667
+ }
1668
+ .dropdown-menu > li:last-child > a {
1669
+ border-bottom-left-radius: 6px;
1670
+ border-bottom-right-radius: 6px;
1671
+ }
1672
+ .select .dropdown-menu > li:first-child > a {
1673
+ border-radius: 0;
1674
+ border-bottom: 0 none;
1675
+ }
1676
+ .dropdown-menu > li > a:hover,
1677
+ .dropdown-menu > li > a:focus {
1678
+ background-color: #66615B;
1679
+ color: rgba(255, 255, 255, 0.7);
1680
+ opacity: 1;
1681
+ text-decoration: none;
1682
+ }
1683
+ .dropdown-menu.dropdown-primary > li > a:hover, .dropdown-menu.dropdown-primary > li > a:focus {
1684
+ background-color: #7A9E9F;
1685
+ }
1686
+ .dropdown-menu.dropdown-info > li > a:hover, .dropdown-menu.dropdown-info > li > a:focus {
1687
+ background-color: #68B3C8;
1688
+ }
1689
+ .dropdown-menu.dropdown-success > li > a:hover, .dropdown-menu.dropdown-success > li > a:focus {
1690
+ background-color: #7AC29A;
1691
+ }
1692
+ .dropdown-menu.dropdown-warning > li > a:hover, .dropdown-menu.dropdown-warning > li > a:focus {
1693
+ background-color: #F3BB45;
1694
+ }
1695
+ .dropdown-menu.dropdown-danger > li > a:hover, .dropdown-menu.dropdown-danger > li > a:focus {
1696
+ background-color: #EB5E28;
1697
+ }
1698
+
1699
+ .btn-group.select {
1700
+ overflow: hidden;
1701
+ }
1702
+
1703
+ .btn-group.select.open {
1704
+ overflow: visible;
1705
+ }
1706
+
1707
+ .card {
1708
+ border-radius: 6px;
1709
+ box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
1710
+ background-color: #FFFFFF;
1711
+ color: #252422;
1712
+ margin-bottom: 20px;
1713
+ position: relative;
1714
+ z-index: 1;
1715
+ }
1716
+ .card .image {
1717
+ width: 100%;
1718
+ overflow: hidden;
1719
+ height: 260px;
1720
+ border-radius: 6px 6px 0 0;
1721
+ position: relative;
1722
+ -webkit-transform-style: preserve-3d;
1723
+ -moz-transform-style: preserve-3d;
1724
+ transform-style: preserve-3d;
1725
+ }
1726
+ .card .image img {
1727
+ width: 100%;
1728
+ }
1729
+ .card .content {
1730
+ padding: 15px 15px 10px 15px;
1731
+ }
1732
+ .card .header {
1733
+ padding: 20px 20px 0;
1734
+ }
1735
+ .card .description {
1736
+ font-size: 16px;
1737
+ color: #66615b;
1738
+ }
1739
+ .card h6 {
1740
+ font-size: 12px;
1741
+ margin: 0;
1742
+ }
1743
+ .card .category,
1744
+ .card label {
1745
+ font-size: 14px;
1746
+ font-weight: 400;
1747
+ color: #9A9A9A;
1748
+ margin-bottom: 0px;
1749
+ }
1750
+ .card .category i,
1751
+ .card label i {
1752
+ font-size: 16px;
1753
+ }
1754
+ .card label {
1755
+ font-size: 15px;
1756
+ margin-bottom: 5px;
1757
+ }
1758
+ .card .title {
1759
+ margin: 0;
1760
+ color: #252422;
1761
+ font-weight: 300;
1762
+ }
1763
+ .card .avatar {
1764
+ width: 50px;
1765
+ height: 50px;
1766
+ overflow: hidden;
1767
+ border-radius: 50%;
1768
+ margin-right: 5px;
1769
+ }
1770
+ .card .footer {
1771
+ padding: 0;
1772
+ line-height: 30px;
1773
+ }
1774
+ .card .footer .legend {
1775
+ padding: 5px 0;
1776
+ }
1777
+ .card .footer hr {
1778
+ margin-top: 5px;
1779
+ margin-bottom: 5px;
1780
+ }
1781
+ .card .stats {
1782
+ color: #a9a9a9;
1783
+ font-weight: 300;
1784
+ }
1785
+ .card .stats i {
1786
+ margin-right: 2px;
1787
+ min-width: 15px;
1788
+ display: inline-block;
1789
+ }
1790
+ .card .footer div {
1791
+ display: inline-block;
1792
+ }
1793
+ .card .author {
1794
+ font-size: 12px;
1795
+ font-weight: 600;
1796
+ text-transform: uppercase;
1797
+ }
1798
+ .card .author i {
1799
+ font-size: 14px;
1800
+ }
1801
+ .card.card-separator:after {
1802
+ height: 100%;
1803
+ right: -15px;
1804
+ top: 0;
1805
+ width: 1px;
1806
+ background-color: #DDDDDD;
1807
+ content: "";
1808
+ position: absolute;
1809
+ }
1810
+ .card .ct-chart {
1811
+ margin: 30px 0 30px;
1812
+ height: 245px;
1813
+ }
1814
+ .card .table tbody td:first-child,
1815
+ .card .table thead th:first-child {
1816
+ padding-left: 15px;
1817
+ }
1818
+ .card .table tbody td:last-child,
1819
+ .card .table thead th:last-child {
1820
+ padding-right: 15px;
1821
+ }
1822
+ .card .alert {
1823
+ border-radius: 4px;
1824
+ position: relative;
1825
+ }
1826
+ .card .alert.alert-with-icon {
1827
+ padding-left: 65px;
1828
+ }
1829
+ .card .icon-big {
1830
+ font-size: 3em;
1831
+ min-height: 64px;
1832
+ }
1833
+ .card .numbers {
1834
+ font-size: 2em;
1835
+ text-align: right;
1836
+ }
1837
+ .card .numbers p {
1838
+ margin: 0;
1839
+ }
1840
+ .card ul.team-members li {
1841
+ padding: 10px 0px;
1842
+ }
1843
+ .card ul.team-members li:not(:last-child) {
1844
+ border-bottom: 1px solid #F1EAE0;
1845
+ }
1846
+
1847
+ .card-user .image {
1848
+ border-radius: 8px 8px 0 0;
1849
+ height: 150px;
1850
+ position: relative;
1851
+ overflow: hidden;
1852
+ }
1853
+ .card-user .image img {
1854
+ width: 100%;
1855
+ }
1856
+ .card-user .image-plain {
1857
+ height: 0;
1858
+ margin-top: 110px;
1859
+ }
1860
+ .card-user .author {
1861
+ text-align: center;
1862
+ text-transform: none;
1863
+ margin-top: -65px;
1864
+ }
1865
+ .card-user .author .title {
1866
+ color: #403D39;
1867
+ }
1868
+ .card-user .author .title small {
1869
+ color: #ccc5b9;
1870
+ }
1871
+ .card-user .avatar {
1872
+ width: 100px;
1873
+ height: 100px;
1874
+ border-radius: 50%;
1875
+ position: relative;
1876
+ margin-bottom: 15px;
1877
+ }
1878
+ .card-user .avatar.border-white {
1879
+ border: 5px solid #FFFFFF;
1880
+ }
1881
+ .card-user .avatar.border-gray {
1882
+ border: 5px solid #ccc5b9;
1883
+ }
1884
+ .card-user .title {
1885
+ font-weight: 600;
1886
+ line-height: 24px;
1887
+ }
1888
+ .card-user .description {
1889
+ margin-top: 10px;
1890
+ }
1891
+ .card-user .content {
1892
+ min-height: 200px;
1893
+ }
1894
+ .card-user.card-plain .avatar {
1895
+ height: 190px;
1896
+ width: 190px;
1897
+ }
1898
+
1899
+ .card-map .map {
1900
+ height: 500px;
1901
+ padding-top: 20px;
1902
+ }
1903
+ .card-map .map > div {
1904
+ height: 100%;
1905
+ }
1906
+
1907
+ .card-user .footer,
1908
+ .card-price .footer {
1909
+ padding: 5px 15px 10px;
1910
+ }
1911
+ .card-user hr,
1912
+ .card-price hr {
1913
+ margin: 5px 15px;
1914
+ }
1915
+
1916
+ .card-plain {
1917
+ background-color: transparent;
1918
+ box-shadow: none;
1919
+ border-radius: 0;
1920
+ }
1921
+ .card-plain .image {
1922
+ border-radius: 4px;
1923
+ }
1924
+
1925
+ .ct-label {
1926
+ fill: rgba(0, 0, 0, 0.4);
1927
+ color: rgba(0, 0, 0, 0.4);
1928
+ font-size: 0.9em;
1929
+ line-height: 1;
1930
+ }
1931
+
1932
+ .ct-chart-line .ct-label,
1933
+ .ct-chart-bar .ct-label {
1934
+ display: block;
1935
+ display: -webkit-box;
1936
+ display: -moz-box;
1937
+ display: -ms-flexbox;
1938
+ display: -webkit-flex;
1939
+ display: flex;
1940
+ }
1941
+
1942
+ .ct-label.ct-horizontal.ct-start {
1943
+ -webkit-box-align: flex-end;
1944
+ -webkit-align-items: flex-end;
1945
+ -ms-flex-align: flex-end;
1946
+ align-items: flex-end;
1947
+ -webkit-box-pack: flex-start;
1948
+ -webkit-justify-content: flex-start;
1949
+ -ms-flex-pack: flex-start;
1950
+ justify-content: flex-start;
1951
+ text-align: left;
1952
+ text-anchor: start;
1953
+ }
1954
+
1955
+ .ct-label.ct-horizontal.ct-end {
1956
+ -webkit-box-align: flex-start;
1957
+ -webkit-align-items: flex-start;
1958
+ -ms-flex-align: flex-start;
1959
+ align-items: flex-start;
1960
+ -webkit-box-pack: flex-start;
1961
+ -webkit-justify-content: flex-start;
1962
+ -ms-flex-pack: flex-start;
1963
+ justify-content: flex-start;
1964
+ text-align: left;
1965
+ text-anchor: start;
1966
+ }
1967
+
1968
+ .ct-label.ct-vertical.ct-start {
1969
+ -webkit-box-align: flex-end;
1970
+ -webkit-align-items: flex-end;
1971
+ -ms-flex-align: flex-end;
1972
+ align-items: flex-end;
1973
+ -webkit-box-pack: flex-end;
1974
+ -webkit-justify-content: flex-end;
1975
+ -ms-flex-pack: flex-end;
1976
+ justify-content: flex-end;
1977
+ text-align: right;
1978
+ text-anchor: end;
1979
+ }
1980
+
1981
+ .ct-label.ct-vertical.ct-end {
1982
+ -webkit-box-align: flex-end;
1983
+ -webkit-align-items: flex-end;
1984
+ -ms-flex-align: flex-end;
1985
+ align-items: flex-end;
1986
+ -webkit-box-pack: flex-start;
1987
+ -webkit-justify-content: flex-start;
1988
+ -ms-flex-pack: flex-start;
1989
+ justify-content: flex-start;
1990
+ text-align: left;
1991
+ text-anchor: start;
1992
+ }
1993
+
1994
+ .ct-chart-bar .ct-label.ct-horizontal.ct-start {
1995
+ -webkit-box-align: flex-end;
1996
+ -webkit-align-items: flex-end;
1997
+ -ms-flex-align: flex-end;
1998
+ align-items: flex-end;
1999
+ -webkit-box-pack: center;
2000
+ -webkit-justify-content: center;
2001
+ -ms-flex-pack: center;
2002
+ justify-content: center;
2003
+ text-align: center;
2004
+ text-anchor: start;
2005
+ }
2006
+
2007
+ .ct-chart-bar .ct-label.ct-horizontal.ct-end {
2008
+ -webkit-box-align: flex-start;
2009
+ -webkit-align-items: flex-start;
2010
+ -ms-flex-align: flex-start;
2011
+ align-items: flex-start;
2012
+ -webkit-box-pack: center;
2013
+ -webkit-justify-content: center;
2014
+ -ms-flex-pack: center;
2015
+ justify-content: center;
2016
+ text-align: center;
2017
+ text-anchor: start;
2018
+ }
2019
+
2020
+ .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
2021
+ -webkit-box-align: flex-end;
2022
+ -webkit-align-items: flex-end;
2023
+ -ms-flex-align: flex-end;
2024
+ align-items: flex-end;
2025
+ -webkit-box-pack: flex-start;
2026
+ -webkit-justify-content: flex-start;
2027
+ -ms-flex-pack: flex-start;
2028
+ justify-content: flex-start;
2029
+ text-align: left;
2030
+ text-anchor: start;
2031
+ }
2032
+
2033
+ .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
2034
+ -webkit-box-align: flex-start;
2035
+ -webkit-align-items: flex-start;
2036
+ -ms-flex-align: flex-start;
2037
+ align-items: flex-start;
2038
+ -webkit-box-pack: flex-start;
2039
+ -webkit-justify-content: flex-start;
2040
+ -ms-flex-pack: flex-start;
2041
+ justify-content: flex-start;
2042
+ text-align: left;
2043
+ text-anchor: start;
2044
+ }
2045
+
2046
+ .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
2047
+ -webkit-box-align: center;
2048
+ -webkit-align-items: center;
2049
+ -ms-flex-align: center;
2050
+ align-items: center;
2051
+ -webkit-box-pack: flex-end;
2052
+ -webkit-justify-content: flex-end;
2053
+ -ms-flex-pack: flex-end;
2054
+ justify-content: flex-end;
2055
+ text-align: right;
2056
+ text-anchor: end;
2057
+ }
2058
+
2059
+ .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
2060
+ -webkit-box-align: center;
2061
+ -webkit-align-items: center;
2062
+ -ms-flex-align: center;
2063
+ align-items: center;
2064
+ -webkit-box-pack: flex-start;
2065
+ -webkit-justify-content: flex-start;
2066
+ -ms-flex-pack: flex-start;
2067
+ justify-content: flex-start;
2068
+ text-align: left;
2069
+ text-anchor: end;
2070
+ }
2071
+
2072
+ .ct-grid {
2073
+ stroke: rgba(0, 0, 0, 0.2);
2074
+ stroke-width: 1px;
2075
+ stroke-dasharray: 2px;
2076
+ }
2077
+
2078
+ .ct-point {
2079
+ stroke-width: 10px;
2080
+ stroke-linecap: round;
2081
+ }
2082
+
2083
+ .ct-line {
2084
+ fill: none;
2085
+ stroke-width: 4px;
2086
+ }
2087
+
2088
+ .ct-area {
2089
+ stroke: none;
2090
+ fill-opacity: 0.7;
2091
+ }
2092
+
2093
+ .ct-bar {
2094
+ fill: none;
2095
+ stroke-width: 10px;
2096
+ }
2097
+
2098
+ .ct-slice-donut {
2099
+ fill: none;
2100
+ stroke-width: 60px;
2101
+ }
2102
+
2103
+ .ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
2104
+ stroke: #68B3C8;
2105
+ }
2106
+ .ct-series-a .ct-slice-pie, .ct-series-a .ct-area {
2107
+ fill: #68B3C8;
2108
+ }
2109
+
2110
+ .ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
2111
+ stroke: #F3BB45;
2112
+ }
2113
+ .ct-series-b .ct-slice-pie, .ct-series-b .ct-area {
2114
+ fill: #F3BB45;
2115
+ }
2116
+
2117
+ .ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
2118
+ stroke: #EB5E28;
2119
+ }
2120
+ .ct-series-c .ct-slice-pie, .ct-series-c .ct-area {
2121
+ fill: #EB5E28;
2122
+ }
2123
+
2124
+ .ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
2125
+ stroke: #7AC29A;
2126
+ }
2127
+ .ct-series-d .ct-slice-pie, .ct-series-d .ct-area {
2128
+ fill: #7AC29A;
2129
+ }
2130
+
2131
+ .ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
2132
+ stroke: #7A9E9F;
2133
+ }
2134
+ .ct-series-e .ct-slice-pie, .ct-series-e .ct-area {
2135
+ fill: #7A9E9F;
2136
+ }
2137
+
2138
+ .ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
2139
+ stroke: rgba(104, 179, 200, 0.8);
2140
+ }
2141
+ .ct-series-f .ct-slice-pie, .ct-series-f .ct-area {
2142
+ fill: rgba(104, 179, 200, 0.8);
2143
+ }
2144
+
2145
+ .ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
2146
+ stroke: rgba(122, 194, 154, 0.8);
2147
+ }
2148
+ .ct-series-g .ct-slice-pie, .ct-series-g .ct-area {
2149
+ fill: rgba(122, 194, 154, 0.8);
2150
+ }
2151
+
2152
+ .ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
2153
+ stroke: rgba(243, 187, 69, 0.8);
2154
+ }
2155
+ .ct-series-h .ct-slice-pie, .ct-series-h .ct-area {
2156
+ fill: rgba(243, 187, 69, 0.8);
2157
+ }
2158
+
2159
+ .ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
2160
+ stroke: rgba(235, 94, 40, 0.8);
2161
+ }
2162
+ .ct-series-i .ct-slice-pie, .ct-series-i .ct-area {
2163
+ fill: rgba(235, 94, 40, 0.8);
2164
+ }
2165
+
2166
+ .ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
2167
+ stroke: rgba(122, 158, 159, 0.8);
2168
+ }
2169
+ .ct-series-j .ct-slice-pie, .ct-series-j .ct-area {
2170
+ fill: rgba(122, 158, 159, 0.8);
2171
+ }
2172
+
2173
+ .ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
2174
+ stroke: rgba(104, 179, 200, 0.6);
2175
+ }
2176
+ .ct-series-k .ct-slice-pie, .ct-series-k .ct-area {
2177
+ fill: rgba(104, 179, 200, 0.6);
2178
+ }
2179
+
2180
+ .ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
2181
+ stroke: rgba(122, 194, 154, 0.6);
2182
+ }
2183
+ .ct-series-l .ct-slice-pie, .ct-series-l .ct-area {
2184
+ fill: rgba(122, 194, 154, 0.6);
2185
+ }
2186
+
2187
+ .ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
2188
+ stroke: rgba(243, 187, 69, 0.6);
2189
+ }
2190
+ .ct-series-m .ct-slice-pie, .ct-series-m .ct-area {
2191
+ fill: rgba(243, 187, 69, 0.6);
2192
+ }
2193
+
2194
+ .ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
2195
+ stroke: rgba(235, 94, 40, 0.6);
2196
+ }
2197
+ .ct-series-n .ct-slice-pie, .ct-series-n .ct-area {
2198
+ fill: rgba(235, 94, 40, 0.6);
2199
+ }
2200
+
2201
+ .ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
2202
+ stroke: rgba(122, 158, 159, 0.6);
2203
+ }
2204
+ .ct-series-o .ct-slice-pie, .ct-series-o .ct-area {
2205
+ fill: rgba(122, 158, 159, 0.6);
2206
+ }
2207
+
2208
+ .ct-square {
2209
+ display: block;
2210
+ position: relative;
2211
+ width: 100%;
2212
+ }
2213
+ .ct-square:before {
2214
+ display: block;
2215
+ float: left;
2216
+ content: "";
2217
+ width: 0;
2218
+ height: 0;
2219
+ padding-bottom: 100%;
2220
+ }
2221
+ .ct-square:after {
2222
+ content: "";
2223
+ display: table;
2224
+ clear: both;
2225
+ }
2226
+ .ct-square > svg {
2227
+ display: block;
2228
+ position: absolute;
2229
+ top: 0;
2230
+ left: 0;
2231
+ }
2232
+
2233
+ .ct-minor-second {
2234
+ display: block;
2235
+ position: relative;
2236
+ width: 100%;
2237
+ }
2238
+ .ct-minor-second:before {
2239
+ display: block;
2240
+ float: left;
2241
+ content: "";
2242
+ width: 0;
2243
+ height: 0;
2244
+ padding-bottom: 93.75%;
2245
+ }
2246
+ .ct-minor-second:after {
2247
+ content: "";
2248
+ display: table;
2249
+ clear: both;
2250
+ }
2251
+ .ct-minor-second > svg {
2252
+ display: block;
2253
+ position: absolute;
2254
+ top: 0;
2255
+ left: 0;
2256
+ }
2257
+
2258
+ .ct-major-second {
2259
+ display: block;
2260
+ position: relative;
2261
+ width: 100%;
2262
+ }
2263
+ .ct-major-second:before {
2264
+ display: block;
2265
+ float: left;
2266
+ content: "";
2267
+ width: 0;
2268
+ height: 0;
2269
+ padding-bottom: 88.88889%;
2270
+ }
2271
+ .ct-major-second:after {
2272
+ content: "";
2273
+ display: table;
2274
+ clear: both;
2275
+ }
2276
+ .ct-major-second > svg {
2277
+ display: block;
2278
+ position: absolute;
2279
+ top: 0;
2280
+ left: 0;
2281
+ }
2282
+
2283
+ .ct-minor-third {
2284
+ display: block;
2285
+ position: relative;
2286
+ width: 100%;
2287
+ }
2288
+ .ct-minor-third:before {
2289
+ display: block;
2290
+ float: left;
2291
+ content: "";
2292
+ width: 0;
2293
+ height: 0;
2294
+ padding-bottom: 83.33333%;
2295
+ }
2296
+ .ct-minor-third:after {
2297
+ content: "";
2298
+ display: table;
2299
+ clear: both;
2300
+ }
2301
+ .ct-minor-third > svg {
2302
+ display: block;
2303
+ position: absolute;
2304
+ top: 0;
2305
+ left: 0;
2306
+ }
2307
+
2308
+ .ct-major-third {
2309
+ display: block;
2310
+ position: relative;
2311
+ width: 100%;
2312
+ }
2313
+ .ct-major-third:before {
2314
+ display: block;
2315
+ float: left;
2316
+ content: "";
2317
+ width: 0;
2318
+ height: 0;
2319
+ padding-bottom: 80%;
2320
+ }
2321
+ .ct-major-third:after {
2322
+ content: "";
2323
+ display: table;
2324
+ clear: both;
2325
+ }
2326
+ .ct-major-third > svg {
2327
+ display: block;
2328
+ position: absolute;
2329
+ top: 0;
2330
+ left: 0;
2331
+ }
2332
+
2333
+ .ct-perfect-fourth {
2334
+ display: block;
2335
+ position: relative;
2336
+ width: 100%;
2337
+ }
2338
+ .ct-perfect-fourth:before {
2339
+ display: block;
2340
+ float: left;
2341
+ content: "";
2342
+ width: 0;
2343
+ height: 0;
2344
+ padding-bottom: 75%;
2345
+ }
2346
+ .ct-perfect-fourth:after {
2347
+ content: "";
2348
+ display: table;
2349
+ clear: both;
2350
+ }
2351
+ .ct-perfect-fourth > svg {
2352
+ display: block;
2353
+ position: absolute;
2354
+ top: 0;
2355
+ left: 0;
2356
+ }
2357
+
2358
+ .ct-perfect-fifth {
2359
+ display: block;
2360
+ position: relative;
2361
+ width: 100%;
2362
+ }
2363
+ .ct-perfect-fifth:before {
2364
+ display: block;
2365
+ float: left;
2366
+ content: "";
2367
+ width: 0;
2368
+ height: 0;
2369
+ padding-bottom: 66.66667%;
2370
+ }
2371
+ .ct-perfect-fifth:after {
2372
+ content: "";
2373
+ display: table;
2374
+ clear: both;
2375
+ }
2376
+ .ct-perfect-fifth > svg {
2377
+ display: block;
2378
+ position: absolute;
2379
+ top: 0;
2380
+ left: 0;
2381
+ }
2382
+
2383
+ .ct-minor-sixth {
2384
+ display: block;
2385
+ position: relative;
2386
+ width: 100%;
2387
+ }
2388
+ .ct-minor-sixth:before {
2389
+ display: block;
2390
+ float: left;
2391
+ content: "";
2392
+ width: 0;
2393
+ height: 0;
2394
+ padding-bottom: 62.5%;
2395
+ }
2396
+ .ct-minor-sixth:after {
2397
+ content: "";
2398
+ display: table;
2399
+ clear: both;
2400
+ }
2401
+ .ct-minor-sixth > svg {
2402
+ display: block;
2403
+ position: absolute;
2404
+ top: 0;
2405
+ left: 0;
2406
+ }
2407
+
2408
+ .ct-golden-section {
2409
+ display: block;
2410
+ position: relative;
2411
+ width: 100%;
2412
+ }
2413
+ .ct-golden-section:before {
2414
+ display: block;
2415
+ float: left;
2416
+ content: "";
2417
+ width: 0;
2418
+ height: 0;
2419
+ padding-bottom: 61.8047%;
2420
+ }
2421
+ .ct-golden-section:after {
2422
+ content: "";
2423
+ display: table;
2424
+ clear: both;
2425
+ }
2426
+ .ct-golden-section > svg {
2427
+ display: block;
2428
+ position: absolute;
2429
+ top: 0;
2430
+ left: 0;
2431
+ }
2432
+
2433
+ .ct-major-sixth {
2434
+ display: block;
2435
+ position: relative;
2436
+ width: 100%;
2437
+ }
2438
+ .ct-major-sixth:before {
2439
+ display: block;
2440
+ float: left;
2441
+ content: "";
2442
+ width: 0;
2443
+ height: 0;
2444
+ padding-bottom: 60%;
2445
+ }
2446
+ .ct-major-sixth:after {
2447
+ content: "";
2448
+ display: table;
2449
+ clear: both;
2450
+ }
2451
+ .ct-major-sixth > svg {
2452
+ display: block;
2453
+ position: absolute;
2454
+ top: 0;
2455
+ left: 0;
2456
+ }
2457
+
2458
+ .ct-minor-seventh {
2459
+ display: block;
2460
+ position: relative;
2461
+ width: 100%;
2462
+ }
2463
+ .ct-minor-seventh:before {
2464
+ display: block;
2465
+ float: left;
2466
+ content: "";
2467
+ width: 0;
2468
+ height: 0;
2469
+ padding-bottom: 56.25%;
2470
+ }
2471
+ .ct-minor-seventh:after {
2472
+ content: "";
2473
+ display: table;
2474
+ clear: both;
2475
+ }
2476
+ .ct-minor-seventh > svg {
2477
+ display: block;
2478
+ position: absolute;
2479
+ top: 0;
2480
+ left: 0;
2481
+ }
2482
+
2483
+ .ct-major-seventh {
2484
+ display: block;
2485
+ position: relative;
2486
+ width: 100%;
2487
+ }
2488
+ .ct-major-seventh:before {
2489
+ display: block;
2490
+ float: left;
2491
+ content: "";
2492
+ width: 0;
2493
+ height: 0;
2494
+ padding-bottom: 53.33333%;
2495
+ }
2496
+ .ct-major-seventh:after {
2497
+ content: "";
2498
+ display: table;
2499
+ clear: both;
2500
+ }
2501
+ .ct-major-seventh > svg {
2502
+ display: block;
2503
+ position: absolute;
2504
+ top: 0;
2505
+ left: 0;
2506
+ }
2507
+
2508
+ .ct-octave {
2509
+ display: block;
2510
+ position: relative;
2511
+ width: 100%;
2512
+ }
2513
+ .ct-octave:before {
2514
+ display: block;
2515
+ float: left;
2516
+ content: "";
2517
+ width: 0;
2518
+ height: 0;
2519
+ padding-bottom: 50%;
2520
+ }
2521
+ .ct-octave:after {
2522
+ content: "";
2523
+ display: table;
2524
+ clear: both;
2525
+ }
2526
+ .ct-octave > svg {
2527
+ display: block;
2528
+ position: absolute;
2529
+ top: 0;
2530
+ left: 0;
2531
+ }
2532
+
2533
+ .ct-major-tenth {
2534
+ display: block;
2535
+ position: relative;
2536
+ width: 100%;
2537
+ }
2538
+ .ct-major-tenth:before {
2539
+ display: block;
2540
+ float: left;
2541
+ content: "";
2542
+ width: 0;
2543
+ height: 0;
2544
+ padding-bottom: 40%;
2545
+ }
2546
+ .ct-major-tenth:after {
2547
+ content: "";
2548
+ display: table;
2549
+ clear: both;
2550
+ }
2551
+ .ct-major-tenth > svg {
2552
+ display: block;
2553
+ position: absolute;
2554
+ top: 0;
2555
+ left: 0;
2556
+ }
2557
+
2558
+ .ct-major-eleventh {
2559
+ display: block;
2560
+ position: relative;
2561
+ width: 100%;
2562
+ }
2563
+ .ct-major-eleventh:before {
2564
+ display: block;
2565
+ float: left;
2566
+ content: "";
2567
+ width: 0;
2568
+ height: 0;
2569
+ padding-bottom: 37.5%;
2570
+ }
2571
+ .ct-major-eleventh:after {
2572
+ content: "";
2573
+ display: table;
2574
+ clear: both;
2575
+ }
2576
+ .ct-major-eleventh > svg {
2577
+ display: block;
2578
+ position: absolute;
2579
+ top: 0;
2580
+ left: 0;
2581
+ }
2582
+
2583
+ .ct-major-twelfth {
2584
+ display: block;
2585
+ position: relative;
2586
+ width: 100%;
2587
+ }
2588
+ .ct-major-twelfth:before {
2589
+ display: block;
2590
+ float: left;
2591
+ content: "";
2592
+ width: 0;
2593
+ height: 0;
2594
+ padding-bottom: 33.33333%;
2595
+ }
2596
+ .ct-major-twelfth:after {
2597
+ content: "";
2598
+ display: table;
2599
+ clear: both;
2600
+ }
2601
+ .ct-major-twelfth > svg {
2602
+ display: block;
2603
+ position: absolute;
2604
+ top: 0;
2605
+ left: 0;
2606
+ }
2607
+
2608
+ .ct-double-octave {
2609
+ display: block;
2610
+ position: relative;
2611
+ width: 100%;
2612
+ }
2613
+ .ct-double-octave:before {
2614
+ display: block;
2615
+ float: left;
2616
+ content: "";
2617
+ width: 0;
2618
+ height: 0;
2619
+ padding-bottom: 25%;
2620
+ }
2621
+ .ct-double-octave:after {
2622
+ content: "";
2623
+ display: table;
2624
+ clear: both;
2625
+ }
2626
+ .ct-double-octave > svg {
2627
+ display: block;
2628
+ position: absolute;
2629
+ top: 0;
2630
+ left: 0;
2631
+ }
2632
+
2633
+ @media (min-width: 992px) {
2634
+ .navbar {
2635
+ min-height: 75px;
2636
+ }
2637
+
2638
+ .navbar-form {
2639
+ margin-top: 21px;
2640
+ margin-bottom: 21px;
2641
+ padding-left: 5px;
2642
+ padding-right: 5px;
2643
+ }
2644
+
2645
+ .navbar-search-form {
2646
+ display: none;
2647
+ }
2648
+
2649
+ .navbar-nav > li > .dropdown-menu,
2650
+ .dropdown .dropdown-menu {
2651
+ transform: translate3d(0px, -40px, 0px);
2652
+ transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.3s ease 0s, height 0s linear 0.35s;
2653
+ }
2654
+
2655
+ .navbar-nav > li.open > .dropdown-menu, .dropdown.open .dropdown-menu {
2656
+ transform: translate3d(0px, 0px, 0px);
2657
+ }
2658
+
2659
+ .navbar-nav > li > .dropdown-menu:before {
2660
+ border-bottom: 11px solid #F1EAE0;
2661
+ border-left: 11px solid transparent;
2662
+ border-right: 11px solid transparent;
2663
+ content: "";
2664
+ display: inline-block;
2665
+ position: absolute;
2666
+ right: 12px;
2667
+ top: -11px;
2668
+ }
2669
+
2670
+ .navbar-nav > li > .dropdown-menu:after {
2671
+ border-bottom: 11px solid #FFFCF5;
2672
+ border-left: 11px solid transparent;
2673
+ border-right: 11px solid transparent;
2674
+ content: "";
2675
+ display: inline-block;
2676
+ position: absolute;
2677
+ right: 12px;
2678
+ top: -10px;
2679
+ }
2680
+
2681
+ .navbar-nav.navbar-left > li > .dropdown-menu:before {
2682
+ right: auto;
2683
+ left: 12px;
2684
+ }
2685
+
2686
+ .navbar-nav.navbar-left > li > .dropdown-menu:after {
2687
+ right: auto;
2688
+ left: 12px;
2689
+ }
2690
+
2691
+ .navbar .navbar-header {
2692
+ margin-left: 10px;
2693
+ }
2694
+
2695
+ .footer:not(.footer-big) nav > ul li:first-child {
2696
+ margin-left: 0;
2697
+ }
2698
+
2699
+ body > .navbar-collapse.collapse {
2700
+ display: none !important;
2701
+ }
2702
+
2703
+ .card form [class*="col-"] {
2704
+ padding: 6px;
2705
+ }
2706
+ .card form [class*="col-"]:first-child {
2707
+ padding-left: 15px;
2708
+ }
2709
+ .card form [class*="col-"]:last-child {
2710
+ padding-right: 15px;
2711
+ }
2712
+ }
2713
+ /* Changes for small display */
2714
+ @media (max-width: 991px) {
2715
+ .sidebar {
2716
+ display: none;
2717
+ }
2718
+
2719
+ .main-panel {
2720
+ width: 100%;
2721
+ }
2722
+
2723
+ .navbar-transparent {
2724
+ padding-top: 15px;
2725
+ background-color: rgba(0, 0, 0, 0.45);
2726
+ }
2727
+
2728
+ body {
2729
+ position: relative;
2730
+ }
2731
+
2732
+ h6 {
2733
+ font-size: 1em;
2734
+ }
2735
+
2736
+ .wrapper {
2737
+ -webkit-transform: translate3d(0px, 0, 0);
2738
+ -moz-transform: translate3d(0px, 0, 0);
2739
+ -o-transform: translate3d(0px, 0, 0);
2740
+ -ms-transform: translate3d(0px, 0, 0);
2741
+ transform: translate3d(0px, 0, 0);
2742
+ -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2743
+ -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2744
+ -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2745
+ -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2746
+ transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2747
+ left: 0;
2748
+ background-color: white;
2749
+ }
2750
+
2751
+ .navbar .container {
2752
+ left: 0;
2753
+ width: 100%;
2754
+ -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2755
+ -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2756
+ -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2757
+ -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2758
+ transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2759
+ position: relative;
2760
+ }
2761
+
2762
+ .navbar .navbar-collapse.collapse,
2763
+ .navbar .navbar-collapse.collapse.in,
2764
+ .navbar .navbar-collapse.collapsing {
2765
+ display: none !important;
2766
+ }
2767
+
2768
+ .navbar-nav > li {
2769
+ float: none;
2770
+ position: relative;
2771
+ display: block;
2772
+ }
2773
+
2774
+ .off-canvas-sidebar {
2775
+ position: fixed;
2776
+ display: block;
2777
+ top: 0;
2778
+ height: 100%;
2779
+ width: 230px;
2780
+ right: 0;
2781
+ z-index: 1032;
2782
+ visibility: visible;
2783
+ background-color: #999;
2784
+ overflow-y: visible;
2785
+ border-top: none;
2786
+ text-align: left;
2787
+ padding-right: 0px;
2788
+ padding-left: 0;
2789
+ -webkit-transform: translate3d(230px, 0, 0);
2790
+ -moz-transform: translate3d(230px, 0, 0);
2791
+ -o-transform: translate3d(230px, 0, 0);
2792
+ -ms-transform: translate3d(230px, 0, 0);
2793
+ transform: translate3d(230px, 0, 0);
2794
+ -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2795
+ -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2796
+ -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2797
+ -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2798
+ transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2799
+ }
2800
+ .off-canvas-sidebar .sidebar-wrapper {
2801
+ position: relative;
2802
+ z-index: 3;
2803
+ overflow-y: scroll;
2804
+ height: 100%;
2805
+ box-shadow: inset 1px 0px 0px 0px #DDDDDD;
2806
+ }
2807
+ .off-canvas-sidebar .nav {
2808
+ margin-top: 0;
2809
+ padding: 10px 15px 0;
2810
+ }
2811
+ .off-canvas-sidebar .nav > li > a {
2812
+ margin: 0px 0px;
2813
+ color: #66615B;
2814
+ text-transform: uppercase;
2815
+ font-weight: 600;
2816
+ font-size: 12px;
2817
+ line-height: 1.4em;
2818
+ padding: 10px 0;
2819
+ }
2820
+ .off-canvas-sidebar .nav > li > a:hover, .off-canvas-sidebar .nav > li > a.active {
2821
+ color: #403D39;
2822
+ }
2823
+ .off-canvas-sidebar .nav > li > a p,
2824
+ .off-canvas-sidebar .nav > li > a .notification,
2825
+ .off-canvas-sidebar .nav > li > a .caret {
2826
+ display: inline-block;
2827
+ }
2828
+ .off-canvas-sidebar .nav > li > a .caret {
2829
+ float: right;
2830
+ position: relative;
2831
+ top: 12px;
2832
+ }
2833
+ .off-canvas-sidebar .nav > li > a i {
2834
+ font-size: 18px;
2835
+ margin-right: 10px;
2836
+ line-height: 26px;
2837
+ }
2838
+ .off-canvas-sidebar .nav > li.active > a:before {
2839
+ border-right: none;
2840
+ border-left: 12px solid #DDDDDD;
2841
+ border-top: 12px solid transparent;
2842
+ border-bottom: 12px solid transparent;
2843
+ right: auto;
2844
+ margin-left: -15px;
2845
+ left: 0px;
2846
+ top: 10px;
2847
+ }
2848
+ .off-canvas-sidebar .nav > li.active > a:after {
2849
+ border-right: none;
2850
+ border-left: 12px solid #f4f3ef;
2851
+ border-top: 12px solid transparent;
2852
+ border-bottom: 12px solid transparent;
2853
+ right: auto;
2854
+ margin-left: -15px;
2855
+ left: -1px;
2856
+ top: 10px;
2857
+ }
2858
+ .off-canvas-sidebar::after {
2859
+ top: 0;
2860
+ left: 0;
2861
+ height: 100%;
2862
+ width: 100%;
2863
+ position: absolute;
2864
+ background-color: #f4f3ef;
2865
+ background-image: linear-gradient(to bottom, transparent 0%, rgba(112, 112, 112, 0) 60%, rgba(186, 186, 186, 0.15) 100%);
2866
+ display: block;
2867
+ content: "";
2868
+ z-index: 1;
2869
+ }
2870
+ .off-canvas-sidebar.has-image::after {
2871
+ top: 0;
2872
+ left: 0;
2873
+ height: 100%;
2874
+ width: 100%;
2875
+ position: absolute;
2876
+ background-color: rgba(17, 17, 17, 0.8);
2877
+ display: block;
2878
+ content: "";
2879
+ z-index: 1;
2880
+ }
2881
+ .off-canvas-sidebar .logo {
2882
+ position: relative;
2883
+ z-index: 4;
2884
+ padding-top: 11px;
2885
+ padding-bottom: 11px;
2886
+ }
2887
+ .off-canvas-sidebar .divider {
2888
+ height: 1px;
2889
+ margin: 10px 0;
2890
+ }
2891
+
2892
+ .nav-open .navbar-collapse {
2893
+ -webkit-transform: translate3d(0px, 0, 0);
2894
+ -moz-transform: translate3d(0px, 0, 0);
2895
+ -o-transform: translate3d(0px, 0, 0);
2896
+ -ms-transform: translate3d(0px, 0, 0);
2897
+ transform: translate3d(0px, 0, 0);
2898
+ }
2899
+
2900
+ .nav-open .navbar .container {
2901
+ left: -230px;
2902
+ }
2903
+
2904
+ .nav-open .wrapper {
2905
+ left: 0;
2906
+ -webkit-transform: translate3d(-230px, 0, 0);
2907
+ -moz-transform: translate3d(-230px, 0, 0);
2908
+ -o-transform: translate3d(-230px, 0, 0);
2909
+ -ms-transform: translate3d(-230px, 0, 0);
2910
+ transform: translate3d(-230px, 0, 0);
2911
+ }
2912
+
2913
+ .navbar-toggle .icon-bar {
2914
+ display: block;
2915
+ position: relative;
2916
+ background: #fff;
2917
+ width: 24px;
2918
+ height: 2px;
2919
+ border-radius: 1px;
2920
+ margin: 0 auto;
2921
+ }
2922
+
2923
+ .navbar-header .navbar-toggle {
2924
+ margin: 10px 15px 10px 0;
2925
+ width: 40px;
2926
+ height: 40px;
2927
+ }
2928
+
2929
+ .bar1,
2930
+ .bar2,
2931
+ .bar3 {
2932
+ outline: 1px solid transparent;
2933
+ }
2934
+
2935
+ .bar1 {
2936
+ top: 0px;
2937
+ -webkit-animation: topbar-back 500ms linear 0s;
2938
+ -moz-animation: topbar-back 500ms linear 0s;
2939
+ animation: topbar-back 500ms 0s;
2940
+ -webkit-animation-fill-mode: forwards;
2941
+ -moz-animation-fill-mode: forwards;
2942
+ animation-fill-mode: forwards;
2943
+ }
2944
+
2945
+ .bar2 {
2946
+ opacity: 1;
2947
+ }
2948
+
2949
+ .bar3 {
2950
+ bottom: 0px;
2951
+ -webkit-animation: bottombar-back 500ms linear 0s;
2952
+ -moz-animation: bottombar-back 500ms linear 0s;
2953
+ animation: bottombar-back 500ms 0s;
2954
+ -webkit-animation-fill-mode: forwards;
2955
+ -moz-animation-fill-mode: forwards;
2956
+ animation-fill-mode: forwards;
2957
+ }
2958
+
2959
+ .toggled .bar1 {
2960
+ top: 6px;
2961
+ -webkit-animation: topbar-x 500ms linear 0s;
2962
+ -moz-animation: topbar-x 500ms linear 0s;
2963
+ animation: topbar-x 500ms 0s;
2964
+ -webkit-animation-fill-mode: forwards;
2965
+ -moz-animation-fill-mode: forwards;
2966
+ animation-fill-mode: forwards;
2967
+ }
2968
+
2969
+ .toggled .bar2 {
2970
+ opacity: 0;
2971
+ }
2972
+
2973
+ .toggled .bar3 {
2974
+ bottom: 6px;
2975
+ -webkit-animation: bottombar-x 500ms linear 0s;
2976
+ -moz-animation: bottombar-x 500ms linear 0s;
2977
+ animation: bottombar-x 500ms 0s;
2978
+ -webkit-animation-fill-mode: forwards;
2979
+ -moz-animation-fill-mode: forwards;
2980
+ animation-fill-mode: forwards;
2981
+ }
2982
+
2983
+ @keyframes topbar-x {
2984
+ 0% {
2985
+ top: 0px;
2986
+ transform: rotate(0deg);
2987
+ }
2988
+ 45% {
2989
+ top: 6px;
2990
+ transform: rotate(145deg);
2991
+ }
2992
+ 75% {
2993
+ transform: rotate(130deg);
2994
+ }
2995
+ 100% {
2996
+ transform: rotate(135deg);
2997
+ }
2998
+ }
2999
+ @-webkit-keyframes topbar-x {
3000
+ 0% {
3001
+ top: 0px;
3002
+ -webkit-transform: rotate(0deg);
3003
+ }
3004
+ 45% {
3005
+ top: 6px;
3006
+ -webkit-transform: rotate(145deg);
3007
+ }
3008
+ 75% {
3009
+ -webkit-transform: rotate(130deg);
3010
+ }
3011
+ 100% {
3012
+ -webkit-transform: rotate(135deg);
3013
+ }
3014
+ }
3015
+ @-moz-keyframes topbar-x {
3016
+ 0% {
3017
+ top: 0px;
3018
+ -moz-transform: rotate(0deg);
3019
+ }
3020
+ 45% {
3021
+ top: 6px;
3022
+ -moz-transform: rotate(145deg);
3023
+ }
3024
+ 75% {
3025
+ -moz-transform: rotate(130deg);
3026
+ }
3027
+ 100% {
3028
+ -moz-transform: rotate(135deg);
3029
+ }
3030
+ }
3031
+ @keyframes topbar-back {
3032
+ 0% {
3033
+ top: 6px;
3034
+ transform: rotate(135deg);
3035
+ }
3036
+ 45% {
3037
+ transform: rotate(-10deg);
3038
+ }
3039
+ 75% {
3040
+ transform: rotate(5deg);
3041
+ }
3042
+ 100% {
3043
+ top: 0px;
3044
+ transform: rotate(0);
3045
+ }
3046
+ }
3047
+ @-webkit-keyframes topbar-back {
3048
+ 0% {
3049
+ top: 6px;
3050
+ -webkit-transform: rotate(135deg);
3051
+ }
3052
+ 45% {
3053
+ -webkit-transform: rotate(-10deg);
3054
+ }
3055
+ 75% {
3056
+ -webkit-transform: rotate(5deg);
3057
+ }
3058
+ 100% {
3059
+ top: 0px;
3060
+ -webkit-transform: rotate(0);
3061
+ }
3062
+ }
3063
+ @-moz-keyframes topbar-back {
3064
+ 0% {
3065
+ top: 6px;
3066
+ -moz-transform: rotate(135deg);
3067
+ }
3068
+ 45% {
3069
+ -moz-transform: rotate(-10deg);
3070
+ }
3071
+ 75% {
3072
+ -moz-transform: rotate(5deg);
3073
+ }
3074
+ 100% {
3075
+ top: 0px;
3076
+ -moz-transform: rotate(0);
3077
+ }
3078
+ }
3079
+ @keyframes bottombar-x {
3080
+ 0% {
3081
+ bottom: 0px;
3082
+ transform: rotate(0deg);
3083
+ }
3084
+ 45% {
3085
+ bottom: 6px;
3086
+ transform: rotate(-145deg);
3087
+ }
3088
+ 75% {
3089
+ transform: rotate(-130deg);
3090
+ }
3091
+ 100% {
3092
+ transform: rotate(-135deg);
3093
+ }
3094
+ }
3095
+ @-webkit-keyframes bottombar-x {
3096
+ 0% {
3097
+ bottom: 0px;
3098
+ -webkit-transform: rotate(0deg);
3099
+ }
3100
+ 45% {
3101
+ bottom: 6px;
3102
+ -webkit-transform: rotate(-145deg);
3103
+ }
3104
+ 75% {
3105
+ -webkit-transform: rotate(-130deg);
3106
+ }
3107
+ 100% {
3108
+ -webkit-transform: rotate(-135deg);
3109
+ }
3110
+ }
3111
+ @-moz-keyframes bottombar-x {
3112
+ 0% {
3113
+ bottom: 0px;
3114
+ -moz-transform: rotate(0deg);
3115
+ }
3116
+ 45% {
3117
+ bottom: 6px;
3118
+ -moz-transform: rotate(-145deg);
3119
+ }
3120
+ 75% {
3121
+ -moz-transform: rotate(-130deg);
3122
+ }
3123
+ 100% {
3124
+ -moz-transform: rotate(-135deg);
3125
+ }
3126
+ }
3127
+ @keyframes bottombar-back {
3128
+ 0% {
3129
+ bottom: 6px;
3130
+ transform: rotate(-135deg);
3131
+ }
3132
+ 45% {
3133
+ transform: rotate(10deg);
3134
+ }
3135
+ 75% {
3136
+ transform: rotate(-5deg);
3137
+ }
3138
+ 100% {
3139
+ bottom: 0px;
3140
+ transform: rotate(0);
3141
+ }
3142
+ }
3143
+ @-webkit-keyframes bottombar-back {
3144
+ 0% {
3145
+ bottom: 6px;
3146
+ -webkit-transform: rotate(-135deg);
3147
+ }
3148
+ 45% {
3149
+ -webkit-transform: rotate(10deg);
3150
+ }
3151
+ 75% {
3152
+ -webkit-transform: rotate(-5deg);
3153
+ }
3154
+ 100% {
3155
+ bottom: 0px;
3156
+ -webkit-transform: rotate(0);
3157
+ }
3158
+ }
3159
+ @-moz-keyframes bottombar-back {
3160
+ 0% {
3161
+ bottom: 6px;
3162
+ -moz-transform: rotate(-135deg);
3163
+ }
3164
+ 45% {
3165
+ -moz-transform: rotate(10deg);
3166
+ }
3167
+ 75% {
3168
+ -moz-transform: rotate(-5deg);
3169
+ }
3170
+ 100% {
3171
+ bottom: 0px;
3172
+ -moz-transform: rotate(0);
3173
+ }
3174
+ }
3175
+ @-webkit-keyframes fadeIn {
3176
+ 0% {
3177
+ opacity: 0;
3178
+ }
3179
+ 100% {
3180
+ opacity: 1;
3181
+ }
3182
+ }
3183
+ @-moz-keyframes fadeIn {
3184
+ 0% {
3185
+ opacity: 0;
3186
+ }
3187
+ 100% {
3188
+ opacity: 1;
3189
+ }
3190
+ }
3191
+ @keyframes fadeIn {
3192
+ 0% {
3193
+ opacity: 0;
3194
+ }
3195
+ 100% {
3196
+ opacity: 1;
3197
+ }
3198
+ }
3199
+ .dropdown-menu .divider {
3200
+ background-color: rgba(229, 229, 229, 0.15);
3201
+ }
3202
+
3203
+ .navbar-nav {
3204
+ margin: 1px 0;
3205
+ }
3206
+
3207
+ .dropdown-menu {
3208
+ display: none;
3209
+ }
3210
+ .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
3211
+ background-color: transparent;
3212
+ }
3213
+
3214
+ .navbar-fixed-top {
3215
+ -webkit-backface-visibility: hidden;
3216
+ }
3217
+
3218
+ #bodyClick {
3219
+ height: 100%;
3220
+ width: 100%;
3221
+ position: fixed;
3222
+ opacity: 0;
3223
+ top: 0;
3224
+ left: auto;
3225
+ right: 230px;
3226
+ content: "";
3227
+ z-index: 9999;
3228
+ overflow-x: hidden;
3229
+ }
3230
+
3231
+ .form-control + .form-control-feedback {
3232
+ margin-top: -8px;
3233
+ }
3234
+
3235
+ .navbar-toggle:hover, .navbar-toggle:focus {
3236
+ background-color: transparent !important;
3237
+ }
3238
+
3239
+ .btn.dropdown-toggle {
3240
+ margin-bottom: 0;
3241
+ }
3242
+
3243
+ .media-post .author {
3244
+ width: 20%;
3245
+ float: none !important;
3246
+ display: block;
3247
+ margin: 0 auto 10px;
3248
+ }
3249
+
3250
+ .media-post .media-body {
3251
+ width: 100%;
3252
+ }
3253
+
3254
+ .navbar-collapse.collapse {
3255
+ height: 100% !important;
3256
+ }
3257
+
3258
+ .navbar-collapse.collapse.in {
3259
+ display: block;
3260
+ }
3261
+
3262
+ .navbar-header .collapse, .navbar-toggle {
3263
+ display: block !important;
3264
+ }
3265
+
3266
+ .navbar-header {
3267
+ float: none;
3268
+ }
3269
+
3270
+ .navbar-nav .open .dropdown-menu {
3271
+ position: static;
3272
+ float: none;
3273
+ width: auto;
3274
+ margin-top: 0;
3275
+ background-color: transparent;
3276
+ border: 0;
3277
+ -webkit-box-shadow: none;
3278
+ box-shadow: none;
3279
+ }
3280
+
3281
+ .main-panel > .content {
3282
+ padding-left: 0;
3283
+ padding-right: 0;
3284
+ }
3285
+
3286
+ .nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
3287
+ background-color: transparent;
3288
+ }
3289
+
3290
+ .footer .copyright {
3291
+ padding: 0px 15px;
3292
+ width: 100%;
3293
+ }
3294
+ }
3295
+ @media (min-width: 992px) {
3296
+ .table-full-width {
3297
+ margin-left: -15px;
3298
+ margin-right: -15px;
3299
+ }
3300
+
3301
+ .table-responsive {
3302
+ overflow: visible;
3303
+ }
3304
+ }
3305
+ @media (max-width: 991px) {
3306
+ .table-responsive {
3307
+ width: 100%;
3308
+ margin-bottom: 15px;
3309
+ border: 1px solid #dddddd;
3310
+ overflow-x: scroll;
3311
+ overflow-y: hidden;
3312
+ -ms-overflow-style: -ms-autohiding-scrollbar;
3313
+ -webkit-overflow-scrolling: touch;
3314
+ }
3315
+ }