fleetio_spark 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +43 -0
  4. data/app/assets/javascripts/spark/_cookie.js +23 -0
  5. data/app/assets/javascripts/spark/_esvg.js +73 -0
  6. data/app/assets/javascripts/spark/_icons.js +19 -0
  7. data/app/assets/javascripts/spark/_modal.js +421 -0
  8. data/app/assets/javascripts/spark/_search.js +79 -0
  9. data/app/assets/javascripts/spark/_sidebar.js +13 -0
  10. data/app/assets/javascripts/spark/_stack.js +248 -0
  11. data/app/assets/javascripts/spark/_tree.js +68 -0
  12. data/app/assets/javascripts/spark/shims/_dataset.js +241 -0
  13. data/app/assets/javascripts/spark/spark.js +31 -0
  14. data/app/assets/stylesheets/spark/_icons.scss +15 -0
  15. data/app/assets/stylesheets/spark/_index.scss +5 -0
  16. data/app/assets/stylesheets/spark/components/_index.scss +6 -0
  17. data/app/assets/stylesheets/spark/components/_modal.scss +73 -0
  18. data/app/assets/stylesheets/spark/components/_nav-menu.scss +102 -0
  19. data/app/assets/stylesheets/spark/components/_sidebar.scss +280 -0
  20. data/app/assets/stylesheets/spark/components/_tooltip.scss +42 -0
  21. data/app/assets/stylesheets/spark/components/_tree-nav.scss +13 -0
  22. data/app/assets/stylesheets/spark/components/header/_app-admin-header.scss +82 -0
  23. data/app/assets/stylesheets/spark/components/header/_app-nav-header.scss +154 -0
  24. data/app/assets/stylesheets/spark/components/header/_index.scss +5 -0
  25. data/app/assets/stylesheets/spark/components/header/_search-results.scss +29 -0
  26. data/app/assets/stylesheets/spark/components/header/_search.scss +195 -0
  27. data/app/assets/stylesheets/spark/components/header/_trial-status.scss +43 -0
  28. data/app/assets/stylesheets/spark/core/_animations.scss +154 -0
  29. data/app/assets/stylesheets/spark/core/_base.scss +11 -0
  30. data/app/assets/stylesheets/spark/core/_colors.scss +94 -0
  31. data/app/assets/stylesheets/spark/core/_index.scss +7 -0
  32. data/app/assets/stylesheets/spark/core/_layout.scss +39 -0
  33. data/app/assets/stylesheets/spark/core/_mixins.scss +86 -0
  34. data/app/assets/stylesheets/spark/core/_text.scss +5 -0
  35. data/app/assets/stylesheets/spark/core/_vars.scss +76 -0
  36. data/app/assets/stylesheets/spark/form/_base.scss +124 -0
  37. data/app/assets/stylesheets/spark/form/_check-switch.scss +99 -0
  38. data/app/assets/stylesheets/spark/form/_index.scss +2 -0
  39. data/app/assets/stylesheets/spark/spark.scss +1 -0
  40. data/app/assets/svgs/spark/add.svg +3 -0
  41. data/app/assets/svgs/spark/admin-user.svg +5 -0
  42. data/app/assets/svgs/spark/chevron-down.svg +3 -0
  43. data/app/assets/svgs/spark/chevron-up.svg +3 -0
  44. data/app/assets/svgs/spark/close.svg +3 -0
  45. data/app/assets/svgs/spark/contact.svg +6 -0
  46. data/app/assets/svgs/spark/dashboard.svg +3 -0
  47. data/app/assets/svgs/spark/fuel.svg +3 -0
  48. data/app/assets/svgs/spark/inspection.svg +3 -0
  49. data/app/assets/svgs/spark/issue.svg +3 -0
  50. data/app/assets/svgs/spark/leaderboard.svg +5 -0
  51. data/app/assets/svgs/spark/logo.svg +1 -0
  52. data/app/assets/svgs/spark/map.svg +4 -0
  53. data/app/assets/svgs/spark/nav-menu.svg +5 -0
  54. data/app/assets/svgs/spark/part.svg +6 -0
  55. data/app/assets/svgs/spark/place.svg +5 -0
  56. data/app/assets/svgs/spark/question.svg +10 -0
  57. data/app/assets/svgs/spark/reminder.svg +3 -0
  58. data/app/assets/svgs/spark/report.svg +5 -0
  59. data/app/assets/svgs/spark/search.svg +3 -0
  60. data/app/assets/svgs/spark/service.svg +3 -0
  61. data/app/assets/svgs/spark/settings.svg +3 -0
  62. data/app/assets/svgs/spark/trip.svg +4 -0
  63. data/app/assets/svgs/spark/vehicle.svg +3 -0
  64. data/app/assets/svgs/spark/vendor.svg +4 -0
  65. data/app/helpers/spark/application_helper.rb +42 -0
  66. data/app/helpers/spark/icon_helper.rb +40 -0
  67. data/app/helpers/spark/input_helper.rb +163 -0
  68. data/app/helpers/spark/menu_helper.rb +113 -0
  69. data/app/helpers/spark/modal_helper.rb +52 -0
  70. data/app/helpers/spark/nav_menu_helper.rb +167 -0
  71. data/app/helpers/spark/tag_helper.rb +27 -0
  72. data/app/helpers/spark/trial_helper.rb +23 -0
  73. data/app/views/layouts/spark/application.html.slim +28 -0
  74. data/app/views/layouts/spark/blank.html.slim +9 -0
  75. data/app/views/layouts/spark/default.html.slim +13 -0
  76. data/config/autoprefixer.yml +4 -0
  77. data/config/esvg.yml +20 -0
  78. data/lib/fleetio_spark.rb +14 -0
  79. data/lib/fleetio_spark/helper.rb +163 -0
  80. data/lib/fleetio_spark/version.rb +3 -0
  81. data/public/spark-0.1.0.css +1442 -0
  82. data/public/spark-0.1.0.css.gz +0 -0
  83. data/public/spark-0.1.0.js +11927 -0
  84. data/public/spark-0.1.0.js.gz +0 -0
  85. metadata +211 -0
@@ -0,0 +1,27 @@
1
+ module Spark
2
+ module TagHelper
3
+
4
+ # Takes an options hash, appends classnames (array or string)
5
+ def add_class( options, classnames )
6
+ options = options.stringify_keys
7
+ options['class'] = ([options['class']].flatten | [classnames].flatten).compact
8
+ options
9
+ end
10
+
11
+ def select_input_tag( name, option_tags=nil, options={}, &block )
12
+ if option_tags.is_a? Hash
13
+ options = option_tags
14
+ option_tags = nil
15
+ end
16
+
17
+ option_tags ||= capture( &block ).html_safe if block_given?
18
+
19
+ input_tag( :select, name, option_tags, options )
20
+ end
21
+
22
+ def search_input_tag( name, value = nil, options = {}, &block )
23
+ input_tag( :search, name, value, options, &block )
24
+ end
25
+
26
+ end
27
+ end
@@ -0,0 +1,23 @@
1
+ module Spark
2
+ module TrialHelper
3
+ def trialing( end_date, url, options={} )
4
+
5
+ options[:class] = 'trial-status'
6
+
7
+ days = [0, ( end_date.to_date - Date.current ).to_i].max
8
+ text = %Q{#{pluralize(days, 'day')} left in trial}
9
+
10
+ if days < 1
11
+ options[:class] += ' trial-ended'
12
+ elsif days < 5
13
+ options[:class] += ' trial-ending-soon'
14
+ end
15
+
16
+ content_tag( :div, options ) do
17
+ concat content_tag( :span, class: 'trial-status-text' ) { text }
18
+ concat " "
19
+ concat link_to "Upgrade", url, class: 'trial-status-link'
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,28 @@
1
+ doctype html
2
+ - body_classes ||= []
3
+
4
+ html#ng-app class='ng-app:app' ng-app="app" xmlns:ng="http://angularjs.org"
5
+ head
6
+ meta charset="utf-8"
7
+ meta http-equiv="X-UA-Compatible" content="IE=edge"
8
+ meta name="HandheldFriendly" content="True"
9
+ meta name="viewport" content="width=device-width, initial-scale=1.0"
10
+ = csrf_meta_tags
11
+ = yield :stylesheets
12
+ = yield :head
13
+ script
14
+ |console.log("FleetioSpark: v#{FleetioSpark::VERSION}")
15
+
16
+ body class=body_classes.join(' ')
17
+ = yield :body_start
18
+
19
+ main.main-container *ng_attrs
20
+ = yield :main_start
21
+ .container-fluid
22
+ = yield :container_start
23
+
24
+ = yield
25
+
26
+ = yield :body_end
27
+ / Spark and app javascripts
28
+ = yield :javascripts
@@ -0,0 +1,9 @@
1
+ doctype html
2
+ - body_classes ||= []
3
+ html#ng-app class='ng-app:app' ng-app="app" xmlns:ng="http://angularjs.org"
4
+ head
5
+ = yield :stylesheets
6
+ = yield :head
7
+ = javascript_tag "spark"
8
+ script
9
+ |console.log("FleetioSpark: v#{FleetioSpark::VERSION}")
@@ -0,0 +1,13 @@
1
+ doctype html
2
+ html#ng-app ng-app="app" class="ng-app:app" xmlns:ng="http://angularjs.org"
3
+ head
4
+ = csrf_meta_tags
5
+ = yield :stylesheets
6
+ = yield :head
7
+ body class=body_class
8
+ = svg_symbols
9
+
10
+ = yield
11
+
12
+ = javascript_tag "spark"
13
+ = yield :javascripts
@@ -0,0 +1,4 @@
1
+ browsers:
2
+ - "> 1%"
3
+ - "last 2 versions"
4
+ - "IE > 9"
data/config/esvg.yml ADDED
@@ -0,0 +1,20 @@
1
+ print: true
2
+ sizes:
3
+ icon_xs: { height: 10 }
4
+ icon_s: { height: 14 }
5
+ icon_m: { height: 16 }
6
+ icon_l: { height: 18 }
7
+ icon_xl: { height: 24 }
8
+ icon_xxl: { height: 32 }
9
+
10
+ presets:
11
+ icon:
12
+ class: icon
13
+ height: 10
14
+ nav_icon:
15
+ height: 18px
16
+ sidebar_icon:
17
+ height: 18px
18
+ class: 'sidebar-icon'
19
+
20
+ class: 'icon'
@@ -0,0 +1,14 @@
1
+ require 'spark_engine'
2
+ require 'fleetio_spark/version'
3
+ require 'fleetio_spark/helper'
4
+ require 'slim-rails'
5
+
6
+ module FleetioSpark
7
+ class Plugin < SparkEngine::Plugin
8
+ end
9
+ end
10
+
11
+ SparkEngine.register(FleetioSpark::Plugin, {
12
+ gem: 'fleetio_spark',
13
+ engine: 'spark'
14
+ })
@@ -0,0 +1,163 @@
1
+ require 'block_helpers'
2
+
3
+ module Spark
4
+ class Helper < BlockHelpers::Base
5
+ end
6
+
7
+ module Helpers
8
+ extend self
9
+
10
+ # Move top level keys under data:
11
+ def set_data_keys( options={}, tl_keys=[] )
12
+ tl_keys = tl_keys.split(' ') if tl_keys.is_a? String
13
+ tl_keys = tl_keys | DEFAULT_DATA_KEYS
14
+ sub_key options, tl_keys, 'data'
15
+ end
16
+
17
+ # Convert aria: { key: val } to 'aria-key' => val
18
+ def set_aria_keys( options, tl_keys=[] )
19
+
20
+ # Add 'aria' parent to passed top level keys
21
+ tl_keys = tl_keys.split(' ') if tl_keys.is_a? String
22
+ tl_keys = tl_keys | DEFAULT_ARIA_KEYS
23
+
24
+ options = sub_key options, tl_keys, 'aria'
25
+ opts = {}
26
+
27
+ options['aria'].each do |key, val|
28
+ opts["aria-#{key}"] = val
29
+ end
30
+
31
+ options.delete 'aria'
32
+ options.merge! opts
33
+
34
+ options
35
+ end
36
+
37
+ # Move top level keys under new parent key
38
+ def sub_key(options, tl_keys, parent)
39
+ options = dasherize_keys( options )
40
+ tl_keys = tl_keys.split(' ') if tl_keys.is_a? String
41
+
42
+ parent = parent.to_s if parent.is_a?( Symbol )
43
+ options[parent] ||= {}
44
+
45
+ new_hash = {}
46
+
47
+ # Look through option keys and reparent keys which match dasherized search keys
48
+ options.each do |k,v|
49
+ new_hash[dasherize k] = options.delete k if tl_keys.include? dasherize k
50
+ end
51
+
52
+ options[parent].merge! new_hash
53
+ options
54
+
55
+ end
56
+
57
+ def set_type_defaults( type, options={} )
58
+ ( INPUT_OPTIONS[type] || {} ).deep_merge options
59
+ end
60
+
61
+ def dasherize_keys(obj)
62
+ obj.deep_transform_keys{ |key| dasherize(key.to_s) }
63
+ end
64
+
65
+ def dasherize(input)
66
+ input.gsub(/[\W,_]/, '-').gsub(/-{2,}/, '-')
67
+ end
68
+
69
+ end
70
+
71
+ DEFAULT_DATA_KEYS = %w(toggle show hide show-menu show-panel show-dialog stack stack-nav)
72
+ DEFAULT_ARIA_KEYS = %w(haspopup expanded)
73
+
74
+ INPUT_OPTIONS = {
75
+ email: {
76
+ type: "email",
77
+ placeholder: "Email address",
78
+ pattern: "[^@]+@[^@]+\\.[a-zA-Z]{2,}",
79
+ autocorrect: "off",
80
+ autocapitalize: "off",
81
+ spellcheck: "false",
82
+ data: { message: "Please enter a valid email address." }
83
+ },
84
+
85
+ password: {
86
+ type: "password",
87
+ placeholder: "Password"
88
+ },
89
+
90
+ text: {
91
+ type: "text"
92
+ },
93
+
94
+ search: {
95
+ autocorrect: "off",
96
+ role: "search",
97
+ type: "text"
98
+ },
99
+
100
+ number: {
101
+ type: "number",
102
+ step: "any"
103
+ },
104
+
105
+ tel: {
106
+ type: "tel",
107
+ placeholder: "Phone number"
108
+ },
109
+
110
+ url: {
111
+ type: "text",
112
+ placeholder: "Web address",
113
+ autocorrect: "off",
114
+ autocapitalize: "off",
115
+ spellcheck: "false",
116
+ pattern: ".+\\.[a-zA-Z]{2,}"
117
+ },
118
+
119
+ card_number: {
120
+ type: "text",
121
+ required: true,
122
+ pattern: "[0-9 -]{13,20}",
123
+ placeholder: "Credit Card Number",
124
+ data: {
125
+ stripe: "number",
126
+ message: "Please enter a valid credit card number."
127
+ }
128
+ },
129
+
130
+ card_month: {
131
+ type: "text",
132
+ required: true,
133
+ pattern: "0[1-9]|1[012]",
134
+ placeholder: "MM",
135
+ data: {
136
+ stripe: "exp_month",
137
+ message: "Please enter a valid expiration month."
138
+ }
139
+ },
140
+
141
+ card_year: {
142
+ type: "text",
143
+ required: true,
144
+ pattern: "[0-9]{4}",
145
+ placeholder: "YYYY",
146
+ data: {
147
+ stripe: "exp_year",
148
+ message: "Please enter a valid expiration year."
149
+ }
150
+ },
151
+
152
+ card_cvc: {
153
+ type: "text",
154
+ required: true,
155
+ pattern: "[0-9]{3,4}",
156
+ placeholder: "CVC",
157
+ data: {
158
+ stripe: "cvc",
159
+ message: "Please enter a valid security code."
160
+ }
161
+ }
162
+ }
163
+ end
@@ -0,0 +1,3 @@
1
+ module FleetioSpark
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,1442 @@
1
+ .inline-icon {
2
+ position: relative;
3
+ height: 1em;
4
+ display: -webkit-inline-box;
5
+ display: -ms-inline-flexbox;
6
+ display: inline-flex; }
7
+ .inline-icon svg {
8
+ position: relative;
9
+ bottom: -0.125em;
10
+ width: auto; }
11
+
12
+ svg {
13
+ fill: currentColor; }
14
+
15
+ *, *:after, *:before {
16
+ margin: 0;
17
+ padding: 0;
18
+ -webkit-box-sizing: border-box;
19
+ box-sizing: border-box; }
20
+
21
+ .hidden {
22
+ display: none; }
23
+
24
+ .app-layout {
25
+ display: -webkit-box;
26
+ display: -ms-flexbox;
27
+ display: flex;
28
+ -webkit-box-orient: vertical;
29
+ -webkit-box-direction: normal;
30
+ -ms-flex-direction: column;
31
+ flex-direction: column;
32
+ width: 100%;
33
+ position: relative; }
34
+ .app-layout main {
35
+ min-height: 100vh; }
36
+
37
+ @media all and (min-width: 1000px) {
38
+ .app-layout {
39
+ margin-left: 250px; }
40
+ .app-layout .app-nav-header {
41
+ left: 250px; }
42
+ .app-layout .sidebar-nav {
43
+ z-index: 1050; }
44
+ .app-layout .hide-sidebar .app-layout {
45
+ margin-left: 0; }
46
+ .app-layout .hide-sidebar .app-nav-header {
47
+ left: 0; }
48
+ .app-layout .hide-sidebar .sidebar-nav {
49
+ z-index: -1; } }
50
+
51
+ .app-container {
52
+ -webkit-box-flex: 1;
53
+ -ms-flex-positive: 1;
54
+ flex-grow: 1;
55
+ position: relative;
56
+ padding-top: 60px;
57
+ background-color: #F6F7F7; }
58
+
59
+ body {
60
+ display: -webkit-box;
61
+ display: -ms-flexbox;
62
+ display: flex;
63
+ min-height: 100%; }
64
+
65
+ @-webkit-keyframes fade-in {
66
+ 0% {
67
+ opacity: 0; }
68
+ 100% {
69
+ opacity: 1; } }
70
+
71
+ @keyframes fade-in {
72
+ 0% {
73
+ opacity: 0; }
74
+ 100% {
75
+ opacity: 1; } }
76
+ @-webkit-keyframes fade-out {
77
+ 0% {
78
+ opacity: 1; }
79
+ 100% {
80
+ opacity: 0; } }
81
+ @keyframes fade-out {
82
+ 0% {
83
+ opacity: 1; }
84
+ 100% {
85
+ opacity: 0; } }
86
+ @-webkit-keyframes slide-down {
87
+ 0% {
88
+ -webkit-transform: translateY(-100%);
89
+ transform: translateY(-100%); }
90
+ 100% {
91
+ -webkit-transform: translateY(0);
92
+ transform: translateY(0); } }
93
+ @keyframes slide-down {
94
+ 0% {
95
+ -webkit-transform: translateY(-100%);
96
+ transform: translateY(-100%); }
97
+ 100% {
98
+ -webkit-transform: translateY(0);
99
+ transform: translateY(0); } }
100
+ @-webkit-keyframes slide-bg-down {
101
+ 0% {
102
+ background-position: left bottom; }
103
+ 100% {
104
+ background-position: left top; } }
105
+ @keyframes slide-bg-down {
106
+ 0% {
107
+ background-position: left bottom; }
108
+ 100% {
109
+ background-position: left top; } }
110
+ @-webkit-keyframes slide-bg-up {
111
+ 0% {
112
+ background-position: left top; }
113
+ 100% {
114
+ background-position: left bottom; } }
115
+ @keyframes slide-bg-up {
116
+ 0% {
117
+ background-position: left top; }
118
+ 100% {
119
+ background-position: left bottom; } }
120
+ @-webkit-keyframes slide-up {
121
+ 0% {
122
+ -webkit-transform: translateY(0);
123
+ transform: translateY(0); }
124
+ 100% {
125
+ -webkit-transform: translateY(-100%);
126
+ transform: translateY(-100%); } }
127
+ @keyframes slide-up {
128
+ 0% {
129
+ -webkit-transform: translateY(0);
130
+ transform: translateY(0); }
131
+ 100% {
132
+ -webkit-transform: translateY(-100%);
133
+ transform: translateY(-100%); } }
134
+ @-webkit-keyframes modal-open {
135
+ 0% {
136
+ opacity: 0;
137
+ -webkit-transform: scale(0.97) perspective(300px);
138
+ transform: scale(0.97) perspective(300px); }
139
+ 20% {
140
+ opacity: 1; }
141
+ 100% {
142
+ opacity: 1;
143
+ -webkit-transform: scale(1) perspective(300px);
144
+ transform: scale(1) perspective(300px); } }
145
+ @keyframes modal-open {
146
+ 0% {
147
+ opacity: 0;
148
+ -webkit-transform: scale(0.97) perspective(300px);
149
+ transform: scale(0.97) perspective(300px); }
150
+ 20% {
151
+ opacity: 1; }
152
+ 100% {
153
+ opacity: 1;
154
+ -webkit-transform: scale(1) perspective(300px);
155
+ transform: scale(1) perspective(300px); } }
156
+ @-webkit-keyframes modal-close {
157
+ 0% {
158
+ opacity: 1;
159
+ -webkit-transform: scale(1) perspective(300px);
160
+ transform: scale(1) perspective(300px); }
161
+ 80% {
162
+ opacity: 0; }
163
+ 100% {
164
+ opacity: 0;
165
+ -webkit-transform: scale(0.97) perspective(300px);
166
+ transform: scale(0.97) perspective(300px); } }
167
+ @keyframes modal-close {
168
+ 0% {
169
+ opacity: 1;
170
+ -webkit-transform: scale(1) perspective(300px);
171
+ transform: scale(1) perspective(300px); }
172
+ 80% {
173
+ opacity: 0; }
174
+ 100% {
175
+ opacity: 0;
176
+ -webkit-transform: scale(0.97) perspective(300px);
177
+ transform: scale(0.97) perspective(300px); } }
178
+ @-webkit-keyframes dialog-open {
179
+ 0% {
180
+ opacity: 0;
181
+ -webkit-transform: translateY(-50px) scale(0.95) perspective(300px) rotateX(-3deg);
182
+ transform: translateY(-50px) scale(0.95) perspective(300px) rotateX(-3deg); }
183
+ 20% {
184
+ opacity: 1; }
185
+ 100% {
186
+ opacity: 1;
187
+ -webkit-transform: translateY(0) scale(1) perspective(300px) rotateX(0);
188
+ transform: translateY(0) scale(1) perspective(300px) rotateX(0); } }
189
+ @keyframes dialog-open {
190
+ 0% {
191
+ opacity: 0;
192
+ -webkit-transform: translateY(-50px) scale(0.95) perspective(300px) rotateX(-3deg);
193
+ transform: translateY(-50px) scale(0.95) perspective(300px) rotateX(-3deg); }
194
+ 20% {
195
+ opacity: 1; }
196
+ 100% {
197
+ opacity: 1;
198
+ -webkit-transform: translateY(0) scale(1) perspective(300px) rotateX(0);
199
+ transform: translateY(0) scale(1) perspective(300px) rotateX(0); } }
200
+ @-webkit-keyframes dialog-close {
201
+ 0% {
202
+ opacity: 1;
203
+ -webkit-transform: translateY(0px) scale(1) perspective(300px) rotateX(0deg);
204
+ transform: translateY(0px) scale(1) perspective(300px) rotateX(0deg); }
205
+ 80% {
206
+ opacity: 0; }
207
+ 100% {
208
+ opacity: 0;
209
+ -webkit-transform: translateY(-50px) scale(0.95) perspective(300px) rotateX(-3deg);
210
+ transform: translateY(-50px) scale(0.95) perspective(300px) rotateX(-3deg); } }
211
+ @keyframes dialog-close {
212
+ 0% {
213
+ opacity: 1;
214
+ -webkit-transform: translateY(0px) scale(1) perspective(300px) rotateX(0deg);
215
+ transform: translateY(0px) scale(1) perspective(300px) rotateX(0deg); }
216
+ 80% {
217
+ opacity: 0; }
218
+ 100% {
219
+ opacity: 0;
220
+ -webkit-transform: translateY(-50px) scale(0.95) perspective(300px) rotateX(-3deg);
221
+ transform: translateY(-50px) scale(0.95) perspective(300px) rotateX(-3deg); } }
222
+ @-webkit-keyframes fade-in-right {
223
+ 0% {
224
+ opacity: 0;
225
+ -webkit-transform: perspective(1px) translate3d(200px, 0, 0);
226
+ transform: perspective(1px) translate3d(200px, 0, 0); }
227
+ 100% {
228
+ opacity: 1;
229
+ -webkit-transform: perspective(1px) translate3d(0, 0, 0);
230
+ transform: perspective(1px) translate3d(0, 0, 0); } }
231
+ @keyframes fade-in-right {
232
+ 0% {
233
+ opacity: 0;
234
+ -webkit-transform: perspective(1px) translate3d(200px, 0, 0);
235
+ transform: perspective(1px) translate3d(200px, 0, 0); }
236
+ 100% {
237
+ opacity: 1;
238
+ -webkit-transform: perspective(1px) translate3d(0, 0, 0);
239
+ transform: perspective(1px) translate3d(0, 0, 0); } }
240
+ @-webkit-keyframes fade-out-left {
241
+ 0% {
242
+ opacity: 1;
243
+ -webkit-transform: perspective(1px) translate3d(0, 0, 0);
244
+ transform: perspective(1px) translate3d(0, 0, 0); }
245
+ 99% {
246
+ opacity: 0;
247
+ -webkit-transform: perspective(1px) translate3d(-200px, 0, 0);
248
+ transform: perspective(1px) translate3d(-200px, 0, 0); }
249
+ 100% {
250
+ opacity: 0;
251
+ -webkit-transform: perspective(1px) translate3d(-9999px, 0, 0);
252
+ transform: perspective(1px) translate3d(-9999px, 0, 0); } }
253
+ @keyframes fade-out-left {
254
+ 0% {
255
+ opacity: 1;
256
+ -webkit-transform: perspective(1px) translate3d(0, 0, 0);
257
+ transform: perspective(1px) translate3d(0, 0, 0); }
258
+ 99% {
259
+ opacity: 0;
260
+ -webkit-transform: perspective(1px) translate3d(-200px, 0, 0);
261
+ transform: perspective(1px) translate3d(-200px, 0, 0); }
262
+ 100% {
263
+ opacity: 0;
264
+ -webkit-transform: perspective(1px) translate3d(-9999px, 0, 0);
265
+ transform: perspective(1px) translate3d(-9999px, 0, 0); } }
266
+ @-webkit-keyframes fade-out-right {
267
+ 0% {
268
+ opacity: 1;
269
+ -webkit-transform: perspective(1px) translate3d(0, 0, 0);
270
+ transform: perspective(1px) translate3d(0, 0, 0); }
271
+ 99% {
272
+ opacity: 0;
273
+ -webkit-transform: perspective(1px) translate3d(200px, 0, 0);
274
+ transform: perspective(1px) translate3d(200px, 0, 0); }
275
+ 100% {
276
+ opacity: 0;
277
+ -webkit-transform: perspective(1px) translate3d(9999px, 0, 0);
278
+ transform: perspective(1px) translate3d(9999px, 0, 0); } }
279
+ @keyframes fade-out-right {
280
+ 0% {
281
+ opacity: 1;
282
+ -webkit-transform: perspective(1px) translate3d(0, 0, 0);
283
+ transform: perspective(1px) translate3d(0, 0, 0); }
284
+ 99% {
285
+ opacity: 0;
286
+ -webkit-transform: perspective(1px) translate3d(200px, 0, 0);
287
+ transform: perspective(1px) translate3d(200px, 0, 0); }
288
+ 100% {
289
+ opacity: 0;
290
+ -webkit-transform: perspective(1px) translate3d(9999px, 0, 0);
291
+ transform: perspective(1px) translate3d(9999px, 0, 0); } }
292
+ @-webkit-keyframes fade-in-left {
293
+ 0% {
294
+ opacity: 0;
295
+ -webkit-transform: perspective(1px) translate3d(-200px, 0, 0);
296
+ transform: perspective(1px) translate3d(-200px, 0, 0); }
297
+ 100% {
298
+ opacity: 1;
299
+ -webkit-transform: perspective(1px) translate3d(0, 0, 0);
300
+ transform: perspective(1px) translate3d(0, 0, 0); } }
301
+ @keyframes fade-in-left {
302
+ 0% {
303
+ opacity: 0;
304
+ -webkit-transform: perspective(1px) translate3d(-200px, 0, 0);
305
+ transform: perspective(1px) translate3d(-200px, 0, 0); }
306
+ 100% {
307
+ opacity: 1;
308
+ -webkit-transform: perspective(1px) translate3d(0, 0, 0);
309
+ transform: perspective(1px) translate3d(0, 0, 0); } }
310
+ body {
311
+ font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
312
+ font-size: 14px;
313
+ line-height: 1.5; }
314
+
315
+ .tick-input-label [type=checkbox], .tick-input-label [type=radio] {
316
+ position: absolute;
317
+ border: none;
318
+ cursor: pointer;
319
+ opacity: 0;
320
+ z-index: -1; }
321
+
322
+ .switch-label, .tick-label {
323
+ pointer-events: none; }
324
+ .switch-label *, .tick-label * {
325
+ pointer-events: all; }
326
+
327
+ [class*=-input-label] {
328
+ display: -webkit-box;
329
+ display: -ms-flexbox;
330
+ display: flex;
331
+ -webkit-box-orient: vertical;
332
+ -webkit-box-direction: normal;
333
+ -ms-flex-direction: column;
334
+ flex-direction: column;
335
+ position: relative;
336
+ -webkit-box-flex: 1;
337
+ -ms-flex: 1 0 auto;
338
+ flex: 1 0 auto;
339
+ -webkit-transition: background-color, -webkit-box-shadow;
340
+ transition: background-color, -webkit-box-shadow;
341
+ transition: box-shadow, background-color;
342
+ transition: box-shadow, background-color, -webkit-box-shadow;
343
+ -webkit-transition-duration: 0.2s;
344
+ transition-duration: 0.2s;
345
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
346
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
347
+ [class*=-input-label] *, [class*=-input-label] *:before, [class*=-input-label] *:after {
348
+ -webkit-transition-duration: 0.2s;
349
+ transition-duration: 0.2s;
350
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
351
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
352
+ [class*=-input-label] .input-label-text {
353
+ -webkit-transition-property: color, -webkit-box-shadow;
354
+ transition-property: color, -webkit-box-shadow;
355
+ transition-property: box-shadow, color;
356
+ transition-property: box-shadow, color, -webkit-box-shadow;
357
+ -webkit-transition-duration: 0.2s;
358
+ transition-duration: 0.2s;
359
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
360
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
361
+ padding-bottom: .4em;
362
+ font-size: 1.1em;
363
+ font-weight: 500; }
364
+ [class*=-input-label] .input-label-description {
365
+ color: #78858A;
366
+ font-size: 12px;
367
+ line-height: 1.3em;
368
+ padding-bottom: .8em; }
369
+ [class*=-input-label] .input-wrapper {
370
+ display: -webkit-box;
371
+ display: -ms-flexbox;
372
+ display: flex;
373
+ -webkit-box-align: center;
374
+ -ms-flex-align: center;
375
+ align-items: center; }
376
+ [class*=-input-label] .input-container {
377
+ -webkit-box-flex: 1;
378
+ -ms-flex-positive: 1;
379
+ flex-grow: 1; }
380
+
381
+ [class*=-input-label] textarea, [class*=-input-label] input[type=url], [class*=-input-label] input[type=tel], [class*=-input-label] input[type=text], [class*=-input-label] input[type=email], [class*=-input-label] input[type=number], [class*=-input-label] input[type=password], [class*=-input-label] input[type=search] {
382
+ -webkit-appearance: none;
383
+ -moz-appearance: none;
384
+ appearance: none;
385
+ border: none;
386
+ width: 100%;
387
+ background: none;
388
+ line-height: 1.4em;
389
+ padding: 8px 12px;
390
+ border-radius: 4px;
391
+ -webkit-transition: background-color, -webkit-box-shadow;
392
+ transition: background-color, -webkit-box-shadow;
393
+ transition: box-shadow, background-color;
394
+ transition: box-shadow, background-color, -webkit-box-shadow;
395
+ -webkit-transition-duration: 0.2s;
396
+ transition-duration: 0.2s;
397
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
398
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
399
+ [class*=-input-label] textarea::-webkit-input-placeholder, [class*=-input-label] input[type=url]::-webkit-input-placeholder, [class*=-input-label] input[type=tel]::-webkit-input-placeholder, [class*=-input-label] input[type=text]::-webkit-input-placeholder, [class*=-input-label] input[type=email]::-webkit-input-placeholder, [class*=-input-label] input[type=number]::-webkit-input-placeholder, [class*=-input-label] input[type=password]::-webkit-input-placeholder, [class*=-input-label] input[type=search]::-webkit-input-placeholder {
400
+ color: #636F73;
401
+ -webkit-transition: color;
402
+ transition: color;
403
+ -webkit-transition-duration: 0.2s;
404
+ transition-duration: 0.2s;
405
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
406
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
407
+ [class*=-input-label] textarea:-ms-input-placeholder, [class*=-input-label] input[type=url]:-ms-input-placeholder, [class*=-input-label] input[type=tel]:-ms-input-placeholder, [class*=-input-label] input[type=text]:-ms-input-placeholder, [class*=-input-label] input[type=email]:-ms-input-placeholder, [class*=-input-label] input[type=number]:-ms-input-placeholder, [class*=-input-label] input[type=password]:-ms-input-placeholder, [class*=-input-label] input[type=search]:-ms-input-placeholder {
408
+ color: #636F73;
409
+ -webkit-transition: color;
410
+ transition: color;
411
+ transition-duration: 0.2s;
412
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
413
+ [class*=-input-label] textarea::-ms-input-placeholder, [class*=-input-label] input[type=url]::-ms-input-placeholder, [class*=-input-label] input[type=tel]::-ms-input-placeholder, [class*=-input-label] input[type=text]::-ms-input-placeholder, [class*=-input-label] input[type=email]::-ms-input-placeholder, [class*=-input-label] input[type=number]::-ms-input-placeholder, [class*=-input-label] input[type=password]::-ms-input-placeholder, [class*=-input-label] input[type=search]::-ms-input-placeholder {
414
+ color: #636F73;
415
+ -webkit-transition: color;
416
+ transition: color;
417
+ transition-duration: 0.2s;
418
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
419
+ [class*=-input-label] textarea::placeholder, [class*=-input-label] input[type=url]::placeholder, [class*=-input-label] input[type=tel]::placeholder, [class*=-input-label] input[type=text]::placeholder, [class*=-input-label] input[type=email]::placeholder, [class*=-input-label] input[type=number]::placeholder, [class*=-input-label] input[type=password]::placeholder, [class*=-input-label] input[type=search]::placeholder {
420
+ color: #636F73;
421
+ -webkit-transition: color;
422
+ transition: color;
423
+ -webkit-transition-duration: 0.2s;
424
+ transition-duration: 0.2s;
425
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
426
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
427
+ [class*=-input-label] textarea::-webkit-input-placeholder, [class*=-input-label] input[type=url]::-webkit-input-placeholder, [class*=-input-label] input[type=tel]::-webkit-input-placeholder, [class*=-input-label] input[type=text]::-webkit-input-placeholder, [class*=-input-label] input[type=email]::-webkit-input-placeholder, [class*=-input-label] input[type=number]::-webkit-input-placeholder, [class*=-input-label] input[type=password]::-webkit-input-placeholder, [class*=-input-label] input[type=search]::-webkit-input-placeholder {
428
+ color: #636F73;
429
+ -webkit-transition: color;
430
+ transition: color;
431
+ -webkit-transition-duration: 0.2s;
432
+ transition-duration: 0.2s;
433
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
434
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
435
+ [class*=-input-label] textarea::-moz-placeholder, [class*=-input-label] input[type=url]::-moz-placeholder, [class*=-input-label] input[type=tel]::-moz-placeholder, [class*=-input-label] input[type=text]::-moz-placeholder, [class*=-input-label] input[type=email]::-moz-placeholder, [class*=-input-label] input[type=number]::-moz-placeholder, [class*=-input-label] input[type=password]::-moz-placeholder, [class*=-input-label] input[type=search]::-moz-placeholder {
436
+ color: #636F73;
437
+ -webkit-transition: color;
438
+ transition: color;
439
+ transition-duration: 0.2s;
440
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
441
+ opacity: 1; }
442
+ [class*=-input-label] textarea:-moz-placeholder, [class*=-input-label] input[type=url]:-moz-placeholder, [class*=-input-label] input[type=tel]:-moz-placeholder, [class*=-input-label] input[type=text]:-moz-placeholder, [class*=-input-label] input[type=email]:-moz-placeholder, [class*=-input-label] input[type=number]:-moz-placeholder, [class*=-input-label] input[type=password]:-moz-placeholder, [class*=-input-label] input[type=search]:-moz-placeholder {
443
+ color: #636F73;
444
+ -webkit-transition: color;
445
+ transition: color;
446
+ transition-duration: 0.2s;
447
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
448
+ opacity: 1; }
449
+ [class*=-input-label] textarea:-ms-input-placeholder, [class*=-input-label] input[type=url]:-ms-input-placeholder, [class*=-input-label] input[type=tel]:-ms-input-placeholder, [class*=-input-label] input[type=text]:-ms-input-placeholder, [class*=-input-label] input[type=email]:-ms-input-placeholder, [class*=-input-label] input[type=number]:-ms-input-placeholder, [class*=-input-label] input[type=password]:-ms-input-placeholder, [class*=-input-label] input[type=search]:-ms-input-placeholder {
450
+ color: #636F73;
451
+ -webkit-transition: color;
452
+ transition: color;
453
+ transition-duration: 0.2s;
454
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
455
+ [class*=-input-label] textarea:focus, [class*=-input-label] input[type=url]:focus, [class*=-input-label] input[type=tel]:focus, [class*=-input-label] input[type=text]:focus, [class*=-input-label] input[type=email]:focus, [class*=-input-label] input[type=number]:focus, [class*=-input-label] input[type=password]:focus, [class*=-input-label] input[type=search]:focus {
456
+ outline: none; }
457
+ [class*=-input-label] textarea:focus::-webkit-input-placeholder, [class*=-input-label] input[type=url]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=tel]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=text]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=email]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=number]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=password]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=search]:focus::-webkit-input-placeholder {
458
+ color: #B7BEC1; }
459
+ [class*=-input-label] textarea:focus:-ms-input-placeholder, [class*=-input-label] input[type=url]:focus:-ms-input-placeholder, [class*=-input-label] input[type=tel]:focus:-ms-input-placeholder, [class*=-input-label] input[type=text]:focus:-ms-input-placeholder, [class*=-input-label] input[type=email]:focus:-ms-input-placeholder, [class*=-input-label] input[type=number]:focus:-ms-input-placeholder, [class*=-input-label] input[type=password]:focus:-ms-input-placeholder, [class*=-input-label] input[type=search]:focus:-ms-input-placeholder {
460
+ color: #B7BEC1; }
461
+ [class*=-input-label] textarea:focus::-ms-input-placeholder, [class*=-input-label] input[type=url]:focus::-ms-input-placeholder, [class*=-input-label] input[type=tel]:focus::-ms-input-placeholder, [class*=-input-label] input[type=text]:focus::-ms-input-placeholder, [class*=-input-label] input[type=email]:focus::-ms-input-placeholder, [class*=-input-label] input[type=number]:focus::-ms-input-placeholder, [class*=-input-label] input[type=password]:focus::-ms-input-placeholder, [class*=-input-label] input[type=search]:focus::-ms-input-placeholder {
462
+ color: #B7BEC1; }
463
+ [class*=-input-label] textarea:focus::placeholder, [class*=-input-label] input[type=url]:focus::placeholder, [class*=-input-label] input[type=tel]:focus::placeholder, [class*=-input-label] input[type=text]:focus::placeholder, [class*=-input-label] input[type=email]:focus::placeholder, [class*=-input-label] input[type=number]:focus::placeholder, [class*=-input-label] input[type=password]:focus::placeholder, [class*=-input-label] input[type=search]:focus::placeholder {
464
+ color: #B7BEC1; }
465
+ [class*=-input-label] textarea:focus::-webkit-input-placeholder, [class*=-input-label] input[type=url]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=tel]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=text]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=email]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=number]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=password]:focus::-webkit-input-placeholder, [class*=-input-label] input[type=search]:focus::-webkit-input-placeholder {
466
+ color: #B7BEC1; }
467
+ [class*=-input-label] textarea:focus::-moz-placeholder, [class*=-input-label] input[type=url]:focus::-moz-placeholder, [class*=-input-label] input[type=tel]:focus::-moz-placeholder, [class*=-input-label] input[type=text]:focus::-moz-placeholder, [class*=-input-label] input[type=email]:focus::-moz-placeholder, [class*=-input-label] input[type=number]:focus::-moz-placeholder, [class*=-input-label] input[type=password]:focus::-moz-placeholder, [class*=-input-label] input[type=search]:focus::-moz-placeholder {
468
+ color: #B7BEC1;
469
+ opacity: 1; }
470
+ [class*=-input-label] textarea:focus:-moz-placeholder, [class*=-input-label] input[type=url]:focus:-moz-placeholder, [class*=-input-label] input[type=tel]:focus:-moz-placeholder, [class*=-input-label] input[type=text]:focus:-moz-placeholder, [class*=-input-label] input[type=email]:focus:-moz-placeholder, [class*=-input-label] input[type=number]:focus:-moz-placeholder, [class*=-input-label] input[type=password]:focus:-moz-placeholder, [class*=-input-label] input[type=search]:focus:-moz-placeholder {
471
+ color: #B7BEC1;
472
+ opacity: 1; }
473
+ [class*=-input-label] textarea:focus:-ms-input-placeholder, [class*=-input-label] input[type=url]:focus:-ms-input-placeholder, [class*=-input-label] input[type=tel]:focus:-ms-input-placeholder, [class*=-input-label] input[type=text]:focus:-ms-input-placeholder, [class*=-input-label] input[type=email]:focus:-ms-input-placeholder, [class*=-input-label] input[type=number]:focus:-ms-input-placeholder, [class*=-input-label] input[type=password]:focus:-ms-input-placeholder, [class*=-input-label] input[type=search]:focus:-ms-input-placeholder {
474
+ color: #B7BEC1; }
475
+ [class*=-input-label] textarea::-ms-clear, [class*=-input-label] input[type=url]::-ms-clear, [class*=-input-label] input[type=tel]::-ms-clear, [class*=-input-label] input[type=text]::-ms-clear, [class*=-input-label] input[type=email]::-ms-clear, [class*=-input-label] input[type=number]::-ms-clear, [class*=-input-label] input[type=password]::-ms-clear, [class*=-input-label] input[type=search]::-ms-clear {
476
+ display: none;
477
+ width: 0;
478
+ height: 0; }
479
+
480
+ .check-switch {
481
+ cursor: pointer;
482
+ -webkit-box-orient: horizontal;
483
+ -webkit-box-direction: normal;
484
+ -ms-flex-direction: row;
485
+ flex-direction: row;
486
+ -webkit-box-align: center;
487
+ -ms-flex-align: center;
488
+ align-items: center; }
489
+ .check-switch .check-switch-panel {
490
+ width: 40px;
491
+ height: 22px; }
492
+ .check-switch .check-switch-tick {
493
+ width: 18px;
494
+ height: 18px;
495
+ border-radius: 22px; }
496
+ .check-switch .check-switch-panel {
497
+ border-radius: 22px; }
498
+ .check-switch input:checked + .check-switch-panel .check-switch-tick {
499
+ -webkit-transform: translate3d(18px, 0, 0);
500
+ transform: translate3d(18px, 0, 0); }
501
+ .check-switch input:checked:focus ~ .check-switch-panel .check-switch-tick, .check-switch input:checked:active ~ .check-switch-panel .check-switch-tick {
502
+ -webkit-transform: scale(1.1) translate3d(16px, 0, 0);
503
+ transform: scale(1.1) translate3d(16px, 0, 0); }
504
+ .check-switch .label-text {
505
+ margin-right: 10px;
506
+ padding-bottom: 0;
507
+ line-height: 1.5em; }
508
+ .check-switch-label {
509
+ position: absolute;
510
+ color: transparent;
511
+ font-size: 0; }
512
+ .check-switch-panel {
513
+ background: rgba(38, 44, 45, 0.1);
514
+ position: relative;
515
+ -webkit-transition-property: background, border-color, -webkit-box-shadow;
516
+ transition-property: background, border-color, -webkit-box-shadow;
517
+ transition-property: background, box-shadow, border-color;
518
+ transition-property: background, box-shadow, border-color, -webkit-box-shadow;
519
+ -webkit-box-shadow: 0 0 0 1px rgba(38, 44, 45, 0.1) inset, 0 0 0 transparent;
520
+ box-shadow: 0 0 0 1px rgba(38, 44, 45, 0.1) inset, 0 0 0 transparent; }
521
+ .check-switch-tick {
522
+ background: #FFFFFF;
523
+ position: absolute;
524
+ bottom: 2px;
525
+ left: 2px;
526
+ -webkit-transition-property: -webkit-transform;
527
+ transition-property: -webkit-transform;
528
+ transition-property: transform;
529
+ transition-property: transform, -webkit-transform;
530
+ -webkit-transform: translate3d(0, 0, 0);
531
+ transform: translate3d(0, 0, 0);
532
+ -webkit-box-shadow: 0 1px 4px rgba(38, 44, 45, 0.4);
533
+ box-shadow: 0 1px 4px rgba(38, 44, 45, 0.4);
534
+ font-weight: 500; }
535
+ .check-switch input {
536
+ opacity: 0;
537
+ position: absolute; }
538
+ .check-switch input:focus ~ .check-switch-panel, .check-switch input:active ~ .check-switch-panel {
539
+ background: rgba(38, 44, 45, 0.2); }
540
+ .check-switch input:focus ~ .check-switch-panel .check-switch-tick, .check-switch input:active ~ .check-switch-panel .check-switch-tick {
541
+ -webkit-transform: scale(1.1);
542
+ transform: scale(1.1); }
543
+ input:checked + .check-switch-panel {
544
+ background: #0091E6; }
545
+ .check-switch input:checked:focus ~ .check-switch-panel, .check-switch input:checked:active ~ .check-switch-panel {
546
+ background: #008bdc;
547
+ -webkit-box-shadow: 0 0 0 1px #007FD0 inset, 0 0 0 transparent;
548
+ box-shadow: 0 0 0 1px #007FD0 inset, 0 0 0 transparent; }
549
+ .check-switch.small .check-switch-panel {
550
+ width: 32px;
551
+ height: 16px; }
552
+ .check-switch.small .check-switch-tick {
553
+ width: 14px;
554
+ height: 12px;
555
+ border-radius: 16px; }
556
+ .check-switch.small .check-switch-panel {
557
+ border-radius: 16px; }
558
+ .check-switch.small input:checked + .check-switch-panel .check-switch-tick {
559
+ -webkit-transform: translate3d(14px, 0, 0);
560
+ transform: translate3d(14px, 0, 0); }
561
+ .check-switch.small input:checked:focus ~ .check-switch-panel .check-switch-tick, .check-switch.small input:checked:active ~ .check-switch-panel .check-switch-tick {
562
+ -webkit-transform: scale(1.1) translate3d(12px, 0, 0);
563
+ transform: scale(1.1) translate3d(12px, 0, 0); }
564
+ .check-switch.expanded .label-text {
565
+ margin-right: auto; }
566
+
567
+ .modal-panel {
568
+ border-radius: 5px;
569
+ border: 1px solid rgba(0, 0, 0, 0.2);
570
+ background: #FFFFFF;
571
+ -webkit-box-shadow: 0px 12px 14px -7px rgba(0, 0, 0, 0.12), 0px 24px 40px 3px rgba(0, 0, 0, 0.08), 0px 10px 48px 10px rgba(0, 0, 0, 0.1);
572
+ box-shadow: 0px 12px 14px -7px rgba(0, 0, 0, 0.12), 0px 24px 40px 3px rgba(0, 0, 0, 0.08), 0px 10px 48px 10px rgba(0, 0, 0, 0.1);
573
+ position: absolute;
574
+ left: 0;
575
+ right: 0; }
576
+ .modal-panel[aria-hidden=true] {
577
+ display: none; }
578
+ .modal-panel[aria-hidden=false] {
579
+ z-index: 1000; }
580
+ .modal-panel-header, .modal-panel-footer {
581
+ padding: 8px 16px;
582
+ font-size: 11px;
583
+ color: #78858A; }
584
+ .modal-panel-header {
585
+ display: -webkit-box;
586
+ display: -ms-flexbox;
587
+ display: flex;
588
+ padding: 16px 16px 8px;
589
+ border-bottom: 1px solid #D3D9DB;
590
+ margin-bottom: -1px;
591
+ position: relative;
592
+ z-index: 2; }
593
+ .modal-panel-header [data-stack-nav] {
594
+ -ms-flex-item-align: start;
595
+ align-self: flex-start;
596
+ width: 0;
597
+ overflow: visible;
598
+ white-space: pre;
599
+ -webkit-box-ordinal-group: 0;
600
+ -ms-flex-order: -1;
601
+ order: -1;
602
+ color: inherit;
603
+ line-height: 1.1em;
604
+ text-decoration: none; }
605
+ .modal-panel-header [data-stack-nav]:hover, .modal-panel-header [data-stack-nav]:focus {
606
+ color: #0091E6;
607
+ outline: none; }
608
+ .modal-panel-title {
609
+ text-transform: uppercase;
610
+ font-size: 11px;
611
+ font-weight: normal;
612
+ margin: 0 auto; }
613
+ .modal-panel-footer {
614
+ border-top: 1px solid rgba(0, 0, 0, 0.1); }
615
+ .modal-panel [aria-hidden=true] {
616
+ height: 0;
617
+ overflow: hidden; }
618
+
619
+ .modal-is-opening {
620
+ -webkit-animation: modal-open 0.2s cubic-bezier(0.4, 0, 0.2, 1);
621
+ animation: modal-open 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
622
+
623
+ .modal-is-closing {
624
+ -webkit-animation: modal-close 0.2s cubic-bezier(0.4, 0, 0.2, 1);
625
+ animation: modal-close 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
626
+
627
+ .nav-menu[aria-hidden=true] {
628
+ height: 0; }
629
+ .modal-panel .nav-menu {
630
+ max-height: 80vh;
631
+ overflow-y: auto; }
632
+ .nav-menu-group {
633
+ list-style: none;
634
+ margin: 0;
635
+ border: 1px solid rgba(0, 0, 0, 0.1);
636
+ border-left-color: transparent;
637
+ border-right-color: transparent; }
638
+ .nav-menu-group > *:last-child .nav-menu-item-content {
639
+ border-bottom-color: transparent; }
640
+ .nav-menu-group:last-child {
641
+ border-bottom-color: transparent; }
642
+ .nav-menu-header {
643
+ display: -webkit-box;
644
+ display: -ms-flexbox;
645
+ display: flex;
646
+ padding: 16px 16px 8px;
647
+ background: #F6F7F7; }
648
+ .nav-menu-header .nav-menu-title {
649
+ margin: 0;
650
+ text-transform: uppercase;
651
+ font-size: 11px;
652
+ font-weight: normal; }
653
+ .nav-menu-wrapper {
654
+ display: -webkit-box;
655
+ display: -ms-flexbox;
656
+ display: flex; }
657
+ .nav-menu-item {
658
+ background: #FFFFFF;
659
+ padding-left: 16px;
660
+ text-decoration: none;
661
+ color: inherit;
662
+ display: -webkit-box;
663
+ display: -ms-flexbox;
664
+ display: flex;
665
+ width: 100%; }
666
+ .nav-menu-item-content {
667
+ padding: 8px;
668
+ padding-left: 0;
669
+ -webkit-box-flex: 1;
670
+ -ms-flex-positive: 1;
671
+ flex-grow: 1;
672
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
673
+ .nav-menu-item:hover, .nav-menu-item:focus {
674
+ background-color: #d8eefc;
675
+ outline: none;
676
+ position: relative;
677
+ z-index: 1;
678
+ -webkit-box-shadow: 0 0 0 1px #d8eefc;
679
+ box-shadow: 0 0 0 1px #d8eefc; }
680
+ .nav-menu-item:hover .nav-menu-item-content, .nav-menu-item:focus .nav-menu-item-content {
681
+ border-color: transparent; }
682
+ .nav-menu-more {
683
+ color: #4EB3EF;
684
+ font-size: 12px; }
685
+
686
+ [data-stack='root'] {
687
+ overflow: hidden; }
688
+
689
+ .enter[data-direction=forward] nav {
690
+ -webkit-animation: fade-in-right .12s forwards;
691
+ animation: fade-in-right .12s forwards; }
692
+ .enter[data-direction=reverse] nav {
693
+ -webkit-animation: fade-in-left .12s forwards;
694
+ animation: fade-in-left .12s forwards; }
695
+ .enter .modal-panel-header * {
696
+ -webkit-animation: fade-in .12s forwards;
697
+ animation: fade-in .12s forwards; }
698
+
699
+ .exit[data-direction=forward] nav {
700
+ -webkit-animation: fade-out-left .12s forwards;
701
+ animation: fade-out-left .12s forwards; }
702
+ .exit[data-direction=reverse] nav {
703
+ -webkit-animation: fade-out-right .12s forwards;
704
+ animation: fade-out-right .12s forwards; }
705
+ .exit .modal-panel-header * {
706
+ -webkit-animation: fade-out .12s forwards;
707
+ animation: fade-out .12s forwards; }
708
+
709
+ .sidebar-nav {
710
+ height: 100%;
711
+ background-color: #00467A;
712
+ position: fixed;
713
+ width: 250px;
714
+ top: 0;
715
+ left: 0;
716
+ height: 100%;
717
+ -webkit-font-smoothing: antialiased;
718
+ -moz-osx-font-smoothing: grayscale; }
719
+ .sidebar-nav .nav-wrapper {
720
+ position: relative;
721
+ width: auto;
722
+ height: 100%; }
723
+ .sidebar-nav .nav-tree {
724
+ list-style: none;
725
+ overflow: auto;
726
+ position: absolute;
727
+ top: 0;
728
+ left: 0;
729
+ right: 0;
730
+ bottom: 0;
731
+ margin: 0;
732
+ padding: 0 0 76px; }
733
+ .sidebar-nav .nav-tree-item-icon {
734
+ -ms-flex-negative: 0;
735
+ flex-shrink: 0;
736
+ width: 18px;
737
+ height: 18px; }
738
+ .sidebar-nav .nav-tree-item-icon + .nav-tree-item-content {
739
+ margin-left: 16px; }
740
+ .sidebar-nav .nav-tree-item-content {
741
+ border: none; }
742
+ .sidebar-nav .nav-tree-item {
743
+ display: -webkit-box;
744
+ display: -ms-flexbox;
745
+ display: flex;
746
+ -webkit-box-align: center;
747
+ -ms-flex-align: center;
748
+ align-items: center;
749
+ position: relative;
750
+ background-color: transparent;
751
+ color: rgba(255, 255, 255, 0.8);
752
+ padding: 9px 20px;
753
+ text-decoration: none;
754
+ font-size: 14px;
755
+ font-weight: 500;
756
+ -webkit-transition: color 0.1s cubic-bezier(0.4, 0, 0.2, 1);
757
+ transition: color 0.1s cubic-bezier(0.4, 0, 0.2, 1); }
758
+ .sidebar-nav .nav-tree-item:hover, .sidebar-nav .nav-tree-item:focus {
759
+ color: #FFFFFF;
760
+ outline: none;
761
+ background-color: #004c84; }
762
+ .sidebar-nav .nav-tree-item:hover .expand-icon, .sidebar-nav .nav-tree-item:focus .expand-icon {
763
+ color: inherit; }
764
+ .sidebar-nav .nav-tree-item .expand-icon {
765
+ display: -webkit-box;
766
+ display: -ms-flexbox;
767
+ display: flex;
768
+ -ms-flex-negative: 0;
769
+ flex-shrink: 0;
770
+ height: 9px;
771
+ width: 9px;
772
+ -webkit-transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
773
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
774
+ color: rgba(255, 255, 255, 0.5); }
775
+ .sidebar-nav .nav-tree-item.active {
776
+ color: #FFFFFF;
777
+ background-color: #003d6b; }
778
+ .sidebar-nav .nav-tree-item.active + .nav-tree-group {
779
+ background-color: #003d6b; }
780
+ .sidebar-nav .nav-tree-item-content {
781
+ width: 100%;
782
+ min-width: 0;
783
+ white-space: nowrap;
784
+ text-overflow: ellipsis;
785
+ overflow: hidden; }
786
+ .sidebar-nav .nav-tree-group {
787
+ list-style: none;
788
+ opacity: 0; }
789
+ .sidebar-nav .nav-tree-group .nav-tree-item {
790
+ padding: 4px;
791
+ padding-left: 54px;
792
+ color: rgba(255, 255, 255, 0.55);
793
+ font-size: 13px; }
794
+ .sidebar-nav .nav-tree-group .nav-tree-item:hover, .sidebar-nav .nav-tree-group .nav-tree-item:focus {
795
+ color: #FFFFFF;
796
+ background-color: transparent; }
797
+ .sidebar-nav .nav-tree-group .active {
798
+ color: #FFFFFF; }
799
+ .sidebar-nav .nav-tree-group .new:before, .sidebar-nav .nav-tree-group .active:before {
800
+ content: "";
801
+ position: absolute;
802
+ display: block;
803
+ z-index: 1;
804
+ left: 26px;
805
+ top: 10px;
806
+ width: 6px;
807
+ height: 6px;
808
+ border-radius: 50%; }
809
+ .sidebar-nav .nav-tree-group .new:before {
810
+ background-color: #F2AA2A; }
811
+ .sidebar-nav .nav-tree-group .new .nav-tree-item-content:after {
812
+ content: " New";
813
+ font-size: 85%;
814
+ letter-spacing: .02em;
815
+ color: #F2AA2A;
816
+ margin-left: 2px; }
817
+ .sidebar-nav .nav-tree-group .active:before {
818
+ background-color: #0091E6; }
819
+ .sidebar-nav .triggered .nav-tree-group {
820
+ -webkit-transition-property: max-height, opacity, padding;
821
+ transition-property: max-height, opacity, padding;
822
+ -webkit-transition-duration: 0.2s;
823
+ transition-duration: 0.2s;
824
+ -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
825
+ transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }
826
+ .sidebar-nav [aria-expanded=true] > .nav-tree-group {
827
+ max-height: 800px;
828
+ opacity: 1;
829
+ padding: 2px 0 8px;
830
+ -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
831
+ transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }
832
+
833
+ .sidebar-nav-header > a {
834
+ display: -webkit-box;
835
+ display: -ms-flexbox;
836
+ display: flex;
837
+ -webkit-box-flex: 1;
838
+ -ms-flex: 1;
839
+ flex: 1;
840
+ -webkit-box-align: center;
841
+ -ms-flex-align: center;
842
+ align-items: center;
843
+ color: #FFFFFF;
844
+ height: 60px;
845
+ padding: 0 20px;
846
+ text-decoration: none;
847
+ -webkit-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
848
+ transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
849
+ background-color: #003d6b;
850
+ line-height: 1.4; }
851
+ .sidebar-nav-header > a:hover, .sidebar-nav-header > a:focus {
852
+ color: #FFFFFF;
853
+ background-color: #00345b; }
854
+ .sidebar-nav-header > a:hover .dropdown-icon, .sidebar-nav-header > a:focus .dropdown-icon {
855
+ color: inherit; }
856
+ .sidebar-nav-header .dropdown-icon {
857
+ margin: 0 8px;
858
+ color: rgba(255, 255, 255, 0.5);
859
+ -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
860
+ transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
861
+ .sidebar-nav-header .details {
862
+ display: -webkit-box;
863
+ display: -ms-flexbox;
864
+ display: flex;
865
+ -webkit-box-orient: vertical;
866
+ -webkit-box-direction: normal;
867
+ -ms-flex-direction: column;
868
+ flex-direction: column;
869
+ margin-right: auto;
870
+ line-height: 1.5;
871
+ padding-right: 8px; }
872
+ .sidebar-nav-header .details, .sidebar-nav-header .details * {
873
+ white-space: nowrap;
874
+ overflow: hidden;
875
+ min-width: 0;
876
+ text-overflow: ellipsis; }
877
+ .sidebar-nav-header .details .account-name {
878
+ font-weight: 700; }
879
+ .sidebar-nav-header .details .user-name {
880
+ font-size: 12px;
881
+ opacity: .75;
882
+ font-weight: 500; }
883
+ .sidebar-nav-header .user-avatar img {
884
+ width: 100%;
885
+ max-width: none;
886
+ vertical-align: middle;
887
+ border-radius: 50%;
888
+ width: 32px;
889
+ height: 32px; }
890
+ .sidebar-nav-header .dropdown-menu {
891
+ border: 1px solid transparent;
892
+ max-height: 85vh;
893
+ overflow-y: auto;
894
+ min-width: 260px;
895
+ -webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.12), 0px 16px 24px 2px rgba(0, 0, 0, 0.08), 0px 6px 32px 6px rgba(0, 0, 0, 0.1);
896
+ box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.12), 0px 16px 24px 2px rgba(0, 0, 0, 0.08), 0px 6px 32px 6px rgba(0, 0, 0, 0.1);
897
+ border-radius: 6px;
898
+ margin-top: -4px;
899
+ margin-left: 16px;
900
+ padding: 12px 8px; }
901
+ .sidebar-nav-header .dropdown-menu .divider {
902
+ margin: 8px; }
903
+ .sidebar-nav-header .dropdown-menu .divider.full-width {
904
+ margin-left: -8px;
905
+ margin-right: -8px; }
906
+ .sidebar-nav-header .dropdown-menu .user-name {
907
+ padding: 0 8px;
908
+ margin: 12px 0; }
909
+ .sidebar-nav-header .dropdown-menu .user-avatar {
910
+ width: 40px;
911
+ height: 40px; }
912
+ .sidebar-nav-header .dropdown-menu > li > a, .sidebar-nav-header .dropdown-menu > li > label {
913
+ font-size: 14px;
914
+ border-radius: 3px;
915
+ padding: 5px 8px 6px;
916
+ margin-bottom: 0;
917
+ color: #3A4245; }
918
+ .sidebar-nav-header .dropdown-menu > li i {
919
+ font-size: 16px;
920
+ margin-right: 12px; }
921
+ .sidebar-nav-header .dropdown-menu > li .pull-right i {
922
+ font-size: 14px;
923
+ margin-right: 0; }
924
+
925
+ [role=tree] [role=group] {
926
+ overflow: hidden; }
927
+ [role=tree] [role=treeitem][aria-expanded=false] > [role=group] {
928
+ max-height: 0; }
929
+ [role=tree] [role=treeitem][aria-expanded=true] .expand-icon {
930
+ -webkit-transform: rotate(180deg);
931
+ transform: rotate(180deg); }
932
+
933
+ .has-tooltip {
934
+ cursor: pointer; }
935
+ .has-tooltip:before, .has-tooltip:after {
936
+ opacity: 0;
937
+ -webkit-transition: none;
938
+ transition: none; }
939
+ .has-tooltip:before {
940
+ content: ""; }
941
+ .has-tooltip:after {
942
+ content: attr(aria-label);
943
+ font-size: 0; }
944
+
945
+ .has-tooltip:focus, .has-tooltip:hover {
946
+ position: relative;
947
+ z-index: 1; }
948
+ .has-tooltip:focus:before, .has-tooltip:focus:after, .has-tooltip:hover:before, .has-tooltip:hover:after {
949
+ opacity: 1;
950
+ position: absolute;
951
+ left: 50%;
952
+ -webkit-transform: translate3d(-50%, 0, 0);
953
+ transform: translate3d(-50%, 0, 0);
954
+ z-index: 100000;
955
+ pointer-events: none;
956
+ -webkit-animation: fade-in .2s ease-in;
957
+ animation: fade-in .2s ease-in;
958
+ -webkit-animation-fill-mode: forwards;
959
+ animation-fill-mode: forwards; }
960
+ .has-tooltip:focus:after, .has-tooltip:hover:after {
961
+ -webkit-font-smoothing: subpixel-antialiased;
962
+ top: calc(100% + 6px);
963
+ background-color: rgba(0, 0, 0, 0.8);
964
+ color: #fff;
965
+ white-space: nowrap;
966
+ font-size: 10px;
967
+ line-height: 1.5em;
968
+ padding: 5px 8px;
969
+ border-radius: 4px; }
970
+ .has-tooltip:focus:before, .has-tooltip:hover:before {
971
+ top: 100%;
972
+ content: ""; }
973
+
974
+ .app-nav-header {
975
+ display: -webkit-box;
976
+ display: -ms-flexbox;
977
+ display: flex;
978
+ -webkit-box-align: center;
979
+ -ms-flex-align: center;
980
+ align-items: center;
981
+ height: 60px;
982
+ border-bottom: 1px solid #D3D9DB;
983
+ background-color: #FFFFFF;
984
+ padding: 0 16px;
985
+ position: fixed;
986
+ z-index: 1040;
987
+ top: 0;
988
+ right: 0;
989
+ left: 0; }
990
+ @media all and (min-width: 600px) {
991
+ .app-nav-header {
992
+ padding: 0 24px; } }
993
+ .app-nav-header .sidebar-nav-toggle {
994
+ display: -webkit-box;
995
+ display: -ms-flexbox;
996
+ display: flex;
997
+ -webkit-box-pack: center;
998
+ -ms-flex-pack: center;
999
+ justify-content: center;
1000
+ -webkit-box-align: center;
1001
+ -ms-flex-align: center;
1002
+ align-items: center;
1003
+ width: 32px;
1004
+ height: 32px;
1005
+ border-radius: 50%;
1006
+ text-align: center;
1007
+ -ms-flex-negative: 0;
1008
+ flex-shrink: 0;
1009
+ color: #78858A;
1010
+ margin-left: -8px;
1011
+ margin-right: 16px;
1012
+ -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1013
+ transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
1014
+ .app-nav-header .sidebar-nav-toggle:hover {
1015
+ color: #4E595C;
1016
+ border-radius: 50%;
1017
+ background-color: #EDF1F2; }
1018
+ .app-nav-header .app-navbar-logo {
1019
+ display: -webkit-box;
1020
+ display: -ms-flexbox;
1021
+ display: flex;
1022
+ margin-right: 16px; }
1023
+ @media all and (min-width: 600px) {
1024
+ .app-nav-header .app-navbar-logo {
1025
+ margin-right: 24px; } }
1026
+ .app-nav-header .dropdown-menu {
1027
+ border: 1px solid transparent;
1028
+ max-height: 85vh;
1029
+ overflow-y: auto;
1030
+ min-width: 260px;
1031
+ -webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.12), 0px 16px 24px 2px rgba(0, 0, 0, 0.08), 0px 6px 32px 6px rgba(0, 0, 0, 0.1);
1032
+ box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.12), 0px 16px 24px 2px rgba(0, 0, 0, 0.08), 0px 6px 32px 6px rgba(0, 0, 0, 0.1);
1033
+ border-radius: 6px;
1034
+ margin-top: 8px;
1035
+ margin-right: -8px;
1036
+ padding: 12px 8px;
1037
+ font-size: 14px; }
1038
+ .app-nav-header .dropdown-menu .divider {
1039
+ margin: 8px; }
1040
+ .app-nav-header .dropdown-menu > li > a {
1041
+ border-radius: 3px;
1042
+ padding: 5px 8px 6px; }
1043
+ .app-nav-header .dropdown-menu > li i {
1044
+ font-size: 16px;
1045
+ margin-right: 12px; }
1046
+ .app-nav-header .dropdown-menu > li .pull-right i {
1047
+ font-size: 14px;
1048
+ margin-right: 0; }
1049
+
1050
+ .app-nav-actions {
1051
+ display: -webkit-box;
1052
+ display: -ms-flexbox;
1053
+ display: flex;
1054
+ -webkit-box-align: center;
1055
+ -ms-flex-align: center;
1056
+ align-items: center;
1057
+ margin-left: auto; }
1058
+ .modal-active + .app-nav-actions {
1059
+ position: absolute;
1060
+ right: 24px;
1061
+ z-index: -1; }
1062
+ .app-nav-actions > .dropdown {
1063
+ margin: 0 8px; }
1064
+ .app-nav-actions > .dropdown:last-of-type {
1065
+ margin-right: 0; }
1066
+ .app-nav-actions .dropdown-menu {
1067
+ left: auto;
1068
+ right: 0; }
1069
+ .app-nav-actions .quick-add-btn, .app-nav-actions .help-menu-btn {
1070
+ display: -webkit-box;
1071
+ display: -ms-flexbox;
1072
+ display: flex;
1073
+ -webkit-box-pack: center;
1074
+ -ms-flex-pack: center;
1075
+ justify-content: center;
1076
+ -webkit-box-align: center;
1077
+ -ms-flex-align: center;
1078
+ align-items: center;
1079
+ width: 32px;
1080
+ height: 32px;
1081
+ border-radius: 50%;
1082
+ text-align: center;
1083
+ color: #78858A;
1084
+ border: 1px solid #D3D9DB;
1085
+ -webkit-transition-property: color, border-color;
1086
+ transition-property: color, border-color;
1087
+ -webkit-transition-duration: 0.2s;
1088
+ transition-duration: 0.2s;
1089
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1090
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
1091
+ .app-nav-actions .quick-add-btn:hover, .app-nav-actions .quick-add-btn:focus, .app-nav-actions .help-menu-btn:hover, .app-nav-actions .help-menu-btn:focus {
1092
+ color: #4E595C;
1093
+ border-color: #A2ABAE; }
1094
+ .app-nav-actions .help-menu-btn.new-announcements:before {
1095
+ content: '';
1096
+ display: block;
1097
+ position: absolute;
1098
+ width: 9px;
1099
+ height: 9px;
1100
+ border-radius: 50%;
1101
+ top: 0;
1102
+ right: 0;
1103
+ background-color: #F2AA2A;
1104
+ -webkit-box-shadow: 0 0 0 2px #FFFFFF;
1105
+ box-shadow: 0 0 0 2px #FFFFFF;
1106
+ z-index: 10; }
1107
+ .app-nav-actions .help-menu-btn + .dropdown-menu .new-announcements {
1108
+ font-weight: 500;
1109
+ color: #F2AA2A; }
1110
+ .app-nav-actions .help-menu-btn + .dropdown-menu .new-announcements:hover, .app-nav-actions .help-menu-btn + .dropdown-menu .new-announcements:focus {
1111
+ color: #F2AA2A;
1112
+ background-color: #FFFAEE; }
1113
+ .app-nav-actions .help-menu-btn + .dropdown-menu .new-announcements .badge-dot i {
1114
+ color: inherit;
1115
+ font-size: 10px;
1116
+ margin-right: 2px; }
1117
+
1118
+ .app-admin-header {
1119
+ display: -webkit-box;
1120
+ display: -ms-flexbox;
1121
+ display: flex;
1122
+ -webkit-box-align: center;
1123
+ -ms-flex-align: center;
1124
+ align-items: center;
1125
+ height: 39px;
1126
+ background-color: #FFE8AF;
1127
+ border-top: 3px solid #CC5E10;
1128
+ border-bottom: 1px solid #FFD571;
1129
+ padding: 0 16px;
1130
+ position: fixed;
1131
+ z-index: 1050;
1132
+ top: 0;
1133
+ right: 0;
1134
+ left: 0;
1135
+ color: #CC5E10;
1136
+ font-size: 12px; }
1137
+ .app-admin-header ~ * {
1138
+ top: 39px; }
1139
+ .app-admin-header ~ .app-container {
1140
+ min-height: calc(100vh - 39px); }
1141
+ .app-admin-header ~ .sidebar-nav .nav-wrapper {
1142
+ height: calc(100% - 39px); }
1143
+ .app-admin-header .admin-user {
1144
+ display: -webkit-inline-box;
1145
+ display: -ms-inline-flexbox;
1146
+ display: inline-flex;
1147
+ -webkit-box-align: center;
1148
+ -ms-flex-align: center;
1149
+ align-items: center;
1150
+ min-width: 0; }
1151
+ .app-admin-header .admin-user .icon {
1152
+ margin-right: 8px;
1153
+ -ms-flex-negative: 0;
1154
+ flex-shrink: 0; }
1155
+ .app-admin-header .admin-user strong {
1156
+ margin-right: 4px;
1157
+ font-weight: 600; }
1158
+ .app-admin-header .admin-user span {
1159
+ white-space: nowrap;
1160
+ overflow: hidden;
1161
+ text-overflow: ellipsis; }
1162
+ .app-admin-header .actions {
1163
+ margin-left: auto; }
1164
+ .app-admin-header .actions > a {
1165
+ color: inherit;
1166
+ margin-left: 8px;
1167
+ text-decoration: none; }
1168
+ @media all and (min-width: 420px) {
1169
+ .app-admin-header .actions > a {
1170
+ margin-left: 16px; } }
1171
+ .app-admin-header .actions .back-to-admin {
1172
+ padding: 4px 8px;
1173
+ background-color: #FFD571;
1174
+ border-radius: 3px;
1175
+ -webkit-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1176
+ transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1177
+ white-space: nowrap; }
1178
+ .app-admin-header .actions .back-to-admin:hover {
1179
+ background-color: #FFCC52; }
1180
+ .app-admin-header .actions .close-admin-header {
1181
+ display: none;
1182
+ padding: 4px; }
1183
+ @media all and (min-width: 420px) {
1184
+ .app-admin-header .actions .close-admin-header {
1185
+ display: inline-block; } }
1186
+
1187
+ .trial-status {
1188
+ display: none;
1189
+ -ms-flex-negative: 0;
1190
+ flex-shrink: 0;
1191
+ white-space: nowrap;
1192
+ -webkit-box-align: center;
1193
+ -ms-flex-align: center;
1194
+ align-items: center;
1195
+ font-size: 12px;
1196
+ color: #6C66C9; }
1197
+ .trial-status .trial-status-link {
1198
+ font-weight: 500;
1199
+ text-decoration: none;
1200
+ color: inherit;
1201
+ background-color: transparent;
1202
+ padding: 2px 8px;
1203
+ border-radius: 3px;
1204
+ border: 1px solid #CECBF5;
1205
+ margin-left: 8px;
1206
+ -webkit-transition-property: background-color, border-color;
1207
+ transition-property: background-color, border-color;
1208
+ -webkit-transition-duration: 0.2s;
1209
+ transition-duration: 0.2s;
1210
+ -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1211
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
1212
+ .trial-status .trial-status-link:hover, .trial-status .trial-status-link:focus {
1213
+ background-color: #F5F4FD;
1214
+ border-color: #BBB6F1; }
1215
+ @media all and (min-width: 600px) {
1216
+ .trial-status {
1217
+ display: -webkit-box;
1218
+ display: -ms-flexbox;
1219
+ display: flex;
1220
+ margin-right: 16px; } }
1221
+ .trial-status.trial-ending-soon {
1222
+ color: #F2AA2A;
1223
+ background-color: #FFF1CF; }
1224
+ .trial-status.trial-ended {
1225
+ color: #EA352B;
1226
+ background-color: #FFF0EF; }
1227
+
1228
+ .search-panel {
1229
+ width: 100%;
1230
+ background: #FFFFFF;
1231
+ margin-right: 16px;
1232
+ -webkit-transform-style: preserve-3d;
1233
+ transform-style: preserve-3d;
1234
+ -webkit-transform: translateZ(0);
1235
+ transform: translateZ(0); }
1236
+ .search-panel .modal-is-opening {
1237
+ -webkit-animation: fade-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
1238
+ animation: fade-in 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
1239
+ .search-panel .modal-is-closing {
1240
+ -webkit-animation-duration: 0.1s;
1241
+ animation-duration: 0.1s; }
1242
+ .search-panel.modal-active {
1243
+ position: absolute;
1244
+ left: 16px;
1245
+ width: calc( 100% - 32px );
1246
+ margin-right: 0; }
1247
+ .search-panel.modal-active label {
1248
+ border-color: transparent;
1249
+ border-radius: 5px; }
1250
+ @media all and (min-width: 600px) {
1251
+ .search-panel {
1252
+ margin-right: 24px; } }
1253
+ @media all and (min-width: 800px) {
1254
+ .search-panel {
1255
+ max-width: 450px;
1256
+ position: relative;
1257
+ -webkit-transition: max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1258
+ transition: max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
1259
+ .search-panel.modal-active {
1260
+ position: relative;
1261
+ max-width: 900px;
1262
+ left: 0;
1263
+ right: 0; }
1264
+ .search-panel .modal-is-closing {
1265
+ -webkit-animation: fade-out 0.1s cubic-bezier(0.4, 0, 0.2, 1);
1266
+ animation: fade-out 0.1s cubic-bezier(0.4, 0, 0.2, 1); } }
1267
+ .search-panel label {
1268
+ display: -webkit-box;
1269
+ display: -ms-flexbox;
1270
+ display: flex;
1271
+ -webkit-box-pack: center;
1272
+ -ms-flex-pack: center;
1273
+ justify-content: center;
1274
+ position: relative;
1275
+ z-index: 1001;
1276
+ border: 1px solid #D3D9DB;
1277
+ border-radius: 32px;
1278
+ padding: 0 12px;
1279
+ -webkit-transition: border cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
1280
+ transition: border cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
1281
+ background: none;
1282
+ margin: 0; }
1283
+ .search-panel input {
1284
+ font-size: 15px; }
1285
+ .search-panel .clear-search {
1286
+ background: none;
1287
+ border: none;
1288
+ -webkit-appearance: none;
1289
+ -moz-appearance: none;
1290
+ appearance: none;
1291
+ color: transparent;
1292
+ cursor: pointer;
1293
+ position: relative;
1294
+ width: 15px;
1295
+ padding: 4px 8px;
1296
+ opacity: 0;
1297
+ -webkit-transition: opacity cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
1298
+ transition: opacity cubic-bezier(0.4, 0, 0.2, 1) 0.2s; }
1299
+ .search-panel .clear-search:after, .search-panel .clear-search:before {
1300
+ content: "";
1301
+ position: absolute;
1302
+ top: 50%;
1303
+ right: 50%;
1304
+ display: block;
1305
+ width: 15px;
1306
+ height: 2px;
1307
+ background: #D3D9DB;
1308
+ -webkit-transition: background-color cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
1309
+ transition: background-color cubic-bezier(0.4, 0, 0.2, 1) 0.2s; }
1310
+ .search-panel .clear-search:before {
1311
+ -webkit-transform: translate(50%, -50%) rotate(-45deg);
1312
+ transform: translate(50%, -50%) rotate(-45deg); }
1313
+ .search-panel .clear-search:after {
1314
+ -webkit-transform: translate(50%, -50%) rotate(45deg);
1315
+ transform: translate(50%, -50%) rotate(45deg); }
1316
+ .search-panel .clear-search:hover:after, .search-panel .clear-search:hover:before {
1317
+ background: #78858A; }
1318
+ .search-panel.modal-active .clear-search {
1319
+ opacity: 1; }
1320
+ .search-panel select {
1321
+ -webkit-appearance: none;
1322
+ -moz-appearance: none;
1323
+ appearance: none;
1324
+ border: none;
1325
+ padding: 0 12px;
1326
+ cursor: pointer;
1327
+ background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 20'%3E%3Cpolygon fill='%237A7B7C' points='3.5,14 0,8 7,8'/%3E%3C/svg%3E") calc(100% - 14px) 50%/7px 18px no-repeat; }
1328
+ .search-panel .modal-panel {
1329
+ -webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.12), 0px 16px 24px 2px rgba(0, 0, 0, 0.08), 0px 6px 32px 6px rgba(0, 0, 0, 0.1);
1330
+ box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.12), 0px 16px 24px 2px rgba(0, 0, 0, 0.08), 0px 6px 32px 6px rgba(0, 0, 0, 0.1);
1331
+ background: #FFFFFF;
1332
+ border-radius: 8px;
1333
+ padding-top: 38px;
1334
+ top: 1px;
1335
+ left: -4px;
1336
+ right: -4px; }
1337
+ .search-panel .modal-panel:before {
1338
+ content: "";
1339
+ position: absolute;
1340
+ left: 0;
1341
+ top: 37px;
1342
+ right: 0;
1343
+ height: 15px;
1344
+ z-index: 1;
1345
+ border-top: 1px solid #D3D9DB; }
1346
+ .search-panel .modal-panel-header {
1347
+ background: #F6F7F7; }
1348
+ .search-panel .svg-search {
1349
+ width: 14px;
1350
+ height: 14px;
1351
+ fill: #78858A;
1352
+ position: relative;
1353
+ top: .1em;
1354
+ -webkit-transform-style: preserve-3d; }
1355
+ .search-panel kbd {
1356
+ display: inline-block;
1357
+ height: 18px;
1358
+ line-height: 18px;
1359
+ padding: 0 4px;
1360
+ text-align: center;
1361
+ border: 1px solid #D3D9DB;
1362
+ border-radius: 4px;
1363
+ background: #fff;
1364
+ position: relative;
1365
+ color: inherit;
1366
+ -webkit-box-shadow: none;
1367
+ box-shadow: none;
1368
+ font-size: inherit; }
1369
+ .search-panel kbd:after {
1370
+ position: absolute;
1371
+ content: "";
1372
+ top: 3px;
1373
+ border-radius: 4px;
1374
+ left: -1px;
1375
+ right: -1px;
1376
+ z-index: -1;
1377
+ bottom: -3px;
1378
+ border: 1px solid #D3D9DB; }
1379
+
1380
+ @-webkit-keyframes search-open {
1381
+ 0% {
1382
+ opacity: 0;
1383
+ -webkit-transform: translateY(-10px) perspective(300px);
1384
+ transform: translateY(-10px) perspective(300px); }
1385
+ 20% {
1386
+ opacity: 1; }
1387
+ 100% {
1388
+ opacity: 1;
1389
+ -webkit-transform: translateY(0px) perspective(300px);
1390
+ transform: translateY(0px) perspective(300px); } }
1391
+
1392
+ @keyframes search-open {
1393
+ 0% {
1394
+ opacity: 0;
1395
+ -webkit-transform: translateY(-10px) perspective(300px);
1396
+ transform: translateY(-10px) perspective(300px); }
1397
+ 20% {
1398
+ opacity: 1; }
1399
+ 100% {
1400
+ opacity: 1;
1401
+ -webkit-transform: translateY(0px) perspective(300px);
1402
+ transform: translateY(0px) perspective(300px); } }
1403
+ @-webkit-keyframes search-close {
1404
+ 0% {
1405
+ opacity: 1;
1406
+ -webkit-transform: translateY(0px) perspective(300px);
1407
+ transform: translateY(0px) perspective(300px); }
1408
+ 80% {
1409
+ opacity: 0; }
1410
+ 100% {
1411
+ opacity: 0;
1412
+ -webkit-transform: translateY(-10px) perspective(300px);
1413
+ transform: translateY(-10px) perspective(300px); } }
1414
+ @keyframes search-close {
1415
+ 0% {
1416
+ opacity: 1;
1417
+ -webkit-transform: translateY(0px) perspective(300px);
1418
+ transform: translateY(0px) perspective(300px); }
1419
+ 80% {
1420
+ opacity: 0; }
1421
+ 100% {
1422
+ opacity: 0;
1423
+ -webkit-transform: translateY(-10px) perspective(300px);
1424
+ transform: translateY(-10px) perspective(300px); } }
1425
+ .search-result {
1426
+ color: #3A4245;
1427
+ line-height: 1.1em; }
1428
+ .search-result-heading {
1429
+ font-size: 14px;
1430
+ font-weight: 500;
1431
+ margin-bottom: 5px; }
1432
+ .search-result-body {
1433
+ font-size: 12px; }
1434
+ .search-result-meta {
1435
+ font-size: 12px;
1436
+ color: #8D989C; }
1437
+ .search-result mark {
1438
+ color: #1d4e71;
1439
+ background-color: rgba(156, 213, 247, 0.45);
1440
+ padding: 0 2px;
1441
+ margin: 0 -1px;
1442
+ border-radius: 2px; }