Version Description
2020/Aug/28 =
TWEAK: Archives the "Thank you" dashboard notice for now
TWEAK: Limits loading admin specific code from the front end
TWEAK: Switches to a new CI and build process (report any issues to our support channel)
TWEAK: Adds extra permission_callback check to settings routes
SECURITY: Adds extra filtering of captions using HTML Purifier (http://htmlpurifier.org/). Reminder: Only users with
edit_others_posts
capability can edit slideshows, which is a role that may be added by third party plugins (ex. Shop Managers from WooCommerce have this role). If you need to limit who can edit your slideshows, then you can update this with the filtermetaslider_capability
, for example tomanage_options
. Contact us in support for more information.
Download this release
Release Info
Developer | metaslider |
Plugin | MetaSlider |
Version | 3.17.2 |
Comparing to | |
See all releases |
Code changes from version 3.17.1 to 3.17.2
- admin/Gutenberg.php +89 -85
- admin/Notices.php +413 -500
- admin/Pages.php +181 -148
- admin/assets/css/admin-3-17-1.css +0 -1
admin/Gutenberg.php
CHANGED
@@ -1,112 +1,116 @@
|
|
1 |
<?php
|
2 |
-
if (!defined('ABSPATH'))
|
|
|
|
|
3 |
|
4 |
/**
|
5 |
* Adds a MetaSlider block to Gutenberg
|
6 |
*/
|
7 |
-
class MetaSlider_Gutenberg
|
|
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
$version = MetaSliderPlugin::get_instance()->version;
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
'plugin_page' => admin_url('admin.php?page=metaslider')
|
36 |
-
));
|
37 |
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
'before'
|
47 |
-
);
|
48 |
-
|
49 |
-
// Enqueue optional editor only styles
|
50 |
-
wp_enqueue_style(
|
51 |
-
'metaslider-blocks-editor-css',
|
52 |
-
plugins_url('assets/css/gutenberg/editor-block-' . sanitize_title(METASLIDER_VERSION) . '.css', __FILE__),
|
53 |
-
array('wp-block-library'),
|
54 |
-
$version
|
55 |
-
);
|
56 |
-
|
57 |
-
}
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
body, html {
|
69 |
overflow: hidden;
|
70 |
height: auto;
|
71 |
margin:0;
|
72 |
padding:0;
|
73 |
box-sizing: border-box;
|
74 |
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
75 |
font-size: 14px;
|
76 |
}
|
77 |
.metaslider {
|
78 |
margin: 0 auto;
|
79 |
}
|
80 |
<?php
|
81 |
-
|
82 |
-
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
|
|
|
|
90 |
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
'domain' => $domain,
|
99 |
-
'lang' => is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale(),
|
100 |
-
),
|
101 |
-
);
|
102 |
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
}
|
1 |
<?php
|
2 |
+
if (!defined('ABSPATH')) {
|
3 |
+
die('No direct access.');
|
4 |
+
}
|
5 |
|
6 |
/**
|
7 |
* Adds a MetaSlider block to Gutenberg
|
8 |
*/
|
9 |
+
class MetaSlider_Gutenberg
|
10 |
+
{
|
11 |
|
12 |
+
/**
|
13 |
+
* Init
|
14 |
+
*/
|
15 |
+
public function __construct()
|
16 |
+
{
|
17 |
+
add_action('enqueue_block_editor_assets', array($this,'enqueue_block_scripts'));
|
18 |
+
if (isset($_REQUEST['override_preview_style']) && filter_var($_REQUEST['override_preview_style'], FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE)) {
|
19 |
+
add_filter('metaslider_preview_styles', array($this, 'preview_styles'));
|
20 |
+
}
|
21 |
+
}
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Enqueues gutenberg scripts
|
25 |
+
*/
|
26 |
+
public function enqueue_block_scripts()
|
27 |
+
{
|
28 |
+
$version = MetaSliderPlugin::get_instance()->version;
|
29 |
+
|
30 |
+
// Enqueue the bundled block JS file
|
31 |
+
wp_enqueue_script(
|
32 |
+
'metaslider-blocks',
|
33 |
+
plugins_url('assets/dist/js/editor-block-' . sanitize_title(METASLIDER_VERSION) . '.js', __FILE__),
|
34 |
+
array('wp-i18n', 'wp-element', 'wp-block-library', 'wp-components', 'wp-api'),
|
35 |
+
$version
|
36 |
+
);
|
37 |
|
38 |
+
wp_localize_script('metaslider-blocks', 'metaslider_block_config', array(
|
39 |
+
'preview_url' => add_query_arg('ms_gutenberg_preview', 1, set_url_scheme(home_url())),
|
40 |
+
'plugin_page' => admin_url('admin.php?page=metaslider')
|
41 |
+
));
|
|
|
42 |
|
43 |
+
/*
|
44 |
+
* gutenberg_get_jed_locale_data uses WP function get_translations_for_domain,
|
45 |
+
* which can be usefull if we want to use wp.18n.__ in the rest of the plugin.
|
46 |
+
*/
|
47 |
+
$locale_data = $this->gutenberg_get_jed_locale_data('ml-slider');
|
48 |
+
wp_add_inline_script(
|
49 |
+
'metaslider-blocks',
|
50 |
+
'wp.i18n.setLocaleData(' . json_encode($locale_data) . ', \'ml-slider\');',
|
51 |
+
'before'
|
52 |
+
);
|
|
|
|
|
53 |
|
54 |
+
// Enqueue optional editor only styles
|
55 |
+
wp_enqueue_style(
|
56 |
+
'metaslider-blocks-editor-css',
|
57 |
+
plugins_url('assets/dist/css/editor-block-' . sanitize_title(METASLIDER_VERSION) . '.css', __FILE__),
|
58 |
+
array('wp-block-library'),
|
59 |
+
$version
|
60 |
+
);
|
61 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
+
/**
|
64 |
+
* Preview styles
|
65 |
+
*
|
66 |
+
* @param string $styles The preview styles
|
67 |
+
* @return string
|
68 |
+
*/
|
69 |
+
public function preview_styles($styles)
|
70 |
+
{
|
71 |
+
ob_start(); ?>
|
72 |
body, html {
|
73 |
overflow: hidden;
|
74 |
height: auto;
|
75 |
margin:0;
|
76 |
padding:0;
|
77 |
box-sizing: border-box;
|
78 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
79 |
font-size: 14px;
|
80 |
}
|
81 |
.metaslider {
|
82 |
margin: 0 auto;
|
83 |
}
|
84 |
<?php
|
85 |
+
return ob_get_clean();
|
86 |
+
}
|
87 |
|
88 |
+
/**
|
89 |
+
* Backup function for Gutenberg's gutenberg_get_jed_locale_data
|
90 |
+
*
|
91 |
+
* @param string $domain - The text domain for the strings
|
92 |
+
*/
|
93 |
+
private function gutenberg_get_jed_locale_data($domain)
|
94 |
+
{
|
95 |
+
if (function_exists('gutenberg_get_jed_locale_data')) {
|
96 |
+
return gutenberg_get_jed_locale_data($domain);
|
97 |
+
}
|
98 |
|
99 |
+
$translations = get_translations_for_domain($domain);
|
100 |
+
$locale = array(
|
101 |
+
'' => array(
|
102 |
+
'domain' => $domain,
|
103 |
+
'lang' => is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale(),
|
104 |
+
),
|
105 |
+
);
|
|
|
|
|
|
|
|
|
106 |
|
107 |
+
if (!empty($translations->headers['Plural-Forms'])) {
|
108 |
+
$locale['']['plural_forms'] = $translations->headers['Plural-Forms'];
|
109 |
+
}
|
110 |
|
111 |
+
foreach ($translations->entries as $msgid => $entry) {
|
112 |
+
$locale[$msgid] = $entry->translations;
|
113 |
+
}
|
114 |
+
return $locale;
|
115 |
+
}
|
116 |
}
|
admin/Notices.php
CHANGED
@@ -1,375 +1,272 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
if (!defined('ABSPATH'))
|
|
|
|
|
4 |
|
5 |
-
if (!class_exists('Updraft_Notices_1_0'))
|
|
|
|
|
6 |
|
7 |
/**
|
8 |
* Meta Slider Notices
|
9 |
*/
|
10 |
-
class MetaSlider_Notices extends Updraft_Notices_1_0
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
protected $ads;
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
|
|
|
|
42 |
$this->ads = metaslider_pro_is_installed() ? $this->pro_notices() : $this->lite_notices();
|
43 |
-
|
44 |
// To avoid showing the user ads off the start, lets wait
|
45 |
$this->notices_content = ($this->ad_delay_has_finished()) ? $this->ads : array();
|
46 |
|
47 |
// If $notices_content is empty, we still want to offer seasonal ads
|
48 |
if (empty($this->notices_content) && !metaslider_pro_is_installed()) {
|
49 |
$this->notices_content = $this->valid_seasonal_notices();
|
50 |
-
|
51 |
-
|
52 |
add_action('admin_enqueue_scripts', array($this, 'add_notice_assets'));
|
53 |
add_action('wp_ajax_notice_handler', array($this, 'ajax_notice_handler'));
|
54 |
add_action('admin_notices', array($this, 'show_dashboard_notices'));
|
55 |
-
|
56 |
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
62 |
wp_localize_script('jquery', 'metaslider_notices', array(
|
63 |
'handle_notices_nonce' => wp_create_nonce('metaslider_handle_notices_nonce')
|
64 |
));
|
65 |
-
|
66 |
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
|
|
|
|
|
|
71 |
|
72 |
-
|
73 |
* Returns notices that free/lite users should see. dismiss_time should match the key
|
74 |
* hide_time is in weeks. Use a string to hide for 9999 weeks.
|
75 |
*
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
'supported_positions' => array('header'),
|
129 |
-
),
|
130 |
-
'pro_layers' => array(
|
131 |
-
'title' => __('Spice up your site with animated layers and video slides', 'ml-slider'),
|
132 |
-
'text' => _x('With the MetaSlider Add-on pack you can give your slideshows a professional look!', 'Keep the plugin name "MetaSlider" when possible', 'ml-slider'),
|
133 |
-
'image' => 'metaslider_logo.png',
|
134 |
-
'button_link' => 'metaslider',
|
135 |
-
'button_meta' => 'ml-slider',
|
136 |
-
'dismiss_time' => 'pro_layers',
|
137 |
-
'hide_time' => 12,
|
138 |
-
'supported_positions' => array('header'),
|
139 |
-
),
|
140 |
-
'pro_features' => array(
|
141 |
-
'title' => __('Increase your revenue and conversion with video slides and many more features', 'ml-slider'),
|
142 |
-
'text' => __('Upgrade today to benefit from many more premium features. Find out more.', 'ml-slider'),
|
143 |
-
'image' => 'metaslider_logo.png',
|
144 |
-
'button_link' => 'metaslider',
|
145 |
-
'button_meta' => 'ml-slider',
|
146 |
-
'dismiss_time' => 'pro_features',
|
147 |
-
'hide_time' => 12,
|
148 |
-
'supported_positions' => array('header'),
|
149 |
-
),
|
150 |
-
'translation' => array(
|
151 |
-
'title' => __('Can you translate? Want to improve MetaSlider for speakers of your language?', 'ml-slider'),
|
152 |
-
'text' => __('Please go here for instructions - it is easy.', 'ml-slider'),
|
153 |
-
'image' => 'metaslider_logo.png',
|
154 |
-
'button_link' => 'metaslider_translate',
|
155 |
-
'button_meta' => 'lets_start',
|
156 |
-
'dismiss_time' => 'translation',
|
157 |
-
'hide_time' => 12,
|
158 |
-
'supported_positions' => array('header'),
|
159 |
-
'validity_function' => 'translation_needed',
|
160 |
-
),
|
161 |
-
'thankyou' => array(
|
162 |
-
'title' => _x('Thank you for installing MetaSlider', 'Keep the plugin name "MetaSlider" when possible', 'ml-slider'),
|
163 |
-
'text' => __('Supercharge & secure your WordPress site with our other top plugins:', 'ml-slider'),
|
164 |
-
'image' => 'metaslider_logo_large.png',
|
165 |
-
'dismiss_time' => 'thankyou',
|
166 |
-
'hide_time' => 52,
|
167 |
-
'mega' => true,
|
168 |
-
'supported_positions' => array('dashboard'),
|
169 |
-
),
|
170 |
), $this->valid_seasonal_notices());
|
171 |
}
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
*
|
176 |
-
|
177 |
-
|
178 |
-
protected function pro_notices()
|
|
|
|
|
179 |
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
return (!defined('METASLIDER_FORCE_PRO_NOTICES')) ? $this->lite_notices() : array();
|
184 |
-
}
|
185 |
|
186 |
return array();
|
187 |
}
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
* An empty string for 'hide_time' will show "Dismiss" instead of "Dismiss (12 weeks)"
|
192 |
* Each year the key and dismiss time should be updated
|
193 |
*
|
194 |
-
|
195 |
-
|
196 |
-
protected function seasonal_notices()
|
197 |
-
|
198 |
-
|
199 |
if (defined('METASLIDER_DISABLE_SEASONAL_NOTICES') && METASLIDER_DISABLE_SEASONAL_NOTICES) {
|
200 |
return array();
|
201 |
-
|
202 |
-
|
203 |
-
$coupons = json_decode(file_get_contents(METASLIDER_PATH .'seasonal-discounts.json'), true);
|
204 |
|
|
|
205 |
$coupon_object = array(
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
'hide_time' => '',
|
213 |
-
'supported_positions' => array('header', 'dashboard'),
|
214 |
-
),
|
215 |
-
'christmas' => array(
|
216 |
-
'title' => _x('Christmas sale - 20% off the MetaSlider Add-on Pack until December 25th', 'Keep the phrase "MetaSlider Add-on Pack" when possible', 'ml-slider'),
|
217 |
-
'text' => __('To benefit, use this discount code:', 'ml-slider').' ',
|
218 |
-
'image' => 'seasonal/christmas.png',
|
219 |
-
'button_link' => 'metaslider',
|
220 |
-
'button_meta' => 'ml-slider',
|
221 |
'hide_time' => '',
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
'hide_time' => '',
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
'hide_time' => '',
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
'hide_time' => '',
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
'button_meta' => 'collection',
|
257 |
-
'hide_time' => '',
|
258 |
-
'supported_positions' => array('header', 'dashboard'),
|
259 |
-
)
|
260 |
-
);
|
261 |
-
|
262 |
-
return array_map(array($this, 'prepare_notice_fields'), array_merge_recursive($coupon_object, $coupons));
|
263 |
-
}
|
264 |
-
|
265 |
-
/**
|
266 |
-
* Add fields needed for an notice to show
|
267 |
-
*
|
268 |
-
* @param string $notice - the name of the notice
|
269 |
-
* @return array
|
270 |
-
*/
|
271 |
-
public function prepare_notice_fields($notice) {
|
272 |
-
if (!isset($notice['dismiss_time'])) {
|
273 |
-
$notice['dismiss_time'] = $notice['discount_code'];
|
274 |
-
}
|
275 |
-
return $notice;
|
276 |
-
}
|
277 |
-
|
278 |
-
/**
|
279 |
-
* These appear inside a mega ad.
|
280 |
-
*
|
281 |
-
* @return string
|
282 |
-
*/
|
283 |
-
protected function mega_notice_parts() {
|
284 |
-
return array(
|
285 |
-
'ms_pro' => array(
|
286 |
-
'title' => _x('MetaSlider Add-on Pack:', 'Keep the phrase "MetaSlider Add-on Pack" when possible', 'ml-slider'),
|
287 |
-
'text' => __('Increase your conversion rate with video slides and many more options.', 'ml-slider'),
|
288 |
-
'image' => '',
|
289 |
-
'button_link' => 'metaslider',
|
290 |
'button_meta' => 'ml-slider',
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
'text' => __('simplifies backups and restoration. It is the world\'s highest ranking and most popular scheduled backup plugin, with over a million currently-active installs.', 'ml-slider'),
|
295 |
-
'image' => '',
|
296 |
-
'button_link' => 'updraftplus_wordpress',
|
297 |
-
'button_meta' => 'updraftplus',
|
298 |
-
),
|
299 |
-
'wpo' => array(
|
300 |
-
'title' => _x('WP-Optimize', 'Keep the plugin name "WP-Optimize" when possible', 'ml-slider'),
|
301 |
-
'text' => __('auto-clean your WordPress database so that it runs at maximum efficiency.', 'ml-slider'),
|
302 |
-
'image' => '',
|
303 |
-
'button_link' => 'wp_optimize_wordpress',
|
304 |
-
'button_meta' => 'wp-optimize',
|
305 |
-
),
|
306 |
-
'updraftcentral' => array(
|
307 |
-
'title' => _x('UpdraftCentral', 'Keep the plugin name "UpdraftCentral" when possible', 'ml-slider'),
|
308 |
-
'text' => __('is a highly efficient way to manage, update and backup multiple websites from one place.', 'ml-slider'),
|
309 |
-
'image' => '',
|
310 |
-
'button_link' => 'updraftcentral',
|
311 |
-
'button_meta' => 'updraftcentral',
|
312 |
-
),
|
313 |
);
|
|
|
|
|
314 |
}
|
315 |
|
316 |
-
|
317 |
-
|
318 |
*
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
|
|
|
|
|
|
|
|
|
|
323 |
}
|
324 |
|
325 |
-
|
326 |
-
|
327 |
*
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
|
|
|
|
|
|
332 |
}
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
*
|
337 |
-
* @return bool
|
338 |
-
*/
|
339 |
-
protected function is_updraftcentral_installed() {
|
340 |
-
return parent::is_plugin_installed('updraftcentral', false);
|
341 |
-
}
|
342 |
-
|
343 |
-
/**
|
344 |
-
* Checks if the user agent isn't set as en_GB or en_US, and if the language file doesn't exist
|
345 |
-
*
|
346 |
-
* @param string $plugin_base_dir The plguin base directory
|
347 |
-
* @param string $product_name Product name
|
348 |
-
* @return bool
|
349 |
-
*/
|
350 |
-
protected function translation_needed($plugin_base_dir = null, $product_name = null) {
|
351 |
-
return parent::translation_needed(METASLIDER_PATH, 'ml-slider');
|
352 |
-
}
|
353 |
-
|
354 |
-
/**
|
355 |
-
* This method checks to see if the ad has been dismissed
|
356 |
*
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
|
|
365 |
}
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
*
|
370 |
-
|
371 |
-
|
372 |
-
|
|
|
373 |
$valid = array();
|
374 |
$time_now = time();
|
375 |
// $time_now = strtotime('2020-11-20 00:00:01'); // Black Friday
|
@@ -377,7 +274,10 @@ class MetaSlider_Notices extends Updraft_Notices_1_0 {
|
|
377 |
// $time_now = strtotime('2020-12-26 00:00:01'); // NY
|
378 |
// $time_now = strtotime('2020-04-01 00:00:01'); // Spring
|
379 |
// $time_now = strtotime('2020-07-01 00:00:01'); // Summer
|
380 |
-
foreach($this->seasonal_notices() as $ad_identifier => $notice) {
|
|
|
|
|
|
|
381 |
$valid_from = strtotime($notice['valid_from']);
|
382 |
$valid_to = strtotime($notice['valid_to']);
|
383 |
if ($valid_from < $time_now && $time_now <= $valid_to) {
|
@@ -388,45 +288,47 @@ class MetaSlider_Notices extends Updraft_Notices_1_0 {
|
|
388 |
}
|
389 |
|
390 |
/**
|
391 |
-
|
392 |
* the seasonal notices. Overrides parent function
|
393 |
*
|
394 |
* @param array $notice_data Notice data
|
395 |
-
|
396 |
-
|
397 |
-
protected function skip_seasonal_notices($notice_data)
|
|
|
398 |
return !$this->check_notice_dismissed($notice_data['dismiss_time']);
|
399 |
}
|
400 |
|
401 |
-
|
402 |
-
|
403 |
*
|
404 |
-
|
405 |
-
|
406 |
-
|
|
|
407 |
global $pagenow;
|
408 |
$page = isset($_GET['page']) ? $_GET['page'] : '';
|
409 |
|
410 |
// I'm thinking to limit the check to the actual settings page for now
|
411 |
// This way, if they activate the plugin but don't start using it until
|
412 |
// a few weeks after, it won't bother them with ads.
|
413 |
-
|
414 |
-
|
415 |
}
|
416 |
|
417 |
-
|
418 |
* This method checks to see if the ad waiting period is over (2 weeks)
|
419 |
* If not, it will set a two week time
|
420 |
*
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
|
431 |
if (metaslider_pro_is_installed()) {
|
432 |
|
@@ -447,7 +349,7 @@ class MetaSlider_Notices extends Updraft_Notices_1_0 {
|
|
447 |
|
448 |
// Set the delay for when they will first see an ad, 2 weeks; returns false
|
449 |
return !update_option("ms_hide_all_ads_until", time() + 2*7*86400);
|
450 |
-
}
|
451 |
|
452 |
// Serve ads now, and note the time they first saw ads
|
453 |
update_option("ms_ads_first_seen_on", time());
|
@@ -457,148 +359,154 @@ class MetaSlider_Notices extends Updraft_Notices_1_0 {
|
|
457 |
$notices = $this->lite_notices();
|
458 |
$this->ads = array('rate_plugin' => $notices['rate_plugin']);
|
459 |
return true;
|
460 |
-
}
|
461 |
|
462 |
// This means an ad was dismissed and there's a delay
|
463 |
return false;
|
464 |
-
}
|
465 |
|
466 |
-
// This means the initial delay has elapsed,
|
467 |
// and the dismissed period expired
|
468 |
return true;
|
469 |
}
|
470 |
|
471 |
// Default to not show an ad, in case there's some error
|
472 |
-
|
473 |
}
|
474 |
-
|
475 |
/**
|
476 |
* Method to handle dashboard notices
|
477 |
*/
|
478 |
-
public function show_dashboard_notices()
|
|
|
479 |
$current_page = get_current_screen();
|
480 |
if ('dashboard' === $current_page->base && metaslider_user_is_ready_for_notices()) {
|
481 |
|
482 |
// Override the delay to show the thankyou notice on activation
|
483 |
// if (!empty($_GET['ms_activated'])) {
|
484 |
-
|
485 |
-
|
486 |
// }
|
487 |
-
echo $this->do_notice(false, 'dashboard', true);
|
488 |
}
|
489 |
}
|
490 |
|
491 |
-
|
492 |
-
|
493 |
*
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
);
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
|
508 |
-
|
509 |
-
|
510 |
*
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
|
|
|
|
|
|
518 |
|
519 |
extract($args);
|
520 |
if (is_int($hide_time)) {
|
521 |
$hide_time = $hide_time . ' ' . __('weeks', 'ml-slider');
|
522 |
}
|
523 |
-
|
524 |
|
525 |
-
|
526 |
-
|
|
|
|
|
527 |
|
528 |
-
|
529 |
-
|
530 |
*
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
/**
|
552 |
-
* Handles any notice related ajax calls
|
553 |
*
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
|
|
559 |
'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
|
560 |
-
|
561 |
-
|
562 |
|
563 |
-
|
564 |
-
|
565 |
'message' => __('This item does not exist. Please refresh the page and try again.', 'ml-slider')
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
'message' => __('The option was successfully updated', 'ml-slider'),
|
579 |
), 200);
|
580 |
}
|
581 |
-
|
582 |
-
|
583 |
* Returns the available ads that havent been dismissed by the user
|
584 |
*
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
|
|
590 |
$dismissed_ads = array();
|
591 |
|
592 |
$ads = ($bypass_delay) ? $this->ads : $this->notices_content;
|
593 |
|
594 |
// Filter through all site options (cached)
|
595 |
-
foreach(wp_load_alloptions() as $key => $value){
|
596 |
if (strpos($key, 'ms_hide_') && strpos($key, '_ads_until')) {
|
597 |
$key = str_replace(array('ms_hide_', '_ads_until'), '', $key);
|
598 |
-
|
599 |
}
|
600 |
}
|
601 |
-
|
602 |
// Filter out if the dismiss time has expired, then compare to the database
|
603 |
$valid_ads = array();
|
604 |
foreach ($ads as $ad_identifier => $values) {
|
@@ -612,103 +520,108 @@ class MetaSlider_Notices extends Updraft_Notices_1_0 {
|
|
612 |
|
613 |
return array_diff_key($valid_ads, $dismissed_ads);
|
614 |
}
|
615 |
-
|
616 |
-
|
617 |
* Returns all possible ads or the specified identifier
|
618 |
*
|
619 |
* @param string|null $ad_identifier Ad Identifier
|
620 |
-
|
621 |
-
|
622 |
-
|
|
|
623 |
$all_notices = array_merge($this->pro_notices(), $this->lite_notices());
|
624 |
return is_null($ad_identifier) ? $all_notices : $all_notices['ad_identifier'];
|
625 |
-
}
|
626 |
-
|
627 |
-
|
628 |
* Checks if the ad identifier exists in any of the ads above
|
629 |
*
|
630 |
* @param string $ad_identifier Ad Identifier
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
|
|
|
|
645 |
return $ad_data ? $ad_data : new WP_Error('bad_call', __('The requested data does not exist.', 'ml-slider'), array('status' => 401));
|
646 |
-
}
|
647 |
|
648 |
-
|
649 |
* Updates the stored value for how long to hide the ads
|
650 |
*
|
651 |
* @param string $ad_identifier Ad Identifier
|
652 |
* @param int|string $weeks time in weeks or a string to show
|
653 |
-
|
654 |
-
|
655 |
-
|
|
|
656 |
|
657 |
// If the time isn't specified it will hide "forever" (9999 weeks)
|
658 |
// Update 12/18/2017 - will set this an extra week, so that this individual ad will hide, for example, 13 weeks, while ALL ads (minus seasonal) will hide for 12 weeks. This ensures that the user doesn't see the same ad twice. Minor detail.
|
659 |
$weeks = is_int($weeks) ? $weeks + 1 : 9999;
|
660 |
-
|
661 |
$result = update_option("ms_hide_{$ad_identifier}_ads_until", time() + $weeks*7*86400);
|
662 |
-
|
663 |
// Update 12/18/2017 - Hide all ads for 12 weeks (this used to be 24 hours)
|
664 |
// This skips over the scenario when a user has seen a seasonal ad within the 2 week grace period. That way we can still show them the "rate plugin" ad after 2 weeks.
|
665 |
if (get_option("ms_ads_first_seen_on")) {
|
666 |
update_option("ms_hide_all_ads_until", time() + 12*7*86400);
|
667 |
}
|
668 |
-
|
669 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
670 |
}
|
671 |
-
|
672 |
-
/**
|
673 |
-
* Returns the url for a notice link
|
674 |
-
*
|
675 |
-
* @param string $link_id the link to get the url
|
676 |
-
* @return string the url for the link id
|
677 |
-
*/
|
678 |
-
public function get_notice_url($link_id) {
|
679 |
-
$urls = array(
|
680 |
-
'metaslider' => apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade'),
|
681 |
-
'metaslider_rate' => 'https://wordpress.org/support/plugin/ml-slider/reviews?rate=5#new-post',
|
682 |
-
'metaslider_survey' => 'https://www.metaslider.com/survey',
|
683 |
-
'metaslider_survey_pro' => 'https://www.metaslider.com/survey-pro',
|
684 |
-
'metaslider_translate' => 'https://translate.wordpress.org/projects/wp-plugins/ml-slider',
|
685 |
-
'updraftplus' => apply_filters('updraftplus_com_link', 'https://updraftplus.com'),
|
686 |
-
'updraftplus_wordpress' => 'https://wordpress.org/plugins/updraftplus/',
|
687 |
-
'updraftcentral' => 'https://updraftcentral.com',
|
688 |
-
'wp_optimize' => 'https://getwpo.com',
|
689 |
-
'wp_optimize_wordpress' => 'https://wordpress.org/plugins/wp-optimize/'
|
690 |
-
);
|
691 |
-
|
692 |
-
// Return the website url if the ID was not set
|
693 |
-
if (!isset($urls[$link_id])) return 'https://www.metaslider.com';
|
694 |
-
|
695 |
-
// Return if analytics code is already set
|
696 |
-
if (strpos($urls[$link_id], 'utm_source')) return esc_url($urls[$link_id]);
|
697 |
-
|
698 |
-
// Add our analytics code
|
699 |
-
return esc_url(add_query_arg(array(
|
700 |
-
'utm_source' => 'metaslider-plugin-page',
|
701 |
-
'utm_medium' => 'banner'
|
702 |
-
), $urls[$link_id]));
|
703 |
-
}
|
704 |
-
|
705 |
-
/**
|
706 |
-
* Forces ads to show when any override is set
|
707 |
-
*/
|
708 |
-
private function force_ads() {
|
709 |
-
return (defined('METASLIDER_FORCE_NOTICES') && METASLIDER_FORCE_NOTICES) ||
|
710 |
-
(defined('METASLIDER_FORCE_PRO_NOTICES') && METASLIDER_FORCE_PRO_NOTICES) ||
|
711 |
-
(defined('METASLIDER_FORCE_LITE_NOTICES') && METASLIDER_FORCE_LITE_NOTICES) ||
|
712 |
-
(defined('METASLIDER_DISABLE_SEASONAL_NOTICES') && METASLIDER_DISABLE_SEASONAL_NOTICES);
|
713 |
-
}
|
714 |
}
|
1 |
<?php
|
2 |
|
3 |
+
if (!defined('ABSPATH')) {
|
4 |
+
die('No direct access.');
|
5 |
+
}
|
6 |
|
7 |
+
if (!class_exists('Updraft_Notices_1_0')) {
|
8 |
+
require_once(METASLIDER_PATH.'admin/lib/Updraft_Notices.php');
|
9 |
+
}
|
10 |
|
11 |
/**
|
12 |
* Meta Slider Notices
|
13 |
*/
|
14 |
+
class MetaSlider_Notices extends Updraft_Notices_1_0
|
15 |
+
{
|
16 |
|
17 |
+
/**
|
18 |
+
* All Ads
|
19 |
+
*
|
20 |
+
* @var object $ads
|
21 |
+
*/
|
22 |
protected $ads;
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Notices content
|
26 |
+
*
|
27 |
+
* @var object $notices_content
|
28 |
+
*/
|
29 |
+
protected $notices_content;
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Populates ad content and loads assets
|
33 |
+
*/
|
34 |
+
public function __construct()
|
35 |
+
{
|
36 |
+
/*
|
37 |
+
* There are three options you can use to force ads to show.
|
38 |
+
* The second two require the first to be set to true
|
39 |
+
*
|
40 |
+
* define('METASLIDER_FORCE_NOTICES', true);
|
41 |
+
* define('METASLIDER_DISABLE_SEASONAL_NOTICES', true);
|
42 |
+
*
|
43 |
+
* Be sure not to set both of these at the same time
|
44 |
+
* define('METASLIDER_FORCE_LITE_NOTICES', true);
|
45 |
+
* define('METASLIDER_FORCE_PRO_NOTICES', true);
|
46 |
+
*
|
47 |
+
*/
|
48 |
+
|
49 |
$this->ads = metaslider_pro_is_installed() ? $this->pro_notices() : $this->lite_notices();
|
50 |
+
|
51 |
// To avoid showing the user ads off the start, lets wait
|
52 |
$this->notices_content = ($this->ad_delay_has_finished()) ? $this->ads : array();
|
53 |
|
54 |
// If $notices_content is empty, we still want to offer seasonal ads
|
55 |
if (empty($this->notices_content) && !metaslider_pro_is_installed()) {
|
56 |
$this->notices_content = $this->valid_seasonal_notices();
|
57 |
+
}
|
58 |
+
|
59 |
add_action('admin_enqueue_scripts', array($this, 'add_notice_assets'));
|
60 |
add_action('wp_ajax_notice_handler', array($this, 'ajax_notice_handler'));
|
61 |
add_action('admin_notices', array($this, 'show_dashboard_notices'));
|
62 |
+
}
|
63 |
|
64 |
+
/**
|
65 |
+
* Handles assets for the notices
|
66 |
+
*/
|
67 |
+
public function add_notice_assets()
|
68 |
+
{
|
69 |
+
wp_enqueue_style('ml-slider-notices-css', METASLIDER_ADMIN_URL . 'assets/css/notices.css', false, METASLIDER_VERSION);
|
70 |
wp_localize_script('jquery', 'metaslider_notices', array(
|
71 |
'handle_notices_nonce' => wp_create_nonce('metaslider_handle_notices_nonce')
|
72 |
));
|
73 |
+
}
|
74 |
|
75 |
+
/**
|
76 |
+
* Deprecated for MetaSlider for now
|
77 |
+
*/
|
78 |
+
public function notices_init()
|
79 |
+
{
|
80 |
+
return;
|
81 |
+
}
|
82 |
|
83 |
+
/**
|
84 |
* Returns notices that free/lite users should see. dismiss_time should match the key
|
85 |
* hide_time is in weeks. Use a string to hide for 9999 weeks.
|
86 |
*
|
87 |
+
* @return array returns an array of notices
|
88 |
+
*/
|
89 |
+
protected function lite_notices()
|
90 |
+
{
|
91 |
+
if (defined('METASLIDER_FORCE_PRO_NOTICES') && METASLIDER_FORCE_PRO_NOTICES) {
|
92 |
+
|
93 |
+
// Override to force pro, but make sure both overrides arent set
|
94 |
+
return (!defined('METASLIDER_FORCE_LITE_NOTICES')) ? $this->pro_notices() : array();
|
95 |
+
}
|
96 |
+
|
97 |
+
return array_merge(array(
|
98 |
+
'rate_plugin' => array(
|
99 |
+
'title' => _x('Like MetaSlider and have a minute to spare?', 'Keep the plugin name "MetaSlider" when possible', 'ml-slider'),
|
100 |
+
'text' => _x('Please help MetaSlider by giving a positive review at wordpress.org.', 'Keep the plugin name "MetaSlider" when possible', 'ml-slider'),
|
101 |
+
'image' => 'metaslider_logo.png',
|
102 |
+
'button_link' => 'metaslider_rate',
|
103 |
+
'button_meta' => 'review',
|
104 |
+
'dismiss_time' => 'rate_plugin',
|
105 |
+
'hide_time' => 12,
|
106 |
+
'supported_positions' => array('header'),
|
107 |
+
),
|
108 |
+
'pro_layers' => array(
|
109 |
+
'title' => __('Spice up your site with animated layers and video slides', 'ml-slider'),
|
110 |
+
'text' => _x('With the MetaSlider Add-on pack you can give your slideshows a professional look!', 'Keep the plugin name "MetaSlider" when possible', 'ml-slider'),
|
111 |
+
'image' => 'metaslider_logo.png',
|
112 |
+
'button_link' => 'metaslider',
|
113 |
+
'button_meta' => 'ml-slider',
|
114 |
+
'dismiss_time' => 'pro_layers',
|
115 |
+
'hide_time' => 12,
|
116 |
+
'supported_positions' => array('header'),
|
117 |
+
),
|
118 |
+
'pro_features' => array(
|
119 |
+
'title' => __('Increase your revenue and conversion with video slides and many more features', 'ml-slider'),
|
120 |
+
'text' => __('Upgrade today to benefit from many more premium features. Find out more.', 'ml-slider'),
|
121 |
+
'image' => 'metaslider_logo.png',
|
122 |
+
'button_link' => 'metaslider',
|
123 |
+
'button_meta' => 'ml-slider',
|
124 |
+
'dismiss_time' => 'pro_features',
|
125 |
+
'hide_time' => 12,
|
126 |
+
'supported_positions' => array('header'),
|
127 |
+
),
|
128 |
+
'translation' => array(
|
129 |
+
'title' => __('Can you translate? Want to improve MetaSlider for speakers of your language?', 'ml-slider'),
|
130 |
+
'text' => __('Please go here for instructions - it is easy.', 'ml-slider'),
|
131 |
+
'image' => 'metaslider_logo.png',
|
132 |
+
'button_link' => 'metaslider_translate',
|
133 |
+
'button_meta' => 'lets_start',
|
134 |
+
'dismiss_time' => 'translation',
|
135 |
+
'hide_time' => 12,
|
136 |
+
'supported_positions' => array('header'),
|
137 |
+
'validity_function' => 'translation_needed',
|
138 |
+
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
), $this->valid_seasonal_notices());
|
140 |
}
|
141 |
+
|
142 |
+
/**
|
143 |
+
* Premium user notices, if any.
|
144 |
*
|
145 |
+
* @return array
|
146 |
+
*/
|
147 |
+
protected function pro_notices()
|
148 |
+
{
|
149 |
+
if (defined('METASLIDER_FORCE_LITE_NOTICES') && METASLIDER_FORCE_LITE_NOTICES) {
|
150 |
|
151 |
+
// Override to force pro, but make sure both overrides arent set
|
152 |
+
return (!defined('METASLIDER_FORCE_PRO_NOTICES')) ? $this->lite_notices() : array();
|
153 |
+
}
|
|
|
|
|
154 |
|
155 |
return array();
|
156 |
}
|
157 |
+
|
158 |
+
/**
|
159 |
+
* Seasonal Notices. Note that if dismissed, they will stay dismissed for 9999 weeks.
|
160 |
* An empty string for 'hide_time' will show "Dismiss" instead of "Dismiss (12 weeks)"
|
161 |
* Each year the key and dismiss time should be updated
|
162 |
*
|
163 |
+
* @return array
|
164 |
+
*/
|
165 |
+
protected function seasonal_notices()
|
166 |
+
{
|
|
|
167 |
if (defined('METASLIDER_DISABLE_SEASONAL_NOTICES') && METASLIDER_DISABLE_SEASONAL_NOTICES) {
|
168 |
return array();
|
169 |
+
}
|
|
|
|
|
170 |
|
171 |
+
$coupons = json_decode(file_get_contents(METASLIDER_PATH .'seasonal-discounts.json'), true);
|
172 |
$coupon_object = array(
|
173 |
+
'blackfriday' => array(
|
174 |
+
'title' => _x('Black Friday - 20% off the MetaSlider Add-on Pack until November 30th', 'Keep the phrase "MetaSlider Add-on Pack" when possible. Also, "Black Friday" is the name of an event in the United States', 'ml-slider'),
|
175 |
+
'text' => __('To benefit, use this discount code:', 'ml-slider').' ',
|
176 |
+
'image' => 'seasonal/black_friday.png',
|
177 |
+
'button_link' => 'metaslider',
|
178 |
+
'button_meta' => 'ml-slider',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
'hide_time' => '',
|
180 |
+
'supported_positions' => array('header', 'dashboard'),
|
181 |
+
),
|
182 |
+
'christmas' => array(
|
183 |
+
'title' => _x('Christmas sale - 20% off the MetaSlider Add-on Pack until December 25th', 'Keep the phrase "MetaSlider Add-on Pack" when possible', 'ml-slider'),
|
184 |
+
'text' => __('To benefit, use this discount code:', 'ml-slider').' ',
|
185 |
+
'image' => 'seasonal/christmas.png',
|
186 |
+
'button_link' => 'metaslider',
|
187 |
+
'button_meta' => 'ml-slider',
|
188 |
'hide_time' => '',
|
189 |
+
'supported_positions' => array('header', 'dashboard'),
|
190 |
+
),
|
191 |
+
'newyear' => array(
|
192 |
+
'title' => _x('Happy New Year - 20% off the MetaSlider Add-on Pack until January 14th', 'Keep the phrase "MetaSlider Add-on Pack" when possible', 'ml-slider'),
|
193 |
+
'text' => __('To benefit, use this discount code:', 'ml-slider').' ',
|
194 |
+
'image' => 'seasonal/new_year.png',
|
195 |
+
'button_link' => 'metaslider',
|
196 |
+
'button_meta' => 'ml-slider',
|
197 |
'hide_time' => '',
|
198 |
+
'supported_positions' => array('header', 'dashboard'),
|
199 |
+
),
|
200 |
+
'spring' => array(
|
201 |
+
'title' => _x('Spring sale - 20% off the MetaSlider Add-on Pack until April 30th', 'Keep the phrase "MetaSlider Add-on Pack" when possible', 'ml-slider'),
|
202 |
+
'text' => __('To benefit, use this discount code:', 'ml-slider').' ',
|
203 |
+
'image' => 'seasonal/spring.png',
|
204 |
+
'button_link' => 'metaslider',
|
205 |
+
'button_meta' => 'ml-slider',
|
206 |
'hide_time' => '',
|
207 |
+
'supported_positions' => array('header', 'dashboard'),
|
208 |
+
),
|
209 |
+
'summer' => array(
|
210 |
+
'title' => _x('Summer sale - 20% off the MetaSlider Add-on Pack until July 31st', 'Keep the phrase "MetaSlider Add-on Pack" when possible', 'ml-slider'),
|
211 |
+
'text' => __('To benefit, use this discount code:', 'ml-slider').' ',
|
212 |
+
'image' => 'seasonal/summer.png',
|
213 |
+
'button_link' => 'metaslider',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
'button_meta' => 'ml-slider',
|
215 |
+
'hide_time' => '',
|
216 |
+
'supported_positions' => array('header', 'dashboard'),
|
217 |
+
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
);
|
219 |
+
|
220 |
+
return array_map(array($this, 'prepare_notice_fields'), array_merge_recursive($coupon_object, $coupons));
|
221 |
}
|
222 |
|
223 |
+
/**
|
224 |
+
* Add fields needed for an notice to show
|
225 |
*
|
226 |
+
* @param string $notice - the name of the notice
|
227 |
+
* @return array
|
228 |
+
*/
|
229 |
+
public function prepare_notice_fields($notice)
|
230 |
+
{
|
231 |
+
if (!isset($notice['dismiss_time']) && isset($notice['discount_code'])) {
|
232 |
+
$notice['dismiss_time'] = $notice['discount_code'];
|
233 |
+
}
|
234 |
+
return $notice;
|
235 |
}
|
236 |
|
237 |
+
/**
|
238 |
+
* Checks if the user agent isn't set as en_GB or en_US, and if the language file doesn't exist
|
239 |
*
|
240 |
+
* @param string $plugin_base_dir The plguin base directory
|
241 |
+
* @param string $product_name Product name
|
242 |
+
* @return bool
|
243 |
+
*/
|
244 |
+
protected function translation_needed($plugin_base_dir = null, $product_name = null)
|
245 |
+
{
|
246 |
+
return parent::translation_needed(METASLIDER_PATH, 'ml-slider');
|
247 |
}
|
248 |
+
|
249 |
+
/**
|
250 |
+
* This method checks to see if the ad has been dismissed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
*
|
252 |
+
* @param string $ad_identifier - identifier for the ad
|
253 |
+
* @return bool returns true when we dont want to show the ad
|
254 |
+
*/
|
255 |
+
protected function check_notice_dismissed($ad_identifier)
|
256 |
+
{
|
257 |
+
if ($this->force_ads()) {
|
258 |
+
return false;
|
259 |
+
}
|
260 |
+
return (time() < get_option("ms_hide_{$ad_identifier}_ads_until"));
|
261 |
}
|
262 |
+
|
263 |
+
/**
|
264 |
+
* Returns all active seasonal ads
|
265 |
*
|
266 |
+
* @return array
|
267 |
+
*/
|
268 |
+
protected function valid_seasonal_notices()
|
269 |
+
{
|
270 |
$valid = array();
|
271 |
$time_now = time();
|
272 |
// $time_now = strtotime('2020-11-20 00:00:01'); // Black Friday
|
274 |
// $time_now = strtotime('2020-12-26 00:00:01'); // NY
|
275 |
// $time_now = strtotime('2020-04-01 00:00:01'); // Spring
|
276 |
// $time_now = strtotime('2020-07-01 00:00:01'); // Summer
|
277 |
+
foreach ($this->seasonal_notices() as $ad_identifier => $notice) {
|
278 |
+
if (!isset($notice['valid_from']) || !isset($notice['valid_to'])) {
|
279 |
+
continue;
|
280 |
+
}
|
281 |
$valid_from = strtotime($notice['valid_from']);
|
282 |
$valid_to = strtotime($notice['valid_to']);
|
283 |
if ($valid_from < $time_now && $time_now <= $valid_to) {
|
288 |
}
|
289 |
|
290 |
/**
|
291 |
+
* The logic is handled elsewhere. This being true does not skip
|
292 |
* the seasonal notices. Overrides parent function
|
293 |
*
|
294 |
* @param array $notice_data Notice data
|
295 |
+
* @return array
|
296 |
+
*/
|
297 |
+
protected function skip_seasonal_notices($notice_data)
|
298 |
+
{
|
299 |
return !$this->check_notice_dismissed($notice_data['dismiss_time']);
|
300 |
}
|
301 |
|
302 |
+
/**
|
303 |
+
* Checks whether this is an ad page - hard-coded
|
304 |
*
|
305 |
+
* @return bool
|
306 |
+
*/
|
307 |
+
protected function is_page_with_ads()
|
308 |
+
{
|
309 |
global $pagenow;
|
310 |
$page = isset($_GET['page']) ? $_GET['page'] : '';
|
311 |
|
312 |
// I'm thinking to limit the check to the actual settings page for now
|
313 |
// This way, if they activate the plugin but don't start using it until
|
314 |
// a few weeks after, it won't bother them with ads.
|
315 |
+
// return ('index.php' === $pagenow) || ($page === 'metaslider');
|
316 |
+
return ($page === 'metaslider');
|
317 |
}
|
318 |
|
319 |
+
/**
|
320 |
* This method checks to see if the ad waiting period is over (2 weeks)
|
321 |
* If not, it will set a two week time
|
322 |
*
|
323 |
+
* @return bool returns true when we dont want to show the ad
|
324 |
+
*/
|
325 |
+
protected function ad_delay_has_finished()
|
326 |
+
{
|
327 |
+
if ($this->force_ads()) {
|
328 |
|
329 |
+
// If there's an override, return true
|
330 |
+
return true;
|
331 |
+
}
|
332 |
|
333 |
if (metaslider_pro_is_installed()) {
|
334 |
|
349 |
|
350 |
// Set the delay for when they will first see an ad, 2 weeks; returns false
|
351 |
return !update_option("ms_hide_all_ads_until", time() + 2*7*86400);
|
352 |
+
} elseif ((time() > $delay) && !get_option("ms_ads_first_seen_on")) {
|
353 |
|
354 |
// Serve ads now, and note the time they first saw ads
|
355 |
update_option("ms_ads_first_seen_on", time());
|
359 |
$notices = $this->lite_notices();
|
360 |
$this->ads = array('rate_plugin' => $notices['rate_plugin']);
|
361 |
return true;
|
362 |
+
} elseif (time() < $delay) {
|
363 |
|
364 |
// This means an ad was dismissed and there's a delay
|
365 |
return false;
|
366 |
+
} elseif (get_option("ms_ads_first_seen_on")) {
|
367 |
|
368 |
+
// This means the initial delay has elapsed,
|
369 |
// and the dismissed period expired
|
370 |
return true;
|
371 |
}
|
372 |
|
373 |
// Default to not show an ad, in case there's some error
|
374 |
+
return false;
|
375 |
}
|
376 |
+
|
377 |
/**
|
378 |
* Method to handle dashboard notices
|
379 |
*/
|
380 |
+
public function show_dashboard_notices()
|
381 |
+
{
|
382 |
$current_page = get_current_screen();
|
383 |
if ('dashboard' === $current_page->base && metaslider_user_is_ready_for_notices()) {
|
384 |
|
385 |
// Override the delay to show the thankyou notice on activation
|
386 |
// if (!empty($_GET['ms_activated'])) {
|
387 |
+
// $lite_notices = $this->lite_notices();
|
388 |
+
// $this->notices_content['thankyou'] = $lite_notices['thankyou'];
|
389 |
// }
|
390 |
+
echo $this->do_notice(false, 'dashboard', true);
|
391 |
}
|
392 |
}
|
393 |
|
394 |
+
/**
|
395 |
+
* Selects the template and returns or displays the notice
|
396 |
*
|
397 |
+
* @param array $notice_information - variable names/values to pass through to the template
|
398 |
+
* @param bool $return_instead_of_echo - whether to
|
399 |
+
* @param string $position - where the notice is being displayed
|
400 |
+
* @return null|string - depending on the value of $return_instead_of_echo
|
401 |
+
*/
|
402 |
+
protected function render_specified_notice($notice_information, $return_instead_of_echo = false, $position = 'header')
|
403 |
+
{
|
404 |
+
$views = array(
|
405 |
+
'header' => 'header-notice.php',
|
406 |
);
|
407 |
+
$view = isset($views[$position]) ? $views[$position] : 'header-notice.php';
|
408 |
+
return $this->include_template($view, $return_instead_of_echo, $notice_information);
|
409 |
+
}
|
410 |
|
411 |
+
/**
|
412 |
+
* Displays or returns the template
|
413 |
*
|
414 |
+
* @param string $path file name of the template
|
415 |
+
* @param bool $return_instead_of_echo Return the template instead of printing
|
416 |
+
* @param array $args template arguments
|
417 |
+
* @return null|string
|
418 |
+
*/
|
419 |
+
public function include_template($path, $return_instead_of_echo = false, $args = array())
|
420 |
+
{
|
421 |
+
if ($return_instead_of_echo) {
|
422 |
+
ob_start();
|
423 |
+
}
|
424 |
|
425 |
extract($args);
|
426 |
if (is_int($hide_time)) {
|
427 |
$hide_time = $hide_time . ' ' . __('weeks', 'ml-slider');
|
428 |
}
|
429 |
+
include METASLIDER_PATH.'admin/views/notices/'.$path;
|
430 |
|
431 |
+
if ($return_instead_of_echo) {
|
432 |
+
return ob_get_clean();
|
433 |
+
}
|
434 |
+
}
|
435 |
|
436 |
+
/**
|
437 |
+
* Builds a link based on the type of notice being requested
|
438 |
*
|
439 |
+
* @param string $link - the URL to link to
|
440 |
+
* @param string $type - which notice is being displayed
|
441 |
+
* @return string - the resulting HTML
|
442 |
+
*/
|
443 |
+
public function get_button_link($link, $type)
|
444 |
+
{
|
445 |
+
$messages = array(
|
446 |
+
'lets_start' => __('Let\'s Start', 'ml-slider'),
|
447 |
+
'review' => _x('Review MetaSlider', 'Keep the plugin name "MetaSlider" when possible', 'ml-slider'),
|
448 |
+
'ml-slider' => __('Find out more', 'ml-slider'),
|
449 |
+
'signup' => __('Sign up', 'ml-slider'),
|
450 |
+
'go_there' => __('Go there', 'ml-slider')
|
451 |
+
);
|
452 |
+
$message = isset($messages[$type]) ? $messages[$type] : __('Read more', 'ml-slider');
|
453 |
+
|
454 |
+
return '<a class="updraft_notice_link underline text-blue-dark" href="' . $this->get_notice_url($link) . '">' . $message . '</a>';
|
455 |
+
}
|
456 |
+
|
457 |
+
/**
|
458 |
+
* Handles any notice related ajax calls
|
|
|
|
|
459 |
*
|
460 |
+
* @return void
|
461 |
+
*/
|
462 |
+
public function ajax_notice_handler()
|
463 |
+
{
|
464 |
+
if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'metaslider_handle_notices_nonce')) {
|
465 |
+
wp_send_json_error(array(
|
466 |
'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
|
467 |
+
), 401);
|
468 |
+
}
|
469 |
|
470 |
+
if (is_wp_error($ad_data = $this->ad_exists($_POST['ad_identifier']))) {
|
471 |
+
wp_send_json_error(array(
|
472 |
'message' => __('This item does not exist. Please refresh the page and try again.', 'ml-slider')
|
473 |
+
), 401);
|
474 |
+
}
|
475 |
+
|
476 |
+
$result = $this->dismiss_ad($ad_data['dismiss_time'], $ad_data['hide_time']);
|
477 |
+
|
478 |
+
if (is_wp_error($result)) {
|
479 |
+
wp_send_json_error(array(
|
480 |
+
'message' => $result->get_error_message()
|
481 |
+
), 409);
|
482 |
+
}
|
483 |
+
|
484 |
+
wp_send_json_success(array(
|
485 |
'message' => __('The option was successfully updated', 'ml-slider'),
|
486 |
), 200);
|
487 |
}
|
488 |
+
|
489 |
+
/**
|
490 |
* Returns the available ads that havent been dismissed by the user
|
491 |
*
|
492 |
+
* @param string|array $location the location for the ad
|
493 |
+
* @param boolean $bypass_delay Bypass the ad delay
|
494 |
+
* @return array the identifier for the ad
|
495 |
+
*/
|
496 |
+
public function active_ads($location = 'header', $bypass_delay = false)
|
497 |
+
{
|
498 |
$dismissed_ads = array();
|
499 |
|
500 |
$ads = ($bypass_delay) ? $this->ads : $this->notices_content;
|
501 |
|
502 |
// Filter through all site options (cached)
|
503 |
+
foreach (wp_load_alloptions() as $key => $value) {
|
504 |
if (strpos($key, 'ms_hide_') && strpos($key, '_ads_until')) {
|
505 |
$key = str_replace(array('ms_hide_', '_ads_until'), '', $key);
|
506 |
+
$dismissed_ads[$key] = $value;
|
507 |
}
|
508 |
}
|
509 |
+
|
510 |
// Filter out if the dismiss time has expired, then compare to the database
|
511 |
$valid_ads = array();
|
512 |
foreach ($ads as $ad_identifier => $values) {
|
520 |
|
521 |
return array_diff_key($valid_ads, $dismissed_ads);
|
522 |
}
|
523 |
+
|
524 |
+
/**
|
525 |
* Returns all possible ads or the specified identifier
|
526 |
*
|
527 |
* @param string|null $ad_identifier Ad Identifier
|
528 |
+
* @return string|null the data of the ad
|
529 |
+
*/
|
530 |
+
public function get_ad($ad_identifier = null)
|
531 |
+
{
|
532 |
$all_notices = array_merge($this->pro_notices(), $this->lite_notices());
|
533 |
return is_null($ad_identifier) ? $all_notices : $all_notices['ad_identifier'];
|
534 |
+
}
|
535 |
+
|
536 |
+
/**
|
537 |
* Checks if the ad identifier exists in any of the ads above
|
538 |
*
|
539 |
* @param string $ad_identifier Ad Identifier
|
540 |
+
* @return bool the data of the ad
|
541 |
+
*/
|
542 |
+
public function ad_exists($ad_identifier)
|
543 |
+
{
|
544 |
+
$all_notices = array_merge($this->pro_notices(), $this->lite_notices());
|
545 |
+
if (isset($all_notices[$ad_identifier])) {
|
546 |
+
return $all_notices[$ad_identifier];
|
547 |
+
}
|
548 |
+
|
549 |
+
// Handle seasonal notices
|
550 |
+
$ad_data = array();
|
551 |
+
foreach ($all_notices as $notice) {
|
552 |
+
if (isset($notice['discount_code']) && $notice['discount_code'] === $ad_identifier) {
|
553 |
+
$ad_data = $notice;
|
554 |
+
}
|
555 |
+
}
|
556 |
return $ad_data ? $ad_data : new WP_Error('bad_call', __('The requested data does not exist.', 'ml-slider'), array('status' => 401));
|
557 |
+
}
|
558 |
|
559 |
+
/**
|
560 |
* Updates the stored value for how long to hide the ads
|
561 |
*
|
562 |
* @param string $ad_identifier Ad Identifier
|
563 |
* @param int|string $weeks time in weeks or a string to show
|
564 |
+
* @return bool|WP_Error whether the update was a success
|
565 |
+
*/
|
566 |
+
public function dismiss_ad($ad_identifier, $weeks)
|
567 |
+
{
|
568 |
|
569 |
// If the time isn't specified it will hide "forever" (9999 weeks)
|
570 |
// Update 12/18/2017 - will set this an extra week, so that this individual ad will hide, for example, 13 weeks, while ALL ads (minus seasonal) will hide for 12 weeks. This ensures that the user doesn't see the same ad twice. Minor detail.
|
571 |
$weeks = is_int($weeks) ? $weeks + 1 : 9999;
|
572 |
+
|
573 |
$result = update_option("ms_hide_{$ad_identifier}_ads_until", time() + $weeks*7*86400);
|
574 |
+
|
575 |
// Update 12/18/2017 - Hide all ads for 12 weeks (this used to be 24 hours)
|
576 |
// This skips over the scenario when a user has seen a seasonal ad within the 2 week grace period. That way we can still show them the "rate plugin" ad after 2 weeks.
|
577 |
if (get_option("ms_ads_first_seen_on")) {
|
578 |
update_option("ms_hide_all_ads_until", time() + 12*7*86400);
|
579 |
}
|
580 |
+
|
581 |
+
return $result ? $result : new WP_Error('update_failed', __('The attempt to update the option failed.', 'ml-slider'), array('status' => 409));
|
582 |
+
}
|
583 |
+
|
584 |
+
/**
|
585 |
+
* Returns the url for a notice link
|
586 |
+
*
|
587 |
+
* @param string $link_id the link to get the url
|
588 |
+
* @return string the url for the link id
|
589 |
+
*/
|
590 |
+
public function get_notice_url($link_id)
|
591 |
+
{
|
592 |
+
$urls = array(
|
593 |
+
'metaslider' => apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade'),
|
594 |
+
'metaslider_rate' => 'https://wordpress.org/support/plugin/ml-slider/reviews?rate=5#new-post',
|
595 |
+
'metaslider_survey' => 'https://www.metaslider.com/survey',
|
596 |
+
'metaslider_survey_pro' => 'https://www.metaslider.com/survey-pro',
|
597 |
+
'metaslider_translate' => 'https://translate.wordpress.org/projects/wp-plugins/ml-slider',
|
598 |
+
);
|
599 |
+
|
600 |
+
// Return the website url if the ID was not set
|
601 |
+
if (!isset($urls[$link_id])) {
|
602 |
+
return 'https://www.metaslider.com';
|
603 |
+
}
|
604 |
+
|
605 |
+
// Return if analytics code is already set
|
606 |
+
if (strpos($urls[$link_id], 'utm_source')) {
|
607 |
+
return esc_url($urls[$link_id]);
|
608 |
+
}
|
609 |
+
|
610 |
+
// Add our analytics code
|
611 |
+
return esc_url(add_query_arg(array(
|
612 |
+
'utm_source' => 'metaslider-plugin-page',
|
613 |
+
'utm_medium' => 'banner'
|
614 |
+
), $urls[$link_id]));
|
615 |
+
}
|
616 |
+
|
617 |
+
/**
|
618 |
+
* Forces ads to show when any override is set
|
619 |
+
*/
|
620 |
+
private function force_ads()
|
621 |
+
{
|
622 |
+
return (defined('METASLIDER_FORCE_NOTICES') && METASLIDER_FORCE_NOTICES) ||
|
623 |
+
(defined('METASLIDER_FORCE_PRO_NOTICES') && METASLIDER_FORCE_PRO_NOTICES) ||
|
624 |
+
(defined('METASLIDER_FORCE_LITE_NOTICES') && METASLIDER_FORCE_LITE_NOTICES) ||
|
625 |
+
(defined('METASLIDER_DISABLE_SEASONAL_NOTICES') && METASLIDER_DISABLE_SEASONAL_NOTICES);
|
626 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
627 |
}
|
admin/Pages.php
CHANGED
@@ -1,12 +1,15 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
if (!defined('ABSPATH'))
|
|
|
|
|
4 |
|
5 |
/**
|
6 |
* Entry point for building the wordpress admin pages.
|
7 |
* Temporarily extends the MetaSlider Class until more refactoring can be done.
|
8 |
*/
|
9 |
-
|
|
|
10 |
|
11 |
/**
|
12 |
* The MetaSlider plugin class
|
@@ -14,7 +17,7 @@ Class MetaSlider_Admin_Pages extends MetaSliderPlugin {
|
|
14 |
* @var object $plugin
|
15 |
*/
|
16 |
private $plugin;
|
17 |
-
|
18 |
/**
|
19 |
* The current admin page
|
20 |
*
|
@@ -27,38 +30,41 @@ Class MetaSlider_Admin_Pages extends MetaSliderPlugin {
|
|
27 |
*
|
28 |
* @param array $plugin Plugin details
|
29 |
*/
|
30 |
-
public function __construct($plugin)
|
|
|
31 |
$this->plugin = $plugin;
|
32 |
-
|
33 |
add_action('admin_enqueue_scripts', array($this, 'load_upgrade_page_assets'));
|
34 |
}
|
35 |
|
36 |
/**
|
37 |
* Loads in the overlay assets
|
38 |
*/
|
39 |
-
public function load_overlay()
|
|
|
40 |
wp_enqueue_style('metaslider-colorbox-styles', METASLIDER_ADMIN_URL . 'assets/vendor/colorbox/colorbox.css', false, METASLIDER_VERSION);
|
41 |
wp_enqueue_script('metaslider-colorbox', METASLIDER_ADMIN_URL . 'assets/vendor/colorbox/jquery.colorbox-min.js', array('jquery'), METASLIDER_VERSION, true);
|
42 |
}
|
43 |
-
|
44 |
/**
|
45 |
* Loads in tooltips
|
46 |
*/
|
47 |
-
public function load_tooltips()
|
|
|
48 |
wp_enqueue_style('metaslider-tipsy-styles', METASLIDER_ADMIN_URL . 'assets/vendor/tipsy/tipsy.css', false, METASLIDER_VERSION);
|
49 |
wp_enqueue_script('metaslider-tipsy', METASLIDER_ADMIN_URL . 'assets/vendor/tipsy/jquery.tipsy.js', array('jquery'), METASLIDER_VERSION, true);
|
50 |
}
|
51 |
|
52 |
/**
|
53 |
* Loads in custom javascript
|
54 |
-
*/
|
55 |
-
public function load_javascript()
|
56 |
-
|
57 |
wp_enqueue_media();
|
58 |
wp_enqueue_script('jquery-ui-core');
|
59 |
-
|
60 |
-
|
61 |
-
wp_register_script('metaslider-admin-script', METASLIDER_ADMIN_URL . 'assets/js/admin-' . sanitize_title(METASLIDER_VERSION) . '.js', array('jquery'), METASLIDER_VERSION, true);
|
62 |
wp_localize_script('metaslider-admin-script', 'metaslider', array(
|
63 |
'url' => __("URL", "ml-slider"),
|
64 |
'caption' => __("Caption", "ml-slider"),
|
@@ -81,48 +87,50 @@ Class MetaSlider_Admin_Pages extends MetaSliderPlugin {
|
|
81 |
'useWithCaution' => __("Caution: This setting is for advanced developers only. If you're unsure, leave it checked.", "ml-slider")
|
82 |
));
|
83 |
wp_enqueue_script('metaslider-admin-script');
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
}
|
110 |
-
|
111 |
/**
|
112 |
* Loads in custom styling for upgrade page
|
113 |
-
*/
|
114 |
-
public function load_upgrade_page_assets()
|
|
|
115 |
if ('upgrade-metaslider' == $this->current_page) {
|
116 |
-
wp_enqueue_style('metaslider-upgrade-styles', METASLIDER_ADMIN_URL . 'assets/css/upgrade
|
117 |
}
|
118 |
}
|
119 |
-
|
120 |
/**
|
121 |
* Loads in custom styling
|
122 |
-
*/
|
123 |
-
public function load_styles()
|
124 |
-
|
125 |
-
wp_enqueue_style('metaslider-
|
|
|
126 |
|
127 |
// Hook to load more styles and scripts (from pro)
|
128 |
do_action('metaslider_register_admin_styles');
|
@@ -130,16 +138,17 @@ Class MetaSlider_Admin_Pages extends MetaSliderPlugin {
|
|
130 |
|
131 |
/**
|
132 |
* Area used to handle any third-party plugin conflicts
|
133 |
-
*/
|
134 |
-
public function fix_conflicts()
|
|
|
135 |
|
136 |
// WP Posts Filter Fix (Advanced Settings not toggling)
|
137 |
-
wp_dequeue_script('link');
|
138 |
|
139 |
// All In One Events Calendar Fix (Advanced Settings not toggling)
|
140 |
-
wp_dequeue_script('ai1ec_requirejs');
|
141 |
}
|
142 |
-
|
143 |
/**
|
144 |
* Method to add pages
|
145 |
*
|
@@ -147,131 +156,155 @@ Class MetaSlider_Admin_Pages extends MetaSliderPlugin {
|
|
147 |
* @param string $slug - The slug used for the page
|
148 |
* @param string $parent - Setting a parent will make this page a submenu item
|
149 |
*/
|
150 |
-
public function add_page($title, $slug = '', $parent = '')
|
|
|
151 |
$slug = ('' == $slug) ? sanitize_title($title) : $slug;
|
152 |
$method = 'render_'.str_replace("-", "_", $slug).'_page';
|
153 |
if (!method_exists($this, $method)) {
|
154 |
return false;
|
155 |
}
|
156 |
$this->current_page = $slug;
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
|
161 |
$page = ('' == $parent) ? add_menu_page($title, $title, $capability, $slug, array($this, $method), $dashboard_icon) : add_submenu_page($parent, $title, $title, $capability, $slug, array($this, $method));
|
162 |
-
|
163 |
// Load assets on all pages
|
164 |
add_action('load-' . $page, array($this, 'fix_conflicts'));
|
165 |
add_action('load-' . $page, array($this, 'load_overlay'));
|
166 |
add_action('load-' . $page, array($this, 'load_tooltips'));
|
167 |
add_action('load-' . $page, array($this, 'load_javascript'));
|
168 |
add_action('load-' . $page, array($this, 'load_styles'));
|
169 |
-
|
170 |
|
171 |
/**
|
172 |
* Sets up any logic needed for the main page
|
173 |
* TODO continue refactoring from here
|
174 |
*/
|
175 |
-
public function render_metaslider_page()
|
176 |
-
|
|
|
177 |
}
|
178 |
|
179 |
-
|
180 |
* Sets up any logic needed for the main page
|
181 |
* TODO continue refactoring from here
|
182 |
*/
|
183 |
-
public function render_metaslider_settings_page()
|
|
|
184 |
include METASLIDER_PATH."admin/views/pages/settings.php";
|
185 |
}
|
186 |
|
187 |
/**
|
188 |
* Sets up any logic needed for the upgrade page
|
189 |
*/
|
190 |
-
public function render_upgrade_metaslider_page()
|
|
|
191 |
include METASLIDER_PATH."admin/views/pages/upgrade.php";
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
if (empty($wp_rewrite)) $wp_rewrite = new WP_Rewrite();
|
246 |
-
if ('' == get_rest_url()) return false;
|
247 |
-
}
|
248 |
-
|
249 |
-
// Disable via removing from the <head> output, and non-default permalinks which mean that a default guess will not work
|
250 |
-
if (false === has_action('wp_head', 'rest_output_link_wp_head')) {
|
251 |
-
$permalink_structure = get_option('permalink_structure');
|
252 |
-
if (!$permalink_structure || false !== strpos($permalink_structure, 'index.php')) {
|
253 |
-
return false;
|
254 |
-
}
|
255 |
-
}
|
256 |
-
|
257 |
-
// Plugins which, when active, disable REST. Do not add a plugin which merely has an *option* to disable REST. (For that, we will need further logic, to detect the option setting).
|
258 |
-
$plugins = array(
|
259 |
-
'disable-permanently-rest-api' => 'Disable Permanently REST API',
|
260 |
-
);
|
261 |
-
|
262 |
-
$slugs = array_keys($plugins);
|
263 |
-
|
264 |
-
$active_plugins = get_option('active_plugins');
|
265 |
-
if (!is_array($active_plugins)) $active_plugins = array();
|
266 |
-
if (is_multisite()) $active_plugins = array_merge($active_plugins, array_keys(get_site_option('active_sitewide_plugins', array())));
|
267 |
-
|
268 |
-
// Loops around each plugin available.
|
269 |
-
foreach ($active_plugins as $value) {
|
270 |
-
if (!preg_match('#^([^/]+)/#', $value, $matches)) continue;
|
271 |
-
if (in_array($matches[1], $slugs)) return false;
|
272 |
-
}
|
273 |
-
|
274 |
-
return true;
|
275 |
-
}
|
276 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
}
|
1 |
<?php
|
2 |
|
3 |
+
if (!defined('ABSPATH')) {
|
4 |
+
die('No direct access.');
|
5 |
+
}
|
6 |
|
7 |
/**
|
8 |
* Entry point for building the wordpress admin pages.
|
9 |
* Temporarily extends the MetaSlider Class until more refactoring can be done.
|
10 |
*/
|
11 |
+
class MetaSlider_Admin_Pages extends MetaSliderPlugin
|
12 |
+
{
|
13 |
|
14 |
/**
|
15 |
* The MetaSlider plugin class
|
17 |
* @var object $plugin
|
18 |
*/
|
19 |
private $plugin;
|
20 |
+
|
21 |
/**
|
22 |
* The current admin page
|
23 |
*
|
30 |
*
|
31 |
* @param array $plugin Plugin details
|
32 |
*/
|
33 |
+
public function __construct($plugin)
|
34 |
+
{
|
35 |
$this->plugin = $plugin;
|
36 |
+
$this->notices = new MetaSlider_Notices($plugin);
|
37 |
add_action('admin_enqueue_scripts', array($this, 'load_upgrade_page_assets'));
|
38 |
}
|
39 |
|
40 |
/**
|
41 |
* Loads in the overlay assets
|
42 |
*/
|
43 |
+
public function load_overlay()
|
44 |
+
{
|
45 |
wp_enqueue_style('metaslider-colorbox-styles', METASLIDER_ADMIN_URL . 'assets/vendor/colorbox/colorbox.css', false, METASLIDER_VERSION);
|
46 |
wp_enqueue_script('metaslider-colorbox', METASLIDER_ADMIN_URL . 'assets/vendor/colorbox/jquery.colorbox-min.js', array('jquery'), METASLIDER_VERSION, true);
|
47 |
}
|
48 |
+
|
49 |
/**
|
50 |
* Loads in tooltips
|
51 |
*/
|
52 |
+
public function load_tooltips()
|
53 |
+
{
|
54 |
wp_enqueue_style('metaslider-tipsy-styles', METASLIDER_ADMIN_URL . 'assets/vendor/tipsy/tipsy.css', false, METASLIDER_VERSION);
|
55 |
wp_enqueue_script('metaslider-tipsy', METASLIDER_ADMIN_URL . 'assets/vendor/tipsy/jquery.tipsy.js', array('jquery'), METASLIDER_VERSION, true);
|
56 |
}
|
57 |
|
58 |
/**
|
59 |
* Loads in custom javascript
|
60 |
+
*/
|
61 |
+
public function load_javascript()
|
62 |
+
{
|
63 |
wp_enqueue_media();
|
64 |
wp_enqueue_script('jquery-ui-core');
|
65 |
+
wp_enqueue_script('jquery-ui-sortable');
|
66 |
+
|
67 |
+
wp_register_script('metaslider-admin-script', METASLIDER_ADMIN_URL . 'assets/dist/js/admin-' . sanitize_title(METASLIDER_VERSION) . '.js', array('jquery'), METASLIDER_VERSION, true);
|
68 |
wp_localize_script('metaslider-admin-script', 'metaslider', array(
|
69 |
'url' => __("URL", "ml-slider"),
|
70 |
'caption' => __("Caption", "ml-slider"),
|
87 |
'useWithCaution' => __("Caution: This setting is for advanced developers only. If you're unsure, leave it checked.", "ml-slider")
|
88 |
));
|
89 |
wp_enqueue_script('metaslider-admin-script');
|
90 |
+
do_action('metaslider_register_admin_scripts');
|
91 |
+
|
92 |
+
// Register components and add support for the REST API / Admin AJAX
|
93 |
+
do_action('metaslider_register_admin_components');
|
94 |
+
$dev = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG;
|
95 |
+
wp_register_script('metaslider-admin-components', METASLIDER_ADMIN_URL . 'assets/dist/js/app-' . sanitize_title(METASLIDER_VERSION) . ($dev ? '' : '.min') . '.js', array(), METASLIDER_VERSION, true);
|
96 |
+
|
97 |
+
// Check if rest is available
|
98 |
+
$is_rest_enabled = $this->is_rest_enabled();
|
99 |
+
|
100 |
+
wp_localize_script('metaslider-admin-components', 'metaslider_api', array(
|
101 |
+
'root' => $is_rest_enabled ? esc_url_raw(rest_url("metaslider/v1/")) : false,
|
102 |
+
'nonce' => wp_create_nonce('wp_rest'),
|
103 |
+
'ajaxurl' => admin_url('admin-ajax.php'),
|
104 |
+
'proUser' => metaslider_pro_is_active(),
|
105 |
+
'hoplink' => metaslider_get_upgrade_link(),
|
106 |
+
'metaslider_admin_assets' => METASLIDER_ADMIN_ASSETS_URL,
|
107 |
+
'metaslider_page' => admin_url('admin.php?page=metaslider'),
|
108 |
+
'theme_editor_link' => admin_url('admin.php?page=metaslider-theme-editor'),
|
109 |
+
'supports_rest' => $is_rest_enabled,
|
110 |
+
'locale' => $this->gutenberg_get_jed_locale_data('ml-slider'),
|
111 |
+
'default_locale' => $this->gutenberg_get_jed_locale_data('default'),
|
112 |
+
'current_server_time' => current_time('mysql')
|
113 |
+
));
|
114 |
+
wp_enqueue_script('metaslider-admin-components');
|
115 |
}
|
116 |
+
|
117 |
/**
|
118 |
* Loads in custom styling for upgrade page
|
119 |
+
*/
|
120 |
+
public function load_upgrade_page_assets()
|
121 |
+
{
|
122 |
if ('upgrade-metaslider' == $this->current_page) {
|
123 |
+
wp_enqueue_style('metaslider-upgrade-styles', METASLIDER_ADMIN_URL . 'assets/css/upgrade.css', false, METASLIDER_VERSION);
|
124 |
}
|
125 |
}
|
126 |
+
|
127 |
/**
|
128 |
* Loads in custom styling
|
129 |
+
*/
|
130 |
+
public function load_styles()
|
131 |
+
{
|
132 |
+
wp_enqueue_style('metaslider-shepherd-css', METASLIDER_ADMIN_URL . 'assets/tether-shepherd/dist/css/shepherd-theme-arrows.css', false, METASLIDER_VERSION);
|
133 |
+
wp_enqueue_style('metaslider-admin-styles', METASLIDER_ADMIN_URL . 'assets/dist/css/admin-' . sanitize_title(METASLIDER_VERSION) . '.css', false, METASLIDER_VERSION);
|
134 |
|
135 |
// Hook to load more styles and scripts (from pro)
|
136 |
do_action('metaslider_register_admin_styles');
|
138 |
|
139 |
/**
|
140 |
* Area used to handle any third-party plugin conflicts
|
141 |
+
*/
|
142 |
+
public function fix_conflicts()
|
143 |
+
{
|
144 |
|
145 |
// WP Posts Filter Fix (Advanced Settings not toggling)
|
146 |
+
wp_dequeue_script('link');
|
147 |
|
148 |
// All In One Events Calendar Fix (Advanced Settings not toggling)
|
149 |
+
wp_dequeue_script('ai1ec_requirejs');
|
150 |
}
|
151 |
+
|
152 |
/**
|
153 |
* Method to add pages
|
154 |
*
|
156 |
* @param string $slug - The slug used for the page
|
157 |
* @param string $parent - Setting a parent will make this page a submenu item
|
158 |
*/
|
159 |
+
public function add_page($title, $slug = '', $parent = '')
|
160 |
+
{
|
161 |
$slug = ('' == $slug) ? sanitize_title($title) : $slug;
|
162 |
$method = 'render_'.str_replace("-", "_", $slug).'_page';
|
163 |
if (!method_exists($this, $method)) {
|
164 |
return false;
|
165 |
}
|
166 |
$this->current_page = $slug;
|
167 |
+
$capability = apply_filters('metaslider_capability', 'edit_others_posts');
|
168 |
+
|
169 |
+
$dashboard_icon = 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(dirname(__FILE__) . '/assets/metaslider.svg'));
|
170 |
|
171 |
$page = ('' == $parent) ? add_menu_page($title, $title, $capability, $slug, array($this, $method), $dashboard_icon) : add_submenu_page($parent, $title, $title, $capability, $slug, array($this, $method));
|
172 |
+
|
173 |
// Load assets on all pages
|
174 |
add_action('load-' . $page, array($this, 'fix_conflicts'));
|
175 |
add_action('load-' . $page, array($this, 'load_overlay'));
|
176 |
add_action('load-' . $page, array($this, 'load_tooltips'));
|
177 |
add_action('load-' . $page, array($this, 'load_javascript'));
|
178 |
add_action('load-' . $page, array($this, 'load_styles'));
|
179 |
+
}
|
180 |
|
181 |
/**
|
182 |
* Sets up any logic needed for the main page
|
183 |
* TODO continue refactoring from here
|
184 |
*/
|
185 |
+
public function render_metaslider_page()
|
186 |
+
{
|
187 |
+
parent::render_admin_page();
|
188 |
}
|
189 |
|
190 |
+
/**
|
191 |
* Sets up any logic needed for the main page
|
192 |
* TODO continue refactoring from here
|
193 |
*/
|
194 |
+
public function render_metaslider_settings_page()
|
195 |
+
{
|
196 |
include METASLIDER_PATH."admin/views/pages/settings.php";
|
197 |
}
|
198 |
|
199 |
/**
|
200 |
* Sets up any logic needed for the upgrade page
|
201 |
*/
|
202 |
+
public function render_upgrade_metaslider_page()
|
203 |
+
{
|
204 |
include METASLIDER_PATH."admin/views/pages/upgrade.php";
|
205 |
+
}
|
206 |
+
|
207 |
+
/**
|
208 |
+
* Backup function for Gutenberg's gutenberg_get_jed_locale_data
|
209 |
+
*
|
210 |
+
* @param string $domain - The text domain for the strings
|
211 |
+
*/
|
212 |
+
private function gutenberg_get_jed_locale_data($domain)
|
213 |
+
{
|
214 |
+
if (function_exists('gutenberg_get_jed_locale_data')) {
|
215 |
+
return gutenberg_get_jed_locale_data($domain);
|
216 |
+
}
|
217 |
+
|
218 |
+
$translations = get_translations_for_domain($domain);
|
219 |
+
$locale = array(
|
220 |
+
'' => array(
|
221 |
+
'domain' => $domain,
|
222 |
+
'lang' => is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale(),
|
223 |
+
),
|
224 |
+
);
|
225 |
+
|
226 |
+
if (!empty($translations->headers['Plural-Forms'])) {
|
227 |
+
$locale['']['plural_forms'] = $translations->headers['Plural-Forms'];
|
228 |
+
}
|
229 |
+
|
230 |
+
foreach ($translations->entries as $msgid => $entry) {
|
231 |
+
$locale[$msgid] = $entry->translations;
|
232 |
+
}
|
233 |
+
return $locale;
|
234 |
+
}
|
235 |
+
|
236 |
+
/**
|
237 |
+
* The main purpose of this is to try to detect that REST is *disabled*. That can be done in many ways, so the results will not be 100% successful in catching all possibilities.
|
238 |
+
*
|
239 |
+
* @return Boolean
|
240 |
+
*/
|
241 |
+
private function is_rest_enabled()
|
242 |
+
{
|
243 |
+
|
244 |
+
// Let users override
|
245 |
+
if (defined('METASLIDER_FORCE_ADMIN_AJAX') && METASLIDER_FORCE_ADMIN_AJAX) {
|
246 |
+
return false;
|
247 |
+
}
|
248 |
+
|
249 |
+
// < WP 4.4
|
250 |
+
if (!class_exists('WP_REST_Controller')) {
|
251 |
+
return false;
|
252 |
+
}
|
253 |
+
|
254 |
+
// A pre-WP 4.7 filter (deprecated in 4.7)
|
255 |
+
if (!(bool) apply_filters('rest_enabled', true)) {
|
256 |
+
return false;
|
257 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
|
259 |
+
// Some plugins remove this
|
260 |
+
if (!has_action('init', 'rest_api_init')) {
|
261 |
+
return false;
|
262 |
+
}
|
263 |
+
|
264 |
+
// Disable via blanking the URL
|
265 |
+
if (function_exists('get_rest_url') && class_exists('WP_Rewrite')) {
|
266 |
+
global $wp_rewrite;
|
267 |
+
if (empty($wp_rewrite)) {
|
268 |
+
$wp_rewrite = new WP_Rewrite();
|
269 |
+
}
|
270 |
+
if ('' == get_rest_url()) {
|
271 |
+
return false;
|
272 |
+
}
|
273 |
+
}
|
274 |
+
|
275 |
+
// Disable via removing from the <head> output, and non-default permalinks which mean that a default guess will not work
|
276 |
+
if (false === has_action('wp_head', 'rest_output_link_wp_head')) {
|
277 |
+
$permalink_structure = get_option('permalink_structure');
|
278 |
+
if (!$permalink_structure || false !== strpos($permalink_structure, 'index.php')) {
|
279 |
+
return false;
|
280 |
+
}
|
281 |
+
}
|
282 |
+
|
283 |
+
// Plugins which, when active, disable REST. Do not add a plugin which merely has an *option* to disable REST. (For that, we will need further logic, to detect the option setting).
|
284 |
+
$plugins = array(
|
285 |
+
'disable-permanently-rest-api' => 'Disable Permanently REST API',
|
286 |
+
);
|
287 |
+
|
288 |
+
$slugs = array_keys($plugins);
|
289 |
+
|
290 |
+
$active_plugins = get_option('active_plugins');
|
291 |
+
if (!is_array($active_plugins)) {
|
292 |
+
$active_plugins = array();
|
293 |
+
}
|
294 |
+
if (is_multisite()) {
|
295 |
+
$active_plugins = array_merge($active_plugins, array_keys(get_site_option('active_sitewide_plugins', array())));
|
296 |
+
}
|
297 |
+
|
298 |
+
// Loops around each plugin available.
|
299 |
+
foreach ($active_plugins as $value) {
|
300 |
+
if (!preg_match('#^([^/]+)/#', $value, $matches)) {
|
301 |
+
continue;
|
302 |
+
}
|
303 |
+
if (in_array($matches[1], $slugs)) {
|
304 |
+
return false;
|
305 |
+
}
|
306 |
+
}
|
307 |
+
|
308 |
+
return true;
|
309 |
+
}
|
310 |
}
|
admin/assets/css/admin-3-17-1.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.5}*,::before,::after{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}button,[role="button"]{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}pre,code,kbd,samp{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding-top:.5rem;padding-right:.75rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5}.form-input::-moz-placeholder{color:#9fa6b2;opacity:1}.form-input:-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-input::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-input::placeholder{color:#9fa6b2;opacity:1}.form-input:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,0.45);border-color:#a4cafe}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding-top:.5rem;padding-right:.75rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5}.form-textarea::-moz-placeholder{color:#9fa6b2;opacity:1}.form-textarea:-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::placeholder{color:#9fa6b2;opacity:1}.form-textarea:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,0.45);border-color:#a4cafe}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding-top:.5rem;padding-right:.75rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5}.form-multiselect:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,0.45);border-color:#a4cafe}.form-select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding-top:.5rem;padding-right:2.5rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.form-select::-ms-expand{color:#9fa6b2;border:0}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,0.45);border-color:#a4cafe}.form-checkbox:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media not print{.form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.25rem}.form-checkbox:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,0.45);border-color:#a4cafe}.form-checkbox:checked:focus{border-color:transparent}.form-radio:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media not print{.form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;border-radius:100%;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px}.form-radio:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,0.45);border-color:#a4cafe}.form-radio:checked:focus{border-color:transparent}.ms-toolbar-button{display:flex !important;flex-direction:column !important;justify-content:flex-end !important;align-items:center !important;height:100% !important;padding-bottom:1rem !important;padding-left:.5rem !important;padding-right:.5rem !important;line-height:1 !important;--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important;transition-property:all !important;transition-duration:300ms !important;transition-timing-function:cubic-bezier(0.4,0,1,1) !important;text-decoration:none !important}.ms-toolbar-button:hover,.ms-toolbar-button:active{outline:0 !important;--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important;--text-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--text-opacity)) !important}.ms-toolbar-button:focus{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.ms-toolbar-button.disabled{--text-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--text-opacity)) !important}.ms-toolbar-button span{font-size:.7rem !important;padding-top:.35rem !important;white-space:nowrap !important}.metaslider-tour{z-index:2147483647 !important;max-width:20rem !important}.metaslider-tour .shepherd-content{border-radius:.25rem !important;box-shadow:0 5px 25px rgba(0,0,0,0.17) !important}.metaslider-tour header{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important;border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important;padding-top:.75rem !important;padding-bottom:.75rem !important;padding-left:1rem !important;padding-right:1rem !important}.metaslider-tour header h3{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important;font-size:1.125rem !important;margin:0 !important}.metaslider-tour .shepherd-text{font-size:1.125rem !important;display:flex !important;align-items:center !important;padding:1rem !important;--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important;--text-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--text-opacity)) !important;text-align:left !important}.metaslider-tour .shepherd-text>*{font-size:1.125rem !important;margin:0 !important}.shepherd-element.shepherd-has-title .shepherd-content header a.shepherd-cancel-link{opacity:.75;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));font-size:.875rem;border-width:1px;--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity));height:1.5rem;width:1.5rem;padding:0;text-align:center;float:none;position:absolute;border-radius:9999px;line-height:21px !important;right:11px !important;top:9px !important}.shepherd-element.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::after{position:absolute;font-size:1.125rem;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));content:'\f335';-webkit-font-smoothing:antialiased !important;-moz-osx-font-smoothing:grayscale !important;font-family:dashicons !important;left:2px !important;top:1px !important}.metaslider-tour.shepherd-element-attached-top .shepherd-content:before{border-bottom-color:#e1642e !important}.metaslider-tour.shepherd-element-attached-bottom.shepherd-element-attached-right .shepherd-content:before{top:100%;left:100%;margin-left:-50px;border-top-color:#fff}.metaslider-tour.shepherd-element-attached-top.shepherd-element-attached-right .shepherd-content:before{top:auto !important;left:auto !important;right:26px !important;border-left-color:transparent !important;border-top-color:transparent !important;border-right-color:transparent !important;border-bottom-color:#e1642e !important}.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before{display:block}body.shepherd-active[data-shepherd-step='preview'],body.shepherd-active[data-shepherd-step='add-slide']{position:fixed;width:100%}body.shepherd-active[data-shepherd-step='preview'] #ms-form-settings>.container,body.shepherd-active[data-shepherd-step='add-slide'] #ms-form-settings>.container{-webkit-filter:blur(3px);filter:blur(3px);pointer-events:none}.space-y-0>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0px * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0px * var(--space-y-reverse)) !important}.space-x-0>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0px * var(--space-x-reverse)) !important;margin-left:calc(0px * calc(1 - var(--space-x-reverse))) !important}.space-y-1>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.25rem * var(--space-y-reverse)) !important}.space-x-1>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.25rem * var(--space-x-reverse)) !important;margin-left:calc(0.25rem * calc(1 - var(--space-x-reverse))) !important}.space-y-2>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.5rem * var(--space-y-reverse)) !important}.space-x-2>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.5rem * var(--space-x-reverse)) !important;margin-left:calc(0.5rem * calc(1 - var(--space-x-reverse))) !important}.space-y-3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.75rem * var(--space-y-reverse)) !important}.space-x-3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.75rem * var(--space-x-reverse)) !important;margin-left:calc(0.75rem * calc(1 - var(--space-x-reverse))) !important}.space-y-4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1rem * var(--space-y-reverse)) !important}.space-x-4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1rem * var(--space-x-reverse)) !important;margin-left:calc(1rem * calc(1 - var(--space-x-reverse))) !important}.space-y-5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1.25rem * var(--space-y-reverse)) !important}.space-x-5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1.25rem * var(--space-x-reverse)) !important;margin-left:calc(1.25rem * calc(1 - var(--space-x-reverse))) !important}.space-y-6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1.5rem * var(--space-y-reverse)) !important}.space-x-6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1.5rem * var(--space-x-reverse)) !important;margin-left:calc(1.5rem * calc(1 - var(--space-x-reverse))) !important}.space-y-7>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1.75rem * var(--space-y-reverse)) !important}.space-x-7>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1.75rem * var(--space-x-reverse)) !important;margin-left:calc(1.75rem * calc(1 - var(--space-x-reverse))) !important}.space-y-8>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(2rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(2rem * var(--space-y-reverse)) !important}.space-x-8>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(2rem * var(--space-x-reverse)) !important;margin-left:calc(2rem * calc(1 - var(--space-x-reverse))) !important}.space-y-9>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(2.25rem * var(--space-y-reverse)) !important}.space-x-9>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(2.25rem * var(--space-x-reverse)) !important;margin-left:calc(2.25rem * calc(1 - var(--space-x-reverse))) !important}.space-y-10>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(2.5rem * var(--space-y-reverse)) !important}.space-x-10>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(2.5rem * var(--space-x-reverse)) !important;margin-left:calc(2.5rem * calc(1 - var(--space-x-reverse))) !important}.space-y-11>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(2.75rem * var(--space-y-reverse)) !important}.space-x-11>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(2.75rem * var(--space-x-reverse)) !important;margin-left:calc(2.75rem * calc(1 - var(--space-x-reverse))) !important}.space-y-12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(3rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(3rem * var(--space-y-reverse)) !important}.space-x-12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(3rem * var(--space-x-reverse)) !important;margin-left:calc(3rem * calc(1 - var(--space-x-reverse))) !important}.space-y-13>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(3.25rem * var(--space-y-reverse)) !important}.space-x-13>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(3.25rem * var(--space-x-reverse)) !important;margin-left:calc(3.25rem * calc(1 - var(--space-x-reverse))) !important}.space-y-14>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(3.5rem * var(--space-y-reverse)) !important}.space-x-14>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(3.5rem * var(--space-x-reverse)) !important;margin-left:calc(3.5rem * calc(1 - var(--space-x-reverse))) !important}.space-y-15>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(3.75rem * var(--space-y-reverse)) !important}.space-x-15>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(3.75rem * var(--space-x-reverse)) !important;margin-left:calc(3.75rem * calc(1 - var(--space-x-reverse))) !important}.space-y-16>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(4rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(4rem * var(--space-y-reverse)) !important}.space-x-16>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(4rem * var(--space-x-reverse)) !important;margin-left:calc(4rem * calc(1 - var(--space-x-reverse))) !important}.space-y-20>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(5rem * var(--space-y-reverse)) !important}.space-x-20>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(5rem * var(--space-x-reverse)) !important;margin-left:calc(5rem * calc(1 - var(--space-x-reverse))) !important}.space-y-24>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(6rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(6rem * var(--space-y-reverse)) !important}.space-x-24>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(6rem * var(--space-x-reverse)) !important;margin-left:calc(6rem * calc(1 - var(--space-x-reverse))) !important}.space-y-28>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(7rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(7rem * var(--space-y-reverse)) !important}.space-x-28>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(7rem * var(--space-x-reverse)) !important;margin-left:calc(7rem * calc(1 - var(--space-x-reverse))) !important}.space-y-32>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(8rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(8rem * var(--space-y-reverse)) !important}.space-x-32>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(8rem * var(--space-x-reverse)) !important;margin-left:calc(8rem * calc(1 - var(--space-x-reverse))) !important}.space-y-36>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(9rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(9rem * var(--space-y-reverse)) !important}.space-x-36>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(9rem * var(--space-x-reverse)) !important;margin-left:calc(9rem * calc(1 - var(--space-x-reverse))) !important}.space-y-40>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(10rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(10rem * var(--space-y-reverse)) !important}.space-x-40>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(10rem * var(--space-x-reverse)) !important;margin-left:calc(10rem * calc(1 - var(--space-x-reverse))) !important}.space-y-48>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(12rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(12rem * var(--space-y-reverse)) !important}.space-x-48>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(12rem * var(--space-x-reverse)) !important;margin-left:calc(12rem * calc(1 - var(--space-x-reverse))) !important}.space-y-56>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(14rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(14rem * var(--space-y-reverse)) !important}.space-x-56>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(14rem * var(--space-x-reverse)) !important;margin-left:calc(14rem * calc(1 - var(--space-x-reverse))) !important}.space-y-60>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(15rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(15rem * var(--space-y-reverse)) !important}.space-x-60>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(15rem * var(--space-x-reverse)) !important;margin-left:calc(15rem * calc(1 - var(--space-x-reverse))) !important}.space-y-64>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(16rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(16rem * var(--space-y-reverse)) !important}.space-x-64>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(16rem * var(--space-x-reverse)) !important;margin-left:calc(16rem * calc(1 - var(--space-x-reverse))) !important}.space-y-72>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(18rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(18rem * var(--space-y-reverse)) !important}.space-x-72>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(18rem * var(--space-x-reverse)) !important;margin-left:calc(18rem * calc(1 - var(--space-x-reverse))) !important}.space-y-80>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(20rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(20rem * var(--space-y-reverse)) !important}.space-x-80>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(20rem * var(--space-x-reverse)) !important;margin-left:calc(20rem * calc(1 - var(--space-x-reverse))) !important}.space-y-96>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(24rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(24rem * var(--space-y-reverse)) !important}.space-x-96>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(24rem * var(--space-x-reverse)) !important;margin-left:calc(24rem * calc(1 - var(--space-x-reverse))) !important}.space-y-px>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1px * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1px * var(--space-y-reverse)) !important}.space-x-px>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1px * var(--space-x-reverse)) !important;margin-left:calc(1px * calc(1 - var(--space-x-reverse))) !important}.space-y-0\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.125rem * var(--space-y-reverse)) !important}.space-x-0\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.125rem * var(--space-x-reverse)) !important;margin-left:calc(0.125rem * calc(1 - var(--space-x-reverse))) !important}.space-y-1\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.375rem * var(--space-y-reverse)) !important}.space-x-1\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.375rem * var(--space-x-reverse)) !important;margin-left:calc(0.375rem * calc(1 - var(--space-x-reverse))) !important}.space-y-2\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.625rem * var(--space-y-reverse)) !important}.space-x-2\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.625rem * var(--space-x-reverse)) !important;margin-left:calc(0.625rem * calc(1 - var(--space-x-reverse))) !important}.space-y-3\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.875rem * var(--space-y-reverse)) !important}.space-x-3\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.875rem * var(--space-x-reverse)) !important;margin-left:calc(0.875rem * calc(1 - var(--space-x-reverse))) !important}.space-y-1\/2>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(50% * var(--space-y-reverse)) !important}.space-x-1\/2>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(50% * var(--space-x-reverse)) !important;margin-left:calc(50% * calc(1 - var(--space-x-reverse))) !important}.space-y-1\/3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(33.333333% * var(--space-y-reverse)) !important}.space-x-1\/3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(33.333333% * var(--space-x-reverse)) !important;margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse))) !important}.space-y-2\/3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(66.666667% * var(--space-y-reverse)) !important}.space-x-2\/3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(66.666667% * var(--space-x-reverse)) !important;margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse))) !important}.space-y-1\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(25% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(25% * var(--space-y-reverse)) !important}.space-x-1\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(25% * var(--space-x-reverse)) !important;margin-left:calc(25% * calc(1 - var(--space-x-reverse))) !important}.space-y-2\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(50% * var(--space-y-reverse)) !important}.space-x-2\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(50% * var(--space-x-reverse)) !important;margin-left:calc(50% * calc(1 - var(--space-x-reverse))) !important}.space-y-3\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(75% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(75% * var(--space-y-reverse)) !important}.space-x-3\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(75% * var(--space-x-reverse)) !important;margin-left:calc(75% * calc(1 - var(--space-x-reverse))) !important}.space-y-1\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(20% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(20% * var(--space-y-reverse)) !important}.space-x-1\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(20% * var(--space-x-reverse)) !important;margin-left:calc(20% * calc(1 - var(--space-x-reverse))) !important}.space-y-2\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(40% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(40% * var(--space-y-reverse)) !important}.space-x-2\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(40% * var(--space-x-reverse)) !important;margin-left:calc(40% * calc(1 - var(--space-x-reverse))) !important}.space-y-3\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(60% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(60% * var(--space-y-reverse)) !important}.space-x-3\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(60% * var(--space-x-reverse)) !important;margin-left:calc(60% * calc(1 - var(--space-x-reverse))) !important}.space-y-4\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(80% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(80% * var(--space-y-reverse)) !important}.space-x-4\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(80% * var(--space-x-reverse)) !important;margin-left:calc(80% * calc(1 - var(--space-x-reverse))) !important}.space-y-1\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(16.666667% * var(--space-y-reverse)) !important}.space-x-1\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(16.666667% * var(--space-x-reverse)) !important;margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse))) !important}.space-y-2\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(33.333333% * var(--space-y-reverse)) !important}.space-x-2\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(33.333333% * var(--space-x-reverse)) !important;margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse))) !important}.space-y-3\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(50% * var(--space-y-reverse)) !important}.space-x-3\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(50% * var(--space-x-reverse)) !important;margin-left:calc(50% * calc(1 - var(--space-x-reverse))) !important}.space-y-4\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(66.666667% * var(--space-y-reverse)) !important}.space-x-4\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(66.666667% * var(--space-x-reverse)) !important;margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse))) !important}.space-y-5\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(83.333333% * var(--space-y-reverse)) !important}.space-x-5\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(83.333333% * var(--space-x-reverse)) !important;margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse))) !important}.space-y-1\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(8.333333% * var(--space-y-reverse)) !important}.space-x-1\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(8.333333% * var(--space-x-reverse)) !important;margin-left:calc(8.333333% * calc(1 - var(--space-x-reverse))) !important}.space-y-2\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(16.666667% * var(--space-y-reverse)) !important}.space-x-2\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(16.666667% * var(--space-x-reverse)) !important;margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse))) !important}.space-y-3\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(25% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(25% * var(--space-y-reverse)) !important}.space-x-3\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(25% * var(--space-x-reverse)) !important;margin-left:calc(25% * calc(1 - var(--space-x-reverse))) !important}.space-y-4\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(33.333333% * var(--space-y-reverse)) !important}.space-x-4\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(33.333333% * var(--space-x-reverse)) !important;margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse))) !important}.space-y-5\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(41.666667% * var(--space-y-reverse)) !important}.space-x-5\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(41.666667% * var(--space-x-reverse)) !important;margin-left:calc(41.666667% * calc(1 - var(--space-x-reverse))) !important}.space-y-6\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(50% * var(--space-y-reverse)) !important}.space-x-6\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(50% * var(--space-x-reverse)) !important;margin-left:calc(50% * calc(1 - var(--space-x-reverse))) !important}.space-y-7\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(58.333333% * var(--space-y-reverse)) !important}.space-x-7\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(58.333333% * var(--space-x-reverse)) !important;margin-left:calc(58.333333% * calc(1 - var(--space-x-reverse))) !important}.space-y-8\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(66.666667% * var(--space-y-reverse)) !important}.space-x-8\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(66.666667% * var(--space-x-reverse)) !important;margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse))) !important}.space-y-9\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(75% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(75% * var(--space-y-reverse)) !important}.space-x-9\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(75% * var(--space-x-reverse)) !important;margin-left:calc(75% * calc(1 - var(--space-x-reverse))) !important}.space-y-10\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(83.333333% * var(--space-y-reverse)) !important}.space-x-10\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(83.333333% * var(--space-x-reverse)) !important;margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse))) !important}.space-y-11\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(91.666667% * var(--space-y-reverse)) !important}.space-x-11\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(91.666667% * var(--space-x-reverse)) !important;margin-left:calc(91.666667% * calc(1 - var(--space-x-reverse))) !important}.space-y-full>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(100% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(100% * var(--space-y-reverse)) !important}.space-x-full>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(100% * var(--space-x-reverse)) !important;margin-left:calc(100% * calc(1 - var(--space-x-reverse))) !important}.-space-y-1>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.25rem * var(--space-y-reverse)) !important}.-space-x-1>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.25rem * var(--space-x-reverse)) !important;margin-left:calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-2>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.5rem * var(--space-y-reverse)) !important}.-space-x-2>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.5rem * var(--space-x-reverse)) !important;margin-left:calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.75rem * var(--space-y-reverse)) !important}.-space-x-3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.75rem * var(--space-x-reverse)) !important;margin-left:calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1rem * var(--space-y-reverse)) !important}.-space-x-4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1rem * var(--space-x-reverse)) !important;margin-left:calc(-1rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1.25rem * var(--space-y-reverse)) !important}.-space-x-5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1.25rem * var(--space-x-reverse)) !important;margin-left:calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1.5rem * var(--space-y-reverse)) !important}.-space-x-6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1.5rem * var(--space-x-reverse)) !important;margin-left:calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-7>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1.75rem * var(--space-y-reverse)) !important}.-space-x-7>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1.75rem * var(--space-x-reverse)) !important;margin-left:calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-8>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-2rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-2rem * var(--space-y-reverse)) !important}.-space-x-8>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-2rem * var(--space-x-reverse)) !important;margin-left:calc(-2rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-9>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-2.25rem * var(--space-y-reverse)) !important}.-space-x-9>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-2.25rem * var(--space-x-reverse)) !important;margin-left:calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-10>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-2.5rem * var(--space-y-reverse)) !important}.-space-x-10>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-2.5rem * var(--space-x-reverse)) !important;margin-left:calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-11>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-2.75rem * var(--space-y-reverse)) !important}.-space-x-11>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-2.75rem * var(--space-x-reverse)) !important;margin-left:calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-3rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-3rem * var(--space-y-reverse)) !important}.-space-x-12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-3rem * var(--space-x-reverse)) !important;margin-left:calc(-3rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-13>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-3.25rem * var(--space-y-reverse)) !important}.-space-x-13>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-3.25rem * var(--space-x-reverse)) !important;margin-left:calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-14>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-3.5rem * var(--space-y-reverse)) !important}.-space-x-14>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-3.5rem * var(--space-x-reverse)) !important;margin-left:calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-15>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-3.75rem * var(--space-y-reverse)) !important}.-space-x-15>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-3.75rem * var(--space-x-reverse)) !important;margin-left:calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-16>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-4rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-4rem * var(--space-y-reverse)) !important}.-space-x-16>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-4rem * var(--space-x-reverse)) !important;margin-left:calc(-4rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-20>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-5rem * var(--space-y-reverse)) !important}.-space-x-20>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-5rem * var(--space-x-reverse)) !important;margin-left:calc(-5rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-24>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-6rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-6rem * var(--space-y-reverse)) !important}.-space-x-24>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-6rem * var(--space-x-reverse)) !important;margin-left:calc(-6rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-28>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-7rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-7rem * var(--space-y-reverse)) !important}.-space-x-28>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-7rem * var(--space-x-reverse)) !important;margin-left:calc(-7rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-32>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-8rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-8rem * var(--space-y-reverse)) !important}.-space-x-32>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-8rem * var(--space-x-reverse)) !important;margin-left:calc(-8rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-36>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-9rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-9rem * var(--space-y-reverse)) !important}.-space-x-36>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-9rem * var(--space-x-reverse)) !important;margin-left:calc(-9rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-40>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-10rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-10rem * var(--space-y-reverse)) !important}.-space-x-40>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-10rem * var(--space-x-reverse)) !important;margin-left:calc(-10rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-48>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-12rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-12rem * var(--space-y-reverse)) !important}.-space-x-48>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-12rem * var(--space-x-reverse)) !important;margin-left:calc(-12rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-56>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-14rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-14rem * var(--space-y-reverse)) !important}.-space-x-56>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-14rem * var(--space-x-reverse)) !important;margin-left:calc(-14rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-60>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-15rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-15rem * var(--space-y-reverse)) !important}.-space-x-60>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-15rem * var(--space-x-reverse)) !important;margin-left:calc(-15rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-64>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-16rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-16rem * var(--space-y-reverse)) !important}.-space-x-64>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-16rem * var(--space-x-reverse)) !important;margin-left:calc(-16rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-72>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-18rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-18rem * var(--space-y-reverse)) !important}.-space-x-72>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-18rem * var(--space-x-reverse)) !important;margin-left:calc(-18rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-80>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-20rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-20rem * var(--space-y-reverse)) !important}.-space-x-80>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-20rem * var(--space-x-reverse)) !important;margin-left:calc(-20rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-96>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-24rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-24rem * var(--space-y-reverse)) !important}.-space-x-96>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-24rem * var(--space-x-reverse)) !important;margin-left:calc(-24rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-px>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1px * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1px * var(--space-y-reverse)) !important}.-space-x-px>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1px * var(--space-x-reverse)) !important;margin-left:calc(-1px * calc(1 - var(--space-x-reverse))) !important}.-space-y-0\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.125rem * var(--space-y-reverse)) !important}.-space-x-0\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.125rem * var(--space-x-reverse)) !important;margin-left:calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-1\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.375rem * var(--space-y-reverse)) !important}.-space-x-1\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.375rem * var(--space-x-reverse)) !important;margin-left:calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-2\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.625rem * var(--space-y-reverse)) !important}.-space-x-2\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.625rem * var(--space-x-reverse)) !important;margin-left:calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-3\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.875rem * var(--space-y-reverse)) !important}.-space-x-3\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.875rem * var(--space-x-reverse)) !important;margin-left:calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important}.-space-y-1\/2>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-50% * var(--space-y-reverse)) !important}.-space-x-1\/2>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-50% * var(--space-x-reverse)) !important;margin-left:calc(-50% * calc(1 - var(--space-x-reverse))) !important}.-space-y-1\/3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-33.33333% * var(--space-y-reverse)) !important}.-space-x-1\/3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-33.33333% * var(--space-x-reverse)) !important;margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important}.-space-y-2\/3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-66.66667% * var(--space-y-reverse)) !important}.-space-x-2\/3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-66.66667% * var(--space-x-reverse)) !important;margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important}.-space-y-1\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-25% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-25% * var(--space-y-reverse)) !important}.-space-x-1\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-25% * var(--space-x-reverse)) !important;margin-left:calc(-25% * calc(1 - var(--space-x-reverse))) !important}.-space-y-2\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-50% * var(--space-y-reverse)) !important}.-space-x-2\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-50% * var(--space-x-reverse)) !important;margin-left:calc(-50% * calc(1 - var(--space-x-reverse))) !important}.-space-y-3\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-75% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-75% * var(--space-y-reverse)) !important}.-space-x-3\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-75% * var(--space-x-reverse)) !important;margin-left:calc(-75% * calc(1 - var(--space-x-reverse))) !important}.-space-y-1\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-20% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-20% * var(--space-y-reverse)) !important}.-space-x-1\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-20% * var(--space-x-reverse)) !important;margin-left:calc(-20% * calc(1 - var(--space-x-reverse))) !important}.-space-y-2\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-40% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-40% * var(--space-y-reverse)) !important}.-space-x-2\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-40% * var(--space-x-reverse)) !important;margin-left:calc(-40% * calc(1 - var(--space-x-reverse))) !important}.-space-y-3\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-60% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-60% * var(--space-y-reverse)) !important}.-space-x-3\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-60% * var(--space-x-reverse)) !important;margin-left:calc(-60% * calc(1 - var(--space-x-reverse))) !important}.-space-y-4\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-80% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-80% * var(--space-y-reverse)) !important}.-space-x-4\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-80% * var(--space-x-reverse)) !important;margin-left:calc(-80% * calc(1 - var(--space-x-reverse))) !important}.-space-y-1\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-16.66667% * var(--space-y-reverse)) !important}.-space-x-1\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-16.66667% * var(--space-x-reverse)) !important;margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important}.-space-y-2\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-33.33333% * var(--space-y-reverse)) !important}.-space-x-2\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-33.33333% * var(--space-x-reverse)) !important;margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important}.-space-y-3\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-50% * var(--space-y-reverse)) !important}.-space-x-3\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-50% * var(--space-x-reverse)) !important;margin-left:calc(-50% * calc(1 - var(--space-x-reverse))) !important}.-space-y-4\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-66.66667% * var(--space-y-reverse)) !important}.-space-x-4\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-66.66667% * var(--space-x-reverse)) !important;margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important}.-space-y-5\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-83.33333% * var(--space-y-reverse)) !important}.-space-x-5\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-83.33333% * var(--space-x-reverse)) !important;margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important}.-space-y-1\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-8.33333% * var(--space-y-reverse)) !important}.-space-x-1\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-8.33333% * var(--space-x-reverse)) !important;margin-left:calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important}.-space-y-2\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-16.66667% * var(--space-y-reverse)) !important}.-space-x-2\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-16.66667% * var(--space-x-reverse)) !important;margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important}.-space-y-3\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-25% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-25% * var(--space-y-reverse)) !important}.-space-x-3\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-25% * var(--space-x-reverse)) !important;margin-left:calc(-25% * calc(1 - var(--space-x-reverse))) !important}.-space-y-4\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-33.33333% * var(--space-y-reverse)) !important}.-space-x-4\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-33.33333% * var(--space-x-reverse)) !important;margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important}.-space-y-5\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-41.66667% * var(--space-y-reverse)) !important}.-space-x-5\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-41.66667% * var(--space-x-reverse)) !important;margin-left:calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important}.-space-y-6\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-50% * var(--space-y-reverse)) !important}.-space-x-6\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-50% * var(--space-x-reverse)) !important;margin-left:calc(-50% * calc(1 - var(--space-x-reverse))) !important}.-space-y-7\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-58.33333% * var(--space-y-reverse)) !important}.-space-x-7\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-58.33333% * var(--space-x-reverse)) !important;margin-left:calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important}.-space-y-8\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-66.66667% * var(--space-y-reverse)) !important}.-space-x-8\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-66.66667% * var(--space-x-reverse)) !important;margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important}.-space-y-9\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-75% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-75% * var(--space-y-reverse)) !important}.-space-x-9\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-75% * var(--space-x-reverse)) !important;margin-left:calc(-75% * calc(1 - var(--space-x-reverse))) !important}.-space-y-10\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-83.33333% * var(--space-y-reverse)) !important}.-space-x-10\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-83.33333% * var(--space-x-reverse)) !important;margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important}.-space-y-11\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-91.66667% * var(--space-y-reverse)) !important}.-space-x-11\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-91.66667% * var(--space-x-reverse)) !important;margin-left:calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important}.-space-y-full>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-100% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-100% * var(--space-y-reverse)) !important}.-space-x-full>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-100% * var(--space-x-reverse)) !important;margin-left:calc(-100% * calc(1 - var(--space-x-reverse))) !important}.space-y-reverse>:not(template) ~ :not(template){--space-y-reverse:1 !important}.space-x-reverse>:not(template) ~ :not(template){--space-x-reverse:1 !important}.divide-y-0>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(0px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(0px * var(--divide-y-reverse)) !important}.divide-x-0>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(0px * var(--divide-x-reverse)) !important;border-left-width:calc(0px * calc(1 - var(--divide-x-reverse))) !important}.divide-y-2>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(2px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(2px * var(--divide-y-reverse)) !important}.divide-x-2>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(2px * var(--divide-x-reverse)) !important;border-left-width:calc(2px * calc(1 - var(--divide-x-reverse))) !important}.divide-y-4>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(4px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(4px * var(--divide-y-reverse)) !important}.divide-x-4>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(4px * var(--divide-x-reverse)) !important;border-left-width:calc(4px * calc(1 - var(--divide-x-reverse))) !important}.divide-y-8>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(8px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(8px * var(--divide-y-reverse)) !important}.divide-x-8>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(8px * var(--divide-x-reverse)) !important;border-left-width:calc(8px * calc(1 - var(--divide-x-reverse))) !important}.divide-y>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(1px * var(--divide-y-reverse)) !important}.divide-x>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(1px * var(--divide-x-reverse)) !important;border-left-width:calc(1px * calc(1 - var(--divide-x-reverse))) !important}.divide-y-reverse>:not(template) ~ :not(template){--divide-y-reverse:1 !important}.divide-x-reverse>:not(template) ~ :not(template){--divide-x-reverse:1 !important}.divide-transparent>:not(template) ~ :not(template){border-color:transparent !important}.divide-white>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--divide-opacity)) !important}.divide-blackest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--divide-opacity)) !important}.divide-blackest-70>:not(template) ~ :not(template){border-color:rgba(0,0,0,0.7) !important}.divide-black>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--divide-opacity)) !important}.divide-gray-darkest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--divide-opacity)) !important}.divide-gray-darker>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--divide-opacity)) !important}.divide-gray-dark>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--divide-opacity)) !important}.divide-gray>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--divide-opacity)) !important}.divide-gray-light>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--divide-opacity)) !important}.divide-gray-lighter>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--divide-opacity)) !important}.divide-gray-lightest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--divide-opacity)) !important}.divide-blue-darkest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--divide-opacity)) !important}.divide-blue-dark>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--divide-opacity)) !important}.divide-blue>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--divide-opacity)) !important}.divide-blue-light>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--divide-opacity)) !important}.divide-blue-highlight>:not(template) ~ :not(template){border-color:rgba(180,215,255,0.6) !important}.divide-orange>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--divide-opacity)) !important}.divide-orange-darker>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--divide-opacity)) !important}.divide-orange-darkest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--divide-opacity)) !important}.divide-red>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--divide-opacity)) !important}.divide-green>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--divide-opacity)) !important}.divide-yellow-400>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--divide-opacity)) !important}.divide-yellow-50>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--divide-opacity)) !important}.divide-opacity-0>:not(template) ~ :not(template){--divide-opacity:0 !important}.divide-opacity-25>:not(template) ~ :not(template){--divide-opacity:.25 !important}.divide-opacity-50>:not(template) ~ :not(template){--divide-opacity:.5 !important}.divide-opacity-75>:not(template) ~ :not(template){--divide-opacity:.75 !important}.divide-opacity-100>:not(template) ~ :not(template){--divide-opacity:1 !important}.sr-only{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border-width:0 !important}.not-sr-only{position:static !important;width:auto !important;height:auto !important;padding:0 !important;margin:0 !important;overflow:visible !important;clip:auto !important;white-space:normal !important}.focus\:sr-only:focus{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border-width:0 !important}.focus\:not-sr-only:focus{position:static !important;width:auto !important;height:auto !important;padding:0 !important;margin:0 !important;overflow:visible !important;clip:auto !important;white-space:normal !important}.appearance-none{-webkit-appearance:none !important;-moz-appearance:none !important;appearance:none !important}.bg-fixed{background-attachment:fixed !important}.bg-local{background-attachment:local !important}.bg-scroll{background-attachment:scroll !important}.bg-transparent{background-color:transparent !important}.bg-white{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.bg-blackest{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.bg-blackest-70{background-color:rgba(0,0,0,0.7) !important}.bg-black{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.bg-gray-darkest{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.bg-gray-darker{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.bg-gray-dark{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.bg-gray{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.bg-gray-light{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.bg-gray-lighter{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.bg-gray-lightest{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.bg-blue-darkest{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.bg-blue-dark{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.bg-blue{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.bg-blue-light{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.bg-blue-highlight{background-color:rgba(180,215,255,0.6) !important}.bg-orange{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.bg-orange-darker{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.bg-orange-darkest{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.bg-red{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.bg-green{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.bg-yellow-400{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.bg-yellow-50{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-transparent{background-color:transparent !important}.group:hover .group-hover\:bg-white{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-blackest{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-blackest-70{background-color:rgba(0,0,0,0.7) !important}.group:hover .group-hover\:bg-black{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-gray-darkest{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-gray-darker{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-gray-dark{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-gray{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-gray-light{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-gray-lighter{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-gray-lightest{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-blue-darkest{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-blue-dark{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-blue{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-blue-light{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,0.6) !important}.group:hover .group-hover\:bg-orange{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-orange-darker{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-orange-darkest{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-red{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-green{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-yellow-400{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.group:hover .group-hover\:bg-yellow-50{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-transparent{background-color:transparent !important}.group:focus .group-focus\:bg-white{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-blackest{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-blackest-70{background-color:rgba(0,0,0,0.7) !important}.group:focus .group-focus\:bg-black{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-gray-darkest{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-gray-darker{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-gray-dark{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-gray{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-gray-light{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-gray-lighter{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-gray-lightest{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-blue-darkest{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-blue-dark{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-blue{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-blue-light{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,0.6) !important}.group:focus .group-focus\:bg-orange{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-orange-darker{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-orange-darkest{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-red{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-green{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-yellow-400{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.group:focus .group-focus\:bg-yellow-50{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.hover\:bg-transparent:hover{background-color:transparent !important}.hover\:bg-white:hover{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.hover\:bg-blackest:hover{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,0.7) !important}.hover\:bg-black:hover{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.hover\:bg-gray-darkest:hover{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.hover\:bg-gray-darker:hover{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.hover\:bg-gray-dark:hover{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.hover\:bg-gray:hover{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.hover\:bg-gray-light:hover{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.hover\:bg-gray-lighter:hover{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.hover\:bg-gray-lightest:hover{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.hover\:bg-blue-darkest:hover{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.hover\:bg-blue-dark:hover{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.hover\:bg-blue:hover{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.hover\:bg-blue-light:hover{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,0.6) !important}.hover\:bg-orange:hover{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.hover\:bg-orange-darker:hover{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.hover\:bg-orange-darkest:hover{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.hover\:bg-red:hover{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.hover\:bg-green:hover{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.hover\:bg-yellow-400:hover{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.hover\:bg-yellow-50:hover{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.focus\:bg-transparent:focus{background-color:transparent !important}.focus\:bg-white:focus{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.focus\:bg-blackest:focus{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,0.7) !important}.focus\:bg-black:focus{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.focus\:bg-gray-darkest:focus{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.focus\:bg-gray-darker:focus{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.focus\:bg-gray-dark:focus{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.focus\:bg-gray:focus{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.focus\:bg-gray-light:focus{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.focus\:bg-gray-lighter:focus{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.focus\:bg-gray-lightest:focus{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.focus\:bg-blue-darkest:focus{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.focus\:bg-blue-dark:focus{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.focus\:bg-blue:focus{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.focus\:bg-blue-light:focus{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,0.6) !important}.focus\:bg-orange:focus{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.focus\:bg-orange-darker:focus{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.focus\:bg-orange-darkest:focus{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.focus\:bg-red:focus{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.focus\:bg-green:focus{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.focus\:bg-yellow-400:focus{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.focus\:bg-yellow-50:focus{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.active\:bg-transparent:active{background-color:transparent !important}.active\:bg-white:active{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.active\:bg-blackest:active{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.active\:bg-blackest-70:active{background-color:rgba(0,0,0,0.7) !important}.active\:bg-black:active{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.active\:bg-gray-darkest:active{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.active\:bg-gray-darker:active{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.active\:bg-gray-dark:active{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.active\:bg-gray:active{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.active\:bg-gray-light:active{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.active\:bg-gray-lighter:active{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.active\:bg-gray-lightest:active{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.active\:bg-blue-darkest:active{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.active\:bg-blue-dark:active{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.active\:bg-blue:active{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.active\:bg-blue-light:active{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.active\:bg-blue-highlight:active{background-color:rgba(180,215,255,0.6) !important}.active\:bg-orange:active{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.active\:bg-orange-darker:active{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.active\:bg-orange-darkest:active{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.active\:bg-red:active{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.active\:bg-green:active{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.active\:bg-yellow-400:active{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.active\:bg-yellow-50:active{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.bg-opacity-0{--bg-opacity:0 !important}.bg-opacity-25{--bg-opacity:.25 !important}.bg-opacity-50{--bg-opacity:.5 !important}.bg-opacity-75{--bg-opacity:.75 !important}.bg-opacity-100{--bg-opacity:1 !important}.hover\:bg-opacity-0:hover{--bg-opacity:0 !important}.hover\:bg-opacity-25:hover{--bg-opacity:.25 !important}.hover\:bg-opacity-50:hover{--bg-opacity:.5 !important}.hover\:bg-opacity-75:hover{--bg-opacity:.75 !important}.hover\:bg-opacity-100:hover{--bg-opacity:1 !important}.focus\:bg-opacity-0:focus{--bg-opacity:0 !important}.focus\:bg-opacity-25:focus{--bg-opacity:.25 !important}.focus\:bg-opacity-50:focus{--bg-opacity:.5 !important}.focus\:bg-opacity-75:focus{--bg-opacity:.75 !important}.focus\:bg-opacity-100:focus{--bg-opacity:1 !important}.bg-bottom{background-position:bottom !important}.bg-center{background-position:center !important}.bg-left{background-position:left !important}.bg-left-bottom{background-position:left bottom !important}.bg-left-top{background-position:left top !important}.bg-right{background-position:right !important}.bg-right-bottom{background-position:right bottom !important}.bg-right-top{background-position:right top !important}.bg-top{background-position:top !important}.bg-repeat{background-repeat:repeat !important}.bg-no-repeat{background-repeat:no-repeat !important}.bg-repeat-x{background-repeat:repeat-x !important}.bg-repeat-y{background-repeat:repeat-y !important}.bg-repeat-round{background-repeat:round !important}.bg-repeat-space{background-repeat:space !important}.bg-auto{background-size:auto !important}.bg-cover{background-size:cover !important}.bg-contain{background-size:contain !important}.border-collapse{border-collapse:collapse !important}.border-separate{border-collapse:separate !important}.border-transparent{border-color:transparent !important}.border-white{--border-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--border-opacity)) !important}.border-blackest{--border-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--border-opacity)) !important}.border-blackest-70{border-color:rgba(0,0,0,0.7) !important}.border-black{--border-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--border-opacity)) !important}.border-gray-darkest{--border-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--border-opacity)) !important}.border-gray-darker{--border-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--border-opacity)) !important}.border-gray-dark{--border-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--border-opacity)) !important}.border-gray{--border-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--border-opacity)) !important}.border-gray-light{--border-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--border-opacity)) !important}.border-gray-lighter{--border-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--border-opacity)) !important}.border-gray-lightest{--border-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--border-opacity)) !important}.border-blue-darkest{--border-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--border-opacity)) !important}.border-blue-dark{--border-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--border-opacity)) !important}.border-blue{--border-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--border-opacity)) !important}.border-blue-light{--border-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--border-opacity)) !important}.border-blue-highlight{border-color:rgba(180,215,255,0.6) !important}.border-orange{--border-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--border-opacity)) !important}.border-orange-darker{--border-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--border-opacity)) !important}.border-orange-darkest{--border-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--border-opacity)) !important}.border-red{--border-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--border-opacity)) !important}.border-green{--border-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--border-opacity)) !important}.border-yellow-400{--border-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--border-opacity)) !important}.border-yellow-50{--border-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--border-opacity)) !important}.hover\:border-transparent:hover{border-color:transparent !important}.hover\:border-white:hover{--border-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--border-opacity)) !important}.hover\:border-blackest:hover{--border-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--border-opacity)) !important}.hover\:border-blackest-70:hover{border-color:rgba(0,0,0,0.7) !important}.hover\:border-black:hover{--border-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--border-opacity)) !important}.hover\:border-gray-darkest:hover{--border-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--border-opacity)) !important}.hover\:border-gray-darker:hover{--border-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--border-opacity)) !important}.hover\:border-gray-dark:hover{--border-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--border-opacity)) !important}.hover\:border-gray:hover{--border-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--border-opacity)) !important}.hover\:border-gray-light:hover{--border-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--border-opacity)) !important}.hover\:border-gray-lighter:hover{--border-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--border-opacity)) !important}.hover\:border-gray-lightest:hover{--border-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--border-opacity)) !important}.hover\:border-blue-darkest:hover{--border-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--border-opacity)) !important}.hover\:border-blue-dark:hover{--border-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--border-opacity)) !important}.hover\:border-blue:hover{--border-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--border-opacity)) !important}.hover\:border-blue-light:hover{--border-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--border-opacity)) !important}.hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,0.6) !important}.hover\:border-orange:hover{--border-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--border-opacity)) !important}.hover\:border-orange-darker:hover{--border-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--border-opacity)) !important}.hover\:border-orange-darkest:hover{--border-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--border-opacity)) !important}.hover\:border-red:hover{--border-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--border-opacity)) !important}.hover\:border-green:hover{--border-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--border-opacity)) !important}.hover\:border-yellow-400:hover{--border-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--border-opacity)) !important}.hover\:border-yellow-50:hover{--border-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--border-opacity)) !important}.focus\:border-transparent:focus{border-color:transparent !important}.focus\:border-white:focus{--border-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--border-opacity)) !important}.focus\:border-blackest:focus{--border-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--border-opacity)) !important}.focus\:border-blackest-70:focus{border-color:rgba(0,0,0,0.7) !important}.focus\:border-black:focus{--border-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--border-opacity)) !important}.focus\:border-gray-darkest:focus{--border-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--border-opacity)) !important}.focus\:border-gray-darker:focus{--border-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--border-opacity)) !important}.focus\:border-gray-dark:focus{--border-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--border-opacity)) !important}.focus\:border-gray:focus{--border-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--border-opacity)) !important}.focus\:border-gray-light:focus{--border-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--border-opacity)) !important}.focus\:border-gray-lighter:focus{--border-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--border-opacity)) !important}.focus\:border-gray-lightest:focus{--border-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--border-opacity)) !important}.focus\:border-blue-darkest:focus{--border-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--border-opacity)) !important}.focus\:border-blue-dark:focus{--border-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--border-opacity)) !important}.focus\:border-blue:focus{--border-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--border-opacity)) !important}.focus\:border-blue-light:focus{--border-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--border-opacity)) !important}.focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,0.6) !important}.focus\:border-orange:focus{--border-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--border-opacity)) !important}.focus\:border-orange-darker:focus{--border-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--border-opacity)) !important}.focus\:border-orange-darkest:focus{--border-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--border-opacity)) !important}.focus\:border-red:focus{--border-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--border-opacity)) !important}.focus\:border-green:focus{--border-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--border-opacity)) !important}.focus\:border-yellow-400:focus{--border-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--border-opacity)) !important}.focus\:border-yellow-50:focus{--border-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--border-opacity)) !important}.group:hover .group-hover\:border-transparent{border-color:transparent !important}.group:hover .group-hover\:border-white{--border-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--border-opacity)) !important}.group:hover .group-hover\:border-blackest{--border-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--border-opacity)) !important}.group:hover .group-hover\:border-blackest-70{border-color:rgba(0,0,0,0.7) !important}.group:hover .group-hover\:border-black{--border-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--border-opacity)) !important}.group:hover .group-hover\:border-gray-darkest{--border-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--border-opacity)) !important}.group:hover .group-hover\:border-gray-darker{--border-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--border-opacity)) !important}.group:hover .group-hover\:border-gray-dark{--border-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--border-opacity)) !important}.group:hover .group-hover\:border-gray{--border-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--border-opacity)) !important}.group:hover .group-hover\:border-gray-light{--border-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--border-opacity)) !important}.group:hover .group-hover\:border-gray-lighter{--border-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--border-opacity)) !important}.group:hover .group-hover\:border-gray-lightest{--border-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--border-opacity)) !important}.group:hover .group-hover\:border-blue-darkest{--border-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--border-opacity)) !important}.group:hover .group-hover\:border-blue-dark{--border-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--border-opacity)) !important}.group:hover .group-hover\:border-blue{--border-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--border-opacity)) !important}.group:hover .group-hover\:border-blue-light{--border-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--border-opacity)) !important}.group:hover .group-hover\:border-blue-highlight{border-color:rgba(180,215,255,0.6) !important}.group:hover .group-hover\:border-orange{--border-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--border-opacity)) !important}.group:hover .group-hover\:border-orange-darker{--border-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--border-opacity)) !important}.group:hover .group-hover\:border-orange-darkest{--border-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--border-opacity)) !important}.group:hover .group-hover\:border-red{--border-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--border-opacity)) !important}.group:hover .group-hover\:border-green{--border-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--border-opacity)) !important}.group:hover .group-hover\:border-yellow-400{--border-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--border-opacity)) !important}.group:hover .group-hover\:border-yellow-50{--border-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--border-opacity)) !important}.border-opacity-0{--border-opacity:0 !important}.border-opacity-25{--border-opacity:.25 !important}.border-opacity-50{--border-opacity:.5 !important}.border-opacity-75{--border-opacity:.75 !important}.border-opacity-100{--border-opacity:1 !important}.hover\:border-opacity-0:hover{--border-opacity:0 !important}.hover\:border-opacity-25:hover{--border-opacity:.25 !important}.hover\:border-opacity-50:hover{--border-opacity:.5 !important}.hover\:border-opacity-75:hover{--border-opacity:.75 !important}.hover\:border-opacity-100:hover{--border-opacity:1 !important}.focus\:border-opacity-0:focus{--border-opacity:0 !important}.focus\:border-opacity-25:focus{--border-opacity:.25 !important}.focus\:border-opacity-50:focus{--border-opacity:.5 !important}.focus\:border-opacity-75:focus{--border-opacity:.75 !important}.focus\:border-opacity-100:focus{--border-opacity:1 !important}.rounded-none{border-radius:0 !important}.rounded-sm{border-radius:.125rem !important}.rounded{border-radius:.25rem !important}.rounded-md{border-radius:.375rem !important}.rounded-lg{border-radius:.5rem !important}.rounded-full{border-radius:9999px !important}.rounded-t-none{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-r-none{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-b-none{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-l-none{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-t-sm{border-top-left-radius:.125rem !important;border-top-right-radius:.125rem !important}.rounded-r-sm{border-top-right-radius:.125rem !important;border-bottom-right-radius:.125rem !important}.rounded-b-sm{border-bottom-right-radius:.125rem !important;border-bottom-left-radius:.125rem !important}.rounded-l-sm{border-top-left-radius:.125rem !important;border-bottom-left-radius:.125rem !important}.rounded-t{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-r{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-b{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-l{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-t-md{border-top-left-radius:.375rem !important;border-top-right-radius:.375rem !important}.rounded-r-md{border-top-right-radius:.375rem !important;border-bottom-right-radius:.375rem !important}.rounded-b-md{border-bottom-right-radius:.375rem !important;border-bottom-left-radius:.375rem !important}.rounded-l-md{border-top-left-radius:.375rem !important;border-bottom-left-radius:.375rem !important}.rounded-t-lg{border-top-left-radius:.5rem !important;border-top-right-radius:.5rem !important}.rounded-r-lg{border-top-right-radius:.5rem !important;border-bottom-right-radius:.5rem !important}.rounded-b-lg{border-bottom-right-radius:.5rem !important;border-bottom-left-radius:.5rem !important}.rounded-l-lg{border-top-left-radius:.5rem !important;border-bottom-left-radius:.5rem !important}.rounded-t-full{border-top-left-radius:9999px !important;border-top-right-radius:9999px !important}.rounded-r-full{border-top-right-radius:9999px !important;border-bottom-right-radius:9999px !important}.rounded-b-full{border-bottom-right-radius:9999px !important;border-bottom-left-radius:9999px !important}.rounded-l-full{border-top-left-radius:9999px !important;border-bottom-left-radius:9999px !important}.rounded-tl-none{border-top-left-radius:0 !important}.rounded-tr-none{border-top-right-radius:0 !important}.rounded-br-none{border-bottom-right-radius:0 !important}.rounded-bl-none{border-bottom-left-radius:0 !important}.rounded-tl-sm{border-top-left-radius:.125rem !important}.rounded-tr-sm{border-top-right-radius:.125rem !important}.rounded-br-sm{border-bottom-right-radius:.125rem !important}.rounded-bl-sm{border-bottom-left-radius:.125rem !important}.rounded-tl{border-top-left-radius:.25rem !important}.rounded-tr{border-top-right-radius:.25rem !important}.rounded-br{border-bottom-right-radius:.25rem !important}.rounded-bl{border-bottom-left-radius:.25rem !important}.rounded-tl-md{border-top-left-radius:.375rem !important}.rounded-tr-md{border-top-right-radius:.375rem !important}.rounded-br-md{border-bottom-right-radius:.375rem !important}.rounded-bl-md{border-bottom-left-radius:.375rem !important}.rounded-tl-lg{border-top-left-radius:.5rem !important}.rounded-tr-lg{border-top-right-radius:.5rem !important}.rounded-br-lg{border-bottom-right-radius:.5rem !important}.rounded-bl-lg{border-bottom-left-radius:.5rem !important}.rounded-tl-full{border-top-left-radius:9999px !important}.rounded-tr-full{border-top-right-radius:9999px !important}.rounded-br-full{border-bottom-right-radius:9999px !important}.rounded-bl-full{border-bottom-left-radius:9999px !important}.border-solid{border-style:solid !important}.border-dashed{border-style:dashed !important}.border-dotted{border-style:dotted !important}.border-double{border-style:double !important}.border-none{border-style:none !important}.border-0{border-width:0 !important}.border-2{border-width:2px !important}.border-4{border-width:4px !important}.border-8{border-width:8px !important}.border{border-width:1px !important}.border-t-0{border-top-width:0 !important}.border-r-0{border-right-width:0 !important}.border-b-0{border-bottom-width:0 !important}.border-l-0{border-left-width:0 !important}.border-t-2{border-top-width:2px !important}.border-r-2{border-right-width:2px !important}.border-b-2{border-bottom-width:2px !important}.border-l-2{border-left-width:2px !important}.border-t-4{border-top-width:4px !important}.border-r-4{border-right-width:4px !important}.border-b-4{border-bottom-width:4px !important}.border-l-4{border-left-width:4px !important}.border-t-8{border-top-width:8px !important}.border-r-8{border-right-width:8px !important}.border-b-8{border-bottom-width:8px !important}.border-l-8{border-left-width:8px !important}.border-t{border-top-width:1px !important}.border-r{border-right-width:1px !important}.border-b{border-bottom-width:1px !important}.border-l{border-left-width:1px !important}.box-border{box-sizing:border-box !important}.box-content{box-sizing:content-box !important}.cursor-auto{cursor:auto !important}.cursor-default{cursor:default !important}.cursor-pointer{cursor:pointer !important}.cursor-wait{cursor:wait !important}.cursor-text{cursor:text !important}.cursor-move{cursor:move !important}.cursor-not-allowed{cursor:not-allowed !important}.block{display:block !important}.inline-block{display:inline-block !important}.inline{display:inline !important}.flex{display:flex !important}.inline-flex{display:inline-flex !important}.table{display:table !important}.table-caption{display:table-caption !important}.table-cell{display:table-cell !important}.table-column{display:table-column !important}.table-column-group{display:table-column-group !important}.table-footer-group{display:table-footer-group !important}.table-header-group{display:table-header-group !important}.table-row-group{display:table-row-group !important}.table-row{display:table-row !important}.flow-root{display:flow-root !important}.grid{display:grid !important}.inline-grid{display:inline-grid !important}.hidden{display:none !important}.flex-row{flex-direction:row !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-col{flex-direction:column !important}.flex-col-reverse{flex-direction:column-reverse !important}.flex-wrap{flex-wrap:wrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-no-wrap{flex-wrap:nowrap !important}.items-start{align-items:flex-start !important}.items-end{align-items:flex-end !important}.items-center{align-items:center !important}.items-baseline{align-items:baseline !important}.items-stretch{align-items:stretch !important}.self-auto{align-self:auto !important}.self-start{align-self:flex-start !important}.self-end{align-self:flex-end !important}.self-center{align-self:center !important}.self-stretch{align-self:stretch !important}.justify-start{justify-content:flex-start !important}.justify-end{justify-content:flex-end !important}.justify-center{justify-content:center !important}.justify-between{justify-content:space-between !important}.justify-around{justify-content:space-around !important}.justify-evenly{justify-content:space-evenly !important}.content-center{align-content:center !important}.content-start{align-content:flex-start !important}.content-end{align-content:flex-end !important}.content-between{align-content:space-between !important}.content-around{align-content:space-around !important}.flex-1{flex:1 1 0 !important}.flex-auto{flex:1 1 auto !important}.flex-initial{flex:0 1 auto !important}.flex-none{flex:none !important}.flex-grow-0{flex-grow:0 !important}.flex-grow{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink{flex-shrink:1 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-6{order:6 !important}.order-7{order:7 !important}.order-8{order:8 !important}.order-9{order:9 !important}.order-10{order:10 !important}.order-11{order:11 !important}.order-12{order:12 !important}.order-first{order:-9999 !important}.order-last{order:9999 !important}.order-none{order:0 !important}.float-right{float:right !important}.float-left{float:left !important}.float-none{float:none !important}.clearfix:after{content:"" !important;display:table !important;clear:both !important}[dir='ltr'] .ltr\:float-right{float:right !important}[dir='ltr'] .ltr\:float-left{float:left !important}[dir='ltr'] .ltr\:float-none{float:none !important}[dir='ltr'] .ltr\:clearfix:after{content:"" !important;display:table !important;clear:both !important}[dir='rtl'] .rtl\:float-right{float:right !important}[dir='rtl'] .rtl\:float-left{float:left !important}[dir='rtl'] .rtl\:float-none{float:none !important}[dir='rtl'] .rtl\:clearfix:after{content:"" !important;display:table !important;clear:both !important}.clear-left{clear:left !important}.clear-right{clear:right !important}.clear-both{clear:both !important}.clear-none{clear:none !important}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important}.font-serif{font-family:Georgia,Cambria,"Times New Roman",Times,serif !important}.font-mono{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.font-hairline{font-weight:100 !important}.font-thin{font-weight:200 !important}.font-light{font-weight:300 !important}.font-normal{font-weight:400 !important}.font-medium{font-weight:500 !important}.font-semibold{font-weight:600 !important}.font-bold{font-weight:700 !important}.font-extrabold{font-weight:800 !important}.font-black{font-weight:900 !important}.hover\:font-hairline:hover{font-weight:100 !important}.hover\:font-thin:hover{font-weight:200 !important}.hover\:font-light:hover{font-weight:300 !important}.hover\:font-normal:hover{font-weight:400 !important}.hover\:font-medium:hover{font-weight:500 !important}.hover\:font-semibold:hover{font-weight:600 !important}.hover\:font-bold:hover{font-weight:700 !important}.hover\:font-extrabold:hover{font-weight:800 !important}.hover\:font-black:hover{font-weight:900 !important}.focus\:font-hairline:focus{font-weight:100 !important}.focus\:font-thin:focus{font-weight:200 !important}.focus\:font-light:focus{font-weight:300 !important}.focus\:font-normal:focus{font-weight:400 !important}.focus\:font-medium:focus{font-weight:500 !important}.focus\:font-semibold:focus{font-weight:600 !important}.focus\:font-bold:focus{font-weight:700 !important}.focus\:font-extrabold:focus{font-weight:800 !important}.focus\:font-black:focus{font-weight:900 !important}.h-0{height:0 !important}.h-1{height:.25rem !important}.h-2{height:.5rem !important}.h-3{height:.75rem !important}.h-4{height:1rem !important}.h-5{height:1.25rem !important}.h-6{height:1.5rem !important}.h-7{height:1.75rem !important}.h-8{height:2rem !important}.h-9{height:2.25rem !important}.h-10{height:2.5rem !important}.h-11{height:2.75rem !important}.h-12{height:3rem !important}.h-13{height:3.25rem !important}.h-14{height:3.5rem !important}.h-15{height:3.75rem !important}.h-16{height:4rem !important}.h-20{height:5rem !important}.h-24{height:6rem !important}.h-28{height:7rem !important}.h-32{height:8rem !important}.h-36{height:9rem !important}.h-40{height:10rem !important}.h-48{height:12rem !important}.h-56{height:14rem !important}.h-60{height:15rem !important}.h-64{height:16rem !important}.h-72{height:18rem !important}.h-80{height:20rem !important}.h-96{height:24rem !important}.h-auto{height:auto !important}.h-px{height:1px !important}.h-0\.5{height:.125rem !important}.h-1\.5{height:.375rem !important}.h-2\.5{height:.625rem !important}.h-3\.5{height:.875rem !important}.h-1\/2{height:50% !important}.h-1\/3{height:33.333333% !important}.h-2\/3{height:66.666667% !important}.h-1\/4{height:25% !important}.h-2\/4{height:50% !important}.h-3\/4{height:75% !important}.h-1\/5{height:20% !important}.h-2\/5{height:40% !important}.h-3\/5{height:60% !important}.h-4\/5{height:80% !important}.h-1\/6{height:16.666667% !important}.h-2\/6{height:33.333333% !important}.h-3\/6{height:50% !important}.h-4\/6{height:66.666667% !important}.h-5\/6{height:83.333333% !important}.h-1\/12{height:8.333333% !important}.h-2\/12{height:16.666667% !important}.h-3\/12{height:25% !important}.h-4\/12{height:33.333333% !important}.h-5\/12{height:41.666667% !important}.h-6\/12{height:50% !important}.h-7\/12{height:58.333333% !important}.h-8\/12{height:66.666667% !important}.h-9\/12{height:75% !important}.h-10\/12{height:83.333333% !important}.h-11\/12{height:91.666667% !important}.h-full{height:100% !important}.h-screen{height:100vh !important}.text-xs{font-size:.7rem !important}.text-sm{font-size:.875rem !important}.text-base{font-size:1rem !important}.text-lg{font-size:1.125rem !important}.text-xl{font-size:1.25rem !important}.text-2xl{font-size:1.5rem !important}.text-3xl{font-size:1.875rem !important}.text-4xl{font-size:2.25rem !important}.text-5xl{font-size:3rem !important}.text-6xl{font-size:4rem !important}.leading-3{line-height:.75rem !important}.leading-4{line-height:1rem !important}.leading-5{line-height:1.25rem !important}.leading-6{line-height:1.5rem !important}.leading-7{line-height:1.75rem !important}.leading-8{line-height:2rem !important}.leading-9{line-height:2.25rem !important}.leading-10{line-height:2.5rem !important}.leading-none{line-height:1 !important}.leading-tight{line-height:1.25 !important}.leading-snug{line-height:1.375 !important}.leading-normal{line-height:1.5 !important}.leading-relaxed{line-height:1.625 !important}.leading-loose{line-height:2 !important}.list-inside{list-style-position:inside !important}.list-outside{list-style-position:outside !important}.list-none{list-style-type:none !important}.list-disc{list-style-type:disc !important}.list-decimal{list-style-type:decimal !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:.75rem !important}.m-4{margin:1rem !important}.m-5{margin:1.25rem !important}.m-6{margin:1.5rem !important}.m-7{margin:1.75rem !important}.m-8{margin:2rem !important}.m-9{margin:2.25rem !important}.m-10{margin:2.5rem !important}.m-11{margin:2.75rem !important}.m-12{margin:3rem !important}.m-13{margin:3.25rem !important}.m-14{margin:3.5rem !important}.m-15{margin:3.75rem !important}.m-16{margin:4rem !important}.m-20{margin:5rem !important}.m-24{margin:6rem !important}.m-28{margin:7rem !important}.m-32{margin:8rem !important}.m-36{margin:9rem !important}.m-40{margin:10rem !important}.m-48{margin:12rem !important}.m-56{margin:14rem !important}.m-60{margin:15rem !important}.m-64{margin:16rem !important}.m-72{margin:18rem !important}.m-80{margin:20rem !important}.m-96{margin:24rem !important}.m-auto{margin:auto !important}.m-px{margin:1px !important}.m-0\.5{margin:.125rem !important}.m-1\.5{margin:.375rem !important}.m-2\.5{margin:.625rem !important}.m-3\.5{margin:.875rem !important}.m-1\/2{margin:50% !important}.m-1\/3{margin:33.333333% !important}.m-2\/3{margin:66.666667% !important}.m-1\/4{margin:25% !important}.m-2\/4{margin:50% !important}.m-3\/4{margin:75% !important}.m-1\/5{margin:20% !important}.m-2\/5{margin:40% !important}.m-3\/5{margin:60% !important}.m-4\/5{margin:80% !important}.m-1\/6{margin:16.666667% !important}.m-2\/6{margin:33.333333% !important}.m-3\/6{margin:50% !important}.m-4\/6{margin:66.666667% !important}.m-5\/6{margin:83.333333% !important}.m-1\/12{margin:8.333333% !important}.m-2\/12{margin:16.666667% !important}.m-3\/12{margin:25% !important}.m-4\/12{margin:33.333333% !important}.m-5\/12{margin:41.666667% !important}.m-6\/12{margin:50% !important}.m-7\/12{margin:58.333333% !important}.m-8\/12{margin:66.666667% !important}.m-9\/12{margin:75% !important}.m-10\/12{margin:83.333333% !important}.m-11\/12{margin:91.666667% !important}.m-full{margin:100% !important}.-m-1{margin:-0.25rem !important}.-m-2{margin:-0.5rem !important}.-m-3{margin:-0.75rem !important}.-m-4{margin:-1rem !important}.-m-5{margin:-1.25rem !important}.-m-6{margin:-1.5rem !important}.-m-7{margin:-1.75rem !important}.-m-8{margin:-2rem !important}.-m-9{margin:-2.25rem !important}.-m-10{margin:-2.5rem !important}.-m-11{margin:-2.75rem !important}.-m-12{margin:-3rem !important}.-m-13{margin:-3.25rem !important}.-m-14{margin:-3.5rem !important}.-m-15{margin:-3.75rem !important}.-m-16{margin:-4rem !important}.-m-20{margin:-5rem !important}.-m-24{margin:-6rem !important}.-m-28{margin:-7rem !important}.-m-32{margin:-8rem !important}.-m-36{margin:-9rem !important}.-m-40{margin:-10rem !important}.-m-48{margin:-12rem !important}.-m-56{margin:-14rem !important}.-m-60{margin:-15rem !important}.-m-64{margin:-16rem !important}.-m-72{margin:-18rem !important}.-m-80{margin:-20rem !important}.-m-96{margin:-24rem !important}.-m-px{margin:-1px !important}.-m-0\.5{margin:-0.125rem !important}.-m-1\.5{margin:-0.375rem !important}.-m-2\.5{margin:-0.625rem !important}.-m-3\.5{margin:-0.875rem !important}.-m-1\/2{margin:-50% !important}.-m-1\/3{margin:-33.33333% !important}.-m-2\/3{margin:-66.66667% !important}.-m-1\/4{margin:-25% !important}.-m-2\/4{margin:-50% !important}.-m-3\/4{margin:-75% !important}.-m-1\/5{margin:-20% !important}.-m-2\/5{margin:-40% !important}.-m-3\/5{margin:-60% !important}.-m-4\/5{margin:-80% !important}.-m-1\/6{margin:-16.66667% !important}.-m-2\/6{margin:-33.33333% !important}.-m-3\/6{margin:-50% !important}.-m-4\/6{margin:-66.66667% !important}.-m-5\/6{margin:-83.33333% !important}.-m-1\/12{margin:-8.33333% !important}.-m-2\/12{margin:-16.66667% !important}.-m-3\/12{margin:-25% !important}.-m-4\/12{margin:-33.33333% !important}.-m-5\/12{margin:-41.66667% !important}.-m-6\/12{margin:-50% !important}.-m-7\/12{margin:-58.33333% !important}.-m-8\/12{margin:-66.66667% !important}.-m-9\/12{margin:-75% !important}.-m-10\/12{margin:-83.33333% !important}.-m-11\/12{margin:-91.66667% !important}.-m-full{margin:-100% !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.mx-5{margin-left:1.25rem !important;margin-right:1.25rem !important}.my-6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.mx-6{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.mx-7{margin-left:1.75rem !important;margin-right:1.75rem !important}.my-8{margin-top:2rem !important;margin-bottom:2rem !important}.mx-8{margin-left:2rem !important;margin-right:2rem !important}.my-9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.mx-9{margin-left:2.25rem !important;margin-right:2.25rem !important}.my-10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.mx-10{margin-left:2.5rem !important;margin-right:2.5rem !important}.my-11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.mx-11{margin-left:2.75rem !important;margin-right:2.75rem !important}.my-12{margin-top:3rem !important;margin-bottom:3rem !important}.mx-12{margin-left:3rem !important;margin-right:3rem !important}.my-13{margin-top:3.25rem !important;margin-bottom:3.25rem !important}.mx-13{margin-left:3.25rem !important;margin-right:3.25rem !important}.my-14{margin-top:3.5rem !important;margin-bottom:3.5rem !important}.mx-14{margin-left:3.5rem !important;margin-right:3.5rem !important}.my-15{margin-top:3.75rem !important;margin-bottom:3.75rem !important}.mx-15{margin-left:3.75rem !important;margin-right:3.75rem !important}.my-16{margin-top:4rem !important;margin-bottom:4rem !important}.mx-16{margin-left:4rem !important;margin-right:4rem !important}.my-20{margin-top:5rem !important;margin-bottom:5rem !important}.mx-20{margin-left:5rem !important;margin-right:5rem !important}.my-24{margin-top:6rem !important;margin-bottom:6rem !important}.mx-24{margin-left:6rem !important;margin-right:6rem !important}.my-28{margin-top:7rem !important;margin-bottom:7rem !important}.mx-28{margin-left:7rem !important;margin-right:7rem !important}.my-32{margin-top:8rem !important;margin-bottom:8rem !important}.mx-32{margin-left:8rem !important;margin-right:8rem !important}.my-36{margin-top:9rem !important;margin-bottom:9rem !important}.mx-36{margin-left:9rem !important;margin-right:9rem !important}.my-40{margin-top:10rem !important;margin-bottom:10rem !important}.mx-40{margin-left:10rem !important;margin-right:10rem !important}.my-48{margin-top:12rem !important;margin-bottom:12rem !important}.mx-48{margin-left:12rem !important;margin-right:12rem !important}.my-56{margin-top:14rem !important;margin-bottom:14rem !important}.mx-56{margin-left:14rem !important;margin-right:14rem !important}.my-60{margin-top:15rem !important;margin-bottom:15rem !important}.mx-60{margin-left:15rem !important;margin-right:15rem !important}.my-64{margin-top:16rem !important;margin-bottom:16rem !important}.mx-64{margin-left:16rem !important;margin-right:16rem !important}.my-72{margin-top:18rem !important;margin-bottom:18rem !important}.mx-72{margin-left:18rem !important;margin-right:18rem !important}.my-80{margin-top:20rem !important;margin-bottom:20rem !important}.mx-80{margin-left:20rem !important;margin-right:20rem !important}.my-96{margin-top:24rem !important;margin-bottom:24rem !important}.mx-96{margin-left:24rem !important;margin-right:24rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-px{margin-top:1px !important;margin-bottom:1px !important}.mx-px{margin-left:1px !important;margin-right:1px !important}.my-0\.5{margin-top:.125rem !important;margin-bottom:.125rem !important}.mx-0\.5{margin-left:.125rem !important;margin-right:.125rem !important}.my-1\.5{margin-top:.375rem !important;margin-bottom:.375rem !important}.mx-1\.5{margin-left:.375rem !important;margin-right:.375rem !important}.my-2\.5{margin-top:.625rem !important;margin-bottom:.625rem !important}.mx-2\.5{margin-left:.625rem !important;margin-right:.625rem !important}.my-3\.5{margin-top:.875rem !important;margin-bottom:.875rem !important}.mx-3\.5{margin-left:.875rem !important;margin-right:.875rem !important}.my-1\/2{margin-top:50% !important;margin-bottom:50% !important}.mx-1\/2{margin-left:50% !important;margin-right:50% !important}.my-1\/3{margin-top:33.333333% !important;margin-bottom:33.333333% !important}.mx-1\/3{margin-left:33.333333% !important;margin-right:33.333333% !important}.my-2\/3{margin-top:66.666667% !important;margin-bottom:66.666667% !important}.mx-2\/3{margin-left:66.666667% !important;margin-right:66.666667% !important}.my-1\/4{margin-top:25% !important;margin-bottom:25% !important}.mx-1\/4{margin-left:25% !important;margin-right:25% !important}.my-2\/4{margin-top:50% !important;margin-bottom:50% !important}.mx-2\/4{margin-left:50% !important;margin-right:50% !important}.my-3\/4{margin-top:75% !important;margin-bottom:75% !important}.mx-3\/4{margin-left:75% !important;margin-right:75% !important}.my-1\/5{margin-top:20% !important;margin-bottom:20% !important}.mx-1\/5{margin-left:20% !important;margin-right:20% !important}.my-2\/5{margin-top:40% !important;margin-bottom:40% !important}.mx-2\/5{margin-left:40% !important;margin-right:40% !important}.my-3\/5{margin-top:60% !important;margin-bottom:60% !important}.mx-3\/5{margin-left:60% !important;margin-right:60% !important}.my-4\/5{margin-top:80% !important;margin-bottom:80% !important}.mx-4\/5{margin-left:80% !important;margin-right:80% !important}.my-1\/6{margin-top:16.666667% !important;margin-bottom:16.666667% !important}.mx-1\/6{margin-left:16.666667% !important;margin-right:16.666667% !important}.my-2\/6{margin-top:33.333333% !important;margin-bottom:33.333333% !important}.mx-2\/6{margin-left:33.333333% !important;margin-right:33.333333% !important}.my-3\/6{margin-top:50% !important;margin-bottom:50% !important}.mx-3\/6{margin-left:50% !important;margin-right:50% !important}.my-4\/6{margin-top:66.666667% !important;margin-bottom:66.666667% !important}.mx-4\/6{margin-left:66.666667% !important;margin-right:66.666667% !important}.my-5\/6{margin-top:83.333333% !important;margin-bottom:83.333333% !important}.mx-5\/6{margin-left:83.333333% !important;margin-right:83.333333% !important}.my-1\/12{margin-top:8.333333% !important;margin-bottom:8.333333% !important}.mx-1\/12{margin-left:8.333333% !important;margin-right:8.333333% !important}.my-2\/12{margin-top:16.666667% !important;margin-bottom:16.666667% !important}.mx-2\/12{margin-left:16.666667% !important;margin-right:16.666667% !important}.my-3\/12{margin-top:25% !important;margin-bottom:25% !important}.mx-3\/12{margin-left:25% !important;margin-right:25% !important}.my-4\/12{margin-top:33.333333% !important;margin-bottom:33.333333% !important}.mx-4\/12{margin-left:33.333333% !important;margin-right:33.333333% !important}.my-5\/12{margin-top:41.666667% !important;margin-bottom:41.666667% !important}.mx-5\/12{margin-left:41.666667% !important;margin-right:41.666667% !important}.my-6\/12{margin-top:50% !important;margin-bottom:50% !important}.mx-6\/12{margin-left:50% !important;margin-right:50% !important}.my-7\/12{margin-top:58.333333% !important;margin-bottom:58.333333% !important}.mx-7\/12{margin-left:58.333333% !important;margin-right:58.333333% !important}.my-8\/12{margin-top:66.666667% !important;margin-bottom:66.666667% !important}.mx-8\/12{margin-left:66.666667% !important;margin-right:66.666667% !important}.my-9\/12{margin-top:75% !important;margin-bottom:75% !important}.mx-9\/12{margin-left:75% !important;margin-right:75% !important}.my-10\/12{margin-top:83.333333% !important;margin-bottom:83.333333% !important}.mx-10\/12{margin-left:83.333333% !important;margin-right:83.333333% !important}.my-11\/12{margin-top:91.666667% !important;margin-bottom:91.666667% !important}.mx-11\/12{margin-left:91.666667% !important;margin-right:91.666667% !important}.my-full{margin-top:100% !important;margin-bottom:100% !important}.mx-full{margin-left:100% !important;margin-right:100% !important}.-my-1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.-mx-1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.-my-2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.-mx-2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.-my-3{margin-top:-0.75rem !important;margin-bottom:-0.75rem !important}.-mx-3{margin-left:-0.75rem !important;margin-right:-0.75rem !important}.-my-4{margin-top:-1rem !important;margin-bottom:-1rem !important}.-mx-4{margin-left:-1rem !important;margin-right:-1rem !important}.-my-5{margin-top:-1.25rem !important;margin-bottom:-1.25rem !important}.-mx-5{margin-left:-1.25rem !important;margin-right:-1.25rem !important}.-my-6{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.-mx-6{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.-my-7{margin-top:-1.75rem !important;margin-bottom:-1.75rem !important}.-mx-7{margin-left:-1.75rem !important;margin-right:-1.75rem !important}.-my-8{margin-top:-2rem !important;margin-bottom:-2rem !important}.-mx-8{margin-left:-2rem !important;margin-right:-2rem !important}.-my-9{margin-top:-2.25rem !important;margin-bottom:-2.25rem !important}.-mx-9{margin-left:-2.25rem !important;margin-right:-2.25rem !important}.-my-10{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.-mx-10{margin-left:-2.5rem !important;margin-right:-2.5rem !important}.-my-11{margin-top:-2.75rem !important;margin-bottom:-2.75rem !important}.-mx-11{margin-left:-2.75rem !important;margin-right:-2.75rem !important}.-my-12{margin-top:-3rem !important;margin-bottom:-3rem !important}.-mx-12{margin-left:-3rem !important;margin-right:-3rem !important}.-my-13{margin-top:-3.25rem !important;margin-bottom:-3.25rem !important}.-mx-13{margin-left:-3.25rem !important;margin-right:-3.25rem !important}.-my-14{margin-top:-3.5rem !important;margin-bottom:-3.5rem !important}.-mx-14{margin-left:-3.5rem !important;margin-right:-3.5rem !important}.-my-15{margin-top:-3.75rem !important;margin-bottom:-3.75rem !important}.-mx-15{margin-left:-3.75rem !important;margin-right:-3.75rem !important}.-my-16{margin-top:-4rem !important;margin-bottom:-4rem !important}.-mx-16{margin-left:-4rem !important;margin-right:-4rem !important}.-my-20{margin-top:-5rem !important;margin-bottom:-5rem !important}.-mx-20{margin-left:-5rem !important;margin-right:-5rem !important}.-my-24{margin-top:-6rem !important;margin-bottom:-6rem !important}.-mx-24{margin-left:-6rem !important;margin-right:-6rem !important}.-my-28{margin-top:-7rem !important;margin-bottom:-7rem !important}.-mx-28{margin-left:-7rem !important;margin-right:-7rem !important}.-my-32{margin-top:-8rem !important;margin-bottom:-8rem !important}.-mx-32{margin-left:-8rem !important;margin-right:-8rem !important}.-my-36{margin-top:-9rem !important;margin-bottom:-9rem !important}.-mx-36{margin-left:-9rem !important;margin-right:-9rem !important}.-my-40{margin-top:-10rem !important;margin-bottom:-10rem !important}.-mx-40{margin-left:-10rem !important;margin-right:-10rem !important}.-my-48{margin-top:-12rem !important;margin-bottom:-12rem !important}.-mx-48{margin-left:-12rem !important;margin-right:-12rem !important}.-my-56{margin-top:-14rem !important;margin-bottom:-14rem !important}.-mx-56{margin-left:-14rem !important;margin-right:-14rem !important}.-my-60{margin-top:-15rem !important;margin-bottom:-15rem !important}.-mx-60{margin-left:-15rem !important;margin-right:-15rem !important}.-my-64{margin-top:-16rem !important;margin-bottom:-16rem !important}.-mx-64{margin-left:-16rem !important;margin-right:-16rem !important}.-my-72{margin-top:-18rem !important;margin-bottom:-18rem !important}.-mx-72{margin-left:-18rem !important;margin-right:-18rem !important}.-my-80{margin-top:-20rem !important;margin-bottom:-20rem !important}.-mx-80{margin-left:-20rem !important;margin-right:-20rem !important}.-my-96{margin-top:-24rem !important;margin-bottom:-24rem !important}.-mx-96{margin-left:-24rem !important;margin-right:-24rem !important}.-my-px{margin-top:-1px !important;margin-bottom:-1px !important}.-mx-px{margin-left:-1px !important;margin-right:-1px !important}.-my-0\.5{margin-top:-0.125rem !important;margin-bottom:-0.125rem !important}.-mx-0\.5{margin-left:-0.125rem !important;margin-right:-0.125rem !important}.-my-1\.5{margin-top:-0.375rem !important;margin-bottom:-0.375rem !important}.-mx-1\.5{margin-left:-0.375rem !important;margin-right:-0.375rem !important}.-my-2\.5{margin-top:-0.625rem !important;margin-bottom:-0.625rem !important}.-mx-2\.5{margin-left:-0.625rem !important;margin-right:-0.625rem !important}.-my-3\.5{margin-top:-0.875rem !important;margin-bottom:-0.875rem !important}.-mx-3\.5{margin-left:-0.875rem !important;margin-right:-0.875rem !important}.-my-1\/2{margin-top:-50% !important;margin-bottom:-50% !important}.-mx-1\/2{margin-left:-50% !important;margin-right:-50% !important}.-my-1\/3{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}.-mx-1\/3{margin-left:-33.33333% !important;margin-right:-33.33333% !important}.-my-2\/3{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}.-mx-2\/3{margin-left:-66.66667% !important;margin-right:-66.66667% !important}.-my-1\/4{margin-top:-25% !important;margin-bottom:-25% !important}.-mx-1\/4{margin-left:-25% !important;margin-right:-25% !important}.-my-2\/4{margin-top:-50% !important;margin-bottom:-50% !important}.-mx-2\/4{margin-left:-50% !important;margin-right:-50% !important}.-my-3\/4{margin-top:-75% !important;margin-bottom:-75% !important}.-mx-3\/4{margin-left:-75% !important;margin-right:-75% !important}.-my-1\/5{margin-top:-20% !important;margin-bottom:-20% !important}.-mx-1\/5{margin-left:-20% !important;margin-right:-20% !important}.-my-2\/5{margin-top:-40% !important;margin-bottom:-40% !important}.-mx-2\/5{margin-left:-40% !important;margin-right:-40% !important}.-my-3\/5{margin-top:-60% !important;margin-bottom:-60% !important}.-mx-3\/5{margin-left:-60% !important;margin-right:-60% !important}.-my-4\/5{margin-top:-80% !important;margin-bottom:-80% !important}.-mx-4\/5{margin-left:-80% !important;margin-right:-80% !important}.-my-1\/6{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}.-mx-1\/6{margin-left:-16.66667% !important;margin-right:-16.66667% !important}.-my-2\/6{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}.-mx-2\/6{margin-left:-33.33333% !important;margin-right:-33.33333% !important}.-my-3\/6{margin-top:-50% !important;margin-bottom:-50% !important}.-mx-3\/6{margin-left:-50% !important;margin-right:-50% !important}.-my-4\/6{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}.-mx-4\/6{margin-left:-66.66667% !important;margin-right:-66.66667% !important}.-my-5\/6{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}.-mx-5\/6{margin-left:-83.33333% !important;margin-right:-83.33333% !important}.-my-1\/12{margin-top:-8.33333% !important;margin-bottom:-8.33333% !important}.-mx-1\/12{margin-left:-8.33333% !important;margin-right:-8.33333% !important}.-my-2\/12{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}.-mx-2\/12{margin-left:-16.66667% !important;margin-right:-16.66667% !important}.-my-3\/12{margin-top:-25% !important;margin-bottom:-25% !important}.-mx-3\/12{margin-left:-25% !important;margin-right:-25% !important}.-my-4\/12{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}.-mx-4\/12{margin-left:-33.33333% !important;margin-right:-33.33333% !important}.-my-5\/12{margin-top:-41.66667% !important;margin-bottom:-41.66667% !important}.-mx-5\/12{margin-left:-41.66667% !important;margin-right:-41.66667% !important}.-my-6\/12{margin-top:-50% !important;margin-bottom:-50% !important}.-mx-6\/12{margin-left:-50% !important;margin-right:-50% !important}.-my-7\/12{margin-top:-58.33333% !important;margin-bottom:-58.33333% !important}.-mx-7\/12{margin-left:-58.33333% !important;margin-right:-58.33333% !important}.-my-8\/12{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}.-mx-8\/12{margin-left:-66.66667% !important;margin-right:-66.66667% !important}.-my-9\/12{margin-top:-75% !important;margin-bottom:-75% !important}.-mx-9\/12{margin-left:-75% !important;margin-right:-75% !important}.-my-10\/12{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}.-mx-10\/12{margin-left:-83.33333% !important;margin-right:-83.33333% !important}.-my-11\/12{margin-top:-91.66667% !important;margin-bottom:-91.66667% !important}.-mx-11\/12{margin-left:-91.66667% !important;margin-right:-91.66667% !important}.-my-full{margin-top:-100% !important;margin-bottom:-100% !important}.-mx-full{margin-left:-100% !important;margin-right:-100% !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mt-5{margin-top:1.25rem !important}.mr-5{margin-right:1.25rem !important}.mb-5{margin-bottom:1.25rem !important}.ml-5{margin-left:1.25rem !important}.mt-6{margin-top:1.5rem !important}.mr-6{margin-right:1.5rem !important}.mb-6{margin-bottom:1.5rem !important}.ml-6{margin-left:1.5rem !important}.mt-7{margin-top:1.75rem !important}.mr-7{margin-right:1.75rem !important}.mb-7{margin-bottom:1.75rem !important}.ml-7{margin-left:1.75rem !important}.mt-8{margin-top:2rem !important}.mr-8{margin-right:2rem !important}.mb-8{margin-bottom:2rem !important}.ml-8{margin-left:2rem !important}.mt-9{margin-top:2.25rem !important}.mr-9{margin-right:2.25rem !important}.mb-9{margin-bottom:2.25rem !important}.ml-9{margin-left:2.25rem !important}.mt-10{margin-top:2.5rem !important}.mr-10{margin-right:2.5rem !important}.mb-10{margin-bottom:2.5rem !important}.ml-10{margin-left:2.5rem !important}.mt-11{margin-top:2.75rem !important}.mr-11{margin-right:2.75rem !important}.mb-11{margin-bottom:2.75rem !important}.ml-11{margin-left:2.75rem !important}.mt-12{margin-top:3rem !important}.mr-12{margin-right:3rem !important}.mb-12{margin-bottom:3rem !important}.ml-12{margin-left:3rem !important}.mt-13{margin-top:3.25rem !important}.mr-13{margin-right:3.25rem !important}.mb-13{margin-bottom:3.25rem !important}.ml-13{margin-left:3.25rem !important}.mt-14{margin-top:3.5rem !important}.mr-14{margin-right:3.5rem !important}.mb-14{margin-bottom:3.5rem !important}.ml-14{margin-left:3.5rem !important}.mt-15{margin-top:3.75rem !important}.mr-15{margin-right:3.75rem !important}.mb-15{margin-bottom:3.75rem !important}.ml-15{margin-left:3.75rem !important}.mt-16{margin-top:4rem !important}.mr-16{margin-right:4rem !important}.mb-16{margin-bottom:4rem !important}.ml-16{margin-left:4rem !important}.mt-20{margin-top:5rem !important}.mr-20{margin-right:5rem !important}.mb-20{margin-bottom:5rem !important}.ml-20{margin-left:5rem !important}.mt-24{margin-top:6rem !important}.mr-24{margin-right:6rem !important}.mb-24{margin-bottom:6rem !important}.ml-24{margin-left:6rem !important}.mt-28{margin-top:7rem !important}.mr-28{margin-right:7rem !important}.mb-28{margin-bottom:7rem !important}.ml-28{margin-left:7rem !important}.mt-32{margin-top:8rem !important}.mr-32{margin-right:8rem !important}.mb-32{margin-bottom:8rem !important}.ml-32{margin-left:8rem !important}.mt-36{margin-top:9rem !important}.mr-36{margin-right:9rem !important}.mb-36{margin-bottom:9rem !important}.ml-36{margin-left:9rem !important}.mt-40{margin-top:10rem !important}.mr-40{margin-right:10rem !important}.mb-40{margin-bottom:10rem !important}.ml-40{margin-left:10rem !important}.mt-48{margin-top:12rem !important}.mr-48{margin-right:12rem !important}.mb-48{margin-bottom:12rem !important}.ml-48{margin-left:12rem !important}.mt-56{margin-top:14rem !important}.mr-56{margin-right:14rem !important}.mb-56{margin-bottom:14rem !important}.ml-56{margin-left:14rem !important}.mt-60{margin-top:15rem !important}.mr-60{margin-right:15rem !important}.mb-60{margin-bottom:15rem !important}.ml-60{margin-left:15rem !important}.mt-64{margin-top:16rem !important}.mr-64{margin-right:16rem !important}.mb-64{margin-bottom:16rem !important}.ml-64{margin-left:16rem !important}.mt-72{margin-top:18rem !important}.mr-72{margin-right:18rem !important}.mb-72{margin-bottom:18rem !important}.ml-72{margin-left:18rem !important}.mt-80{margin-top:20rem !important}.mr-80{margin-right:20rem !important}.mb-80{margin-bottom:20rem !important}.ml-80{margin-left:20rem !important}.mt-96{margin-top:24rem !important}.mr-96{margin-right:24rem !important}.mb-96{margin-bottom:24rem !important}.ml-96{margin-left:24rem !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mt-px{margin-top:1px !important}.mr-px{margin-right:1px !important}.mb-px{margin-bottom:1px !important}.ml-px{margin-left:1px !important}.mt-0\.5{margin-top:.125rem !important}.mr-0\.5{margin-right:.125rem !important}.mb-0\.5{margin-bottom:.125rem !important}.ml-0\.5{margin-left:.125rem !important}.mt-1\.5{margin-top:.375rem !important}.mr-1\.5{margin-right:.375rem !important}.mb-1\.5{margin-bottom:.375rem !important}.ml-1\.5{margin-left:.375rem !important}.mt-2\.5{margin-top:.625rem !important}.mr-2\.5{margin-right:.625rem !important}.mb-2\.5{margin-bottom:.625rem !important}.ml-2\.5{margin-left:.625rem !important}.mt-3\.5{margin-top:.875rem !important}.mr-3\.5{margin-right:.875rem !important}.mb-3\.5{margin-bottom:.875rem !important}.ml-3\.5{margin-left:.875rem !important}.mt-1\/2{margin-top:50% !important}.mr-1\/2{margin-right:50% !important}.mb-1\/2{margin-bottom:50% !important}.ml-1\/2{margin-left:50% !important}.mt-1\/3{margin-top:33.333333% !important}.mr-1\/3{margin-right:33.333333% !important}.mb-1\/3{margin-bottom:33.333333% !important}.ml-1\/3{margin-left:33.333333% !important}.mt-2\/3{margin-top:66.666667% !important}.mr-2\/3{margin-right:66.666667% !important}.mb-2\/3{margin-bottom:66.666667% !important}.ml-2\/3{margin-left:66.666667% !important}.mt-1\/4{margin-top:25% !important}.mr-1\/4{margin-right:25% !important}.mb-1\/4{margin-bottom:25% !important}.ml-1\/4{margin-left:25% !important}.mt-2\/4{margin-top:50% !important}.mr-2\/4{margin-right:50% !important}.mb-2\/4{margin-bottom:50% !important}.ml-2\/4{margin-left:50% !important}.mt-3\/4{margin-top:75% !important}.mr-3\/4{margin-right:75% !important}.mb-3\/4{margin-bottom:75% !important}.ml-3\/4{margin-left:75% !important}.mt-1\/5{margin-top:20% !important}.mr-1\/5{margin-right:20% !important}.mb-1\/5{margin-bottom:20% !important}.ml-1\/5{margin-left:20% !important}.mt-2\/5{margin-top:40% !important}.mr-2\/5{margin-right:40% !important}.mb-2\/5{margin-bottom:40% !important}.ml-2\/5{margin-left:40% !important}.mt-3\/5{margin-top:60% !important}.mr-3\/5{margin-right:60% !important}.mb-3\/5{margin-bottom:60% !important}.ml-3\/5{margin-left:60% !important}.mt-4\/5{margin-top:80% !important}.mr-4\/5{margin-right:80% !important}.mb-4\/5{margin-bottom:80% !important}.ml-4\/5{margin-left:80% !important}.mt-1\/6{margin-top:16.666667% !important}.mr-1\/6{margin-right:16.666667% !important}.mb-1\/6{margin-bottom:16.666667% !important}.ml-1\/6{margin-left:16.666667% !important}.mt-2\/6{margin-top:33.333333% !important}.mr-2\/6{margin-right:33.333333% !important}.mb-2\/6{margin-bottom:33.333333% !important}.ml-2\/6{margin-left:33.333333% !important}.mt-3\/6{margin-top:50% !important}.mr-3\/6{margin-right:50% !important}.mb-3\/6{margin-bottom:50% !important}.ml-3\/6{margin-left:50% !important}.mt-4\/6{margin-top:66.666667% !important}.mr-4\/6{margin-right:66.666667% !important}.mb-4\/6{margin-bottom:66.666667% !important}.ml-4\/6{margin-left:66.666667% !important}.mt-5\/6{margin-top:83.333333% !important}.mr-5\/6{margin-right:83.333333% !important}.mb-5\/6{margin-bottom:83.333333% !important}.ml-5\/6{margin-left:83.333333% !important}.mt-1\/12{margin-top:8.333333% !important}.mr-1\/12{margin-right:8.333333% !important}.mb-1\/12{margin-bottom:8.333333% !important}.ml-1\/12{margin-left:8.333333% !important}.mt-2\/12{margin-top:16.666667% !important}.mr-2\/12{margin-right:16.666667% !important}.mb-2\/12{margin-bottom:16.666667% !important}.ml-2\/12{margin-left:16.666667% !important}.mt-3\/12{margin-top:25% !important}.mr-3\/12{margin-right:25% !important}.mb-3\/12{margin-bottom:25% !important}.ml-3\/12{margin-left:25% !important}.mt-4\/12{margin-top:33.333333% !important}.mr-4\/12{margin-right:33.333333% !important}.mb-4\/12{margin-bottom:33.333333% !important}.ml-4\/12{margin-left:33.333333% !important}.mt-5\/12{margin-top:41.666667% !important}.mr-5\/12{margin-right:41.666667% !important}.mb-5\/12{margin-bottom:41.666667% !important}.ml-5\/12{margin-left:41.666667% !important}.mt-6\/12{margin-top:50% !important}.mr-6\/12{margin-right:50% !important}.mb-6\/12{margin-bottom:50% !important}.ml-6\/12{margin-left:50% !important}.mt-7\/12{margin-top:58.333333% !important}.mr-7\/12{margin-right:58.333333% !important}.mb-7\/12{margin-bottom:58.333333% !important}.ml-7\/12{margin-left:58.333333% !important}.mt-8\/12{margin-top:66.666667% !important}.mr-8\/12{margin-right:66.666667% !important}.mb-8\/12{margin-bottom:66.666667% !important}.ml-8\/12{margin-left:66.666667% !important}.mt-9\/12{margin-top:75% !important}.mr-9\/12{margin-right:75% !important}.mb-9\/12{margin-bottom:75% !important}.ml-9\/12{margin-left:75% !important}.mt-10\/12{margin-top:83.333333% !important}.mr-10\/12{margin-right:83.333333% !important}.mb-10\/12{margin-bottom:83.333333% !important}.ml-10\/12{margin-left:83.333333% !important}.mt-11\/12{margin-top:91.666667% !important}.mr-11\/12{margin-right:91.666667% !important}.mb-11\/12{margin-bottom:91.666667% !important}.ml-11\/12{margin-left:91.666667% !important}.mt-full{margin-top:100% !important}.mr-full{margin-right:100% !important}.mb-full{margin-bottom:100% !important}.ml-full{margin-left:100% !important}.-mt-1{margin-top:-0.25rem !important}.-mr-1{margin-right:-0.25rem !important}.-mb-1{margin-bottom:-0.25rem !important}.-ml-1{margin-left:-0.25rem !important}.-mt-2{margin-top:-0.5rem !important}.-mr-2{margin-right:-0.5rem !important}.-mb-2{margin-bottom:-0.5rem !important}.-ml-2{margin-left:-0.5rem !important}.-mt-3{margin-top:-0.75rem !important}.-mr-3{margin-right:-0.75rem !important}.-mb-3{margin-bottom:-0.75rem !important}.-ml-3{margin-left:-0.75rem !important}.-mt-4{margin-top:-1rem !important}.-mr-4{margin-right:-1rem !important}.-mb-4{margin-bottom:-1rem !important}.-ml-4{margin-left:-1rem !important}.-mt-5{margin-top:-1.25rem !important}.-mr-5{margin-right:-1.25rem !important}.-mb-5{margin-bottom:-1.25rem !important}.-ml-5{margin-left:-1.25rem !important}.-mt-6{margin-top:-1.5rem !important}.-mr-6{margin-right:-1.5rem !important}.-mb-6{margin-bottom:-1.5rem !important}.-ml-6{margin-left:-1.5rem !important}.-mt-7{margin-top:-1.75rem !important}.-mr-7{margin-right:-1.75rem !important}.-mb-7{margin-bottom:-1.75rem !important}.-ml-7{margin-left:-1.75rem !important}.-mt-8{margin-top:-2rem !important}.-mr-8{margin-right:-2rem !important}.-mb-8{margin-bottom:-2rem !important}.-ml-8{margin-left:-2rem !important}.-mt-9{margin-top:-2.25rem !important}.-mr-9{margin-right:-2.25rem !important}.-mb-9{margin-bottom:-2.25rem !important}.-ml-9{margin-left:-2.25rem !important}.-mt-10{margin-top:-2.5rem !important}.-mr-10{margin-right:-2.5rem !important}.-mb-10{margin-bottom:-2.5rem !important}.-ml-10{margin-left:-2.5rem !important}.-mt-11{margin-top:-2.75rem !important}.-mr-11{margin-right:-2.75rem !important}.-mb-11{margin-bottom:-2.75rem !important}.-ml-11{margin-left:-2.75rem !important}.-mt-12{margin-top:-3rem !important}.-mr-12{margin-right:-3rem !important}.-mb-12{margin-bottom:-3rem !important}.-ml-12{margin-left:-3rem !important}.-mt-13{margin-top:-3.25rem !important}.-mr-13{margin-right:-3.25rem !important}.-mb-13{margin-bottom:-3.25rem !important}.-ml-13{margin-left:-3.25rem !important}.-mt-14{margin-top:-3.5rem !important}.-mr-14{margin-right:-3.5rem !important}.-mb-14{margin-bottom:-3.5rem !important}.-ml-14{margin-left:-3.5rem !important}.-mt-15{margin-top:-3.75rem !important}.-mr-15{margin-right:-3.75rem !important}.-mb-15{margin-bottom:-3.75rem !important}.-ml-15{margin-left:-3.75rem !important}.-mt-16{margin-top:-4rem !important}.-mr-16{margin-right:-4rem !important}.-mb-16{margin-bottom:-4rem !important}.-ml-16{margin-left:-4rem !important}.-mt-20{margin-top:-5rem !important}.-mr-20{margin-right:-5rem !important}.-mb-20{margin-bottom:-5rem !important}.-ml-20{margin-left:-5rem !important}.-mt-24{margin-top:-6rem !important}.-mr-24{margin-right:-6rem !important}.-mb-24{margin-bottom:-6rem !important}.-ml-24{margin-left:-6rem !important}.-mt-28{margin-top:-7rem !important}.-mr-28{margin-right:-7rem !important}.-mb-28{margin-bottom:-7rem !important}.-ml-28{margin-left:-7rem !important}.-mt-32{margin-top:-8rem !important}.-mr-32{margin-right:-8rem !important}.-mb-32{margin-bottom:-8rem !important}.-ml-32{margin-left:-8rem !important}.-mt-36{margin-top:-9rem !important}.-mr-36{margin-right:-9rem !important}.-mb-36{margin-bottom:-9rem !important}.-ml-36{margin-left:-9rem !important}.-mt-40{margin-top:-10rem !important}.-mr-40{margin-right:-10rem !important}.-mb-40{margin-bottom:-10rem !important}.-ml-40{margin-left:-10rem !important}.-mt-48{margin-top:-12rem !important}.-mr-48{margin-right:-12rem !important}.-mb-48{margin-bottom:-12rem !important}.-ml-48{margin-left:-12rem !important}.-mt-56{margin-top:-14rem !important}.-mr-56{margin-right:-14rem !important}.-mb-56{margin-bottom:-14rem !important}.-ml-56{margin-left:-14rem !important}.-mt-60{margin-top:-15rem !important}.-mr-60{margin-right:-15rem !important}.-mb-60{margin-bottom:-15rem !important}.-ml-60{margin-left:-15rem !important}.-mt-64{margin-top:-16rem !important}.-mr-64{margin-right:-16rem !important}.-mb-64{margin-bottom:-16rem !important}.-ml-64{margin-left:-16rem !important}.-mt-72{margin-top:-18rem !important}.-mr-72{margin-right:-18rem !important}.-mb-72{margin-bottom:-18rem !important}.-ml-72{margin-left:-18rem !important}.-mt-80{margin-top:-20rem !important}.-mr-80{margin-right:-20rem !important}.-mb-80{margin-bottom:-20rem !important}.-ml-80{margin-left:-20rem !important}.-mt-96{margin-top:-24rem !important}.-mr-96{margin-right:-24rem !important}.-mb-96{margin-bottom:-24rem !important}.-ml-96{margin-left:-24rem !important}.-mt-px{margin-top:-1px !important}.-mr-px{margin-right:-1px !important}.-mb-px{margin-bottom:-1px !important}.-ml-px{margin-left:-1px !important}.-mt-0\.5{margin-top:-0.125rem !important}.-mr-0\.5{margin-right:-0.125rem !important}.-mb-0\.5{margin-bottom:-0.125rem !important}.-ml-0\.5{margin-left:-0.125rem !important}.-mt-1\.5{margin-top:-0.375rem !important}.-mr-1\.5{margin-right:-0.375rem !important}.-mb-1\.5{margin-bottom:-0.375rem !important}.-ml-1\.5{margin-left:-0.375rem !important}.-mt-2\.5{margin-top:-0.625rem !important}.-mr-2\.5{margin-right:-0.625rem !important}.-mb-2\.5{margin-bottom:-0.625rem !important}.-ml-2\.5{margin-left:-0.625rem !important}.-mt-3\.5{margin-top:-0.875rem !important}.-mr-3\.5{margin-right:-0.875rem !important}.-mb-3\.5{margin-bottom:-0.875rem !important}.-ml-3\.5{margin-left:-0.875rem !important}.-mt-1\/2{margin-top:-50% !important}.-mr-1\/2{margin-right:-50% !important}.-mb-1\/2{margin-bottom:-50% !important}.-ml-1\/2{margin-left:-50% !important}.-mt-1\/3{margin-top:-33.33333% !important}.-mr-1\/3{margin-right:-33.33333% !important}.-mb-1\/3{margin-bottom:-33.33333% !important}.-ml-1\/3{margin-left:-33.33333% !important}.-mt-2\/3{margin-top:-66.66667% !important}.-mr-2\/3{margin-right:-66.66667% !important}.-mb-2\/3{margin-bottom:-66.66667% !important}.-ml-2\/3{margin-left:-66.66667% !important}.-mt-1\/4{margin-top:-25% !important}.-mr-1\/4{margin-right:-25% !important}.-mb-1\/4{margin-bottom:-25% !important}.-ml-1\/4{margin-left:-25% !important}.-mt-2\/4{margin-top:-50% !important}.-mr-2\/4{margin-right:-50% !important}.-mb-2\/4{margin-bottom:-50% !important}.-ml-2\/4{margin-left:-50% !important}.-mt-3\/4{margin-top:-75% !important}.-mr-3\/4{margin-right:-75% !important}.-mb-3\/4{margin-bottom:-75% !important}.-ml-3\/4{margin-left:-75% !important}.-mt-1\/5{margin-top:-20% !important}.-mr-1\/5{margin-right:-20% !important}.-mb-1\/5{margin-bottom:-20% !important}.-ml-1\/5{margin-left:-20% !important}.-mt-2\/5{margin-top:-40% !important}.-mr-2\/5{margin-right:-40% !important}.-mb-2\/5{margin-bottom:-40% !important}.-ml-2\/5{margin-left:-40% !important}.-mt-3\/5{margin-top:-60% !important}.-mr-3\/5{margin-right:-60% !important}.-mb-3\/5{margin-bottom:-60% !important}.-ml-3\/5{margin-left:-60% !important}.-mt-4\/5{margin-top:-80% !important}.-mr-4\/5{margin-right:-80% !important}.-mb-4\/5{margin-bottom:-80% !important}.-ml-4\/5{margin-left:-80% !important}.-mt-1\/6{margin-top:-16.66667% !important}.-mr-1\/6{margin-right:-16.66667% !important}.-mb-1\/6{margin-bottom:-16.66667% !important}.-ml-1\/6{margin-left:-16.66667% !important}.-mt-2\/6{margin-top:-33.33333% !important}.-mr-2\/6{margin-right:-33.33333% !important}.-mb-2\/6{margin-bottom:-33.33333% !important}.-ml-2\/6{margin-left:-33.33333% !important}.-mt-3\/6{margin-top:-50% !important}.-mr-3\/6{margin-right:-50% !important}.-mb-3\/6{margin-bottom:-50% !important}.-ml-3\/6{margin-left:-50% !important}.-mt-4\/6{margin-top:-66.66667% !important}.-mr-4\/6{margin-right:-66.66667% !important}.-mb-4\/6{margin-bottom:-66.66667% !important}.-ml-4\/6{margin-left:-66.66667% !important}.-mt-5\/6{margin-top:-83.33333% !important}.-mr-5\/6{margin-right:-83.33333% !important}.-mb-5\/6{margin-bottom:-83.33333% !important}.-ml-5\/6{margin-left:-83.33333% !important}.-mt-1\/12{margin-top:-8.33333% !important}.-mr-1\/12{margin-right:-8.33333% !important}.-mb-1\/12{margin-bottom:-8.33333% !important}.-ml-1\/12{margin-left:-8.33333% !important}.-mt-2\/12{margin-top:-16.66667% !important}.-mr-2\/12{margin-right:-16.66667% !important}.-mb-2\/12{margin-bottom:-16.66667% !important}.-ml-2\/12{margin-left:-16.66667% !important}.-mt-3\/12{margin-top:-25% !important}.-mr-3\/12{margin-right:-25% !important}.-mb-3\/12{margin-bottom:-25% !important}.-ml-3\/12{margin-left:-25% !important}.-mt-4\/12{margin-top:-33.33333% !important}.-mr-4\/12{margin-right:-33.33333% !important}.-mb-4\/12{margin-bottom:-33.33333% !important}.-ml-4\/12{margin-left:-33.33333% !important}.-mt-5\/12{margin-top:-41.66667% !important}.-mr-5\/12{margin-right:-41.66667% !important}.-mb-5\/12{margin-bottom:-41.66667% !important}.-ml-5\/12{margin-left:-41.66667% !important}.-mt-6\/12{margin-top:-50% !important}.-mr-6\/12{margin-right:-50% !important}.-mb-6\/12{margin-bottom:-50% !important}.-ml-6\/12{margin-left:-50% !important}.-mt-7\/12{margin-top:-58.33333% !important}.-mr-7\/12{margin-right:-58.33333% !important}.-mb-7\/12{margin-bottom:-58.33333% !important}.-ml-7\/12{margin-left:-58.33333% !important}.-mt-8\/12{margin-top:-66.66667% !important}.-mr-8\/12{margin-right:-66.66667% !important}.-mb-8\/12{margin-bottom:-66.66667% !important}.-ml-8\/12{margin-left:-66.66667% !important}.-mt-9\/12{margin-top:-75% !important}.-mr-9\/12{margin-right:-75% !important}.-mb-9\/12{margin-bottom:-75% !important}.-ml-9\/12{margin-left:-75% !important}.-mt-10\/12{margin-top:-83.33333% !important}.-mr-10\/12{margin-right:-83.33333% !important}.-mb-10\/12{margin-bottom:-83.33333% !important}.-ml-10\/12{margin-left:-83.33333% !important}.-mt-11\/12{margin-top:-91.66667% !important}.-mr-11\/12{margin-right:-91.66667% !important}.-mb-11\/12{margin-bottom:-91.66667% !important}.-ml-11\/12{margin-left:-91.66667% !important}.-mt-full{margin-top:-100% !important}.-mr-full{margin-right:-100% !important}.-mb-full{margin-bottom:-100% !important}.-ml-full{margin-left:-100% !important}[dir='ltr'] .ltr\:m-0{margin:0 !important}[dir='ltr'] .ltr\:m-1{margin:.25rem !important}[dir='ltr'] .ltr\:m-2{margin:.5rem !important}[dir='ltr'] .ltr\:m-3{margin:.75rem !important}[dir='ltr'] .ltr\:m-4{margin:1rem !important}[dir='ltr'] .ltr\:m-5{margin:1.25rem !important}[dir='ltr'] .ltr\:m-6{margin:1.5rem !important}[dir='ltr'] .ltr\:m-7{margin:1.75rem !important}[dir='ltr'] .ltr\:m-8{margin:2rem !important}[dir='ltr'] .ltr\:m-9{margin:2.25rem !important}[dir='ltr'] .ltr\:m-10{margin:2.5rem !important}[dir='ltr'] .ltr\:m-11{margin:2.75rem !important}[dir='ltr'] .ltr\:m-12{margin:3rem !important}[dir='ltr'] .ltr\:m-13{margin:3.25rem !important}[dir='ltr'] .ltr\:m-14{margin:3.5rem !important}[dir='ltr'] .ltr\:m-15{margin:3.75rem !important}[dir='ltr'] .ltr\:m-16{margin:4rem !important}[dir='ltr'] .ltr\:m-20{margin:5rem !important}[dir='ltr'] .ltr\:m-24{margin:6rem !important}[dir='ltr'] .ltr\:m-28{margin:7rem !important}[dir='ltr'] .ltr\:m-32{margin:8rem !important}[dir='ltr'] .ltr\:m-36{margin:9rem !important}[dir='ltr'] .ltr\:m-40{margin:10rem !important}[dir='ltr'] .ltr\:m-48{margin:12rem !important}[dir='ltr'] .ltr\:m-56{margin:14rem !important}[dir='ltr'] .ltr\:m-60{margin:15rem !important}[dir='ltr'] .ltr\:m-64{margin:16rem !important}[dir='ltr'] .ltr\:m-72{margin:18rem !important}[dir='ltr'] .ltr\:m-80{margin:20rem !important}[dir='ltr'] .ltr\:m-96{margin:24rem !important}[dir='ltr'] .ltr\:m-auto{margin:auto !important}[dir='ltr'] .ltr\:m-px{margin:1px !important}[dir='ltr'] .ltr\:m-0\.5{margin:.125rem !important}[dir='ltr'] .ltr\:m-1\.5{margin:.375rem !important}[dir='ltr'] .ltr\:m-2\.5{margin:.625rem !important}[dir='ltr'] .ltr\:m-3\.5{margin:.875rem !important}[dir='ltr'] .ltr\:m-1\/2{margin:50% !important}[dir='ltr'] .ltr\:m-1\/3{margin:33.333333% !important}[dir='ltr'] .ltr\:m-2\/3{margin:66.666667% !important}[dir='ltr'] .ltr\:m-1\/4{margin:25% !important}[dir='ltr'] .ltr\:m-2\/4{margin:50% !important}[dir='ltr'] .ltr\:m-3\/4{margin:75% !important}[dir='ltr'] .ltr\:m-1\/5{margin:20% !important}[dir='ltr'] .ltr\:m-2\/5{margin:40% !important}[dir='ltr'] .ltr\:m-3\/5{margin:60% !important}[dir='ltr'] .ltr\:m-4\/5{margin:80% !important}[dir='ltr'] .ltr\:m-1\/6{margin:16.666667% !important}[dir='ltr'] .ltr\:m-2\/6{margin:33.333333% !important}[dir='ltr'] .ltr\:m-3\/6{margin:50% !important}[dir='ltr'] .ltr\:m-4\/6{margin:66.666667% !important}[dir='ltr'] .ltr\:m-5\/6{margin:83.333333% !important}[dir='ltr'] .ltr\:m-1\/12{margin:8.333333% !important}[dir='ltr'] .ltr\:m-2\/12{margin:16.666667% !important}[dir='ltr'] .ltr\:m-3\/12{margin:25% !important}[dir='ltr'] .ltr\:m-4\/12{margin:33.333333% !important}[dir='ltr'] .ltr\:m-5\/12{margin:41.666667% !important}[dir='ltr'] .ltr\:m-6\/12{margin:50% !important}[dir='ltr'] .ltr\:m-7\/12{margin:58.333333% !important}[dir='ltr'] .ltr\:m-8\/12{margin:66.666667% !important}[dir='ltr'] .ltr\:m-9\/12{margin:75% !important}[dir='ltr'] .ltr\:m-10\/12{margin:83.333333% !important}[dir='ltr'] .ltr\:m-11\/12{margin:91.666667% !important}[dir='ltr'] .ltr\:m-full{margin:100% !important}[dir='ltr'] .ltr\:-m-1{margin:-0.25rem !important}[dir='ltr'] .ltr\:-m-2{margin:-0.5rem !important}[dir='ltr'] .ltr\:-m-3{margin:-0.75rem !important}[dir='ltr'] .ltr\:-m-4{margin:-1rem !important}[dir='ltr'] .ltr\:-m-5{margin:-1.25rem !important}[dir='ltr'] .ltr\:-m-6{margin:-1.5rem !important}[dir='ltr'] .ltr\:-m-7{margin:-1.75rem !important}[dir='ltr'] .ltr\:-m-8{margin:-2rem !important}[dir='ltr'] .ltr\:-m-9{margin:-2.25rem !important}[dir='ltr'] .ltr\:-m-10{margin:-2.5rem !important}[dir='ltr'] .ltr\:-m-11{margin:-2.75rem !important}[dir='ltr'] .ltr\:-m-12{margin:-3rem !important}[dir='ltr'] .ltr\:-m-13{margin:-3.25rem !important}[dir='ltr'] .ltr\:-m-14{margin:-3.5rem !important}[dir='ltr'] .ltr\:-m-15{margin:-3.75rem !important}[dir='ltr'] .ltr\:-m-16{margin:-4rem !important}[dir='ltr'] .ltr\:-m-20{margin:-5rem !important}[dir='ltr'] .ltr\:-m-24{margin:-6rem !important}[dir='ltr'] .ltr\:-m-28{margin:-7rem !important}[dir='ltr'] .ltr\:-m-32{margin:-8rem !important}[dir='ltr'] .ltr\:-m-36{margin:-9rem !important}[dir='ltr'] .ltr\:-m-40{margin:-10rem !important}[dir='ltr'] .ltr\:-m-48{margin:-12rem !important}[dir='ltr'] .ltr\:-m-56{margin:-14rem !important}[dir='ltr'] .ltr\:-m-60{margin:-15rem !important}[dir='ltr'] .ltr\:-m-64{margin:-16rem !important}[dir='ltr'] .ltr\:-m-72{margin:-18rem !important}[dir='ltr'] .ltr\:-m-80{margin:-20rem !important}[dir='ltr'] .ltr\:-m-96{margin:-24rem !important}[dir='ltr'] .ltr\:-m-px{margin:-1px !important}[dir='ltr'] .ltr\:-m-0\.5{margin:-0.125rem !important}[dir='ltr'] .ltr\:-m-1\.5{margin:-0.375rem !important}[dir='ltr'] .ltr\:-m-2\.5{margin:-0.625rem !important}[dir='ltr'] .ltr\:-m-3\.5{margin:-0.875rem !important}[dir='ltr'] .ltr\:-m-1\/2{margin:-50% !important}[dir='ltr'] .ltr\:-m-1\/3{margin:-33.33333% !important}[dir='ltr'] .ltr\:-m-2\/3{margin:-66.66667% !important}[dir='ltr'] .ltr\:-m-1\/4{margin:-25% !important}[dir='ltr'] .ltr\:-m-2\/4{margin:-50% !important}[dir='ltr'] .ltr\:-m-3\/4{margin:-75% !important}[dir='ltr'] .ltr\:-m-1\/5{margin:-20% !important}[dir='ltr'] .ltr\:-m-2\/5{margin:-40% !important}[dir='ltr'] .ltr\:-m-3\/5{margin:-60% !important}[dir='ltr'] .ltr\:-m-4\/5{margin:-80% !important}[dir='ltr'] .ltr\:-m-1\/6{margin:-16.66667% !important}[dir='ltr'] .ltr\:-m-2\/6{margin:-33.33333% !important}[dir='ltr'] .ltr\:-m-3\/6{margin:-50% !important}[dir='ltr'] .ltr\:-m-4\/6{margin:-66.66667% !important}[dir='ltr'] .ltr\:-m-5\/6{margin:-83.33333% !important}[dir='ltr'] .ltr\:-m-1\/12{margin:-8.33333% !important}[dir='ltr'] .ltr\:-m-2\/12{margin:-16.66667% !important}[dir='ltr'] .ltr\:-m-3\/12{margin:-25% !important}[dir='ltr'] .ltr\:-m-4\/12{margin:-33.33333% !important}[dir='ltr'] .ltr\:-m-5\/12{margin:-41.66667% !important}[dir='ltr'] .ltr\:-m-6\/12{margin:-50% !important}[dir='ltr'] .ltr\:-m-7\/12{margin:-58.33333% !important}[dir='ltr'] .ltr\:-m-8\/12{margin:-66.66667% !important}[dir='ltr'] .ltr\:-m-9\/12{margin:-75% !important}[dir='ltr'] .ltr\:-m-10\/12{margin:-83.33333% !important}[dir='ltr'] .ltr\:-m-11\/12{margin:-91.66667% !important}[dir='ltr'] .ltr\:-m-full{margin:-100% !important}[dir='ltr'] .ltr\:my-0{margin-top:0 !important;margin-bottom:0 !important}[dir='ltr'] .ltr\:mx-0{margin-left:0 !important;margin-right:0 !important}[dir='ltr'] .ltr\:my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}[dir='ltr'] .ltr\:mx-1{margin-left:.25rem !important;margin-right:.25rem !important}[dir='ltr'] .ltr\:my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}[dir='ltr'] .ltr\:mx-2{margin-left:.5rem !important;margin-right:.5rem !important}[dir='ltr'] .ltr\:my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}[dir='ltr'] .ltr\:mx-3{margin-left:.75rem !important;margin-right:.75rem !important}[dir='ltr'] .ltr\:my-4{margin-top:1rem !important;margin-bottom:1rem !important}[dir='ltr'] .ltr\:mx-4{margin-left:1rem !important;margin-right:1rem !important}[dir='ltr'] .ltr\:my-5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}[dir='ltr'] .ltr\:mx-5{margin-left:1.25rem !important;margin-right:1.25rem !important}[dir='ltr'] .ltr\:my-6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}[dir='ltr'] .ltr\:mx-6{margin-left:1.5rem !important;margin-right:1.5rem !important}[dir='ltr'] .ltr\:my-7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}[dir='ltr'] .ltr\:mx-7{margin-left:1.75rem !important;margin-right:1.75rem !important}[dir='ltr'] .ltr\:my-8{margin-top:2rem !important;margin-bottom:2rem !important}[dir='ltr'] .ltr\:mx-8{margin-left:2rem !important;margin-right:2rem !important}[dir='ltr'] .ltr\:my-9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}[dir='ltr'] .ltr\:mx-9{margin-left:2.25rem !important;margin-right:2.25rem !important}[dir='ltr'] .ltr\:my-10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}[dir='ltr'] .ltr\:mx-10{margin-left:2.5rem !important;margin-right:2.5rem !important}[dir='ltr'] .ltr\:my-11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}[dir='ltr'] .ltr\:mx-11{margin-left:2.75rem !important;margin-right:2.75rem !important}[dir='ltr'] .ltr\:my-12{margin-top:3rem !important;margin-bottom:3rem !important}[dir='ltr'] .ltr\:mx-12{margin-left:3rem !important;margin-right:3rem !important}[dir='ltr'] .ltr\:my-13{margin-top:3.25rem !important;margin-bottom:3.25rem !important}[dir='ltr'] .ltr\:mx-13{margin-left:3.25rem !important;margin-right:3.25rem !important}[dir='ltr'] .ltr\:my-14{margin-top:3.5rem !important;margin-bottom:3.5rem !important}[dir='ltr'] .ltr\:mx-14{margin-left:3.5rem !important;margin-right:3.5rem !important}[dir='ltr'] .ltr\:my-15{margin-top:3.75rem !important;margin-bottom:3.75rem !important}[dir='ltr'] .ltr\:mx-15{margin-left:3.75rem !important;margin-right:3.75rem !important}[dir='ltr'] .ltr\:my-16{margin-top:4rem !important;margin-bottom:4rem !important}[dir='ltr'] .ltr\:mx-16{margin-left:4rem !important;margin-right:4rem !important}[dir='ltr'] .ltr\:my-20{margin-top:5rem !important;margin-bottom:5rem !important}[dir='ltr'] .ltr\:mx-20{margin-left:5rem !important;margin-right:5rem !important}[dir='ltr'] .ltr\:my-24{margin-top:6rem !important;margin-bottom:6rem !important}[dir='ltr'] .ltr\:mx-24{margin-left:6rem !important;margin-right:6rem !important}[dir='ltr'] .ltr\:my-28{margin-top:7rem !important;margin-bottom:7rem !important}[dir='ltr'] .ltr\:mx-28{margin-left:7rem !important;margin-right:7rem !important}[dir='ltr'] .ltr\:my-32{margin-top:8rem !important;margin-bottom:8rem !important}[dir='ltr'] .ltr\:mx-32{margin-left:8rem !important;margin-right:8rem !important}[dir='ltr'] .ltr\:my-36{margin-top:9rem !important;margin-bottom:9rem !important}[dir='ltr'] .ltr\:mx-36{margin-left:9rem !important;margin-right:9rem !important}[dir='ltr'] .ltr\:my-40{margin-top:10rem !important;margin-bottom:10rem !important}[dir='ltr'] .ltr\:mx-40{margin-left:10rem !important;margin-right:10rem !important}[dir='ltr'] .ltr\:my-48{margin-top:12rem !important;margin-bottom:12rem !important}[dir='ltr'] .ltr\:mx-48{margin-left:12rem !important;margin-right:12rem !important}[dir='ltr'] .ltr\:my-56{margin-top:14rem !important;margin-bottom:14rem !important}[dir='ltr'] .ltr\:mx-56{margin-left:14rem !important;margin-right:14rem !important}[dir='ltr'] .ltr\:my-60{margin-top:15rem !important;margin-bottom:15rem !important}[dir='ltr'] .ltr\:mx-60{margin-left:15rem !important;margin-right:15rem !important}[dir='ltr'] .ltr\:my-64{margin-top:16rem !important;margin-bottom:16rem !important}[dir='ltr'] .ltr\:mx-64{margin-left:16rem !important;margin-right:16rem !important}[dir='ltr'] .ltr\:my-72{margin-top:18rem !important;margin-bottom:18rem !important}[dir='ltr'] .ltr\:mx-72{margin-left:18rem !important;margin-right:18rem !important}[dir='ltr'] .ltr\:my-80{margin-top:20rem !important;margin-bottom:20rem !important}[dir='ltr'] .ltr\:mx-80{margin-left:20rem !important;margin-right:20rem !important}[dir='ltr'] .ltr\:my-96{margin-top:24rem !important;margin-bottom:24rem !important}[dir='ltr'] .ltr\:mx-96{margin-left:24rem !important;margin-right:24rem !important}[dir='ltr'] .ltr\:my-auto{margin-top:auto !important;margin-bottom:auto !important}[dir='ltr'] .ltr\:mx-auto{margin-left:auto !important;margin-right:auto !important}[dir='ltr'] .ltr\:my-px{margin-top:1px !important;margin-bottom:1px !important}[dir='ltr'] .ltr\:mx-px{margin-left:1px !important;margin-right:1px !important}[dir='ltr'] .ltr\:my-0\.5{margin-top:.125rem !important;margin-bottom:.125rem !important}[dir='ltr'] .ltr\:mx-0\.5{margin-left:.125rem !important;margin-right:.125rem !important}[dir='ltr'] .ltr\:my-1\.5{margin-top:.375rem !important;margin-bottom:.375rem !important}[dir='ltr'] .ltr\:mx-1\.5{margin-left:.375rem !important;margin-right:.375rem !important}[dir='ltr'] .ltr\:my-2\.5{margin-top:.625rem !important;margin-bottom:.625rem !important}[dir='ltr'] .ltr\:mx-2\.5{margin-left:.625rem !important;margin-right:.625rem !important}[dir='ltr'] .ltr\:my-3\.5{margin-top:.875rem !important;margin-bottom:.875rem !important}[dir='ltr'] .ltr\:mx-3\.5{margin-left:.875rem !important;margin-right:.875rem !important}[dir='ltr'] .ltr\:my-1\/2{margin-top:50% !important;margin-bottom:50% !important}[dir='ltr'] .ltr\:mx-1\/2{margin-left:50% !important;margin-right:50% !important}[dir='ltr'] .ltr\:my-1\/3{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='ltr'] .ltr\:mx-1\/3{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='ltr'] .ltr\:my-2\/3{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='ltr'] .ltr\:mx-2\/3{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='ltr'] .ltr\:my-1\/4{margin-top:25% !important;margin-bottom:25% !important}[dir='ltr'] .ltr\:mx-1\/4{margin-left:25% !important;margin-right:25% !important}[dir='ltr'] .ltr\:my-2\/4{margin-top:50% !important;margin-bottom:50% !important}[dir='ltr'] .ltr\:mx-2\/4{margin-left:50% !important;margin-right:50% !important}[dir='ltr'] .ltr\:my-3\/4{margin-top:75% !important;margin-bottom:75% !important}[dir='ltr'] .ltr\:mx-3\/4{margin-left:75% !important;margin-right:75% !important}[dir='ltr'] .ltr\:my-1\/5{margin-top:20% !important;margin-bottom:20% !important}[dir='ltr'] .ltr\:mx-1\/5{margin-left:20% !important;margin-right:20% !important}[dir='ltr'] .ltr\:my-2\/5{margin-top:40% !important;margin-bottom:40% !important}[dir='ltr'] .ltr\:mx-2\/5{margin-left:40% !important;margin-right:40% !important}[dir='ltr'] .ltr\:my-3\/5{margin-top:60% !important;margin-bottom:60% !important}[dir='ltr'] .ltr\:mx-3\/5{margin-left:60% !important;margin-right:60% !important}[dir='ltr'] .ltr\:my-4\/5{margin-top:80% !important;margin-bottom:80% !important}[dir='ltr'] .ltr\:mx-4\/5{margin-left:80% !important;margin-right:80% !important}[dir='ltr'] .ltr\:my-1\/6{margin-top:16.666667% !important;margin-bottom:16.666667% !important}[dir='ltr'] .ltr\:mx-1\/6{margin-left:16.666667% !important;margin-right:16.666667% !important}[dir='ltr'] .ltr\:my-2\/6{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='ltr'] .ltr\:mx-2\/6{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='ltr'] .ltr\:my-3\/6{margin-top:50% !important;margin-bottom:50% !important}[dir='ltr'] .ltr\:mx-3\/6{margin-left:50% !important;margin-right:50% !important}[dir='ltr'] .ltr\:my-4\/6{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='ltr'] .ltr\:mx-4\/6{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='ltr'] .ltr\:my-5\/6{margin-top:83.333333% !important;margin-bottom:83.333333% !important}[dir='ltr'] .ltr\:mx-5\/6{margin-left:83.333333% !important;margin-right:83.333333% !important}[dir='ltr'] .ltr\:my-1\/12{margin-top:8.333333% !important;margin-bottom:8.333333% !important}[dir='ltr'] .ltr\:mx-1\/12{margin-left:8.333333% !important;margin-right:8.333333% !important}[dir='ltr'] .ltr\:my-2\/12{margin-top:16.666667% !important;margin-bottom:16.666667% !important}[dir='ltr'] .ltr\:mx-2\/12{margin-left:16.666667% !important;margin-right:16.666667% !important}[dir='ltr'] .ltr\:my-3\/12{margin-top:25% !important;margin-bottom:25% !important}[dir='ltr'] .ltr\:mx-3\/12{margin-left:25% !important;margin-right:25% !important}[dir='ltr'] .ltr\:my-4\/12{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='ltr'] .ltr\:mx-4\/12{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='ltr'] .ltr\:my-5\/12{margin-top:41.666667% !important;margin-bottom:41.666667% !important}[dir='ltr'] .ltr\:mx-5\/12{margin-left:41.666667% !important;margin-right:41.666667% !important}[dir='ltr'] .ltr\:my-6\/12{margin-top:50% !important;margin-bottom:50% !important}[dir='ltr'] .ltr\:mx-6\/12{margin-left:50% !important;margin-right:50% !important}[dir='ltr'] .ltr\:my-7\/12{margin-top:58.333333% !important;margin-bottom:58.333333% !important}[dir='ltr'] .ltr\:mx-7\/12{margin-left:58.333333% !important;margin-right:58.333333% !important}[dir='ltr'] .ltr\:my-8\/12{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='ltr'] .ltr\:mx-8\/12{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='ltr'] .ltr\:my-9\/12{margin-top:75% !important;margin-bottom:75% !important}[dir='ltr'] .ltr\:mx-9\/12{margin-left:75% !important;margin-right:75% !important}[dir='ltr'] .ltr\:my-10\/12{margin-top:83.333333% !important;margin-bottom:83.333333% !important}[dir='ltr'] .ltr\:mx-10\/12{margin-left:83.333333% !important;margin-right:83.333333% !important}[dir='ltr'] .ltr\:my-11\/12{margin-top:91.666667% !important;margin-bottom:91.666667% !important}[dir='ltr'] .ltr\:mx-11\/12{margin-left:91.666667% !important;margin-right:91.666667% !important}[dir='ltr'] .ltr\:my-full{margin-top:100% !important;margin-bottom:100% !important}[dir='ltr'] .ltr\:mx-full{margin-left:100% !important;margin-right:100% !important}[dir='ltr'] .ltr\:-my-1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}[dir='ltr'] .ltr\:-mx-1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}[dir='ltr'] .ltr\:-my-2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}[dir='ltr'] .ltr\:-mx-2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}[dir='ltr'] .ltr\:-my-3{margin-top:-0.75rem !important;margin-bottom:-0.75rem !important}[dir='ltr'] .ltr\:-mx-3{margin-left:-0.75rem !important;margin-right:-0.75rem !important}[dir='ltr'] .ltr\:-my-4{margin-top:-1rem !important;margin-bottom:-1rem !important}[dir='ltr'] .ltr\:-mx-4{margin-left:-1rem !important;margin-right:-1rem !important}[dir='ltr'] .ltr\:-my-5{margin-top:-1.25rem !important;margin-bottom:-1.25rem !important}[dir='ltr'] .ltr\:-mx-5{margin-left:-1.25rem !important;margin-right:-1.25rem !important}[dir='ltr'] .ltr\:-my-6{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}[dir='ltr'] .ltr\:-mx-6{margin-left:-1.5rem !important;margin-right:-1.5rem !important}[dir='ltr'] .ltr\:-my-7{margin-top:-1.75rem !important;margin-bottom:-1.75rem !important}[dir='ltr'] .ltr\:-mx-7{margin-left:-1.75rem !important;margin-right:-1.75rem !important}[dir='ltr'] .ltr\:-my-8{margin-top:-2rem !important;margin-bottom:-2rem !important}[dir='ltr'] .ltr\:-mx-8{margin-left:-2rem !important;margin-right:-2rem !important}[dir='ltr'] .ltr\:-my-9{margin-top:-2.25rem !important;margin-bottom:-2.25rem !important}[dir='ltr'] .ltr\:-mx-9{margin-left:-2.25rem !important;margin-right:-2.25rem !important}[dir='ltr'] .ltr\:-my-10{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}[dir='ltr'] .ltr\:-mx-10{margin-left:-2.5rem !important;margin-right:-2.5rem !important}[dir='ltr'] .ltr\:-my-11{margin-top:-2.75rem !important;margin-bottom:-2.75rem !important}[dir='ltr'] .ltr\:-mx-11{margin-left:-2.75rem !important;margin-right:-2.75rem !important}[dir='ltr'] .ltr\:-my-12{margin-top:-3rem !important;margin-bottom:-3rem !important}[dir='ltr'] .ltr\:-mx-12{margin-left:-3rem !important;margin-right:-3rem !important}[dir='ltr'] .ltr\:-my-13{margin-top:-3.25rem !important;margin-bottom:-3.25rem !important}[dir='ltr'] .ltr\:-mx-13{margin-left:-3.25rem !important;margin-right:-3.25rem !important}[dir='ltr'] .ltr\:-my-14{margin-top:-3.5rem !important;margin-bottom:-3.5rem !important}[dir='ltr'] .ltr\:-mx-14{margin-left:-3.5rem !important;margin-right:-3.5rem !important}[dir='ltr'] .ltr\:-my-15{margin-top:-3.75rem !important;margin-bottom:-3.75rem !important}[dir='ltr'] .ltr\:-mx-15{margin-left:-3.75rem !important;margin-right:-3.75rem !important}[dir='ltr'] .ltr\:-my-16{margin-top:-4rem !important;margin-bottom:-4rem !important}[dir='ltr'] .ltr\:-mx-16{margin-left:-4rem !important;margin-right:-4rem !important}[dir='ltr'] .ltr\:-my-20{margin-top:-5rem !important;margin-bottom:-5rem !important}[dir='ltr'] .ltr\:-mx-20{margin-left:-5rem !important;margin-right:-5rem !important}[dir='ltr'] .ltr\:-my-24{margin-top:-6rem !important;margin-bottom:-6rem !important}[dir='ltr'] .ltr\:-mx-24{margin-left:-6rem !important;margin-right:-6rem !important}[dir='ltr'] .ltr\:-my-28{margin-top:-7rem !important;margin-bottom:-7rem !important}[dir='ltr'] .ltr\:-mx-28{margin-left:-7rem !important;margin-right:-7rem !important}[dir='ltr'] .ltr\:-my-32{margin-top:-8rem !important;margin-bottom:-8rem !important}[dir='ltr'] .ltr\:-mx-32{margin-left:-8rem !important;margin-right:-8rem !important}[dir='ltr'] .ltr\:-my-36{margin-top:-9rem !important;margin-bottom:-9rem !important}[dir='ltr'] .ltr\:-mx-36{margin-left:-9rem !important;margin-right:-9rem !important}[dir='ltr'] .ltr\:-my-40{margin-top:-10rem !important;margin-bottom:-10rem !important}[dir='ltr'] .ltr\:-mx-40{margin-left:-10rem !important;margin-right:-10rem !important}[dir='ltr'] .ltr\:-my-48{margin-top:-12rem !important;margin-bottom:-12rem !important}[dir='ltr'] .ltr\:-mx-48{margin-left:-12rem !important;margin-right:-12rem !important}[dir='ltr'] .ltr\:-my-56{margin-top:-14rem !important;margin-bottom:-14rem !important}[dir='ltr'] .ltr\:-mx-56{margin-left:-14rem !important;margin-right:-14rem !important}[dir='ltr'] .ltr\:-my-60{margin-top:-15rem !important;margin-bottom:-15rem !important}[dir='ltr'] .ltr\:-mx-60{margin-left:-15rem !important;margin-right:-15rem !important}[dir='ltr'] .ltr\:-my-64{margin-top:-16rem !important;margin-bottom:-16rem !important}[dir='ltr'] .ltr\:-mx-64{margin-left:-16rem !important;margin-right:-16rem !important}[dir='ltr'] .ltr\:-my-72{margin-top:-18rem !important;margin-bottom:-18rem !important}[dir='ltr'] .ltr\:-mx-72{margin-left:-18rem !important;margin-right:-18rem !important}[dir='ltr'] .ltr\:-my-80{margin-top:-20rem !important;margin-bottom:-20rem !important}[dir='ltr'] .ltr\:-mx-80{margin-left:-20rem !important;margin-right:-20rem !important}[dir='ltr'] .ltr\:-my-96{margin-top:-24rem !important;margin-bottom:-24rem !important}[dir='ltr'] .ltr\:-mx-96{margin-left:-24rem !important;margin-right:-24rem !important}[dir='ltr'] .ltr\:-my-px{margin-top:-1px !important;margin-bottom:-1px !important}[dir='ltr'] .ltr\:-mx-px{margin-left:-1px !important;margin-right:-1px !important}[dir='ltr'] .ltr\:-my-0\.5{margin-top:-0.125rem !important;margin-bottom:-0.125rem !important}[dir='ltr'] .ltr\:-mx-0\.5{margin-left:-0.125rem !important;margin-right:-0.125rem !important}[dir='ltr'] .ltr\:-my-1\.5{margin-top:-0.375rem !important;margin-bottom:-0.375rem !important}[dir='ltr'] .ltr\:-mx-1\.5{margin-left:-0.375rem !important;margin-right:-0.375rem !important}[dir='ltr'] .ltr\:-my-2\.5{margin-top:-0.625rem !important;margin-bottom:-0.625rem !important}[dir='ltr'] .ltr\:-mx-2\.5{margin-left:-0.625rem !important;margin-right:-0.625rem !important}[dir='ltr'] .ltr\:-my-3\.5{margin-top:-0.875rem !important;margin-bottom:-0.875rem !important}[dir='ltr'] .ltr\:-mx-3\.5{margin-left:-0.875rem !important;margin-right:-0.875rem !important}[dir='ltr'] .ltr\:-my-1\/2{margin-top:-50% !important;margin-bottom:-50% !important}[dir='ltr'] .ltr\:-mx-1\/2{margin-left:-50% !important;margin-right:-50% !important}[dir='ltr'] .ltr\:-my-1\/3{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='ltr'] .ltr\:-mx-1\/3{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='ltr'] .ltr\:-my-2\/3{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='ltr'] .ltr\:-mx-2\/3{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='ltr'] .ltr\:-my-1\/4{margin-top:-25% !important;margin-bottom:-25% !important}[dir='ltr'] .ltr\:-mx-1\/4{margin-left:-25% !important;margin-right:-25% !important}[dir='ltr'] .ltr\:-my-2\/4{margin-top:-50% !important;margin-bottom:-50% !important}[dir='ltr'] .ltr\:-mx-2\/4{margin-left:-50% !important;margin-right:-50% !important}[dir='ltr'] .ltr\:-my-3\/4{margin-top:-75% !important;margin-bottom:-75% !important}[dir='ltr'] .ltr\:-mx-3\/4{margin-left:-75% !important;margin-right:-75% !important}[dir='ltr'] .ltr\:-my-1\/5{margin-top:-20% !important;margin-bottom:-20% !important}[dir='ltr'] .ltr\:-mx-1\/5{margin-left:-20% !important;margin-right:-20% !important}[dir='ltr'] .ltr\:-my-2\/5{margin-top:-40% !important;margin-bottom:-40% !important}[dir='ltr'] .ltr\:-mx-2\/5{margin-left:-40% !important;margin-right:-40% !important}[dir='ltr'] .ltr\:-my-3\/5{margin-top:-60% !important;margin-bottom:-60% !important}[dir='ltr'] .ltr\:-mx-3\/5{margin-left:-60% !important;margin-right:-60% !important}[dir='ltr'] .ltr\:-my-4\/5{margin-top:-80% !important;margin-bottom:-80% !important}[dir='ltr'] .ltr\:-mx-4\/5{margin-left:-80% !important;margin-right:-80% !important}[dir='ltr'] .ltr\:-my-1\/6{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}[dir='ltr'] .ltr\:-mx-1\/6{margin-left:-16.66667% !important;margin-right:-16.66667% !important}[dir='ltr'] .ltr\:-my-2\/6{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='ltr'] .ltr\:-mx-2\/6{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='ltr'] .ltr\:-my-3\/6{margin-top:-50% !important;margin-bottom:-50% !important}[dir='ltr'] .ltr\:-mx-3\/6{margin-left:-50% !important;margin-right:-50% !important}[dir='ltr'] .ltr\:-my-4\/6{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='ltr'] .ltr\:-mx-4\/6{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='ltr'] .ltr\:-my-5\/6{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}[dir='ltr'] .ltr\:-mx-5\/6{margin-left:-83.33333% !important;margin-right:-83.33333% !important}[dir='ltr'] .ltr\:-my-1\/12{margin-top:-8.33333% !important;margin-bottom:-8.33333% !important}[dir='ltr'] .ltr\:-mx-1\/12{margin-left:-8.33333% !important;margin-right:-8.33333% !important}[dir='ltr'] .ltr\:-my-2\/12{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}[dir='ltr'] .ltr\:-mx-2\/12{margin-left:-16.66667% !important;margin-right:-16.66667% !important}[dir='ltr'] .ltr\:-my-3\/12{margin-top:-25% !important;margin-bottom:-25% !important}[dir='ltr'] .ltr\:-mx-3\/12{margin-left:-25% !important;margin-right:-25% !important}[dir='ltr'] .ltr\:-my-4\/12{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='ltr'] .ltr\:-mx-4\/12{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='ltr'] .ltr\:-my-5\/12{margin-top:-41.66667% !important;margin-bottom:-41.66667% !important}[dir='ltr'] .ltr\:-mx-5\/12{margin-left:-41.66667% !important;margin-right:-41.66667% !important}[dir='ltr'] .ltr\:-my-6\/12{margin-top:-50% !important;margin-bottom:-50% !important}[dir='ltr'] .ltr\:-mx-6\/12{margin-left:-50% !important;margin-right:-50% !important}[dir='ltr'] .ltr\:-my-7\/12{margin-top:-58.33333% !important;margin-bottom:-58.33333% !important}[dir='ltr'] .ltr\:-mx-7\/12{margin-left:-58.33333% !important;margin-right:-58.33333% !important}[dir='ltr'] .ltr\:-my-8\/12{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='ltr'] .ltr\:-mx-8\/12{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='ltr'] .ltr\:-my-9\/12{margin-top:-75% !important;margin-bottom:-75% !important}[dir='ltr'] .ltr\:-mx-9\/12{margin-left:-75% !important;margin-right:-75% !important}[dir='ltr'] .ltr\:-my-10\/12{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}[dir='ltr'] .ltr\:-mx-10\/12{margin-left:-83.33333% !important;margin-right:-83.33333% !important}[dir='ltr'] .ltr\:-my-11\/12{margin-top:-91.66667% !important;margin-bottom:-91.66667% !important}[dir='ltr'] .ltr\:-mx-11\/12{margin-left:-91.66667% !important;margin-right:-91.66667% !important}[dir='ltr'] .ltr\:-my-full{margin-top:-100% !important;margin-bottom:-100% !important}[dir='ltr'] .ltr\:-mx-full{margin-left:-100% !important;margin-right:-100% !important}[dir='ltr'] .ltr\:mt-0{margin-top:0 !important}[dir='ltr'] .ltr\:mr-0{margin-right:0 !important}[dir='ltr'] .ltr\:mb-0{margin-bottom:0 !important}[dir='ltr'] .ltr\:ml-0{margin-left:0 !important}[dir='ltr'] .ltr\:mt-1{margin-top:.25rem !important}[dir='ltr'] .ltr\:mr-1{margin-right:.25rem !important}[dir='ltr'] .ltr\:mb-1{margin-bottom:.25rem !important}[dir='ltr'] .ltr\:ml-1{margin-left:.25rem !important}[dir='ltr'] .ltr\:mt-2{margin-top:.5rem !important}[dir='ltr'] .ltr\:mr-2{margin-right:.5rem !important}[dir='ltr'] .ltr\:mb-2{margin-bottom:.5rem !important}[dir='ltr'] .ltr\:ml-2{margin-left:.5rem !important}[dir='ltr'] .ltr\:mt-3{margin-top:.75rem !important}[dir='ltr'] .ltr\:mr-3{margin-right:.75rem !important}[dir='ltr'] .ltr\:mb-3{margin-bottom:.75rem !important}[dir='ltr'] .ltr\:ml-3{margin-left:.75rem !important}[dir='ltr'] .ltr\:mt-4{margin-top:1rem !important}[dir='ltr'] .ltr\:mr-4{margin-right:1rem !important}[dir='ltr'] .ltr\:mb-4{margin-bottom:1rem !important}[dir='ltr'] .ltr\:ml-4{margin-left:1rem !important}[dir='ltr'] .ltr\:mt-5{margin-top:1.25rem !important}[dir='ltr'] .ltr\:mr-5{margin-right:1.25rem !important}[dir='ltr'] .ltr\:mb-5{margin-bottom:1.25rem !important}[dir='ltr'] .ltr\:ml-5{margin-left:1.25rem !important}[dir='ltr'] .ltr\:mt-6{margin-top:1.5rem !important}[dir='ltr'] .ltr\:mr-6{margin-right:1.5rem !important}[dir='ltr'] .ltr\:mb-6{margin-bottom:1.5rem !important}[dir='ltr'] .ltr\:ml-6{margin-left:1.5rem !important}[dir='ltr'] .ltr\:mt-7{margin-top:1.75rem !important}[dir='ltr'] .ltr\:mr-7{margin-right:1.75rem !important}[dir='ltr'] .ltr\:mb-7{margin-bottom:1.75rem !important}[dir='ltr'] .ltr\:ml-7{margin-left:1.75rem !important}[dir='ltr'] .ltr\:mt-8{margin-top:2rem !important}[dir='ltr'] .ltr\:mr-8{margin-right:2rem !important}[dir='ltr'] .ltr\:mb-8{margin-bottom:2rem !important}[dir='ltr'] .ltr\:ml-8{margin-left:2rem !important}[dir='ltr'] .ltr\:mt-9{margin-top:2.25rem !important}[dir='ltr'] .ltr\:mr-9{margin-right:2.25rem !important}[dir='ltr'] .ltr\:mb-9{margin-bottom:2.25rem !important}[dir='ltr'] .ltr\:ml-9{margin-left:2.25rem !important}[dir='ltr'] .ltr\:mt-10{margin-top:2.5rem !important}[dir='ltr'] .ltr\:mr-10{margin-right:2.5rem !important}[dir='ltr'] .ltr\:mb-10{margin-bottom:2.5rem !important}[dir='ltr'] .ltr\:ml-10{margin-left:2.5rem !important}[dir='ltr'] .ltr\:mt-11{margin-top:2.75rem !important}[dir='ltr'] .ltr\:mr-11{margin-right:2.75rem !important}[dir='ltr'] .ltr\:mb-11{margin-bottom:2.75rem !important}[dir='ltr'] .ltr\:ml-11{margin-left:2.75rem !important}[dir='ltr'] .ltr\:mt-12{margin-top:3rem !important}[dir='ltr'] .ltr\:mr-12{margin-right:3rem !important}[dir='ltr'] .ltr\:mb-12{margin-bottom:3rem !important}[dir='ltr'] .ltr\:ml-12{margin-left:3rem !important}[dir='ltr'] .ltr\:mt-13{margin-top:3.25rem !important}[dir='ltr'] .ltr\:mr-13{margin-right:3.25rem !important}[dir='ltr'] .ltr\:mb-13{margin-bottom:3.25rem !important}[dir='ltr'] .ltr\:ml-13{margin-left:3.25rem !important}[dir='ltr'] .ltr\:mt-14{margin-top:3.5rem !important}[dir='ltr'] .ltr\:mr-14{margin-right:3.5rem !important}[dir='ltr'] .ltr\:mb-14{margin-bottom:3.5rem !important}[dir='ltr'] .ltr\:ml-14{margin-left:3.5rem !important}[dir='ltr'] .ltr\:mt-15{margin-top:3.75rem !important}[dir='ltr'] .ltr\:mr-15{margin-right:3.75rem !important}[dir='ltr'] .ltr\:mb-15{margin-bottom:3.75rem !important}[dir='ltr'] .ltr\:ml-15{margin-left:3.75rem !important}[dir='ltr'] .ltr\:mt-16{margin-top:4rem !important}[dir='ltr'] .ltr\:mr-16{margin-right:4rem !important}[dir='ltr'] .ltr\:mb-16{margin-bottom:4rem !important}[dir='ltr'] .ltr\:ml-16{margin-left:4rem !important}[dir='ltr'] .ltr\:mt-20{margin-top:5rem !important}[dir='ltr'] .ltr\:mr-20{margin-right:5rem !important}[dir='ltr'] .ltr\:mb-20{margin-bottom:5rem !important}[dir='ltr'] .ltr\:ml-20{margin-left:5rem !important}[dir='ltr'] .ltr\:mt-24{margin-top:6rem !important}[dir='ltr'] .ltr\:mr-24{margin-right:6rem !important}[dir='ltr'] .ltr\:mb-24{margin-bottom:6rem !important}[dir='ltr'] .ltr\:ml-24{margin-left:6rem !important}[dir='ltr'] .ltr\:mt-28{margin-top:7rem !important}[dir='ltr'] .ltr\:mr-28{margin-right:7rem !important}[dir='ltr'] .ltr\:mb-28{margin-bottom:7rem !important}[dir='ltr'] .ltr\:ml-28{margin-left:7rem !important}[dir='ltr'] .ltr\:mt-32{margin-top:8rem !important}[dir='ltr'] .ltr\:mr-32{margin-right:8rem !important}[dir='ltr'] .ltr\:mb-32{margin-bottom:8rem !important}[dir='ltr'] .ltr\:ml-32{margin-left:8rem !important}[dir='ltr'] .ltr\:mt-36{margin-top:9rem !important}[dir='ltr'] .ltr\:mr-36{margin-right:9rem !important}[dir='ltr'] .ltr\:mb-36{margin-bottom:9rem !important}[dir='ltr'] .ltr\:ml-36{margin-left:9rem !important}[dir='ltr'] .ltr\:mt-40{margin-top:10rem !important}[dir='ltr'] .ltr\:mr-40{margin-right:10rem !important}[dir='ltr'] .ltr\:mb-40{margin-bottom:10rem !important}[dir='ltr'] .ltr\:ml-40{margin-left:10rem !important}[dir='ltr'] .ltr\:mt-48{margin-top:12rem !important}[dir='ltr'] .ltr\:mr-48{margin-right:12rem !important}[dir='ltr'] .ltr\:mb-48{margin-bottom:12rem !important}[dir='ltr'] .ltr\:ml-48{margin-left:12rem !important}[dir='ltr'] .ltr\:mt-56{margin-top:14rem !important}[dir='ltr'] .ltr\:mr-56{margin-right:14rem !important}[dir='ltr'] .ltr\:mb-56{margin-bottom:14rem !important}[dir='ltr'] .ltr\:ml-56{margin-left:14rem !important}[dir='ltr'] .ltr\:mt-60{margin-top:15rem !important}[dir='ltr'] .ltr\:mr-60{margin-right:15rem !important}[dir='ltr'] .ltr\:mb-60{margin-bottom:15rem !important}[dir='ltr'] .ltr\:ml-60{margin-left:15rem !important}[dir='ltr'] .ltr\:mt-64{margin-top:16rem !important}[dir='ltr'] .ltr\:mr-64{margin-right:16rem !important}[dir='ltr'] .ltr\:mb-64{margin-bottom:16rem !important}[dir='ltr'] .ltr\:ml-64{margin-left:16rem !important}[dir='ltr'] .ltr\:mt-72{margin-top:18rem !important}[dir='ltr'] .ltr\:mr-72{margin-right:18rem !important}[dir='ltr'] .ltr\:mb-72{margin-bottom:18rem !important}[dir='ltr'] .ltr\:ml-72{margin-left:18rem !important}[dir='ltr'] .ltr\:mt-80{margin-top:20rem !important}[dir='ltr'] .ltr\:mr-80{margin-right:20rem !important}[dir='ltr'] .ltr\:mb-80{margin-bottom:20rem !important}[dir='ltr'] .ltr\:ml-80{margin-left:20rem !important}[dir='ltr'] .ltr\:mt-96{margin-top:24rem !important}[dir='ltr'] .ltr\:mr-96{margin-right:24rem !important}[dir='ltr'] .ltr\:mb-96{margin-bottom:24rem !important}[dir='ltr'] .ltr\:ml-96{margin-left:24rem !important}[dir='ltr'] .ltr\:mt-auto{margin-top:auto !important}[dir='ltr'] .ltr\:mr-auto{margin-right:auto !important}[dir='ltr'] .ltr\:mb-auto{margin-bottom:auto !important}[dir='ltr'] .ltr\:ml-auto{margin-left:auto !important}[dir='ltr'] .ltr\:mt-px{margin-top:1px !important}[dir='ltr'] .ltr\:mr-px{margin-right:1px !important}[dir='ltr'] .ltr\:mb-px{margin-bottom:1px !important}[dir='ltr'] .ltr\:ml-px{margin-left:1px !important}[dir='ltr'] .ltr\:mt-0\.5{margin-top:.125rem !important}[dir='ltr'] .ltr\:mr-0\.5{margin-right:.125rem !important}[dir='ltr'] .ltr\:mb-0\.5{margin-bottom:.125rem !important}[dir='ltr'] .ltr\:ml-0\.5{margin-left:.125rem !important}[dir='ltr'] .ltr\:mt-1\.5{margin-top:.375rem !important}[dir='ltr'] .ltr\:mr-1\.5{margin-right:.375rem !important}[dir='ltr'] .ltr\:mb-1\.5{margin-bottom:.375rem !important}[dir='ltr'] .ltr\:ml-1\.5{margin-left:.375rem !important}[dir='ltr'] .ltr\:mt-2\.5{margin-top:.625rem !important}[dir='ltr'] .ltr\:mr-2\.5{margin-right:.625rem !important}[dir='ltr'] .ltr\:mb-2\.5{margin-bottom:.625rem !important}[dir='ltr'] .ltr\:ml-2\.5{margin-left:.625rem !important}[dir='ltr'] .ltr\:mt-3\.5{margin-top:.875rem !important}[dir='ltr'] .ltr\:mr-3\.5{margin-right:.875rem !important}[dir='ltr'] .ltr\:mb-3\.5{margin-bottom:.875rem !important}[dir='ltr'] .ltr\:ml-3\.5{margin-left:.875rem !important}[dir='ltr'] .ltr\:mt-1\/2{margin-top:50% !important}[dir='ltr'] .ltr\:mr-1\/2{margin-right:50% !important}[dir='ltr'] .ltr\:mb-1\/2{margin-bottom:50% !important}[dir='ltr'] .ltr\:ml-1\/2{margin-left:50% !important}[dir='ltr'] .ltr\:mt-1\/3{margin-top:33.333333% !important}[dir='ltr'] .ltr\:mr-1\/3{margin-right:33.333333% !important}[dir='ltr'] .ltr\:mb-1\/3{margin-bottom:33.333333% !important}[dir='ltr'] .ltr\:ml-1\/3{margin-left:33.333333% !important}[dir='ltr'] .ltr\:mt-2\/3{margin-top:66.666667% !important}[dir='ltr'] .ltr\:mr-2\/3{margin-right:66.666667% !important}[dir='ltr'] .ltr\:mb-2\/3{margin-bottom:66.666667% !important}[dir='ltr'] .ltr\:ml-2\/3{margin-left:66.666667% !important}[dir='ltr'] .ltr\:mt-1\/4{margin-top:25% !important}[dir='ltr'] .ltr\:mr-1\/4{margin-right:25% !important}[dir='ltr'] .ltr\:mb-1\/4{margin-bottom:25% !important}[dir='ltr'] .ltr\:ml-1\/4{margin-left:25% !important}[dir='ltr'] .ltr\:mt-2\/4{margin-top:50% !important}[dir='ltr'] .ltr\:mr-2\/4{margin-right:50% !important}[dir='ltr'] .ltr\:mb-2\/4{margin-bottom:50% !important}[dir='ltr'] .ltr\:ml-2\/4{margin-left:50% !important}[dir='ltr'] .ltr\:mt-3\/4{margin-top:75% !important}[dir='ltr'] .ltr\:mr-3\/4{margin-right:75% !important}[dir='ltr'] .ltr\:mb-3\/4{margin-bottom:75% !important}[dir='ltr'] .ltr\:ml-3\/4{margin-left:75% !important}[dir='ltr'] .ltr\:mt-1\/5{margin-top:20% !important}[dir='ltr'] .ltr\:mr-1\/5{margin-right:20% !important}[dir='ltr'] .ltr\:mb-1\/5{margin-bottom:20% !important}[dir='ltr'] .ltr\:ml-1\/5{margin-left:20% !important}[dir='ltr'] .ltr\:mt-2\/5{margin-top:40% !important}[dir='ltr'] .ltr\:mr-2\/5{margin-right:40% !important}[dir='ltr'] .ltr\:mb-2\/5{margin-bottom:40% !important}[dir='ltr'] .ltr\:ml-2\/5{margin-left:40% !important}[dir='ltr'] .ltr\:mt-3\/5{margin-top:60% !important}[dir='ltr'] .ltr\:mr-3\/5{margin-right:60% !important}[dir='ltr'] .ltr\:mb-3\/5{margin-bottom:60% !important}[dir='ltr'] .ltr\:ml-3\/5{margin-left:60% !important}[dir='ltr'] .ltr\:mt-4\/5{margin-top:80% !important}[dir='ltr'] .ltr\:mr-4\/5{margin-right:80% !important}[dir='ltr'] .ltr\:mb-4\/5{margin-bottom:80% !important}[dir='ltr'] .ltr\:ml-4\/5{margin-left:80% !important}[dir='ltr'] .ltr\:mt-1\/6{margin-top:16.666667% !important}[dir='ltr'] .ltr\:mr-1\/6{margin-right:16.666667% !important}[dir='ltr'] .ltr\:mb-1\/6{margin-bottom:16.666667% !important}[dir='ltr'] .ltr\:ml-1\/6{margin-left:16.666667% !important}[dir='ltr'] .ltr\:mt-2\/6{margin-top:33.333333% !important}[dir='ltr'] .ltr\:mr-2\/6{margin-right:33.333333% !important}[dir='ltr'] .ltr\:mb-2\/6{margin-bottom:33.333333% !important}[dir='ltr'] .ltr\:ml-2\/6{margin-left:33.333333% !important}[dir='ltr'] .ltr\:mt-3\/6{margin-top:50% !important}[dir='ltr'] .ltr\:mr-3\/6{margin-right:50% !important}[dir='ltr'] .ltr\:mb-3\/6{margin-bottom:50% !important}[dir='ltr'] .ltr\:ml-3\/6{margin-left:50% !important}[dir='ltr'] .ltr\:mt-4\/6{margin-top:66.666667% !important}[dir='ltr'] .ltr\:mr-4\/6{margin-right:66.666667% !important}[dir='ltr'] .ltr\:mb-4\/6{margin-bottom:66.666667% !important}[dir='ltr'] .ltr\:ml-4\/6{margin-left:66.666667% !important}[dir='ltr'] .ltr\:mt-5\/6{margin-top:83.333333% !important}[dir='ltr'] .ltr\:mr-5\/6{margin-right:83.333333% !important}[dir='ltr'] .ltr\:mb-5\/6{margin-bottom:83.333333% !important}[dir='ltr'] .ltr\:ml-5\/6{margin-left:83.333333% !important}[dir='ltr'] .ltr\:mt-1\/12{margin-top:8.333333% !important}[dir='ltr'] .ltr\:mr-1\/12{margin-right:8.333333% !important}[dir='ltr'] .ltr\:mb-1\/12{margin-bottom:8.333333% !important}[dir='ltr'] .ltr\:ml-1\/12{margin-left:8.333333% !important}[dir='ltr'] .ltr\:mt-2\/12{margin-top:16.666667% !important}[dir='ltr'] .ltr\:mr-2\/12{margin-right:16.666667% !important}[dir='ltr'] .ltr\:mb-2\/12{margin-bottom:16.666667% !important}[dir='ltr'] .ltr\:ml-2\/12{margin-left:16.666667% !important}[dir='ltr'] .ltr\:mt-3\/12{margin-top:25% !important}[dir='ltr'] .ltr\:mr-3\/12{margin-right:25% !important}[dir='ltr'] .ltr\:mb-3\/12{margin-bottom:25% !important}[dir='ltr'] .ltr\:ml-3\/12{margin-left:25% !important}[dir='ltr'] .ltr\:mt-4\/12{margin-top:33.333333% !important}[dir='ltr'] .ltr\:mr-4\/12{margin-right:33.333333% !important}[dir='ltr'] .ltr\:mb-4\/12{margin-bottom:33.333333% !important}[dir='ltr'] .ltr\:ml-4\/12{margin-left:33.333333% !important}[dir='ltr'] .ltr\:mt-5\/12{margin-top:41.666667% !important}[dir='ltr'] .ltr\:mr-5\/12{margin-right:41.666667% !important}[dir='ltr'] .ltr\:mb-5\/12{margin-bottom:41.666667% !important}[dir='ltr'] .ltr\:ml-5\/12{margin-left:41.666667% !important}[dir='ltr'] .ltr\:mt-6\/12{margin-top:50% !important}[dir='ltr'] .ltr\:mr-6\/12{margin-right:50% !important}[dir='ltr'] .ltr\:mb-6\/12{margin-bottom:50% !important}[dir='ltr'] .ltr\:ml-6\/12{margin-left:50% !important}[dir='ltr'] .ltr\:mt-7\/12{margin-top:58.333333% !important}[dir='ltr'] .ltr\:mr-7\/12{margin-right:58.333333% !important}[dir='ltr'] .ltr\:mb-7\/12{margin-bottom:58.333333% !important}[dir='ltr'] .ltr\:ml-7\/12{margin-left:58.333333% !important}[dir='ltr'] .ltr\:mt-8\/12{margin-top:66.666667% !important}[dir='ltr'] .ltr\:mr-8\/12{margin-right:66.666667% !important}[dir='ltr'] .ltr\:mb-8\/12{margin-bottom:66.666667% !important}[dir='ltr'] .ltr\:ml-8\/12{margin-left:66.666667% !important}[dir='ltr'] .ltr\:mt-9\/12{margin-top:75% !important}[dir='ltr'] .ltr\:mr-9\/12{margin-right:75% !important}[dir='ltr'] .ltr\:mb-9\/12{margin-bottom:75% !important}[dir='ltr'] .ltr\:ml-9\/12{margin-left:75% !important}[dir='ltr'] .ltr\:mt-10\/12{margin-top:83.333333% !important}[dir='ltr'] .ltr\:mr-10\/12{margin-right:83.333333% !important}[dir='ltr'] .ltr\:mb-10\/12{margin-bottom:83.333333% !important}[dir='ltr'] .ltr\:ml-10\/12{margin-left:83.333333% !important}[dir='ltr'] .ltr\:mt-11\/12{margin-top:91.666667% !important}[dir='ltr'] .ltr\:mr-11\/12{margin-right:91.666667% !important}[dir='ltr'] .ltr\:mb-11\/12{margin-bottom:91.666667% !important}[dir='ltr'] .ltr\:ml-11\/12{margin-left:91.666667% !important}[dir='ltr'] .ltr\:mt-full{margin-top:100% !important}[dir='ltr'] .ltr\:mr-full{margin-right:100% !important}[dir='ltr'] .ltr\:mb-full{margin-bottom:100% !important}[dir='ltr'] .ltr\:ml-full{margin-left:100% !important}[dir='ltr'] .ltr\:-mt-1{margin-top:-0.25rem !important}[dir='ltr'] .ltr\:-mr-1{margin-right:-0.25rem !important}[dir='ltr'] .ltr\:-mb-1{margin-bottom:-0.25rem !important}[dir='ltr'] .ltr\:-ml-1{margin-left:-0.25rem !important}[dir='ltr'] .ltr\:-mt-2{margin-top:-0.5rem !important}[dir='ltr'] .ltr\:-mr-2{margin-right:-0.5rem !important}[dir='ltr'] .ltr\:-mb-2{margin-bottom:-0.5rem !important}[dir='ltr'] .ltr\:-ml-2{margin-left:-0.5rem !important}[dir='ltr'] .ltr\:-mt-3{margin-top:-0.75rem !important}[dir='ltr'] .ltr\:-mr-3{margin-right:-0.75rem !important}[dir='ltr'] .ltr\:-mb-3{margin-bottom:-0.75rem !important}[dir='ltr'] .ltr\:-ml-3{margin-left:-0.75rem !important}[dir='ltr'] .ltr\:-mt-4{margin-top:-1rem !important}[dir='ltr'] .ltr\:-mr-4{margin-right:-1rem !important}[dir='ltr'] .ltr\:-mb-4{margin-bottom:-1rem !important}[dir='ltr'] .ltr\:-ml-4{margin-left:-1rem !important}[dir='ltr'] .ltr\:-mt-5{margin-top:-1.25rem !important}[dir='ltr'] .ltr\:-mr-5{margin-right:-1.25rem !important}[dir='ltr'] .ltr\:-mb-5{margin-bottom:-1.25rem !important}[dir='ltr'] .ltr\:-ml-5{margin-left:-1.25rem !important}[dir='ltr'] .ltr\:-mt-6{margin-top:-1.5rem !important}[dir='ltr'] .ltr\:-mr-6{margin-right:-1.5rem !important}[dir='ltr'] .ltr\:-mb-6{margin-bottom:-1.5rem !important}[dir='ltr'] .ltr\:-ml-6{margin-left:-1.5rem !important}[dir='ltr'] .ltr\:-mt-7{margin-top:-1.75rem !important}[dir='ltr'] .ltr\:-mr-7{margin-right:-1.75rem !important}[dir='ltr'] .ltr\:-mb-7{margin-bottom:-1.75rem !important}[dir='ltr'] .ltr\:-ml-7{margin-left:-1.75rem !important}[dir='ltr'] .ltr\:-mt-8{margin-top:-2rem !important}[dir='ltr'] .ltr\:-mr-8{margin-right:-2rem !important}[dir='ltr'] .ltr\:-mb-8{margin-bottom:-2rem !important}[dir='ltr'] .ltr\:-ml-8{margin-left:-2rem !important}[dir='ltr'] .ltr\:-mt-9{margin-top:-2.25rem !important}[dir='ltr'] .ltr\:-mr-9{margin-right:-2.25rem !important}[dir='ltr'] .ltr\:-mb-9{margin-bottom:-2.25rem !important}[dir='ltr'] .ltr\:-ml-9{margin-left:-2.25rem !important}[dir='ltr'] .ltr\:-mt-10{margin-top:-2.5rem !important}[dir='ltr'] .ltr\:-mr-10{margin-right:-2.5rem !important}[dir='ltr'] .ltr\:-mb-10{margin-bottom:-2.5rem !important}[dir='ltr'] .ltr\:-ml-10{margin-left:-2.5rem !important}[dir='ltr'] .ltr\:-mt-11{margin-top:-2.75rem !important}[dir='ltr'] .ltr\:-mr-11{margin-right:-2.75rem !important}[dir='ltr'] .ltr\:-mb-11{margin-bottom:-2.75rem !important}[dir='ltr'] .ltr\:-ml-11{margin-left:-2.75rem !important}[dir='ltr'] .ltr\:-mt-12{margin-top:-3rem !important}[dir='ltr'] .ltr\:-mr-12{margin-right:-3rem !important}[dir='ltr'] .ltr\:-mb-12{margin-bottom:-3rem !important}[dir='ltr'] .ltr\:-ml-12{margin-left:-3rem !important}[dir='ltr'] .ltr\:-mt-13{margin-top:-3.25rem !important}[dir='ltr'] .ltr\:-mr-13{margin-right:-3.25rem !important}[dir='ltr'] .ltr\:-mb-13{margin-bottom:-3.25rem !important}[dir='ltr'] .ltr\:-ml-13{margin-left:-3.25rem !important}[dir='ltr'] .ltr\:-mt-14{margin-top:-3.5rem !important}[dir='ltr'] .ltr\:-mr-14{margin-right:-3.5rem !important}[dir='ltr'] .ltr\:-mb-14{margin-bottom:-3.5rem !important}[dir='ltr'] .ltr\:-ml-14{margin-left:-3.5rem !important}[dir='ltr'] .ltr\:-mt-15{margin-top:-3.75rem !important}[dir='ltr'] .ltr\:-mr-15{margin-right:-3.75rem !important}[dir='ltr'] .ltr\:-mb-15{margin-bottom:-3.75rem !important}[dir='ltr'] .ltr\:-ml-15{margin-left:-3.75rem !important}[dir='ltr'] .ltr\:-mt-16{margin-top:-4rem !important}[dir='ltr'] .ltr\:-mr-16{margin-right:-4rem !important}[dir='ltr'] .ltr\:-mb-16{margin-bottom:-4rem !important}[dir='ltr'] .ltr\:-ml-16{margin-left:-4rem !important}[dir='ltr'] .ltr\:-mt-20{margin-top:-5rem !important}[dir='ltr'] .ltr\:-mr-20{margin-right:-5rem !important}[dir='ltr'] .ltr\:-mb-20{margin-bottom:-5rem !important}[dir='ltr'] .ltr\:-ml-20{margin-left:-5rem !important}[dir='ltr'] .ltr\:-mt-24{margin-top:-6rem !important}[dir='ltr'] .ltr\:-mr-24{margin-right:-6rem !important}[dir='ltr'] .ltr\:-mb-24{margin-bottom:-6rem !important}[dir='ltr'] .ltr\:-ml-24{margin-left:-6rem !important}[dir='ltr'] .ltr\:-mt-28{margin-top:-7rem !important}[dir='ltr'] .ltr\:-mr-28{margin-right:-7rem !important}[dir='ltr'] .ltr\:-mb-28{margin-bottom:-7rem !important}[dir='ltr'] .ltr\:-ml-28{margin-left:-7rem !important}[dir='ltr'] .ltr\:-mt-32{margin-top:-8rem !important}[dir='ltr'] .ltr\:-mr-32{margin-right:-8rem !important}[dir='ltr'] .ltr\:-mb-32{margin-bottom:-8rem !important}[dir='ltr'] .ltr\:-ml-32{margin-left:-8rem !important}[dir='ltr'] .ltr\:-mt-36{margin-top:-9rem !important}[dir='ltr'] .ltr\:-mr-36{margin-right:-9rem !important}[dir='ltr'] .ltr\:-mb-36{margin-bottom:-9rem !important}[dir='ltr'] .ltr\:-ml-36{margin-left:-9rem !important}[dir='ltr'] .ltr\:-mt-40{margin-top:-10rem !important}[dir='ltr'] .ltr\:-mr-40{margin-right:-10rem !important}[dir='ltr'] .ltr\:-mb-40{margin-bottom:-10rem !important}[dir='ltr'] .ltr\:-ml-40{margin-left:-10rem !important}[dir='ltr'] .ltr\:-mt-48{margin-top:-12rem !important}[dir='ltr'] .ltr\:-mr-48{margin-right:-12rem !important}[dir='ltr'] .ltr\:-mb-48{margin-bottom:-12rem !important}[dir='ltr'] .ltr\:-ml-48{margin-left:-12rem !important}[dir='ltr'] .ltr\:-mt-56{margin-top:-14rem !important}[dir='ltr'] .ltr\:-mr-56{margin-right:-14rem !important}[dir='ltr'] .ltr\:-mb-56{margin-bottom:-14rem !important}[dir='ltr'] .ltr\:-ml-56{margin-left:-14rem !important}[dir='ltr'] .ltr\:-mt-60{margin-top:-15rem !important}[dir='ltr'] .ltr\:-mr-60{margin-right:-15rem !important}[dir='ltr'] .ltr\:-mb-60{margin-bottom:-15rem !important}[dir='ltr'] .ltr\:-ml-60{margin-left:-15rem !important}[dir='ltr'] .ltr\:-mt-64{margin-top:-16rem !important}[dir='ltr'] .ltr\:-mr-64{margin-right:-16rem !important}[dir='ltr'] .ltr\:-mb-64{margin-bottom:-16rem !important}[dir='ltr'] .ltr\:-ml-64{margin-left:-16rem !important}[dir='ltr'] .ltr\:-mt-72{margin-top:-18rem !important}[dir='ltr'] .ltr\:-mr-72{margin-right:-18rem !important}[dir='ltr'] .ltr\:-mb-72{margin-bottom:-18rem !important}[dir='ltr'] .ltr\:-ml-72{margin-left:-18rem !important}[dir='ltr'] .ltr\:-mt-80{margin-top:-20rem !important}[dir='ltr'] .ltr\:-mr-80{margin-right:-20rem !important}[dir='ltr'] .ltr\:-mb-80{margin-bottom:-20rem !important}[dir='ltr'] .ltr\:-ml-80{margin-left:-20rem !important}[dir='ltr'] .ltr\:-mt-96{margin-top:-24rem !important}[dir='ltr'] .ltr\:-mr-96{margin-right:-24rem !important}[dir='ltr'] .ltr\:-mb-96{margin-bottom:-24rem !important}[dir='ltr'] .ltr\:-ml-96{margin-left:-24rem !important}[dir='ltr'] .ltr\:-mt-px{margin-top:-1px !important}[dir='ltr'] .ltr\:-mr-px{margin-right:-1px !important}[dir='ltr'] .ltr\:-mb-px{margin-bottom:-1px !important}[dir='ltr'] .ltr\:-ml-px{margin-left:-1px !important}[dir='ltr'] .ltr\:-mt-0\.5{margin-top:-0.125rem !important}[dir='ltr'] .ltr\:-mr-0\.5{margin-right:-0.125rem !important}[dir='ltr'] .ltr\:-mb-0\.5{margin-bottom:-0.125rem !important}[dir='ltr'] .ltr\:-ml-0\.5{margin-left:-0.125rem !important}[dir='ltr'] .ltr\:-mt-1\.5{margin-top:-0.375rem !important}[dir='ltr'] .ltr\:-mr-1\.5{margin-right:-0.375rem !important}[dir='ltr'] .ltr\:-mb-1\.5{margin-bottom:-0.375rem !important}[dir='ltr'] .ltr\:-ml-1\.5{margin-left:-0.375rem !important}[dir='ltr'] .ltr\:-mt-2\.5{margin-top:-0.625rem !important}[dir='ltr'] .ltr\:-mr-2\.5{margin-right:-0.625rem !important}[dir='ltr'] .ltr\:-mb-2\.5{margin-bottom:-0.625rem !important}[dir='ltr'] .ltr\:-ml-2\.5{margin-left:-0.625rem !important}[dir='ltr'] .ltr\:-mt-3\.5{margin-top:-0.875rem !important}[dir='ltr'] .ltr\:-mr-3\.5{margin-right:-0.875rem !important}[dir='ltr'] .ltr\:-mb-3\.5{margin-bottom:-0.875rem !important}[dir='ltr'] .ltr\:-ml-3\.5{margin-left:-0.875rem !important}[dir='ltr'] .ltr\:-mt-1\/2{margin-top:-50% !important}[dir='ltr'] .ltr\:-mr-1\/2{margin-right:-50% !important}[dir='ltr'] .ltr\:-mb-1\/2{margin-bottom:-50% !important}[dir='ltr'] .ltr\:-ml-1\/2{margin-left:-50% !important}[dir='ltr'] .ltr\:-mt-1\/3{margin-top:-33.33333% !important}[dir='ltr'] .ltr\:-mr-1\/3{margin-right:-33.33333% !important}[dir='ltr'] .ltr\:-mb-1\/3{margin-bottom:-33.33333% !important}[dir='ltr'] .ltr\:-ml-1\/3{margin-left:-33.33333% !important}[dir='ltr'] .ltr\:-mt-2\/3{margin-top:-66.66667% !important}[dir='ltr'] .ltr\:-mr-2\/3{margin-right:-66.66667% !important}[dir='ltr'] .ltr\:-mb-2\/3{margin-bottom:-66.66667% !important}[dir='ltr'] .ltr\:-ml-2\/3{margin-left:-66.66667% !important}[dir='ltr'] .ltr\:-mt-1\/4{margin-top:-25% !important}[dir='ltr'] .ltr\:-mr-1\/4{margin-right:-25% !important}[dir='ltr'] .ltr\:-mb-1\/4{margin-bottom:-25% !important}[dir='ltr'] .ltr\:-ml-1\/4{margin-left:-25% !important}[dir='ltr'] .ltr\:-mt-2\/4{margin-top:-50% !important}[dir='ltr'] .ltr\:-mr-2\/4{margin-right:-50% !important}[dir='ltr'] .ltr\:-mb-2\/4{margin-bottom:-50% !important}[dir='ltr'] .ltr\:-ml-2\/4{margin-left:-50% !important}[dir='ltr'] .ltr\:-mt-3\/4{margin-top:-75% !important}[dir='ltr'] .ltr\:-mr-3\/4{margin-right:-75% !important}[dir='ltr'] .ltr\:-mb-3\/4{margin-bottom:-75% !important}[dir='ltr'] .ltr\:-ml-3\/4{margin-left:-75% !important}[dir='ltr'] .ltr\:-mt-1\/5{margin-top:-20% !important}[dir='ltr'] .ltr\:-mr-1\/5{margin-right:-20% !important}[dir='ltr'] .ltr\:-mb-1\/5{margin-bottom:-20% !important}[dir='ltr'] .ltr\:-ml-1\/5{margin-left:-20% !important}[dir='ltr'] .ltr\:-mt-2\/5{margin-top:-40% !important}[dir='ltr'] .ltr\:-mr-2\/5{margin-right:-40% !important}[dir='ltr'] .ltr\:-mb-2\/5{margin-bottom:-40% !important}[dir='ltr'] .ltr\:-ml-2\/5{margin-left:-40% !important}[dir='ltr'] .ltr\:-mt-3\/5{margin-top:-60% !important}[dir='ltr'] .ltr\:-mr-3\/5{margin-right:-60% !important}[dir='ltr'] .ltr\:-mb-3\/5{margin-bottom:-60% !important}[dir='ltr'] .ltr\:-ml-3\/5{margin-left:-60% !important}[dir='ltr'] .ltr\:-mt-4\/5{margin-top:-80% !important}[dir='ltr'] .ltr\:-mr-4\/5{margin-right:-80% !important}[dir='ltr'] .ltr\:-mb-4\/5{margin-bottom:-80% !important}[dir='ltr'] .ltr\:-ml-4\/5{margin-left:-80% !important}[dir='ltr'] .ltr\:-mt-1\/6{margin-top:-16.66667% !important}[dir='ltr'] .ltr\:-mr-1\/6{margin-right:-16.66667% !important}[dir='ltr'] .ltr\:-mb-1\/6{margin-bottom:-16.66667% !important}[dir='ltr'] .ltr\:-ml-1\/6{margin-left:-16.66667% !important}[dir='ltr'] .ltr\:-mt-2\/6{margin-top:-33.33333% !important}[dir='ltr'] .ltr\:-mr-2\/6{margin-right:-33.33333% !important}[dir='ltr'] .ltr\:-mb-2\/6{margin-bottom:-33.33333% !important}[dir='ltr'] .ltr\:-ml-2\/6{margin-left:-33.33333% !important}[dir='ltr'] .ltr\:-mt-3\/6{margin-top:-50% !important}[dir='ltr'] .ltr\:-mr-3\/6{margin-right:-50% !important}[dir='ltr'] .ltr\:-mb-3\/6{margin-bottom:-50% !important}[dir='ltr'] .ltr\:-ml-3\/6{margin-left:-50% !important}[dir='ltr'] .ltr\:-mt-4\/6{margin-top:-66.66667% !important}[dir='ltr'] .ltr\:-mr-4\/6{margin-right:-66.66667% !important}[dir='ltr'] .ltr\:-mb-4\/6{margin-bottom:-66.66667% !important}[dir='ltr'] .ltr\:-ml-4\/6{margin-left:-66.66667% !important}[dir='ltr'] .ltr\:-mt-5\/6{margin-top:-83.33333% !important}[dir='ltr'] .ltr\:-mr-5\/6{margin-right:-83.33333% !important}[dir='ltr'] .ltr\:-mb-5\/6{margin-bottom:-83.33333% !important}[dir='ltr'] .ltr\:-ml-5\/6{margin-left:-83.33333% !important}[dir='ltr'] .ltr\:-mt-1\/12{margin-top:-8.33333% !important}[dir='ltr'] .ltr\:-mr-1\/12{margin-right:-8.33333% !important}[dir='ltr'] .ltr\:-mb-1\/12{margin-bottom:-8.33333% !important}[dir='ltr'] .ltr\:-ml-1\/12{margin-left:-8.33333% !important}[dir='ltr'] .ltr\:-mt-2\/12{margin-top:-16.66667% !important}[dir='ltr'] .ltr\:-mr-2\/12{margin-right:-16.66667% !important}[dir='ltr'] .ltr\:-mb-2\/12{margin-bottom:-16.66667% !important}[dir='ltr'] .ltr\:-ml-2\/12{margin-left:-16.66667% !important}[dir='ltr'] .ltr\:-mt-3\/12{margin-top:-25% !important}[dir='ltr'] .ltr\:-mr-3\/12{margin-right:-25% !important}[dir='ltr'] .ltr\:-mb-3\/12{margin-bottom:-25% !important}[dir='ltr'] .ltr\:-ml-3\/12{margin-left:-25% !important}[dir='ltr'] .ltr\:-mt-4\/12{margin-top:-33.33333% !important}[dir='ltr'] .ltr\:-mr-4\/12{margin-right:-33.33333% !important}[dir='ltr'] .ltr\:-mb-4\/12{margin-bottom:-33.33333% !important}[dir='ltr'] .ltr\:-ml-4\/12{margin-left:-33.33333% !important}[dir='ltr'] .ltr\:-mt-5\/12{margin-top:-41.66667% !important}[dir='ltr'] .ltr\:-mr-5\/12{margin-right:-41.66667% !important}[dir='ltr'] .ltr\:-mb-5\/12{margin-bottom:-41.66667% !important}[dir='ltr'] .ltr\:-ml-5\/12{margin-left:-41.66667% !important}[dir='ltr'] .ltr\:-mt-6\/12{margin-top:-50% !important}[dir='ltr'] .ltr\:-mr-6\/12{margin-right:-50% !important}[dir='ltr'] .ltr\:-mb-6\/12{margin-bottom:-50% !important}[dir='ltr'] .ltr\:-ml-6\/12{margin-left:-50% !important}[dir='ltr'] .ltr\:-mt-7\/12{margin-top:-58.33333% !important}[dir='ltr'] .ltr\:-mr-7\/12{margin-right:-58.33333% !important}[dir='ltr'] .ltr\:-mb-7\/12{margin-bottom:-58.33333% !important}[dir='ltr'] .ltr\:-ml-7\/12{margin-left:-58.33333% !important}[dir='ltr'] .ltr\:-mt-8\/12{margin-top:-66.66667% !important}[dir='ltr'] .ltr\:-mr-8\/12{margin-right:-66.66667% !important}[dir='ltr'] .ltr\:-mb-8\/12{margin-bottom:-66.66667% !important}[dir='ltr'] .ltr\:-ml-8\/12{margin-left:-66.66667% !important}[dir='ltr'] .ltr\:-mt-9\/12{margin-top:-75% !important}[dir='ltr'] .ltr\:-mr-9\/12{margin-right:-75% !important}[dir='ltr'] .ltr\:-mb-9\/12{margin-bottom:-75% !important}[dir='ltr'] .ltr\:-ml-9\/12{margin-left:-75% !important}[dir='ltr'] .ltr\:-mt-10\/12{margin-top:-83.33333% !important}[dir='ltr'] .ltr\:-mr-10\/12{margin-right:-83.33333% !important}[dir='ltr'] .ltr\:-mb-10\/12{margin-bottom:-83.33333% !important}[dir='ltr'] .ltr\:-ml-10\/12{margin-left:-83.33333% !important}[dir='ltr'] .ltr\:-mt-11\/12{margin-top:-91.66667% !important}[dir='ltr'] .ltr\:-mr-11\/12{margin-right:-91.66667% !important}[dir='ltr'] .ltr\:-mb-11\/12{margin-bottom:-91.66667% !important}[dir='ltr'] .ltr\:-ml-11\/12{margin-left:-91.66667% !important}[dir='ltr'] .ltr\:-mt-full{margin-top:-100% !important}[dir='ltr'] .ltr\:-mr-full{margin-right:-100% !important}[dir='ltr'] .ltr\:-mb-full{margin-bottom:-100% !important}[dir='ltr'] .ltr\:-ml-full{margin-left:-100% !important}[dir='rtl'] .rtl\:m-0{margin:0 !important}[dir='rtl'] .rtl\:m-1{margin:.25rem !important}[dir='rtl'] .rtl\:m-2{margin:.5rem !important}[dir='rtl'] .rtl\:m-3{margin:.75rem !important}[dir='rtl'] .rtl\:m-4{margin:1rem !important}[dir='rtl'] .rtl\:m-5{margin:1.25rem !important}[dir='rtl'] .rtl\:m-6{margin:1.5rem !important}[dir='rtl'] .rtl\:m-7{margin:1.75rem !important}[dir='rtl'] .rtl\:m-8{margin:2rem !important}[dir='rtl'] .rtl\:m-9{margin:2.25rem !important}[dir='rtl'] .rtl\:m-10{margin:2.5rem !important}[dir='rtl'] .rtl\:m-11{margin:2.75rem !important}[dir='rtl'] .rtl\:m-12{margin:3rem !important}[dir='rtl'] .rtl\:m-13{margin:3.25rem !important}[dir='rtl'] .rtl\:m-14{margin:3.5rem !important}[dir='rtl'] .rtl\:m-15{margin:3.75rem !important}[dir='rtl'] .rtl\:m-16{margin:4rem !important}[dir='rtl'] .rtl\:m-20{margin:5rem !important}[dir='rtl'] .rtl\:m-24{margin:6rem !important}[dir='rtl'] .rtl\:m-28{margin:7rem !important}[dir='rtl'] .rtl\:m-32{margin:8rem !important}[dir='rtl'] .rtl\:m-36{margin:9rem !important}[dir='rtl'] .rtl\:m-40{margin:10rem !important}[dir='rtl'] .rtl\:m-48{margin:12rem !important}[dir='rtl'] .rtl\:m-56{margin:14rem !important}[dir='rtl'] .rtl\:m-60{margin:15rem !important}[dir='rtl'] .rtl\:m-64{margin:16rem !important}[dir='rtl'] .rtl\:m-72{margin:18rem !important}[dir='rtl'] .rtl\:m-80{margin:20rem !important}[dir='rtl'] .rtl\:m-96{margin:24rem !important}[dir='rtl'] .rtl\:m-auto{margin:auto !important}[dir='rtl'] .rtl\:m-px{margin:1px !important}[dir='rtl'] .rtl\:m-0\.5{margin:.125rem !important}[dir='rtl'] .rtl\:m-1\.5{margin:.375rem !important}[dir='rtl'] .rtl\:m-2\.5{margin:.625rem !important}[dir='rtl'] .rtl\:m-3\.5{margin:.875rem !important}[dir='rtl'] .rtl\:m-1\/2{margin:50% !important}[dir='rtl'] .rtl\:m-1\/3{margin:33.333333% !important}[dir='rtl'] .rtl\:m-2\/3{margin:66.666667% !important}[dir='rtl'] .rtl\:m-1\/4{margin:25% !important}[dir='rtl'] .rtl\:m-2\/4{margin:50% !important}[dir='rtl'] .rtl\:m-3\/4{margin:75% !important}[dir='rtl'] .rtl\:m-1\/5{margin:20% !important}[dir='rtl'] .rtl\:m-2\/5{margin:40% !important}[dir='rtl'] .rtl\:m-3\/5{margin:60% !important}[dir='rtl'] .rtl\:m-4\/5{margin:80% !important}[dir='rtl'] .rtl\:m-1\/6{margin:16.666667% !important}[dir='rtl'] .rtl\:m-2\/6{margin:33.333333% !important}[dir='rtl'] .rtl\:m-3\/6{margin:50% !important}[dir='rtl'] .rtl\:m-4\/6{margin:66.666667% !important}[dir='rtl'] .rtl\:m-5\/6{margin:83.333333% !important}[dir='rtl'] .rtl\:m-1\/12{margin:8.333333% !important}[dir='rtl'] .rtl\:m-2\/12{margin:16.666667% !important}[dir='rtl'] .rtl\:m-3\/12{margin:25% !important}[dir='rtl'] .rtl\:m-4\/12{margin:33.333333% !important}[dir='rtl'] .rtl\:m-5\/12{margin:41.666667% !important}[dir='rtl'] .rtl\:m-6\/12{margin:50% !important}[dir='rtl'] .rtl\:m-7\/12{margin:58.333333% !important}[dir='rtl'] .rtl\:m-8\/12{margin:66.666667% !important}[dir='rtl'] .rtl\:m-9\/12{margin:75% !important}[dir='rtl'] .rtl\:m-10\/12{margin:83.333333% !important}[dir='rtl'] .rtl\:m-11\/12{margin:91.666667% !important}[dir='rtl'] .rtl\:m-full{margin:100% !important}[dir='rtl'] .rtl\:-m-1{margin:-0.25rem !important}[dir='rtl'] .rtl\:-m-2{margin:-0.5rem !important}[dir='rtl'] .rtl\:-m-3{margin:-0.75rem !important}[dir='rtl'] .rtl\:-m-4{margin:-1rem !important}[dir='rtl'] .rtl\:-m-5{margin:-1.25rem !important}[dir='rtl'] .rtl\:-m-6{margin:-1.5rem !important}[dir='rtl'] .rtl\:-m-7{margin:-1.75rem !important}[dir='rtl'] .rtl\:-m-8{margin:-2rem !important}[dir='rtl'] .rtl\:-m-9{margin:-2.25rem !important}[dir='rtl'] .rtl\:-m-10{margin:-2.5rem !important}[dir='rtl'] .rtl\:-m-11{margin:-2.75rem !important}[dir='rtl'] .rtl\:-m-12{margin:-3rem !important}[dir='rtl'] .rtl\:-m-13{margin:-3.25rem !important}[dir='rtl'] .rtl\:-m-14{margin:-3.5rem !important}[dir='rtl'] .rtl\:-m-15{margin:-3.75rem !important}[dir='rtl'] .rtl\:-m-16{margin:-4rem !important}[dir='rtl'] .rtl\:-m-20{margin:-5rem !important}[dir='rtl'] .rtl\:-m-24{margin:-6rem !important}[dir='rtl'] .rtl\:-m-28{margin:-7rem !important}[dir='rtl'] .rtl\:-m-32{margin:-8rem !important}[dir='rtl'] .rtl\:-m-36{margin:-9rem !important}[dir='rtl'] .rtl\:-m-40{margin:-10rem !important}[dir='rtl'] .rtl\:-m-48{margin:-12rem !important}[dir='rtl'] .rtl\:-m-56{margin:-14rem !important}[dir='rtl'] .rtl\:-m-60{margin:-15rem !important}[dir='rtl'] .rtl\:-m-64{margin:-16rem !important}[dir='rtl'] .rtl\:-m-72{margin:-18rem !important}[dir='rtl'] .rtl\:-m-80{margin:-20rem !important}[dir='rtl'] .rtl\:-m-96{margin:-24rem !important}[dir='rtl'] .rtl\:-m-px{margin:-1px !important}[dir='rtl'] .rtl\:-m-0\.5{margin:-0.125rem !important}[dir='rtl'] .rtl\:-m-1\.5{margin:-0.375rem !important}[dir='rtl'] .rtl\:-m-2\.5{margin:-0.625rem !important}[dir='rtl'] .rtl\:-m-3\.5{margin:-0.875rem !important}[dir='rtl'] .rtl\:-m-1\/2{margin:-50% !important}[dir='rtl'] .rtl\:-m-1\/3{margin:-33.33333% !important}[dir='rtl'] .rtl\:-m-2\/3{margin:-66.66667% !important}[dir='rtl'] .rtl\:-m-1\/4{margin:-25% !important}[dir='rtl'] .rtl\:-m-2\/4{margin:-50% !important}[dir='rtl'] .rtl\:-m-3\/4{margin:-75% !important}[dir='rtl'] .rtl\:-m-1\/5{margin:-20% !important}[dir='rtl'] .rtl\:-m-2\/5{margin:-40% !important}[dir='rtl'] .rtl\:-m-3\/5{margin:-60% !important}[dir='rtl'] .rtl\:-m-4\/5{margin:-80% !important}[dir='rtl'] .rtl\:-m-1\/6{margin:-16.66667% !important}[dir='rtl'] .rtl\:-m-2\/6{margin:-33.33333% !important}[dir='rtl'] .rtl\:-m-3\/6{margin:-50% !important}[dir='rtl'] .rtl\:-m-4\/6{margin:-66.66667% !important}[dir='rtl'] .rtl\:-m-5\/6{margin:-83.33333% !important}[dir='rtl'] .rtl\:-m-1\/12{margin:-8.33333% !important}[dir='rtl'] .rtl\:-m-2\/12{margin:-16.66667% !important}[dir='rtl'] .rtl\:-m-3\/12{margin:-25% !important}[dir='rtl'] .rtl\:-m-4\/12{margin:-33.33333% !important}[dir='rtl'] .rtl\:-m-5\/12{margin:-41.66667% !important}[dir='rtl'] .rtl\:-m-6\/12{margin:-50% !important}[dir='rtl'] .rtl\:-m-7\/12{margin:-58.33333% !important}[dir='rtl'] .rtl\:-m-8\/12{margin:-66.66667% !important}[dir='rtl'] .rtl\:-m-9\/12{margin:-75% !important}[dir='rtl'] .rtl\:-m-10\/12{margin:-83.33333% !important}[dir='rtl'] .rtl\:-m-11\/12{margin:-91.66667% !important}[dir='rtl'] .rtl\:-m-full{margin:-100% !important}[dir='rtl'] .rtl\:my-0{margin-top:0 !important;margin-bottom:0 !important}[dir='rtl'] .rtl\:mx-0{margin-left:0 !important;margin-right:0 !important}[dir='rtl'] .rtl\:my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}[dir='rtl'] .rtl\:mx-1{margin-left:.25rem !important;margin-right:.25rem !important}[dir='rtl'] .rtl\:my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}[dir='rtl'] .rtl\:mx-2{margin-left:.5rem !important;margin-right:.5rem !important}[dir='rtl'] .rtl\:my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}[dir='rtl'] .rtl\:mx-3{margin-left:.75rem !important;margin-right:.75rem !important}[dir='rtl'] .rtl\:my-4{margin-top:1rem !important;margin-bottom:1rem !important}[dir='rtl'] .rtl\:mx-4{margin-left:1rem !important;margin-right:1rem !important}[dir='rtl'] .rtl\:my-5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}[dir='rtl'] .rtl\:mx-5{margin-left:1.25rem !important;margin-right:1.25rem !important}[dir='rtl'] .rtl\:my-6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}[dir='rtl'] .rtl\:mx-6{margin-left:1.5rem !important;margin-right:1.5rem !important}[dir='rtl'] .rtl\:my-7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}[dir='rtl'] .rtl\:mx-7{margin-left:1.75rem !important;margin-right:1.75rem !important}[dir='rtl'] .rtl\:my-8{margin-top:2rem !important;margin-bottom:2rem !important}[dir='rtl'] .rtl\:mx-8{margin-left:2rem !important;margin-right:2rem !important}[dir='rtl'] .rtl\:my-9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}[dir='rtl'] .rtl\:mx-9{margin-left:2.25rem !important;margin-right:2.25rem !important}[dir='rtl'] .rtl\:my-10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}[dir='rtl'] .rtl\:mx-10{margin-left:2.5rem !important;margin-right:2.5rem !important}[dir='rtl'] .rtl\:my-11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}[dir='rtl'] .rtl\:mx-11{margin-left:2.75rem !important;margin-right:2.75rem !important}[dir='rtl'] .rtl\:my-12{margin-top:3rem !important;margin-bottom:3rem !important}[dir='rtl'] .rtl\:mx-12{margin-left:3rem !important;margin-right:3rem !important}[dir='rtl'] .rtl\:my-13{margin-top:3.25rem !important;margin-bottom:3.25rem !important}[dir='rtl'] .rtl\:mx-13{margin-left:3.25rem !important;margin-right:3.25rem !important}[dir='rtl'] .rtl\:my-14{margin-top:3.5rem !important;margin-bottom:3.5rem !important}[dir='rtl'] .rtl\:mx-14{margin-left:3.5rem !important;margin-right:3.5rem !important}[dir='rtl'] .rtl\:my-15{margin-top:3.75rem !important;margin-bottom:3.75rem !important}[dir='rtl'] .rtl\:mx-15{margin-left:3.75rem !important;margin-right:3.75rem !important}[dir='rtl'] .rtl\:my-16{margin-top:4rem !important;margin-bottom:4rem !important}[dir='rtl'] .rtl\:mx-16{margin-left:4rem !important;margin-right:4rem !important}[dir='rtl'] .rtl\:my-20{margin-top:5rem !important;margin-bottom:5rem !important}[dir='rtl'] .rtl\:mx-20{margin-left:5rem !important;margin-right:5rem !important}[dir='rtl'] .rtl\:my-24{margin-top:6rem !important;margin-bottom:6rem !important}[dir='rtl'] .rtl\:mx-24{margin-left:6rem !important;margin-right:6rem !important}[dir='rtl'] .rtl\:my-28{margin-top:7rem !important;margin-bottom:7rem !important}[dir='rtl'] .rtl\:mx-28{margin-left:7rem !important;margin-right:7rem !important}[dir='rtl'] .rtl\:my-32{margin-top:8rem !important;margin-bottom:8rem !important}[dir='rtl'] .rtl\:mx-32{margin-left:8rem !important;margin-right:8rem !important}[dir='rtl'] .rtl\:my-36{margin-top:9rem !important;margin-bottom:9rem !important}[dir='rtl'] .rtl\:mx-36{margin-left:9rem !important;margin-right:9rem !important}[dir='rtl'] .rtl\:my-40{margin-top:10rem !important;margin-bottom:10rem !important}[dir='rtl'] .rtl\:mx-40{margin-left:10rem !important;margin-right:10rem !important}[dir='rtl'] .rtl\:my-48{margin-top:12rem !important;margin-bottom:12rem !important}[dir='rtl'] .rtl\:mx-48{margin-left:12rem !important;margin-right:12rem !important}[dir='rtl'] .rtl\:my-56{margin-top:14rem !important;margin-bottom:14rem !important}[dir='rtl'] .rtl\:mx-56{margin-left:14rem !important;margin-right:14rem !important}[dir='rtl'] .rtl\:my-60{margin-top:15rem !important;margin-bottom:15rem !important}[dir='rtl'] .rtl\:mx-60{margin-left:15rem !important;margin-right:15rem !important}[dir='rtl'] .rtl\:my-64{margin-top:16rem !important;margin-bottom:16rem !important}[dir='rtl'] .rtl\:mx-64{margin-left:16rem !important;margin-right:16rem !important}[dir='rtl'] .rtl\:my-72{margin-top:18rem !important;margin-bottom:18rem !important}[dir='rtl'] .rtl\:mx-72{margin-left:18rem !important;margin-right:18rem !important}[dir='rtl'] .rtl\:my-80{margin-top:20rem !important;margin-bottom:20rem !important}[dir='rtl'] .rtl\:mx-80{margin-left:20rem !important;margin-right:20rem !important}[dir='rtl'] .rtl\:my-96{margin-top:24rem !important;margin-bottom:24rem !important}[dir='rtl'] .rtl\:mx-96{margin-left:24rem !important;margin-right:24rem !important}[dir='rtl'] .rtl\:my-auto{margin-top:auto !important;margin-bottom:auto !important}[dir='rtl'] .rtl\:mx-auto{margin-left:auto !important;margin-right:auto !important}[dir='rtl'] .rtl\:my-px{margin-top:1px !important;margin-bottom:1px !important}[dir='rtl'] .rtl\:mx-px{margin-left:1px !important;margin-right:1px !important}[dir='rtl'] .rtl\:my-0\.5{margin-top:.125rem !important;margin-bottom:.125rem !important}[dir='rtl'] .rtl\:mx-0\.5{margin-left:.125rem !important;margin-right:.125rem !important}[dir='rtl'] .rtl\:my-1\.5{margin-top:.375rem !important;margin-bottom:.375rem !important}[dir='rtl'] .rtl\:mx-1\.5{margin-left:.375rem !important;margin-right:.375rem !important}[dir='rtl'] .rtl\:my-2\.5{margin-top:.625rem !important;margin-bottom:.625rem !important}[dir='rtl'] .rtl\:mx-2\.5{margin-left:.625rem !important;margin-right:.625rem !important}[dir='rtl'] .rtl\:my-3\.5{margin-top:.875rem !important;margin-bottom:.875rem !important}[dir='rtl'] .rtl\:mx-3\.5{margin-left:.875rem !important;margin-right:.875rem !important}[dir='rtl'] .rtl\:my-1\/2{margin-top:50% !important;margin-bottom:50% !important}[dir='rtl'] .rtl\:mx-1\/2{margin-left:50% !important;margin-right:50% !important}[dir='rtl'] .rtl\:my-1\/3{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='rtl'] .rtl\:mx-1\/3{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='rtl'] .rtl\:my-2\/3{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='rtl'] .rtl\:mx-2\/3{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='rtl'] .rtl\:my-1\/4{margin-top:25% !important;margin-bottom:25% !important}[dir='rtl'] .rtl\:mx-1\/4{margin-left:25% !important;margin-right:25% !important}[dir='rtl'] .rtl\:my-2\/4{margin-top:50% !important;margin-bottom:50% !important}[dir='rtl'] .rtl\:mx-2\/4{margin-left:50% !important;margin-right:50% !important}[dir='rtl'] .rtl\:my-3\/4{margin-top:75% !important;margin-bottom:75% !important}[dir='rtl'] .rtl\:mx-3\/4{margin-left:75% !important;margin-right:75% !important}[dir='rtl'] .rtl\:my-1\/5{margin-top:20% !important;margin-bottom:20% !important}[dir='rtl'] .rtl\:mx-1\/5{margin-left:20% !important;margin-right:20% !important}[dir='rtl'] .rtl\:my-2\/5{margin-top:40% !important;margin-bottom:40% !important}[dir='rtl'] .rtl\:mx-2\/5{margin-left:40% !important;margin-right:40% !important}[dir='rtl'] .rtl\:my-3\/5{margin-top:60% !important;margin-bottom:60% !important}[dir='rtl'] .rtl\:mx-3\/5{margin-left:60% !important;margin-right:60% !important}[dir='rtl'] .rtl\:my-4\/5{margin-top:80% !important;margin-bottom:80% !important}[dir='rtl'] .rtl\:mx-4\/5{margin-left:80% !important;margin-right:80% !important}[dir='rtl'] .rtl\:my-1\/6{margin-top:16.666667% !important;margin-bottom:16.666667% !important}[dir='rtl'] .rtl\:mx-1\/6{margin-left:16.666667% !important;margin-right:16.666667% !important}[dir='rtl'] .rtl\:my-2\/6{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='rtl'] .rtl\:mx-2\/6{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='rtl'] .rtl\:my-3\/6{margin-top:50% !important;margin-bottom:50% !important}[dir='rtl'] .rtl\:mx-3\/6{margin-left:50% !important;margin-right:50% !important}[dir='rtl'] .rtl\:my-4\/6{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='rtl'] .rtl\:mx-4\/6{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='rtl'] .rtl\:my-5\/6{margin-top:83.333333% !important;margin-bottom:83.333333% !important}[dir='rtl'] .rtl\:mx-5\/6{margin-left:83.333333% !important;margin-right:83.333333% !important}[dir='rtl'] .rtl\:my-1\/12{margin-top:8.333333% !important;margin-bottom:8.333333% !important}[dir='rtl'] .rtl\:mx-1\/12{margin-left:8.333333% !important;margin-right:8.333333% !important}[dir='rtl'] .rtl\:my-2\/12{margin-top:16.666667% !important;margin-bottom:16.666667% !important}[dir='rtl'] .rtl\:mx-2\/12{margin-left:16.666667% !important;margin-right:16.666667% !important}[dir='rtl'] .rtl\:my-3\/12{margin-top:25% !important;margin-bottom:25% !important}[dir='rtl'] .rtl\:mx-3\/12{margin-left:25% !important;margin-right:25% !important}[dir='rtl'] .rtl\:my-4\/12{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='rtl'] .rtl\:mx-4\/12{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='rtl'] .rtl\:my-5\/12{margin-top:41.666667% !important;margin-bottom:41.666667% !important}[dir='rtl'] .rtl\:mx-5\/12{margin-left:41.666667% !important;margin-right:41.666667% !important}[dir='rtl'] .rtl\:my-6\/12{margin-top:50% !important;margin-bottom:50% !important}[dir='rtl'] .rtl\:mx-6\/12{margin-left:50% !important;margin-right:50% !important}[dir='rtl'] .rtl\:my-7\/12{margin-top:58.333333% !important;margin-bottom:58.333333% !important}[dir='rtl'] .rtl\:mx-7\/12{margin-left:58.333333% !important;margin-right:58.333333% !important}[dir='rtl'] .rtl\:my-8\/12{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='rtl'] .rtl\:mx-8\/12{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='rtl'] .rtl\:my-9\/12{margin-top:75% !important;margin-bottom:75% !important}[dir='rtl'] .rtl\:mx-9\/12{margin-left:75% !important;margin-right:75% !important}[dir='rtl'] .rtl\:my-10\/12{margin-top:83.333333% !important;margin-bottom:83.333333% !important}[dir='rtl'] .rtl\:mx-10\/12{margin-left:83.333333% !important;margin-right:83.333333% !important}[dir='rtl'] .rtl\:my-11\/12{margin-top:91.666667% !important;margin-bottom:91.666667% !important}[dir='rtl'] .rtl\:mx-11\/12{margin-left:91.666667% !important;margin-right:91.666667% !important}[dir='rtl'] .rtl\:my-full{margin-top:100% !important;margin-bottom:100% !important}[dir='rtl'] .rtl\:mx-full{margin-left:100% !important;margin-right:100% !important}[dir='rtl'] .rtl\:-my-1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}[dir='rtl'] .rtl\:-mx-1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}[dir='rtl'] .rtl\:-my-2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}[dir='rtl'] .rtl\:-mx-2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}[dir='rtl'] .rtl\:-my-3{margin-top:-0.75rem !important;margin-bottom:-0.75rem !important}[dir='rtl'] .rtl\:-mx-3{margin-left:-0.75rem !important;margin-right:-0.75rem !important}[dir='rtl'] .rtl\:-my-4{margin-top:-1rem !important;margin-bottom:-1rem !important}[dir='rtl'] .rtl\:-mx-4{margin-left:-1rem !important;margin-right:-1rem !important}[dir='rtl'] .rtl\:-my-5{margin-top:-1.25rem !important;margin-bottom:-1.25rem !important}[dir='rtl'] .rtl\:-mx-5{margin-left:-1.25rem !important;margin-right:-1.25rem !important}[dir='rtl'] .rtl\:-my-6{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}[dir='rtl'] .rtl\:-mx-6{margin-left:-1.5rem !important;margin-right:-1.5rem !important}[dir='rtl'] .rtl\:-my-7{margin-top:-1.75rem !important;margin-bottom:-1.75rem !important}[dir='rtl'] .rtl\:-mx-7{margin-left:-1.75rem !important;margin-right:-1.75rem !important}[dir='rtl'] .rtl\:-my-8{margin-top:-2rem !important;margin-bottom:-2rem !important}[dir='rtl'] .rtl\:-mx-8{margin-left:-2rem !important;margin-right:-2rem !important}[dir='rtl'] .rtl\:-my-9{margin-top:-2.25rem !important;margin-bottom:-2.25rem !important}[dir='rtl'] .rtl\:-mx-9{margin-left:-2.25rem !important;margin-right:-2.25rem !important}[dir='rtl'] .rtl\:-my-10{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}[dir='rtl'] .rtl\:-mx-10{margin-left:-2.5rem !important;margin-right:-2.5rem !important}[dir='rtl'] .rtl\:-my-11{margin-top:-2.75rem !important;margin-bottom:-2.75rem !important}[dir='rtl'] .rtl\:-mx-11{margin-left:-2.75rem !important;margin-right:-2.75rem !important}[dir='rtl'] .rtl\:-my-12{margin-top:-3rem !important;margin-bottom:-3rem !important}[dir='rtl'] .rtl\:-mx-12{margin-left:-3rem !important;margin-right:-3rem !important}[dir='rtl'] .rtl\:-my-13{margin-top:-3.25rem !important;margin-bottom:-3.25rem !important}[dir='rtl'] .rtl\:-mx-13{margin-left:-3.25rem !important;margin-right:-3.25rem !important}[dir='rtl'] .rtl\:-my-14{margin-top:-3.5rem !important;margin-bottom:-3.5rem !important}[dir='rtl'] .rtl\:-mx-14{margin-left:-3.5rem !important;margin-right:-3.5rem !important}[dir='rtl'] .rtl\:-my-15{margin-top:-3.75rem !important;margin-bottom:-3.75rem !important}[dir='rtl'] .rtl\:-mx-15{margin-left:-3.75rem !important;margin-right:-3.75rem !important}[dir='rtl'] .rtl\:-my-16{margin-top:-4rem !important;margin-bottom:-4rem !important}[dir='rtl'] .rtl\:-mx-16{margin-left:-4rem !important;margin-right:-4rem !important}[dir='rtl'] .rtl\:-my-20{margin-top:-5rem !important;margin-bottom:-5rem !important}[dir='rtl'] .rtl\:-mx-20{margin-left:-5rem !important;margin-right:-5rem !important}[dir='rtl'] .rtl\:-my-24{margin-top:-6rem !important;margin-bottom:-6rem !important}[dir='rtl'] .rtl\:-mx-24{margin-left:-6rem !important;margin-right:-6rem !important}[dir='rtl'] .rtl\:-my-28{margin-top:-7rem !important;margin-bottom:-7rem !important}[dir='rtl'] .rtl\:-mx-28{margin-left:-7rem !important;margin-right:-7rem !important}[dir='rtl'] .rtl\:-my-32{margin-top:-8rem !important;margin-bottom:-8rem !important}[dir='rtl'] .rtl\:-mx-32{margin-left:-8rem !important;margin-right:-8rem !important}[dir='rtl'] .rtl\:-my-36{margin-top:-9rem !important;margin-bottom:-9rem !important}[dir='rtl'] .rtl\:-mx-36{margin-left:-9rem !important;margin-right:-9rem !important}[dir='rtl'] .rtl\:-my-40{margin-top:-10rem !important;margin-bottom:-10rem !important}[dir='rtl'] .rtl\:-mx-40{margin-left:-10rem !important;margin-right:-10rem !important}[dir='rtl'] .rtl\:-my-48{margin-top:-12rem !important;margin-bottom:-12rem !important}[dir='rtl'] .rtl\:-mx-48{margin-left:-12rem !important;margin-right:-12rem !important}[dir='rtl'] .rtl\:-my-56{margin-top:-14rem !important;margin-bottom:-14rem !important}[dir='rtl'] .rtl\:-mx-56{margin-left:-14rem !important;margin-right:-14rem !important}[dir='rtl'] .rtl\:-my-60{margin-top:-15rem !important;margin-bottom:-15rem !important}[dir='rtl'] .rtl\:-mx-60{margin-left:-15rem !important;margin-right:-15rem !important}[dir='rtl'] .rtl\:-my-64{margin-top:-16rem !important;margin-bottom:-16rem !important}[dir='rtl'] .rtl\:-mx-64{margin-left:-16rem !important;margin-right:-16rem !important}[dir='rtl'] .rtl\:-my-72{margin-top:-18rem !important;margin-bottom:-18rem !important}[dir='rtl'] .rtl\:-mx-72{margin-left:-18rem !important;margin-right:-18rem !important}[dir='rtl'] .rtl\:-my-80{margin-top:-20rem !important;margin-bottom:-20rem !important}[dir='rtl'] .rtl\:-mx-80{margin-left:-20rem !important;margin-right:-20rem !important}[dir='rtl'] .rtl\:-my-96{margin-top:-24rem !important;margin-bottom:-24rem !important}[dir='rtl'] .rtl\:-mx-96{margin-left:-24rem !important;margin-right:-24rem !important}[dir='rtl'] .rtl\:-my-px{margin-top:-1px !important;margin-bottom:-1px !important}[dir='rtl'] .rtl\:-mx-px{margin-left:-1px !important;margin-right:-1px !important}[dir='rtl'] .rtl\:-my-0\.5{margin-top:-0.125rem !important;margin-bottom:-0.125rem !important}[dir='rtl'] .rtl\:-mx-0\.5{margin-left:-0.125rem !important;margin-right:-0.125rem !important}[dir='rtl'] .rtl\:-my-1\.5{margin-top:-0.375rem !important;margin-bottom:-0.375rem !important}[dir='rtl'] .rtl\:-mx-1\.5{margin-left:-0.375rem !important;margin-right:-0.375rem !important}[dir='rtl'] .rtl\:-my-2\.5{margin-top:-0.625rem !important;margin-bottom:-0.625rem !important}[dir='rtl'] .rtl\:-mx-2\.5{margin-left:-0.625rem !important;margin-right:-0.625rem !important}[dir='rtl'] .rtl\:-my-3\.5{margin-top:-0.875rem !important;margin-bottom:-0.875rem !important}[dir='rtl'] .rtl\:-mx-3\.5{margin-left:-0.875rem !important;margin-right:-0.875rem !important}[dir='rtl'] .rtl\:-my-1\/2{margin-top:-50% !important;margin-bottom:-50% !important}[dir='rtl'] .rtl\:-mx-1\/2{margin-left:-50% !important;margin-right:-50% !important}[dir='rtl'] .rtl\:-my-1\/3{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='rtl'] .rtl\:-mx-1\/3{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='rtl'] .rtl\:-my-2\/3{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='rtl'] .rtl\:-mx-2\/3{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='rtl'] .rtl\:-my-1\/4{margin-top:-25% !important;margin-bottom:-25% !important}[dir='rtl'] .rtl\:-mx-1\/4{margin-left:-25% !important;margin-right:-25% !important}[dir='rtl'] .rtl\:-my-2\/4{margin-top:-50% !important;margin-bottom:-50% !important}[dir='rtl'] .rtl\:-mx-2\/4{margin-left:-50% !important;margin-right:-50% !important}[dir='rtl'] .rtl\:-my-3\/4{margin-top:-75% !important;margin-bottom:-75% !important}[dir='rtl'] .rtl\:-mx-3\/4{margin-left:-75% !important;margin-right:-75% !important}[dir='rtl'] .rtl\:-my-1\/5{margin-top:-20% !important;margin-bottom:-20% !important}[dir='rtl'] .rtl\:-mx-1\/5{margin-left:-20% !important;margin-right:-20% !important}[dir='rtl'] .rtl\:-my-2\/5{margin-top:-40% !important;margin-bottom:-40% !important}[dir='rtl'] .rtl\:-mx-2\/5{margin-left:-40% !important;margin-right:-40% !important}[dir='rtl'] .rtl\:-my-3\/5{margin-top:-60% !important;margin-bottom:-60% !important}[dir='rtl'] .rtl\:-mx-3\/5{margin-left:-60% !important;margin-right:-60% !important}[dir='rtl'] .rtl\:-my-4\/5{margin-top:-80% !important;margin-bottom:-80% !important}[dir='rtl'] .rtl\:-mx-4\/5{margin-left:-80% !important;margin-right:-80% !important}[dir='rtl'] .rtl\:-my-1\/6{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}[dir='rtl'] .rtl\:-mx-1\/6{margin-left:-16.66667% !important;margin-right:-16.66667% !important}[dir='rtl'] .rtl\:-my-2\/6{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='rtl'] .rtl\:-mx-2\/6{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='rtl'] .rtl\:-my-3\/6{margin-top:-50% !important;margin-bottom:-50% !important}[dir='rtl'] .rtl\:-mx-3\/6{margin-left:-50% !important;margin-right:-50% !important}[dir='rtl'] .rtl\:-my-4\/6{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='rtl'] .rtl\:-mx-4\/6{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='rtl'] .rtl\:-my-5\/6{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}[dir='rtl'] .rtl\:-mx-5\/6{margin-left:-83.33333% !important;margin-right:-83.33333% !important}[dir='rtl'] .rtl\:-my-1\/12{margin-top:-8.33333% !important;margin-bottom:-8.33333% !important}[dir='rtl'] .rtl\:-mx-1\/12{margin-left:-8.33333% !important;margin-right:-8.33333% !important}[dir='rtl'] .rtl\:-my-2\/12{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}[dir='rtl'] .rtl\:-mx-2\/12{margin-left:-16.66667% !important;margin-right:-16.66667% !important}[dir='rtl'] .rtl\:-my-3\/12{margin-top:-25% !important;margin-bottom:-25% !important}[dir='rtl'] .rtl\:-mx-3\/12{margin-left:-25% !important;margin-right:-25% !important}[dir='rtl'] .rtl\:-my-4\/12{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='rtl'] .rtl\:-mx-4\/12{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='rtl'] .rtl\:-my-5\/12{margin-top:-41.66667% !important;margin-bottom:-41.66667% !important}[dir='rtl'] .rtl\:-mx-5\/12{margin-left:-41.66667% !important;margin-right:-41.66667% !important}[dir='rtl'] .rtl\:-my-6\/12{margin-top:-50% !important;margin-bottom:-50% !important}[dir='rtl'] .rtl\:-mx-6\/12{margin-left:-50% !important;margin-right:-50% !important}[dir='rtl'] .rtl\:-my-7\/12{margin-top:-58.33333% !important;margin-bottom:-58.33333% !important}[dir='rtl'] .rtl\:-mx-7\/12{margin-left:-58.33333% !important;margin-right:-58.33333% !important}[dir='rtl'] .rtl\:-my-8\/12{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='rtl'] .rtl\:-mx-8\/12{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='rtl'] .rtl\:-my-9\/12{margin-top:-75% !important;margin-bottom:-75% !important}[dir='rtl'] .rtl\:-mx-9\/12{margin-left:-75% !important;margin-right:-75% !important}[dir='rtl'] .rtl\:-my-10\/12{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}[dir='rtl'] .rtl\:-mx-10\/12{margin-left:-83.33333% !important;margin-right:-83.33333% !important}[dir='rtl'] .rtl\:-my-11\/12{margin-top:-91.66667% !important;margin-bottom:-91.66667% !important}[dir='rtl'] .rtl\:-mx-11\/12{margin-left:-91.66667% !important;margin-right:-91.66667% !important}[dir='rtl'] .rtl\:-my-full{margin-top:-100% !important;margin-bottom:-100% !important}[dir='rtl'] .rtl\:-mx-full{margin-left:-100% !important;margin-right:-100% !important}[dir='rtl'] .rtl\:mt-0{margin-top:0 !important}[dir='rtl'] .rtl\:mr-0{margin-right:0 !important}[dir='rtl'] .rtl\:mb-0{margin-bottom:0 !important}[dir='rtl'] .rtl\:ml-0{margin-left:0 !important}[dir='rtl'] .rtl\:mt-1{margin-top:.25rem !important}[dir='rtl'] .rtl\:mr-1{margin-right:.25rem !important}[dir='rtl'] .rtl\:mb-1{margin-bottom:.25rem !important}[dir='rtl'] .rtl\:ml-1{margin-left:.25rem !important}[dir='rtl'] .rtl\:mt-2{margin-top:.5rem !important}[dir='rtl'] .rtl\:mr-2{margin-right:.5rem !important}[dir='rtl'] .rtl\:mb-2{margin-bottom:.5rem !important}[dir='rtl'] .rtl\:ml-2{margin-left:.5rem !important}[dir='rtl'] .rtl\:mt-3{margin-top:.75rem !important}[dir='rtl'] .rtl\:mr-3{margin-right:.75rem !important}[dir='rtl'] .rtl\:mb-3{margin-bottom:.75rem !important}[dir='rtl'] .rtl\:ml-3{margin-left:.75rem !important}[dir='rtl'] .rtl\:mt-4{margin-top:1rem !important}[dir='rtl'] .rtl\:mr-4{margin-right:1rem !important}[dir='rtl'] .rtl\:mb-4{margin-bottom:1rem !important}[dir='rtl'] .rtl\:ml-4{margin-left:1rem !important}[dir='rtl'] .rtl\:mt-5{margin-top:1.25rem !important}[dir='rtl'] .rtl\:mr-5{margin-right:1.25rem !important}[dir='rtl'] .rtl\:mb-5{margin-bottom:1.25rem !important}[dir='rtl'] .rtl\:ml-5{margin-left:1.25rem !important}[dir='rtl'] .rtl\:mt-6{margin-top:1.5rem !important}[dir='rtl'] .rtl\:mr-6{margin-right:1.5rem !important}[dir='rtl'] .rtl\:mb-6{margin-bottom:1.5rem !important}[dir='rtl'] .rtl\:ml-6{margin-left:1.5rem !important}[dir='rtl'] .rtl\:mt-7{margin-top:1.75rem !important}[dir='rtl'] .rtl\:mr-7{margin-right:1.75rem !important}[dir='rtl'] .rtl\:mb-7{margin-bottom:1.75rem !important}[dir='rtl'] .rtl\:ml-7{margin-left:1.75rem !important}[dir='rtl'] .rtl\:mt-8{margin-top:2rem !important}[dir='rtl'] .rtl\:mr-8{margin-right:2rem !important}[dir='rtl'] .rtl\:mb-8{margin-bottom:2rem !important}[dir='rtl'] .rtl\:ml-8{margin-left:2rem !important}[dir='rtl'] .rtl\:mt-9{margin-top:2.25rem !important}[dir='rtl'] .rtl\:mr-9{margin-right:2.25rem !important}[dir='rtl'] .rtl\:mb-9{margin-bottom:2.25rem !important}[dir='rtl'] .rtl\:ml-9{margin-left:2.25rem !important}[dir='rtl'] .rtl\:mt-10{margin-top:2.5rem !important}[dir='rtl'] .rtl\:mr-10{margin-right:2.5rem !important}[dir='rtl'] .rtl\:mb-10{margin-bottom:2.5rem !important}[dir='rtl'] .rtl\:ml-10{margin-left:2.5rem !important}[dir='rtl'] .rtl\:mt-11{margin-top:2.75rem !important}[dir='rtl'] .rtl\:mr-11{margin-right:2.75rem !important}[dir='rtl'] .rtl\:mb-11{margin-bottom:2.75rem !important}[dir='rtl'] .rtl\:ml-11{margin-left:2.75rem !important}[dir='rtl'] .rtl\:mt-12{margin-top:3rem !important}[dir='rtl'] .rtl\:mr-12{margin-right:3rem !important}[dir='rtl'] .rtl\:mb-12{margin-bottom:3rem !important}[dir='rtl'] .rtl\:ml-12{margin-left:3rem !important}[dir='rtl'] .rtl\:mt-13{margin-top:3.25rem !important}[dir='rtl'] .rtl\:mr-13{margin-right:3.25rem !important}[dir='rtl'] .rtl\:mb-13{margin-bottom:3.25rem !important}[dir='rtl'] .rtl\:ml-13{margin-left:3.25rem !important}[dir='rtl'] .rtl\:mt-14{margin-top:3.5rem !important}[dir='rtl'] .rtl\:mr-14{margin-right:3.5rem !important}[dir='rtl'] .rtl\:mb-14{margin-bottom:3.5rem !important}[dir='rtl'] .rtl\:ml-14{margin-left:3.5rem !important}[dir='rtl'] .rtl\:mt-15{margin-top:3.75rem !important}[dir='rtl'] .rtl\:mr-15{margin-right:3.75rem !important}[dir='rtl'] .rtl\:mb-15{margin-bottom:3.75rem !important}[dir='rtl'] .rtl\:ml-15{margin-left:3.75rem !important}[dir='rtl'] .rtl\:mt-16{margin-top:4rem !important}[dir='rtl'] .rtl\:mr-16{margin-right:4rem !important}[dir='rtl'] .rtl\:mb-16{margin-bottom:4rem !important}[dir='rtl'] .rtl\:ml-16{margin-left:4rem !important}[dir='rtl'] .rtl\:mt-20{margin-top:5rem !important}[dir='rtl'] .rtl\:mr-20{margin-right:5rem !important}[dir='rtl'] .rtl\:mb-20{margin-bottom:5rem !important}[dir='rtl'] .rtl\:ml-20{margin-left:5rem !important}[dir='rtl'] .rtl\:mt-24{margin-top:6rem !important}[dir='rtl'] .rtl\:mr-24{margin-right:6rem !important}[dir='rtl'] .rtl\:mb-24{margin-bottom:6rem !important}[dir='rtl'] .rtl\:ml-24{margin-left:6rem !important}[dir='rtl'] .rtl\:mt-28{margin-top:7rem !important}[dir='rtl'] .rtl\:mr-28{margin-right:7rem !important}[dir='rtl'] .rtl\:mb-28{margin-bottom:7rem !important}[dir='rtl'] .rtl\:ml-28{margin-left:7rem !important}[dir='rtl'] .rtl\:mt-32{margin-top:8rem !important}[dir='rtl'] .rtl\:mr-32{margin-right:8rem !important}[dir='rtl'] .rtl\:mb-32{margin-bottom:8rem !important}[dir='rtl'] .rtl\:ml-32{margin-left:8rem !important}[dir='rtl'] .rtl\:mt-36{margin-top:9rem !important}[dir='rtl'] .rtl\:mr-36{margin-right:9rem !important}[dir='rtl'] .rtl\:mb-36{margin-bottom:9rem !important}[dir='rtl'] .rtl\:ml-36{margin-left:9rem !important}[dir='rtl'] .rtl\:mt-40{margin-top:10rem !important}[dir='rtl'] .rtl\:mr-40{margin-right:10rem !important}[dir='rtl'] .rtl\:mb-40{margin-bottom:10rem !important}[dir='rtl'] .rtl\:ml-40{margin-left:10rem !important}[dir='rtl'] .rtl\:mt-48{margin-top:12rem !important}[dir='rtl'] .rtl\:mr-48{margin-right:12rem !important}[dir='rtl'] .rtl\:mb-48{margin-bottom:12rem !important}[dir='rtl'] .rtl\:ml-48{margin-left:12rem !important}[dir='rtl'] .rtl\:mt-56{margin-top:14rem !important}[dir='rtl'] .rtl\:mr-56{margin-right:14rem !important}[dir='rtl'] .rtl\:mb-56{margin-bottom:14rem !important}[dir='rtl'] .rtl\:ml-56{margin-left:14rem !important}[dir='rtl'] .rtl\:mt-60{margin-top:15rem !important}[dir='rtl'] .rtl\:mr-60{margin-right:15rem !important}[dir='rtl'] .rtl\:mb-60{margin-bottom:15rem !important}[dir='rtl'] .rtl\:ml-60{margin-left:15rem !important}[dir='rtl'] .rtl\:mt-64{margin-top:16rem !important}[dir='rtl'] .rtl\:mr-64{margin-right:16rem !important}[dir='rtl'] .rtl\:mb-64{margin-bottom:16rem !important}[dir='rtl'] .rtl\:ml-64{margin-left:16rem !important}[dir='rtl'] .rtl\:mt-72{margin-top:18rem !important}[dir='rtl'] .rtl\:mr-72{margin-right:18rem !important}[dir='rtl'] .rtl\:mb-72{margin-bottom:18rem !important}[dir='rtl'] .rtl\:ml-72{margin-left:18rem !important}[dir='rtl'] .rtl\:mt-80{margin-top:20rem !important}[dir='rtl'] .rtl\:mr-80{margin-right:20rem !important}[dir='rtl'] .rtl\:mb-80{margin-bottom:20rem !important}[dir='rtl'] .rtl\:ml-80{margin-left:20rem !important}[dir='rtl'] .rtl\:mt-96{margin-top:24rem !important}[dir='rtl'] .rtl\:mr-96{margin-right:24rem !important}[dir='rtl'] .rtl\:mb-96{margin-bottom:24rem !important}[dir='rtl'] .rtl\:ml-96{margin-left:24rem !important}[dir='rtl'] .rtl\:mt-auto{margin-top:auto !important}[dir='rtl'] .rtl\:mr-auto{margin-right:auto !important}[dir='rtl'] .rtl\:mb-auto{margin-bottom:auto !important}[dir='rtl'] .rtl\:ml-auto{margin-left:auto !important}[dir='rtl'] .rtl\:mt-px{margin-top:1px !important}[dir='rtl'] .rtl\:mr-px{margin-right:1px !important}[dir='rtl'] .rtl\:mb-px{margin-bottom:1px !important}[dir='rtl'] .rtl\:ml-px{margin-left:1px !important}[dir='rtl'] .rtl\:mt-0\.5{margin-top:.125rem !important}[dir='rtl'] .rtl\:mr-0\.5{margin-right:.125rem !important}[dir='rtl'] .rtl\:mb-0\.5{margin-bottom:.125rem !important}[dir='rtl'] .rtl\:ml-0\.5{margin-left:.125rem !important}[dir='rtl'] .rtl\:mt-1\.5{margin-top:.375rem !important}[dir='rtl'] .rtl\:mr-1\.5{margin-right:.375rem !important}[dir='rtl'] .rtl\:mb-1\.5{margin-bottom:.375rem !important}[dir='rtl'] .rtl\:ml-1\.5{margin-left:.375rem !important}[dir='rtl'] .rtl\:mt-2\.5{margin-top:.625rem !important}[dir='rtl'] .rtl\:mr-2\.5{margin-right:.625rem !important}[dir='rtl'] .rtl\:mb-2\.5{margin-bottom:.625rem !important}[dir='rtl'] .rtl\:ml-2\.5{margin-left:.625rem !important}[dir='rtl'] .rtl\:mt-3\.5{margin-top:.875rem !important}[dir='rtl'] .rtl\:mr-3\.5{margin-right:.875rem !important}[dir='rtl'] .rtl\:mb-3\.5{margin-bottom:.875rem !important}[dir='rtl'] .rtl\:ml-3\.5{margin-left:.875rem !important}[dir='rtl'] .rtl\:mt-1\/2{margin-top:50% !important}[dir='rtl'] .rtl\:mr-1\/2{margin-right:50% !important}[dir='rtl'] .rtl\:mb-1\/2{margin-bottom:50% !important}[dir='rtl'] .rtl\:ml-1\/2{margin-left:50% !important}[dir='rtl'] .rtl\:mt-1\/3{margin-top:33.333333% !important}[dir='rtl'] .rtl\:mr-1\/3{margin-right:33.333333% !important}[dir='rtl'] .rtl\:mb-1\/3{margin-bottom:33.333333% !important}[dir='rtl'] .rtl\:ml-1\/3{margin-left:33.333333% !important}[dir='rtl'] .rtl\:mt-2\/3{margin-top:66.666667% !important}[dir='rtl'] .rtl\:mr-2\/3{margin-right:66.666667% !important}[dir='rtl'] .rtl\:mb-2\/3{margin-bottom:66.666667% !important}[dir='rtl'] .rtl\:ml-2\/3{margin-left:66.666667% !important}[dir='rtl'] .rtl\:mt-1\/4{margin-top:25% !important}[dir='rtl'] .rtl\:mr-1\/4{margin-right:25% !important}[dir='rtl'] .rtl\:mb-1\/4{margin-bottom:25% !important}[dir='rtl'] .rtl\:ml-1\/4{margin-left:25% !important}[dir='rtl'] .rtl\:mt-2\/4{margin-top:50% !important}[dir='rtl'] .rtl\:mr-2\/4{margin-right:50% !important}[dir='rtl'] .rtl\:mb-2\/4{margin-bottom:50% !important}[dir='rtl'] .rtl\:ml-2\/4{margin-left:50% !important}[dir='rtl'] .rtl\:mt-3\/4{margin-top:75% !important}[dir='rtl'] .rtl\:mr-3\/4{margin-right:75% !important}[dir='rtl'] .rtl\:mb-3\/4{margin-bottom:75% !important}[dir='rtl'] .rtl\:ml-3\/4{margin-left:75% !important}[dir='rtl'] .rtl\:mt-1\/5{margin-top:20% !important}[dir='rtl'] .rtl\:mr-1\/5{margin-right:20% !important}[dir='rtl'] .rtl\:mb-1\/5{margin-bottom:20% !important}[dir='rtl'] .rtl\:ml-1\/5{margin-left:20% !important}[dir='rtl'] .rtl\:mt-2\/5{margin-top:40% !important}[dir='rtl'] .rtl\:mr-2\/5{margin-right:40% !important}[dir='rtl'] .rtl\:mb-2\/5{margin-bottom:40% !important}[dir='rtl'] .rtl\:ml-2\/5{margin-left:40% !important}[dir='rtl'] .rtl\:mt-3\/5{margin-top:60% !important}[dir='rtl'] .rtl\:mr-3\/5{margin-right:60% !important}[dir='rtl'] .rtl\:mb-3\/5{margin-bottom:60% !important}[dir='rtl'] .rtl\:ml-3\/5{margin-left:60% !important}[dir='rtl'] .rtl\:mt-4\/5{margin-top:80% !important}[dir='rtl'] .rtl\:mr-4\/5{margin-right:80% !important}[dir='rtl'] .rtl\:mb-4\/5{margin-bottom:80% !important}[dir='rtl'] .rtl\:ml-4\/5{margin-left:80% !important}[dir='rtl'] .rtl\:mt-1\/6{margin-top:16.666667% !important}[dir='rtl'] .rtl\:mr-1\/6{margin-right:16.666667% !important}[dir='rtl'] .rtl\:mb-1\/6{margin-bottom:16.666667% !important}[dir='rtl'] .rtl\:ml-1\/6{margin-left:16.666667% !important}[dir='rtl'] .rtl\:mt-2\/6{margin-top:33.333333% !important}[dir='rtl'] .rtl\:mr-2\/6{margin-right:33.333333% !important}[dir='rtl'] .rtl\:mb-2\/6{margin-bottom:33.333333% !important}[dir='rtl'] .rtl\:ml-2\/6{margin-left:33.333333% !important}[dir='rtl'] .rtl\:mt-3\/6{margin-top:50% !important}[dir='rtl'] .rtl\:mr-3\/6{margin-right:50% !important}[dir='rtl'] .rtl\:mb-3\/6{margin-bottom:50% !important}[dir='rtl'] .rtl\:ml-3\/6{margin-left:50% !important}[dir='rtl'] .rtl\:mt-4\/6{margin-top:66.666667% !important}[dir='rtl'] .rtl\:mr-4\/6{margin-right:66.666667% !important}[dir='rtl'] .rtl\:mb-4\/6{margin-bottom:66.666667% !important}[dir='rtl'] .rtl\:ml-4\/6{margin-left:66.666667% !important}[dir='rtl'] .rtl\:mt-5\/6{margin-top:83.333333% !important}[dir='rtl'] .rtl\:mr-5\/6{margin-right:83.333333% !important}[dir='rtl'] .rtl\:mb-5\/6{margin-bottom:83.333333% !important}[dir='rtl'] .rtl\:ml-5\/6{margin-left:83.333333% !important}[dir='rtl'] .rtl\:mt-1\/12{margin-top:8.333333% !important}[dir='rtl'] .rtl\:mr-1\/12{margin-right:8.333333% !important}[dir='rtl'] .rtl\:mb-1\/12{margin-bottom:8.333333% !important}[dir='rtl'] .rtl\:ml-1\/12{margin-left:8.333333% !important}[dir='rtl'] .rtl\:mt-2\/12{margin-top:16.666667% !important}[dir='rtl'] .rtl\:mr-2\/12{margin-right:16.666667% !important}[dir='rtl'] .rtl\:mb-2\/12{margin-bottom:16.666667% !important}[dir='rtl'] .rtl\:ml-2\/12{margin-left:16.666667% !important}[dir='rtl'] .rtl\:mt-3\/12{margin-top:25% !important}[dir='rtl'] .rtl\:mr-3\/12{margin-right:25% !important}[dir='rtl'] .rtl\:mb-3\/12{margin-bottom:25% !important}[dir='rtl'] .rtl\:ml-3\/12{margin-left:25% !important}[dir='rtl'] .rtl\:mt-4\/12{margin-top:33.333333% !important}[dir='rtl'] .rtl\:mr-4\/12{margin-right:33.333333% !important}[dir='rtl'] .rtl\:mb-4\/12{margin-bottom:33.333333% !important}[dir='rtl'] .rtl\:ml-4\/12{margin-left:33.333333% !important}[dir='rtl'] .rtl\:mt-5\/12{margin-top:41.666667% !important}[dir='rtl'] .rtl\:mr-5\/12{margin-right:41.666667% !important}[dir='rtl'] .rtl\:mb-5\/12{margin-bottom:41.666667% !important}[dir='rtl'] .rtl\:ml-5\/12{margin-left:41.666667% !important}[dir='rtl'] .rtl\:mt-6\/12{margin-top:50% !important}[dir='rtl'] .rtl\:mr-6\/12{margin-right:50% !important}[dir='rtl'] .rtl\:mb-6\/12{margin-bottom:50% !important}[dir='rtl'] .rtl\:ml-6\/12{margin-left:50% !important}[dir='rtl'] .rtl\:mt-7\/12{margin-top:58.333333% !important}[dir='rtl'] .rtl\:mr-7\/12{margin-right:58.333333% !important}[dir='rtl'] .rtl\:mb-7\/12{margin-bottom:58.333333% !important}[dir='rtl'] .rtl\:ml-7\/12{margin-left:58.333333% !important}[dir='rtl'] .rtl\:mt-8\/12{margin-top:66.666667% !important}[dir='rtl'] .rtl\:mr-8\/12{margin-right:66.666667% !important}[dir='rtl'] .rtl\:mb-8\/12{margin-bottom:66.666667% !important}[dir='rtl'] .rtl\:ml-8\/12{margin-left:66.666667% !important}[dir='rtl'] .rtl\:mt-9\/12{margin-top:75% !important}[dir='rtl'] .rtl\:mr-9\/12{margin-right:75% !important}[dir='rtl'] .rtl\:mb-9\/12{margin-bottom:75% !important}[dir='rtl'] .rtl\:ml-9\/12{margin-left:75% !important}[dir='rtl'] .rtl\:mt-10\/12{margin-top:83.333333% !important}[dir='rtl'] .rtl\:mr-10\/12{margin-right:83.333333% !important}[dir='rtl'] .rtl\:mb-10\/12{margin-bottom:83.333333% !important}[dir='rtl'] .rtl\:ml-10\/12{margin-left:83.333333% !important}[dir='rtl'] .rtl\:mt-11\/12{margin-top:91.666667% !important}[dir='rtl'] .rtl\:mr-11\/12{margin-right:91.666667% !important}[dir='rtl'] .rtl\:mb-11\/12{margin-bottom:91.666667% !important}[dir='rtl'] .rtl\:ml-11\/12{margin-left:91.666667% !important}[dir='rtl'] .rtl\:mt-full{margin-top:100% !important}[dir='rtl'] .rtl\:mr-full{margin-right:100% !important}[dir='rtl'] .rtl\:mb-full{margin-bottom:100% !important}[dir='rtl'] .rtl\:ml-full{margin-left:100% !important}[dir='rtl'] .rtl\:-mt-1{margin-top:-0.25rem !important}[dir='rtl'] .rtl\:-mr-1{margin-right:-0.25rem !important}[dir='rtl'] .rtl\:-mb-1{margin-bottom:-0.25rem !important}[dir='rtl'] .rtl\:-ml-1{margin-left:-0.25rem !important}[dir='rtl'] .rtl\:-mt-2{margin-top:-0.5rem !important}[dir='rtl'] .rtl\:-mr-2{margin-right:-0.5rem !important}[dir='rtl'] .rtl\:-mb-2{margin-bottom:-0.5rem !important}[dir='rtl'] .rtl\:-ml-2{margin-left:-0.5rem !important}[dir='rtl'] .rtl\:-mt-3{margin-top:-0.75rem !important}[dir='rtl'] .rtl\:-mr-3{margin-right:-0.75rem !important}[dir='rtl'] .rtl\:-mb-3{margin-bottom:-0.75rem !important}[dir='rtl'] .rtl\:-ml-3{margin-left:-0.75rem !important}[dir='rtl'] .rtl\:-mt-4{margin-top:-1rem !important}[dir='rtl'] .rtl\:-mr-4{margin-right:-1rem !important}[dir='rtl'] .rtl\:-mb-4{margin-bottom:-1rem !important}[dir='rtl'] .rtl\:-ml-4{margin-left:-1rem !important}[dir='rtl'] .rtl\:-mt-5{margin-top:-1.25rem !important}[dir='rtl'] .rtl\:-mr-5{margin-right:-1.25rem !important}[dir='rtl'] .rtl\:-mb-5{margin-bottom:-1.25rem !important}[dir='rtl'] .rtl\:-ml-5{margin-left:-1.25rem !important}[dir='rtl'] .rtl\:-mt-6{margin-top:-1.5rem !important}[dir='rtl'] .rtl\:-mr-6{margin-right:-1.5rem !important}[dir='rtl'] .rtl\:-mb-6{margin-bottom:-1.5rem !important}[dir='rtl'] .rtl\:-ml-6{margin-left:-1.5rem !important}[dir='rtl'] .rtl\:-mt-7{margin-top:-1.75rem !important}[dir='rtl'] .rtl\:-mr-7{margin-right:-1.75rem !important}[dir='rtl'] .rtl\:-mb-7{margin-bottom:-1.75rem !important}[dir='rtl'] .rtl\:-ml-7{margin-left:-1.75rem !important}[dir='rtl'] .rtl\:-mt-8{margin-top:-2rem !important}[dir='rtl'] .rtl\:-mr-8{margin-right:-2rem !important}[dir='rtl'] .rtl\:-mb-8{margin-bottom:-2rem !important}[dir='rtl'] .rtl\:-ml-8{margin-left:-2rem !important}[dir='rtl'] .rtl\:-mt-9{margin-top:-2.25rem !important}[dir='rtl'] .rtl\:-mr-9{margin-right:-2.25rem !important}[dir='rtl'] .rtl\:-mb-9{margin-bottom:-2.25rem !important}[dir='rtl'] .rtl\:-ml-9{margin-left:-2.25rem !important}[dir='rtl'] .rtl\:-mt-10{margin-top:-2.5rem !important}[dir='rtl'] .rtl\:-mr-10{margin-right:-2.5rem !important}[dir='rtl'] .rtl\:-mb-10{margin-bottom:-2.5rem !important}[dir='rtl'] .rtl\:-ml-10{margin-left:-2.5rem !important}[dir='rtl'] .rtl\:-mt-11{margin-top:-2.75rem !important}[dir='rtl'] .rtl\:-mr-11{margin-right:-2.75rem !important}[dir='rtl'] .rtl\:-mb-11{margin-bottom:-2.75rem !important}[dir='rtl'] .rtl\:-ml-11{margin-left:-2.75rem !important}[dir='rtl'] .rtl\:-mt-12{margin-top:-3rem !important}[dir='rtl'] .rtl\:-mr-12{margin-right:-3rem !important}[dir='rtl'] .rtl\:-mb-12{margin-bottom:-3rem !important}[dir='rtl'] .rtl\:-ml-12{margin-left:-3rem !important}[dir='rtl'] .rtl\:-mt-13{margin-top:-3.25rem !important}[dir='rtl'] .rtl\:-mr-13{margin-right:-3.25rem !important}[dir='rtl'] .rtl\:-mb-13{margin-bottom:-3.25rem !important}[dir='rtl'] .rtl\:-ml-13{margin-left:-3.25rem !important}[dir='rtl'] .rtl\:-mt-14{margin-top:-3.5rem !important}[dir='rtl'] .rtl\:-mr-14{margin-right:-3.5rem !important}[dir='rtl'] .rtl\:-mb-14{margin-bottom:-3.5rem !important}[dir='rtl'] .rtl\:-ml-14{margin-left:-3.5rem !important}[dir='rtl'] .rtl\:-mt-15{margin-top:-3.75rem !important}[dir='rtl'] .rtl\:-mr-15{margin-right:-3.75rem !important}[dir='rtl'] .rtl\:-mb-15{margin-bottom:-3.75rem !important}[dir='rtl'] .rtl\:-ml-15{margin-left:-3.75rem !important}[dir='rtl'] .rtl\:-mt-16{margin-top:-4rem !important}[dir='rtl'] .rtl\:-mr-16{margin-right:-4rem !important}[dir='rtl'] .rtl\:-mb-16{margin-bottom:-4rem !important}[dir='rtl'] .rtl\:-ml-16{margin-left:-4rem !important}[dir='rtl'] .rtl\:-mt-20{margin-top:-5rem !important}[dir='rtl'] .rtl\:-mr-20{margin-right:-5rem !important}[dir='rtl'] .rtl\:-mb-20{margin-bottom:-5rem !important}[dir='rtl'] .rtl\:-ml-20{margin-left:-5rem !important}[dir='rtl'] .rtl\:-mt-24{margin-top:-6rem !important}[dir='rtl'] .rtl\:-mr-24{margin-right:-6rem !important}[dir='rtl'] .rtl\:-mb-24{margin-bottom:-6rem !important}[dir='rtl'] .rtl\:-ml-24{margin-left:-6rem !important}[dir='rtl'] .rtl\:-mt-28{margin-top:-7rem !important}[dir='rtl'] .rtl\:-mr-28{margin-right:-7rem !important}[dir='rtl'] .rtl\:-mb-28{margin-bottom:-7rem !important}[dir='rtl'] .rtl\:-ml-28{margin-left:-7rem !important}[dir='rtl'] .rtl\:-mt-32{margin-top:-8rem !important}[dir='rtl'] .rtl\:-mr-32{margin-right:-8rem !important}[dir='rtl'] .rtl\:-mb-32{margin-bottom:-8rem !important}[dir='rtl'] .rtl\:-ml-32{margin-left:-8rem !important}[dir='rtl'] .rtl\:-mt-36{margin-top:-9rem !important}[dir='rtl'] .rtl\:-mr-36{margin-right:-9rem !important}[dir='rtl'] .rtl\:-mb-36{margin-bottom:-9rem !important}[dir='rtl'] .rtl\:-ml-36{margin-left:-9rem !important}[dir='rtl'] .rtl\:-mt-40{margin-top:-10rem !important}[dir='rtl'] .rtl\:-mr-40{margin-right:-10rem !important}[dir='rtl'] .rtl\:-mb-40{margin-bottom:-10rem !important}[dir='rtl'] .rtl\:-ml-40{margin-left:-10rem !important}[dir='rtl'] .rtl\:-mt-48{margin-top:-12rem !important}[dir='rtl'] .rtl\:-mr-48{margin-right:-12rem !important}[dir='rtl'] .rtl\:-mb-48{margin-bottom:-12rem !important}[dir='rtl'] .rtl\:-ml-48{margin-left:-12rem !important}[dir='rtl'] .rtl\:-mt-56{margin-top:-14rem !important}[dir='rtl'] .rtl\:-mr-56{margin-right:-14rem !important}[dir='rtl'] .rtl\:-mb-56{margin-bottom:-14rem !important}[dir='rtl'] .rtl\:-ml-56{margin-left:-14rem !important}[dir='rtl'] .rtl\:-mt-60{margin-top:-15rem !important}[dir='rtl'] .rtl\:-mr-60{margin-right:-15rem !important}[dir='rtl'] .rtl\:-mb-60{margin-bottom:-15rem !important}[dir='rtl'] .rtl\:-ml-60{margin-left:-15rem !important}[dir='rtl'] .rtl\:-mt-64{margin-top:-16rem !important}[dir='rtl'] .rtl\:-mr-64{margin-right:-16rem !important}[dir='rtl'] .rtl\:-mb-64{margin-bottom:-16rem !important}[dir='rtl'] .rtl\:-ml-64{margin-left:-16rem !important}[dir='rtl'] .rtl\:-mt-72{margin-top:-18rem !important}[dir='rtl'] .rtl\:-mr-72{margin-right:-18rem !important}[dir='rtl'] .rtl\:-mb-72{margin-bottom:-18rem !important}[dir='rtl'] .rtl\:-ml-72{margin-left:-18rem !important}[dir='rtl'] .rtl\:-mt-80{margin-top:-20rem !important}[dir='rtl'] .rtl\:-mr-80{margin-right:-20rem !important}[dir='rtl'] .rtl\:-mb-80{margin-bottom:-20rem !important}[dir='rtl'] .rtl\:-ml-80{margin-left:-20rem !important}[dir='rtl'] .rtl\:-mt-96{margin-top:-24rem !important}[dir='rtl'] .rtl\:-mr-96{margin-right:-24rem !important}[dir='rtl'] .rtl\:-mb-96{margin-bottom:-24rem !important}[dir='rtl'] .rtl\:-ml-96{margin-left:-24rem !important}[dir='rtl'] .rtl\:-mt-px{margin-top:-1px !important}[dir='rtl'] .rtl\:-mr-px{margin-right:-1px !important}[dir='rtl'] .rtl\:-mb-px{margin-bottom:-1px !important}[dir='rtl'] .rtl\:-ml-px{margin-left:-1px !important}[dir='rtl'] .rtl\:-mt-0\.5{margin-top:-0.125rem !important}[dir='rtl'] .rtl\:-mr-0\.5{margin-right:-0.125rem !important}[dir='rtl'] .rtl\:-mb-0\.5{margin-bottom:-0.125rem !important}[dir='rtl'] .rtl\:-ml-0\.5{margin-left:-0.125rem !important}[dir='rtl'] .rtl\:-mt-1\.5{margin-top:-0.375rem !important}[dir='rtl'] .rtl\:-mr-1\.5{margin-right:-0.375rem !important}[dir='rtl'] .rtl\:-mb-1\.5{margin-bottom:-0.375rem !important}[dir='rtl'] .rtl\:-ml-1\.5{margin-left:-0.375rem !important}[dir='rtl'] .rtl\:-mt-2\.5{margin-top:-0.625rem !important}[dir='rtl'] .rtl\:-mr-2\.5{margin-right:-0.625rem !important}[dir='rtl'] .rtl\:-mb-2\.5{margin-bottom:-0.625rem !important}[dir='rtl'] .rtl\:-ml-2\.5{margin-left:-0.625rem !important}[dir='rtl'] .rtl\:-mt-3\.5{margin-top:-0.875rem !important}[dir='rtl'] .rtl\:-mr-3\.5{margin-right:-0.875rem !important}[dir='rtl'] .rtl\:-mb-3\.5{margin-bottom:-0.875rem !important}[dir='rtl'] .rtl\:-ml-3\.5{margin-left:-0.875rem !important}[dir='rtl'] .rtl\:-mt-1\/2{margin-top:-50% !important}[dir='rtl'] .rtl\:-mr-1\/2{margin-right:-50% !important}[dir='rtl'] .rtl\:-mb-1\/2{margin-bottom:-50% !important}[dir='rtl'] .rtl\:-ml-1\/2{margin-left:-50% !important}[dir='rtl'] .rtl\:-mt-1\/3{margin-top:-33.33333% !important}[dir='rtl'] .rtl\:-mr-1\/3{margin-right:-33.33333% !important}[dir='rtl'] .rtl\:-mb-1\/3{margin-bottom:-33.33333% !important}[dir='rtl'] .rtl\:-ml-1\/3{margin-left:-33.33333% !important}[dir='rtl'] .rtl\:-mt-2\/3{margin-top:-66.66667% !important}[dir='rtl'] .rtl\:-mr-2\/3{margin-right:-66.66667% !important}[dir='rtl'] .rtl\:-mb-2\/3{margin-bottom:-66.66667% !important}[dir='rtl'] .rtl\:-ml-2\/3{margin-left:-66.66667% !important}[dir='rtl'] .rtl\:-mt-1\/4{margin-top:-25% !important}[dir='rtl'] .rtl\:-mr-1\/4{margin-right:-25% !important}[dir='rtl'] .rtl\:-mb-1\/4{margin-bottom:-25% !important}[dir='rtl'] .rtl\:-ml-1\/4{margin-left:-25% !important}[dir='rtl'] .rtl\:-mt-2\/4{margin-top:-50% !important}[dir='rtl'] .rtl\:-mr-2\/4{margin-right:-50% !important}[dir='rtl'] .rtl\:-mb-2\/4{margin-bottom:-50% !important}[dir='rtl'] .rtl\:-ml-2\/4{margin-left:-50% !important}[dir='rtl'] .rtl\:-mt-3\/4{margin-top:-75% !important}[dir='rtl'] .rtl\:-mr-3\/4{margin-right:-75% !important}[dir='rtl'] .rtl\:-mb-3\/4{margin-bottom:-75% !important}[dir='rtl'] .rtl\:-ml-3\/4{margin-left:-75% !important}[dir='rtl'] .rtl\:-mt-1\/5{margin-top:-20% !important}[dir='rtl'] .rtl\:-mr-1\/5{margin-right:-20% !important}[dir='rtl'] .rtl\:-mb-1\/5{margin-bottom:-20% !important}[dir='rtl'] .rtl\:-ml-1\/5{margin-left:-20% !important}[dir='rtl'] .rtl\:-mt-2\/5{margin-top:-40% !important}[dir='rtl'] .rtl\:-mr-2\/5{margin-right:-40% !important}[dir='rtl'] .rtl\:-mb-2\/5{margin-bottom:-40% !important}[dir='rtl'] .rtl\:-ml-2\/5{margin-left:-40% !important}[dir='rtl'] .rtl\:-mt-3\/5{margin-top:-60% !important}[dir='rtl'] .rtl\:-mr-3\/5{margin-right:-60% !important}[dir='rtl'] .rtl\:-mb-3\/5{margin-bottom:-60% !important}[dir='rtl'] .rtl\:-ml-3\/5{margin-left:-60% !important}[dir='rtl'] .rtl\:-mt-4\/5{margin-top:-80% !important}[dir='rtl'] .rtl\:-mr-4\/5{margin-right:-80% !important}[dir='rtl'] .rtl\:-mb-4\/5{margin-bottom:-80% !important}[dir='rtl'] .rtl\:-ml-4\/5{margin-left:-80% !important}[dir='rtl'] .rtl\:-mt-1\/6{margin-top:-16.66667% !important}[dir='rtl'] .rtl\:-mr-1\/6{margin-right:-16.66667% !important}[dir='rtl'] .rtl\:-mb-1\/6{margin-bottom:-16.66667% !important}[dir='rtl'] .rtl\:-ml-1\/6{margin-left:-16.66667% !important}[dir='rtl'] .rtl\:-mt-2\/6{margin-top:-33.33333% !important}[dir='rtl'] .rtl\:-mr-2\/6{margin-right:-33.33333% !important}[dir='rtl'] .rtl\:-mb-2\/6{margin-bottom:-33.33333% !important}[dir='rtl'] .rtl\:-ml-2\/6{margin-left:-33.33333% !important}[dir='rtl'] .rtl\:-mt-3\/6{margin-top:-50% !important}[dir='rtl'] .rtl\:-mr-3\/6{margin-right:-50% !important}[dir='rtl'] .rtl\:-mb-3\/6{margin-bottom:-50% !important}[dir='rtl'] .rtl\:-ml-3\/6{margin-left:-50% !important}[dir='rtl'] .rtl\:-mt-4\/6{margin-top:-66.66667% !important}[dir='rtl'] .rtl\:-mr-4\/6{margin-right:-66.66667% !important}[dir='rtl'] .rtl\:-mb-4\/6{margin-bottom:-66.66667% !important}[dir='rtl'] .rtl\:-ml-4\/6{margin-left:-66.66667% !important}[dir='rtl'] .rtl\:-mt-5\/6{margin-top:-83.33333% !important}[dir='rtl'] .rtl\:-mr-5\/6{margin-right:-83.33333% !important}[dir='rtl'] .rtl\:-mb-5\/6{margin-bottom:-83.33333% !important}[dir='rtl'] .rtl\:-ml-5\/6{margin-left:-83.33333% !important}[dir='rtl'] .rtl\:-mt-1\/12{margin-top:-8.33333% !important}[dir='rtl'] .rtl\:-mr-1\/12{margin-right:-8.33333% !important}[dir='rtl'] .rtl\:-mb-1\/12{margin-bottom:-8.33333% !important}[dir='rtl'] .rtl\:-ml-1\/12{margin-left:-8.33333% !important}[dir='rtl'] .rtl\:-mt-2\/12{margin-top:-16.66667% !important}[dir='rtl'] .rtl\:-mr-2\/12{margin-right:-16.66667% !important}[dir='rtl'] .rtl\:-mb-2\/12{margin-bottom:-16.66667% !important}[dir='rtl'] .rtl\:-ml-2\/12{margin-left:-16.66667% !important}[dir='rtl'] .rtl\:-mt-3\/12{margin-top:-25% !important}[dir='rtl'] .rtl\:-mr-3\/12{margin-right:-25% !important}[dir='rtl'] .rtl\:-mb-3\/12{margin-bottom:-25% !important}[dir='rtl'] .rtl\:-ml-3\/12{margin-left:-25% !important}[dir='rtl'] .rtl\:-mt-4\/12{margin-top:-33.33333% !important}[dir='rtl'] .rtl\:-mr-4\/12{margin-right:-33.33333% !important}[dir='rtl'] .rtl\:-mb-4\/12{margin-bottom:-33.33333% !important}[dir='rtl'] .rtl\:-ml-4\/12{margin-left:-33.33333% !important}[dir='rtl'] .rtl\:-mt-5\/12{margin-top:-41.66667% !important}[dir='rtl'] .rtl\:-mr-5\/12{margin-right:-41.66667% !important}[dir='rtl'] .rtl\:-mb-5\/12{margin-bottom:-41.66667% !important}[dir='rtl'] .rtl\:-ml-5\/12{margin-left:-41.66667% !important}[dir='rtl'] .rtl\:-mt-6\/12{margin-top:-50% !important}[dir='rtl'] .rtl\:-mr-6\/12{margin-right:-50% !important}[dir='rtl'] .rtl\:-mb-6\/12{margin-bottom:-50% !important}[dir='rtl'] .rtl\:-ml-6\/12{margin-left:-50% !important}[dir='rtl'] .rtl\:-mt-7\/12{margin-top:-58.33333% !important}[dir='rtl'] .rtl\:-mr-7\/12{margin-right:-58.33333% !important}[dir='rtl'] .rtl\:-mb-7\/12{margin-bottom:-58.33333% !important}[dir='rtl'] .rtl\:-ml-7\/12{margin-left:-58.33333% !important}[dir='rtl'] .rtl\:-mt-8\/12{margin-top:-66.66667% !important}[dir='rtl'] .rtl\:-mr-8\/12{margin-right:-66.66667% !important}[dir='rtl'] .rtl\:-mb-8\/12{margin-bottom:-66.66667% !important}[dir='rtl'] .rtl\:-ml-8\/12{margin-left:-66.66667% !important}[dir='rtl'] .rtl\:-mt-9\/12{margin-top:-75% !important}[dir='rtl'] .rtl\:-mr-9\/12{margin-right:-75% !important}[dir='rtl'] .rtl\:-mb-9\/12{margin-bottom:-75% !important}[dir='rtl'] .rtl\:-ml-9\/12{margin-left:-75% !important}[dir='rtl'] .rtl\:-mt-10\/12{margin-top:-83.33333% !important}[dir='rtl'] .rtl\:-mr-10\/12{margin-right:-83.33333% !important}[dir='rtl'] .rtl\:-mb-10\/12{margin-bottom:-83.33333% !important}[dir='rtl'] .rtl\:-ml-10\/12{margin-left:-83.33333% !important}[dir='rtl'] .rtl\:-mt-11\/12{margin-top:-91.66667% !important}[dir='rtl'] .rtl\:-mr-11\/12{margin-right:-91.66667% !important}[dir='rtl'] .rtl\:-mb-11\/12{margin-bottom:-91.66667% !important}[dir='rtl'] .rtl\:-ml-11\/12{margin-left:-91.66667% !important}[dir='rtl'] .rtl\:-mt-full{margin-top:-100% !important}[dir='rtl'] .rtl\:-mr-full{margin-right:-100% !important}[dir='rtl'] .rtl\:-mb-full{margin-bottom:-100% !important}[dir='rtl'] .rtl\:-ml-full{margin-left:-100% !important}.max-h-0{max-height:0 !important}.max-h-1{max-height:.25rem !important}.max-h-2{max-height:.5rem !important}.max-h-3{max-height:.75rem !important}.max-h-4{max-height:1rem !important}.max-h-5{max-height:1.25rem !important}.max-h-6{max-height:1.5rem !important}.max-h-7{max-height:1.75rem !important}.max-h-8{max-height:2rem !important}.max-h-9{max-height:2.25rem !important}.max-h-10{max-height:2.5rem !important}.max-h-11{max-height:2.75rem !important}.max-h-12{max-height:3rem !important}.max-h-13{max-height:3.25rem !important}.max-h-14{max-height:3.5rem !important}.max-h-15{max-height:3.75rem !important}.max-h-16{max-height:4rem !important}.max-h-20{max-height:5rem !important}.max-h-24{max-height:6rem !important}.max-h-28{max-height:7rem !important}.max-h-32{max-height:8rem !important}.max-h-36{max-height:9rem !important}.max-h-40{max-height:10rem !important}.max-h-48{max-height:12rem !important}.max-h-56{max-height:14rem !important}.max-h-60{max-height:15rem !important}.max-h-64{max-height:16rem !important}.max-h-72{max-height:18rem !important}.max-h-80{max-height:20rem !important}.max-h-96{max-height:24rem !important}.max-h-screen{max-height:100vh !important}.max-h-px{max-height:1px !important}.max-h-0\.5{max-height:.125rem !important}.max-h-1\.5{max-height:.375rem !important}.max-h-2\.5{max-height:.625rem !important}.max-h-3\.5{max-height:.875rem !important}.max-h-1\/2{max-height:50% !important}.max-h-1\/3{max-height:33.333333% !important}.max-h-2\/3{max-height:66.666667% !important}.max-h-1\/4{max-height:25% !important}.max-h-2\/4{max-height:50% !important}.max-h-3\/4{max-height:75% !important}.max-h-1\/5{max-height:20% !important}.max-h-2\/5{max-height:40% !important}.max-h-3\/5{max-height:60% !important}.max-h-4\/5{max-height:80% !important}.max-h-1\/6{max-height:16.666667% !important}.max-h-2\/6{max-height:33.333333% !important}.max-h-3\/6{max-height:50% !important}.max-h-4\/6{max-height:66.666667% !important}.max-h-5\/6{max-height:83.333333% !important}.max-h-1\/12{max-height:8.333333% !important}.max-h-2\/12{max-height:16.666667% !important}.max-h-3\/12{max-height:25% !important}.max-h-4\/12{max-height:33.333333% !important}.max-h-5\/12{max-height:41.666667% !important}.max-h-6\/12{max-height:50% !important}.max-h-7\/12{max-height:58.333333% !important}.max-h-8\/12{max-height:66.666667% !important}.max-h-9\/12{max-height:75% !important}.max-h-10\/12{max-height:83.333333% !important}.max-h-11\/12{max-height:91.666667% !important}.max-h-full{max-height:100% !important}.max-h-6xl{max-height:6rem !important}.max-w-none{max-width:none !important}.max-w-xs{max-width:20rem !important}.max-w-sm{max-width:24rem !important}.max-w-md{max-width:28rem !important}.max-w-lg{max-width:32rem !important}.max-w-xl{max-width:36rem !important}.max-w-2xl{max-width:42rem !important}.max-w-3xl{max-width:48rem !important}.max-w-4xl{max-width:56rem !important}.max-w-5xl{max-width:64rem !important}.max-w-6xl{max-width:72rem !important}.max-w-7xl{max-width:80rem !important}.max-w-full{max-width:100% !important}.max-w-screen-sm{max-width:600px !important}.max-w-screen-md{max-width:1024px !important}.max-w-screen-lg{max-width:1280px !important}.max-w-screen-xl{max-width:1536px !important}.max-w-screen-2xl{max-width:1400px !important}.max-w-screen-3xl{max-width:1800px !important}.max-w-screen-4xl{max-width:2200px !important}.min-h-0{min-height:0 !important}.min-h-full{min-height:100% !important}.min-h-screen{min-height:100vh !important}.min-h-half{min-height:50vh !important}.min-w-0{min-width:0 !important}.min-w-full{min-width:100% !important}.object-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-none{-o-object-fit:none !important;object-fit:none !important}.object-scale-down{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-bottom{-o-object-position:bottom !important;object-position:bottom !important}.object-center{-o-object-position:center !important;object-position:center !important}.object-left{-o-object-position:left !important;object-position:left !important}.object-left-bottom{-o-object-position:left bottom !important;object-position:left bottom !important}.object-left-top{-o-object-position:left top !important;object-position:left top !important}.object-right{-o-object-position:right !important;object-position:right !important}.object-right-bottom{-o-object-position:right bottom !important;object-position:right bottom !important}.object-right-top{-o-object-position:right top !important;object-position:right top !important}.object-top{-o-object-position:top !important;object-position:top !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.hover\:opacity-0:hover{opacity:0 !important}.hover\:opacity-25:hover{opacity:.25 !important}.hover\:opacity-50:hover{opacity:.5 !important}.hover\:opacity-75:hover{opacity:.75 !important}.hover\:opacity-100:hover{opacity:1 !important}.focus\:opacity-0:focus{opacity:0 !important}.focus\:opacity-25:focus{opacity:.25 !important}.focus\:opacity-50:focus{opacity:.5 !important}.focus\:opacity-75:focus{opacity:.75 !important}.focus\:opacity-100:focus{opacity:1 !important}.outline-none{outline:0 !important}.focus\:outline-none:focus{outline:0 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.overflow-x-auto{overflow-x:auto !important}.overflow-y-auto{overflow-y:auto !important}.overflow-x-hidden{overflow-x:hidden !important}.overflow-y-hidden{overflow-y:hidden !important}.overflow-x-visible{overflow-x:visible !important}.overflow-y-visible{overflow-y:visible !important}.overflow-x-scroll{overflow-x:scroll !important}.overflow-y-scroll{overflow-y:scroll !important}.scrolling-touch{-webkit-overflow-scrolling:touch !important}.scrolling-auto{-webkit-overflow-scrolling:auto !important}.overscroll-auto{-ms-scroll-chaining:chained !important;overscroll-behavior:auto !important}.overscroll-contain{-ms-scroll-chaining:none !important;overscroll-behavior:contain !important}.overscroll-none{-ms-scroll-chaining:none !important;overscroll-behavior:none !important}.overscroll-y-auto{overscroll-behavior-y:auto !important}.overscroll-y-contain{overscroll-behavior-y:contain !important}.overscroll-y-none{overscroll-behavior-y:none !important}.overscroll-x-auto{overscroll-behavior-x:auto !important}.overscroll-x-contain{overscroll-behavior-x:contain !important}.overscroll-x-none{overscroll-behavior-x:none !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:.75rem !important}.p-4{padding:1rem !important}.p-5{padding:1.25rem !important}.p-6{padding:1.5rem !important}.p-7{padding:1.75rem !important}.p-8{padding:2rem !important}.p-9{padding:2.25rem !important}.p-10{padding:2.5rem !important}.p-11{padding:2.75rem !important}.p-12{padding:3rem !important}.p-13{padding:3.25rem !important}.p-14{padding:3.5rem !important}.p-15{padding:3.75rem !important}.p-16{padding:4rem !important}.p-20{padding:5rem !important}.p-24{padding:6rem !important}.p-28{padding:7rem !important}.p-32{padding:8rem !important}.p-36{padding:9rem !important}.p-40{padding:10rem !important}.p-48{padding:12rem !important}.p-56{padding:14rem !important}.p-60{padding:15rem !important}.p-64{padding:16rem !important}.p-72{padding:18rem !important}.p-80{padding:20rem !important}.p-96{padding:24rem !important}.p-px{padding:1px !important}.p-0\.5{padding:.125rem !important}.p-1\.5{padding:.375rem !important}.p-2\.5{padding:.625rem !important}.p-3\.5{padding:.875rem !important}.p-1\/2{padding:50% !important}.p-1\/3{padding:33.333333% !important}.p-2\/3{padding:66.666667% !important}.p-1\/4{padding:25% !important}.p-2\/4{padding:50% !important}.p-3\/4{padding:75% !important}.p-1\/5{padding:20% !important}.p-2\/5{padding:40% !important}.p-3\/5{padding:60% !important}.p-4\/5{padding:80% !important}.p-1\/6{padding:16.666667% !important}.p-2\/6{padding:33.333333% !important}.p-3\/6{padding:50% !important}.p-4\/6{padding:66.666667% !important}.p-5\/6{padding:83.333333% !important}.p-1\/12{padding:8.333333% !important}.p-2\/12{padding:16.666667% !important}.p-3\/12{padding:25% !important}.p-4\/12{padding:33.333333% !important}.p-5\/12{padding:41.666667% !important}.p-6\/12{padding:50% !important}.p-7\/12{padding:58.333333% !important}.p-8\/12{padding:66.666667% !important}.p-9\/12{padding:75% !important}.p-10\/12{padding:83.333333% !important}.p-11\/12{padding:91.666667% !important}.p-full{padding:100% !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.px-5{padding-left:1.25rem !important;padding-right:1.25rem !important}.py-6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.px-6{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.px-7{padding-left:1.75rem !important;padding-right:1.75rem !important}.py-8{padding-top:2rem !important;padding-bottom:2rem !important}.px-8{padding-left:2rem !important;padding-right:2rem !important}.py-9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.px-9{padding-left:2.25rem !important;padding-right:2.25rem !important}.py-10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.px-10{padding-left:2.5rem !important;padding-right:2.5rem !important}.py-11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.px-11{padding-left:2.75rem !important;padding-right:2.75rem !important}.py-12{padding-top:3rem !important;padding-bottom:3rem !important}.px-12{padding-left:3rem !important;padding-right:3rem !important}.py-13{padding-top:3.25rem !important;padding-bottom:3.25rem !important}.px-13{padding-left:3.25rem !important;padding-right:3.25rem !important}.py-14{padding-top:3.5rem !important;padding-bottom:3.5rem !important}.px-14{padding-left:3.5rem !important;padding-right:3.5rem !important}.py-15{padding-top:3.75rem !important;padding-bottom:3.75rem !important}.px-15{padding-left:3.75rem !important;padding-right:3.75rem !important}.py-16{padding-top:4rem !important;padding-bottom:4rem !important}.px-16{padding-left:4rem !important;padding-right:4rem !important}.py-20{padding-top:5rem !important;padding-bottom:5rem !important}.px-20{padding-left:5rem !important;padding-right:5rem !important}.py-24{padding-top:6rem !important;padding-bottom:6rem !important}.px-24{padding-left:6rem !important;padding-right:6rem !important}.py-28{padding-top:7rem !important;padding-bottom:7rem !important}.px-28{padding-left:7rem !important;padding-right:7rem !important}.py-32{padding-top:8rem !important;padding-bottom:8rem !important}.px-32{padding-left:8rem !important;padding-right:8rem !important}.py-36{padding-top:9rem !important;padding-bottom:9rem !important}.px-36{padding-left:9rem !important;padding-right:9rem !important}.py-40{padding-top:10rem !important;padding-bottom:10rem !important}.px-40{padding-left:10rem !important;padding-right:10rem !important}.py-48{padding-top:12rem !important;padding-bottom:12rem !important}.px-48{padding-left:12rem !important;padding-right:12rem !important}.py-56{padding-top:14rem !important;padding-bottom:14rem !important}.px-56{padding-left:14rem !important;padding-right:14rem !important}.py-60{padding-top:15rem !important;padding-bottom:15rem !important}.px-60{padding-left:15rem !important;padding-right:15rem !important}.py-64{padding-top:16rem !important;padding-bottom:16rem !important}.px-64{padding-left:16rem !important;padding-right:16rem !important}.py-72{padding-top:18rem !important;padding-bottom:18rem !important}.px-72{padding-left:18rem !important;padding-right:18rem !important}.py-80{padding-top:20rem !important;padding-bottom:20rem !important}.px-80{padding-left:20rem !important;padding-right:20rem !important}.py-96{padding-top:24rem !important;padding-bottom:24rem !important}.px-96{padding-left:24rem !important;padding-right:24rem !important}.py-px{padding-top:1px !important;padding-bottom:1px !important}.px-px{padding-left:1px !important;padding-right:1px !important}.py-0\.5{padding-top:.125rem !important;padding-bottom:.125rem !important}.px-0\.5{padding-left:.125rem !important;padding-right:.125rem !important}.py-1\.5{padding-top:.375rem !important;padding-bottom:.375rem !important}.px-1\.5{padding-left:.375rem !important;padding-right:.375rem !important}.py-2\.5{padding-top:.625rem !important;padding-bottom:.625rem !important}.px-2\.5{padding-left:.625rem !important;padding-right:.625rem !important}.py-3\.5{padding-top:.875rem !important;padding-bottom:.875rem !important}.px-3\.5{padding-left:.875rem !important;padding-right:.875rem !important}.py-1\/2{padding-top:50% !important;padding-bottom:50% !important}.px-1\/2{padding-left:50% !important;padding-right:50% !important}.py-1\/3{padding-top:33.333333% !important;padding-bottom:33.333333% !important}.px-1\/3{padding-left:33.333333% !important;padding-right:33.333333% !important}.py-2\/3{padding-top:66.666667% !important;padding-bottom:66.666667% !important}.px-2\/3{padding-left:66.666667% !important;padding-right:66.666667% !important}.py-1\/4{padding-top:25% !important;padding-bottom:25% !important}.px-1\/4{padding-left:25% !important;padding-right:25% !important}.py-2\/4{padding-top:50% !important;padding-bottom:50% !important}.px-2\/4{padding-left:50% !important;padding-right:50% !important}.py-3\/4{padding-top:75% !important;padding-bottom:75% !important}.px-3\/4{padding-left:75% !important;padding-right:75% !important}.py-1\/5{padding-top:20% !important;padding-bottom:20% !important}.px-1\/5{padding-left:20% !important;padding-right:20% !important}.py-2\/5{padding-top:40% !important;padding-bottom:40% !important}.px-2\/5{padding-left:40% !important;padding-right:40% !important}.py-3\/5{padding-top:60% !important;padding-bottom:60% !important}.px-3\/5{padding-left:60% !important;padding-right:60% !important}.py-4\/5{padding-top:80% !important;padding-bottom:80% !important}.px-4\/5{padding-left:80% !important;padding-right:80% !important}.py-1\/6{padding-top:16.666667% !important;padding-bottom:16.666667% !important}.px-1\/6{padding-left:16.666667% !important;padding-right:16.666667% !important}.py-2\/6{padding-top:33.333333% !important;padding-bottom:33.333333% !important}.px-2\/6{padding-left:33.333333% !important;padding-right:33.333333% !important}.py-3\/6{padding-top:50% !important;padding-bottom:50% !important}.px-3\/6{padding-left:50% !important;padding-right:50% !important}.py-4\/6{padding-top:66.666667% !important;padding-bottom:66.666667% !important}.px-4\/6{padding-left:66.666667% !important;padding-right:66.666667% !important}.py-5\/6{padding-top:83.333333% !important;padding-bottom:83.333333% !important}.px-5\/6{padding-left:83.333333% !important;padding-right:83.333333% !important}.py-1\/12{padding-top:8.333333% !important;padding-bottom:8.333333% !important}.px-1\/12{padding-left:8.333333% !important;padding-right:8.333333% !important}.py-2\/12{padding-top:16.666667% !important;padding-bottom:16.666667% !important}.px-2\/12{padding-left:16.666667% !important;padding-right:16.666667% !important}.py-3\/12{padding-top:25% !important;padding-bottom:25% !important}.px-3\/12{padding-left:25% !important;padding-right:25% !important}.py-4\/12{padding-top:33.333333% !important;padding-bottom:33.333333% !important}.px-4\/12{padding-left:33.333333% !important;padding-right:33.333333% !important}.py-5\/12{padding-top:41.666667% !important;padding-bottom:41.666667% !important}.px-5\/12{padding-left:41.666667% !important;padding-right:41.666667% !important}.py-6\/12{padding-top:50% !important;padding-bottom:50% !important}.px-6\/12{padding-left:50% !important;padding-right:50% !important}.py-7\/12{padding-top:58.333333% !important;padding-bottom:58.333333% !important}.px-7\/12{padding-left:58.333333% !important;padding-right:58.333333% !important}.py-8\/12{padding-top:66.666667% !important;padding-bottom:66.666667% !important}.px-8\/12{padding-left:66.666667% !important;padding-right:66.666667% !important}.py-9\/12{padding-top:75% !important;padding-bottom:75% !important}.px-9\/12{padding-left:75% !important;padding-right:75% !important}.py-10\/12{padding-top:83.333333% !important;padding-bottom:83.333333% !important}.px-10\/12{padding-left:83.333333% !important;padding-right:83.333333% !important}.py-11\/12{padding-top:91.666667% !important;padding-bottom:91.666667% !important}.px-11\/12{padding-left:91.666667% !important;padding-right:91.666667% !important}.py-full{padding-top:100% !important;padding-bottom:100% !important}.px-full{padding-left:100% !important;padding-right:100% !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.pt-5{padding-top:1.25rem !important}.pr-5{padding-right:1.25rem !important}.pb-5{padding-bottom:1.25rem !important}.pl-5{padding-left:1.25rem !important}.pt-6{padding-top:1.5rem !important}.pr-6{padding-right:1.5rem !important}.pb-6{padding-bottom:1.5rem !important}.pl-6{padding-left:1.5rem !important}.pt-7{padding-top:1.75rem !important}.pr-7{padding-right:1.75rem !important}.pb-7{padding-bottom:1.75rem !important}.pl-7{padding-left:1.75rem !important}.pt-8{padding-top:2rem !important}.pr-8{padding-right:2rem !important}.pb-8{padding-bottom:2rem !important}.pl-8{padding-left:2rem !important}.pt-9{padding-top:2.25rem !important}.pr-9{padding-right:2.25rem !important}.pb-9{padding-bottom:2.25rem !important}.pl-9{padding-left:2.25rem !important}.pt-10{padding-top:2.5rem !important}.pr-10{padding-right:2.5rem !important}.pb-10{padding-bottom:2.5rem !important}.pl-10{padding-left:2.5rem !important}.pt-11{padding-top:2.75rem !important}.pr-11{padding-right:2.75rem !important}.pb-11{padding-bottom:2.75rem !important}.pl-11{padding-left:2.75rem !important}.pt-12{padding-top:3rem !important}.pr-12{padding-right:3rem !important}.pb-12{padding-bottom:3rem !important}.pl-12{padding-left:3rem !important}.pt-13{padding-top:3.25rem !important}.pr-13{padding-right:3.25rem !important}.pb-13{padding-bottom:3.25rem !important}.pl-13{padding-left:3.25rem !important}.pt-14{padding-top:3.5rem !important}.pr-14{padding-right:3.5rem !important}.pb-14{padding-bottom:3.5rem !important}.pl-14{padding-left:3.5rem !important}.pt-15{padding-top:3.75rem !important}.pr-15{padding-right:3.75rem !important}.pb-15{padding-bottom:3.75rem !important}.pl-15{padding-left:3.75rem !important}.pt-16{padding-top:4rem !important}.pr-16{padding-right:4rem !important}.pb-16{padding-bottom:4rem !important}.pl-16{padding-left:4rem !important}.pt-20{padding-top:5rem !important}.pr-20{padding-right:5rem !important}.pb-20{padding-bottom:5rem !important}.pl-20{padding-left:5rem !important}.pt-24{padding-top:6rem !important}.pr-24{padding-right:6rem !important}.pb-24{padding-bottom:6rem !important}.pl-24{padding-left:6rem !important}.pt-28{padding-top:7rem !important}.pr-28{padding-right:7rem !important}.pb-28{padding-bottom:7rem !important}.pl-28{padding-left:7rem !important}.pt-32{padding-top:8rem !important}.pr-32{padding-right:8rem !important}.pb-32{padding-bottom:8rem !important}.pl-32{padding-left:8rem !important}.pt-36{padding-top:9rem !important}.pr-36{padding-right:9rem !important}.pb-36{padding-bottom:9rem !important}.pl-36{padding-left:9rem !important}.pt-40{padding-top:10rem !important}.pr-40{padding-right:10rem !important}.pb-40{padding-bottom:10rem !important}.pl-40{padding-left:10rem !important}.pt-48{padding-top:12rem !important}.pr-48{padding-right:12rem !important}.pb-48{padding-bottom:12rem !important}.pl-48{padding-left:12rem !important}.pt-56{padding-top:14rem !important}.pr-56{padding-right:14rem !important}.pb-56{padding-bottom:14rem !important}.pl-56{padding-left:14rem !important}.pt-60{padding-top:15rem !important}.pr-60{padding-right:15rem !important}.pb-60{padding-bottom:15rem !important}.pl-60{padding-left:15rem !important}.pt-64{padding-top:16rem !important}.pr-64{padding-right:16rem !important}.pb-64{padding-bottom:16rem !important}.pl-64{padding-left:16rem !important}.pt-72{padding-top:18rem !important}.pr-72{padding-right:18rem !important}.pb-72{padding-bottom:18rem !important}.pl-72{padding-left:18rem !important}.pt-80{padding-top:20rem !important}.pr-80{padding-right:20rem !important}.pb-80{padding-bottom:20rem !important}.pl-80{padding-left:20rem !important}.pt-96{padding-top:24rem !important}.pr-96{padding-right:24rem !important}.pb-96{padding-bottom:24rem !important}.pl-96{padding-left:24rem !important}.pt-px{padding-top:1px !important}.pr-px{padding-right:1px !important}.pb-px{padding-bottom:1px !important}.pl-px{padding-left:1px !important}.pt-0\.5{padding-top:.125rem !important}.pr-0\.5{padding-right:.125rem !important}.pb-0\.5{padding-bottom:.125rem !important}.pl-0\.5{padding-left:.125rem !important}.pt-1\.5{padding-top:.375rem !important}.pr-1\.5{padding-right:.375rem !important}.pb-1\.5{padding-bottom:.375rem !important}.pl-1\.5{padding-left:.375rem !important}.pt-2\.5{padding-top:.625rem !important}.pr-2\.5{padding-right:.625rem !important}.pb-2\.5{padding-bottom:.625rem !important}.pl-2\.5{padding-left:.625rem !important}.pt-3\.5{padding-top:.875rem !important}.pr-3\.5{padding-right:.875rem !important}.pb-3\.5{padding-bottom:.875rem !important}.pl-3\.5{padding-left:.875rem !important}.pt-1\/2{padding-top:50% !important}.pr-1\/2{padding-right:50% !important}.pb-1\/2{padding-bottom:50% !important}.pl-1\/2{padding-left:50% !important}.pt-1\/3{padding-top:33.333333% !important}.pr-1\/3{padding-right:33.333333% !important}.pb-1\/3{padding-bottom:33.333333% !important}.pl-1\/3{padding-left:33.333333% !important}.pt-2\/3{padding-top:66.666667% !important}.pr-2\/3{padding-right:66.666667% !important}.pb-2\/3{padding-bottom:66.666667% !important}.pl-2\/3{padding-left:66.666667% !important}.pt-1\/4{padding-top:25% !important}.pr-1\/4{padding-right:25% !important}.pb-1\/4{padding-bottom:25% !important}.pl-1\/4{padding-left:25% !important}.pt-2\/4{padding-top:50% !important}.pr-2\/4{padding-right:50% !important}.pb-2\/4{padding-bottom:50% !important}.pl-2\/4{padding-left:50% !important}.pt-3\/4{padding-top:75% !important}.pr-3\/4{padding-right:75% !important}.pb-3\/4{padding-bottom:75% !important}.pl-3\/4{padding-left:75% !important}.pt-1\/5{padding-top:20% !important}.pr-1\/5{padding-right:20% !important}.pb-1\/5{padding-bottom:20% !important}.pl-1\/5{padding-left:20% !important}.pt-2\/5{padding-top:40% !important}.pr-2\/5{padding-right:40% !important}.pb-2\/5{padding-bottom:40% !important}.pl-2\/5{padding-left:40% !important}.pt-3\/5{padding-top:60% !important}.pr-3\/5{padding-right:60% !important}.pb-3\/5{padding-bottom:60% !important}.pl-3\/5{padding-left:60% !important}.pt-4\/5{padding-top:80% !important}.pr-4\/5{padding-right:80% !important}.pb-4\/5{padding-bottom:80% !important}.pl-4\/5{padding-left:80% !important}.pt-1\/6{padding-top:16.666667% !important}.pr-1\/6{padding-right:16.666667% !important}.pb-1\/6{padding-bottom:16.666667% !important}.pl-1\/6{padding-left:16.666667% !important}.pt-2\/6{padding-top:33.333333% !important}.pr-2\/6{padding-right:33.333333% !important}.pb-2\/6{padding-bottom:33.333333% !important}.pl-2\/6{padding-left:33.333333% !important}.pt-3\/6{padding-top:50% !important}.pr-3\/6{padding-right:50% !important}.pb-3\/6{padding-bottom:50% !important}.pl-3\/6{padding-left:50% !important}.pt-4\/6{padding-top:66.666667% !important}.pr-4\/6{padding-right:66.666667% !important}.pb-4\/6{padding-bottom:66.666667% !important}.pl-4\/6{padding-left:66.666667% !important}.pt-5\/6{padding-top:83.333333% !important}.pr-5\/6{padding-right:83.333333% !important}.pb-5\/6{padding-bottom:83.333333% !important}.pl-5\/6{padding-left:83.333333% !important}.pt-1\/12{padding-top:8.333333% !important}.pr-1\/12{padding-right:8.333333% !important}.pb-1\/12{padding-bottom:8.333333% !important}.pl-1\/12{padding-left:8.333333% !important}.pt-2\/12{padding-top:16.666667% !important}.pr-2\/12{padding-right:16.666667% !important}.pb-2\/12{padding-bottom:16.666667% !important}.pl-2\/12{padding-left:16.666667% !important}.pt-3\/12{padding-top:25% !important}.pr-3\/12{padding-right:25% !important}.pb-3\/12{padding-bottom:25% !important}.pl-3\/12{padding-left:25% !important}.pt-4\/12{padding-top:33.333333% !important}.pr-4\/12{padding-right:33.333333% !important}.pb-4\/12{padding-bottom:33.333333% !important}.pl-4\/12{padding-left:33.333333% !important}.pt-5\/12{padding-top:41.666667% !important}.pr-5\/12{padding-right:41.666667% !important}.pb-5\/12{padding-bottom:41.666667% !important}.pl-5\/12{padding-left:41.666667% !important}.pt-6\/12{padding-top:50% !important}.pr-6\/12{padding-right:50% !important}.pb-6\/12{padding-bottom:50% !important}.pl-6\/12{padding-left:50% !important}.pt-7\/12{padding-top:58.333333% !important}.pr-7\/12{padding-right:58.333333% !important}.pb-7\/12{padding-bottom:58.333333% !important}.pl-7\/12{padding-left:58.333333% !important}.pt-8\/12{padding-top:66.666667% !important}.pr-8\/12{padding-right:66.666667% !important}.pb-8\/12{padding-bottom:66.666667% !important}.pl-8\/12{padding-left:66.666667% !important}.pt-9\/12{padding-top:75% !important}.pr-9\/12{padding-right:75% !important}.pb-9\/12{padding-bottom:75% !important}.pl-9\/12{padding-left:75% !important}.pt-10\/12{padding-top:83.333333% !important}.pr-10\/12{padding-right:83.333333% !important}.pb-10\/12{padding-bottom:83.333333% !important}.pl-10\/12{padding-left:83.333333% !important}.pt-11\/12{padding-top:91.666667% !important}.pr-11\/12{padding-right:91.666667% !important}.pb-11\/12{padding-bottom:91.666667% !important}.pl-11\/12{padding-left:91.666667% !important}.pt-full{padding-top:100% !important}.pr-full{padding-right:100% !important}.pb-full{padding-bottom:100% !important}.pl-full{padding-left:100% !important}[dir='ltr'] .ltr\:p-0{padding:0 !important}[dir='ltr'] .ltr\:p-1{padding:.25rem !important}[dir='ltr'] .ltr\:p-2{padding:.5rem !important}[dir='ltr'] .ltr\:p-3{padding:.75rem !important}[dir='ltr'] .ltr\:p-4{padding:1rem !important}[dir='ltr'] .ltr\:p-5{padding:1.25rem !important}[dir='ltr'] .ltr\:p-6{padding:1.5rem !important}[dir='ltr'] .ltr\:p-7{padding:1.75rem !important}[dir='ltr'] .ltr\:p-8{padding:2rem !important}[dir='ltr'] .ltr\:p-9{padding:2.25rem !important}[dir='ltr'] .ltr\:p-10{padding:2.5rem !important}[dir='ltr'] .ltr\:p-11{padding:2.75rem !important}[dir='ltr'] .ltr\:p-12{padding:3rem !important}[dir='ltr'] .ltr\:p-13{padding:3.25rem !important}[dir='ltr'] .ltr\:p-14{padding:3.5rem !important}[dir='ltr'] .ltr\:p-15{padding:3.75rem !important}[dir='ltr'] .ltr\:p-16{padding:4rem !important}[dir='ltr'] .ltr\:p-20{padding:5rem !important}[dir='ltr'] .ltr\:p-24{padding:6rem !important}[dir='ltr'] .ltr\:p-28{padding:7rem !important}[dir='ltr'] .ltr\:p-32{padding:8rem !important}[dir='ltr'] .ltr\:p-36{padding:9rem !important}[dir='ltr'] .ltr\:p-40{padding:10rem !important}[dir='ltr'] .ltr\:p-48{padding:12rem !important}[dir='ltr'] .ltr\:p-56{padding:14rem !important}[dir='ltr'] .ltr\:p-60{padding:15rem !important}[dir='ltr'] .ltr\:p-64{padding:16rem !important}[dir='ltr'] .ltr\:p-72{padding:18rem !important}[dir='ltr'] .ltr\:p-80{padding:20rem !important}[dir='ltr'] .ltr\:p-96{padding:24rem !important}[dir='ltr'] .ltr\:p-px{padding:1px !important}[dir='ltr'] .ltr\:p-0\.5{padding:.125rem !important}[dir='ltr'] .ltr\:p-1\.5{padding:.375rem !important}[dir='ltr'] .ltr\:p-2\.5{padding:.625rem !important}[dir='ltr'] .ltr\:p-3\.5{padding:.875rem !important}[dir='ltr'] .ltr\:p-1\/2{padding:50% !important}[dir='ltr'] .ltr\:p-1\/3{padding:33.333333% !important}[dir='ltr'] .ltr\:p-2\/3{padding:66.666667% !important}[dir='ltr'] .ltr\:p-1\/4{padding:25% !important}[dir='ltr'] .ltr\:p-2\/4{padding:50% !important}[dir='ltr'] .ltr\:p-3\/4{padding:75% !important}[dir='ltr'] .ltr\:p-1\/5{padding:20% !important}[dir='ltr'] .ltr\:p-2\/5{padding:40% !important}[dir='ltr'] .ltr\:p-3\/5{padding:60% !important}[dir='ltr'] .ltr\:p-4\/5{padding:80% !important}[dir='ltr'] .ltr\:p-1\/6{padding:16.666667% !important}[dir='ltr'] .ltr\:p-2\/6{padding:33.333333% !important}[dir='ltr'] .ltr\:p-3\/6{padding:50% !important}[dir='ltr'] .ltr\:p-4\/6{padding:66.666667% !important}[dir='ltr'] .ltr\:p-5\/6{padding:83.333333% !important}[dir='ltr'] .ltr\:p-1\/12{padding:8.333333% !important}[dir='ltr'] .ltr\:p-2\/12{padding:16.666667% !important}[dir='ltr'] .ltr\:p-3\/12{padding:25% !important}[dir='ltr'] .ltr\:p-4\/12{padding:33.333333% !important}[dir='ltr'] .ltr\:p-5\/12{padding:41.666667% !important}[dir='ltr'] .ltr\:p-6\/12{padding:50% !important}[dir='ltr'] .ltr\:p-7\/12{padding:58.333333% !important}[dir='ltr'] .ltr\:p-8\/12{padding:66.666667% !important}[dir='ltr'] .ltr\:p-9\/12{padding:75% !important}[dir='ltr'] .ltr\:p-10\/12{padding:83.333333% !important}[dir='ltr'] .ltr\:p-11\/12{padding:91.666667% !important}[dir='ltr'] .ltr\:p-full{padding:100% !important}[dir='ltr'] .ltr\:py-0{padding-top:0 !important;padding-bottom:0 !important}[dir='ltr'] .ltr\:px-0{padding-left:0 !important;padding-right:0 !important}[dir='ltr'] .ltr\:py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}[dir='ltr'] .ltr\:px-1{padding-left:.25rem !important;padding-right:.25rem !important}[dir='ltr'] .ltr\:py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}[dir='ltr'] .ltr\:px-2{padding-left:.5rem !important;padding-right:.5rem !important}[dir='ltr'] .ltr\:py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}[dir='ltr'] .ltr\:px-3{padding-left:.75rem !important;padding-right:.75rem !important}[dir='ltr'] .ltr\:py-4{padding-top:1rem !important;padding-bottom:1rem !important}[dir='ltr'] .ltr\:px-4{padding-left:1rem !important;padding-right:1rem !important}[dir='ltr'] .ltr\:py-5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}[dir='ltr'] .ltr\:px-5{padding-left:1.25rem !important;padding-right:1.25rem !important}[dir='ltr'] .ltr\:py-6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}[dir='ltr'] .ltr\:px-6{padding-left:1.5rem !important;padding-right:1.5rem !important}[dir='ltr'] .ltr\:py-7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}[dir='ltr'] .ltr\:px-7{padding-left:1.75rem !important;padding-right:1.75rem !important}[dir='ltr'] .ltr\:py-8{padding-top:2rem !important;padding-bottom:2rem !important}[dir='ltr'] .ltr\:px-8{padding-left:2rem !important;padding-right:2rem !important}[dir='ltr'] .ltr\:py-9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}[dir='ltr'] .ltr\:px-9{padding-left:2.25rem !important;padding-right:2.25rem !important}[dir='ltr'] .ltr\:py-10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}[dir='ltr'] .ltr\:px-10{padding-left:2.5rem !important;padding-right:2.5rem !important}[dir='ltr'] .ltr\:py-11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}[dir='ltr'] .ltr\:px-11{padding-left:2.75rem !important;padding-right:2.75rem !important}[dir='ltr'] .ltr\:py-12{padding-top:3rem !important;padding-bottom:3rem !important}[dir='ltr'] .ltr\:px-12{padding-left:3rem !important;padding-right:3rem !important}[dir='ltr'] .ltr\:py-13{padding-top:3.25rem !important;padding-bottom:3.25rem !important}[dir='ltr'] .ltr\:px-13{padding-left:3.25rem !important;padding-right:3.25rem !important}[dir='ltr'] .ltr\:py-14{padding-top:3.5rem !important;padding-bottom:3.5rem !important}[dir='ltr'] .ltr\:px-14{padding-left:3.5rem !important;padding-right:3.5rem !important}[dir='ltr'] .ltr\:py-15{padding-top:3.75rem !important;padding-bottom:3.75rem !important}[dir='ltr'] .ltr\:px-15{padding-left:3.75rem !important;padding-right:3.75rem !important}[dir='ltr'] .ltr\:py-16{padding-top:4rem !important;padding-bottom:4rem !important}[dir='ltr'] .ltr\:px-16{padding-left:4rem !important;padding-right:4rem !important}[dir='ltr'] .ltr\:py-20{padding-top:5rem !important;padding-bottom:5rem !important}[dir='ltr'] .ltr\:px-20{padding-left:5rem !important;padding-right:5rem !important}[dir='ltr'] .ltr\:py-24{padding-top:6rem !important;padding-bottom:6rem !important}[dir='ltr'] .ltr\:px-24{padding-left:6rem !important;padding-right:6rem !important}[dir='ltr'] .ltr\:py-28{padding-top:7rem !important;padding-bottom:7rem !important}[dir='ltr'] .ltr\:px-28{padding-left:7rem !important;padding-right:7rem !important}[dir='ltr'] .ltr\:py-32{padding-top:8rem !important;padding-bottom:8rem !important}[dir='ltr'] .ltr\:px-32{padding-left:8rem !important;padding-right:8rem !important}[dir='ltr'] .ltr\:py-36{padding-top:9rem !important;padding-bottom:9rem !important}[dir='ltr'] .ltr\:px-36{padding-left:9rem !important;padding-right:9rem !important}[dir='ltr'] .ltr\:py-40{padding-top:10rem !important;padding-bottom:10rem !important}[dir='ltr'] .ltr\:px-40{padding-left:10rem !important;padding-right:10rem !important}[dir='ltr'] .ltr\:py-48{padding-top:12rem !important;padding-bottom:12rem !important}[dir='ltr'] .ltr\:px-48{padding-left:12rem !important;padding-right:12rem !important}[dir='ltr'] .ltr\:py-56{padding-top:14rem !important;padding-bottom:14rem !important}[dir='ltr'] .ltr\:px-56{padding-left:14rem !important;padding-right:14rem !important}[dir='ltr'] .ltr\:py-60{padding-top:15rem !important;padding-bottom:15rem !important}[dir='ltr'] .ltr\:px-60{padding-left:15rem !important;padding-right:15rem !important}[dir='ltr'] .ltr\:py-64{padding-top:16rem !important;padding-bottom:16rem !important}[dir='ltr'] .ltr\:px-64{padding-left:16rem !important;padding-right:16rem !important}[dir='ltr'] .ltr\:py-72{padding-top:18rem !important;padding-bottom:18rem !important}[dir='ltr'] .ltr\:px-72{padding-left:18rem !important;padding-right:18rem !important}[dir='ltr'] .ltr\:py-80{padding-top:20rem !important;padding-bottom:20rem !important}[dir='ltr'] .ltr\:px-80{padding-left:20rem !important;padding-right:20rem !important}[dir='ltr'] .ltr\:py-96{padding-top:24rem !important;padding-bottom:24rem !important}[dir='ltr'] .ltr\:px-96{padding-left:24rem !important;padding-right:24rem !important}[dir='ltr'] .ltr\:py-px{padding-top:1px !important;padding-bottom:1px !important}[dir='ltr'] .ltr\:px-px{padding-left:1px !important;padding-right:1px !important}[dir='ltr'] .ltr\:py-0\.5{padding-top:.125rem !important;padding-bottom:.125rem !important}[dir='ltr'] .ltr\:px-0\.5{padding-left:.125rem !important;padding-right:.125rem !important}[dir='ltr'] .ltr\:py-1\.5{padding-top:.375rem !important;padding-bottom:.375rem !important}[dir='ltr'] .ltr\:px-1\.5{padding-left:.375rem !important;padding-right:.375rem !important}[dir='ltr'] .ltr\:py-2\.5{padding-top:.625rem !important;padding-bottom:.625rem !important}[dir='ltr'] .ltr\:px-2\.5{padding-left:.625rem !important;padding-right:.625rem !important}[dir='ltr'] .ltr\:py-3\.5{padding-top:.875rem !important;padding-bottom:.875rem !important}[dir='ltr'] .ltr\:px-3\.5{padding-left:.875rem !important;padding-right:.875rem !important}[dir='ltr'] .ltr\:py-1\/2{padding-top:50% !important;padding-bottom:50% !important}[dir='ltr'] .ltr\:px-1\/2{padding-left:50% !important;padding-right:50% !important}[dir='ltr'] .ltr\:py-1\/3{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='ltr'] .ltr\:px-1\/3{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='ltr'] .ltr\:py-2\/3{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='ltr'] .ltr\:px-2\/3{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='ltr'] .ltr\:py-1\/4{padding-top:25% !important;padding-bottom:25% !important}[dir='ltr'] .ltr\:px-1\/4{padding-left:25% !important;padding-right:25% !important}[dir='ltr'] .ltr\:py-2\/4{padding-top:50% !important;padding-bottom:50% !important}[dir='ltr'] .ltr\:px-2\/4{padding-left:50% !important;padding-right:50% !important}[dir='ltr'] .ltr\:py-3\/4{padding-top:75% !important;padding-bottom:75% !important}[dir='ltr'] .ltr\:px-3\/4{padding-left:75% !important;padding-right:75% !important}[dir='ltr'] .ltr\:py-1\/5{padding-top:20% !important;padding-bottom:20% !important}[dir='ltr'] .ltr\:px-1\/5{padding-left:20% !important;padding-right:20% !important}[dir='ltr'] .ltr\:py-2\/5{padding-top:40% !important;padding-bottom:40% !important}[dir='ltr'] .ltr\:px-2\/5{padding-left:40% !important;padding-right:40% !important}[dir='ltr'] .ltr\:py-3\/5{padding-top:60% !important;padding-bottom:60% !important}[dir='ltr'] .ltr\:px-3\/5{padding-left:60% !important;padding-right:60% !important}[dir='ltr'] .ltr\:py-4\/5{padding-top:80% !important;padding-bottom:80% !important}[dir='ltr'] .ltr\:px-4\/5{padding-left:80% !important;padding-right:80% !important}[dir='ltr'] .ltr\:py-1\/6{padding-top:16.666667% !important;padding-bottom:16.666667% !important}[dir='ltr'] .ltr\:px-1\/6{padding-left:16.666667% !important;padding-right:16.666667% !important}[dir='ltr'] .ltr\:py-2\/6{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='ltr'] .ltr\:px-2\/6{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='ltr'] .ltr\:py-3\/6{padding-top:50% !important;padding-bottom:50% !important}[dir='ltr'] .ltr\:px-3\/6{padding-left:50% !important;padding-right:50% !important}[dir='ltr'] .ltr\:py-4\/6{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='ltr'] .ltr\:px-4\/6{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='ltr'] .ltr\:py-5\/6{padding-top:83.333333% !important;padding-bottom:83.333333% !important}[dir='ltr'] .ltr\:px-5\/6{padding-left:83.333333% !important;padding-right:83.333333% !important}[dir='ltr'] .ltr\:py-1\/12{padding-top:8.333333% !important;padding-bottom:8.333333% !important}[dir='ltr'] .ltr\:px-1\/12{padding-left:8.333333% !important;padding-right:8.333333% !important}[dir='ltr'] .ltr\:py-2\/12{padding-top:16.666667% !important;padding-bottom:16.666667% !important}[dir='ltr'] .ltr\:px-2\/12{padding-left:16.666667% !important;padding-right:16.666667% !important}[dir='ltr'] .ltr\:py-3\/12{padding-top:25% !important;padding-bottom:25% !important}[dir='ltr'] .ltr\:px-3\/12{padding-left:25% !important;padding-right:25% !important}[dir='ltr'] .ltr\:py-4\/12{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='ltr'] .ltr\:px-4\/12{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='ltr'] .ltr\:py-5\/12{padding-top:41.666667% !important;padding-bottom:41.666667% !important}[dir='ltr'] .ltr\:px-5\/12{padding-left:41.666667% !important;padding-right:41.666667% !important}[dir='ltr'] .ltr\:py-6\/12{padding-top:50% !important;padding-bottom:50% !important}[dir='ltr'] .ltr\:px-6\/12{padding-left:50% !important;padding-right:50% !important}[dir='ltr'] .ltr\:py-7\/12{padding-top:58.333333% !important;padding-bottom:58.333333% !important}[dir='ltr'] .ltr\:px-7\/12{padding-left:58.333333% !important;padding-right:58.333333% !important}[dir='ltr'] .ltr\:py-8\/12{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='ltr'] .ltr\:px-8\/12{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='ltr'] .ltr\:py-9\/12{padding-top:75% !important;padding-bottom:75% !important}[dir='ltr'] .ltr\:px-9\/12{padding-left:75% !important;padding-right:75% !important}[dir='ltr'] .ltr\:py-10\/12{padding-top:83.333333% !important;padding-bottom:83.333333% !important}[dir='ltr'] .ltr\:px-10\/12{padding-left:83.333333% !important;padding-right:83.333333% !important}[dir='ltr'] .ltr\:py-11\/12{padding-top:91.666667% !important;padding-bottom:91.666667% !important}[dir='ltr'] .ltr\:px-11\/12{padding-left:91.666667% !important;padding-right:91.666667% !important}[dir='ltr'] .ltr\:py-full{padding-top:100% !important;padding-bottom:100% !important}[dir='ltr'] .ltr\:px-full{padding-left:100% !important;padding-right:100% !important}[dir='ltr'] .ltr\:pt-0{padding-top:0 !important}[dir='ltr'] .ltr\:pr-0{padding-right:0 !important}[dir='ltr'] .ltr\:pb-0{padding-bottom:0 !important}[dir='ltr'] .ltr\:pl-0{padding-left:0 !important}[dir='ltr'] .ltr\:pt-1{padding-top:.25rem !important}[dir='ltr'] .ltr\:pr-1{padding-right:.25rem !important}[dir='ltr'] .ltr\:pb-1{padding-bottom:.25rem !important}[dir='ltr'] .ltr\:pl-1{padding-left:.25rem !important}[dir='ltr'] .ltr\:pt-2{padding-top:.5rem !important}[dir='ltr'] .ltr\:pr-2{padding-right:.5rem !important}[dir='ltr'] .ltr\:pb-2{padding-bottom:.5rem !important}[dir='ltr'] .ltr\:pl-2{padding-left:.5rem !important}[dir='ltr'] .ltr\:pt-3{padding-top:.75rem !important}[dir='ltr'] .ltr\:pr-3{padding-right:.75rem !important}[dir='ltr'] .ltr\:pb-3{padding-bottom:.75rem !important}[dir='ltr'] .ltr\:pl-3{padding-left:.75rem !important}[dir='ltr'] .ltr\:pt-4{padding-top:1rem !important}[dir='ltr'] .ltr\:pr-4{padding-right:1rem !important}[dir='ltr'] .ltr\:pb-4{padding-bottom:1rem !important}[dir='ltr'] .ltr\:pl-4{padding-left:1rem !important}[dir='ltr'] .ltr\:pt-5{padding-top:1.25rem !important}[dir='ltr'] .ltr\:pr-5{padding-right:1.25rem !important}[dir='ltr'] .ltr\:pb-5{padding-bottom:1.25rem !important}[dir='ltr'] .ltr\:pl-5{padding-left:1.25rem !important}[dir='ltr'] .ltr\:pt-6{padding-top:1.5rem !important}[dir='ltr'] .ltr\:pr-6{padding-right:1.5rem !important}[dir='ltr'] .ltr\:pb-6{padding-bottom:1.5rem !important}[dir='ltr'] .ltr\:pl-6{padding-left:1.5rem !important}[dir='ltr'] .ltr\:pt-7{padding-top:1.75rem !important}[dir='ltr'] .ltr\:pr-7{padding-right:1.75rem !important}[dir='ltr'] .ltr\:pb-7{padding-bottom:1.75rem !important}[dir='ltr'] .ltr\:pl-7{padding-left:1.75rem !important}[dir='ltr'] .ltr\:pt-8{padding-top:2rem !important}[dir='ltr'] .ltr\:pr-8{padding-right:2rem !important}[dir='ltr'] .ltr\:pb-8{padding-bottom:2rem !important}[dir='ltr'] .ltr\:pl-8{padding-left:2rem !important}[dir='ltr'] .ltr\:pt-9{padding-top:2.25rem !important}[dir='ltr'] .ltr\:pr-9{padding-right:2.25rem !important}[dir='ltr'] .ltr\:pb-9{padding-bottom:2.25rem !important}[dir='ltr'] .ltr\:pl-9{padding-left:2.25rem !important}[dir='ltr'] .ltr\:pt-10{padding-top:2.5rem !important}[dir='ltr'] .ltr\:pr-10{padding-right:2.5rem !important}[dir='ltr'] .ltr\:pb-10{padding-bottom:2.5rem !important}[dir='ltr'] .ltr\:pl-10{padding-left:2.5rem !important}[dir='ltr'] .ltr\:pt-11{padding-top:2.75rem !important}[dir='ltr'] .ltr\:pr-11{padding-right:2.75rem !important}[dir='ltr'] .ltr\:pb-11{padding-bottom:2.75rem !important}[dir='ltr'] .ltr\:pl-11{padding-left:2.75rem !important}[dir='ltr'] .ltr\:pt-12{padding-top:3rem !important}[dir='ltr'] .ltr\:pr-12{padding-right:3rem !important}[dir='ltr'] .ltr\:pb-12{padding-bottom:3rem !important}[dir='ltr'] .ltr\:pl-12{padding-left:3rem !important}[dir='ltr'] .ltr\:pt-13{padding-top:3.25rem !important}[dir='ltr'] .ltr\:pr-13{padding-right:3.25rem !important}[dir='ltr'] .ltr\:pb-13{padding-bottom:3.25rem !important}[dir='ltr'] .ltr\:pl-13{padding-left:3.25rem !important}[dir='ltr'] .ltr\:pt-14{padding-top:3.5rem !important}[dir='ltr'] .ltr\:pr-14{padding-right:3.5rem !important}[dir='ltr'] .ltr\:pb-14{padding-bottom:3.5rem !important}[dir='ltr'] .ltr\:pl-14{padding-left:3.5rem !important}[dir='ltr'] .ltr\:pt-15{padding-top:3.75rem !important}[dir='ltr'] .ltr\:pr-15{padding-right:3.75rem !important}[dir='ltr'] .ltr\:pb-15{padding-bottom:3.75rem !important}[dir='ltr'] .ltr\:pl-15{padding-left:3.75rem !important}[dir='ltr'] .ltr\:pt-16{padding-top:4rem !important}[dir='ltr'] .ltr\:pr-16{padding-right:4rem !important}[dir='ltr'] .ltr\:pb-16{padding-bottom:4rem !important}[dir='ltr'] .ltr\:pl-16{padding-left:4rem !important}[dir='ltr'] .ltr\:pt-20{padding-top:5rem !important}[dir='ltr'] .ltr\:pr-20{padding-right:5rem !important}[dir='ltr'] .ltr\:pb-20{padding-bottom:5rem !important}[dir='ltr'] .ltr\:pl-20{padding-left:5rem !important}[dir='ltr'] .ltr\:pt-24{padding-top:6rem !important}[dir='ltr'] .ltr\:pr-24{padding-right:6rem !important}[dir='ltr'] .ltr\:pb-24{padding-bottom:6rem !important}[dir='ltr'] .ltr\:pl-24{padding-left:6rem !important}[dir='ltr'] .ltr\:pt-28{padding-top:7rem !important}[dir='ltr'] .ltr\:pr-28{padding-right:7rem !important}[dir='ltr'] .ltr\:pb-28{padding-bottom:7rem !important}[dir='ltr'] .ltr\:pl-28{padding-left:7rem !important}[dir='ltr'] .ltr\:pt-32{padding-top:8rem !important}[dir='ltr'] .ltr\:pr-32{padding-right:8rem !important}[dir='ltr'] .ltr\:pb-32{padding-bottom:8rem !important}[dir='ltr'] .ltr\:pl-32{padding-left:8rem !important}[dir='ltr'] .ltr\:pt-36{padding-top:9rem !important}[dir='ltr'] .ltr\:pr-36{padding-right:9rem !important}[dir='ltr'] .ltr\:pb-36{padding-bottom:9rem !important}[dir='ltr'] .ltr\:pl-36{padding-left:9rem !important}[dir='ltr'] .ltr\:pt-40{padding-top:10rem !important}[dir='ltr'] .ltr\:pr-40{padding-right:10rem !important}[dir='ltr'] .ltr\:pb-40{padding-bottom:10rem !important}[dir='ltr'] .ltr\:pl-40{padding-left:10rem !important}[dir='ltr'] .ltr\:pt-48{padding-top:12rem !important}[dir='ltr'] .ltr\:pr-48{padding-right:12rem !important}[dir='ltr'] .ltr\:pb-48{padding-bottom:12rem !important}[dir='ltr'] .ltr\:pl-48{padding-left:12rem !important}[dir='ltr'] .ltr\:pt-56{padding-top:14rem !important}[dir='ltr'] .ltr\:pr-56{padding-right:14rem !important}[dir='ltr'] .ltr\:pb-56{padding-bottom:14rem !important}[dir='ltr'] .ltr\:pl-56{padding-left:14rem !important}[dir='ltr'] .ltr\:pt-60{padding-top:15rem !important}[dir='ltr'] .ltr\:pr-60{padding-right:15rem !important}[dir='ltr'] .ltr\:pb-60{padding-bottom:15rem !important}[dir='ltr'] .ltr\:pl-60{padding-left:15rem !important}[dir='ltr'] .ltr\:pt-64{padding-top:16rem !important}[dir='ltr'] .ltr\:pr-64{padding-right:16rem !important}[dir='ltr'] .ltr\:pb-64{padding-bottom:16rem !important}[dir='ltr'] .ltr\:pl-64{padding-left:16rem !important}[dir='ltr'] .ltr\:pt-72{padding-top:18rem !important}[dir='ltr'] .ltr\:pr-72{padding-right:18rem !important}[dir='ltr'] .ltr\:pb-72{padding-bottom:18rem !important}[dir='ltr'] .ltr\:pl-72{padding-left:18rem !important}[dir='ltr'] .ltr\:pt-80{padding-top:20rem !important}[dir='ltr'] .ltr\:pr-80{padding-right:20rem !important}[dir='ltr'] .ltr\:pb-80{padding-bottom:20rem !important}[dir='ltr'] .ltr\:pl-80{padding-left:20rem !important}[dir='ltr'] .ltr\:pt-96{padding-top:24rem !important}[dir='ltr'] .ltr\:pr-96{padding-right:24rem !important}[dir='ltr'] .ltr\:pb-96{padding-bottom:24rem !important}[dir='ltr'] .ltr\:pl-96{padding-left:24rem !important}[dir='ltr'] .ltr\:pt-px{padding-top:1px !important}[dir='ltr'] .ltr\:pr-px{padding-right:1px !important}[dir='ltr'] .ltr\:pb-px{padding-bottom:1px !important}[dir='ltr'] .ltr\:pl-px{padding-left:1px !important}[dir='ltr'] .ltr\:pt-0\.5{padding-top:.125rem !important}[dir='ltr'] .ltr\:pr-0\.5{padding-right:.125rem !important}[dir='ltr'] .ltr\:pb-0\.5{padding-bottom:.125rem !important}[dir='ltr'] .ltr\:pl-0\.5{padding-left:.125rem !important}[dir='ltr'] .ltr\:pt-1\.5{padding-top:.375rem !important}[dir='ltr'] .ltr\:pr-1\.5{padding-right:.375rem !important}[dir='ltr'] .ltr\:pb-1\.5{padding-bottom:.375rem !important}[dir='ltr'] .ltr\:pl-1\.5{padding-left:.375rem !important}[dir='ltr'] .ltr\:pt-2\.5{padding-top:.625rem !important}[dir='ltr'] .ltr\:pr-2\.5{padding-right:.625rem !important}[dir='ltr'] .ltr\:pb-2\.5{padding-bottom:.625rem !important}[dir='ltr'] .ltr\:pl-2\.5{padding-left:.625rem !important}[dir='ltr'] .ltr\:pt-3\.5{padding-top:.875rem !important}[dir='ltr'] .ltr\:pr-3\.5{padding-right:.875rem !important}[dir='ltr'] .ltr\:pb-3\.5{padding-bottom:.875rem !important}[dir='ltr'] .ltr\:pl-3\.5{padding-left:.875rem !important}[dir='ltr'] .ltr\:pt-1\/2{padding-top:50% !important}[dir='ltr'] .ltr\:pr-1\/2{padding-right:50% !important}[dir='ltr'] .ltr\:pb-1\/2{padding-bottom:50% !important}[dir='ltr'] .ltr\:pl-1\/2{padding-left:50% !important}[dir='ltr'] .ltr\:pt-1\/3{padding-top:33.333333% !important}[dir='ltr'] .ltr\:pr-1\/3{padding-right:33.333333% !important}[dir='ltr'] .ltr\:pb-1\/3{padding-bottom:33.333333% !important}[dir='ltr'] .ltr\:pl-1\/3{padding-left:33.333333% !important}[dir='ltr'] .ltr\:pt-2\/3{padding-top:66.666667% !important}[dir='ltr'] .ltr\:pr-2\/3{padding-right:66.666667% !important}[dir='ltr'] .ltr\:pb-2\/3{padding-bottom:66.666667% !important}[dir='ltr'] .ltr\:pl-2\/3{padding-left:66.666667% !important}[dir='ltr'] .ltr\:pt-1\/4{padding-top:25% !important}[dir='ltr'] .ltr\:pr-1\/4{padding-right:25% !important}[dir='ltr'] .ltr\:pb-1\/4{padding-bottom:25% !important}[dir='ltr'] .ltr\:pl-1\/4{padding-left:25% !important}[dir='ltr'] .ltr\:pt-2\/4{padding-top:50% !important}[dir='ltr'] .ltr\:pr-2\/4{padding-right:50% !important}[dir='ltr'] .ltr\:pb-2\/4{padding-bottom:50% !important}[dir='ltr'] .ltr\:pl-2\/4{padding-left:50% !important}[dir='ltr'] .ltr\:pt-3\/4{padding-top:75% !important}[dir='ltr'] .ltr\:pr-3\/4{padding-right:75% !important}[dir='ltr'] .ltr\:pb-3\/4{padding-bottom:75% !important}[dir='ltr'] .ltr\:pl-3\/4{padding-left:75% !important}[dir='ltr'] .ltr\:pt-1\/5{padding-top:20% !important}[dir='ltr'] .ltr\:pr-1\/5{padding-right:20% !important}[dir='ltr'] .ltr\:pb-1\/5{padding-bottom:20% !important}[dir='ltr'] .ltr\:pl-1\/5{padding-left:20% !important}[dir='ltr'] .ltr\:pt-2\/5{padding-top:40% !important}[dir='ltr'] .ltr\:pr-2\/5{padding-right:40% !important}[dir='ltr'] .ltr\:pb-2\/5{padding-bottom:40% !important}[dir='ltr'] .ltr\:pl-2\/5{padding-left:40% !important}[dir='ltr'] .ltr\:pt-3\/5{padding-top:60% !important}[dir='ltr'] .ltr\:pr-3\/5{padding-right:60% !important}[dir='ltr'] .ltr\:pb-3\/5{padding-bottom:60% !important}[dir='ltr'] .ltr\:pl-3\/5{padding-left:60% !important}[dir='ltr'] .ltr\:pt-4\/5{padding-top:80% !important}[dir='ltr'] .ltr\:pr-4\/5{padding-right:80% !important}[dir='ltr'] .ltr\:pb-4\/5{padding-bottom:80% !important}[dir='ltr'] .ltr\:pl-4\/5{padding-left:80% !important}[dir='ltr'] .ltr\:pt-1\/6{padding-top:16.666667% !important}[dir='ltr'] .ltr\:pr-1\/6{padding-right:16.666667% !important}[dir='ltr'] .ltr\:pb-1\/6{padding-bottom:16.666667% !important}[dir='ltr'] .ltr\:pl-1\/6{padding-left:16.666667% !important}[dir='ltr'] .ltr\:pt-2\/6{padding-top:33.333333% !important}[dir='ltr'] .ltr\:pr-2\/6{padding-right:33.333333% !important}[dir='ltr'] .ltr\:pb-2\/6{padding-bottom:33.333333% !important}[dir='ltr'] .ltr\:pl-2\/6{padding-left:33.333333% !important}[dir='ltr'] .ltr\:pt-3\/6{padding-top:50% !important}[dir='ltr'] .ltr\:pr-3\/6{padding-right:50% !important}[dir='ltr'] .ltr\:pb-3\/6{padding-bottom:50% !important}[dir='ltr'] .ltr\:pl-3\/6{padding-left:50% !important}[dir='ltr'] .ltr\:pt-4\/6{padding-top:66.666667% !important}[dir='ltr'] .ltr\:pr-4\/6{padding-right:66.666667% !important}[dir='ltr'] .ltr\:pb-4\/6{padding-bottom:66.666667% !important}[dir='ltr'] .ltr\:pl-4\/6{padding-left:66.666667% !important}[dir='ltr'] .ltr\:pt-5\/6{padding-top:83.333333% !important}[dir='ltr'] .ltr\:pr-5\/6{padding-right:83.333333% !important}[dir='ltr'] .ltr\:pb-5\/6{padding-bottom:83.333333% !important}[dir='ltr'] .ltr\:pl-5\/6{padding-left:83.333333% !important}[dir='ltr'] .ltr\:pt-1\/12{padding-top:8.333333% !important}[dir='ltr'] .ltr\:pr-1\/12{padding-right:8.333333% !important}[dir='ltr'] .ltr\:pb-1\/12{padding-bottom:8.333333% !important}[dir='ltr'] .ltr\:pl-1\/12{padding-left:8.333333% !important}[dir='ltr'] .ltr\:pt-2\/12{padding-top:16.666667% !important}[dir='ltr'] .ltr\:pr-2\/12{padding-right:16.666667% !important}[dir='ltr'] .ltr\:pb-2\/12{padding-bottom:16.666667% !important}[dir='ltr'] .ltr\:pl-2\/12{padding-left:16.666667% !important}[dir='ltr'] .ltr\:pt-3\/12{padding-top:25% !important}[dir='ltr'] .ltr\:pr-3\/12{padding-right:25% !important}[dir='ltr'] .ltr\:pb-3\/12{padding-bottom:25% !important}[dir='ltr'] .ltr\:pl-3\/12{padding-left:25% !important}[dir='ltr'] .ltr\:pt-4\/12{padding-top:33.333333% !important}[dir='ltr'] .ltr\:pr-4\/12{padding-right:33.333333% !important}[dir='ltr'] .ltr\:pb-4\/12{padding-bottom:33.333333% !important}[dir='ltr'] .ltr\:pl-4\/12{padding-left:33.333333% !important}[dir='ltr'] .ltr\:pt-5\/12{padding-top:41.666667% !important}[dir='ltr'] .ltr\:pr-5\/12{padding-right:41.666667% !important}[dir='ltr'] .ltr\:pb-5\/12{padding-bottom:41.666667% !important}[dir='ltr'] .ltr\:pl-5\/12{padding-left:41.666667% !important}[dir='ltr'] .ltr\:pt-6\/12{padding-top:50% !important}[dir='ltr'] .ltr\:pr-6\/12{padding-right:50% !important}[dir='ltr'] .ltr\:pb-6\/12{padding-bottom:50% !important}[dir='ltr'] .ltr\:pl-6\/12{padding-left:50% !important}[dir='ltr'] .ltr\:pt-7\/12{padding-top:58.333333% !important}[dir='ltr'] .ltr\:pr-7\/12{padding-right:58.333333% !important}[dir='ltr'] .ltr\:pb-7\/12{padding-bottom:58.333333% !important}[dir='ltr'] .ltr\:pl-7\/12{padding-left:58.333333% !important}[dir='ltr'] .ltr\:pt-8\/12{padding-top:66.666667% !important}[dir='ltr'] .ltr\:pr-8\/12{padding-right:66.666667% !important}[dir='ltr'] .ltr\:pb-8\/12{padding-bottom:66.666667% !important}[dir='ltr'] .ltr\:pl-8\/12{padding-left:66.666667% !important}[dir='ltr'] .ltr\:pt-9\/12{padding-top:75% !important}[dir='ltr'] .ltr\:pr-9\/12{padding-right:75% !important}[dir='ltr'] .ltr\:pb-9\/12{padding-bottom:75% !important}[dir='ltr'] .ltr\:pl-9\/12{padding-left:75% !important}[dir='ltr'] .ltr\:pt-10\/12{padding-top:83.333333% !important}[dir='ltr'] .ltr\:pr-10\/12{padding-right:83.333333% !important}[dir='ltr'] .ltr\:pb-10\/12{padding-bottom:83.333333% !important}[dir='ltr'] .ltr\:pl-10\/12{padding-left:83.333333% !important}[dir='ltr'] .ltr\:pt-11\/12{padding-top:91.666667% !important}[dir='ltr'] .ltr\:pr-11\/12{padding-right:91.666667% !important}[dir='ltr'] .ltr\:pb-11\/12{padding-bottom:91.666667% !important}[dir='ltr'] .ltr\:pl-11\/12{padding-left:91.666667% !important}[dir='ltr'] .ltr\:pt-full{padding-top:100% !important}[dir='ltr'] .ltr\:pr-full{padding-right:100% !important}[dir='ltr'] .ltr\:pb-full{padding-bottom:100% !important}[dir='ltr'] .ltr\:pl-full{padding-left:100% !important}[dir='rtl'] .rtl\:p-0{padding:0 !important}[dir='rtl'] .rtl\:p-1{padding:.25rem !important}[dir='rtl'] .rtl\:p-2{padding:.5rem !important}[dir='rtl'] .rtl\:p-3{padding:.75rem !important}[dir='rtl'] .rtl\:p-4{padding:1rem !important}[dir='rtl'] .rtl\:p-5{padding:1.25rem !important}[dir='rtl'] .rtl\:p-6{padding:1.5rem !important}[dir='rtl'] .rtl\:p-7{padding:1.75rem !important}[dir='rtl'] .rtl\:p-8{padding:2rem !important}[dir='rtl'] .rtl\:p-9{padding:2.25rem !important}[dir='rtl'] .rtl\:p-10{padding:2.5rem !important}[dir='rtl'] .rtl\:p-11{padding:2.75rem !important}[dir='rtl'] .rtl\:p-12{padding:3rem !important}[dir='rtl'] .rtl\:p-13{padding:3.25rem !important}[dir='rtl'] .rtl\:p-14{padding:3.5rem !important}[dir='rtl'] .rtl\:p-15{padding:3.75rem !important}[dir='rtl'] .rtl\:p-16{padding:4rem !important}[dir='rtl'] .rtl\:p-20{padding:5rem !important}[dir='rtl'] .rtl\:p-24{padding:6rem !important}[dir='rtl'] .rtl\:p-28{padding:7rem !important}[dir='rtl'] .rtl\:p-32{padding:8rem !important}[dir='rtl'] .rtl\:p-36{padding:9rem !important}[dir='rtl'] .rtl\:p-40{padding:10rem !important}[dir='rtl'] .rtl\:p-48{padding:12rem !important}[dir='rtl'] .rtl\:p-56{padding:14rem !important}[dir='rtl'] .rtl\:p-60{padding:15rem !important}[dir='rtl'] .rtl\:p-64{padding:16rem !important}[dir='rtl'] .rtl\:p-72{padding:18rem !important}[dir='rtl'] .rtl\:p-80{padding:20rem !important}[dir='rtl'] .rtl\:p-96{padding:24rem !important}[dir='rtl'] .rtl\:p-px{padding:1px !important}[dir='rtl'] .rtl\:p-0\.5{padding:.125rem !important}[dir='rtl'] .rtl\:p-1\.5{padding:.375rem !important}[dir='rtl'] .rtl\:p-2\.5{padding:.625rem !important}[dir='rtl'] .rtl\:p-3\.5{padding:.875rem !important}[dir='rtl'] .rtl\:p-1\/2{padding:50% !important}[dir='rtl'] .rtl\:p-1\/3{padding:33.333333% !important}[dir='rtl'] .rtl\:p-2\/3{padding:66.666667% !important}[dir='rtl'] .rtl\:p-1\/4{padding:25% !important}[dir='rtl'] .rtl\:p-2\/4{padding:50% !important}[dir='rtl'] .rtl\:p-3\/4{padding:75% !important}[dir='rtl'] .rtl\:p-1\/5{padding:20% !important}[dir='rtl'] .rtl\:p-2\/5{padding:40% !important}[dir='rtl'] .rtl\:p-3\/5{padding:60% !important}[dir='rtl'] .rtl\:p-4\/5{padding:80% !important}[dir='rtl'] .rtl\:p-1\/6{padding:16.666667% !important}[dir='rtl'] .rtl\:p-2\/6{padding:33.333333% !important}[dir='rtl'] .rtl\:p-3\/6{padding:50% !important}[dir='rtl'] .rtl\:p-4\/6{padding:66.666667% !important}[dir='rtl'] .rtl\:p-5\/6{padding:83.333333% !important}[dir='rtl'] .rtl\:p-1\/12{padding:8.333333% !important}[dir='rtl'] .rtl\:p-2\/12{padding:16.666667% !important}[dir='rtl'] .rtl\:p-3\/12{padding:25% !important}[dir='rtl'] .rtl\:p-4\/12{padding:33.333333% !important}[dir='rtl'] .rtl\:p-5\/12{padding:41.666667% !important}[dir='rtl'] .rtl\:p-6\/12{padding:50% !important}[dir='rtl'] .rtl\:p-7\/12{padding:58.333333% !important}[dir='rtl'] .rtl\:p-8\/12{padding:66.666667% !important}[dir='rtl'] .rtl\:p-9\/12{padding:75% !important}[dir='rtl'] .rtl\:p-10\/12{padding:83.333333% !important}[dir='rtl'] .rtl\:p-11\/12{padding:91.666667% !important}[dir='rtl'] .rtl\:p-full{padding:100% !important}[dir='rtl'] .rtl\:py-0{padding-top:0 !important;padding-bottom:0 !important}[dir='rtl'] .rtl\:px-0{padding-left:0 !important;padding-right:0 !important}[dir='rtl'] .rtl\:py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}[dir='rtl'] .rtl\:px-1{padding-left:.25rem !important;padding-right:.25rem !important}[dir='rtl'] .rtl\:py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}[dir='rtl'] .rtl\:px-2{padding-left:.5rem !important;padding-right:.5rem !important}[dir='rtl'] .rtl\:py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}[dir='rtl'] .rtl\:px-3{padding-left:.75rem !important;padding-right:.75rem !important}[dir='rtl'] .rtl\:py-4{padding-top:1rem !important;padding-bottom:1rem !important}[dir='rtl'] .rtl\:px-4{padding-left:1rem !important;padding-right:1rem !important}[dir='rtl'] .rtl\:py-5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}[dir='rtl'] .rtl\:px-5{padding-left:1.25rem !important;padding-right:1.25rem !important}[dir='rtl'] .rtl\:py-6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}[dir='rtl'] .rtl\:px-6{padding-left:1.5rem !important;padding-right:1.5rem !important}[dir='rtl'] .rtl\:py-7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}[dir='rtl'] .rtl\:px-7{padding-left:1.75rem !important;padding-right:1.75rem !important}[dir='rtl'] .rtl\:py-8{padding-top:2rem !important;padding-bottom:2rem !important}[dir='rtl'] .rtl\:px-8{padding-left:2rem !important;padding-right:2rem !important}[dir='rtl'] .rtl\:py-9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}[dir='rtl'] .rtl\:px-9{padding-left:2.25rem !important;padding-right:2.25rem !important}[dir='rtl'] .rtl\:py-10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}[dir='rtl'] .rtl\:px-10{padding-left:2.5rem !important;padding-right:2.5rem !important}[dir='rtl'] .rtl\:py-11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}[dir='rtl'] .rtl\:px-11{padding-left:2.75rem !important;padding-right:2.75rem !important}[dir='rtl'] .rtl\:py-12{padding-top:3rem !important;padding-bottom:3rem !important}[dir='rtl'] .rtl\:px-12{padding-left:3rem !important;padding-right:3rem !important}[dir='rtl'] .rtl\:py-13{padding-top:3.25rem !important;padding-bottom:3.25rem !important}[dir='rtl'] .rtl\:px-13{padding-left:3.25rem !important;padding-right:3.25rem !important}[dir='rtl'] .rtl\:py-14{padding-top:3.5rem !important;padding-bottom:3.5rem !important}[dir='rtl'] .rtl\:px-14{padding-left:3.5rem !important;padding-right:3.5rem !important}[dir='rtl'] .rtl\:py-15{padding-top:3.75rem !important;padding-bottom:3.75rem !important}[dir='rtl'] .rtl\:px-15{padding-left:3.75rem !important;padding-right:3.75rem !important}[dir='rtl'] .rtl\:py-16{padding-top:4rem !important;padding-bottom:4rem !important}[dir='rtl'] .rtl\:px-16{padding-left:4rem !important;padding-right:4rem !important}[dir='rtl'] .rtl\:py-20{padding-top:5rem !important;padding-bottom:5rem !important}[dir='rtl'] .rtl\:px-20{padding-left:5rem !important;padding-right:5rem !important}[dir='rtl'] .rtl\:py-24{padding-top:6rem !important;padding-bottom:6rem !important}[dir='rtl'] .rtl\:px-24{padding-left:6rem !important;padding-right:6rem !important}[dir='rtl'] .rtl\:py-28{padding-top:7rem !important;padding-bottom:7rem !important}[dir='rtl'] .rtl\:px-28{padding-left:7rem !important;padding-right:7rem !important}[dir='rtl'] .rtl\:py-32{padding-top:8rem !important;padding-bottom:8rem !important}[dir='rtl'] .rtl\:px-32{padding-left:8rem !important;padding-right:8rem !important}[dir='rtl'] .rtl\:py-36{padding-top:9rem !important;padding-bottom:9rem !important}[dir='rtl'] .rtl\:px-36{padding-left:9rem !important;padding-right:9rem !important}[dir='rtl'] .rtl\:py-40{padding-top:10rem !important;padding-bottom:10rem !important}[dir='rtl'] .rtl\:px-40{padding-left:10rem !important;padding-right:10rem !important}[dir='rtl'] .rtl\:py-48{padding-top:12rem !important;padding-bottom:12rem !important}[dir='rtl'] .rtl\:px-48{padding-left:12rem !important;padding-right:12rem !important}[dir='rtl'] .rtl\:py-56{padding-top:14rem !important;padding-bottom:14rem !important}[dir='rtl'] .rtl\:px-56{padding-left:14rem !important;padding-right:14rem !important}[dir='rtl'] .rtl\:py-60{padding-top:15rem !important;padding-bottom:15rem !important}[dir='rtl'] .rtl\:px-60{padding-left:15rem !important;padding-right:15rem !important}[dir='rtl'] .rtl\:py-64{padding-top:16rem !important;padding-bottom:16rem !important}[dir='rtl'] .rtl\:px-64{padding-left:16rem !important;padding-right:16rem !important}[dir='rtl'] .rtl\:py-72{padding-top:18rem !important;padding-bottom:18rem !important}[dir='rtl'] .rtl\:px-72{padding-left:18rem !important;padding-right:18rem !important}[dir='rtl'] .rtl\:py-80{padding-top:20rem !important;padding-bottom:20rem !important}[dir='rtl'] .rtl\:px-80{padding-left:20rem !important;padding-right:20rem !important}[dir='rtl'] .rtl\:py-96{padding-top:24rem !important;padding-bottom:24rem !important}[dir='rtl'] .rtl\:px-96{padding-left:24rem !important;padding-right:24rem !important}[dir='rtl'] .rtl\:py-px{padding-top:1px !important;padding-bottom:1px !important}[dir='rtl'] .rtl\:px-px{padding-left:1px !important;padding-right:1px !important}[dir='rtl'] .rtl\:py-0\.5{padding-top:.125rem !important;padding-bottom:.125rem !important}[dir='rtl'] .rtl\:px-0\.5{padding-left:.125rem !important;padding-right:.125rem !important}[dir='rtl'] .rtl\:py-1\.5{padding-top:.375rem !important;padding-bottom:.375rem !important}[dir='rtl'] .rtl\:px-1\.5{padding-left:.375rem !important;padding-right:.375rem !important}[dir='rtl'] .rtl\:py-2\.5{padding-top:.625rem !important;padding-bottom:.625rem !important}[dir='rtl'] .rtl\:px-2\.5{padding-left:.625rem !important;padding-right:.625rem !important}[dir='rtl'] .rtl\:py-3\.5{padding-top:.875rem !important;padding-bottom:.875rem !important}[dir='rtl'] .rtl\:px-3\.5{padding-left:.875rem !important;padding-right:.875rem !important}[dir='rtl'] .rtl\:py-1\/2{padding-top:50% !important;padding-bottom:50% !important}[dir='rtl'] .rtl\:px-1\/2{padding-left:50% !important;padding-right:50% !important}[dir='rtl'] .rtl\:py-1\/3{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='rtl'] .rtl\:px-1\/3{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='rtl'] .rtl\:py-2\/3{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='rtl'] .rtl\:px-2\/3{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='rtl'] .rtl\:py-1\/4{padding-top:25% !important;padding-bottom:25% !important}[dir='rtl'] .rtl\:px-1\/4{padding-left:25% !important;padding-right:25% !important}[dir='rtl'] .rtl\:py-2\/4{padding-top:50% !important;padding-bottom:50% !important}[dir='rtl'] .rtl\:px-2\/4{padding-left:50% !important;padding-right:50% !important}[dir='rtl'] .rtl\:py-3\/4{padding-top:75% !important;padding-bottom:75% !important}[dir='rtl'] .rtl\:px-3\/4{padding-left:75% !important;padding-right:75% !important}[dir='rtl'] .rtl\:py-1\/5{padding-top:20% !important;padding-bottom:20% !important}[dir='rtl'] .rtl\:px-1\/5{padding-left:20% !important;padding-right:20% !important}[dir='rtl'] .rtl\:py-2\/5{padding-top:40% !important;padding-bottom:40% !important}[dir='rtl'] .rtl\:px-2\/5{padding-left:40% !important;padding-right:40% !important}[dir='rtl'] .rtl\:py-3\/5{padding-top:60% !important;padding-bottom:60% !important}[dir='rtl'] .rtl\:px-3\/5{padding-left:60% !important;padding-right:60% !important}[dir='rtl'] .rtl\:py-4\/5{padding-top:80% !important;padding-bottom:80% !important}[dir='rtl'] .rtl\:px-4\/5{padding-left:80% !important;padding-right:80% !important}[dir='rtl'] .rtl\:py-1\/6{padding-top:16.666667% !important;padding-bottom:16.666667% !important}[dir='rtl'] .rtl\:px-1\/6{padding-left:16.666667% !important;padding-right:16.666667% !important}[dir='rtl'] .rtl\:py-2\/6{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='rtl'] .rtl\:px-2\/6{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='rtl'] .rtl\:py-3\/6{padding-top:50% !important;padding-bottom:50% !important}[dir='rtl'] .rtl\:px-3\/6{padding-left:50% !important;padding-right:50% !important}[dir='rtl'] .rtl\:py-4\/6{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='rtl'] .rtl\:px-4\/6{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='rtl'] .rtl\:py-5\/6{padding-top:83.333333% !important;padding-bottom:83.333333% !important}[dir='rtl'] .rtl\:px-5\/6{padding-left:83.333333% !important;padding-right:83.333333% !important}[dir='rtl'] .rtl\:py-1\/12{padding-top:8.333333% !important;padding-bottom:8.333333% !important}[dir='rtl'] .rtl\:px-1\/12{padding-left:8.333333% !important;padding-right:8.333333% !important}[dir='rtl'] .rtl\:py-2\/12{padding-top:16.666667% !important;padding-bottom:16.666667% !important}[dir='rtl'] .rtl\:px-2\/12{padding-left:16.666667% !important;padding-right:16.666667% !important}[dir='rtl'] .rtl\:py-3\/12{padding-top:25% !important;padding-bottom:25% !important}[dir='rtl'] .rtl\:px-3\/12{padding-left:25% !important;padding-right:25% !important}[dir='rtl'] .rtl\:py-4\/12{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='rtl'] .rtl\:px-4\/12{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='rtl'] .rtl\:py-5\/12{padding-top:41.666667% !important;padding-bottom:41.666667% !important}[dir='rtl'] .rtl\:px-5\/12{padding-left:41.666667% !important;padding-right:41.666667% !important}[dir='rtl'] .rtl\:py-6\/12{padding-top:50% !important;padding-bottom:50% !important}[dir='rtl'] .rtl\:px-6\/12{padding-left:50% !important;padding-right:50% !important}[dir='rtl'] .rtl\:py-7\/12{padding-top:58.333333% !important;padding-bottom:58.333333% !important}[dir='rtl'] .rtl\:px-7\/12{padding-left:58.333333% !important;padding-right:58.333333% !important}[dir='rtl'] .rtl\:py-8\/12{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='rtl'] .rtl\:px-8\/12{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='rtl'] .rtl\:py-9\/12{padding-top:75% !important;padding-bottom:75% !important}[dir='rtl'] .rtl\:px-9\/12{padding-left:75% !important;padding-right:75% !important}[dir='rtl'] .rtl\:py-10\/12{padding-top:83.333333% !important;padding-bottom:83.333333% !important}[dir='rtl'] .rtl\:px-10\/12{padding-left:83.333333% !important;padding-right:83.333333% !important}[dir='rtl'] .rtl\:py-11\/12{padding-top:91.666667% !important;padding-bottom:91.666667% !important}[dir='rtl'] .rtl\:px-11\/12{padding-left:91.666667% !important;padding-right:91.666667% !important}[dir='rtl'] .rtl\:py-full{padding-top:100% !important;padding-bottom:100% !important}[dir='rtl'] .rtl\:px-full{padding-left:100% !important;padding-right:100% !important}[dir='rtl'] .rtl\:pt-0{padding-top:0 !important}[dir='rtl'] .rtl\:pr-0{padding-right:0 !important}[dir='rtl'] .rtl\:pb-0{padding-bottom:0 !important}[dir='rtl'] .rtl\:pl-0{padding-left:0 !important}[dir='rtl'] .rtl\:pt-1{padding-top:.25rem !important}[dir='rtl'] .rtl\:pr-1{padding-right:.25rem !important}[dir='rtl'] .rtl\:pb-1{padding-bottom:.25rem !important}[dir='rtl'] .rtl\:pl-1{padding-left:.25rem !important}[dir='rtl'] .rtl\:pt-2{padding-top:.5rem !important}[dir='rtl'] .rtl\:pr-2{padding-right:.5rem !important}[dir='rtl'] .rtl\:pb-2{padding-bottom:.5rem !important}[dir='rtl'] .rtl\:pl-2{padding-left:.5rem !important}[dir='rtl'] .rtl\:pt-3{padding-top:.75rem !important}[dir='rtl'] .rtl\:pr-3{padding-right:.75rem !important}[dir='rtl'] .rtl\:pb-3{padding-bottom:.75rem !important}[dir='rtl'] .rtl\:pl-3{padding-left:.75rem !important}[dir='rtl'] .rtl\:pt-4{padding-top:1rem !important}[dir='rtl'] .rtl\:pr-4{padding-right:1rem !important}[dir='rtl'] .rtl\:pb-4{padding-bottom:1rem !important}[dir='rtl'] .rtl\:pl-4{padding-left:1rem !important}[dir='rtl'] .rtl\:pt-5{padding-top:1.25rem !important}[dir='rtl'] .rtl\:pr-5{padding-right:1.25rem !important}[dir='rtl'] .rtl\:pb-5{padding-bottom:1.25rem !important}[dir='rtl'] .rtl\:pl-5{padding-left:1.25rem !important}[dir='rtl'] .rtl\:pt-6{padding-top:1.5rem !important}[dir='rtl'] .rtl\:pr-6{padding-right:1.5rem !important}[dir='rtl'] .rtl\:pb-6{padding-bottom:1.5rem !important}[dir='rtl'] .rtl\:pl-6{padding-left:1.5rem !important}[dir='rtl'] .rtl\:pt-7{padding-top:1.75rem !important}[dir='rtl'] .rtl\:pr-7{padding-right:1.75rem !important}[dir='rtl'] .rtl\:pb-7{padding-bottom:1.75rem !important}[dir='rtl'] .rtl\:pl-7{padding-left:1.75rem !important}[dir='rtl'] .rtl\:pt-8{padding-top:2rem !important}[dir='rtl'] .rtl\:pr-8{padding-right:2rem !important}[dir='rtl'] .rtl\:pb-8{padding-bottom:2rem !important}[dir='rtl'] .rtl\:pl-8{padding-left:2rem !important}[dir='rtl'] .rtl\:pt-9{padding-top:2.25rem !important}[dir='rtl'] .rtl\:pr-9{padding-right:2.25rem !important}[dir='rtl'] .rtl\:pb-9{padding-bottom:2.25rem !important}[dir='rtl'] .rtl\:pl-9{padding-left:2.25rem !important}[dir='rtl'] .rtl\:pt-10{padding-top:2.5rem !important}[dir='rtl'] .rtl\:pr-10{padding-right:2.5rem !important}[dir='rtl'] .rtl\:pb-10{padding-bottom:2.5rem !important}[dir='rtl'] .rtl\:pl-10{padding-left:2.5rem !important}[dir='rtl'] .rtl\:pt-11{padding-top:2.75rem !important}[dir='rtl'] .rtl\:pr-11{padding-right:2.75rem !important}[dir='rtl'] .rtl\:pb-11{padding-bottom:2.75rem !important}[dir='rtl'] .rtl\:pl-11{padding-left:2.75rem !important}[dir='rtl'] .rtl\:pt-12{padding-top:3rem !important}[dir='rtl'] .rtl\:pr-12{padding-right:3rem !important}[dir='rtl'] .rtl\:pb-12{padding-bottom:3rem !important}[dir='rtl'] .rtl\:pl-12{padding-left:3rem !important}[dir='rtl'] .rtl\:pt-13{padding-top:3.25rem !important}[dir='rtl'] .rtl\:pr-13{padding-right:3.25rem !important}[dir='rtl'] .rtl\:pb-13{padding-bottom:3.25rem !important}[dir='rtl'] .rtl\:pl-13{padding-left:3.25rem !important}[dir='rtl'] .rtl\:pt-14{padding-top:3.5rem !important}[dir='rtl'] .rtl\:pr-14{padding-right:3.5rem !important}[dir='rtl'] .rtl\:pb-14{padding-bottom:3.5rem !important}[dir='rtl'] .rtl\:pl-14{padding-left:3.5rem !important}[dir='rtl'] .rtl\:pt-15{padding-top:3.75rem !important}[dir='rtl'] .rtl\:pr-15{padding-right:3.75rem !important}[dir='rtl'] .rtl\:pb-15{padding-bottom:3.75rem !important}[dir='rtl'] .rtl\:pl-15{padding-left:3.75rem !important}[dir='rtl'] .rtl\:pt-16{padding-top:4rem !important}[dir='rtl'] .rtl\:pr-16{padding-right:4rem !important}[dir='rtl'] .rtl\:pb-16{padding-bottom:4rem !important}[dir='rtl'] .rtl\:pl-16{padding-left:4rem !important}[dir='rtl'] .rtl\:pt-20{padding-top:5rem !important}[dir='rtl'] .rtl\:pr-20{padding-right:5rem !important}[dir='rtl'] .rtl\:pb-20{padding-bottom:5rem !important}[dir='rtl'] .rtl\:pl-20{padding-left:5rem !important}[dir='rtl'] .rtl\:pt-24{padding-top:6rem !important}[dir='rtl'] .rtl\:pr-24{padding-right:6rem !important}[dir='rtl'] .rtl\:pb-24{padding-bottom:6rem !important}[dir='rtl'] .rtl\:pl-24{padding-left:6rem !important}[dir='rtl'] .rtl\:pt-28{padding-top:7rem !important}[dir='rtl'] .rtl\:pr-28{padding-right:7rem !important}[dir='rtl'] .rtl\:pb-28{padding-bottom:7rem !important}[dir='rtl'] .rtl\:pl-28{padding-left:7rem !important}[dir='rtl'] .rtl\:pt-32{padding-top:8rem !important}[dir='rtl'] .rtl\:pr-32{padding-right:8rem !important}[dir='rtl'] .rtl\:pb-32{padding-bottom:8rem !important}[dir='rtl'] .rtl\:pl-32{padding-left:8rem !important}[dir='rtl'] .rtl\:pt-36{padding-top:9rem !important}[dir='rtl'] .rtl\:pr-36{padding-right:9rem !important}[dir='rtl'] .rtl\:pb-36{padding-bottom:9rem !important}[dir='rtl'] .rtl\:pl-36{padding-left:9rem !important}[dir='rtl'] .rtl\:pt-40{padding-top:10rem !important}[dir='rtl'] .rtl\:pr-40{padding-right:10rem !important}[dir='rtl'] .rtl\:pb-40{padding-bottom:10rem !important}[dir='rtl'] .rtl\:pl-40{padding-left:10rem !important}[dir='rtl'] .rtl\:pt-48{padding-top:12rem !important}[dir='rtl'] .rtl\:pr-48{padding-right:12rem !important}[dir='rtl'] .rtl\:pb-48{padding-bottom:12rem !important}[dir='rtl'] .rtl\:pl-48{padding-left:12rem !important}[dir='rtl'] .rtl\:pt-56{padding-top:14rem !important}[dir='rtl'] .rtl\:pr-56{padding-right:14rem !important}[dir='rtl'] .rtl\:pb-56{padding-bottom:14rem !important}[dir='rtl'] .rtl\:pl-56{padding-left:14rem !important}[dir='rtl'] .rtl\:pt-60{padding-top:15rem !important}[dir='rtl'] .rtl\:pr-60{padding-right:15rem !important}[dir='rtl'] .rtl\:pb-60{padding-bottom:15rem !important}[dir='rtl'] .rtl\:pl-60{padding-left:15rem !important}[dir='rtl'] .rtl\:pt-64{padding-top:16rem !important}[dir='rtl'] .rtl\:pr-64{padding-right:16rem !important}[dir='rtl'] .rtl\:pb-64{padding-bottom:16rem !important}[dir='rtl'] .rtl\:pl-64{padding-left:16rem !important}[dir='rtl'] .rtl\:pt-72{padding-top:18rem !important}[dir='rtl'] .rtl\:pr-72{padding-right:18rem !important}[dir='rtl'] .rtl\:pb-72{padding-bottom:18rem !important}[dir='rtl'] .rtl\:pl-72{padding-left:18rem !important}[dir='rtl'] .rtl\:pt-80{padding-top:20rem !important}[dir='rtl'] .rtl\:pr-80{padding-right:20rem !important}[dir='rtl'] .rtl\:pb-80{padding-bottom:20rem !important}[dir='rtl'] .rtl\:pl-80{padding-left:20rem !important}[dir='rtl'] .rtl\:pt-96{padding-top:24rem !important}[dir='rtl'] .rtl\:pr-96{padding-right:24rem !important}[dir='rtl'] .rtl\:pb-96{padding-bottom:24rem !important}[dir='rtl'] .rtl\:pl-96{padding-left:24rem !important}[dir='rtl'] .rtl\:pt-px{padding-top:1px !important}[dir='rtl'] .rtl\:pr-px{padding-right:1px !important}[dir='rtl'] .rtl\:pb-px{padding-bottom:1px !important}[dir='rtl'] .rtl\:pl-px{padding-left:1px !important}[dir='rtl'] .rtl\:pt-0\.5{padding-top:.125rem !important}[dir='rtl'] .rtl\:pr-0\.5{padding-right:.125rem !important}[dir='rtl'] .rtl\:pb-0\.5{padding-bottom:.125rem !important}[dir='rtl'] .rtl\:pl-0\.5{padding-left:.125rem !important}[dir='rtl'] .rtl\:pt-1\.5{padding-top:.375rem !important}[dir='rtl'] .rtl\:pr-1\.5{padding-right:.375rem !important}[dir='rtl'] .rtl\:pb-1\.5{padding-bottom:.375rem !important}[dir='rtl'] .rtl\:pl-1\.5{padding-left:.375rem !important}[dir='rtl'] .rtl\:pt-2\.5{padding-top:.625rem !important}[dir='rtl'] .rtl\:pr-2\.5{padding-right:.625rem !important}[dir='rtl'] .rtl\:pb-2\.5{padding-bottom:.625rem !important}[dir='rtl'] .rtl\:pl-2\.5{padding-left:.625rem !important}[dir='rtl'] .rtl\:pt-3\.5{padding-top:.875rem !important}[dir='rtl'] .rtl\:pr-3\.5{padding-right:.875rem !important}[dir='rtl'] .rtl\:pb-3\.5{padding-bottom:.875rem !important}[dir='rtl'] .rtl\:pl-3\.5{padding-left:.875rem !important}[dir='rtl'] .rtl\:pt-1\/2{padding-top:50% !important}[dir='rtl'] .rtl\:pr-1\/2{padding-right:50% !important}[dir='rtl'] .rtl\:pb-1\/2{padding-bottom:50% !important}[dir='rtl'] .rtl\:pl-1\/2{padding-left:50% !important}[dir='rtl'] .rtl\:pt-1\/3{padding-top:33.333333% !important}[dir='rtl'] .rtl\:pr-1\/3{padding-right:33.333333% !important}[dir='rtl'] .rtl\:pb-1\/3{padding-bottom:33.333333% !important}[dir='rtl'] .rtl\:pl-1\/3{padding-left:33.333333% !important}[dir='rtl'] .rtl\:pt-2\/3{padding-top:66.666667% !important}[dir='rtl'] .rtl\:pr-2\/3{padding-right:66.666667% !important}[dir='rtl'] .rtl\:pb-2\/3{padding-bottom:66.666667% !important}[dir='rtl'] .rtl\:pl-2\/3{padding-left:66.666667% !important}[dir='rtl'] .rtl\:pt-1\/4{padding-top:25% !important}[dir='rtl'] .rtl\:pr-1\/4{padding-right:25% !important}[dir='rtl'] .rtl\:pb-1\/4{padding-bottom:25% !important}[dir='rtl'] .rtl\:pl-1\/4{padding-left:25% !important}[dir='rtl'] .rtl\:pt-2\/4{padding-top:50% !important}[dir='rtl'] .rtl\:pr-2\/4{padding-right:50% !important}[dir='rtl'] .rtl\:pb-2\/4{padding-bottom:50% !important}[dir='rtl'] .rtl\:pl-2\/4{padding-left:50% !important}[dir='rtl'] .rtl\:pt-3\/4{padding-top:75% !important}[dir='rtl'] .rtl\:pr-3\/4{padding-right:75% !important}[dir='rtl'] .rtl\:pb-3\/4{padding-bottom:75% !important}[dir='rtl'] .rtl\:pl-3\/4{padding-left:75% !important}[dir='rtl'] .rtl\:pt-1\/5{padding-top:20% !important}[dir='rtl'] .rtl\:pr-1\/5{padding-right:20% !important}[dir='rtl'] .rtl\:pb-1\/5{padding-bottom:20% !important}[dir='rtl'] .rtl\:pl-1\/5{padding-left:20% !important}[dir='rtl'] .rtl\:pt-2\/5{padding-top:40% !important}[dir='rtl'] .rtl\:pr-2\/5{padding-right:40% !important}[dir='rtl'] .rtl\:pb-2\/5{padding-bottom:40% !important}[dir='rtl'] .rtl\:pl-2\/5{padding-left:40% !important}[dir='rtl'] .rtl\:pt-3\/5{padding-top:60% !important}[dir='rtl'] .rtl\:pr-3\/5{padding-right:60% !important}[dir='rtl'] .rtl\:pb-3\/5{padding-bottom:60% !important}[dir='rtl'] .rtl\:pl-3\/5{padding-left:60% !important}[dir='rtl'] .rtl\:pt-4\/5{padding-top:80% !important}[dir='rtl'] .rtl\:pr-4\/5{padding-right:80% !important}[dir='rtl'] .rtl\:pb-4\/5{padding-bottom:80% !important}[dir='rtl'] .rtl\:pl-4\/5{padding-left:80% !important}[dir='rtl'] .rtl\:pt-1\/6{padding-top:16.666667% !important}[dir='rtl'] .rtl\:pr-1\/6{padding-right:16.666667% !important}[dir='rtl'] .rtl\:pb-1\/6{padding-bottom:16.666667% !important}[dir='rtl'] .rtl\:pl-1\/6{padding-left:16.666667% !important}[dir='rtl'] .rtl\:pt-2\/6{padding-top:33.333333% !important}[dir='rtl'] .rtl\:pr-2\/6{padding-right:33.333333% !important}[dir='rtl'] .rtl\:pb-2\/6{padding-bottom:33.333333% !important}[dir='rtl'] .rtl\:pl-2\/6{padding-left:33.333333% !important}[dir='rtl'] .rtl\:pt-3\/6{padding-top:50% !important}[dir='rtl'] .rtl\:pr-3\/6{padding-right:50% !important}[dir='rtl'] .rtl\:pb-3\/6{padding-bottom:50% !important}[dir='rtl'] .rtl\:pl-3\/6{padding-left:50% !important}[dir='rtl'] .rtl\:pt-4\/6{padding-top:66.666667% !important}[dir='rtl'] .rtl\:pr-4\/6{padding-right:66.666667% !important}[dir='rtl'] .rtl\:pb-4\/6{padding-bottom:66.666667% !important}[dir='rtl'] .rtl\:pl-4\/6{padding-left:66.666667% !important}[dir='rtl'] .rtl\:pt-5\/6{padding-top:83.333333% !important}[dir='rtl'] .rtl\:pr-5\/6{padding-right:83.333333% !important}[dir='rtl'] .rtl\:pb-5\/6{padding-bottom:83.333333% !important}[dir='rtl'] .rtl\:pl-5\/6{padding-left:83.333333% !important}[dir='rtl'] .rtl\:pt-1\/12{padding-top:8.333333% !important}[dir='rtl'] .rtl\:pr-1\/12{padding-right:8.333333% !important}[dir='rtl'] .rtl\:pb-1\/12{padding-bottom:8.333333% !important}[dir='rtl'] .rtl\:pl-1\/12{padding-left:8.333333% !important}[dir='rtl'] .rtl\:pt-2\/12{padding-top:16.666667% !important}[dir='rtl'] .rtl\:pr-2\/12{padding-right:16.666667% !important}[dir='rtl'] .rtl\:pb-2\/12{padding-bottom:16.666667% !important}[dir='rtl'] .rtl\:pl-2\/12{padding-left:16.666667% !important}[dir='rtl'] .rtl\:pt-3\/12{padding-top:25% !important}[dir='rtl'] .rtl\:pr-3\/12{padding-right:25% !important}[dir='rtl'] .rtl\:pb-3\/12{padding-bottom:25% !important}[dir='rtl'] .rtl\:pl-3\/12{padding-left:25% !important}[dir='rtl'] .rtl\:pt-4\/12{padding-top:33.333333% !important}[dir='rtl'] .rtl\:pr-4\/12{padding-right:33.333333% !important}[dir='rtl'] .rtl\:pb-4\/12{padding-bottom:33.333333% !important}[dir='rtl'] .rtl\:pl-4\/12{padding-left:33.333333% !important}[dir='rtl'] .rtl\:pt-5\/12{padding-top:41.666667% !important}[dir='rtl'] .rtl\:pr-5\/12{padding-right:41.666667% !important}[dir='rtl'] .rtl\:pb-5\/12{padding-bottom:41.666667% !important}[dir='rtl'] .rtl\:pl-5\/12{padding-left:41.666667% !important}[dir='rtl'] .rtl\:pt-6\/12{padding-top:50% !important}[dir='rtl'] .rtl\:pr-6\/12{padding-right:50% !important}[dir='rtl'] .rtl\:pb-6\/12{padding-bottom:50% !important}[dir='rtl'] .rtl\:pl-6\/12{padding-left:50% !important}[dir='rtl'] .rtl\:pt-7\/12{padding-top:58.333333% !important}[dir='rtl'] .rtl\:pr-7\/12{padding-right:58.333333% !important}[dir='rtl'] .rtl\:pb-7\/12{padding-bottom:58.333333% !important}[dir='rtl'] .rtl\:pl-7\/12{padding-left:58.333333% !important}[dir='rtl'] .rtl\:pt-8\/12{padding-top:66.666667% !important}[dir='rtl'] .rtl\:pr-8\/12{padding-right:66.666667% !important}[dir='rtl'] .rtl\:pb-8\/12{padding-bottom:66.666667% !important}[dir='rtl'] .rtl\:pl-8\/12{padding-left:66.666667% !important}[dir='rtl'] .rtl\:pt-9\/12{padding-top:75% !important}[dir='rtl'] .rtl\:pr-9\/12{padding-right:75% !important}[dir='rtl'] .rtl\:pb-9\/12{padding-bottom:75% !important}[dir='rtl'] .rtl\:pl-9\/12{padding-left:75% !important}[dir='rtl'] .rtl\:pt-10\/12{padding-top:83.333333% !important}[dir='rtl'] .rtl\:pr-10\/12{padding-right:83.333333% !important}[dir='rtl'] .rtl\:pb-10\/12{padding-bottom:83.333333% !important}[dir='rtl'] .rtl\:pl-10\/12{padding-left:83.333333% !important}[dir='rtl'] .rtl\:pt-11\/12{padding-top:91.666667% !important}[dir='rtl'] .rtl\:pr-11\/12{padding-right:91.666667% !important}[dir='rtl'] .rtl\:pb-11\/12{padding-bottom:91.666667% !important}[dir='rtl'] .rtl\:pl-11\/12{padding-left:91.666667% !important}[dir='rtl'] .rtl\:pt-full{padding-top:100% !important}[dir='rtl'] .rtl\:pr-full{padding-right:100% !important}[dir='rtl'] .rtl\:pb-full{padding-bottom:100% !important}[dir='rtl'] .rtl\:pl-full{padding-left:100% !important}.placeholder-transparent::-moz-placeholder{color:transparent !important}.placeholder-transparent:-ms-input-placeholder{color:transparent !important}.placeholder-transparent::-ms-input-placeholder{color:transparent !important}.placeholder-transparent::placeholder{color:transparent !important}.placeholder-white::-moz-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.placeholder-white:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.placeholder-white::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.placeholder-white::placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.placeholder-blackest::-moz-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.placeholder-blackest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.placeholder-blackest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.placeholder-blackest::placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,0.7) !important}.placeholder-blackest-70:-ms-input-placeholder{color:rgba(0,0,0,0.7) !important}.placeholder-blackest-70::-ms-input-placeholder{color:rgba(0,0,0,0.7) !important}.placeholder-blackest-70::placeholder{color:rgba(0,0,0,0.7) !important}.placeholder-black::-moz-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.placeholder-black:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.placeholder-black::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.placeholder-black::placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.placeholder-gray-darkest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.placeholder-gray-darkest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.placeholder-gray-darkest::placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.placeholder-gray-darker:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.placeholder-gray-darker::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.placeholder-gray-darker::placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.placeholder-gray-dark:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.placeholder-gray-dark::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.placeholder-gray-dark::placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.placeholder-gray::-moz-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.placeholder-gray:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.placeholder-gray::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.placeholder-gray::placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.placeholder-gray-light:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.placeholder-gray-light::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.placeholder-gray-light::placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.placeholder-gray-lighter:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.placeholder-gray-lighter::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.placeholder-gray-lighter::placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.placeholder-gray-lightest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.placeholder-gray-lightest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.placeholder-gray-lightest::placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.placeholder-blue-darkest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.placeholder-blue-darkest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.placeholder-blue-darkest::placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.placeholder-blue-dark:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.placeholder-blue-dark::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.placeholder-blue-dark::placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.placeholder-blue::-moz-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.placeholder-blue:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.placeholder-blue::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.placeholder-blue::placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.placeholder-blue-light:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.placeholder-blue-light::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.placeholder-blue-light::placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,0.6) !important}.placeholder-blue-highlight:-ms-input-placeholder{color:rgba(180,215,255,0.6) !important}.placeholder-blue-highlight::-ms-input-placeholder{color:rgba(180,215,255,0.6) !important}.placeholder-blue-highlight::placeholder{color:rgba(180,215,255,0.6) !important}.placeholder-orange::-moz-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.placeholder-orange:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.placeholder-orange::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.placeholder-orange::placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.placeholder-orange-darker:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.placeholder-orange-darker::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.placeholder-orange-darker::placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.placeholder-orange-darkest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.placeholder-orange-darkest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.placeholder-orange-darkest::placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.placeholder-red::-moz-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.placeholder-red:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.placeholder-red::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.placeholder-red::placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.placeholder-green::-moz-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.placeholder-green:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.placeholder-green::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.placeholder-green::placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.placeholder-yellow-400:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.placeholder-yellow-400::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.placeholder-yellow-400::placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.placeholder-yellow-50:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.placeholder-yellow-50::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.placeholder-yellow-50::placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent !important}.focus\:placeholder-transparent:focus:-ms-input-placeholder{color:transparent !important}.focus\:placeholder-transparent:focus::-ms-input-placeholder{color:transparent !important}.focus\:placeholder-transparent:focus::placeholder{color:transparent !important}.focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.focus\:placeholder-white:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.focus\:placeholder-white:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.focus\:placeholder-blackest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.focus\:placeholder-blackest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,0.7) !important}.focus\:placeholder-blackest-70:focus:-ms-input-placeholder{color:rgba(0,0,0,0.7) !important}.focus\:placeholder-blackest-70:focus::-ms-input-placeholder{color:rgba(0,0,0,0.7) !important}.focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,0.7) !important}.focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.focus\:placeholder-black:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.focus\:placeholder-black:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-darkest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-darkest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-darker:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-darker:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-dark:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-dark:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.focus\:placeholder-gray:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.focus\:placeholder-gray:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-light:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-light:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-lighter:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-lighter:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-lightest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-lightest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-darkest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-darkest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-dark:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-dark:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.focus\:placeholder-blue:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.focus\:placeholder-blue:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-light:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-light:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,0.6) !important}.focus\:placeholder-blue-highlight:focus:-ms-input-placeholder{color:rgba(180,215,255,0.6) !important}.focus\:placeholder-blue-highlight:focus::-ms-input-placeholder{color:rgba(180,215,255,0.6) !important}.focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,0.6) !important}.focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.focus\:placeholder-orange:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.focus\:placeholder-orange:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.focus\:placeholder-orange-darker:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.focus\:placeholder-orange-darker:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.focus\:placeholder-orange-darkest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.focus\:placeholder-orange-darkest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.focus\:placeholder-red:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.focus\:placeholder-red:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.focus\:placeholder-green:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.focus\:placeholder-green:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.focus\:placeholder-yellow-400:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.focus\:placeholder-yellow-400:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.focus\:placeholder-yellow-50:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.focus\:placeholder-yellow-50:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0 !important}.placeholder-opacity-0:-ms-input-placeholder{--placeholder-opacity:0 !important}.placeholder-opacity-0::-ms-input-placeholder{--placeholder-opacity:0 !important}.placeholder-opacity-0::placeholder{--placeholder-opacity:0 !important}.placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:.25 !important}.placeholder-opacity-25:-ms-input-placeholder{--placeholder-opacity:.25 !important}.placeholder-opacity-25::-ms-input-placeholder{--placeholder-opacity:.25 !important}.placeholder-opacity-25::placeholder{--placeholder-opacity:.25 !important}.placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:.5 !important}.placeholder-opacity-50:-ms-input-placeholder{--placeholder-opacity:.5 !important}.placeholder-opacity-50::-ms-input-placeholder{--placeholder-opacity:.5 !important}.placeholder-opacity-50::placeholder{--placeholder-opacity:.5 !important}.placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:.75 !important}.placeholder-opacity-75:-ms-input-placeholder{--placeholder-opacity:.75 !important}.placeholder-opacity-75::-ms-input-placeholder{--placeholder-opacity:.75 !important}.placeholder-opacity-75::placeholder{--placeholder-opacity:.75 !important}.placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1 !important}.placeholder-opacity-100:-ms-input-placeholder{--placeholder-opacity:1 !important}.placeholder-opacity-100::-ms-input-placeholder{--placeholder-opacity:1 !important}.placeholder-opacity-100::placeholder{--placeholder-opacity:1 !important}.focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0 !important}.focus\:placeholder-opacity-0:focus:-ms-input-placeholder{--placeholder-opacity:0 !important}.focus\:placeholder-opacity-0:focus::-ms-input-placeholder{--placeholder-opacity:0 !important}.focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0 !important}.focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:.25 !important}.focus\:placeholder-opacity-25:focus:-ms-input-placeholder{--placeholder-opacity:.25 !important}.focus\:placeholder-opacity-25:focus::-ms-input-placeholder{--placeholder-opacity:.25 !important}.focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:.25 !important}.focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:.5 !important}.focus\:placeholder-opacity-50:focus:-ms-input-placeholder{--placeholder-opacity:.5 !important}.focus\:placeholder-opacity-50:focus::-ms-input-placeholder{--placeholder-opacity:.5 !important}.focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:.5 !important}.focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:.75 !important}.focus\:placeholder-opacity-75:focus:-ms-input-placeholder{--placeholder-opacity:.75 !important}.focus\:placeholder-opacity-75:focus::-ms-input-placeholder{--placeholder-opacity:.75 !important}.focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:.75 !important}.focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1 !important}.focus\:placeholder-opacity-100:focus:-ms-input-placeholder{--placeholder-opacity:1 !important}.focus\:placeholder-opacity-100:focus::-ms-input-placeholder{--placeholder-opacity:1 !important}.focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1 !important}.pointer-events-none{pointer-events:none !important}.pointer-events-auto{pointer-events:auto !important}.static{position:static !important}.fixed{position:fixed !important}.absolute{position:absolute !important}.relative{position:relative !important}.sticky{position:-webkit-sticky !important;position:sticky !important}.inset-0{top:0 !important;right:0 !important;bottom:0 !important;left:0 !important}.inset-1{top:.25rem !important;right:.25rem !important;bottom:.25rem !important;left:.25rem !important}.inset-2{top:.5rem !important;right:.5rem !important;bottom:.5rem !important;left:.5rem !important}.inset-3{top:.75rem !important;right:.75rem !important;bottom:.75rem !important;left:.75rem !important}.inset-4{top:1rem !important;right:1rem !important;bottom:1rem !important;left:1rem !important}.inset-5{top:1.25rem !important;right:1.25rem !important;bottom:1.25rem !important;left:1.25rem !important}.inset-6{top:1.5rem !important;right:1.5rem !important;bottom:1.5rem !important;left:1.5rem !important}.inset-7{top:1.75rem !important;right:1.75rem !important;bottom:1.75rem !important;left:1.75rem !important}.inset-8{top:2rem !important;right:2rem !important;bottom:2rem !important;left:2rem !important}.inset-9{top:2.25rem !important;right:2.25rem !important;bottom:2.25rem !important;left:2.25rem !important}.inset-10{top:2.5rem !important;right:2.5rem !important;bottom:2.5rem !important;left:2.5rem !important}.inset-11{top:2.75rem !important;right:2.75rem !important;bottom:2.75rem !important;left:2.75rem !important}.inset-12{top:3rem !important;right:3rem !important;bottom:3rem !important;left:3rem !important}.inset-13{top:3.25rem !important;right:3.25rem !important;bottom:3.25rem !important;left:3.25rem !important}.inset-14{top:3.5rem !important;right:3.5rem !important;bottom:3.5rem !important;left:3.5rem !important}.inset-15{top:3.75rem !important;right:3.75rem !important;bottom:3.75rem !important;left:3.75rem !important}.inset-16{top:4rem !important;right:4rem !important;bottom:4rem !important;left:4rem !important}.inset-20{top:5rem !important;right:5rem !important;bottom:5rem !important;left:5rem !important}.inset-24{top:6rem !important;right:6rem !important;bottom:6rem !important;left:6rem !important}.inset-28{top:7rem !important;right:7rem !important;bottom:7rem !important;left:7rem !important}.inset-32{top:8rem !important;right:8rem !important;bottom:8rem !important;left:8rem !important}.inset-36{top:9rem !important;right:9rem !important;bottom:9rem !important;left:9rem !important}.inset-40{top:10rem !important;right:10rem !important;bottom:10rem !important;left:10rem !important}.inset-48{top:12rem !important;right:12rem !important;bottom:12rem !important;left:12rem !important}.inset-56{top:14rem !important;right:14rem !important;bottom:14rem !important;left:14rem !important}.inset-60{top:15rem !important;right:15rem !important;bottom:15rem !important;left:15rem !important}.inset-64{top:16rem !important;right:16rem !important;bottom:16rem !important;left:16rem !important}.inset-72{top:18rem !important;right:18rem !important;bottom:18rem !important;left:18rem !important}.inset-80{top:20rem !important;right:20rem !important;bottom:20rem !important;left:20rem !important}.inset-96{top:24rem !important;right:24rem !important;bottom:24rem !important;left:24rem !important}.inset-auto{top:auto !important;right:auto !important;bottom:auto !important;left:auto !important}.inset-px{top:1px !important;right:1px !important;bottom:1px !important;left:1px !important}.inset-0\.5{top:.125rem !important;right:.125rem !important;bottom:.125rem !important;left:.125rem !important}.inset-1\.5{top:.375rem !important;right:.375rem !important;bottom:.375rem !important;left:.375rem !important}.inset-2\.5{top:.625rem !important;right:.625rem !important;bottom:.625rem !important;left:.625rem !important}.inset-3\.5{top:.875rem !important;right:.875rem !important;bottom:.875rem !important;left:.875rem !important}.inset-1\/2{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}.inset-1\/3{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}.inset-2\/3{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}.inset-1\/4{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}.inset-2\/4{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}.inset-3\/4{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}.inset-1\/5{top:20% !important;right:20% !important;bottom:20% !important;left:20% !important}.inset-2\/5{top:40% !important;right:40% !important;bottom:40% !important;left:40% !important}.inset-3\/5{top:60% !important;right:60% !important;bottom:60% !important;left:60% !important}.inset-4\/5{top:80% !important;right:80% !important;bottom:80% !important;left:80% !important}.inset-1\/6{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}.inset-2\/6{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}.inset-3\/6{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}.inset-4\/6{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}.inset-5\/6{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}.inset-1\/12{top:8.333333% !important;right:8.333333% !important;bottom:8.333333% !important;left:8.333333% !important}.inset-2\/12{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}.inset-3\/12{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}.inset-4\/12{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}.inset-5\/12{top:41.666667% !important;right:41.666667% !important;bottom:41.666667% !important;left:41.666667% !important}.inset-6\/12{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}.inset-7\/12{top:58.333333% !important;right:58.333333% !important;bottom:58.333333% !important;left:58.333333% !important}.inset-8\/12{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}.inset-9\/12{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}.inset-10\/12{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}.inset-11\/12{top:91.666667% !important;right:91.666667% !important;bottom:91.666667% !important;left:91.666667% !important}.inset-full{top:100% !important;right:100% !important;bottom:100% !important;left:100% !important}.inset-y-0{top:0 !important;bottom:0 !important}.inset-x-0{right:0 !important;left:0 !important}.inset-y-1{top:.25rem !important;bottom:.25rem !important}.inset-x-1{right:.25rem !important;left:.25rem !important}.inset-y-2{top:.5rem !important;bottom:.5rem !important}.inset-x-2{right:.5rem !important;left:.5rem !important}.inset-y-3{top:.75rem !important;bottom:.75rem !important}.inset-x-3{right:.75rem !important;left:.75rem !important}.inset-y-4{top:1rem !important;bottom:1rem !important}.inset-x-4{right:1rem !important;left:1rem !important}.inset-y-5{top:1.25rem !important;bottom:1.25rem !important}.inset-x-5{right:1.25rem !important;left:1.25rem !important}.inset-y-6{top:1.5rem !important;bottom:1.5rem !important}.inset-x-6{right:1.5rem !important;left:1.5rem !important}.inset-y-7{top:1.75rem !important;bottom:1.75rem !important}.inset-x-7{right:1.75rem !important;left:1.75rem !important}.inset-y-8{top:2rem !important;bottom:2rem !important}.inset-x-8{right:2rem !important;left:2rem !important}.inset-y-9{top:2.25rem !important;bottom:2.25rem !important}.inset-x-9{right:2.25rem !important;left:2.25rem !important}.inset-y-10{top:2.5rem !important;bottom:2.5rem !important}.inset-x-10{right:2.5rem !important;left:2.5rem !important}.inset-y-11{top:2.75rem !important;bottom:2.75rem !important}.inset-x-11{right:2.75rem !important;left:2.75rem !important}.inset-y-12{top:3rem !important;bottom:3rem !important}.inset-x-12{right:3rem !important;left:3rem !important}.inset-y-13{top:3.25rem !important;bottom:3.25rem !important}.inset-x-13{right:3.25rem !important;left:3.25rem !important}.inset-y-14{top:3.5rem !important;bottom:3.5rem !important}.inset-x-14{right:3.5rem !important;left:3.5rem !important}.inset-y-15{top:3.75rem !important;bottom:3.75rem !important}.inset-x-15{right:3.75rem !important;left:3.75rem !important}.inset-y-16{top:4rem !important;bottom:4rem !important}.inset-x-16{right:4rem !important;left:4rem !important}.inset-y-20{top:5rem !important;bottom:5rem !important}.inset-x-20{right:5rem !important;left:5rem !important}.inset-y-24{top:6rem !important;bottom:6rem !important}.inset-x-24{right:6rem !important;left:6rem !important}.inset-y-28{top:7rem !important;bottom:7rem !important}.inset-x-28{right:7rem !important;left:7rem !important}.inset-y-32{top:8rem !important;bottom:8rem !important}.inset-x-32{right:8rem !important;left:8rem !important}.inset-y-36{top:9rem !important;bottom:9rem !important}.inset-x-36{right:9rem !important;left:9rem !important}.inset-y-40{top:10rem !important;bottom:10rem !important}.inset-x-40{right:10rem !important;left:10rem !important}.inset-y-48{top:12rem !important;bottom:12rem !important}.inset-x-48{right:12rem !important;left:12rem !important}.inset-y-56{top:14rem !important;bottom:14rem !important}.inset-x-56{right:14rem !important;left:14rem !important}.inset-y-60{top:15rem !important;bottom:15rem !important}.inset-x-60{right:15rem !important;left:15rem !important}.inset-y-64{top:16rem !important;bottom:16rem !important}.inset-x-64{right:16rem !important;left:16rem !important}.inset-y-72{top:18rem !important;bottom:18rem !important}.inset-x-72{right:18rem !important;left:18rem !important}.inset-y-80{top:20rem !important;bottom:20rem !important}.inset-x-80{right:20rem !important;left:20rem !important}.inset-y-96{top:24rem !important;bottom:24rem !important}.inset-x-96{right:24rem !important;left:24rem !important}.inset-y-auto{top:auto !important;bottom:auto !important}.inset-x-auto{right:auto !important;left:auto !important}.inset-y-px{top:1px !important;bottom:1px !important}.inset-x-px{right:1px !important;left:1px !important}.inset-y-0\.5{top:.125rem !important;bottom:.125rem !important}.inset-x-0\.5{right:.125rem !important;left:.125rem !important}.inset-y-1\.5{top:.375rem !important;bottom:.375rem !important}.inset-x-1\.5{right:.375rem !important;left:.375rem !important}.inset-y-2\.5{top:.625rem !important;bottom:.625rem !important}.inset-x-2\.5{right:.625rem !important;left:.625rem !important}.inset-y-3\.5{top:.875rem !important;bottom:.875rem !important}.inset-x-3\.5{right:.875rem !important;left:.875rem !important}.inset-y-1\/2{top:50% !important;bottom:50% !important}.inset-x-1\/2{right:50% !important;left:50% !important}.inset-y-1\/3{top:33.333333% !important;bottom:33.333333% !important}.inset-x-1\/3{right:33.333333% !important;left:33.333333% !important}.inset-y-2\/3{top:66.666667% !important;bottom:66.666667% !important}.inset-x-2\/3{right:66.666667% !important;left:66.666667% !important}.inset-y-1\/4{top:25% !important;bottom:25% !important}.inset-x-1\/4{right:25% !important;left:25% !important}.inset-y-2\/4{top:50% !important;bottom:50% !important}.inset-x-2\/4{right:50% !important;left:50% !important}.inset-y-3\/4{top:75% !important;bottom:75% !important}.inset-x-3\/4{right:75% !important;left:75% !important}.inset-y-1\/5{top:20% !important;bottom:20% !important}.inset-x-1\/5{right:20% !important;left:20% !important}.inset-y-2\/5{top:40% !important;bottom:40% !important}.inset-x-2\/5{right:40% !important;left:40% !important}.inset-y-3\/5{top:60% !important;bottom:60% !important}.inset-x-3\/5{right:60% !important;left:60% !important}.inset-y-4\/5{top:80% !important;bottom:80% !important}.inset-x-4\/5{right:80% !important;left:80% !important}.inset-y-1\/6{top:16.666667% !important;bottom:16.666667% !important}.inset-x-1\/6{right:16.666667% !important;left:16.666667% !important}.inset-y-2\/6{top:33.333333% !important;bottom:33.333333% !important}.inset-x-2\/6{right:33.333333% !important;left:33.333333% !important}.inset-y-3\/6{top:50% !important;bottom:50% !important}.inset-x-3\/6{right:50% !important;left:50% !important}.inset-y-4\/6{top:66.666667% !important;bottom:66.666667% !important}.inset-x-4\/6{right:66.666667% !important;left:66.666667% !important}.inset-y-5\/6{top:83.333333% !important;bottom:83.333333% !important}.inset-x-5\/6{right:83.333333% !important;left:83.333333% !important}.inset-y-1\/12{top:8.333333% !important;bottom:8.333333% !important}.inset-x-1\/12{right:8.333333% !important;left:8.333333% !important}.inset-y-2\/12{top:16.666667% !important;bottom:16.666667% !important}.inset-x-2\/12{right:16.666667% !important;left:16.666667% !important}.inset-y-3\/12{top:25% !important;bottom:25% !important}.inset-x-3\/12{right:25% !important;left:25% !important}.inset-y-4\/12{top:33.333333% !important;bottom:33.333333% !important}.inset-x-4\/12{right:33.333333% !important;left:33.333333% !important}.inset-y-5\/12{top:41.666667% !important;bottom:41.666667% !important}.inset-x-5\/12{right:41.666667% !important;left:41.666667% !important}.inset-y-6\/12{top:50% !important;bottom:50% !important}.inset-x-6\/12{right:50% !important;left:50% !important}.inset-y-7\/12{top:58.333333% !important;bottom:58.333333% !important}.inset-x-7\/12{right:58.333333% !important;left:58.333333% !important}.inset-y-8\/12{top:66.666667% !important;bottom:66.666667% !important}.inset-x-8\/12{right:66.666667% !important;left:66.666667% !important}.inset-y-9\/12{top:75% !important;bottom:75% !important}.inset-x-9\/12{right:75% !important;left:75% !important}.inset-y-10\/12{top:83.333333% !important;bottom:83.333333% !important}.inset-x-10\/12{right:83.333333% !important;left:83.333333% !important}.inset-y-11\/12{top:91.666667% !important;bottom:91.666667% !important}.inset-x-11\/12{right:91.666667% !important;left:91.666667% !important}.inset-y-full{top:100% !important;bottom:100% !important}.inset-x-full{right:100% !important;left:100% !important}.top-0{top:0 !important}.right-0{right:0 !important}.bottom-0{bottom:0 !important}.left-0{left:0 !important}.top-1{top:.25rem !important}.right-1{right:.25rem !important}.bottom-1{bottom:.25rem !important}.left-1{left:.25rem !important}.top-2{top:.5rem !important}.right-2{right:.5rem !important}.bottom-2{bottom:.5rem !important}.left-2{left:.5rem !important}.top-3{top:.75rem !important}.right-3{right:.75rem !important}.bottom-3{bottom:.75rem !important}.left-3{left:.75rem !important}.top-4{top:1rem !important}.right-4{right:1rem !important}.bottom-4{bottom:1rem !important}.left-4{left:1rem !important}.top-5{top:1.25rem !important}.right-5{right:1.25rem !important}.bottom-5{bottom:1.25rem !important}.left-5{left:1.25rem !important}.top-6{top:1.5rem !important}.right-6{right:1.5rem !important}.bottom-6{bottom:1.5rem !important}.left-6{left:1.5rem !important}.top-7{top:1.75rem !important}.right-7{right:1.75rem !important}.bottom-7{bottom:1.75rem !important}.left-7{left:1.75rem !important}.top-8{top:2rem !important}.right-8{right:2rem !important}.bottom-8{bottom:2rem !important}.left-8{left:2rem !important}.top-9{top:2.25rem !important}.right-9{right:2.25rem !important}.bottom-9{bottom:2.25rem !important}.left-9{left:2.25rem !important}.top-10{top:2.5rem !important}.right-10{right:2.5rem !important}.bottom-10{bottom:2.5rem !important}.left-10{left:2.5rem !important}.top-11{top:2.75rem !important}.right-11{right:2.75rem !important}.bottom-11{bottom:2.75rem !important}.left-11{left:2.75rem !important}.top-12{top:3rem !important}.right-12{right:3rem !important}.bottom-12{bottom:3rem !important}.left-12{left:3rem !important}.top-13{top:3.25rem !important}.right-13{right:3.25rem !important}.bottom-13{bottom:3.25rem !important}.left-13{left:3.25rem !important}.top-14{top:3.5rem !important}.right-14{right:3.5rem !important}.bottom-14{bottom:3.5rem !important}.left-14{left:3.5rem !important}.top-15{top:3.75rem !important}.right-15{right:3.75rem !important}.bottom-15{bottom:3.75rem !important}.left-15{left:3.75rem !important}.top-16{top:4rem !important}.right-16{right:4rem !important}.bottom-16{bottom:4rem !important}.left-16{left:4rem !important}.top-20{top:5rem !important}.right-20{right:5rem !important}.bottom-20{bottom:5rem !important}.left-20{left:5rem !important}.top-24{top:6rem !important}.right-24{right:6rem !important}.bottom-24{bottom:6rem !important}.left-24{left:6rem !important}.top-28{top:7rem !important}.right-28{right:7rem !important}.bottom-28{bottom:7rem !important}.left-28{left:7rem !important}.top-32{top:8rem !important}.right-32{right:8rem !important}.bottom-32{bottom:8rem !important}.left-32{left:8rem !important}.top-36{top:9rem !important}.right-36{right:9rem !important}.bottom-36{bottom:9rem !important}.left-36{left:9rem !important}.top-40{top:10rem !important}.right-40{right:10rem !important}.bottom-40{bottom:10rem !important}.left-40{left:10rem !important}.top-48{top:12rem !important}.right-48{right:12rem !important}.bottom-48{bottom:12rem !important}.left-48{left:12rem !important}.top-56{top:14rem !important}.right-56{right:14rem !important}.bottom-56{bottom:14rem !important}.left-56{left:14rem !important}.top-60{top:15rem !important}.right-60{right:15rem !important}.bottom-60{bottom:15rem !important}.left-60{left:15rem !important}.top-64{top:16rem !important}.right-64{right:16rem !important}.bottom-64{bottom:16rem !important}.left-64{left:16rem !important}.top-72{top:18rem !important}.right-72{right:18rem !important}.bottom-72{bottom:18rem !important}.left-72{left:18rem !important}.top-80{top:20rem !important}.right-80{right:20rem !important}.bottom-80{bottom:20rem !important}.left-80{left:20rem !important}.top-96{top:24rem !important}.right-96{right:24rem !important}.bottom-96{bottom:24rem !important}.left-96{left:24rem !important}.top-auto{top:auto !important}.right-auto{right:auto !important}.bottom-auto{bottom:auto !important}.left-auto{left:auto !important}.top-px{top:1px !important}.right-px{right:1px !important}.bottom-px{bottom:1px !important}.left-px{left:1px !important}.top-0\.5{top:.125rem !important}.right-0\.5{right:.125rem !important}.bottom-0\.5{bottom:.125rem !important}.left-0\.5{left:.125rem !important}.top-1\.5{top:.375rem !important}.right-1\.5{right:.375rem !important}.bottom-1\.5{bottom:.375rem !important}.left-1\.5{left:.375rem !important}.top-2\.5{top:.625rem !important}.right-2\.5{right:.625rem !important}.bottom-2\.5{bottom:.625rem !important}.left-2\.5{left:.625rem !important}.top-3\.5{top:.875rem !important}.right-3\.5{right:.875rem !important}.bottom-3\.5{bottom:.875rem !important}.left-3\.5{left:.875rem !important}.top-1\/2{top:50% !important}.right-1\/2{right:50% !important}.bottom-1\/2{bottom:50% !important}.left-1\/2{left:50% !important}.top-1\/3{top:33.333333% !important}.right-1\/3{right:33.333333% !important}.bottom-1\/3{bottom:33.333333% !important}.left-1\/3{left:33.333333% !important}.top-2\/3{top:66.666667% !important}.right-2\/3{right:66.666667% !important}.bottom-2\/3{bottom:66.666667% !important}.left-2\/3{left:66.666667% !important}.top-1\/4{top:25% !important}.right-1\/4{right:25% !important}.bottom-1\/4{bottom:25% !important}.left-1\/4{left:25% !important}.top-2\/4{top:50% !important}.right-2\/4{right:50% !important}.bottom-2\/4{bottom:50% !important}.left-2\/4{left:50% !important}.top-3\/4{top:75% !important}.right-3\/4{right:75% !important}.bottom-3\/4{bottom:75% !important}.left-3\/4{left:75% !important}.top-1\/5{top:20% !important}.right-1\/5{right:20% !important}.bottom-1\/5{bottom:20% !important}.left-1\/5{left:20% !important}.top-2\/5{top:40% !important}.right-2\/5{right:40% !important}.bottom-2\/5{bottom:40% !important}.left-2\/5{left:40% !important}.top-3\/5{top:60% !important}.right-3\/5{right:60% !important}.bottom-3\/5{bottom:60% !important}.left-3\/5{left:60% !important}.top-4\/5{top:80% !important}.right-4\/5{right:80% !important}.bottom-4\/5{bottom:80% !important}.left-4\/5{left:80% !important}.top-1\/6{top:16.666667% !important}.right-1\/6{right:16.666667% !important}.bottom-1\/6{bottom:16.666667% !important}.left-1\/6{left:16.666667% !important}.top-2\/6{top:33.333333% !important}.right-2\/6{right:33.333333% !important}.bottom-2\/6{bottom:33.333333% !important}.left-2\/6{left:33.333333% !important}.top-3\/6{top:50% !important}.right-3\/6{right:50% !important}.bottom-3\/6{bottom:50% !important}.left-3\/6{left:50% !important}.top-4\/6{top:66.666667% !important}.right-4\/6{right:66.666667% !important}.bottom-4\/6{bottom:66.666667% !important}.left-4\/6{left:66.666667% !important}.top-5\/6{top:83.333333% !important}.right-5\/6{right:83.333333% !important}.bottom-5\/6{bottom:83.333333% !important}.left-5\/6{left:83.333333% !important}.top-1\/12{top:8.333333% !important}.right-1\/12{right:8.333333% !important}.bottom-1\/12{bottom:8.333333% !important}.left-1\/12{left:8.333333% !important}.top-2\/12{top:16.666667% !important}.right-2\/12{right:16.666667% !important}.bottom-2\/12{bottom:16.666667% !important}.left-2\/12{left:16.666667% !important}.top-3\/12{top:25% !important}.right-3\/12{right:25% !important}.bottom-3\/12{bottom:25% !important}.left-3\/12{left:25% !important}.top-4\/12{top:33.333333% !important}.right-4\/12{right:33.333333% !important}.bottom-4\/12{bottom:33.333333% !important}.left-4\/12{left:33.333333% !important}.top-5\/12{top:41.666667% !important}.right-5\/12{right:41.666667% !important}.bottom-5\/12{bottom:41.666667% !important}.left-5\/12{left:41.666667% !important}.top-6\/12{top:50% !important}.right-6\/12{right:50% !important}.bottom-6\/12{bottom:50% !important}.left-6\/12{left:50% !important}.top-7\/12{top:58.333333% !important}.right-7\/12{right:58.333333% !important}.bottom-7\/12{bottom:58.333333% !important}.left-7\/12{left:58.333333% !important}.top-8\/12{top:66.666667% !important}.right-8\/12{right:66.666667% !important}.bottom-8\/12{bottom:66.666667% !important}.left-8\/12{left:66.666667% !important}.top-9\/12{top:75% !important}.right-9\/12{right:75% !important}.bottom-9\/12{bottom:75% !important}.left-9\/12{left:75% !important}.top-10\/12{top:83.333333% !important}.right-10\/12{right:83.333333% !important}.bottom-10\/12{bottom:83.333333% !important}.left-10\/12{left:83.333333% !important}.top-11\/12{top:91.666667% !important}.right-11\/12{right:91.666667% !important}.bottom-11\/12{bottom:91.666667% !important}.left-11\/12{left:91.666667% !important}.top-full{top:100% !important}.right-full{right:100% !important}.bottom-full{bottom:100% !important}.left-full{left:100% !important}[dir='ltr'] .ltr\:inset-0{top:0 !important;right:0 !important;bottom:0 !important;left:0 !important}[dir='ltr'] .ltr\:inset-1{top:.25rem !important;right:.25rem !important;bottom:.25rem !important;left:.25rem !important}[dir='ltr'] .ltr\:inset-2{top:.5rem !important;right:.5rem !important;bottom:.5rem !important;left:.5rem !important}[dir='ltr'] .ltr\:inset-3{top:.75rem !important;right:.75rem !important;bottom:.75rem !important;left:.75rem !important}[dir='ltr'] .ltr\:inset-4{top:1rem !important;right:1rem !important;bottom:1rem !important;left:1rem !important}[dir='ltr'] .ltr\:inset-5{top:1.25rem !important;right:1.25rem !important;bottom:1.25rem !important;left:1.25rem !important}[dir='ltr'] .ltr\:inset-6{top:1.5rem !important;right:1.5rem !important;bottom:1.5rem !important;left:1.5rem !important}[dir='ltr'] .ltr\:inset-7{top:1.75rem !important;right:1.75rem !important;bottom:1.75rem !important;left:1.75rem !important}[dir='ltr'] .ltr\:inset-8{top:2rem !important;right:2rem !important;bottom:2rem !important;left:2rem !important}[dir='ltr'] .ltr\:inset-9{top:2.25rem !important;right:2.25rem !important;bottom:2.25rem !important;left:2.25rem !important}[dir='ltr'] .ltr\:inset-10{top:2.5rem !important;right:2.5rem !important;bottom:2.5rem !important;left:2.5rem !important}[dir='ltr'] .ltr\:inset-11{top:2.75rem !important;right:2.75rem !important;bottom:2.75rem !important;left:2.75rem !important}[dir='ltr'] .ltr\:inset-12{top:3rem !important;right:3rem !important;bottom:3rem !important;left:3rem !important}[dir='ltr'] .ltr\:inset-13{top:3.25rem !important;right:3.25rem !important;bottom:3.25rem !important;left:3.25rem !important}[dir='ltr'] .ltr\:inset-14{top:3.5rem !important;right:3.5rem !important;bottom:3.5rem !important;left:3.5rem !important}[dir='ltr'] .ltr\:inset-15{top:3.75rem !important;right:3.75rem !important;bottom:3.75rem !important;left:3.75rem !important}[dir='ltr'] .ltr\:inset-16{top:4rem !important;right:4rem !important;bottom:4rem !important;left:4rem !important}[dir='ltr'] .ltr\:inset-20{top:5rem !important;right:5rem !important;bottom:5rem !important;left:5rem !important}[dir='ltr'] .ltr\:inset-24{top:6rem !important;right:6rem !important;bottom:6rem !important;left:6rem !important}[dir='ltr'] .ltr\:inset-28{top:7rem !important;right:7rem !important;bottom:7rem !important;left:7rem !important}[dir='ltr'] .ltr\:inset-32{top:8rem !important;right:8rem !important;bottom:8rem !important;left:8rem !important}[dir='ltr'] .ltr\:inset-36{top:9rem !important;right:9rem !important;bottom:9rem !important;left:9rem !important}[dir='ltr'] .ltr\:inset-40{top:10rem !important;right:10rem !important;bottom:10rem !important;left:10rem !important}[dir='ltr'] .ltr\:inset-48{top:12rem !important;right:12rem !important;bottom:12rem !important;left:12rem !important}[dir='ltr'] .ltr\:inset-56{top:14rem !important;right:14rem !important;bottom:14rem !important;left:14rem !important}[dir='ltr'] .ltr\:inset-60{top:15rem !important;right:15rem !important;bottom:15rem !important;left:15rem !important}[dir='ltr'] .ltr\:inset-64{top:16rem !important;right:16rem !important;bottom:16rem !important;left:16rem !important}[dir='ltr'] .ltr\:inset-72{top:18rem !important;right:18rem !important;bottom:18rem !important;left:18rem !important}[dir='ltr'] .ltr\:inset-80{top:20rem !important;right:20rem !important;bottom:20rem !important;left:20rem !important}[dir='ltr'] .ltr\:inset-96{top:24rem !important;right:24rem !important;bottom:24rem !important;left:24rem !important}[dir='ltr'] .ltr\:inset-auto{top:auto !important;right:auto !important;bottom:auto !important;left:auto !important}[dir='ltr'] .ltr\:inset-px{top:1px !important;right:1px !important;bottom:1px !important;left:1px !important}[dir='ltr'] .ltr\:inset-0\.5{top:.125rem !important;right:.125rem !important;bottom:.125rem !important;left:.125rem !important}[dir='ltr'] .ltr\:inset-1\.5{top:.375rem !important;right:.375rem !important;bottom:.375rem !important;left:.375rem !important}[dir='ltr'] .ltr\:inset-2\.5{top:.625rem !important;right:.625rem !important;bottom:.625rem !important;left:.625rem !important}[dir='ltr'] .ltr\:inset-3\.5{top:.875rem !important;right:.875rem !important;bottom:.875rem !important;left:.875rem !important}[dir='ltr'] .ltr\:inset-1\/2{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='ltr'] .ltr\:inset-1\/3{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='ltr'] .ltr\:inset-2\/3{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='ltr'] .ltr\:inset-1\/4{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}[dir='ltr'] .ltr\:inset-2\/4{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='ltr'] .ltr\:inset-3\/4{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}[dir='ltr'] .ltr\:inset-1\/5{top:20% !important;right:20% !important;bottom:20% !important;left:20% !important}[dir='ltr'] .ltr\:inset-2\/5{top:40% !important;right:40% !important;bottom:40% !important;left:40% !important}[dir='ltr'] .ltr\:inset-3\/5{top:60% !important;right:60% !important;bottom:60% !important;left:60% !important}[dir='ltr'] .ltr\:inset-4\/5{top:80% !important;right:80% !important;bottom:80% !important;left:80% !important}[dir='ltr'] .ltr\:inset-1\/6{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}[dir='ltr'] .ltr\:inset-2\/6{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='ltr'] .ltr\:inset-3\/6{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='ltr'] .ltr\:inset-4\/6{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='ltr'] .ltr\:inset-5\/6{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}[dir='ltr'] .ltr\:inset-1\/12{top:8.333333% !important;right:8.333333% !important;bottom:8.333333% !important;left:8.333333% !important}[dir='ltr'] .ltr\:inset-2\/12{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}[dir='ltr'] .ltr\:inset-3\/12{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}[dir='ltr'] .ltr\:inset-4\/12{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='ltr'] .ltr\:inset-5\/12{top:41.666667% !important;right:41.666667% !important;bottom:41.666667% !important;left:41.666667% !important}[dir='ltr'] .ltr\:inset-6\/12{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='ltr'] .ltr\:inset-7\/12{top:58.333333% !important;right:58.333333% !important;bottom:58.333333% !important;left:58.333333% !important}[dir='ltr'] .ltr\:inset-8\/12{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='ltr'] .ltr\:inset-9\/12{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}[dir='ltr'] .ltr\:inset-10\/12{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}[dir='ltr'] .ltr\:inset-11\/12{top:91.666667% !important;right:91.666667% !important;bottom:91.666667% !important;left:91.666667% !important}[dir='ltr'] .ltr\:inset-full{top:100% !important;right:100% !important;bottom:100% !important;left:100% !important}[dir='ltr'] .ltr\:inset-y-0{top:0 !important;bottom:0 !important}[dir='ltr'] .ltr\:inset-x-0{right:0 !important;left:0 !important}[dir='ltr'] .ltr\:inset-y-1{top:.25rem !important;bottom:.25rem !important}[dir='ltr'] .ltr\:inset-x-1{right:.25rem !important;left:.25rem !important}[dir='ltr'] .ltr\:inset-y-2{top:.5rem !important;bottom:.5rem !important}[dir='ltr'] .ltr\:inset-x-2{right:.5rem !important;left:.5rem !important}[dir='ltr'] .ltr\:inset-y-3{top:.75rem !important;bottom:.75rem !important}[dir='ltr'] .ltr\:inset-x-3{right:.75rem !important;left:.75rem !important}[dir='ltr'] .ltr\:inset-y-4{top:1rem !important;bottom:1rem !important}[dir='ltr'] .ltr\:inset-x-4{right:1rem !important;left:1rem !important}[dir='ltr'] .ltr\:inset-y-5{top:1.25rem !important;bottom:1.25rem !important}[dir='ltr'] .ltr\:inset-x-5{right:1.25rem !important;left:1.25rem !important}[dir='ltr'] .ltr\:inset-y-6{top:1.5rem !important;bottom:1.5rem !important}[dir='ltr'] .ltr\:inset-x-6{right:1.5rem !important;left:1.5rem !important}[dir='ltr'] .ltr\:inset-y-7{top:1.75rem !important;bottom:1.75rem !important}[dir='ltr'] .ltr\:inset-x-7{right:1.75rem !important;left:1.75rem !important}[dir='ltr'] .ltr\:inset-y-8{top:2rem !important;bottom:2rem !important}[dir='ltr'] .ltr\:inset-x-8{right:2rem !important;left:2rem !important}[dir='ltr'] .ltr\:inset-y-9{top:2.25rem !important;bottom:2.25rem !important}[dir='ltr'] .ltr\:inset-x-9{right:2.25rem !important;left:2.25rem !important}[dir='ltr'] .ltr\:inset-y-10{top:2.5rem !important;bottom:2.5rem !important}[dir='ltr'] .ltr\:inset-x-10{right:2.5rem !important;left:2.5rem !important}[dir='ltr'] .ltr\:inset-y-11{top:2.75rem !important;bottom:2.75rem !important}[dir='ltr'] .ltr\:inset-x-11{right:2.75rem !important;left:2.75rem !important}[dir='ltr'] .ltr\:inset-y-12{top:3rem !important;bottom:3rem !important}[dir='ltr'] .ltr\:inset-x-12{right:3rem !important;left:3rem !important}[dir='ltr'] .ltr\:inset-y-13{top:3.25rem !important;bottom:3.25rem !important}[dir='ltr'] .ltr\:inset-x-13{right:3.25rem !important;left:3.25rem !important}[dir='ltr'] .ltr\:inset-y-14{top:3.5rem !important;bottom:3.5rem !important}[dir='ltr'] .ltr\:inset-x-14{right:3.5rem !important;left:3.5rem !important}[dir='ltr'] .ltr\:inset-y-15{top:3.75rem !important;bottom:3.75rem !important}[dir='ltr'] .ltr\:inset-x-15{right:3.75rem !important;left:3.75rem !important}[dir='ltr'] .ltr\:inset-y-16{top:4rem !important;bottom:4rem !important}[dir='ltr'] .ltr\:inset-x-16{right:4rem !important;left:4rem !important}[dir='ltr'] .ltr\:inset-y-20{top:5rem !important;bottom:5rem !important}[dir='ltr'] .ltr\:inset-x-20{right:5rem !important;left:5rem !important}[dir='ltr'] .ltr\:inset-y-24{top:6rem !important;bottom:6rem !important}[dir='ltr'] .ltr\:inset-x-24{right:6rem !important;left:6rem !important}[dir='ltr'] .ltr\:inset-y-28{top:7rem !important;bottom:7rem !important}[dir='ltr'] .ltr\:inset-x-28{right:7rem !important;left:7rem !important}[dir='ltr'] .ltr\:inset-y-32{top:8rem !important;bottom:8rem !important}[dir='ltr'] .ltr\:inset-x-32{right:8rem !important;left:8rem !important}[dir='ltr'] .ltr\:inset-y-36{top:9rem !important;bottom:9rem !important}[dir='ltr'] .ltr\:inset-x-36{right:9rem !important;left:9rem !important}[dir='ltr'] .ltr\:inset-y-40{top:10rem !important;bottom:10rem !important}[dir='ltr'] .ltr\:inset-x-40{right:10rem !important;left:10rem !important}[dir='ltr'] .ltr\:inset-y-48{top:12rem !important;bottom:12rem !important}[dir='ltr'] .ltr\:inset-x-48{right:12rem !important;left:12rem !important}[dir='ltr'] .ltr\:inset-y-56{top:14rem !important;bottom:14rem !important}[dir='ltr'] .ltr\:inset-x-56{right:14rem !important;left:14rem !important}[dir='ltr'] .ltr\:inset-y-60{top:15rem !important;bottom:15rem !important}[dir='ltr'] .ltr\:inset-x-60{right:15rem !important;left:15rem !important}[dir='ltr'] .ltr\:inset-y-64{top:16rem !important;bottom:16rem !important}[dir='ltr'] .ltr\:inset-x-64{right:16rem !important;left:16rem !important}[dir='ltr'] .ltr\:inset-y-72{top:18rem !important;bottom:18rem !important}[dir='ltr'] .ltr\:inset-x-72{right:18rem !important;left:18rem !important}[dir='ltr'] .ltr\:inset-y-80{top:20rem !important;bottom:20rem !important}[dir='ltr'] .ltr\:inset-x-80{right:20rem !important;left:20rem !important}[dir='ltr'] .ltr\:inset-y-96{top:24rem !important;bottom:24rem !important}[dir='ltr'] .ltr\:inset-x-96{right:24rem !important;left:24rem !important}[dir='ltr'] .ltr\:inset-y-auto{top:auto !important;bottom:auto !important}[dir='ltr'] .ltr\:inset-x-auto{right:auto !important;left:auto !important}[dir='ltr'] .ltr\:inset-y-px{top:1px !important;bottom:1px !important}[dir='ltr'] .ltr\:inset-x-px{right:1px !important;left:1px !important}[dir='ltr'] .ltr\:inset-y-0\.5{top:.125rem !important;bottom:.125rem !important}[dir='ltr'] .ltr\:inset-x-0\.5{right:.125rem !important;left:.125rem !important}[dir='ltr'] .ltr\:inset-y-1\.5{top:.375rem !important;bottom:.375rem !important}[dir='ltr'] .ltr\:inset-x-1\.5{right:.375rem !important;left:.375rem !important}[dir='ltr'] .ltr\:inset-y-2\.5{top:.625rem !important;bottom:.625rem !important}[dir='ltr'] .ltr\:inset-x-2\.5{right:.625rem !important;left:.625rem !important}[dir='ltr'] .ltr\:inset-y-3\.5{top:.875rem !important;bottom:.875rem !important}[dir='ltr'] .ltr\:inset-x-3\.5{right:.875rem !important;left:.875rem !important}[dir='ltr'] .ltr\:inset-y-1\/2{top:50% !important;bottom:50% !important}[dir='ltr'] .ltr\:inset-x-1\/2{right:50% !important;left:50% !important}[dir='ltr'] .ltr\:inset-y-1\/3{top:33.333333% !important;bottom:33.333333% !important}[dir='ltr'] .ltr\:inset-x-1\/3{right:33.333333% !important;left:33.333333% !important}[dir='ltr'] .ltr\:inset-y-2\/3{top:66.666667% !important;bottom:66.666667% !important}[dir='ltr'] .ltr\:inset-x-2\/3{right:66.666667% !important;left:66.666667% !important}[dir='ltr'] .ltr\:inset-y-1\/4{top:25% !important;bottom:25% !important}[dir='ltr'] .ltr\:inset-x-1\/4{right:25% !important;left:25% !important}[dir='ltr'] .ltr\:inset-y-2\/4{top:50% !important;bottom:50% !important}[dir='ltr'] .ltr\:inset-x-2\/4{right:50% !important;left:50% !important}[dir='ltr'] .ltr\:inset-y-3\/4{top:75% !important;bottom:75% !important}[dir='ltr'] .ltr\:inset-x-3\/4{right:75% !important;left:75% !important}[dir='ltr'] .ltr\:inset-y-1\/5{top:20% !important;bottom:20% !important}[dir='ltr'] .ltr\:inset-x-1\/5{right:20% !important;left:20% !important}[dir='ltr'] .ltr\:inset-y-2\/5{top:40% !important;bottom:40% !important}[dir='ltr'] .ltr\:inset-x-2\/5{right:40% !important;left:40% !important}[dir='ltr'] .ltr\:inset-y-3\/5{top:60% !important;bottom:60% !important}[dir='ltr'] .ltr\:inset-x-3\/5{right:60% !important;left:60% !important}[dir='ltr'] .ltr\:inset-y-4\/5{top:80% !important;bottom:80% !important}[dir='ltr'] .ltr\:inset-x-4\/5{right:80% !important;left:80% !important}[dir='ltr'] .ltr\:inset-y-1\/6{top:16.666667% !important;bottom:16.666667% !important}[dir='ltr'] .ltr\:inset-x-1\/6{right:16.666667% !important;left:16.666667% !important}[dir='ltr'] .ltr\:inset-y-2\/6{top:33.333333% !important;bottom:33.333333% !important}[dir='ltr'] .ltr\:inset-x-2\/6{right:33.333333% !important;left:33.333333% !important}[dir='ltr'] .ltr\:inset-y-3\/6{top:50% !important;bottom:50% !important}[dir='ltr'] .ltr\:inset-x-3\/6{right:50% !important;left:50% !important}[dir='ltr'] .ltr\:inset-y-4\/6{top:66.666667% !important;bottom:66.666667% !important}[dir='ltr'] .ltr\:inset-x-4\/6{right:66.666667% !important;left:66.666667% !important}[dir='ltr'] .ltr\:inset-y-5\/6{top:83.333333% !important;bottom:83.333333% !important}[dir='ltr'] .ltr\:inset-x-5\/6{right:83.333333% !important;left:83.333333% !important}[dir='ltr'] .ltr\:inset-y-1\/12{top:8.333333% !important;bottom:8.333333% !important}[dir='ltr'] .ltr\:inset-x-1\/12{right:8.333333% !important;left:8.333333% !important}[dir='ltr'] .ltr\:inset-y-2\/12{top:16.666667% !important;bottom:16.666667% !important}[dir='ltr'] .ltr\:inset-x-2\/12{right:16.666667% !important;left:16.666667% !important}[dir='ltr'] .ltr\:inset-y-3\/12{top:25% !important;bottom:25% !important}[dir='ltr'] .ltr\:inset-x-3\/12{right:25% !important;left:25% !important}[dir='ltr'] .ltr\:inset-y-4\/12{top:33.333333% !important;bottom:33.333333% !important}[dir='ltr'] .ltr\:inset-x-4\/12{right:33.333333% !important;left:33.333333% !important}[dir='ltr'] .ltr\:inset-y-5\/12{top:41.666667% !important;bottom:41.666667% !important}[dir='ltr'] .ltr\:inset-x-5\/12{right:41.666667% !important;left:41.666667% !important}[dir='ltr'] .ltr\:inset-y-6\/12{top:50% !important;bottom:50% !important}[dir='ltr'] .ltr\:inset-x-6\/12{right:50% !important;left:50% !important}[dir='ltr'] .ltr\:inset-y-7\/12{top:58.333333% !important;bottom:58.333333% !important}[dir='ltr'] .ltr\:inset-x-7\/12{right:58.333333% !important;left:58.333333% !important}[dir='ltr'] .ltr\:inset-y-8\/12{top:66.666667% !important;bottom:66.666667% !important}[dir='ltr'] .ltr\:inset-x-8\/12{right:66.666667% !important;left:66.666667% !important}[dir='ltr'] .ltr\:inset-y-9\/12{top:75% !important;bottom:75% !important}[dir='ltr'] .ltr\:inset-x-9\/12{right:75% !important;left:75% !important}[dir='ltr'] .ltr\:inset-y-10\/12{top:83.333333% !important;bottom:83.333333% !important}[dir='ltr'] .ltr\:inset-x-10\/12{right:83.333333% !important;left:83.333333% !important}[dir='ltr'] .ltr\:inset-y-11\/12{top:91.666667% !important;bottom:91.666667% !important}[dir='ltr'] .ltr\:inset-x-11\/12{right:91.666667% !important;left:91.666667% !important}[dir='ltr'] .ltr\:inset-y-full{top:100% !important;bottom:100% !important}[dir='ltr'] .ltr\:inset-x-full{right:100% !important;left:100% !important}[dir='ltr'] .ltr\:top-0{top:0 !important}[dir='ltr'] .ltr\:right-0{right:0 !important}[dir='ltr'] .ltr\:bottom-0{bottom:0 !important}[dir='ltr'] .ltr\:left-0{left:0 !important}[dir='ltr'] .ltr\:top-1{top:.25rem !important}[dir='ltr'] .ltr\:right-1{right:.25rem !important}[dir='ltr'] .ltr\:bottom-1{bottom:.25rem !important}[dir='ltr'] .ltr\:left-1{left:.25rem !important}[dir='ltr'] .ltr\:top-2{top:.5rem !important}[dir='ltr'] .ltr\:right-2{right:.5rem !important}[dir='ltr'] .ltr\:bottom-2{bottom:.5rem !important}[dir='ltr'] .ltr\:left-2{left:.5rem !important}[dir='ltr'] .ltr\:top-3{top:.75rem !important}[dir='ltr'] .ltr\:right-3{right:.75rem !important}[dir='ltr'] .ltr\:bottom-3{bottom:.75rem !important}[dir='ltr'] .ltr\:left-3{left:.75rem !important}[dir='ltr'] .ltr\:top-4{top:1rem !important}[dir='ltr'] .ltr\:right-4{right:1rem !important}[dir='ltr'] .ltr\:bottom-4{bottom:1rem !important}[dir='ltr'] .ltr\:left-4{left:1rem !important}[dir='ltr'] .ltr\:top-5{top:1.25rem !important}[dir='ltr'] .ltr\:right-5{right:1.25rem !important}[dir='ltr'] .ltr\:bottom-5{bottom:1.25rem !important}[dir='ltr'] .ltr\:left-5{left:1.25rem !important}[dir='ltr'] .ltr\:top-6{top:1.5rem !important}[dir='ltr'] .ltr\:right-6{right:1.5rem !important}[dir='ltr'] .ltr\:bottom-6{bottom:1.5rem !important}[dir='ltr'] .ltr\:left-6{left:1.5rem !important}[dir='ltr'] .ltr\:top-7{top:1.75rem !important}[dir='ltr'] .ltr\:right-7{right:1.75rem !important}[dir='ltr'] .ltr\:bottom-7{bottom:1.75rem !important}[dir='ltr'] .ltr\:left-7{left:1.75rem !important}[dir='ltr'] .ltr\:top-8{top:2rem !important}[dir='ltr'] .ltr\:right-8{right:2rem !important}[dir='ltr'] .ltr\:bottom-8{bottom:2rem !important}[dir='ltr'] .ltr\:left-8{left:2rem !important}[dir='ltr'] .ltr\:top-9{top:2.25rem !important}[dir='ltr'] .ltr\:right-9{right:2.25rem !important}[dir='ltr'] .ltr\:bottom-9{bottom:2.25rem !important}[dir='ltr'] .ltr\:left-9{left:2.25rem !important}[dir='ltr'] .ltr\:top-10{top:2.5rem !important}[dir='ltr'] .ltr\:right-10{right:2.5rem !important}[dir='ltr'] .ltr\:bottom-10{bottom:2.5rem !important}[dir='ltr'] .ltr\:left-10{left:2.5rem !important}[dir='ltr'] .ltr\:top-11{top:2.75rem !important}[dir='ltr'] .ltr\:right-11{right:2.75rem !important}[dir='ltr'] .ltr\:bottom-11{bottom:2.75rem !important}[dir='ltr'] .ltr\:left-11{left:2.75rem !important}[dir='ltr'] .ltr\:top-12{top:3rem !important}[dir='ltr'] .ltr\:right-12{right:3rem !important}[dir='ltr'] .ltr\:bottom-12{bottom:3rem !important}[dir='ltr'] .ltr\:left-12{left:3rem !important}[dir='ltr'] .ltr\:top-13{top:3.25rem !important}[dir='ltr'] .ltr\:right-13{right:3.25rem !important}[dir='ltr'] .ltr\:bottom-13{bottom:3.25rem !important}[dir='ltr'] .ltr\:left-13{left:3.25rem !important}[dir='ltr'] .ltr\:top-14{top:3.5rem !important}[dir='ltr'] .ltr\:right-14{right:3.5rem !important}[dir='ltr'] .ltr\:bottom-14{bottom:3.5rem !important}[dir='ltr'] .ltr\:left-14{left:3.5rem !important}[dir='ltr'] .ltr\:top-15{top:3.75rem !important}[dir='ltr'] .ltr\:right-15{right:3.75rem !important}[dir='ltr'] .ltr\:bottom-15{bottom:3.75rem !important}[dir='ltr'] .ltr\:left-15{left:3.75rem !important}[dir='ltr'] .ltr\:top-16{top:4rem !important}[dir='ltr'] .ltr\:right-16{right:4rem !important}[dir='ltr'] .ltr\:bottom-16{bottom:4rem !important}[dir='ltr'] .ltr\:left-16{left:4rem !important}[dir='ltr'] .ltr\:top-20{top:5rem !important}[dir='ltr'] .ltr\:right-20{right:5rem !important}[dir='ltr'] .ltr\:bottom-20{bottom:5rem !important}[dir='ltr'] .ltr\:left-20{left:5rem !important}[dir='ltr'] .ltr\:top-24{top:6rem !important}[dir='ltr'] .ltr\:right-24{right:6rem !important}[dir='ltr'] .ltr\:bottom-24{bottom:6rem !important}[dir='ltr'] .ltr\:left-24{left:6rem !important}[dir='ltr'] .ltr\:top-28{top:7rem !important}[dir='ltr'] .ltr\:right-28{right:7rem !important}[dir='ltr'] .ltr\:bottom-28{bottom:7rem !important}[dir='ltr'] .ltr\:left-28{left:7rem !important}[dir='ltr'] .ltr\:top-32{top:8rem !important}[dir='ltr'] .ltr\:right-32{right:8rem !important}[dir='ltr'] .ltr\:bottom-32{bottom:8rem !important}[dir='ltr'] .ltr\:left-32{left:8rem !important}[dir='ltr'] .ltr\:top-36{top:9rem !important}[dir='ltr'] .ltr\:right-36{right:9rem !important}[dir='ltr'] .ltr\:bottom-36{bottom:9rem !important}[dir='ltr'] .ltr\:left-36{left:9rem !important}[dir='ltr'] .ltr\:top-40{top:10rem !important}[dir='ltr'] .ltr\:right-40{right:10rem !important}[dir='ltr'] .ltr\:bottom-40{bottom:10rem !important}[dir='ltr'] .ltr\:left-40{left:10rem !important}[dir='ltr'] .ltr\:top-48{top:12rem !important}[dir='ltr'] .ltr\:right-48{right:12rem !important}[dir='ltr'] .ltr\:bottom-48{bottom:12rem !important}[dir='ltr'] .ltr\:left-48{left:12rem !important}[dir='ltr'] .ltr\:top-56{top:14rem !important}[dir='ltr'] .ltr\:right-56{right:14rem !important}[dir='ltr'] .ltr\:bottom-56{bottom:14rem !important}[dir='ltr'] .ltr\:left-56{left:14rem !important}[dir='ltr'] .ltr\:top-60{top:15rem !important}[dir='ltr'] .ltr\:right-60{right:15rem !important}[dir='ltr'] .ltr\:bottom-60{bottom:15rem !important}[dir='ltr'] .ltr\:left-60{left:15rem !important}[dir='ltr'] .ltr\:top-64{top:16rem !important}[dir='ltr'] .ltr\:right-64{right:16rem !important}[dir='ltr'] .ltr\:bottom-64{bottom:16rem !important}[dir='ltr'] .ltr\:left-64{left:16rem !important}[dir='ltr'] .ltr\:top-72{top:18rem !important}[dir='ltr'] .ltr\:right-72{right:18rem !important}[dir='ltr'] .ltr\:bottom-72{bottom:18rem !important}[dir='ltr'] .ltr\:left-72{left:18rem !important}[dir='ltr'] .ltr\:top-80{top:20rem !important}[dir='ltr'] .ltr\:right-80{right:20rem !important}[dir='ltr'] .ltr\:bottom-80{bottom:20rem !important}[dir='ltr'] .ltr\:left-80{left:20rem !important}[dir='ltr'] .ltr\:top-96{top:24rem !important}[dir='ltr'] .ltr\:right-96{right:24rem !important}[dir='ltr'] .ltr\:bottom-96{bottom:24rem !important}[dir='ltr'] .ltr\:left-96{left:24rem !important}[dir='ltr'] .ltr\:top-auto{top:auto !important}[dir='ltr'] .ltr\:right-auto{right:auto !important}[dir='ltr'] .ltr\:bottom-auto{bottom:auto !important}[dir='ltr'] .ltr\:left-auto{left:auto !important}[dir='ltr'] .ltr\:top-px{top:1px !important}[dir='ltr'] .ltr\:right-px{right:1px !important}[dir='ltr'] .ltr\:bottom-px{bottom:1px !important}[dir='ltr'] .ltr\:left-px{left:1px !important}[dir='ltr'] .ltr\:top-0\.5{top:.125rem !important}[dir='ltr'] .ltr\:right-0\.5{right:.125rem !important}[dir='ltr'] .ltr\:bottom-0\.5{bottom:.125rem !important}[dir='ltr'] .ltr\:left-0\.5{left:.125rem !important}[dir='ltr'] .ltr\:top-1\.5{top:.375rem !important}[dir='ltr'] .ltr\:right-1\.5{right:.375rem !important}[dir='ltr'] .ltr\:bottom-1\.5{bottom:.375rem !important}[dir='ltr'] .ltr\:left-1\.5{left:.375rem !important}[dir='ltr'] .ltr\:top-2\.5{top:.625rem !important}[dir='ltr'] .ltr\:right-2\.5{right:.625rem !important}[dir='ltr'] .ltr\:bottom-2\.5{bottom:.625rem !important}[dir='ltr'] .ltr\:left-2\.5{left:.625rem !important}[dir='ltr'] .ltr\:top-3\.5{top:.875rem !important}[dir='ltr'] .ltr\:right-3\.5{right:.875rem !important}[dir='ltr'] .ltr\:bottom-3\.5{bottom:.875rem !important}[dir='ltr'] .ltr\:left-3\.5{left:.875rem !important}[dir='ltr'] .ltr\:top-1\/2{top:50% !important}[dir='ltr'] .ltr\:right-1\/2{right:50% !important}[dir='ltr'] .ltr\:bottom-1\/2{bottom:50% !important}[dir='ltr'] .ltr\:left-1\/2{left:50% !important}[dir='ltr'] .ltr\:top-1\/3{top:33.333333% !important}[dir='ltr'] .ltr\:right-1\/3{right:33.333333% !important}[dir='ltr'] .ltr\:bottom-1\/3{bottom:33.333333% !important}[dir='ltr'] .ltr\:left-1\/3{left:33.333333% !important}[dir='ltr'] .ltr\:top-2\/3{top:66.666667% !important}[dir='ltr'] .ltr\:right-2\/3{right:66.666667% !important}[dir='ltr'] .ltr\:bottom-2\/3{bottom:66.666667% !important}[dir='ltr'] .ltr\:left-2\/3{left:66.666667% !important}[dir='ltr'] .ltr\:top-1\/4{top:25% !important}[dir='ltr'] .ltr\:right-1\/4{right:25% !important}[dir='ltr'] .ltr\:bottom-1\/4{bottom:25% !important}[dir='ltr'] .ltr\:left-1\/4{left:25% !important}[dir='ltr'] .ltr\:top-2\/4{top:50% !important}[dir='ltr'] .ltr\:right-2\/4{right:50% !important}[dir='ltr'] .ltr\:bottom-2\/4{bottom:50% !important}[dir='ltr'] .ltr\:left-2\/4{left:50% !important}[dir='ltr'] .ltr\:top-3\/4{top:75% !important}[dir='ltr'] .ltr\:right-3\/4{right:75% !important}[dir='ltr'] .ltr\:bottom-3\/4{bottom:75% !important}[dir='ltr'] .ltr\:left-3\/4{left:75% !important}[dir='ltr'] .ltr\:top-1\/5{top:20% !important}[dir='ltr'] .ltr\:right-1\/5{right:20% !important}[dir='ltr'] .ltr\:bottom-1\/5{bottom:20% !important}[dir='ltr'] .ltr\:left-1\/5{left:20% !important}[dir='ltr'] .ltr\:top-2\/5{top:40% !important}[dir='ltr'] .ltr\:right-2\/5{right:40% !important}[dir='ltr'] .ltr\:bottom-2\/5{bottom:40% !important}[dir='ltr'] .ltr\:left-2\/5{left:40% !important}[dir='ltr'] .ltr\:top-3\/5{top:60% !important}[dir='ltr'] .ltr\:right-3\/5{right:60% !important}[dir='ltr'] .ltr\:bottom-3\/5{bottom:60% !important}[dir='ltr'] .ltr\:left-3\/5{left:60% !important}[dir='ltr'] .ltr\:top-4\/5{top:80% !important}[dir='ltr'] .ltr\:right-4\/5{right:80% !important}[dir='ltr'] .ltr\:bottom-4\/5{bottom:80% !important}[dir='ltr'] .ltr\:left-4\/5{left:80% !important}[dir='ltr'] .ltr\:top-1\/6{top:16.666667% !important}[dir='ltr'] .ltr\:right-1\/6{right:16.666667% !important}[dir='ltr'] .ltr\:bottom-1\/6{bottom:16.666667% !important}[dir='ltr'] .ltr\:left-1\/6{left:16.666667% !important}[dir='ltr'] .ltr\:top-2\/6{top:33.333333% !important}[dir='ltr'] .ltr\:right-2\/6{right:33.333333% !important}[dir='ltr'] .ltr\:bottom-2\/6{bottom:33.333333% !important}[dir='ltr'] .ltr\:left-2\/6{left:33.333333% !important}[dir='ltr'] .ltr\:top-3\/6{top:50% !important}[dir='ltr'] .ltr\:right-3\/6{right:50% !important}[dir='ltr'] .ltr\:bottom-3\/6{bottom:50% !important}[dir='ltr'] .ltr\:left-3\/6{left:50% !important}[dir='ltr'] .ltr\:top-4\/6{top:66.666667% !important}[dir='ltr'] .ltr\:right-4\/6{right:66.666667% !important}[dir='ltr'] .ltr\:bottom-4\/6{bottom:66.666667% !important}[dir='ltr'] .ltr\:left-4\/6{left:66.666667% !important}[dir='ltr'] .ltr\:top-5\/6{top:83.333333% !important}[dir='ltr'] .ltr\:right-5\/6{right:83.333333% !important}[dir='ltr'] .ltr\:bottom-5\/6{bottom:83.333333% !important}[dir='ltr'] .ltr\:left-5\/6{left:83.333333% !important}[dir='ltr'] .ltr\:top-1\/12{top:8.333333% !important}[dir='ltr'] .ltr\:right-1\/12{right:8.333333% !important}[dir='ltr'] .ltr\:bottom-1\/12{bottom:8.333333% !important}[dir='ltr'] .ltr\:left-1\/12{left:8.333333% !important}[dir='ltr'] .ltr\:top-2\/12{top:16.666667% !important}[dir='ltr'] .ltr\:right-2\/12{right:16.666667% !important}[dir='ltr'] .ltr\:bottom-2\/12{bottom:16.666667% !important}[dir='ltr'] .ltr\:left-2\/12{left:16.666667% !important}[dir='ltr'] .ltr\:top-3\/12{top:25% !important}[dir='ltr'] .ltr\:right-3\/12{right:25% !important}[dir='ltr'] .ltr\:bottom-3\/12{bottom:25% !important}[dir='ltr'] .ltr\:left-3\/12{left:25% !important}[dir='ltr'] .ltr\:top-4\/12{top:33.333333% !important}[dir='ltr'] .ltr\:right-4\/12{right:33.333333% !important}[dir='ltr'] .ltr\:bottom-4\/12{bottom:33.333333% !important}[dir='ltr'] .ltr\:left-4\/12{left:33.333333% !important}[dir='ltr'] .ltr\:top-5\/12{top:41.666667% !important}[dir='ltr'] .ltr\:right-5\/12{right:41.666667% !important}[dir='ltr'] .ltr\:bottom-5\/12{bottom:41.666667% !important}[dir='ltr'] .ltr\:left-5\/12{left:41.666667% !important}[dir='ltr'] .ltr\:top-6\/12{top:50% !important}[dir='ltr'] .ltr\:right-6\/12{right:50% !important}[dir='ltr'] .ltr\:bottom-6\/12{bottom:50% !important}[dir='ltr'] .ltr\:left-6\/12{left:50% !important}[dir='ltr'] .ltr\:top-7\/12{top:58.333333% !important}[dir='ltr'] .ltr\:right-7\/12{right:58.333333% !important}[dir='ltr'] .ltr\:bottom-7\/12{bottom:58.333333% !important}[dir='ltr'] .ltr\:left-7\/12{left:58.333333% !important}[dir='ltr'] .ltr\:top-8\/12{top:66.666667% !important}[dir='ltr'] .ltr\:right-8\/12{right:66.666667% !important}[dir='ltr'] .ltr\:bottom-8\/12{bottom:66.666667% !important}[dir='ltr'] .ltr\:left-8\/12{left:66.666667% !important}[dir='ltr'] .ltr\:top-9\/12{top:75% !important}[dir='ltr'] .ltr\:right-9\/12{right:75% !important}[dir='ltr'] .ltr\:bottom-9\/12{bottom:75% !important}[dir='ltr'] .ltr\:left-9\/12{left:75% !important}[dir='ltr'] .ltr\:top-10\/12{top:83.333333% !important}[dir='ltr'] .ltr\:right-10\/12{right:83.333333% !important}[dir='ltr'] .ltr\:bottom-10\/12{bottom:83.333333% !important}[dir='ltr'] .ltr\:left-10\/12{left:83.333333% !important}[dir='ltr'] .ltr\:top-11\/12{top:91.666667% !important}[dir='ltr'] .ltr\:right-11\/12{right:91.666667% !important}[dir='ltr'] .ltr\:bottom-11\/12{bottom:91.666667% !important}[dir='ltr'] .ltr\:left-11\/12{left:91.666667% !important}[dir='ltr'] .ltr\:top-full{top:100% !important}[dir='ltr'] .ltr\:right-full{right:100% !important}[dir='ltr'] .ltr\:bottom-full{bottom:100% !important}[dir='ltr'] .ltr\:left-full{left:100% !important}[dir='rtl'] .rtl\:inset-0{top:0 !important;right:0 !important;bottom:0 !important;left:0 !important}[dir='rtl'] .rtl\:inset-1{top:.25rem !important;right:.25rem !important;bottom:.25rem !important;left:.25rem !important}[dir='rtl'] .rtl\:inset-2{top:.5rem !important;right:.5rem !important;bottom:.5rem !important;left:.5rem !important}[dir='rtl'] .rtl\:inset-3{top:.75rem !important;right:.75rem !important;bottom:.75rem !important;left:.75rem !important}[dir='rtl'] .rtl\:inset-4{top:1rem !important;right:1rem !important;bottom:1rem !important;left:1rem !important}[dir='rtl'] .rtl\:inset-5{top:1.25rem !important;right:1.25rem !important;bottom:1.25rem !important;left:1.25rem !important}[dir='rtl'] .rtl\:inset-6{top:1.5rem !important;right:1.5rem !important;bottom:1.5rem !important;left:1.5rem !important}[dir='rtl'] .rtl\:inset-7{top:1.75rem !important;right:1.75rem !important;bottom:1.75rem !important;left:1.75rem !important}[dir='rtl'] .rtl\:inset-8{top:2rem !important;right:2rem !important;bottom:2rem !important;left:2rem !important}[dir='rtl'] .rtl\:inset-9{top:2.25rem !important;right:2.25rem !important;bottom:2.25rem !important;left:2.25rem !important}[dir='rtl'] .rtl\:inset-10{top:2.5rem !important;right:2.5rem !important;bottom:2.5rem !important;left:2.5rem !important}[dir='rtl'] .rtl\:inset-11{top:2.75rem !important;right:2.75rem !important;bottom:2.75rem !important;left:2.75rem !important}[dir='rtl'] .rtl\:inset-12{top:3rem !important;right:3rem !important;bottom:3rem !important;left:3rem !important}[dir='rtl'] .rtl\:inset-13{top:3.25rem !important;right:3.25rem !important;bottom:3.25rem !important;left:3.25rem !important}[dir='rtl'] .rtl\:inset-14{top:3.5rem !important;right:3.5rem !important;bottom:3.5rem !important;left:3.5rem !important}[dir='rtl'] .rtl\:inset-15{top:3.75rem !important;right:3.75rem !important;bottom:3.75rem !important;left:3.75rem !important}[dir='rtl'] .rtl\:inset-16{top:4rem !important;right:4rem !important;bottom:4rem !important;left:4rem !important}[dir='rtl'] .rtl\:inset-20{top:5rem !important;right:5rem !important;bottom:5rem !important;left:5rem !important}[dir='rtl'] .rtl\:inset-24{top:6rem !important;right:6rem !important;bottom:6rem !important;left:6rem !important}[dir='rtl'] .rtl\:inset-28{top:7rem !important;right:7rem !important;bottom:7rem !important;left:7rem !important}[dir='rtl'] .rtl\:inset-32{top:8rem !important;right:8rem !important;bottom:8rem !important;left:8rem !important}[dir='rtl'] .rtl\:inset-36{top:9rem !important;right:9rem !important;bottom:9rem !important;left:9rem !important}[dir='rtl'] .rtl\:inset-40{top:10rem !important;right:10rem !important;bottom:10rem !important;left:10rem !important}[dir='rtl'] .rtl\:inset-48{top:12rem !important;right:12rem !important;bottom:12rem !important;left:12rem !important}[dir='rtl'] .rtl\:inset-56{top:14rem !important;right:14rem !important;bottom:14rem !important;left:14rem !important}[dir='rtl'] .rtl\:inset-60{top:15rem !important;right:15rem !important;bottom:15rem !important;left:15rem !important}[dir='rtl'] .rtl\:inset-64{top:16rem !important;right:16rem !important;bottom:16rem !important;left:16rem !important}[dir='rtl'] .rtl\:inset-72{top:18rem !important;right:18rem !important;bottom:18rem !important;left:18rem !important}[dir='rtl'] .rtl\:inset-80{top:20rem !important;right:20rem !important;bottom:20rem !important;left:20rem !important}[dir='rtl'] .rtl\:inset-96{top:24rem !important;right:24rem !important;bottom:24rem !important;left:24rem !important}[dir='rtl'] .rtl\:inset-auto{top:auto !important;right:auto !important;bottom:auto !important;left:auto !important}[dir='rtl'] .rtl\:inset-px{top:1px !important;right:1px !important;bottom:1px !important;left:1px !important}[dir='rtl'] .rtl\:inset-0\.5{top:.125rem !important;right:.125rem !important;bottom:.125rem !important;left:.125rem !important}[dir='rtl'] .rtl\:inset-1\.5{top:.375rem !important;right:.375rem !important;bottom:.375rem !important;left:.375rem !important}[dir='rtl'] .rtl\:inset-2\.5{top:.625rem !important;right:.625rem !important;bottom:.625rem !important;left:.625rem !important}[dir='rtl'] .rtl\:inset-3\.5{top:.875rem !important;right:.875rem !important;bottom:.875rem !important;left:.875rem !important}[dir='rtl'] .rtl\:inset-1\/2{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='rtl'] .rtl\:inset-1\/3{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='rtl'] .rtl\:inset-2\/3{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='rtl'] .rtl\:inset-1\/4{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}[dir='rtl'] .rtl\:inset-2\/4{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='rtl'] .rtl\:inset-3\/4{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}[dir='rtl'] .rtl\:inset-1\/5{top:20% !important;right:20% !important;bottom:20% !important;left:20% !important}[dir='rtl'] .rtl\:inset-2\/5{top:40% !important;right:40% !important;bottom:40% !important;left:40% !important}[dir='rtl'] .rtl\:inset-3\/5{top:60% !important;right:60% !important;bottom:60% !important;left:60% !important}[dir='rtl'] .rtl\:inset-4\/5{top:80% !important;right:80% !important;bottom:80% !important;left:80% !important}[dir='rtl'] .rtl\:inset-1\/6{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}[dir='rtl'] .rtl\:inset-2\/6{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='rtl'] .rtl\:inset-3\/6{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='rtl'] .rtl\:inset-4\/6{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='rtl'] .rtl\:inset-5\/6{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}[dir='rtl'] .rtl\:inset-1\/12{top:8.333333% !important;right:8.333333% !important;bottom:8.333333% !important;left:8.333333% !important}[dir='rtl'] .rtl\:inset-2\/12{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}[dir='rtl'] .rtl\:inset-3\/12{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}[dir='rtl'] .rtl\:inset-4\/12{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='rtl'] .rtl\:inset-5\/12{top:41.666667% !important;right:41.666667% !important;bottom:41.666667% !important;left:41.666667% !important}[dir='rtl'] .rtl\:inset-6\/12{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='rtl'] .rtl\:inset-7\/12{top:58.333333% !important;right:58.333333% !important;bottom:58.333333% !important;left:58.333333% !important}[dir='rtl'] .rtl\:inset-8\/12{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='rtl'] .rtl\:inset-9\/12{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}[dir='rtl'] .rtl\:inset-10\/12{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}[dir='rtl'] .rtl\:inset-11\/12{top:91.666667% !important;right:91.666667% !important;bottom:91.666667% !important;left:91.666667% !important}[dir='rtl'] .rtl\:inset-full{top:100% !important;right:100% !important;bottom:100% !important;left:100% !important}[dir='rtl'] .rtl\:inset-y-0{top:0 !important;bottom:0 !important}[dir='rtl'] .rtl\:inset-x-0{right:0 !important;left:0 !important}[dir='rtl'] .rtl\:inset-y-1{top:.25rem !important;bottom:.25rem !important}[dir='rtl'] .rtl\:inset-x-1{right:.25rem !important;left:.25rem !important}[dir='rtl'] .rtl\:inset-y-2{top:.5rem !important;bottom:.5rem !important}[dir='rtl'] .rtl\:inset-x-2{right:.5rem !important;left:.5rem !important}[dir='rtl'] .rtl\:inset-y-3{top:.75rem !important;bottom:.75rem !important}[dir='rtl'] .rtl\:inset-x-3{right:.75rem !important;left:.75rem !important}[dir='rtl'] .rtl\:inset-y-4{top:1rem !important;bottom:1rem !important}[dir='rtl'] .rtl\:inset-x-4{right:1rem !important;left:1rem !important}[dir='rtl'] .rtl\:inset-y-5{top:1.25rem !important;bottom:1.25rem !important}[dir='rtl'] .rtl\:inset-x-5{right:1.25rem !important;left:1.25rem !important}[dir='rtl'] .rtl\:inset-y-6{top:1.5rem !important;bottom:1.5rem !important}[dir='rtl'] .rtl\:inset-x-6{right:1.5rem !important;left:1.5rem !important}[dir='rtl'] .rtl\:inset-y-7{top:1.75rem !important;bottom:1.75rem !important}[dir='rtl'] .rtl\:inset-x-7{right:1.75rem !important;left:1.75rem !important}[dir='rtl'] .rtl\:inset-y-8{top:2rem !important;bottom:2rem !important}[dir='rtl'] .rtl\:inset-x-8{right:2rem !important;left:2rem !important}[dir='rtl'] .rtl\:inset-y-9{top:2.25rem !important;bottom:2.25rem !important}[dir='rtl'] .rtl\:inset-x-9{right:2.25rem !important;left:2.25rem !important}[dir='rtl'] .rtl\:inset-y-10{top:2.5rem !important;bottom:2.5rem !important}[dir='rtl'] .rtl\:inset-x-10{right:2.5rem !important;left:2.5rem !important}[dir='rtl'] .rtl\:inset-y-11{top:2.75rem !important;bottom:2.75rem !important}[dir='rtl'] .rtl\:inset-x-11{right:2.75rem !important;left:2.75rem !important}[dir='rtl'] .rtl\:inset-y-12{top:3rem !important;bottom:3rem !important}[dir='rtl'] .rtl\:inset-x-12{right:3rem !important;left:3rem !important}[dir='rtl'] .rtl\:inset-y-13{top:3.25rem !important;bottom:3.25rem !important}[dir='rtl'] .rtl\:inset-x-13{right:3.25rem !important;left:3.25rem !important}[dir='rtl'] .rtl\:inset-y-14{top:3.5rem !important;bottom:3.5rem !important}[dir='rtl'] .rtl\:inset-x-14{right:3.5rem !important;left:3.5rem !important}[dir='rtl'] .rtl\:inset-y-15{top:3.75rem !important;bottom:3.75rem !important}[dir='rtl'] .rtl\:inset-x-15{right:3.75rem !important;left:3.75rem !important}[dir='rtl'] .rtl\:inset-y-16{top:4rem !important;bottom:4rem !important}[dir='rtl'] .rtl\:inset-x-16{right:4rem !important;left:4rem !important}[dir='rtl'] .rtl\:inset-y-20{top:5rem !important;bottom:5rem !important}[dir='rtl'] .rtl\:inset-x-20{right:5rem !important;left:5rem !important}[dir='rtl'] .rtl\:inset-y-24{top:6rem !important;bottom:6rem !important}[dir='rtl'] .rtl\:inset-x-24{right:6rem !important;left:6rem !important}[dir='rtl'] .rtl\:inset-y-28{top:7rem !important;bottom:7rem !important}[dir='rtl'] .rtl\:inset-x-28{right:7rem !important;left:7rem !important}[dir='rtl'] .rtl\:inset-y-32{top:8rem !important;bottom:8rem !important}[dir='rtl'] .rtl\:inset-x-32{right:8rem !important;left:8rem !important}[dir='rtl'] .rtl\:inset-y-36{top:9rem !important;bottom:9rem !important}[dir='rtl'] .rtl\:inset-x-36{right:9rem !important;left:9rem !important}[dir='rtl'] .rtl\:inset-y-40{top:10rem !important;bottom:10rem !important}[dir='rtl'] .rtl\:inset-x-40{right:10rem !important;left:10rem !important}[dir='rtl'] .rtl\:inset-y-48{top:12rem !important;bottom:12rem !important}[dir='rtl'] .rtl\:inset-x-48{right:12rem !important;left:12rem !important}[dir='rtl'] .rtl\:inset-y-56{top:14rem !important;bottom:14rem !important}[dir='rtl'] .rtl\:inset-x-56{right:14rem !important;left:14rem !important}[dir='rtl'] .rtl\:inset-y-60{top:15rem !important;bottom:15rem !important}[dir='rtl'] .rtl\:inset-x-60{right:15rem !important;left:15rem !important}[dir='rtl'] .rtl\:inset-y-64{top:16rem !important;bottom:16rem !important}[dir='rtl'] .rtl\:inset-x-64{right:16rem !important;left:16rem !important}[dir='rtl'] .rtl\:inset-y-72{top:18rem !important;bottom:18rem !important}[dir='rtl'] .rtl\:inset-x-72{right:18rem !important;left:18rem !important}[dir='rtl'] .rtl\:inset-y-80{top:20rem !important;bottom:20rem !important}[dir='rtl'] .rtl\:inset-x-80{right:20rem !important;left:20rem !important}[dir='rtl'] .rtl\:inset-y-96{top:24rem !important;bottom:24rem !important}[dir='rtl'] .rtl\:inset-x-96{right:24rem !important;left:24rem !important}[dir='rtl'] .rtl\:inset-y-auto{top:auto !important;bottom:auto !important}[dir='rtl'] .rtl\:inset-x-auto{right:auto !important;left:auto !important}[dir='rtl'] .rtl\:inset-y-px{top:1px !important;bottom:1px !important}[dir='rtl'] .rtl\:inset-x-px{right:1px !important;left:1px !important}[dir='rtl'] .rtl\:inset-y-0\.5{top:.125rem !important;bottom:.125rem !important}[dir='rtl'] .rtl\:inset-x-0\.5{right:.125rem !important;left:.125rem !important}[dir='rtl'] .rtl\:inset-y-1\.5{top:.375rem !important;bottom:.375rem !important}[dir='rtl'] .rtl\:inset-x-1\.5{right:.375rem !important;left:.375rem !important}[dir='rtl'] .rtl\:inset-y-2\.5{top:.625rem !important;bottom:.625rem !important}[dir='rtl'] .rtl\:inset-x-2\.5{right:.625rem !important;left:.625rem !important}[dir='rtl'] .rtl\:inset-y-3\.5{top:.875rem !important;bottom:.875rem !important}[dir='rtl'] .rtl\:inset-x-3\.5{right:.875rem !important;left:.875rem !important}[dir='rtl'] .rtl\:inset-y-1\/2{top:50% !important;bottom:50% !important}[dir='rtl'] .rtl\:inset-x-1\/2{right:50% !important;left:50% !important}[dir='rtl'] .rtl\:inset-y-1\/3{top:33.333333% !important;bottom:33.333333% !important}[dir='rtl'] .rtl\:inset-x-1\/3{right:33.333333% !important;left:33.333333% !important}[dir='rtl'] .rtl\:inset-y-2\/3{top:66.666667% !important;bottom:66.666667% !important}[dir='rtl'] .rtl\:inset-x-2\/3{right:66.666667% !important;left:66.666667% !important}[dir='rtl'] .rtl\:inset-y-1\/4{top:25% !important;bottom:25% !important}[dir='rtl'] .rtl\:inset-x-1\/4{right:25% !important;left:25% !important}[dir='rtl'] .rtl\:inset-y-2\/4{top:50% !important;bottom:50% !important}[dir='rtl'] .rtl\:inset-x-2\/4{right:50% !important;left:50% !important}[dir='rtl'] .rtl\:inset-y-3\/4{top:75% !important;bottom:75% !important}[dir='rtl'] .rtl\:inset-x-3\/4{right:75% !important;left:75% !important}[dir='rtl'] .rtl\:inset-y-1\/5{top:20% !important;bottom:20% !important}[dir='rtl'] .rtl\:inset-x-1\/5{right:20% !important;left:20% !important}[dir='rtl'] .rtl\:inset-y-2\/5{top:40% !important;bottom:40% !important}[dir='rtl'] .rtl\:inset-x-2\/5{right:40% !important;left:40% !important}[dir='rtl'] .rtl\:inset-y-3\/5{top:60% !important;bottom:60% !important}[dir='rtl'] .rtl\:inset-x-3\/5{right:60% !important;left:60% !important}[dir='rtl'] .rtl\:inset-y-4\/5{top:80% !important;bottom:80% !important}[dir='rtl'] .rtl\:inset-x-4\/5{right:80% !important;left:80% !important}[dir='rtl'] .rtl\:inset-y-1\/6{top:16.666667% !important;bottom:16.666667% !important}[dir='rtl'] .rtl\:inset-x-1\/6{right:16.666667% !important;left:16.666667% !important}[dir='rtl'] .rtl\:inset-y-2\/6{top:33.333333% !important;bottom:33.333333% !important}[dir='rtl'] .rtl\:inset-x-2\/6{right:33.333333% !important;left:33.333333% !important}[dir='rtl'] .rtl\:inset-y-3\/6{top:50% !important;bottom:50% !important}[dir='rtl'] .rtl\:inset-x-3\/6{right:50% !important;left:50% !important}[dir='rtl'] .rtl\:inset-y-4\/6{top:66.666667% !important;bottom:66.666667% !important}[dir='rtl'] .rtl\:inset-x-4\/6{right:66.666667% !important;left:66.666667% !important}[dir='rtl'] .rtl\:inset-y-5\/6{top:83.333333% !important;bottom:83.333333% !important}[dir='rtl'] .rtl\:inset-x-5\/6{right:83.333333% !important;left:83.333333% !important}[dir='rtl'] .rtl\:inset-y-1\/12{top:8.333333% !important;bottom:8.333333% !important}[dir='rtl'] .rtl\:inset-x-1\/12{right:8.333333% !important;left:8.333333% !important}[dir='rtl'] .rtl\:inset-y-2\/12{top:16.666667% !important;bottom:16.666667% !important}[dir='rtl'] .rtl\:inset-x-2\/12{right:16.666667% !important;left:16.666667% !important}[dir='rtl'] .rtl\:inset-y-3\/12{top:25% !important;bottom:25% !important}[dir='rtl'] .rtl\:inset-x-3\/12{right:25% !important;left:25% !important}[dir='rtl'] .rtl\:inset-y-4\/12{top:33.333333% !important;bottom:33.333333% !important}[dir='rtl'] .rtl\:inset-x-4\/12{right:33.333333% !important;left:33.333333% !important}[dir='rtl'] .rtl\:inset-y-5\/12{top:41.666667% !important;bottom:41.666667% !important}[dir='rtl'] .rtl\:inset-x-5\/12{right:41.666667% !important;left:41.666667% !important}[dir='rtl'] .rtl\:inset-y-6\/12{top:50% !important;bottom:50% !important}[dir='rtl'] .rtl\:inset-x-6\/12{right:50% !important;left:50% !important}[dir='rtl'] .rtl\:inset-y-7\/12{top:58.333333% !important;bottom:58.333333% !important}[dir='rtl'] .rtl\:inset-x-7\/12{right:58.333333% !important;left:58.333333% !important}[dir='rtl'] .rtl\:inset-y-8\/12{top:66.666667% !important;bottom:66.666667% !important}[dir='rtl'] .rtl\:inset-x-8\/12{right:66.666667% !important;left:66.666667% !important}[dir='rtl'] .rtl\:inset-y-9\/12{top:75% !important;bottom:75% !important}[dir='rtl'] .rtl\:inset-x-9\/12{right:75% !important;left:75% !important}[dir='rtl'] .rtl\:inset-y-10\/12{top:83.333333% !important;bottom:83.333333% !important}[dir='rtl'] .rtl\:inset-x-10\/12{right:83.333333% !important;left:83.333333% !important}[dir='rtl'] .rtl\:inset-y-11\/12{top:91.666667% !important;bottom:91.666667% !important}[dir='rtl'] .rtl\:inset-x-11\/12{right:91.666667% !important;left:91.666667% !important}[dir='rtl'] .rtl\:inset-y-full{top:100% !important;bottom:100% !important}[dir='rtl'] .rtl\:inset-x-full{right:100% !important;left:100% !important}[dir='rtl'] .rtl\:top-0{top:0 !important}[dir='rtl'] .rtl\:right-0{right:0 !important}[dir='rtl'] .rtl\:bottom-0{bottom:0 !important}[dir='rtl'] .rtl\:left-0{left:0 !important}[dir='rtl'] .rtl\:top-1{top:.25rem !important}[dir='rtl'] .rtl\:right-1{right:.25rem !important}[dir='rtl'] .rtl\:bottom-1{bottom:.25rem !important}[dir='rtl'] .rtl\:left-1{left:.25rem !important}[dir='rtl'] .rtl\:top-2{top:.5rem !important}[dir='rtl'] .rtl\:right-2{right:.5rem !important}[dir='rtl'] .rtl\:bottom-2{bottom:.5rem !important}[dir='rtl'] .rtl\:left-2{left:.5rem !important}[dir='rtl'] .rtl\:top-3{top:.75rem !important}[dir='rtl'] .rtl\:right-3{right:.75rem !important}[dir='rtl'] .rtl\:bottom-3{bottom:.75rem !important}[dir='rtl'] .rtl\:left-3{left:.75rem !important}[dir='rtl'] .rtl\:top-4{top:1rem !important}[dir='rtl'] .rtl\:right-4{right:1rem !important}[dir='rtl'] .rtl\:bottom-4{bottom:1rem !important}[dir='rtl'] .rtl\:left-4{left:1rem !important}[dir='rtl'] .rtl\:top-5{top:1.25rem !important}[dir='rtl'] .rtl\:right-5{right:1.25rem !important}[dir='rtl'] .rtl\:bottom-5{bottom:1.25rem !important}[dir='rtl'] .rtl\:left-5{left:1.25rem !important}[dir='rtl'] .rtl\:top-6{top:1.5rem !important}[dir='rtl'] .rtl\:right-6{right:1.5rem !important}[dir='rtl'] .rtl\:bottom-6{bottom:1.5rem !important}[dir='rtl'] .rtl\:left-6{left:1.5rem !important}[dir='rtl'] .rtl\:top-7{top:1.75rem !important}[dir='rtl'] .rtl\:right-7{right:1.75rem !important}[dir='rtl'] .rtl\:bottom-7{bottom:1.75rem !important}[dir='rtl'] .rtl\:left-7{left:1.75rem !important}[dir='rtl'] .rtl\:top-8{top:2rem !important}[dir='rtl'] .rtl\:right-8{right:2rem !important}[dir='rtl'] .rtl\:bottom-8{bottom:2rem !important}[dir='rtl'] .rtl\:left-8{left:2rem !important}[dir='rtl'] .rtl\:top-9{top:2.25rem !important}[dir='rtl'] .rtl\:right-9{right:2.25rem !important}[dir='rtl'] .rtl\:bottom-9{bottom:2.25rem !important}[dir='rtl'] .rtl\:left-9{left:2.25rem !important}[dir='rtl'] .rtl\:top-10{top:2.5rem !important}[dir='rtl'] .rtl\:right-10{right:2.5rem !important}[dir='rtl'] .rtl\:bottom-10{bottom:2.5rem !important}[dir='rtl'] .rtl\:left-10{left:2.5rem !important}[dir='rtl'] .rtl\:top-11{top:2.75rem !important}[dir='rtl'] .rtl\:right-11{right:2.75rem !important}[dir='rtl'] .rtl\:bottom-11{bottom:2.75rem !important}[dir='rtl'] .rtl\:left-11{left:2.75rem !important}[dir='rtl'] .rtl\:top-12{top:3rem !important}[dir='rtl'] .rtl\:right-12{right:3rem !important}[dir='rtl'] .rtl\:bottom-12{bottom:3rem !important}[dir='rtl'] .rtl\:left-12{left:3rem !important}[dir='rtl'] .rtl\:top-13{top:3.25rem !important}[dir='rtl'] .rtl\:right-13{right:3.25rem !important}[dir='rtl'] .rtl\:bottom-13{bottom:3.25rem !important}[dir='rtl'] .rtl\:left-13{left:3.25rem !important}[dir='rtl'] .rtl\:top-14{top:3.5rem !important}[dir='rtl'] .rtl\:right-14{right:3.5rem !important}[dir='rtl'] .rtl\:bottom-14{bottom:3.5rem !important}[dir='rtl'] .rtl\:left-14{left:3.5rem !important}[dir='rtl'] .rtl\:top-15{top:3.75rem !important}[dir='rtl'] .rtl\:right-15{right:3.75rem !important}[dir='rtl'] .rtl\:bottom-15{bottom:3.75rem !important}[dir='rtl'] .rtl\:left-15{left:3.75rem !important}[dir='rtl'] .rtl\:top-16{top:4rem !important}[dir='rtl'] .rtl\:right-16{right:4rem !important}[dir='rtl'] .rtl\:bottom-16{bottom:4rem !important}[dir='rtl'] .rtl\:left-16{left:4rem !important}[dir='rtl'] .rtl\:top-20{top:5rem !important}[dir='rtl'] .rtl\:right-20{right:5rem !important}[dir='rtl'] .rtl\:bottom-20{bottom:5rem !important}[dir='rtl'] .rtl\:left-20{left:5rem !important}[dir='rtl'] .rtl\:top-24{top:6rem !important}[dir='rtl'] .rtl\:right-24{right:6rem !important}[dir='rtl'] .rtl\:bottom-24{bottom:6rem !important}[dir='rtl'] .rtl\:left-24{left:6rem !important}[dir='rtl'] .rtl\:top-28{top:7rem !important}[dir='rtl'] .rtl\:right-28{right:7rem !important}[dir='rtl'] .rtl\:bottom-28{bottom:7rem !important}[dir='rtl'] .rtl\:left-28{left:7rem !important}[dir='rtl'] .rtl\:top-32{top:8rem !important}[dir='rtl'] .rtl\:right-32{right:8rem !important}[dir='rtl'] .rtl\:bottom-32{bottom:8rem !important}[dir='rtl'] .rtl\:left-32{left:8rem !important}[dir='rtl'] .rtl\:top-36{top:9rem !important}[dir='rtl'] .rtl\:right-36{right:9rem !important}[dir='rtl'] .rtl\:bottom-36{bottom:9rem !important}[dir='rtl'] .rtl\:left-36{left:9rem !important}[dir='rtl'] .rtl\:top-40{top:10rem !important}[dir='rtl'] .rtl\:right-40{right:10rem !important}[dir='rtl'] .rtl\:bottom-40{bottom:10rem !important}[dir='rtl'] .rtl\:left-40{left:10rem !important}[dir='rtl'] .rtl\:top-48{top:12rem !important}[dir='rtl'] .rtl\:right-48{right:12rem !important}[dir='rtl'] .rtl\:bottom-48{bottom:12rem !important}[dir='rtl'] .rtl\:left-48{left:12rem !important}[dir='rtl'] .rtl\:top-56{top:14rem !important}[dir='rtl'] .rtl\:right-56{right:14rem !important}[dir='rtl'] .rtl\:bottom-56{bottom:14rem !important}[dir='rtl'] .rtl\:left-56{left:14rem !important}[dir='rtl'] .rtl\:top-60{top:15rem !important}[dir='rtl'] .rtl\:right-60{right:15rem !important}[dir='rtl'] .rtl\:bottom-60{bottom:15rem !important}[dir='rtl'] .rtl\:left-60{left:15rem !important}[dir='rtl'] .rtl\:top-64{top:16rem !important}[dir='rtl'] .rtl\:right-64{right:16rem !important}[dir='rtl'] .rtl\:bottom-64{bottom:16rem !important}[dir='rtl'] .rtl\:left-64{left:16rem !important}[dir='rtl'] .rtl\:top-72{top:18rem !important}[dir='rtl'] .rtl\:right-72{right:18rem !important}[dir='rtl'] .rtl\:bottom-72{bottom:18rem !important}[dir='rtl'] .rtl\:left-72{left:18rem !important}[dir='rtl'] .rtl\:top-80{top:20rem !important}[dir='rtl'] .rtl\:right-80{right:20rem !important}[dir='rtl'] .rtl\:bottom-80{bottom:20rem !important}[dir='rtl'] .rtl\:left-80{left:20rem !important}[dir='rtl'] .rtl\:top-96{top:24rem !important}[dir='rtl'] .rtl\:right-96{right:24rem !important}[dir='rtl'] .rtl\:bottom-96{bottom:24rem !important}[dir='rtl'] .rtl\:left-96{left:24rem !important}[dir='rtl'] .rtl\:top-auto{top:auto !important}[dir='rtl'] .rtl\:right-auto{right:auto !important}[dir='rtl'] .rtl\:bottom-auto{bottom:auto !important}[dir='rtl'] .rtl\:left-auto{left:auto !important}[dir='rtl'] .rtl\:top-px{top:1px !important}[dir='rtl'] .rtl\:right-px{right:1px !important}[dir='rtl'] .rtl\:bottom-px{bottom:1px !important}[dir='rtl'] .rtl\:left-px{left:1px !important}[dir='rtl'] .rtl\:top-0\.5{top:.125rem !important}[dir='rtl'] .rtl\:right-0\.5{right:.125rem !important}[dir='rtl'] .rtl\:bottom-0\.5{bottom:.125rem !important}[dir='rtl'] .rtl\:left-0\.5{left:.125rem !important}[dir='rtl'] .rtl\:top-1\.5{top:.375rem !important}[dir='rtl'] .rtl\:right-1\.5{right:.375rem !important}[dir='rtl'] .rtl\:bottom-1\.5{bottom:.375rem !important}[dir='rtl'] .rtl\:left-1\.5{left:.375rem !important}[dir='rtl'] .rtl\:top-2\.5{top:.625rem !important}[dir='rtl'] .rtl\:right-2\.5{right:.625rem !important}[dir='rtl'] .rtl\:bottom-2\.5{bottom:.625rem !important}[dir='rtl'] .rtl\:left-2\.5{left:.625rem !important}[dir='rtl'] .rtl\:top-3\.5{top:.875rem !important}[dir='rtl'] .rtl\:right-3\.5{right:.875rem !important}[dir='rtl'] .rtl\:bottom-3\.5{bottom:.875rem !important}[dir='rtl'] .rtl\:left-3\.5{left:.875rem !important}[dir='rtl'] .rtl\:top-1\/2{top:50% !important}[dir='rtl'] .rtl\:right-1\/2{right:50% !important}[dir='rtl'] .rtl\:bottom-1\/2{bottom:50% !important}[dir='rtl'] .rtl\:left-1\/2{left:50% !important}[dir='rtl'] .rtl\:top-1\/3{top:33.333333% !important}[dir='rtl'] .rtl\:right-1\/3{right:33.333333% !important}[dir='rtl'] .rtl\:bottom-1\/3{bottom:33.333333% !important}[dir='rtl'] .rtl\:left-1\/3{left:33.333333% !important}[dir='rtl'] .rtl\:top-2\/3{top:66.666667% !important}[dir='rtl'] .rtl\:right-2\/3{right:66.666667% !important}[dir='rtl'] .rtl\:bottom-2\/3{bottom:66.666667% !important}[dir='rtl'] .rtl\:left-2\/3{left:66.666667% !important}[dir='rtl'] .rtl\:top-1\/4{top:25% !important}[dir='rtl'] .rtl\:right-1\/4{right:25% !important}[dir='rtl'] .rtl\:bottom-1\/4{bottom:25% !important}[dir='rtl'] .rtl\:left-1\/4{left:25% !important}[dir='rtl'] .rtl\:top-2\/4{top:50% !important}[dir='rtl'] .rtl\:right-2\/4{right:50% !important}[dir='rtl'] .rtl\:bottom-2\/4{bottom:50% !important}[dir='rtl'] .rtl\:left-2\/4{left:50% !important}[dir='rtl'] .rtl\:top-3\/4{top:75% !important}[dir='rtl'] .rtl\:right-3\/4{right:75% !important}[dir='rtl'] .rtl\:bottom-3\/4{bottom:75% !important}[dir='rtl'] .rtl\:left-3\/4{left:75% !important}[dir='rtl'] .rtl\:top-1\/5{top:20% !important}[dir='rtl'] .rtl\:right-1\/5{right:20% !important}[dir='rtl'] .rtl\:bottom-1\/5{bottom:20% !important}[dir='rtl'] .rtl\:left-1\/5{left:20% !important}[dir='rtl'] .rtl\:top-2\/5{top:40% !important}[dir='rtl'] .rtl\:right-2\/5{right:40% !important}[dir='rtl'] .rtl\:bottom-2\/5{bottom:40% !important}[dir='rtl'] .rtl\:left-2\/5{left:40% !important}[dir='rtl'] .rtl\:top-3\/5{top:60% !important}[dir='rtl'] .rtl\:right-3\/5{right:60% !important}[dir='rtl'] .rtl\:bottom-3\/5{bottom:60% !important}[dir='rtl'] .rtl\:left-3\/5{left:60% !important}[dir='rtl'] .rtl\:top-4\/5{top:80% !important}[dir='rtl'] .rtl\:right-4\/5{right:80% !important}[dir='rtl'] .rtl\:bottom-4\/5{bottom:80% !important}[dir='rtl'] .rtl\:left-4\/5{left:80% !important}[dir='rtl'] .rtl\:top-1\/6{top:16.666667% !important}[dir='rtl'] .rtl\:right-1\/6{right:16.666667% !important}[dir='rtl'] .rtl\:bottom-1\/6{bottom:16.666667% !important}[dir='rtl'] .rtl\:left-1\/6{left:16.666667% !important}[dir='rtl'] .rtl\:top-2\/6{top:33.333333% !important}[dir='rtl'] .rtl\:right-2\/6{right:33.333333% !important}[dir='rtl'] .rtl\:bottom-2\/6{bottom:33.333333% !important}[dir='rtl'] .rtl\:left-2\/6{left:33.333333% !important}[dir='rtl'] .rtl\:top-3\/6{top:50% !important}[dir='rtl'] .rtl\:right-3\/6{right:50% !important}[dir='rtl'] .rtl\:bottom-3\/6{bottom:50% !important}[dir='rtl'] .rtl\:left-3\/6{left:50% !important}[dir='rtl'] .rtl\:top-4\/6{top:66.666667% !important}[dir='rtl'] .rtl\:right-4\/6{right:66.666667% !important}[dir='rtl'] .rtl\:bottom-4\/6{bottom:66.666667% !important}[dir='rtl'] .rtl\:left-4\/6{left:66.666667% !important}[dir='rtl'] .rtl\:top-5\/6{top:83.333333% !important}[dir='rtl'] .rtl\:right-5\/6{right:83.333333% !important}[dir='rtl'] .rtl\:bottom-5\/6{bottom:83.333333% !important}[dir='rtl'] .rtl\:left-5\/6{left:83.333333% !important}[dir='rtl'] .rtl\:top-1\/12{top:8.333333% !important}[dir='rtl'] .rtl\:right-1\/12{right:8.333333% !important}[dir='rtl'] .rtl\:bottom-1\/12{bottom:8.333333% !important}[dir='rtl'] .rtl\:left-1\/12{left:8.333333% !important}[dir='rtl'] .rtl\:top-2\/12{top:16.666667% !important}[dir='rtl'] .rtl\:right-2\/12{right:16.666667% !important}[dir='rtl'] .rtl\:bottom-2\/12{bottom:16.666667% !important}[dir='rtl'] .rtl\:left-2\/12{left:16.666667% !important}[dir='rtl'] .rtl\:top-3\/12{top:25% !important}[dir='rtl'] .rtl\:right-3\/12{right:25% !important}[dir='rtl'] .rtl\:bottom-3\/12{bottom:25% !important}[dir='rtl'] .rtl\:left-3\/12{left:25% !important}[dir='rtl'] .rtl\:top-4\/12{top:33.333333% !important}[dir='rtl'] .rtl\:right-4\/12{right:33.333333% !important}[dir='rtl'] .rtl\:bottom-4\/12{bottom:33.333333% !important}[dir='rtl'] .rtl\:left-4\/12{left:33.333333% !important}[dir='rtl'] .rtl\:top-5\/12{top:41.666667% !important}[dir='rtl'] .rtl\:right-5\/12{right:41.666667% !important}[dir='rtl'] .rtl\:bottom-5\/12{bottom:41.666667% !important}[dir='rtl'] .rtl\:left-5\/12{left:41.666667% !important}[dir='rtl'] .rtl\:top-6\/12{top:50% !important}[dir='rtl'] .rtl\:right-6\/12{right:50% !important}[dir='rtl'] .rtl\:bottom-6\/12{bottom:50% !important}[dir='rtl'] .rtl\:left-6\/12{left:50% !important}[dir='rtl'] .rtl\:top-7\/12{top:58.333333% !important}[dir='rtl'] .rtl\:right-7\/12{right:58.333333% !important}[dir='rtl'] .rtl\:bottom-7\/12{bottom:58.333333% !important}[dir='rtl'] .rtl\:left-7\/12{left:58.333333% !important}[dir='rtl'] .rtl\:top-8\/12{top:66.666667% !important}[dir='rtl'] .rtl\:right-8\/12{right:66.666667% !important}[dir='rtl'] .rtl\:bottom-8\/12{bottom:66.666667% !important}[dir='rtl'] .rtl\:left-8\/12{left:66.666667% !important}[dir='rtl'] .rtl\:top-9\/12{top:75% !important}[dir='rtl'] .rtl\:right-9\/12{right:75% !important}[dir='rtl'] .rtl\:bottom-9\/12{bottom:75% !important}[dir='rtl'] .rtl\:left-9\/12{left:75% !important}[dir='rtl'] .rtl\:top-10\/12{top:83.333333% !important}[dir='rtl'] .rtl\:right-10\/12{right:83.333333% !important}[dir='rtl'] .rtl\:bottom-10\/12{bottom:83.333333% !important}[dir='rtl'] .rtl\:left-10\/12{left:83.333333% !important}[dir='rtl'] .rtl\:top-11\/12{top:91.666667% !important}[dir='rtl'] .rtl\:right-11\/12{right:91.666667% !important}[dir='rtl'] .rtl\:bottom-11\/12{bottom:91.666667% !important}[dir='rtl'] .rtl\:left-11\/12{left:91.666667% !important}[dir='rtl'] .rtl\:top-full{top:100% !important}[dir='rtl'] .rtl\:right-full{right:100% !important}[dir='rtl'] .rtl\:bottom-full{bottom:100% !important}[dir='rtl'] .rtl\:left-full{left:100% !important}.resize-none{resize:none !important}.resize-y{resize:vertical !important}.resize-x{resize:horizontal !important}.resize{resize:both !important}.shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,0.10) !important}.shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06) !important}.shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06) !important}.shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,0.17) !important}.shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,0.11),0 5px 15px 0 rgba(0,0,0,0.08) !important}.shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,0.25) !important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,0.06) !important}.shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,0.45) !important}.shadow-none{box-shadow:none !important}.group:focus .group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,0.10) !important}.group:focus .group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06) !important}.group:focus .group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06) !important}.group:focus .group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,0.17) !important}.group:focus .group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,0.11),0 5px 15px 0 rgba(0,0,0,0.08) !important}.group:focus .group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,0.25) !important}.group:focus .group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,0.06) !important}.group:focus .group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,0.45) !important}.group:focus .group-focus\:shadow-none{box-shadow:none !important}.hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,0.10) !important}.hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06) !important}.hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06) !important}.hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,0.17) !important}.hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,0.11),0 5px 15px 0 rgba(0,0,0,0.08) !important}.hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,0.25) !important}.hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,0.06) !important}.hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,0.45) !important}.hover\:shadow-none:hover{box-shadow:none !important}.focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,0.10) !important}.focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06) !important}.focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06) !important}.focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,0.17) !important}.focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,0.11),0 5px 15px 0 rgba(0,0,0,0.08) !important}.focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,0.25) !important}.focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,0.06) !important}.focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,0.45) !important}.focus\:shadow-none:focus{box-shadow:none !important}.fill-current{fill:currentColor !important}.stroke-current{stroke:currentColor !important}.stroke-0{stroke-width:0 !important}.stroke-1{stroke-width:1 !important}.stroke-2{stroke-width:2 !important}.table-auto{table-layout:auto !important}.table-fixed{table-layout:fixed !important}.text-left{text-align:left !important}.text-center{text-align:center !important}.text-right{text-align:right !important}.text-justify{text-align:justify !important}.text-transparent{color:transparent !important}.text-white{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important}.text-blackest{--text-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--text-opacity)) !important}.text-blackest-70{color:rgba(0,0,0,0.7) !important}.text-black{--text-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--text-opacity)) !important}.text-gray-darkest{--text-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--text-opacity)) !important}.text-gray-darker{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.text-gray-dark{--text-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--text-opacity)) !important}.text-gray{--text-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--text-opacity)) !important}.text-gray-light{--text-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--text-opacity)) !important}.text-gray-lighter{--text-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--text-opacity)) !important}.text-gray-lightest{--text-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--text-opacity)) !important}.text-blue-darkest{--text-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--text-opacity)) !important}.text-blue-dark{--text-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--text-opacity)) !important}.text-blue{--text-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--text-opacity)) !important}.text-blue-light{--text-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--text-opacity)) !important}.text-blue-highlight{color:rgba(180,215,255,0.6) !important}.text-orange{--text-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--text-opacity)) !important}.text-orange-darker{--text-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--text-opacity)) !important}.text-orange-darkest{--text-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--text-opacity)) !important}.text-red{--text-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--text-opacity)) !important}.text-green{--text-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--text-opacity)) !important}.text-yellow-400{--text-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--text-opacity)) !important}.text-yellow-50{--text-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--text-opacity)) !important}.hover\:text-transparent:hover{color:transparent !important}.hover\:text-white:hover{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important}.hover\:text-blackest:hover{--text-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--text-opacity)) !important}.hover\:text-blackest-70:hover{color:rgba(0,0,0,0.7) !important}.hover\:text-black:hover{--text-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--text-opacity)) !important}.hover\:text-gray-darkest:hover{--text-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--text-opacity)) !important}.hover\:text-gray-darker:hover{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.hover\:text-gray-dark:hover{--text-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--text-opacity)) !important}.hover\:text-gray:hover{--text-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--text-opacity)) !important}.hover\:text-gray-light:hover{--text-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--text-opacity)) !important}.hover\:text-gray-lighter:hover{--text-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--text-opacity)) !important}.hover\:text-gray-lightest:hover{--text-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--text-opacity)) !important}.hover\:text-blue-darkest:hover{--text-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--text-opacity)) !important}.hover\:text-blue-dark:hover{--text-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--text-opacity)) !important}.hover\:text-blue:hover{--text-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--text-opacity)) !important}.hover\:text-blue-light:hover{--text-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--text-opacity)) !important}.hover\:text-blue-highlight:hover{color:rgba(180,215,255,0.6) !important}.hover\:text-orange:hover{--text-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--text-opacity)) !important}.hover\:text-orange-darker:hover{--text-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--text-opacity)) !important}.hover\:text-orange-darkest:hover{--text-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--text-opacity)) !important}.hover\:text-red:hover{--text-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--text-opacity)) !important}.hover\:text-green:hover{--text-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--text-opacity)) !important}.hover\:text-yellow-400:hover{--text-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--text-opacity)) !important}.hover\:text-yellow-50:hover{--text-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--text-opacity)) !important}.focus\:text-transparent:focus{color:transparent !important}.focus\:text-white:focus{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important}.focus\:text-blackest:focus{--text-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--text-opacity)) !important}.focus\:text-blackest-70:focus{color:rgba(0,0,0,0.7) !important}.focus\:text-black:focus{--text-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--text-opacity)) !important}.focus\:text-gray-darkest:focus{--text-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--text-opacity)) !important}.focus\:text-gray-darker:focus{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.focus\:text-gray-dark:focus{--text-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--text-opacity)) !important}.focus\:text-gray:focus{--text-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--text-opacity)) !important}.focus\:text-gray-light:focus{--text-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--text-opacity)) !important}.focus\:text-gray-lighter:focus{--text-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--text-opacity)) !important}.focus\:text-gray-lightest:focus{--text-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--text-opacity)) !important}.focus\:text-blue-darkest:focus{--text-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--text-opacity)) !important}.focus\:text-blue-dark:focus{--text-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--text-opacity)) !important}.focus\:text-blue:focus{--text-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--text-opacity)) !important}.focus\:text-blue-light:focus{--text-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--text-opacity)) !important}.focus\:text-blue-highlight:focus{color:rgba(180,215,255,0.6) !important}.focus\:text-orange:focus{--text-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--text-opacity)) !important}.focus\:text-orange-darker:focus{--text-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--text-opacity)) !important}.focus\:text-orange-darkest:focus{--text-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--text-opacity)) !important}.focus\:text-red:focus{--text-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--text-opacity)) !important}.focus\:text-green:focus{--text-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--text-opacity)) !important}.focus\:text-yellow-400:focus{--text-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--text-opacity)) !important}.focus\:text-yellow-50:focus{--text-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--text-opacity)) !important}.group:hover .group-hover\:text-transparent{color:transparent !important}.group:hover .group-hover\:text-white{--text-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--text-opacity)) !important}.group:hover .group-hover\:text-blackest{--text-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--text-opacity)) !important}.group:hover .group-hover\:text-blackest-70{color:rgba(0,0,0,0.7) !important}.group:hover .group-hover\:text-black{--text-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--text-opacity)) !important}.group:hover .group-hover\:text-gray-darkest{--text-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--text-opacity)) !important}.group:hover .group-hover\:text-gray-darker{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.group:hover .group-hover\:text-gray-dark{--text-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--text-opacity)) !important}.group:hover .group-hover\:text-gray{--text-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--text-opacity)) !important}.group:hover .group-hover\:text-gray-light{--text-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--text-opacity)) !important}.group:hover .group-hover\:text-gray-lighter{--text-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--text-opacity)) !important}.group:hover .group-hover\:text-gray-lightest{--text-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--text-opacity)) !important}.group:hover .group-hover\:text-blue-darkest{--text-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--text-opacity)) !important}.group:hover .group-hover\:text-blue-dark{--text-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--text-opacity)) !important}.group:hover .group-hover\:text-blue{--text-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--text-opacity)) !important}.group:hover .group-hover\:text-blue-light{--text-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--text-opacity)) !important}.group:hover .group-hover\:text-blue-highlight{color:rgba(180,215,255,0.6) !important}.group:hover .group-hover\:text-orange{--text-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--text-opacity)) !important}.group:hover .group-hover\:text-orange-darker{--text-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--text-opacity)) !important}.group:hover .group-hover\:text-orange-darkest{--text-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--text-opacity)) !important}.group:hover .group-hover\:text-red{--text-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--text-opacity)) !important}.group:hover .group-hover\:text-green{--text-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--text-opacity)) !important}.group:hover .group-hover\:text-yellow-400{--text-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--text-opacity)) !important}.group:hover .group-hover\:text-yellow-50{--text-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--text-opacity)) !important}.text-opacity-0{--text-opacity:0 !important}.text-opacity-25{--text-opacity:.25 !important}.text-opacity-50{--text-opacity:.5 !important}.text-opacity-75{--text-opacity:.75 !important}.text-opacity-100{--text-opacity:1 !important}.hover\:text-opacity-0:hover{--text-opacity:0 !important}.hover\:text-opacity-25:hover{--text-opacity:.25 !important}.hover\:text-opacity-50:hover{--text-opacity:.5 !important}.hover\:text-opacity-75:hover{--text-opacity:.75 !important}.hover\:text-opacity-100:hover{--text-opacity:1 !important}.focus\:text-opacity-0:focus{--text-opacity:0 !important}.focus\:text-opacity-25:focus{--text-opacity:.25 !important}.focus\:text-opacity-50:focus{--text-opacity:.5 !important}.focus\:text-opacity-75:focus{--text-opacity:.75 !important}.focus\:text-opacity-100:focus{--text-opacity:1 !important}.italic{font-style:italic !important}.not-italic{font-style:normal !important}.uppercase{text-transform:uppercase !important}.lowercase{text-transform:lowercase !important}.capitalize{text-transform:capitalize !important}.normal-case{text-transform:none !important}.underline{text-decoration:underline !important}.line-through{text-decoration:line-through !important}.no-underline{text-decoration:none !important}.group:hover .group-hover\:underline{text-decoration:underline !important}.group:hover .group-hover\:line-through{text-decoration:line-through !important}.group:hover .group-hover\:no-underline{text-decoration:none !important}.group:focus .group-focus\:underline{text-decoration:underline !important}.group:focus .group-focus\:line-through{text-decoration:line-through !important}.group:focus .group-focus\:no-underline{text-decoration:none !important}.hover\:underline:hover{text-decoration:underline !important}.hover\:line-through:hover{text-decoration:line-through !important}.hover\:no-underline:hover{text-decoration:none !important}.focus\:underline:focus{text-decoration:underline !important}.focus\:line-through:focus{text-decoration:line-through !important}.focus\:no-underline:focus{text-decoration:none !important}.antialiased{-webkit-font-smoothing:antialiased !important;-moz-osx-font-smoothing:grayscale !important}.subpixel-antialiased{-webkit-font-smoothing:auto !important;-moz-osx-font-smoothing:auto !important}.tracking-tighter{letter-spacing:-0.05em !important}.tracking-tight{letter-spacing:-0.025em !important}.tracking-normal{letter-spacing:0 !important}.tracking-wide{letter-spacing:.025em !important}.tracking-wider{letter-spacing:.05em !important}.tracking-widest{letter-spacing:.1em !important}.select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.select-text{-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;user-select:text !important}.select-all{-webkit-user-select:all !important;-moz-user-select:all !important;-ms-user-select:all !important;user-select:all !important}.select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-top{vertical-align:text-top !important}.align-text-bottom{vertical-align:text-bottom !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.whitespace-normal{white-space:normal !important}.whitespace-no-wrap{white-space:nowrap !important}.whitespace-pre{white-space:pre !important}.whitespace-pre-line{white-space:pre-line !important}.whitespace-pre-wrap{white-space:pre-wrap !important}.break-normal{overflow-wrap:normal !important;word-break:normal !important}.break-words{overflow-wrap:break-word !important}.break-all{word-break:break-all !important}.truncate{overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important}.w-0{width:0 !important}.w-1{width:.25rem !important}.w-2{width:.5rem !important}.w-3{width:.75rem !important}.w-4{width:1rem !important}.w-5{width:1.25rem !important}.w-6{width:1.5rem !important}.w-7{width:1.75rem !important}.w-8{width:2rem !important}.w-9{width:2.25rem !important}.w-10{width:2.5rem !important}.w-11{width:2.75rem !important}.w-12{width:3rem !important}.w-13{width:3.25rem !important}.w-14{width:3.5rem !important}.w-15{width:3.75rem !important}.w-16{width:4rem !important}.w-20{width:5rem !important}.w-24{width:6rem !important}.w-28{width:7rem !important}.w-32{width:8rem !important}.w-36{width:9rem !important}.w-40{width:10rem !important}.w-48{width:12rem !important}.w-56{width:14rem !important}.w-60{width:15rem !important}.w-64{width:16rem !important}.w-72{width:18rem !important}.w-80{width:20rem !important}.w-96{width:24rem !important}.w-auto{width:auto !important}.w-px{width:1px !important}.w-0\.5{width:.125rem !important}.w-1\.5{width:.375rem !important}.w-2\.5{width:.625rem !important}.w-3\.5{width:.875rem !important}.w-1\/2{width:50% !important}.w-1\/3{width:33.333333% !important}.w-2\/3{width:66.666667% !important}.w-1\/4{width:25% !important}.w-2\/4{width:50% !important}.w-3\/4{width:75% !important}.w-1\/5{width:20% !important}.w-2\/5{width:40% !important}.w-3\/5{width:60% !important}.w-4\/5{width:80% !important}.w-1\/6{width:16.666667% !important}.w-2\/6{width:33.333333% !important}.w-3\/6{width:50% !important}.w-4\/6{width:66.666667% !important}.w-5\/6{width:83.333333% !important}.w-1\/12{width:8.333333% !important}.w-2\/12{width:16.666667% !important}.w-3\/12{width:25% !important}.w-4\/12{width:33.333333% !important}.w-5\/12{width:41.666667% !important}.w-6\/12{width:50% !important}.w-7\/12{width:58.333333% !important}.w-8\/12{width:66.666667% !important}.w-9\/12{width:75% !important}.w-10\/12{width:83.333333% !important}.w-11\/12{width:91.666667% !important}.w-full{width:100% !important}.w-screen{width:100vw !important}.z-0{z-index:0 !important}.z-10{z-index:10 !important}.z-20{z-index:20 !important}.z-30{z-index:30 !important}.z-40{z-index:40 !important}.z-50{z-index:50 !important}.z-999{z-index:999 !important}.z-auto{z-index:auto !important}.z-max{z-index:2147483647 !important}.focus-within\:z-0:focus-within{z-index:0 !important}.focus-within\:z-10:focus-within{z-index:10 !important}.focus-within\:z-20:focus-within{z-index:20 !important}.focus-within\:z-30:focus-within{z-index:30 !important}.focus-within\:z-40:focus-within{z-index:40 !important}.focus-within\:z-50:focus-within{z-index:50 !important}.focus-within\:z-999:focus-within{z-index:999 !important}.focus-within\:z-auto:focus-within{z-index:auto !important}.focus-within\:z-max:focus-within{z-index:2147483647 !important}.focus\:z-0:focus{z-index:0 !important}.focus\:z-10:focus{z-index:10 !important}.focus\:z-20:focus{z-index:20 !important}.focus\:z-30:focus{z-index:30 !important}.focus\:z-40:focus{z-index:40 !important}.focus\:z-50:focus{z-index:50 !important}.focus\:z-999:focus{z-index:999 !important}.focus\:z-auto:focus{z-index:auto !important}.focus\:z-max:focus{z-index:2147483647 !important}.gap-0{grid-gap:0 !important;gap:0 !important}.gap-1{grid-gap:.25rem !important;gap:.25rem !important}.gap-2{grid-gap:.5rem !important;gap:.5rem !important}.gap-3{grid-gap:.75rem !important;gap:.75rem !important}.gap-4{grid-gap:1rem !important;gap:1rem !important}.gap-5{grid-gap:1.25rem !important;gap:1.25rem !important}.gap-6{grid-gap:1.5rem !important;gap:1.5rem !important}.gap-7{grid-gap:1.75rem !important;gap:1.75rem !important}.gap-8{grid-gap:2rem !important;gap:2rem !important}.gap-9{grid-gap:2.25rem !important;gap:2.25rem !important}.gap-10{grid-gap:2.5rem !important;gap:2.5rem !important}.gap-11{grid-gap:2.75rem !important;gap:2.75rem !important}.gap-12{grid-gap:3rem !important;gap:3rem !important}.gap-13{grid-gap:3.25rem !important;gap:3.25rem !important}.gap-14{grid-gap:3.5rem !important;gap:3.5rem !important}.gap-15{grid-gap:3.75rem !important;gap:3.75rem !important}.gap-16{grid-gap:4rem !important;gap:4rem !important}.gap-20{grid-gap:5rem !important;gap:5rem !important}.gap-24{grid-gap:6rem !important;gap:6rem !important}.gap-28{grid-gap:7rem !important;gap:7rem !important}.gap-32{grid-gap:8rem !important;gap:8rem !important}.gap-36{grid-gap:9rem !important;gap:9rem !important}.gap-40{grid-gap:10rem !important;gap:10rem !important}.gap-48{grid-gap:12rem !important;gap:12rem !important}.gap-56{grid-gap:14rem !important;gap:14rem !important}.gap-60{grid-gap:15rem !important;gap:15rem !important}.gap-64{grid-gap:16rem !important;gap:16rem !important}.gap-72{grid-gap:18rem !important;gap:18rem !important}.gap-80{grid-gap:20rem !important;gap:20rem !important}.gap-96{grid-gap:24rem !important;gap:24rem !important}.gap-px{grid-gap:1px !important;gap:1px !important}.gap-0\.5{grid-gap:.125rem !important;gap:.125rem !important}.gap-1\.5{grid-gap:.375rem !important;gap:.375rem !important}.gap-2\.5{grid-gap:.625rem !important;gap:.625rem !important}.gap-3\.5{grid-gap:.875rem !important;gap:.875rem !important}.gap-1\/2{grid-gap:50% !important;gap:50% !important}.gap-1\/3{grid-gap:33.333333% !important;gap:33.333333% !important}.gap-2\/3{grid-gap:66.666667% !important;gap:66.666667% !important}.gap-1\/4{grid-gap:25% !important;gap:25% !important}.gap-2\/4{grid-gap:50% !important;gap:50% !important}.gap-3\/4{grid-gap:75% !important;gap:75% !important}.gap-1\/5{grid-gap:20% !important;gap:20% !important}.gap-2\/5{grid-gap:40% !important;gap:40% !important}.gap-3\/5{grid-gap:60% !important;gap:60% !important}.gap-4\/5{grid-gap:80% !important;gap:80% !important}.gap-1\/6{grid-gap:16.666667% !important;gap:16.666667% !important}.gap-2\/6{grid-gap:33.333333% !important;gap:33.333333% !important}.gap-3\/6{grid-gap:50% !important;gap:50% !important}.gap-4\/6{grid-gap:66.666667% !important;gap:66.666667% !important}.gap-5\/6{grid-gap:83.333333% !important;gap:83.333333% !important}.gap-1\/12{grid-gap:8.333333% !important;gap:8.333333% !important}.gap-2\/12{grid-gap:16.666667% !important;gap:16.666667% !important}.gap-3\/12{grid-gap:25% !important;gap:25% !important}.gap-4\/12{grid-gap:33.333333% !important;gap:33.333333% !important}.gap-5\/12{grid-gap:41.666667% !important;gap:41.666667% !important}.gap-6\/12{grid-gap:50% !important;gap:50% !important}.gap-7\/12{grid-gap:58.333333% !important;gap:58.333333% !important}.gap-8\/12{grid-gap:66.666667% !important;gap:66.666667% !important}.gap-9\/12{grid-gap:75% !important;gap:75% !important}.gap-10\/12{grid-gap:83.333333% !important;gap:83.333333% !important}.gap-11\/12{grid-gap:91.666667% !important;gap:91.666667% !important}.gap-full{grid-gap:100% !important;gap:100% !important}.col-gap-0{grid-column-gap:0 !important;-moz-column-gap:0 !important;column-gap:0 !important}.col-gap-1{grid-column-gap:.25rem !important;-moz-column-gap:.25rem !important;column-gap:.25rem !important}.col-gap-2{grid-column-gap:.5rem !important;-moz-column-gap:.5rem !important;column-gap:.5rem !important}.col-gap-3{grid-column-gap:.75rem !important;-moz-column-gap:.75rem !important;column-gap:.75rem !important}.col-gap-4{grid-column-gap:1rem !important;-moz-column-gap:1rem !important;column-gap:1rem !important}.col-gap-5{grid-column-gap:1.25rem !important;-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.col-gap-6{grid-column-gap:1.5rem !important;-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.col-gap-7{grid-column-gap:1.75rem !important;-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.col-gap-8{grid-column-gap:2rem !important;-moz-column-gap:2rem !important;column-gap:2rem !important}.col-gap-9{grid-column-gap:2.25rem !important;-moz-column-gap:2.25rem !important;column-gap:2.25rem !important}.col-gap-10{grid-column-gap:2.5rem !important;-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.col-gap-11{grid-column-gap:2.75rem !important;-moz-column-gap:2.75rem !important;column-gap:2.75rem !important}.col-gap-12{grid-column-gap:3rem !important;-moz-column-gap:3rem !important;column-gap:3rem !important}.col-gap-13{grid-column-gap:3.25rem !important;-moz-column-gap:3.25rem !important;column-gap:3.25rem !important}.col-gap-14{grid-column-gap:3.5rem !important;-moz-column-gap:3.5rem !important;column-gap:3.5rem !important}.col-gap-15{grid-column-gap:3.75rem !important;-moz-column-gap:3.75rem !important;column-gap:3.75rem !important}.col-gap-16{grid-column-gap:4rem !important;-moz-column-gap:4rem !important;column-gap:4rem !important}.col-gap-20{grid-column-gap:5rem !important;-moz-column-gap:5rem !important;column-gap:5rem !important}.col-gap-24{grid-column-gap:6rem !important;-moz-column-gap:6rem !important;column-gap:6rem !important}.col-gap-28{grid-column-gap:7rem !important;-moz-column-gap:7rem !important;column-gap:7rem !important}.col-gap-32{grid-column-gap:8rem !important;-moz-column-gap:8rem !important;column-gap:8rem !important}.col-gap-36{grid-column-gap:9rem !important;-moz-column-gap:9rem !important;column-gap:9rem !important}.col-gap-40{grid-column-gap:10rem !important;-moz-column-gap:10rem !important;column-gap:10rem !important}.col-gap-48{grid-column-gap:12rem !important;-moz-column-gap:12rem !important;column-gap:12rem !important}.col-gap-56{grid-column-gap:14rem !important;-moz-column-gap:14rem !important;column-gap:14rem !important}.col-gap-60{grid-column-gap:15rem !important;-moz-column-gap:15rem !important;column-gap:15rem !important}.col-gap-64{grid-column-gap:16rem !important;-moz-column-gap:16rem !important;column-gap:16rem !important}.col-gap-72{grid-column-gap:18rem !important;-moz-column-gap:18rem !important;column-gap:18rem !important}.col-gap-80{grid-column-gap:20rem !important;-moz-column-gap:20rem !important;column-gap:20rem !important}.col-gap-96{grid-column-gap:24rem !important;-moz-column-gap:24rem !important;column-gap:24rem !important}.col-gap-px{grid-column-gap:1px !important;-moz-column-gap:1px !important;column-gap:1px !important}.col-gap-0\.5{grid-column-gap:.125rem !important;-moz-column-gap:.125rem !important;column-gap:.125rem !important}.col-gap-1\.5{grid-column-gap:.375rem !important;-moz-column-gap:.375rem !important;column-gap:.375rem !important}.col-gap-2\.5{grid-column-gap:.625rem !important;-moz-column-gap:.625rem !important;column-gap:.625rem !important}.col-gap-3\.5{grid-column-gap:.875rem !important;-moz-column-gap:.875rem !important;column-gap:.875rem !important}.col-gap-1\/2{grid-column-gap:50% !important;-moz-column-gap:50% !important;column-gap:50% !important}.col-gap-1\/3{grid-column-gap:33.333333% !important;-moz-column-gap:33.333333% !important;column-gap:33.333333% !important}.col-gap-2\/3{grid-column-gap:66.666667% !important;-moz-column-gap:66.666667% !important;column-gap:66.666667% !important}.col-gap-1\/4{grid-column-gap:25% !important;-moz-column-gap:25% !important;column-gap:25% !important}.col-gap-2\/4{grid-column-gap:50% !important;-moz-column-gap:50% !important;column-gap:50% !important}.col-gap-3\/4{grid-column-gap:75% !important;-moz-column-gap:75% !important;column-gap:75% !important}.col-gap-1\/5{grid-column-gap:20% !important;-moz-column-gap:20% !important;column-gap:20% !important}.col-gap-2\/5{grid-column-gap:40% !important;-moz-column-gap:40% !important;column-gap:40% !important}.col-gap-3\/5{grid-column-gap:60% !important;-moz-column-gap:60% !important;column-gap:60% !important}.col-gap-4\/5{grid-column-gap:80% !important;-moz-column-gap:80% !important;column-gap:80% !important}.col-gap-1\/6{grid-column-gap:16.666667% !important;-moz-column-gap:16.666667% !important;column-gap:16.666667% !important}.col-gap-2\/6{grid-column-gap:33.333333% !important;-moz-column-gap:33.333333% !important;column-gap:33.333333% !important}.col-gap-3\/6{grid-column-gap:50% !important;-moz-column-gap:50% !important;column-gap:50% !important}.col-gap-4\/6{grid-column-gap:66.666667% !important;-moz-column-gap:66.666667% !important;column-gap:66.666667% !important}.col-gap-5\/6{grid-column-gap:83.333333% !important;-moz-column-gap:83.333333% !important;column-gap:83.333333% !important}.col-gap-1\/12{grid-column-gap:8.333333% !important;-moz-column-gap:8.333333% !important;column-gap:8.333333% !important}.col-gap-2\/12{grid-column-gap:16.666667% !important;-moz-column-gap:16.666667% !important;column-gap:16.666667% !important}.col-gap-3\/12{grid-column-gap:25% !important;-moz-column-gap:25% !important;column-gap:25% !important}.col-gap-4\/12{grid-column-gap:33.333333% !important;-moz-column-gap:33.333333% !important;column-gap:33.333333% !important}.col-gap-5\/12{grid-column-gap:41.666667% !important;-moz-column-gap:41.666667% !important;column-gap:41.666667% !important}.col-gap-6\/12{grid-column-gap:50% !important;-moz-column-gap:50% !important;column-gap:50% !important}.col-gap-7\/12{grid-column-gap:58.333333% !important;-moz-column-gap:58.333333% !important;column-gap:58.333333% !important}.col-gap-8\/12{grid-column-gap:66.666667% !important;-moz-column-gap:66.666667% !important;column-gap:66.666667% !important}.col-gap-9\/12{grid-column-gap:75% !important;-moz-column-gap:75% !important;column-gap:75% !important}.col-gap-10\/12{grid-column-gap:83.333333% !important;-moz-column-gap:83.333333% !important;column-gap:83.333333% !important}.col-gap-11\/12{grid-column-gap:91.666667% !important;-moz-column-gap:91.666667% !important;column-gap:91.666667% !important}.col-gap-full{grid-column-gap:100% !important;-moz-column-gap:100% !important;column-gap:100% !important}.row-gap-0{grid-row-gap:0 !important;row-gap:0 !important}.row-gap-1{grid-row-gap:.25rem !important;row-gap:.25rem !important}.row-gap-2{grid-row-gap:.5rem !important;row-gap:.5rem !important}.row-gap-3{grid-row-gap:.75rem !important;row-gap:.75rem !important}.row-gap-4{grid-row-gap:1rem !important;row-gap:1rem !important}.row-gap-5{grid-row-gap:1.25rem !important;row-gap:1.25rem !important}.row-gap-6{grid-row-gap:1.5rem !important;row-gap:1.5rem !important}.row-gap-7{grid-row-gap:1.75rem !important;row-gap:1.75rem !important}.row-gap-8{grid-row-gap:2rem !important;row-gap:2rem !important}.row-gap-9{grid-row-gap:2.25rem !important;row-gap:2.25rem !important}.row-gap-10{grid-row-gap:2.5rem !important;row-gap:2.5rem !important}.row-gap-11{grid-row-gap:2.75rem !important;row-gap:2.75rem !important}.row-gap-12{grid-row-gap:3rem !important;row-gap:3rem !important}.row-gap-13{grid-row-gap:3.25rem !important;row-gap:3.25rem !important}.row-gap-14{grid-row-gap:3.5rem !important;row-gap:3.5rem !important}.row-gap-15{grid-row-gap:3.75rem !important;row-gap:3.75rem !important}.row-gap-16{grid-row-gap:4rem !important;row-gap:4rem !important}.row-gap-20{grid-row-gap:5rem !important;row-gap:5rem !important}.row-gap-24{grid-row-gap:6rem !important;row-gap:6rem !important}.row-gap-28{grid-row-gap:7rem !important;row-gap:7rem !important}.row-gap-32{grid-row-gap:8rem !important;row-gap:8rem !important}.row-gap-36{grid-row-gap:9rem !important;row-gap:9rem !important}.row-gap-40{grid-row-gap:10rem !important;row-gap:10rem !important}.row-gap-48{grid-row-gap:12rem !important;row-gap:12rem !important}.row-gap-56{grid-row-gap:14rem !important;row-gap:14rem !important}.row-gap-60{grid-row-gap:15rem !important;row-gap:15rem !important}.row-gap-64{grid-row-gap:16rem !important;row-gap:16rem !important}.row-gap-72{grid-row-gap:18rem !important;row-gap:18rem !important}.row-gap-80{grid-row-gap:20rem !important;row-gap:20rem !important}.row-gap-96{grid-row-gap:24rem !important;row-gap:24rem !important}.row-gap-px{grid-row-gap:1px !important;row-gap:1px !important}.row-gap-0\.5{grid-row-gap:.125rem !important;row-gap:.125rem !important}.row-gap-1\.5{grid-row-gap:.375rem !important;row-gap:.375rem !important}.row-gap-2\.5{grid-row-gap:.625rem !important;row-gap:.625rem !important}.row-gap-3\.5{grid-row-gap:.875rem !important;row-gap:.875rem !important}.row-gap-1\/2{grid-row-gap:50% !important;row-gap:50% !important}.row-gap-1\/3{grid-row-gap:33.333333% !important;row-gap:33.333333% !important}.row-gap-2\/3{grid-row-gap:66.666667% !important;row-gap:66.666667% !important}.row-gap-1\/4{grid-row-gap:25% !important;row-gap:25% !important}.row-gap-2\/4{grid-row-gap:50% !important;row-gap:50% !important}.row-gap-3\/4{grid-row-gap:75% !important;row-gap:75% !important}.row-gap-1\/5{grid-row-gap:20% !important;row-gap:20% !important}.row-gap-2\/5{grid-row-gap:40% !important;row-gap:40% !important}.row-gap-3\/5{grid-row-gap:60% !important;row-gap:60% !important}.row-gap-4\/5{grid-row-gap:80% !important;row-gap:80% !important}.row-gap-1\/6{grid-row-gap:16.666667% !important;row-gap:16.666667% !important}.row-gap-2\/6{grid-row-gap:33.333333% !important;row-gap:33.333333% !important}.row-gap-3\/6{grid-row-gap:50% !important;row-gap:50% !important}.row-gap-4\/6{grid-row-gap:66.666667% !important;row-gap:66.666667% !important}.row-gap-5\/6{grid-row-gap:83.333333% !important;row-gap:83.333333% !important}.row-gap-1\/12{grid-row-gap:8.333333% !important;row-gap:8.333333% !important}.row-gap-2\/12{grid-row-gap:16.666667% !important;row-gap:16.666667% !important}.row-gap-3\/12{grid-row-gap:25% !important;row-gap:25% !important}.row-gap-4\/12{grid-row-gap:33.333333% !important;row-gap:33.333333% !important}.row-gap-5\/12{grid-row-gap:41.666667% !important;row-gap:41.666667% !important}.row-gap-6\/12{grid-row-gap:50% !important;row-gap:50% !important}.row-gap-7\/12{grid-row-gap:58.333333% !important;row-gap:58.333333% !important}.row-gap-8\/12{grid-row-gap:66.666667% !important;row-gap:66.666667% !important}.row-gap-9\/12{grid-row-gap:75% !important;row-gap:75% !important}.row-gap-10\/12{grid-row-gap:83.333333% !important;row-gap:83.333333% !important}.row-gap-11\/12{grid-row-gap:91.666667% !important;row-gap:91.666667% !important}.row-gap-full{grid-row-gap:100% !important;row-gap:100% !important}.grid-flow-row{grid-auto-flow:row !important}.grid-flow-col{grid-auto-flow:column !important}.grid-flow-row-dense{grid-auto-flow:row dense !important}.grid-flow-col-dense{grid-auto-flow:column dense !important}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr)) !important}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr)) !important}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr)) !important}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr)) !important}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr)) !important}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr)) !important}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr)) !important}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr)) !important}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr)) !important}.grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr)) !important}.grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr)) !important}.grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr)) !important}.grid-cols-none{grid-template-columns:none !important}.col-auto{grid-column:auto !important}.col-span-1{grid-column:span 1 / span 1 !important}.col-span-2{grid-column:span 2 / span 2 !important}.col-span-3{grid-column:span 3 / span 3 !important}.col-span-4{grid-column:span 4 / span 4 !important}.col-span-5{grid-column:span 5 / span 5 !important}.col-span-6{grid-column:span 6 / span 6 !important}.col-span-7{grid-column:span 7 / span 7 !important}.col-span-8{grid-column:span 8 / span 8 !important}.col-span-9{grid-column:span 9 / span 9 !important}.col-span-10{grid-column:span 10 / span 10 !important}.col-span-11{grid-column:span 11 / span 11 !important}.col-span-12{grid-column:span 12 / span 12 !important}.col-start-1{grid-column-start:1 !important}.col-start-2{grid-column-start:2 !important}.col-start-3{grid-column-start:3 !important}.col-start-4{grid-column-start:4 !important}.col-start-5{grid-column-start:5 !important}.col-start-6{grid-column-start:6 !important}.col-start-7{grid-column-start:7 !important}.col-start-8{grid-column-start:8 !important}.col-start-9{grid-column-start:9 !important}.col-start-10{grid-column-start:10 !important}.col-start-11{grid-column-start:11 !important}.col-start-12{grid-column-start:12 !important}.col-start-13{grid-column-start:13 !important}.col-start-auto{grid-column-start:auto !important}.col-end-1{grid-column-end:1 !important}.col-end-2{grid-column-end:2 !important}.col-end-3{grid-column-end:3 !important}.col-end-4{grid-column-end:4 !important}.col-end-5{grid-column-end:5 !important}.col-end-6{grid-column-end:6 !important}.col-end-7{grid-column-end:7 !important}.col-end-8{grid-column-end:8 !important}.col-end-9{grid-column-end:9 !important}.col-end-10{grid-column-end:10 !important}.col-end-11{grid-column-end:11 !important}.col-end-12{grid-column-end:12 !important}.col-end-13{grid-column-end:13 !important}.col-end-auto{grid-column-end:auto !important}.grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr)) !important}.grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr)) !important}.grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr)) !important}.grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr)) !important}.grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr)) !important}.grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr)) !important}.grid-rows-none{grid-template-rows:none !important}.row-auto{grid-row:auto !important}.row-span-1{grid-row:span 1 / span 1 !important}.row-span-2{grid-row:span 2 / span 2 !important}.row-span-3{grid-row:span 3 / span 3 !important}.row-span-4{grid-row:span 4 / span 4 !important}.row-span-5{grid-row:span 5 / span 5 !important}.row-span-6{grid-row:span 6 / span 6 !important}.row-start-1{grid-row-start:1 !important}.row-start-2{grid-row-start:2 !important}.row-start-3{grid-row-start:3 !important}.row-start-4{grid-row-start:4 !important}.row-start-5{grid-row-start:5 !important}.row-start-6{grid-row-start:6 !important}.row-start-7{grid-row-start:7 !important}.row-start-auto{grid-row-start:auto !important}.row-end-1{grid-row-end:1 !important}.row-end-2{grid-row-end:2 !important}.row-end-3{grid-row-end:3 !important}.row-end-4{grid-row-end:4 !important}.row-end-5{grid-row-end:5 !important}.row-end-6{grid-row-end:6 !important}.row-end-7{grid-row-end:7 !important}.row-end-auto{grid-row-end:auto !important}.transform{--transform-translate-x:0 !important;--transform-translate-y:0 !important;--transform-rotate:0 !important;--transform-skew-x:0 !important;--transform-skew-y:0 !important;--transform-scale-x:1 !important;--transform-scale-y:1 !important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important}.transform-none{transform:none !important}.origin-center{transform-origin:center !important}.origin-top{transform-origin:top !important}.origin-top-right{transform-origin:top right !important}.origin-right{transform-origin:right !important}.origin-bottom-right{transform-origin:bottom right !important}.origin-bottom{transform-origin:bottom !important}.origin-bottom-left{transform-origin:bottom left !important}.origin-left{transform-origin:left !important}.origin-top-left{transform-origin:top left !important}.scale-0{--transform-scale-x:0 !important;--transform-scale-y:0 !important}.scale-50{--transform-scale-x:.5 !important;--transform-scale-y:.5 !important}.scale-75{--transform-scale-x:.75 !important;--transform-scale-y:.75 !important}.scale-90{--transform-scale-x:.9 !important;--transform-scale-y:.9 !important}.scale-95{--transform-scale-x:.95 !important;--transform-scale-y:.95 !important}.scale-100{--transform-scale-x:1 !important;--transform-scale-y:1 !important}.scale-105{--transform-scale-x:1.05 !important;--transform-scale-y:1.05 !important}.scale-110{--transform-scale-x:1.1 !important;--transform-scale-y:1.1 !important}.scale-125{--transform-scale-x:1.25 !important;--transform-scale-y:1.25 !important}.scale-150{--transform-scale-x:1.5 !important;--transform-scale-y:1.5 !important}.scale-x-0{--transform-scale-x:0 !important}.scale-x-50{--transform-scale-x:.5 !important}.scale-x-75{--transform-scale-x:.75 !important}.scale-x-90{--transform-scale-x:.9 !important}.scale-x-95{--transform-scale-x:.95 !important}.scale-x-100{--transform-scale-x:1 !important}.scale-x-105{--transform-scale-x:1.05 !important}.scale-x-110{--transform-scale-x:1.1 !important}.scale-x-125{--transform-scale-x:1.25 !important}.scale-x-150{--transform-scale-x:1.5 !important}.scale-y-0{--transform-scale-y:0 !important}.scale-y-50{--transform-scale-y:.5 !important}.scale-y-75{--transform-scale-y:.75 !important}.scale-y-90{--transform-scale-y:.9 !important}.scale-y-95{--transform-scale-y:.95 !important}.scale-y-100{--transform-scale-y:1 !important}.scale-y-105{--transform-scale-y:1.05 !important}.scale-y-110{--transform-scale-y:1.1 !important}.scale-y-125{--transform-scale-y:1.25 !important}.scale-y-150{--transform-scale-y:1.5 !important}.hover\:scale-0:hover{--transform-scale-x:0 !important;--transform-scale-y:0 !important}.hover\:scale-50:hover{--transform-scale-x:.5 !important;--transform-scale-y:.5 !important}.hover\:scale-75:hover{--transform-scale-x:.75 !important;--transform-scale-y:.75 !important}.hover\:scale-90:hover{--transform-scale-x:.9 !important;--transform-scale-y:.9 !important}.hover\:scale-95:hover{--transform-scale-x:.95 !important;--transform-scale-y:.95 !important}.hover\:scale-100:hover{--transform-scale-x:1 !important;--transform-scale-y:1 !important}.hover\:scale-105:hover{--transform-scale-x:1.05 !important;--transform-scale-y:1.05 !important}.hover\:scale-110:hover{--transform-scale-x:1.1 !important;--transform-scale-y:1.1 !important}.hover\:scale-125:hover{--transform-scale-x:1.25 !important;--transform-scale-y:1.25 !important}.hover\:scale-150:hover{--transform-scale-x:1.5 !important;--transform-scale-y:1.5 !important}.hover\:scale-x-0:hover{--transform-scale-x:0 !important}.hover\:scale-x-50:hover{--transform-scale-x:.5 !important}.hover\:scale-x-75:hover{--transform-scale-x:.75 !important}.hover\:scale-x-90:hover{--transform-scale-x:.9 !important}.hover\:scale-x-95:hover{--transform-scale-x:.95 !important}.hover\:scale-x-100:hover{--transform-scale-x:1 !important}.hover\:scale-x-105:hover{--transform-scale-x:1.05 !important}.hover\:scale-x-110:hover{--transform-scale-x:1.1 !important}.hover\:scale-x-125:hover{--transform-scale-x:1.25 !important}.hover\:scale-x-150:hover{--transform-scale-x:1.5 !important}.hover\:scale-y-0:hover{--transform-scale-y:0 !important}.hover\:scale-y-50:hover{--transform-scale-y:.5 !important}.hover\:scale-y-75:hover{--transform-scale-y:.75 !important}.hover\:scale-y-90:hover{--transform-scale-y:.9 !important}.hover\:scale-y-95:hover{--transform-scale-y:.95 !important}.hover\:scale-y-100:hover{--transform-scale-y:1 !important}.hover\:scale-y-105:hover{--transform-scale-y:1.05 !important}.hover\:scale-y-110:hover{--transform-scale-y:1.1 !important}.hover\:scale-y-125:hover{--transform-scale-y:1.25 !important}.hover\:scale-y-150:hover{--transform-scale-y:1.5 !important}.focus\:scale-0:focus{--transform-scale-x:0 !important;--transform-scale-y:0 !important}.focus\:scale-50:focus{--transform-scale-x:.5 !important;--transform-scale-y:.5 !important}.focus\:scale-75:focus{--transform-scale-x:.75 !important;--transform-scale-y:.75 !important}.focus\:scale-90:focus{--transform-scale-x:.9 !important;--transform-scale-y:.9 !important}.focus\:scale-95:focus{--transform-scale-x:.95 !important;--transform-scale-y:.95 !important}.focus\:scale-100:focus{--transform-scale-x:1 !important;--transform-scale-y:1 !important}.focus\:scale-105:focus{--transform-scale-x:1.05 !important;--transform-scale-y:1.05 !important}.focus\:scale-110:focus{--transform-scale-x:1.1 !important;--transform-scale-y:1.1 !important}.focus\:scale-125:focus{--transform-scale-x:1.25 !important;--transform-scale-y:1.25 !important}.focus\:scale-150:focus{--transform-scale-x:1.5 !important;--transform-scale-y:1.5 !important}.focus\:scale-x-0:focus{--transform-scale-x:0 !important}.focus\:scale-x-50:focus{--transform-scale-x:.5 !important}.focus\:scale-x-75:focus{--transform-scale-x:.75 !important}.focus\:scale-x-90:focus{--transform-scale-x:.9 !important}.focus\:scale-x-95:focus{--transform-scale-x:.95 !important}.focus\:scale-x-100:focus{--transform-scale-x:1 !important}.focus\:scale-x-105:focus{--transform-scale-x:1.05 !important}.focus\:scale-x-110:focus{--transform-scale-x:1.1 !important}.focus\:scale-x-125:focus{--transform-scale-x:1.25 !important}.focus\:scale-x-150:focus{--transform-scale-x:1.5 !important}.focus\:scale-y-0:focus{--transform-scale-y:0 !important}.focus\:scale-y-50:focus{--transform-scale-y:.5 !important}.focus\:scale-y-75:focus{--transform-scale-y:.75 !important}.focus\:scale-y-90:focus{--transform-scale-y:.9 !important}.focus\:scale-y-95:focus{--transform-scale-y:.95 !important}.focus\:scale-y-100:focus{--transform-scale-y:1 !important}.focus\:scale-y-105:focus{--transform-scale-y:1.05 !important}.focus\:scale-y-110:focus{--transform-scale-y:1.1 !important}.focus\:scale-y-125:focus{--transform-scale-y:1.25 !important}.focus\:scale-y-150:focus{--transform-scale-y:1.5 !important}.rotate-0{--transform-rotate:0 !important}.rotate-45{--transform-rotate:45deg !important}.rotate-90{--transform-rotate:90deg !important}.rotate-180{--transform-rotate:180deg !important}.-rotate-180{--transform-rotate:-180deg !important}.-rotate-90{--transform-rotate:-90deg !important}.-rotate-45{--transform-rotate:-45deg !important}.hover\:rotate-0:hover{--transform-rotate:0 !important}.hover\:rotate-45:hover{--transform-rotate:45deg !important}.hover\:rotate-90:hover{--transform-rotate:90deg !important}.hover\:rotate-180:hover{--transform-rotate:180deg !important}.hover\:-rotate-180:hover{--transform-rotate:-180deg !important}.hover\:-rotate-90:hover{--transform-rotate:-90deg !important}.hover\:-rotate-45:hover{--transform-rotate:-45deg !important}.focus\:rotate-0:focus{--transform-rotate:0 !important}.focus\:rotate-45:focus{--transform-rotate:45deg !important}.focus\:rotate-90:focus{--transform-rotate:90deg !important}.focus\:rotate-180:focus{--transform-rotate:180deg !important}.focus\:-rotate-180:focus{--transform-rotate:-180deg !important}.focus\:-rotate-90:focus{--transform-rotate:-90deg !important}.focus\:-rotate-45:focus{--transform-rotate:-45deg !important}.translate-x-0{--transform-translate-x:0 !important}.translate-x-1{--transform-translate-x:.25rem !important}.translate-x-2{--transform-translate-x:.5rem !important}.translate-x-3{--transform-translate-x:.75rem !important}.translate-x-4{--transform-translate-x:1rem !important}.translate-x-5{--transform-translate-x:1.25rem !important}.translate-x-6{--transform-translate-x:1.5rem !important}.translate-x-7{--transform-translate-x:1.75rem !important}.translate-x-8{--transform-translate-x:2rem !important}.translate-x-9{--transform-translate-x:2.25rem !important}.translate-x-10{--transform-translate-x:2.5rem !important}.translate-x-11{--transform-translate-x:2.75rem !important}.translate-x-12{--transform-translate-x:3rem !important}.translate-x-13{--transform-translate-x:3.25rem !important}.translate-x-14{--transform-translate-x:3.5rem !important}.translate-x-15{--transform-translate-x:3.75rem !important}.translate-x-16{--transform-translate-x:4rem !important}.translate-x-20{--transform-translate-x:5rem !important}.translate-x-24{--transform-translate-x:6rem !important}.translate-x-28{--transform-translate-x:7rem !important}.translate-x-32{--transform-translate-x:8rem !important}.translate-x-36{--transform-translate-x:9rem !important}.translate-x-40{--transform-translate-x:10rem !important}.translate-x-48{--transform-translate-x:12rem !important}.translate-x-56{--transform-translate-x:14rem !important}.translate-x-60{--transform-translate-x:15rem !important}.translate-x-64{--transform-translate-x:16rem !important}.translate-x-72{--transform-translate-x:18rem !important}.translate-x-80{--transform-translate-x:20rem !important}.translate-x-96{--transform-translate-x:24rem !important}.translate-x-px{--transform-translate-x:1px !important}.translate-x-0\.5{--transform-translate-x:.125rem !important}.translate-x-1\.5{--transform-translate-x:.375rem !important}.translate-x-2\.5{--transform-translate-x:.625rem !important}.translate-x-3\.5{--transform-translate-x:.875rem !important}.translate-x-1\/2{--transform-translate-x:50% !important}.translate-x-1\/3{--transform-translate-x:33.333333% !important}.translate-x-2\/3{--transform-translate-x:66.666667% !important}.translate-x-1\/4{--transform-translate-x:25% !important}.translate-x-2\/4{--transform-translate-x:50% !important}.translate-x-3\/4{--transform-translate-x:75% !important}.translate-x-1\/5{--transform-translate-x:20% !important}.translate-x-2\/5{--transform-translate-x:40% !important}.translate-x-3\/5{--transform-translate-x:60% !important}.translate-x-4\/5{--transform-translate-x:80% !important}.translate-x-1\/6{--transform-translate-x:16.666667% !important}.translate-x-2\/6{--transform-translate-x:33.333333% !important}.translate-x-3\/6{--transform-translate-x:50% !important}.translate-x-4\/6{--transform-translate-x:66.666667% !important}.translate-x-5\/6{--transform-translate-x:83.333333% !important}.translate-x-1\/12{--transform-translate-x:8.333333% !important}.translate-x-2\/12{--transform-translate-x:16.666667% !important}.translate-x-3\/12{--transform-translate-x:25% !important}.translate-x-4\/12{--transform-translate-x:33.333333% !important}.translate-x-5\/12{--transform-translate-x:41.666667% !important}.translate-x-6\/12{--transform-translate-x:50% !important}.translate-x-7\/12{--transform-translate-x:58.333333% !important}.translate-x-8\/12{--transform-translate-x:66.666667% !important}.translate-x-9\/12{--transform-translate-x:75% !important}.translate-x-10\/12{--transform-translate-x:83.333333% !important}.translate-x-11\/12{--transform-translate-x:91.666667% !important}.translate-x-full{--transform-translate-x:100% !important}.-translate-x-1{--transform-translate-x:-0.25rem !important}.-translate-x-2{--transform-translate-x:-0.5rem !important}.-translate-x-3{--transform-translate-x:-0.75rem !important}.-translate-x-4{--transform-translate-x:-1rem !important}.-translate-x-5{--transform-translate-x:-1.25rem !important}.-translate-x-6{--transform-translate-x:-1.5rem !important}.-translate-x-7{--transform-translate-x:-1.75rem !important}.-translate-x-8{--transform-translate-x:-2rem !important}.-translate-x-9{--transform-translate-x:-2.25rem !important}.-translate-x-10{--transform-translate-x:-2.5rem !important}.-translate-x-11{--transform-translate-x:-2.75rem !important}.-translate-x-12{--transform-translate-x:-3rem !important}.-translate-x-13{--transform-translate-x:-3.25rem !important}.-translate-x-14{--transform-translate-x:-3.5rem !important}.-translate-x-15{--transform-translate-x:-3.75rem !important}.-translate-x-16{--transform-translate-x:-4rem !important}.-translate-x-20{--transform-translate-x:-5rem !important}.-translate-x-24{--transform-translate-x:-6rem !important}.-translate-x-28{--transform-translate-x:-7rem !important}.-translate-x-32{--transform-translate-x:-8rem !important}.-translate-x-36{--transform-translate-x:-9rem !important}.-translate-x-40{--transform-translate-x:-10rem !important}.-translate-x-48{--transform-translate-x:-12rem !important}.-translate-x-56{--transform-translate-x:-14rem !important}.-translate-x-60{--transform-translate-x:-15rem !important}.-translate-x-64{--transform-translate-x:-16rem !important}.-translate-x-72{--transform-translate-x:-18rem !important}.-translate-x-80{--transform-translate-x:-20rem !important}.-translate-x-96{--transform-translate-x:-24rem !important}.-translate-x-px{--transform-translate-x:-1px !important}.-translate-x-0\.5{--transform-translate-x:-0.125rem !important}.-translate-x-1\.5{--transform-translate-x:-0.375rem !important}.-translate-x-2\.5{--transform-translate-x:-0.625rem !important}.-translate-x-3\.5{--transform-translate-x:-0.875rem !important}.-translate-x-1\/2{--transform-translate-x:-50% !important}.-translate-x-1\/3{--transform-translate-x:-33.33333% !important}.-translate-x-2\/3{--transform-translate-x:-66.66667% !important}.-translate-x-1\/4{--transform-translate-x:-25% !important}.-translate-x-2\/4{--transform-translate-x:-50% !important}.-translate-x-3\/4{--transform-translate-x:-75% !important}.-translate-x-1\/5{--transform-translate-x:-20% !important}.-translate-x-2\/5{--transform-translate-x:-40% !important}.-translate-x-3\/5{--transform-translate-x:-60% !important}.-translate-x-4\/5{--transform-translate-x:-80% !important}.-translate-x-1\/6{--transform-translate-x:-16.66667% !important}.-translate-x-2\/6{--transform-translate-x:-33.33333% !important}.-translate-x-3\/6{--transform-translate-x:-50% !important}.-translate-x-4\/6{--transform-translate-x:-66.66667% !important}.-translate-x-5\/6{--transform-translate-x:-83.33333% !important}.-translate-x-1\/12{--transform-translate-x:-8.33333% !important}.-translate-x-2\/12{--transform-translate-x:-16.66667% !important}.-translate-x-3\/12{--transform-translate-x:-25% !important}.-translate-x-4\/12{--transform-translate-x:-33.33333% !important}.-translate-x-5\/12{--transform-translate-x:-41.66667% !important}.-translate-x-6\/12{--transform-translate-x:-50% !important}.-translate-x-7\/12{--transform-translate-x:-58.33333% !important}.-translate-x-8\/12{--transform-translate-x:-66.66667% !important}.-translate-x-9\/12{--transform-translate-x:-75% !important}.-translate-x-10\/12{--transform-translate-x:-83.33333% !important}.-translate-x-11\/12{--transform-translate-x:-91.66667% !important}.-translate-x-full{--transform-translate-x:-100% !important}.translate-y-0{--transform-translate-y:0 !important}.translate-y-1{--transform-translate-y:.25rem !important}.translate-y-2{--transform-translate-y:.5rem !important}.translate-y-3{--transform-translate-y:.75rem !important}.translate-y-4{--transform-translate-y:1rem !important}.translate-y-5{--transform-translate-y:1.25rem !important}.translate-y-6{--transform-translate-y:1.5rem !important}.translate-y-7{--transform-translate-y:1.75rem !important}.translate-y-8{--transform-translate-y:2rem !important}.translate-y-9{--transform-translate-y:2.25rem !important}.translate-y-10{--transform-translate-y:2.5rem !important}.translate-y-11{--transform-translate-y:2.75rem !important}.translate-y-12{--transform-translate-y:3rem !important}.translate-y-13{--transform-translate-y:3.25rem !important}.translate-y-14{--transform-translate-y:3.5rem !important}.translate-y-15{--transform-translate-y:3.75rem !important}.translate-y-16{--transform-translate-y:4rem !important}.translate-y-20{--transform-translate-y:5rem !important}.translate-y-24{--transform-translate-y:6rem !important}.translate-y-28{--transform-translate-y:7rem !important}.translate-y-32{--transform-translate-y:8rem !important}.translate-y-36{--transform-translate-y:9rem !important}.translate-y-40{--transform-translate-y:10rem !important}.translate-y-48{--transform-translate-y:12rem !important}.translate-y-56{--transform-translate-y:14rem !important}.translate-y-60{--transform-translate-y:15rem !important}.translate-y-64{--transform-translate-y:16rem !important}.translate-y-72{--transform-translate-y:18rem !important}.translate-y-80{--transform-translate-y:20rem !important}.translate-y-96{--transform-translate-y:24rem !important}.translate-y-px{--transform-translate-y:1px !important}.translate-y-0\.5{--transform-translate-y:.125rem !important}.translate-y-1\.5{--transform-translate-y:.375rem !important}.translate-y-2\.5{--transform-translate-y:.625rem !important}.translate-y-3\.5{--transform-translate-y:.875rem !important}.translate-y-1\/2{--transform-translate-y:50% !important}.translate-y-1\/3{--transform-translate-y:33.333333% !important}.translate-y-2\/3{--transform-translate-y:66.666667% !important}.translate-y-1\/4{--transform-translate-y:25% !important}.translate-y-2\/4{--transform-translate-y:50% !important}.translate-y-3\/4{--transform-translate-y:75% !important}.translate-y-1\/5{--transform-translate-y:20% !important}.translate-y-2\/5{--transform-translate-y:40% !important}.translate-y-3\/5{--transform-translate-y:60% !important}.translate-y-4\/5{--transform-translate-y:80% !important}.translate-y-1\/6{--transform-translate-y:16.666667% !important}.translate-y-2\/6{--transform-translate-y:33.333333% !important}.translate-y-3\/6{--transform-translate-y:50% !important}.translate-y-4\/6{--transform-translate-y:66.666667% !important}.translate-y-5\/6{--transform-translate-y:83.333333% !important}.translate-y-1\/12{--transform-translate-y:8.333333% !important}.translate-y-2\/12{--transform-translate-y:16.666667% !important}.translate-y-3\/12{--transform-translate-y:25% !important}.translate-y-4\/12{--transform-translate-y:33.333333% !important}.translate-y-5\/12{--transform-translate-y:41.666667% !important}.translate-y-6\/12{--transform-translate-y:50% !important}.translate-y-7\/12{--transform-translate-y:58.333333% !important}.translate-y-8\/12{--transform-translate-y:66.666667% !important}.translate-y-9\/12{--transform-translate-y:75% !important}.translate-y-10\/12{--transform-translate-y:83.333333% !important}.translate-y-11\/12{--transform-translate-y:91.666667% !important}.translate-y-full{--transform-translate-y:100% !important}.-translate-y-1{--transform-translate-y:-0.25rem !important}.-translate-y-2{--transform-translate-y:-0.5rem !important}.-translate-y-3{--transform-translate-y:-0.75rem !important}.-translate-y-4{--transform-translate-y:-1rem !important}.-translate-y-5{--transform-translate-y:-1.25rem !important}.-translate-y-6{--transform-translate-y:-1.5rem !important}.-translate-y-7{--transform-translate-y:-1.75rem !important}.-translate-y-8{--transform-translate-y:-2rem !important}.-translate-y-9{--transform-translate-y:-2.25rem !important}.-translate-y-10{--transform-translate-y:-2.5rem !important}.-translate-y-11{--transform-translate-y:-2.75rem !important}.-translate-y-12{--transform-translate-y:-3rem !important}.-translate-y-13{--transform-translate-y:-3.25rem !important}.-translate-y-14{--transform-translate-y:-3.5rem !important}.-translate-y-15{--transform-translate-y:-3.75rem !important}.-translate-y-16{--transform-translate-y:-4rem !important}.-translate-y-20{--transform-translate-y:-5rem !important}.-translate-y-24{--transform-translate-y:-6rem !important}.-translate-y-28{--transform-translate-y:-7rem !important}.-translate-y-32{--transform-translate-y:-8rem !important}.-translate-y-36{--transform-translate-y:-9rem !important}.-translate-y-40{--transform-translate-y:-10rem !important}.-translate-y-48{--transform-translate-y:-12rem !important}.-translate-y-56{--transform-translate-y:-14rem !important}.-translate-y-60{--transform-translate-y:-15rem !important}.-translate-y-64{--transform-translate-y:-16rem !important}.-translate-y-72{--transform-translate-y:-18rem !important}.-translate-y-80{--transform-translate-y:-20rem !important}.-translate-y-96{--transform-translate-y:-24rem !important}.-translate-y-px{--transform-translate-y:-1px !important}.-translate-y-0\.5{--transform-translate-y:-0.125rem !important}.-translate-y-1\.5{--transform-translate-y:-0.375rem !important}.-translate-y-2\.5{--transform-translate-y:-0.625rem !important}.-translate-y-3\.5{--transform-translate-y:-0.875rem !important}.-translate-y-1\/2{--transform-translate-y:-50% !important}.-translate-y-1\/3{--transform-translate-y:-33.33333% !important}.-translate-y-2\/3{--transform-translate-y:-66.66667% !important}.-translate-y-1\/4{--transform-translate-y:-25% !important}.-translate-y-2\/4{--transform-translate-y:-50% !important}.-translate-y-3\/4{--transform-translate-y:-75% !important}.-translate-y-1\/5{--transform-translate-y:-20% !important}.-translate-y-2\/5{--transform-translate-y:-40% !important}.-translate-y-3\/5{--transform-translate-y:-60% !important}.-translate-y-4\/5{--transform-translate-y:-80% !important}.-translate-y-1\/6{--transform-translate-y:-16.66667% !important}.-translate-y-2\/6{--transform-translate-y:-33.33333% !important}.-translate-y-3\/6{--transform-translate-y:-50% !important}.-translate-y-4\/6{--transform-translate-y:-66.66667% !important}.-translate-y-5\/6{--transform-translate-y:-83.33333% !important}.-translate-y-1\/12{--transform-translate-y:-8.33333% !important}.-translate-y-2\/12{--transform-translate-y:-16.66667% !important}.-translate-y-3\/12{--transform-translate-y:-25% !important}.-translate-y-4\/12{--transform-translate-y:-33.33333% !important}.-translate-y-5\/12{--transform-translate-y:-41.66667% !important}.-translate-y-6\/12{--transform-translate-y:-50% !important}.-translate-y-7\/12{--transform-translate-y:-58.33333% !important}.-translate-y-8\/12{--transform-translate-y:-66.66667% !important}.-translate-y-9\/12{--transform-translate-y:-75% !important}.-translate-y-10\/12{--transform-translate-y:-83.33333% !important}.-translate-y-11\/12{--transform-translate-y:-91.66667% !important}.-translate-y-full{--transform-translate-y:-100% !important}.hover\:translate-x-0:hover{--transform-translate-x:0 !important}.hover\:translate-x-1:hover{--transform-translate-x:.25rem !important}.hover\:translate-x-2:hover{--transform-translate-x:.5rem !important}.hover\:translate-x-3:hover{--transform-translate-x:.75rem !important}.hover\:translate-x-4:hover{--transform-translate-x:1rem !important}.hover\:translate-x-5:hover{--transform-translate-x:1.25rem !important}.hover\:translate-x-6:hover{--transform-translate-x:1.5rem !important}.hover\:translate-x-7:hover{--transform-translate-x:1.75rem !important}.hover\:translate-x-8:hover{--transform-translate-x:2rem !important}.hover\:translate-x-9:hover{--transform-translate-x:2.25rem !important}.hover\:translate-x-10:hover{--transform-translate-x:2.5rem !important}.hover\:translate-x-11:hover{--transform-translate-x:2.75rem !important}.hover\:translate-x-12:hover{--transform-translate-x:3rem !important}.hover\:translate-x-13:hover{--transform-translate-x:3.25rem !important}.hover\:translate-x-14:hover{--transform-translate-x:3.5rem !important}.hover\:translate-x-15:hover{--transform-translate-x:3.75rem !important}.hover\:translate-x-16:hover{--transform-translate-x:4rem !important}.hover\:translate-x-20:hover{--transform-translate-x:5rem !important}.hover\:translate-x-24:hover{--transform-translate-x:6rem !important}.hover\:translate-x-28:hover{--transform-translate-x:7rem !important}.hover\:translate-x-32:hover{--transform-translate-x:8rem !important}.hover\:translate-x-36:hover{--transform-translate-x:9rem !important}.hover\:translate-x-40:hover{--transform-translate-x:10rem !important}.hover\:translate-x-48:hover{--transform-translate-x:12rem !important}.hover\:translate-x-56:hover{--transform-translate-x:14rem !important}.hover\:translate-x-60:hover{--transform-translate-x:15rem !important}.hover\:translate-x-64:hover{--transform-translate-x:16rem !important}.hover\:translate-x-72:hover{--transform-translate-x:18rem !important}.hover\:translate-x-80:hover{--transform-translate-x:20rem !important}.hover\:translate-x-96:hover{--transform-translate-x:24rem !important}.hover\:translate-x-px:hover{--transform-translate-x:1px !important}.hover\:translate-x-0\.5:hover{--transform-translate-x:.125rem !important}.hover\:translate-x-1\.5:hover{--transform-translate-x:.375rem !important}.hover\:translate-x-2\.5:hover{--transform-translate-x:.625rem !important}.hover\:translate-x-3\.5:hover{--transform-translate-x:.875rem !important}.hover\:translate-x-1\/2:hover{--transform-translate-x:50% !important}.hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333% !important}.hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667% !important}.hover\:translate-x-1\/4:hover{--transform-translate-x:25% !important}.hover\:translate-x-2\/4:hover{--transform-translate-x:50% !important}.hover\:translate-x-3\/4:hover{--transform-translate-x:75% !important}.hover\:translate-x-1\/5:hover{--transform-translate-x:20% !important}.hover\:translate-x-2\/5:hover{--transform-translate-x:40% !important}.hover\:translate-x-3\/5:hover{--transform-translate-x:60% !important}.hover\:translate-x-4\/5:hover{--transform-translate-x:80% !important}.hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667% !important}.hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333% !important}.hover\:translate-x-3\/6:hover{--transform-translate-x:50% !important}.hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667% !important}.hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333% !important}.hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333% !important}.hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667% !important}.hover\:translate-x-3\/12:hover{--transform-translate-x:25% !important}.hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333% !important}.hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667% !important}.hover\:translate-x-6\/12:hover{--transform-translate-x:50% !important}.hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333% !important}.hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667% !important}.hover\:translate-x-9\/12:hover{--transform-translate-x:75% !important}.hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333% !important}.hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667% !important}.hover\:translate-x-full:hover{--transform-translate-x:100% !important}.hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem !important}.hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem !important}.hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem !important}.hover\:-translate-x-4:hover{--transform-translate-x:-1rem !important}.hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem !important}.hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem !important}.hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem !important}.hover\:-translate-x-8:hover{--transform-translate-x:-2rem !important}.hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem !important}.hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem !important}.hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem !important}.hover\:-translate-x-12:hover{--transform-translate-x:-3rem !important}.hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem !important}.hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem !important}.hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem !important}.hover\:-translate-x-16:hover{--transform-translate-x:-4rem !important}.hover\:-translate-x-20:hover{--transform-translate-x:-5rem !important}.hover\:-translate-x-24:hover{--transform-translate-x:-6rem !important}.hover\:-translate-x-28:hover{--transform-translate-x:-7rem !important}.hover\:-translate-x-32:hover{--transform-translate-x:-8rem !important}.hover\:-translate-x-36:hover{--transform-translate-x:-9rem !important}.hover\:-translate-x-40:hover{--transform-translate-x:-10rem !important}.hover\:-translate-x-48:hover{--transform-translate-x:-12rem !important}.hover\:-translate-x-56:hover{--transform-translate-x:-14rem !important}.hover\:-translate-x-60:hover{--transform-translate-x:-15rem !important}.hover\:-translate-x-64:hover{--transform-translate-x:-16rem !important}.hover\:-translate-x-72:hover{--transform-translate-x:-18rem !important}.hover\:-translate-x-80:hover{--transform-translate-x:-20rem !important}.hover\:-translate-x-96:hover{--transform-translate-x:-24rem !important}.hover\:-translate-x-px:hover{--transform-translate-x:-1px !important}.hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem !important}.hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem !important}.hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem !important}.hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem !important}.hover\:-translate-x-1\/2:hover{--transform-translate-x:-50% !important}.hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333% !important}.hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667% !important}.hover\:-translate-x-1\/4:hover{--transform-translate-x:-25% !important}.hover\:-translate-x-2\/4:hover{--transform-translate-x:-50% !important}.hover\:-translate-x-3\/4:hover{--transform-translate-x:-75% !important}.hover\:-translate-x-1\/5:hover{--transform-translate-x:-20% !important}.hover\:-translate-x-2\/5:hover{--transform-translate-x:-40% !important}.hover\:-translate-x-3\/5:hover{--transform-translate-x:-60% !important}.hover\:-translate-x-4\/5:hover{--transform-translate-x:-80% !important}.hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667% !important}.hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333% !important}.hover\:-translate-x-3\/6:hover{--transform-translate-x:-50% !important}.hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667% !important}.hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333% !important}.hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333% !important}.hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667% !important}.hover\:-translate-x-3\/12:hover{--transform-translate-x:-25% !important}.hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333% !important}.hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667% !important}.hover\:-translate-x-6\/12:hover{--transform-translate-x:-50% !important}.hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333% !important}.hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667% !important}.hover\:-translate-x-9\/12:hover{--transform-translate-x:-75% !important}.hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333% !important}.hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667% !important}.hover\:-translate-x-full:hover{--transform-translate-x:-100% !important}.hover\:translate-y-0:hover{--transform-translate-y:0 !important}.hover\:translate-y-1:hover{--transform-translate-y:.25rem !important}.hover\:translate-y-2:hover{--transform-translate-y:.5rem !important}.hover\:translate-y-3:hover{--transform-translate-y:.75rem !important}.hover\:translate-y-4:hover{--transform-translate-y:1rem !important}.hover\:translate-y-5:hover{--transform-translate-y:1.25rem !important}.hover\:translate-y-6:hover{--transform-translate-y:1.5rem !important}.hover\:translate-y-7:hover{--transform-translate-y:1.75rem !important}.hover\:translate-y-8:hover{--transform-translate-y:2rem !important}.hover\:translate-y-9:hover{--transform-translate-y:2.25rem !important}.hover\:translate-y-10:hover{--transform-translate-y:2.5rem !important}.hover\:translate-y-11:hover{--transform-translate-y:2.75rem !important}.hover\:translate-y-12:hover{--transform-translate-y:3rem !important}.hover\:translate-y-13:hover{--transform-translate-y:3.25rem !important}.hover\:translate-y-14:hover{--transform-translate-y:3.5rem !important}.hover\:translate-y-15:hover{--transform-translate-y:3.75rem !important}.hover\:translate-y-16:hover{--transform-translate-y:4rem !important}.hover\:translate-y-20:hover{--transform-translate-y:5rem !important}.hover\:translate-y-24:hover{--transform-translate-y:6rem !important}.hover\:translate-y-28:hover{--transform-translate-y:7rem !important}.hover\:translate-y-32:hover{--transform-translate-y:8rem !important}.hover\:translate-y-36:hover{--transform-translate-y:9rem !important}.hover\:translate-y-40:hover{--transform-translate-y:10rem !important}.hover\:translate-y-48:hover{--transform-translate-y:12rem !important}.hover\:translate-y-56:hover{--transform-translate-y:14rem !important}.hover\:translate-y-60:hover{--transform-translate-y:15rem !important}.hover\:translate-y-64:hover{--transform-translate-y:16rem !important}.hover\:translate-y-72:hover{--transform-translate-y:18rem !important}.hover\:translate-y-80:hover{--transform-translate-y:20rem !important}.hover\:translate-y-96:hover{--transform-translate-y:24rem !important}.hover\:translate-y-px:hover{--transform-translate-y:1px !important}.hover\:translate-y-0\.5:hover{--transform-translate-y:.125rem !important}.hover\:translate-y-1\.5:hover{--transform-translate-y:.375rem !important}.hover\:translate-y-2\.5:hover{--transform-translate-y:.625rem !important}.hover\:translate-y-3\.5:hover{--transform-translate-y:.875rem !important}.hover\:translate-y-1\/2:hover{--transform-translate-y:50% !important}.hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333% !important}.hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667% !important}.hover\:translate-y-1\/4:hover{--transform-translate-y:25% !important}.hover\:translate-y-2\/4:hover{--transform-translate-y:50% !important}.hover\:translate-y-3\/4:hover{--transform-translate-y:75% !important}.hover\:translate-y-1\/5:hover{--transform-translate-y:20% !important}.hover\:translate-y-2\/5:hover{--transform-translate-y:40% !important}.hover\:translate-y-3\/5:hover{--transform-translate-y:60% !important}.hover\:translate-y-4\/5:hover{--transform-translate-y:80% !important}.hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667% !important}.hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333% !important}.hover\:translate-y-3\/6:hover{--transform-translate-y:50% !important}.hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667% !important}.hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333% !important}.hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333% !important}.hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667% !important}.hover\:translate-y-3\/12:hover{--transform-translate-y:25% !important}.hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333% !important}.hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667% !important}.hover\:translate-y-6\/12:hover{--transform-translate-y:50% !important}.hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333% !important}.hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667% !important}.hover\:translate-y-9\/12:hover{--transform-translate-y:75% !important}.hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333% !important}.hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667% !important}.hover\:translate-y-full:hover{--transform-translate-y:100% !important}.hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem !important}.hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem !important}.hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem !important}.hover\:-translate-y-4:hover{--transform-translate-y:-1rem !important}.hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem !important}.hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem !important}.hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem !important}.hover\:-translate-y-8:hover{--transform-translate-y:-2rem !important}.hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem !important}.hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem !important}.hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem !important}.hover\:-translate-y-12:hover{--transform-translate-y:-3rem !important}.hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem !important}.hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem !important}.hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem !important}.hover\:-translate-y-16:hover{--transform-translate-y:-4rem !important}.hover\:-translate-y-20:hover{--transform-translate-y:-5rem !important}.hover\:-translate-y-24:hover{--transform-translate-y:-6rem !important}.hover\:-translate-y-28:hover{--transform-translate-y:-7rem !important}.hover\:-translate-y-32:hover{--transform-translate-y:-8rem !important}.hover\:-translate-y-36:hover{--transform-translate-y:-9rem !important}.hover\:-translate-y-40:hover{--transform-translate-y:-10rem !important}.hover\:-translate-y-48:hover{--transform-translate-y:-12rem !important}.hover\:-translate-y-56:hover{--transform-translate-y:-14rem !important}.hover\:-translate-y-60:hover{--transform-translate-y:-15rem !important}.hover\:-translate-y-64:hover{--transform-translate-y:-16rem !important}.hover\:-translate-y-72:hover{--transform-translate-y:-18rem !important}.hover\:-translate-y-80:hover{--transform-translate-y:-20rem !important}.hover\:-translate-y-96:hover{--transform-translate-y:-24rem !important}.hover\:-translate-y-px:hover{--transform-translate-y:-1px !important}.hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem !important}.hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem !important}.hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem !important}.hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem !important}.hover\:-translate-y-1\/2:hover{--transform-translate-y:-50% !important}.hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333% !important}.hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667% !important}.hover\:-translate-y-1\/4:hover{--transform-translate-y:-25% !important}.hover\:-translate-y-2\/4:hover{--transform-translate-y:-50% !important}.hover\:-translate-y-3\/4:hover{--transform-translate-y:-75% !important}.hover\:-translate-y-1\/5:hover{--transform-translate-y:-20% !important}.hover\:-translate-y-2\/5:hover{--transform-translate-y:-40% !important}.hover\:-translate-y-3\/5:hover{--transform-translate-y:-60% !important}.hover\:-translate-y-4\/5:hover{--transform-translate-y:-80% !important}.hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667% !important}.hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333% !important}.hover\:-translate-y-3\/6:hover{--transform-translate-y:-50% !important}.hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667% !important}.hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333% !important}.hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333% !important}.hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667% !important}.hover\:-translate-y-3\/12:hover{--transform-translate-y:-25% !important}.hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333% !important}.hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667% !important}.hover\:-translate-y-6\/12:hover{--transform-translate-y:-50% !important}.hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333% !important}.hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667% !important}.hover\:-translate-y-9\/12:hover{--transform-translate-y:-75% !important}.hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333% !important}.hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667% !important}.hover\:-translate-y-full:hover{--transform-translate-y:-100% !important}.focus\:translate-x-0:focus{--transform-translate-x:0 !important}.focus\:translate-x-1:focus{--transform-translate-x:.25rem !important}.focus\:translate-x-2:focus{--transform-translate-x:.5rem !important}.focus\:translate-x-3:focus{--transform-translate-x:.75rem !important}.focus\:translate-x-4:focus{--transform-translate-x:1rem !important}.focus\:translate-x-5:focus{--transform-translate-x:1.25rem !important}.focus\:translate-x-6:focus{--transform-translate-x:1.5rem !important}.focus\:translate-x-7:focus{--transform-translate-x:1.75rem !important}.focus\:translate-x-8:focus{--transform-translate-x:2rem !important}.focus\:translate-x-9:focus{--transform-translate-x:2.25rem !important}.focus\:translate-x-10:focus{--transform-translate-x:2.5rem !important}.focus\:translate-x-11:focus{--transform-translate-x:2.75rem !important}.focus\:translate-x-12:focus{--transform-translate-x:3rem !important}.focus\:translate-x-13:focus{--transform-translate-x:3.25rem !important}.focus\:translate-x-14:focus{--transform-translate-x:3.5rem !important}.focus\:translate-x-15:focus{--transform-translate-x:3.75rem !important}.focus\:translate-x-16:focus{--transform-translate-x:4rem !important}.focus\:translate-x-20:focus{--transform-translate-x:5rem !important}.focus\:translate-x-24:focus{--transform-translate-x:6rem !important}.focus\:translate-x-28:focus{--transform-translate-x:7rem !important}.focus\:translate-x-32:focus{--transform-translate-x:8rem !important}.focus\:translate-x-36:focus{--transform-translate-x:9rem !important}.focus\:translate-x-40:focus{--transform-translate-x:10rem !important}.focus\:translate-x-48:focus{--transform-translate-x:12rem !important}.focus\:translate-x-56:focus{--transform-translate-x:14rem !important}.focus\:translate-x-60:focus{--transform-translate-x:15rem !important}.focus\:translate-x-64:focus{--transform-translate-x:16rem !important}.focus\:translate-x-72:focus{--transform-translate-x:18rem !important}.focus\:translate-x-80:focus{--transform-translate-x:20rem !important}.focus\:translate-x-96:focus{--transform-translate-x:24rem !important}.focus\:translate-x-px:focus{--transform-translate-x:1px !important}.focus\:translate-x-0\.5:focus{--transform-translate-x:.125rem !important}.focus\:translate-x-1\.5:focus{--transform-translate-x:.375rem !important}.focus\:translate-x-2\.5:focus{--transform-translate-x:.625rem !important}.focus\:translate-x-3\.5:focus{--transform-translate-x:.875rem !important}.focus\:translate-x-1\/2:focus{--transform-translate-x:50% !important}.focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333% !important}.focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667% !important}.focus\:translate-x-1\/4:focus{--transform-translate-x:25% !important}.focus\:translate-x-2\/4:focus{--transform-translate-x:50% !important}.focus\:translate-x-3\/4:focus{--transform-translate-x:75% !important}.focus\:translate-x-1\/5:focus{--transform-translate-x:20% !important}.focus\:translate-x-2\/5:focus{--transform-translate-x:40% !important}.focus\:translate-x-3\/5:focus{--transform-translate-x:60% !important}.focus\:translate-x-4\/5:focus{--transform-translate-x:80% !important}.focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667% !important}.focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333% !important}.focus\:translate-x-3\/6:focus{--transform-translate-x:50% !important}.focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667% !important}.focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333% !important}.focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333% !important}.focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667% !important}.focus\:translate-x-3\/12:focus{--transform-translate-x:25% !important}.focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333% !important}.focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667% !important}.focus\:translate-x-6\/12:focus{--transform-translate-x:50% !important}.focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333% !important}.focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667% !important}.focus\:translate-x-9\/12:focus{--transform-translate-x:75% !important}.focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333% !important}.focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667% !important}.focus\:translate-x-full:focus{--transform-translate-x:100% !important}.focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem !important}.focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem !important}.focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem !important}.focus\:-translate-x-4:focus{--transform-translate-x:-1rem !important}.focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem !important}.focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem !important}.focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem !important}.focus\:-translate-x-8:focus{--transform-translate-x:-2rem !important}.focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem !important}.focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem !important}.focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem !important}.focus\:-translate-x-12:focus{--transform-translate-x:-3rem !important}.focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem !important}.focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem !important}.focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem !important}.focus\:-translate-x-16:focus{--transform-translate-x:-4rem !important}.focus\:-translate-x-20:focus{--transform-translate-x:-5rem !important}.focus\:-translate-x-24:focus{--transform-translate-x:-6rem !important}.focus\:-translate-x-28:focus{--transform-translate-x:-7rem !important}.focus\:-translate-x-32:focus{--transform-translate-x:-8rem !important}.focus\:-translate-x-36:focus{--transform-translate-x:-9rem !important}.focus\:-translate-x-40:focus{--transform-translate-x:-10rem !important}.focus\:-translate-x-48:focus{--transform-translate-x:-12rem !important}.focus\:-translate-x-56:focus{--transform-translate-x:-14rem !important}.focus\:-translate-x-60:focus{--transform-translate-x:-15rem !important}.focus\:-translate-x-64:focus{--transform-translate-x:-16rem !important}.focus\:-translate-x-72:focus{--transform-translate-x:-18rem !important}.focus\:-translate-x-80:focus{--transform-translate-x:-20rem !important}.focus\:-translate-x-96:focus{--transform-translate-x:-24rem !important}.focus\:-translate-x-px:focus{--transform-translate-x:-1px !important}.focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem !important}.focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem !important}.focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem !important}.focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem !important}.focus\:-translate-x-1\/2:focus{--transform-translate-x:-50% !important}.focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333% !important}.focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667% !important}.focus\:-translate-x-1\/4:focus{--transform-translate-x:-25% !important}.focus\:-translate-x-2\/4:focus{--transform-translate-x:-50% !important}.focus\:-translate-x-3\/4:focus{--transform-translate-x:-75% !important}.focus\:-translate-x-1\/5:focus{--transform-translate-x:-20% !important}.focus\:-translate-x-2\/5:focus{--transform-translate-x:-40% !important}.focus\:-translate-x-3\/5:focus{--transform-translate-x:-60% !important}.focus\:-translate-x-4\/5:focus{--transform-translate-x:-80% !important}.focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667% !important}.focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333% !important}.focus\:-translate-x-3\/6:focus{--transform-translate-x:-50% !important}.focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667% !important}.focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333% !important}.focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333% !important}.focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667% !important}.focus\:-translate-x-3\/12:focus{--transform-translate-x:-25% !important}.focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333% !important}.focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667% !important}.focus\:-translate-x-6\/12:focus{--transform-translate-x:-50% !important}.focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333% !important}.focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667% !important}.focus\:-translate-x-9\/12:focus{--transform-translate-x:-75% !important}.focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333% !important}.focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667% !important}.focus\:-translate-x-full:focus{--transform-translate-x:-100% !important}.focus\:translate-y-0:focus{--transform-translate-y:0 !important}.focus\:translate-y-1:focus{--transform-translate-y:.25rem !important}.focus\:translate-y-2:focus{--transform-translate-y:.5rem !important}.focus\:translate-y-3:focus{--transform-translate-y:.75rem !important}.focus\:translate-y-4:focus{--transform-translate-y:1rem !important}.focus\:translate-y-5:focus{--transform-translate-y:1.25rem !important}.focus\:translate-y-6:focus{--transform-translate-y:1.5rem !important}.focus\:translate-y-7:focus{--transform-translate-y:1.75rem !important}.focus\:translate-y-8:focus{--transform-translate-y:2rem !important}.focus\:translate-y-9:focus{--transform-translate-y:2.25rem !important}.focus\:translate-y-10:focus{--transform-translate-y:2.5rem !important}.focus\:translate-y-11:focus{--transform-translate-y:2.75rem !important}.focus\:translate-y-12:focus{--transform-translate-y:3rem !important}.focus\:translate-y-13:focus{--transform-translate-y:3.25rem !important}.focus\:translate-y-14:focus{--transform-translate-y:3.5rem !important}.focus\:translate-y-15:focus{--transform-translate-y:3.75rem !important}.focus\:translate-y-16:focus{--transform-translate-y:4rem !important}.focus\:translate-y-20:focus{--transform-translate-y:5rem !important}.focus\:translate-y-24:focus{--transform-translate-y:6rem !important}.focus\:translate-y-28:focus{--transform-translate-y:7rem !important}.focus\:translate-y-32:focus{--transform-translate-y:8rem !important}.focus\:translate-y-36:focus{--transform-translate-y:9rem !important}.focus\:translate-y-40:focus{--transform-translate-y:10rem !important}.focus\:translate-y-48:focus{--transform-translate-y:12rem !important}.focus\:translate-y-56:focus{--transform-translate-y:14rem !important}.focus\:translate-y-60:focus{--transform-translate-y:15rem !important}.focus\:translate-y-64:focus{--transform-translate-y:16rem !important}.focus\:translate-y-72:focus{--transform-translate-y:18rem !important}.focus\:translate-y-80:focus{--transform-translate-y:20rem !important}.focus\:translate-y-96:focus{--transform-translate-y:24rem !important}.focus\:translate-y-px:focus{--transform-translate-y:1px !important}.focus\:translate-y-0\.5:focus{--transform-translate-y:.125rem !important}.focus\:translate-y-1\.5:focus{--transform-translate-y:.375rem !important}.focus\:translate-y-2\.5:focus{--transform-translate-y:.625rem !important}.focus\:translate-y-3\.5:focus{--transform-translate-y:.875rem !important}.focus\:translate-y-1\/2:focus{--transform-translate-y:50% !important}.focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333% !important}.focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667% !important}.focus\:translate-y-1\/4:focus{--transform-translate-y:25% !important}.focus\:translate-y-2\/4:focus{--transform-translate-y:50% !important}.focus\:translate-y-3\/4:focus{--transform-translate-y:75% !important}.focus\:translate-y-1\/5:focus{--transform-translate-y:20% !important}.focus\:translate-y-2\/5:focus{--transform-translate-y:40% !important}.focus\:translate-y-3\/5:focus{--transform-translate-y:60% !important}.focus\:translate-y-4\/5:focus{--transform-translate-y:80% !important}.focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667% !important}.focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333% !important}.focus\:translate-y-3\/6:focus{--transform-translate-y:50% !important}.focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667% !important}.focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333% !important}.focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333% !important}.focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667% !important}.focus\:translate-y-3\/12:focus{--transform-translate-y:25% !important}.focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333% !important}.focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667% !important}.focus\:translate-y-6\/12:focus{--transform-translate-y:50% !important}.focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333% !important}.focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667% !important}.focus\:translate-y-9\/12:focus{--transform-translate-y:75% !important}.focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333% !important}.focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667% !important}.focus\:translate-y-full:focus{--transform-translate-y:100% !important}.focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem !important}.focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem !important}.focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem !important}.focus\:-translate-y-4:focus{--transform-translate-y:-1rem !important}.focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem !important}.focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem !important}.focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem !important}.focus\:-translate-y-8:focus{--transform-translate-y:-2rem !important}.focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem !important}.focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem !important}.focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem !important}.focus\:-translate-y-12:focus{--transform-translate-y:-3rem !important}.focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem !important}.focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem !important}.focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem !important}.focus\:-translate-y-16:focus{--transform-translate-y:-4rem !important}.focus\:-translate-y-20:focus{--transform-translate-y:-5rem !important}.focus\:-translate-y-24:focus{--transform-translate-y:-6rem !important}.focus\:-translate-y-28:focus{--transform-translate-y:-7rem !important}.focus\:-translate-y-32:focus{--transform-translate-y:-8rem !important}.focus\:-translate-y-36:focus{--transform-translate-y:-9rem !important}.focus\:-translate-y-40:focus{--transform-translate-y:-10rem !important}.focus\:-translate-y-48:focus{--transform-translate-y:-12rem !important}.focus\:-translate-y-56:focus{--transform-translate-y:-14rem !important}.focus\:-translate-y-60:focus{--transform-translate-y:-15rem !important}.focus\:-translate-y-64:focus{--transform-translate-y:-16rem !important}.focus\:-translate-y-72:focus{--transform-translate-y:-18rem !important}.focus\:-translate-y-80:focus{--transform-translate-y:-20rem !important}.focus\:-translate-y-96:focus{--transform-translate-y:-24rem !important}.focus\:-translate-y-px:focus{--transform-translate-y:-1px !important}.focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem !important}.focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem !important}.focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem !important}.focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem !important}.focus\:-translate-y-1\/2:focus{--transform-translate-y:-50% !important}.focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333% !important}.focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667% !important}.focus\:-translate-y-1\/4:focus{--transform-translate-y:-25% !important}.focus\:-translate-y-2\/4:focus{--transform-translate-y:-50% !important}.focus\:-translate-y-3\/4:focus{--transform-translate-y:-75% !important}.focus\:-translate-y-1\/5:focus{--transform-translate-y:-20% !important}.focus\:-translate-y-2\/5:focus{--transform-translate-y:-40% !important}.focus\:-translate-y-3\/5:focus{--transform-translate-y:-60% !important}.focus\:-translate-y-4\/5:focus{--transform-translate-y:-80% !important}.focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667% !important}.focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333% !important}.focus\:-translate-y-3\/6:focus{--transform-translate-y:-50% !important}.focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667% !important}.focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333% !important}.focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333% !important}.focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667% !important}.focus\:-translate-y-3\/12:focus{--transform-translate-y:-25% !important}.focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333% !important}.focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667% !important}.focus\:-translate-y-6\/12:focus{--transform-translate-y:-50% !important}.focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333% !important}.focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667% !important}.focus\:-translate-y-9\/12:focus{--transform-translate-y:-75% !important}.focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333% !important}.focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667% !important}.focus\:-translate-y-full:focus{--transform-translate-y:-100% !important}.skew-x-0{--transform-skew-x:0 !important}.skew-x-3{--transform-skew-x:3deg !important}.skew-x-6{--transform-skew-x:6deg !important}.skew-x-12{--transform-skew-x:12deg !important}.-skew-x-12{--transform-skew-x:-12deg !important}.-skew-x-6{--transform-skew-x:-6deg !important}.-skew-x-3{--transform-skew-x:-3deg !important}.skew-y-0{--transform-skew-y:0 !important}.skew-y-3{--transform-skew-y:3deg !important}.skew-y-6{--transform-skew-y:6deg !important}.skew-y-12{--transform-skew-y:12deg !important}.-skew-y-12{--transform-skew-y:-12deg !important}.-skew-y-6{--transform-skew-y:-6deg !important}.-skew-y-3{--transform-skew-y:-3deg !important}.hover\:skew-x-0:hover{--transform-skew-x:0 !important}.hover\:skew-x-3:hover{--transform-skew-x:3deg !important}.hover\:skew-x-6:hover{--transform-skew-x:6deg !important}.hover\:skew-x-12:hover{--transform-skew-x:12deg !important}.hover\:-skew-x-12:hover{--transform-skew-x:-12deg !important}.hover\:-skew-x-6:hover{--transform-skew-x:-6deg !important}.hover\:-skew-x-3:hover{--transform-skew-x:-3deg !important}.hover\:skew-y-0:hover{--transform-skew-y:0 !important}.hover\:skew-y-3:hover{--transform-skew-y:3deg !important}.hover\:skew-y-6:hover{--transform-skew-y:6deg !important}.hover\:skew-y-12:hover{--transform-skew-y:12deg !important}.hover\:-skew-y-12:hover{--transform-skew-y:-12deg !important}.hover\:-skew-y-6:hover{--transform-skew-y:-6deg !important}.hover\:-skew-y-3:hover{--transform-skew-y:-3deg !important}.focus\:skew-x-0:focus{--transform-skew-x:0 !important}.focus\:skew-x-3:focus{--transform-skew-x:3deg !important}.focus\:skew-x-6:focus{--transform-skew-x:6deg !important}.focus\:skew-x-12:focus{--transform-skew-x:12deg !important}.focus\:-skew-x-12:focus{--transform-skew-x:-12deg !important}.focus\:-skew-x-6:focus{--transform-skew-x:-6deg !important}.focus\:-skew-x-3:focus{--transform-skew-x:-3deg !important}.focus\:skew-y-0:focus{--transform-skew-y:0 !important}.focus\:skew-y-3:focus{--transform-skew-y:3deg !important}.focus\:skew-y-6:focus{--transform-skew-y:6deg !important}.focus\:skew-y-12:focus{--transform-skew-y:12deg !important}.focus\:-skew-y-12:focus{--transform-skew-y:-12deg !important}.focus\:-skew-y-6:focus{--transform-skew-y:-6deg !important}.focus\:-skew-y-3:focus{--transform-skew-y:-3deg !important}.transition-none{transition-property:none !important}.transition-all{transition-property:all !important}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform !important}.transition-colors{transition-property:background-color,border-color,color,fill,stroke !important}.transition-opacity{transition-property:opacity !important}.transition-shadow{transition-property:box-shadow !important}.transition-transform{transition-property:transform !important}.ease-linear{transition-timing-function:linear !important}.ease-in{transition-timing-function:cubic-bezier(0.4,0,1,1) !important}.ease-out{transition-timing-function:cubic-bezier(0,0,0.2,1) !important}.ease-in-out{transition-timing-function:cubic-bezier(0.4,0,0.2,1) !important}.duration-75{transition-duration:75ms !important}.duration-100{transition-duration:100ms !important}.duration-150{transition-duration:150ms !important}.duration-200{transition-duration:200ms !important}.duration-300{transition-duration:300ms !important}.duration-500{transition-duration:500ms !important}.duration-700{transition-duration:700ms !important}.duration-1000{transition-duration:1000ms !important}.duration-2000{transition-duration:2000ms !important}.delay-75{transition-delay:75ms !important}.delay-100{transition-delay:100ms !important}.delay-150{transition-delay:150ms !important}.delay-200{transition-delay:200ms !important}.delay-300{transition-delay:300ms !important}.delay-500{transition-delay:500ms !important}.delay-700{transition-delay:700ms !important}.delay-1000{transition-delay:1000ms !important}@-webkit-keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}@-webkit-keyframes ping{0%{transform:scale(1);opacity:1}75%,100%{transform:scale(2);opacity:0}}@keyframes ping{0%{transform:scale(1);opacity:1}75%,100%{transform:scale(2);opacity:0}}@-webkit-keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}@keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}@-webkit-keyframes bounce{0%,100%{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(0.8,0,1,1);animation-timing-function:cubic-bezier(0.8,0,1,1)}50%{transform:translateY(0);-webkit-animation-timing-function:cubic-bezier(0,0,0.2,1);animation-timing-function:cubic-bezier(0,0,0.2,1)}}@keyframes bounce{0%,100%{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(0.8,0,1,1);animation-timing-function:cubic-bezier(0.8,0,1,1)}50%{transform:translateY(0);-webkit-animation-timing-function:cubic-bezier(0,0,0.2,1);animation-timing-function:cubic-bezier(0,0,0.2,1)}}.animate-none{-webkit-animation:none !important;animation:none !important}.animate-spin{-webkit-animation:spin 1s linear infinite !important;animation:spin 1s linear infinite !important}.animate-ping{-webkit-animation:ping 1s cubic-bezier(0,0,0.2,1) infinite !important;animation:ping 1s cubic-bezier(0,0,0.2,1) infinite !important}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(0.4,0,0.6,1) infinite !important;animation:pulse 2s cubic-bezier(0.4,0,0.6,1) infinite !important}.animate-bounce{-webkit-animation:bounce 1s infinite !important;animation:bounce 1s infinite !important}h1{margin-top:0 !important;margin-bottom:1rem !important}p{margin-top:0 !important;margin-bottom:.75rem !important}code{font-size:inherit !important}.respect-ie11 .tabs-content{max-width:42rem}::-ms-clear{display:none}.metaslider_page_metaslider-settings #ms-toolbar{position:-webkit-sticky;position:sticky}.metaslider_page_metaslider-settings #wpfooter{display:none}div#wpcontent{padding-left:0 !important;padding-right:0 !important}div#wpbody-content{--bg-opacity:1;background-color:#dae1e7;background-color:rgba(218,225,231,var(--bg-opacity));padding-bottom:0}div#wpbody-content>.notice{margin:1.5rem}div#wpbody-content>*{display:none}img{border-style:none}#adminmenu .wp-menu-image img{display:inline;border-width:0;box-sizing:content-box;box-sizing:initial}div#wpfooter{display:none !important}.placeholder-gray-darker::-moz-placeholder{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.placeholder-gray-darker:-ms-input-placeholder{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.placeholder-gray-darker::-ms-input-placeholder{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.placeholder-gray-darker::placeholder{--text-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--text-opacity)) !important}.metaslider-ui option:disabled{--text-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--text-opacity)) !important;font-style:italic !important}.metaslider-ui select{margin:0 !important}.swal2-container{z-index:99999999 !important}.pop-in-quick-top-enter{opacity:0;transform:translateY(-8px)}.pop-in-quick-top-enter-active{transition:all .3s ease}.pop-in-quick-top-leave-active{transition:none;opacity:0;transform:translateY(0)}.settings-fade-enter-active,.settings-fade-leave-active{transition:opacity .3s ease}.settings-fade-enter,.settings-fade-leave-to{opacity:0}#metaslider-ui,.container{min-width:1280px;margin-left:auto;margin-right:auto;padding-left:.5rem;padding-right:.5rem}.container{max-width:1280px}pre#shortcode::-moz-selection,pre#shortcode *::-moz-selection{background-color:rgba(180,215,255,0.6);--text-opacity:1;color:#606f7b;color:rgba(96,111,123,var(--text-opacity))}pre#shortcode::selection,pre#shortcode *::selection{background-color:rgba(180,215,255,0.6);--text-opacity:1;color:#606f7b;color:rgba(96,111,123,var(--text-opacity))}.metaslider.wrap div.updated,.metaslider.wrap div.error{clear:both}.metaslider .left input[type=text],.metaslider .left textarea{border:1px solid #ccc;border-radius:0;resize:none;box-shadow:inherit}.media-frame-menu .separator{display:none}.msTipsy .tipsy-arrow-s{border-top-color:#555}.msTipsy .tipsy-arrow-w{border-right-color:#555}.msTipsy .tipsy-arrow-n{border-bottom-color:#555}.msTipsy .tipsy-inner{color:white;background-color:#555}.msTipsy .tipsy-arrow-e{border-left-color:#555}#cboxLoadedContent{overflow:hidden !important}#cboxLoadedContent iframe{border:0 none;display:block;height:100%;width:100%}.metaslider .ms-settings{border-collapse:separate;border-spacing:0 .75rem}.metaslider .ms-settings a{color:#0073aa;text-decoration:underline}.metaslider .ms-settings a:active,.metaslider .ms-settings a:hover{color:#00a0d2}.metaslider .right input[type=submit]{margin:0 3px}.metaslider #poststuff .right .configuration{padding:7px 7px 7px 12px;line-height:27px;float:left;width:100%;box-sizing:border-box}.metaslider .left table tr.slide input.url{width:100%;margin:0;padding:4px}.metaslider .section{cursor:pointer}.metaslider .tipsy-tooltip{cursor:default}.metaslider .ui-sortable-helper{box-shadow:3px 3px 5px #ccc}.metaslider .left table tr.slide textarea{width:100%;height:60px;margin:0 0 5px 0;padding:2px 5px}.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window,.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window,.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window{right:6px;bottom:20px}.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window label,.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window label,.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window label{line-height:18px;vertical-align:top}.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window input,.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window input,.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window input{margin:-2px 0 0 4px}.metaslider .left table tr.slide .tabs-content .new_window{position:relative;float:right;padding:0;padding-left:5px;margin-right:0;color:#a9a9a9;line-height:20px;right:0;width:155px;text-align:right}.rtl .metaslider .left table tr.slide .tabs-content .new_window{position:relative;float:left}.metaslider .left table tr.slide .tabs-content .new_window input{margin-left:3px}.rtl .metaslider .left table tr.slide .tabs-content .new_window input{margin-right:0}.metaslider .left table tr.slide .tabs-content .new_window label{text-align:right;font-size:11px}.metaslider .input-label.right{float:right;color:#a9a9a9;font-size:11px}.metaslider .tabs-content .input-label.right input{margin-right:0}.metaslider .tabs-content .caption{position:relative}.metaslider .tabs-content .can-inherit{position:relative}.metaslider .tabs-content .can-inherit input[type=text]{display:block;position:absolute;bottom:0}.metaslider .tabs-content .default{width:100%;overflow:hidden;padding:2px 5px;border:1px solid #ccc;background:#eee;line-height:16px;font-size:11px}.metaslider .tabs-content .caption .default{height:60px;overflow:auto;margin:0 0 5px 0;font-size:12px}.metaslider .tabs-content .caption.inherit-from-image textarea{display:none}.metaslider .tabs-content .inherit-from-image input[type=text]{display:none}.metaslider .tabs-content .inherit-from-image .default{display:block}.metaslider .tabs-content .default .no-content{opacity:.3;font-style:italic}.metaslider tr.radio{display:table-row}.metaslider .right .highlight{background:transparent;border:0;font-weight:bold}.metaslider .right .slider-lib-row input[type=radio]:checked+label{background-image:none;background-color:#d0d0d0}.metaslider .right .slider-lib-row input[type=radio]{display:none}.metaslider .right .slider-lib-row input[type=radio]+label{display:inline-block;margin:-2px;padding:4px 0;margin-bottom:0;font-size:11px;line-height:20px;color:#333;text-align:center;vertical-align:middle;cursor:pointer;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ddd;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgb(255, 255, 255)',endColorstr='rgba(255, 230, 230, 0.90196)',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);width:25%}.metaslider .right .slider-lib-row input[type=radio]:checked+label{background-image:none;outline:0;box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);background-color:#e0e0e0}.metaslider .right #nivo+label:hover,.metaslider .right #nivo:checked+label{color:white;background:#b6e026;background:linear-gradient(to bottom,#b6e026 0,#abdc28 100%)}.metaslider .right #responsive+label:hover,.metaslider .right #responsive:checked+label,.metaslider .right #responsive:checked{color:white;background:#ff5db1;background:linear-gradient(to bottom,#ff5db1 0,#ef017c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5db1',endColorstr='#ef017c',GradientType=0)}.metaslider .right #coin+label:hover,.metaslider .right #coin:checked+label{color:white;background:#ffd65e;background:linear-gradient(to bottom,#ffd65e 0,#febf04 100%)}.metaslider .right #flex+label:hover,.metaslider .right #flex:checked+label{color:white;background:#00b7ea;background:linear-gradient(to bottom,#00b7ea 0,#009ec3 100%)}.metaslider .right .slider-lib-row label:focus,.metaslider .right .slider-lib-row label:active{background:#acd7fd !important;box-shadow:none !important;outline:0}.metaslider .right .slider-lib-row{padding:17px 0 9px 0;text-align:center}.metaslider .right .radio ul{margin:0}.metaslider .right .radio li{margin:0 0 2px 0;clear:both}.metaslider .right .radio input[type="radio"]{margin-top:0}.rtl .metaslider .right .radio input[type="radio"]{float:right}.metaslider #poststuff .right .ms-postbox .inside{padding:1rem;margin:0;background:white}.ms-postbox .handlediv{float:right;width:27px;height:30px;cursor:pointer;color:#aaa}.ms-postbox .handlediv:before{right:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important;content:'\f142'}.ms-postbox.closed .handlediv:before{content:'\f140'}.metaslider .social .inside{padding:10px}.metaslider .social .inside ul.info{width:100%;margin:0;height:20px}.metaslider .right .ms-postbox table{border:0;width:100%}.metaslider .right .ms-postbox table textarea{width:100%;height:100px;font-family:monospace;background:#272822;color:#a6e22e}.metaslider .right .ms-postbox h3{cursor:inherit}.metaslider .right .ms-postbox.ms-toggle h3{cursor:pointer}.metaslider .right table{margin:0 0 5px 0}.metaslider select{height:auto}.metaslider .warning{background-color:#ffebe8;border:1px solid #c00;margin-bottom:5px;border-radius:3px;padding:5px 10px}.attachment-display-settings{display:none}.metaslider .tabs-content,.metaslider .tabs-content ul,.metaslider .tabs-content li,.metaslider .tabs-content textarea{font-size:12px}.metaslider .tabs-content input,.metaslider .tabs-content select{font-size:11px}.metaslider .tabs-content input:focus,.metaslider .tabs-content textarea:focus,.metaslider .tabs-content select:focus{color:#444;border-color:#acd7fd}.metaslider .left .tabs-content{clear:both}.metaslider .tabs-content .row{float:left;clear:both;width:100%;vertical-align:middle;margin-bottom:6px}.metaslider .tabs-content .row.last{margin-bottom:0}.metaslider .tabs-content .row label{display:inline-block;text-indent:3px;margin-bottom:3px}.metaslider .tabs-content .row input{margin-right:5px;margin-bottom:0;margin-left:0}.metaslider .tabs-content .row input[type=text]{width:100%}.metaslider .tabs-content .row.has-right-checkbox>input[type=text]{width:calc(100% - 155px)}.metaslider .tabs-content ul{margin:0}.metaslider .tabs-content li{margin:0 0 3px 0}.metaslider .tabs-content select{font-size:11px}.metaslider .tabs-content p{font-style:italic;color:#999}.metaslider ul.tabs{float:left;width:100%;margin:0 0 10px 0;border-bottom:1px solid #ccc}.metaslider ul.tabs li{margin:0 0 0 5px;cursor:pointer;padding:3px 5px;display:inline-block;line-height:14px;color:#ccc;position:relative;top:1px;border:1px solid transparent}.metaslider ul.tabs li a{color:#aaa;outline:0;box-shadow:none}.metaslider ul.tabs li a:hover,.metaslider ul.tabs li.selected a{color:#e1642e}.metaslider ul.tabs li:hover{color:#333}.metaslider ul.tabs li.selected{color:#666;border:1px solid #ccc;border-bottom:1px solid white}.metaslider .left table tr.slide:nth-child(odd) ul.tabs li.selected{border-bottom:1px solid #fff}.metaslider .tabs-content .schedule_placeholder{text-align:center;padding-top:10px}.metaslider .tabs-content .schedule_placeholder h4{font-weight:normal}.metaslider .dropdown_container{margin:40px 0 10px 0}#adminmenu .toplevel_page_metaslider .wp-menu-image img{opacity:1}.metaslider-ui,.metaslider-ui *{box-sizing:border-box}.metaslider-ui .slider-title{padding:10px 0 13px;position:relative;padding-right:100px;border-bottom:0}.metaslider-ui .slider-title h3{font-weight:normal;margin:0 .5rem 0 0}.metaslider-ui .metaslider-slides-container *{box-sizing:border-box}.metaslider-ui .metaslider-slides-container{border-collapse:separate;background:0;border:0;box-shadow:none}.metaslider-ui .metaslider-slides-container .slide{background:white;overflow:hidden;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);position:relative;display:block;margin-bottom:22px;padding-top:31px}.metaslider-ui .metaslider-slides-container .slide.post_feed .scroll{overflow:auto;height:100px}.metaslider-ui .metaslider-slides-container .slide>td{padding:0;transition:all .25s ease-in-out;-moz-transition:all .25s ease-in-out;-webkit-transition:all .25s ease-in-out}.metaslider-ui .metaslider-slides-container .slide .slide-details{margin:0;font-size:.8em;display:inline-block;margin-top:6px;color:#666;font-weight:400}.metaslider-ui .metaslider-slides-container .slide .metaslider-ui-controls{padding-left:.5rem;height:30px;font-size:1.2em;cursor:move;background-color:#f7f7f7;position:absolute;top:0;left:0;width:100%}.metaslider-ui .metaslider-slides-container .metaslider-ui-inner{padding:1rem}.metaslider-ui .metaslider-slides-container .slide .col-2{width:100%}.metaslider-ui .metaslider-slides-container .slide .thumb{border:1px solid #eee;position:relative;height:150px;width:150px;background-size:auto 150px;background-position:center}.metaslider-ui .metaslider-slides-container .toolbar-button,.metaslider-ui .metaslider-slides-container .update-image,.metaslider-ui .metaslider-slides-container .delete-slide,.metaslider-ui .metaslider-slides-container .undo-delete-slide{color:#aaa;outline:0;cursor:pointer;background:0;box-shadow:none;border:0;width:30px;height:30px}.metaslider-ui .metaslider-slides-container .update-image{padding:0 0 0 6px}.metaslider-ui .metaslider-slides-container .update-image svg{width:18px}.metaslider-ui .metaslider-slides-container .update-image.image-button{padding:0;margin:0;display:block;width:auto;height:auto}.metaslider-ui .metaslider-slides-container .toolbar-button:hover,.metaslider-ui .metaslider-slides-container .toolbar-button:active{background:#ededed;color:#1d8abf}.metaslider-ui .metaslider-slides-container .toolbar-button:focus{background-color:#acd7fd !important;color:#444 !important}.metaslider-ui .metaslider-slides-container .toolbar-button:active{box-shadow:inset 0 2px 3px rgba(0,0,0,0.1)}.metaslider-ui .metaslider-slides-container .update-image.image-button:active,.metaslider-ui .metaslider-slides-container .update-image.image-button:focus{box-shadow:0 0 3px 3px #acd7fd}.metaslider-ui .metaslider-slides-container .update-image.image-button:focus .thumb{background-color:#acd7fd}.metaslider-ui .metaslider-slides-container .delete-slide{padding:0 0 0 5px}.metaslider-ui .metaslider-slides-container .delete-slide:hover,.metaslider-ui .metaslider-slides-container .delete-slide:active{color:#e82323}.metaslider-ui .metaslider-slides-container .update-image svg,.metaslider-ui .metaslider-slides-container .delete-slide svg{display:block}.metaslider-ui button.hide-slide.toolbar-button{position:relative}.metaslider-ui button.hide-slide.toolbar-button input{position:absolute;top:0;visibility:hidden;opacity:0}.metaslider-ui button.hide-slide.toolbar-button input ~ svg{position:absolute;top:6px;left:6px;width:18px;height:18px}.metaslider-ui button.hide-slide.toolbar-button input ~ svg.feather-eye-off{display:none}.metaslider-ui button.hide-slide.toolbar-button input:checked ~ svg.feather-eye-off{display:block}.metaslider-ui button.hide-slide.toolbar-button input:checked ~ svg.feather-eye-off line{color:rgba(193,63,63,1);stroke:rgba(193,63,63,1)}.metaslider-ui button.hide-slide.toolbar-button input:checked ~ svg.feather-eye{display:none}.metaslider-ui .metaslider-slides-container .ui-sortable-helper{transition:none;-moz-transition:none;-webkit-transition:none;transform:translate3d(0,0,0) rotate(2deg);box-shadow:0 3px 3px 0 rgba(0,0,0,0.2) !important}.metaslider-ui .metaslider-slides-container .ui-sortable-placeholder{background:rgba(204,204,204,0.33);padding:4rem;visibility:visible !important;border:3px dashed #e0e0e0;box-shadow:none}.metaslider .ms-postbox{position:relative;min-width:255px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;margin-bottom:20px;padding:0;line-height:1}input[type="radio"]{margin-right:4px}.metaslider-ui .ms-settings .disabled{color:#bbb;font-style:italic}.metaslider-ui .ms-settings .disabled input{border-color:#bbb}.wp-clearfix:after{content:"";display:table;clear:both}.ms-spin{-webkit-animation:ms-spin 2s infinite linear;animation:ms-spin 2s infinite linear}@-webkit-keyframes ms-spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@keyframes ms-spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.ms-deleting>td div{-webkit-filter:blur(2px);-moz-filter:blur(2px);-o-filter:blur(2px);-ms-filter:blur(2px);filter:blur(2px)}.ms-deleting button{background:none !important;color:#aaa !important}.ms-deleted{max-height:0 !important;margin-bottom:0 !important;overflow:hidden;background-color:transparent !important;border:0 !important;box-shadow:none !important;padding:0 !important}.slide.hide-status .ms-delete-status{display:none}.slide:not(.hide-status) .ms-delete-status.is-error{font-size:.8em;line-height:31px;color:#e82323}.slide:not(.hide-status) .ms-delete-status.is-success{font-size:.8em;margin-left:5px;float:right;padding:.5em;color:#46b450}.ms-deleted .slide-details,.ms-deleted .metaslider-ui-controls button{display:none !important}.ms-deleted .metaslider-ui-inner{max-height:0 !important;overflow:hidden;transition:all .75s ease-in-out;-moz-transition:all .75s ease-in-out;-webkit-transition:all .75s ease-in-out}.ms-deleted .metaslider-ui-controls{cursor:default !important;background-color:#f1f1f1 !important;border:0 !important;box-shadow:none !important}.ms-deleted .metaslider-ui-controls button.undo-delete-slide{display:inline-block;font-size:.7em;width:auto;text-transform:lowercase}.ms-deleted .metaslider-ui-controls button.undo-delete-slide i{top:1px;position:relative;margin-right:0}.ms-deleted .metaslider-ui-controls button.undo-delete-slide:focus{text-decoration:underline}.ms-deleted .metaslider-ui-controls button.undo-delete-slide:hover{color:#de6826}.ms-deleted .metaslider-ui-controls .countdown{display:inline-block;margin-left:5px;color:#ccc;text-shadow:1px 1px 1px #fff}.ms-delete-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(255,255,255,0.5);color:#666;display:flex;align-items:center;justify-content:center}.metaslider-ui .restore-slide-link{text-decoration:none;display:block;float:right}.metaslider-ui .trashed-header{padding:0 0 .5rem}.metaslider-ui .trashed-header h3{color:#de6826;font-weight:normal;display:inline-block;margin:0}.metaslider-ui .trashed-header small{color:#ccc}.metaslider-ui .trashed-header a{color:#666;text-decoration:underline}.metaslider-ui .trashed-header a:hover{color:#de6826}.metaslider-ui .trash-btns{float:right;position:static;padding:0}.metaslider-ui .trash-btns a{padding:.37rem;display:block}.metaslider-ui .trashed-notice{line-height:1.4;margin-top:31px}.metaslider-ui .trashed-notice .notice-info{padding:1rem;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1)}input.no_last_pass{background-image:none !important;background-attachment:none !important}#__lpform_title{display:none}.ms-panel-container{display:flex;flex-wrap:wrap;flex-direction:row}.ms-panel-container>*{flex-grow:1;flex-basis:0;padding-right:1.5rem}.ms-delete-save{display:flex;align-items:center;justify-content:flex-end;position:relative}.ms-delete-save .ms-delete-slideshow{color:#aaa;text-transform:uppercase;font-weight:700;text-decoration:none}.ms-delete-save .ms-delete-slideshow:hover{text-decoration:underline}#image-api-container{position:absolute;top:0;left:0;right:0;bottom:0;z-index:99999999;background:white}@media(min-width:600px){.sm\:space-y-0>:not(template) ~:not(template){--space-y-reverse:0 !important;margin-top:calc(0px * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0px * var(--space-y-reverse)) !important}.sm\:space-x-0>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0px * var(--space-x-reverse)) !important;margin-left:calc(0px * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-1>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.25rem * var(--space-y-reverse)) !important}.sm\:space-x-1>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.25rem * var(--space-x-reverse)) !important;margin-left:calc(0.25rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-2>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.5rem * var(--space-y-reverse)) !important}.sm\:space-x-2>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.5rem * var(--space-x-reverse)) !important;margin-left:calc(0.5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.75rem * var(--space-y-reverse)) !important}.sm\:space-x-3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.75rem * var(--space-x-reverse)) !important;margin-left:calc(0.75rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1rem * var(--space-y-reverse)) !important}.sm\:space-x-4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1rem * var(--space-x-reverse)) !important;margin-left:calc(1rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1.25rem * var(--space-y-reverse)) !important}.sm\:space-x-5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1.25rem * var(--space-x-reverse)) !important;margin-left:calc(1.25rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1.5rem * var(--space-y-reverse)) !important}.sm\:space-x-6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1.5rem * var(--space-x-reverse)) !important;margin-left:calc(1.5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-7>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1.75rem * var(--space-y-reverse)) !important}.sm\:space-x-7>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1.75rem * var(--space-x-reverse)) !important;margin-left:calc(1.75rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-8>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(2rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(2rem * var(--space-y-reverse)) !important}.sm\:space-x-8>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(2rem * var(--space-x-reverse)) !important;margin-left:calc(2rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-9>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(2.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(2.25rem * var(--space-y-reverse)) !important}.sm\:space-x-9>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(2.25rem * var(--space-x-reverse)) !important;margin-left:calc(2.25rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-10>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(2.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(2.5rem * var(--space-y-reverse)) !important}.sm\:space-x-10>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(2.5rem * var(--space-x-reverse)) !important;margin-left:calc(2.5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-11>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(2.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(2.75rem * var(--space-y-reverse)) !important}.sm\:space-x-11>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(2.75rem * var(--space-x-reverse)) !important;margin-left:calc(2.75rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(3rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(3rem * var(--space-y-reverse)) !important}.sm\:space-x-12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(3rem * var(--space-x-reverse)) !important;margin-left:calc(3rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-13>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(3.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(3.25rem * var(--space-y-reverse)) !important}.sm\:space-x-13>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(3.25rem * var(--space-x-reverse)) !important;margin-left:calc(3.25rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-14>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(3.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(3.5rem * var(--space-y-reverse)) !important}.sm\:space-x-14>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(3.5rem * var(--space-x-reverse)) !important;margin-left:calc(3.5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-15>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(3.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(3.75rem * var(--space-y-reverse)) !important}.sm\:space-x-15>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(3.75rem * var(--space-x-reverse)) !important;margin-left:calc(3.75rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-16>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(4rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(4rem * var(--space-y-reverse)) !important}.sm\:space-x-16>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(4rem * var(--space-x-reverse)) !important;margin-left:calc(4rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-20>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(5rem * var(--space-y-reverse)) !important}.sm\:space-x-20>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(5rem * var(--space-x-reverse)) !important;margin-left:calc(5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-24>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(6rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(6rem * var(--space-y-reverse)) !important}.sm\:space-x-24>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(6rem * var(--space-x-reverse)) !important;margin-left:calc(6rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-28>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(7rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(7rem * var(--space-y-reverse)) !important}.sm\:space-x-28>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(7rem * var(--space-x-reverse)) !important;margin-left:calc(7rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-32>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(8rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(8rem * var(--space-y-reverse)) !important}.sm\:space-x-32>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(8rem * var(--space-x-reverse)) !important;margin-left:calc(8rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-36>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(9rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(9rem * var(--space-y-reverse)) !important}.sm\:space-x-36>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(9rem * var(--space-x-reverse)) !important;margin-left:calc(9rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-40>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(10rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(10rem * var(--space-y-reverse)) !important}.sm\:space-x-40>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(10rem * var(--space-x-reverse)) !important;margin-left:calc(10rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-48>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(12rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(12rem * var(--space-y-reverse)) !important}.sm\:space-x-48>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(12rem * var(--space-x-reverse)) !important;margin-left:calc(12rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-56>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(14rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(14rem * var(--space-y-reverse)) !important}.sm\:space-x-56>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(14rem * var(--space-x-reverse)) !important;margin-left:calc(14rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-60>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(15rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(15rem * var(--space-y-reverse)) !important}.sm\:space-x-60>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(15rem * var(--space-x-reverse)) !important;margin-left:calc(15rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-64>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(16rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(16rem * var(--space-y-reverse)) !important}.sm\:space-x-64>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(16rem * var(--space-x-reverse)) !important;margin-left:calc(16rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-72>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(18rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(18rem * var(--space-y-reverse)) !important}.sm\:space-x-72>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(18rem * var(--space-x-reverse)) !important;margin-left:calc(18rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-80>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(20rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(20rem * var(--space-y-reverse)) !important}.sm\:space-x-80>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(20rem * var(--space-x-reverse)) !important;margin-left:calc(20rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-96>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(24rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(24rem * var(--space-y-reverse)) !important}.sm\:space-x-96>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(24rem * var(--space-x-reverse)) !important;margin-left:calc(24rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-px>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(1px * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(1px * var(--space-y-reverse)) !important}.sm\:space-x-px>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(1px * var(--space-x-reverse)) !important;margin-left:calc(1px * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-0\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.125rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.125rem * var(--space-y-reverse)) !important}.sm\:space-x-0\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.125rem * var(--space-x-reverse)) !important;margin-left:calc(0.125rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-1\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.375rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.375rem * var(--space-y-reverse)) !important}.sm\:space-x-1\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.375rem * var(--space-x-reverse)) !important;margin-left:calc(0.375rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-2\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.625rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.625rem * var(--space-y-reverse)) !important}.sm\:space-x-2\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.625rem * var(--space-x-reverse)) !important;margin-left:calc(0.625rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-3\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(0.875rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(0.875rem * var(--space-y-reverse)) !important}.sm\:space-x-3\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(0.875rem * var(--space-x-reverse)) !important;margin-left:calc(0.875rem * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-1\/2>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(50% * var(--space-y-reverse)) !important}.sm\:space-x-1\/2>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(50% * var(--space-x-reverse)) !important;margin-left:calc(50% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-1\/3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(33.333333% * var(--space-y-reverse)) !important}.sm\:space-x-1\/3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(33.333333% * var(--space-x-reverse)) !important;margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-2\/3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(66.666667% * var(--space-y-reverse)) !important}.sm\:space-x-2\/3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(66.666667% * var(--space-x-reverse)) !important;margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-1\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(25% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(25% * var(--space-y-reverse)) !important}.sm\:space-x-1\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(25% * var(--space-x-reverse)) !important;margin-left:calc(25% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-2\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(50% * var(--space-y-reverse)) !important}.sm\:space-x-2\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(50% * var(--space-x-reverse)) !important;margin-left:calc(50% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-3\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(75% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(75% * var(--space-y-reverse)) !important}.sm\:space-x-3\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(75% * var(--space-x-reverse)) !important;margin-left:calc(75% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-1\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(20% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(20% * var(--space-y-reverse)) !important}.sm\:space-x-1\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(20% * var(--space-x-reverse)) !important;margin-left:calc(20% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-2\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(40% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(40% * var(--space-y-reverse)) !important}.sm\:space-x-2\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(40% * var(--space-x-reverse)) !important;margin-left:calc(40% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-3\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(60% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(60% * var(--space-y-reverse)) !important}.sm\:space-x-3\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(60% * var(--space-x-reverse)) !important;margin-left:calc(60% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-4\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(80% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(80% * var(--space-y-reverse)) !important}.sm\:space-x-4\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(80% * var(--space-x-reverse)) !important;margin-left:calc(80% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-1\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(16.666667% * var(--space-y-reverse)) !important}.sm\:space-x-1\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(16.666667% * var(--space-x-reverse)) !important;margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-2\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(33.333333% * var(--space-y-reverse)) !important}.sm\:space-x-2\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(33.333333% * var(--space-x-reverse)) !important;margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-3\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(50% * var(--space-y-reverse)) !important}.sm\:space-x-3\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(50% * var(--space-x-reverse)) !important;margin-left:calc(50% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-4\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(66.666667% * var(--space-y-reverse)) !important}.sm\:space-x-4\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(66.666667% * var(--space-x-reverse)) !important;margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-5\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(83.333333% * var(--space-y-reverse)) !important}.sm\:space-x-5\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(83.333333% * var(--space-x-reverse)) !important;margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-1\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(8.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(8.333333% * var(--space-y-reverse)) !important}.sm\:space-x-1\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(8.333333% * var(--space-x-reverse)) !important;margin-left:calc(8.333333% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-2\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(16.666667% * var(--space-y-reverse)) !important}.sm\:space-x-2\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(16.666667% * var(--space-x-reverse)) !important;margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-3\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(25% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(25% * var(--space-y-reverse)) !important}.sm\:space-x-3\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(25% * var(--space-x-reverse)) !important;margin-left:calc(25% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-4\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(33.333333% * var(--space-y-reverse)) !important}.sm\:space-x-4\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(33.333333% * var(--space-x-reverse)) !important;margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-5\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(41.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(41.666667% * var(--space-y-reverse)) !important}.sm\:space-x-5\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(41.666667% * var(--space-x-reverse)) !important;margin-left:calc(41.666667% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-6\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(50% * var(--space-y-reverse)) !important}.sm\:space-x-6\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(50% * var(--space-x-reverse)) !important;margin-left:calc(50% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-7\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(58.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(58.333333% * var(--space-y-reverse)) !important}.sm\:space-x-7\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(58.333333% * var(--space-x-reverse)) !important;margin-left:calc(58.333333% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-8\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(66.666667% * var(--space-y-reverse)) !important}.sm\:space-x-8\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(66.666667% * var(--space-x-reverse)) !important;margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-9\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(75% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(75% * var(--space-y-reverse)) !important}.sm\:space-x-9\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(75% * var(--space-x-reverse)) !important;margin-left:calc(75% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-10\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(83.333333% * var(--space-y-reverse)) !important}.sm\:space-x-10\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(83.333333% * var(--space-x-reverse)) !important;margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-11\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(91.666667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(91.666667% * var(--space-y-reverse)) !important}.sm\:space-x-11\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(91.666667% * var(--space-x-reverse)) !important;margin-left:calc(91.666667% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-full>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(100% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(100% * var(--space-y-reverse)) !important}.sm\:space-x-full>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(100% * var(--space-x-reverse)) !important;margin-left:calc(100% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-1>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.25rem * var(--space-y-reverse)) !important}.sm\:-space-x-1>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.25rem * var(--space-x-reverse)) !important;margin-left:calc(-0.25rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-2>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.5rem * var(--space-y-reverse)) !important}.sm\:-space-x-2>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.5rem * var(--space-x-reverse)) !important;margin-left:calc(-0.5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.75rem * var(--space-y-reverse)) !important}.sm\:-space-x-3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.75rem * var(--space-x-reverse)) !important;margin-left:calc(-0.75rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1rem * var(--space-y-reverse)) !important}.sm\:-space-x-4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1rem * var(--space-x-reverse)) !important;margin-left:calc(-1rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1.25rem * var(--space-y-reverse)) !important}.sm\:-space-x-5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1.25rem * var(--space-x-reverse)) !important;margin-left:calc(-1.25rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1.5rem * var(--space-y-reverse)) !important}.sm\:-space-x-6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1.5rem * var(--space-x-reverse)) !important;margin-left:calc(-1.5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-7>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1.75rem * var(--space-y-reverse)) !important}.sm\:-space-x-7>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1.75rem * var(--space-x-reverse)) !important;margin-left:calc(-1.75rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-8>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-2rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-2rem * var(--space-y-reverse)) !important}.sm\:-space-x-8>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-2rem * var(--space-x-reverse)) !important;margin-left:calc(-2rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-9>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-2.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-2.25rem * var(--space-y-reverse)) !important}.sm\:-space-x-9>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-2.25rem * var(--space-x-reverse)) !important;margin-left:calc(-2.25rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-10>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-2.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-2.5rem * var(--space-y-reverse)) !important}.sm\:-space-x-10>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-2.5rem * var(--space-x-reverse)) !important;margin-left:calc(-2.5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-11>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-2.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-2.75rem * var(--space-y-reverse)) !important}.sm\:-space-x-11>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-2.75rem * var(--space-x-reverse)) !important;margin-left:calc(-2.75rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-3rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-3rem * var(--space-y-reverse)) !important}.sm\:-space-x-12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-3rem * var(--space-x-reverse)) !important;margin-left:calc(-3rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-13>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-3.25rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-3.25rem * var(--space-y-reverse)) !important}.sm\:-space-x-13>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-3.25rem * var(--space-x-reverse)) !important;margin-left:calc(-3.25rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-14>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-3.5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-3.5rem * var(--space-y-reverse)) !important}.sm\:-space-x-14>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-3.5rem * var(--space-x-reverse)) !important;margin-left:calc(-3.5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-15>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-3.75rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-3.75rem * var(--space-y-reverse)) !important}.sm\:-space-x-15>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-3.75rem * var(--space-x-reverse)) !important;margin-left:calc(-3.75rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-16>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-4rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-4rem * var(--space-y-reverse)) !important}.sm\:-space-x-16>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-4rem * var(--space-x-reverse)) !important;margin-left:calc(-4rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-20>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-5rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-5rem * var(--space-y-reverse)) !important}.sm\:-space-x-20>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-5rem * var(--space-x-reverse)) !important;margin-left:calc(-5rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-24>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-6rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-6rem * var(--space-y-reverse)) !important}.sm\:-space-x-24>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-6rem * var(--space-x-reverse)) !important;margin-left:calc(-6rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-28>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-7rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-7rem * var(--space-y-reverse)) !important}.sm\:-space-x-28>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-7rem * var(--space-x-reverse)) !important;margin-left:calc(-7rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-32>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-8rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-8rem * var(--space-y-reverse)) !important}.sm\:-space-x-32>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-8rem * var(--space-x-reverse)) !important;margin-left:calc(-8rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-36>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-9rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-9rem * var(--space-y-reverse)) !important}.sm\:-space-x-36>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-9rem * var(--space-x-reverse)) !important;margin-left:calc(-9rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-40>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-10rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-10rem * var(--space-y-reverse)) !important}.sm\:-space-x-40>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-10rem * var(--space-x-reverse)) !important;margin-left:calc(-10rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-48>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-12rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-12rem * var(--space-y-reverse)) !important}.sm\:-space-x-48>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-12rem * var(--space-x-reverse)) !important;margin-left:calc(-12rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-56>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-14rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-14rem * var(--space-y-reverse)) !important}.sm\:-space-x-56>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-14rem * var(--space-x-reverse)) !important;margin-left:calc(-14rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-60>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-15rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-15rem * var(--space-y-reverse)) !important}.sm\:-space-x-60>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-15rem * var(--space-x-reverse)) !important;margin-left:calc(-15rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-64>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-16rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-16rem * var(--space-y-reverse)) !important}.sm\:-space-x-64>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-16rem * var(--space-x-reverse)) !important;margin-left:calc(-16rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-72>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-18rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-18rem * var(--space-y-reverse)) !important}.sm\:-space-x-72>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-18rem * var(--space-x-reverse)) !important;margin-left:calc(-18rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-80>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-20rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-20rem * var(--space-y-reverse)) !important}.sm\:-space-x-80>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-20rem * var(--space-x-reverse)) !important;margin-left:calc(-20rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-96>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-24rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-24rem * var(--space-y-reverse)) !important}.sm\:-space-x-96>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-24rem * var(--space-x-reverse)) !important;margin-left:calc(-24rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-px>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-1px * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-1px * var(--space-y-reverse)) !important}.sm\:-space-x-px>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-1px * var(--space-x-reverse)) !important;margin-left:calc(-1px * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-0\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.125rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.125rem * var(--space-y-reverse)) !important}.sm\:-space-x-0\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.125rem * var(--space-x-reverse)) !important;margin-left:calc(-0.125rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-1\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.375rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.375rem * var(--space-y-reverse)) !important}.sm\:-space-x-1\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.375rem * var(--space-x-reverse)) !important;margin-left:calc(-0.375rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-2\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.625rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.625rem * var(--space-y-reverse)) !important}.sm\:-space-x-2\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.625rem * var(--space-x-reverse)) !important;margin-left:calc(-0.625rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-3\.5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-0.875rem * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-0.875rem * var(--space-y-reverse)) !important}.sm\:-space-x-3\.5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-0.875rem * var(--space-x-reverse)) !important;margin-left:calc(-0.875rem * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-1\/2>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-50% * var(--space-y-reverse)) !important}.sm\:-space-x-1\/2>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-50% * var(--space-x-reverse)) !important;margin-left:calc(-50% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-1\/3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-33.33333% * var(--space-y-reverse)) !important}.sm\:-space-x-1\/3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-33.33333% * var(--space-x-reverse)) !important;margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-2\/3>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-66.66667% * var(--space-y-reverse)) !important}.sm\:-space-x-2\/3>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-66.66667% * var(--space-x-reverse)) !important;margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-1\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-25% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-25% * var(--space-y-reverse)) !important}.sm\:-space-x-1\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-25% * var(--space-x-reverse)) !important;margin-left:calc(-25% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-2\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-50% * var(--space-y-reverse)) !important}.sm\:-space-x-2\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-50% * var(--space-x-reverse)) !important;margin-left:calc(-50% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-3\/4>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-75% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-75% * var(--space-y-reverse)) !important}.sm\:-space-x-3\/4>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-75% * var(--space-x-reverse)) !important;margin-left:calc(-75% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-1\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-20% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-20% * var(--space-y-reverse)) !important}.sm\:-space-x-1\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-20% * var(--space-x-reverse)) !important;margin-left:calc(-20% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-2\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-40% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-40% * var(--space-y-reverse)) !important}.sm\:-space-x-2\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-40% * var(--space-x-reverse)) !important;margin-left:calc(-40% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-3\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-60% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-60% * var(--space-y-reverse)) !important}.sm\:-space-x-3\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-60% * var(--space-x-reverse)) !important;margin-left:calc(-60% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-4\/5>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-80% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-80% * var(--space-y-reverse)) !important}.sm\:-space-x-4\/5>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-80% * var(--space-x-reverse)) !important;margin-left:calc(-80% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-1\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-16.66667% * var(--space-y-reverse)) !important}.sm\:-space-x-1\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-16.66667% * var(--space-x-reverse)) !important;margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-2\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-33.33333% * var(--space-y-reverse)) !important}.sm\:-space-x-2\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-33.33333% * var(--space-x-reverse)) !important;margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-3\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-50% * var(--space-y-reverse)) !important}.sm\:-space-x-3\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-50% * var(--space-x-reverse)) !important;margin-left:calc(-50% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-4\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-66.66667% * var(--space-y-reverse)) !important}.sm\:-space-x-4\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-66.66667% * var(--space-x-reverse)) !important;margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-5\/6>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-83.33333% * var(--space-y-reverse)) !important}.sm\:-space-x-5\/6>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-83.33333% * var(--space-x-reverse)) !important;margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-1\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-8.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-8.33333% * var(--space-y-reverse)) !important}.sm\:-space-x-1\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-8.33333% * var(--space-x-reverse)) !important;margin-left:calc(-8.33333% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-2\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-16.66667% * var(--space-y-reverse)) !important}.sm\:-space-x-2\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-16.66667% * var(--space-x-reverse)) !important;margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-3\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-25% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-25% * var(--space-y-reverse)) !important}.sm\:-space-x-3\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-25% * var(--space-x-reverse)) !important;margin-left:calc(-25% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-4\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-33.33333% * var(--space-y-reverse)) !important}.sm\:-space-x-4\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-33.33333% * var(--space-x-reverse)) !important;margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-5\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-41.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-41.66667% * var(--space-y-reverse)) !important}.sm\:-space-x-5\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-41.66667% * var(--space-x-reverse)) !important;margin-left:calc(-41.66667% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-6\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-50% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-50% * var(--space-y-reverse)) !important}.sm\:-space-x-6\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-50% * var(--space-x-reverse)) !important;margin-left:calc(-50% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-7\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-58.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-58.33333% * var(--space-y-reverse)) !important}.sm\:-space-x-7\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-58.33333% * var(--space-x-reverse)) !important;margin-left:calc(-58.33333% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-8\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-66.66667% * var(--space-y-reverse)) !important}.sm\:-space-x-8\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-66.66667% * var(--space-x-reverse)) !important;margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-9\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-75% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-75% * var(--space-y-reverse)) !important}.sm\:-space-x-9\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-75% * var(--space-x-reverse)) !important;margin-left:calc(-75% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-10\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-83.33333% * var(--space-y-reverse)) !important}.sm\:-space-x-10\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-83.33333% * var(--space-x-reverse)) !important;margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-11\/12>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-91.66667% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-91.66667% * var(--space-y-reverse)) !important}.sm\:-space-x-11\/12>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-91.66667% * var(--space-x-reverse)) !important;margin-left:calc(-91.66667% * calc(1 - var(--space-x-reverse))) !important}.sm\:-space-y-full>:not(template) ~ :not(template){--space-y-reverse:0 !important;margin-top:calc(-100% * calc(1 - var(--space-y-reverse))) !important;margin-bottom:calc(-100% * var(--space-y-reverse)) !important}.sm\:-space-x-full>:not(template) ~ :not(template){--space-x-reverse:0 !important;margin-right:calc(-100% * var(--space-x-reverse)) !important;margin-left:calc(-100% * calc(1 - var(--space-x-reverse))) !important}.sm\:space-y-reverse>:not(template) ~ :not(template){--space-y-reverse:1 !important}.sm\:space-x-reverse>:not(template) ~ :not(template){--space-x-reverse:1 !important}.sm\:divide-y-0>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(0px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(0px * var(--divide-y-reverse)) !important}.sm\:divide-x-0>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(0px * var(--divide-x-reverse)) !important;border-left-width:calc(0px * calc(1 - var(--divide-x-reverse))) !important}.sm\:divide-y-2>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(2px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(2px * var(--divide-y-reverse)) !important}.sm\:divide-x-2>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(2px * var(--divide-x-reverse)) !important;border-left-width:calc(2px * calc(1 - var(--divide-x-reverse))) !important}.sm\:divide-y-4>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(4px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(4px * var(--divide-y-reverse)) !important}.sm\:divide-x-4>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(4px * var(--divide-x-reverse)) !important;border-left-width:calc(4px * calc(1 - var(--divide-x-reverse))) !important}.sm\:divide-y-8>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(8px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(8px * var(--divide-y-reverse)) !important}.sm\:divide-x-8>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(8px * var(--divide-x-reverse)) !important;border-left-width:calc(8px * calc(1 - var(--divide-x-reverse))) !important}.sm\:divide-y>:not(template) ~ :not(template){--divide-y-reverse:0 !important;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse))) !important;border-bottom-width:calc(1px * var(--divide-y-reverse)) !important}.sm\:divide-x>:not(template) ~ :not(template){--divide-x-reverse:0 !important;border-right-width:calc(1px * var(--divide-x-reverse)) !important;border-left-width:calc(1px * calc(1 - var(--divide-x-reverse))) !important}.sm\:divide-y-reverse>:not(template) ~ :not(template){--divide-y-reverse:1 !important}.sm\:divide-x-reverse>:not(template) ~ :not(template){--divide-x-reverse:1 !important}.sm\:divide-transparent>:not(template) ~ :not(template){border-color:transparent !important}.sm\:divide-white>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--divide-opacity)) !important}.sm\:divide-blackest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--divide-opacity)) !important}.sm\:divide-blackest-70>:not(template) ~ :not(template){border-color:rgba(0,0,0,0.7) !important}.sm\:divide-black>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--divide-opacity)) !important}.sm\:divide-gray-darkest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--divide-opacity)) !important}.sm\:divide-gray-darker>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--divide-opacity)) !important}.sm\:divide-gray-dark>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--divide-opacity)) !important}.sm\:divide-gray>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--divide-opacity)) !important}.sm\:divide-gray-light>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--divide-opacity)) !important}.sm\:divide-gray-lighter>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--divide-opacity)) !important}.sm\:divide-gray-lightest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--divide-opacity)) !important}.sm\:divide-blue-darkest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--divide-opacity)) !important}.sm\:divide-blue-dark>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--divide-opacity)) !important}.sm\:divide-blue>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--divide-opacity)) !important}.sm\:divide-blue-light>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--divide-opacity)) !important}.sm\:divide-blue-highlight>:not(template) ~ :not(template){border-color:rgba(180,215,255,0.6) !important}.sm\:divide-orange>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--divide-opacity)) !important}.sm\:divide-orange-darker>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--divide-opacity)) !important}.sm\:divide-orange-darkest>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--divide-opacity)) !important}.sm\:divide-red>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--divide-opacity)) !important}.sm\:divide-green>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--divide-opacity)) !important}.sm\:divide-yellow-400>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--divide-opacity)) !important}.sm\:divide-yellow-50>:not(template) ~ :not(template){--divide-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--divide-opacity)) !important}.sm\:divide-opacity-0>:not(template) ~ :not(template){--divide-opacity:0 !important}.sm\:divide-opacity-25>:not(template) ~ :not(template){--divide-opacity:.25 !important}.sm\:divide-opacity-50>:not(template) ~ :not(template){--divide-opacity:.5 !important}.sm\:divide-opacity-75>:not(template) ~ :not(template){--divide-opacity:.75 !important}.sm\:divide-opacity-100>:not(template) ~ :not(template){--divide-opacity:1 !important}.sm\:sr-only{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border-width:0 !important}.sm\:not-sr-only{position:static !important;width:auto !important;height:auto !important;padding:0 !important;margin:0 !important;overflow:visible !important;clip:auto !important;white-space:normal !important}.sm\:focus\:sr-only:focus{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border-width:0 !important}.sm\:focus\:not-sr-only:focus{position:static !important;width:auto !important;height:auto !important;padding:0 !important;margin:0 !important;overflow:visible !important;clip:auto !important;white-space:normal !important}.sm\:appearance-none{-webkit-appearance:none !important;-moz-appearance:none !important;appearance:none !important}.sm\:bg-fixed{background-attachment:fixed !important}.sm\:bg-local{background-attachment:local !important}.sm\:bg-scroll{background-attachment:scroll !important}.sm\:bg-transparent{background-color:transparent !important}.sm\:bg-white{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.sm\:bg-blackest{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.sm\:bg-blackest-70{background-color:rgba(0,0,0,0.7) !important}.sm\:bg-black{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.sm\:bg-gray-darkest{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.sm\:bg-gray-darker{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.sm\:bg-gray-dark{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.sm\:bg-gray{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.sm\:bg-gray-light{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.sm\:bg-gray-lighter{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.sm\:bg-gray-lightest{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.sm\:bg-blue-darkest{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.sm\:bg-blue-dark{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.sm\:bg-blue{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.sm\:bg-blue-light{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.sm\:bg-blue-highlight{background-color:rgba(180,215,255,0.6) !important}.sm\:bg-orange{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.sm\:bg-orange-darker{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.sm\:bg-orange-darkest{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.sm\:bg-red{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.sm\:bg-green{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.sm\:bg-yellow-400{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.sm\:bg-yellow-50{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-transparent{background-color:transparent !important}.group:hover .sm\:group-hover\:bg-white{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-blackest{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-blackest-70{background-color:rgba(0,0,0,0.7) !important}.group:hover .sm\:group-hover\:bg-black{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-gray-darkest{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-gray-darker{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-gray-dark{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-gray{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-gray-light{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-gray-lighter{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-gray-lightest{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-blue-darkest{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-blue-dark{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-blue{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-blue-light{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,0.6) !important}.group:hover .sm\:group-hover\:bg-orange{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-orange-darker{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-orange-darkest{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-red{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-green{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-yellow-400{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.group:hover .sm\:group-hover\:bg-yellow-50{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-transparent{background-color:transparent !important}.group:focus .sm\:group-focus\:bg-white{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-blackest{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-blackest-70{background-color:rgba(0,0,0,0.7) !important}.group:focus .sm\:group-focus\:bg-black{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-gray-darkest{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-gray-darker{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-gray-dark{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-gray{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-gray-light{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-gray-lighter{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-gray-lightest{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-blue-darkest{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-blue-dark{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-blue{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-blue-light{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,0.6) !important}.group:focus .sm\:group-focus\:bg-orange{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-orange-darker{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-orange-darkest{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-red{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-green{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-yellow-400{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.group:focus .sm\:group-focus\:bg-yellow-50{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.sm\:hover\:bg-transparent:hover{background-color:transparent !important}.sm\:hover\:bg-white:hover{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.sm\:hover\:bg-blackest:hover{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.sm\:hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,0.7) !important}.sm\:hover\:bg-black:hover{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.sm\:hover\:bg-gray-darkest:hover{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.sm\:hover\:bg-gray-darker:hover{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.sm\:hover\:bg-gray-dark:hover{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.sm\:hover\:bg-gray:hover{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.sm\:hover\:bg-gray-light:hover{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.sm\:hover\:bg-gray-lighter:hover{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.sm\:hover\:bg-gray-lightest:hover{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.sm\:hover\:bg-blue-darkest:hover{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.sm\:hover\:bg-blue-dark:hover{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.sm\:hover\:bg-blue:hover{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.sm\:hover\:bg-blue-light:hover{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.sm\:hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,0.6) !important}.sm\:hover\:bg-orange:hover{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.sm\:hover\:bg-orange-darker:hover{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.sm\:hover\:bg-orange-darkest:hover{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.sm\:hover\:bg-red:hover{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.sm\:hover\:bg-green:hover{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.sm\:hover\:bg-yellow-400:hover{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.sm\:hover\:bg-yellow-50:hover{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.sm\:focus\:bg-transparent:focus{background-color:transparent !important}.sm\:focus\:bg-white:focus{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.sm\:focus\:bg-blackest:focus{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.sm\:focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,0.7) !important}.sm\:focus\:bg-black:focus{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.sm\:focus\:bg-gray-darkest:focus{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.sm\:focus\:bg-gray-darker:focus{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.sm\:focus\:bg-gray-dark:focus{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.sm\:focus\:bg-gray:focus{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.sm\:focus\:bg-gray-light:focus{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.sm\:focus\:bg-gray-lighter:focus{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.sm\:focus\:bg-gray-lightest:focus{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.sm\:focus\:bg-blue-darkest:focus{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.sm\:focus\:bg-blue-dark:focus{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.sm\:focus\:bg-blue:focus{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.sm\:focus\:bg-blue-light:focus{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.sm\:focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,0.6) !important}.sm\:focus\:bg-orange:focus{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.sm\:focus\:bg-orange-darker:focus{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.sm\:focus\:bg-orange-darkest:focus{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.sm\:focus\:bg-red:focus{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.sm\:focus\:bg-green:focus{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.sm\:focus\:bg-yellow-400:focus{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.sm\:focus\:bg-yellow-50:focus{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.sm\:active\:bg-transparent:active{background-color:transparent !important}.sm\:active\:bg-white:active{--bg-opacity:1 !important;background-color:#fff !important;background-color:rgba(255,255,255,var(--bg-opacity)) !important}.sm\:active\:bg-blackest:active{--bg-opacity:1 !important;background-color:#000 !important;background-color:rgba(0,0,0,var(--bg-opacity)) !important}.sm\:active\:bg-blackest-70:active{background-color:rgba(0,0,0,0.7) !important}.sm\:active\:bg-black:active{--bg-opacity:1 !important;background-color:#23292d !important;background-color:rgba(35,41,45,var(--bg-opacity)) !important}.sm\:active\:bg-gray-darkest:active{--bg-opacity:1 !important;background-color:#3d4852 !important;background-color:rgba(61,72,82,var(--bg-opacity)) !important}.sm\:active\:bg-gray-darker:active{--bg-opacity:1 !important;background-color:#606f7b !important;background-color:rgba(96,111,123,var(--bg-opacity)) !important}.sm\:active\:bg-gray-dark:active{--bg-opacity:1 !important;background-color:#9ea3a8 !important;background-color:rgba(158,163,168,var(--bg-opacity)) !important}.sm\:active\:bg-gray:active{--bg-opacity:1 !important;background-color:#b8c2cc !important;background-color:rgba(184,194,204,var(--bg-opacity)) !important}.sm\:active\:bg-gray-light:active{--bg-opacity:1 !important;background-color:#dae1e7 !important;background-color:rgba(218,225,231,var(--bg-opacity)) !important}.sm\:active\:bg-gray-lighter:active{--bg-opacity:1 !important;background-color:#f1f1f1 !important;background-color:rgba(241,241,241,var(--bg-opacity)) !important}.sm\:active\:bg-gray-lightest:active{--bg-opacity:1 !important;background-color:#f8fafc !important;background-color:rgba(248,250,252,var(--bg-opacity)) !important}.sm\:active\:bg-blue-darkest:active{--bg-opacity:1 !important;background-color:#1673a7 !important;background-color:rgba(22,115,167,var(--bg-opacity)) !important}.sm\:active\:bg-blue-dark:active{--bg-opacity:1 !important;background-color:#0073aa !important;background-color:rgba(0,115,170,var(--bg-opacity)) !important}.sm\:active\:bg-blue:active{--bg-opacity:1 !important;background-color:#3188e6 !important;background-color:rgba(49,136,230,var(--bg-opacity)) !important}.sm\:active\:bg-blue-light:active{--bg-opacity:1 !important;background-color:#a4cafe !important;background-color:rgba(164,202,254,var(--bg-opacity)) !important}.sm\:active\:bg-blue-highlight:active{background-color:rgba(180,215,255,0.6) !important}.sm\:active\:bg-orange:active{--bg-opacity:1 !important;background-color:#e1642e !important;background-color:rgba(225,100,46,var(--bg-opacity)) !important}.sm\:active\:bg-orange-darker:active{--bg-opacity:1 !important;background-color:#d5551e !important;background-color:rgba(213,85,30,var(--bg-opacity)) !important}.sm\:active\:bg-orange-darkest:active{--bg-opacity:1 !important;background-color:#c9501c !important;background-color:rgba(201,80,28,var(--bg-opacity)) !important}.sm\:active\:bg-red:active{--bg-opacity:1 !important;background-color:#e82323 !important;background-color:rgba(232,35,35,var(--bg-opacity)) !important}.sm\:active\:bg-green:active{--bg-opacity:1 !important;background-color:#46b450 !important;background-color:rgba(70,180,80,var(--bg-opacity)) !important}.sm\:active\:bg-yellow-400:active{--bg-opacity:1 !important;background-color:#e3a008 !important;background-color:rgba(227,160,8,var(--bg-opacity)) !important}.sm\:active\:bg-yellow-50:active{--bg-opacity:1 !important;background-color:#fdfdea !important;background-color:rgba(253,253,234,var(--bg-opacity)) !important}.sm\:bg-opacity-0{--bg-opacity:0 !important}.sm\:bg-opacity-25{--bg-opacity:.25 !important}.sm\:bg-opacity-50{--bg-opacity:.5 !important}.sm\:bg-opacity-75{--bg-opacity:.75 !important}.sm\:bg-opacity-100{--bg-opacity:1 !important}.sm\:hover\:bg-opacity-0:hover{--bg-opacity:0 !important}.sm\:hover\:bg-opacity-25:hover{--bg-opacity:.25 !important}.sm\:hover\:bg-opacity-50:hover{--bg-opacity:.5 !important}.sm\:hover\:bg-opacity-75:hover{--bg-opacity:.75 !important}.sm\:hover\:bg-opacity-100:hover{--bg-opacity:1 !important}.sm\:focus\:bg-opacity-0:focus{--bg-opacity:0 !important}.sm\:focus\:bg-opacity-25:focus{--bg-opacity:.25 !important}.sm\:focus\:bg-opacity-50:focus{--bg-opacity:.5 !important}.sm\:focus\:bg-opacity-75:focus{--bg-opacity:.75 !important}.sm\:focus\:bg-opacity-100:focus{--bg-opacity:1 !important}.sm\:bg-bottom{background-position:bottom !important}.sm\:bg-center{background-position:center !important}.sm\:bg-left{background-position:left !important}.sm\:bg-left-bottom{background-position:left bottom !important}.sm\:bg-left-top{background-position:left top !important}.sm\:bg-right{background-position:right !important}.sm\:bg-right-bottom{background-position:right bottom !important}.sm\:bg-right-top{background-position:right top !important}.sm\:bg-top{background-position:top !important}.sm\:bg-repeat{background-repeat:repeat !important}.sm\:bg-no-repeat{background-repeat:no-repeat !important}.sm\:bg-repeat-x{background-repeat:repeat-x !important}.sm\:bg-repeat-y{background-repeat:repeat-y !important}.sm\:bg-repeat-round{background-repeat:round !important}.sm\:bg-repeat-space{background-repeat:space !important}.sm\:bg-auto{background-size:auto !important}.sm\:bg-cover{background-size:cover !important}.sm\:bg-contain{background-size:contain !important}.sm\:border-collapse{border-collapse:collapse !important}.sm\:border-separate{border-collapse:separate !important}.sm\:border-transparent{border-color:transparent !important}.sm\:border-white{--border-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--border-opacity)) !important}.sm\:border-blackest{--border-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--border-opacity)) !important}.sm\:border-blackest-70{border-color:rgba(0,0,0,0.7) !important}.sm\:border-black{--border-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--border-opacity)) !important}.sm\:border-gray-darkest{--border-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--border-opacity)) !important}.sm\:border-gray-darker{--border-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--border-opacity)) !important}.sm\:border-gray-dark{--border-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--border-opacity)) !important}.sm\:border-gray{--border-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--border-opacity)) !important}.sm\:border-gray-light{--border-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--border-opacity)) !important}.sm\:border-gray-lighter{--border-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--border-opacity)) !important}.sm\:border-gray-lightest{--border-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--border-opacity)) !important}.sm\:border-blue-darkest{--border-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--border-opacity)) !important}.sm\:border-blue-dark{--border-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--border-opacity)) !important}.sm\:border-blue{--border-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--border-opacity)) !important}.sm\:border-blue-light{--border-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--border-opacity)) !important}.sm\:border-blue-highlight{border-color:rgba(180,215,255,0.6) !important}.sm\:border-orange{--border-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--border-opacity)) !important}.sm\:border-orange-darker{--border-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--border-opacity)) !important}.sm\:border-orange-darkest{--border-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--border-opacity)) !important}.sm\:border-red{--border-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--border-opacity)) !important}.sm\:border-green{--border-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--border-opacity)) !important}.sm\:border-yellow-400{--border-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--border-opacity)) !important}.sm\:border-yellow-50{--border-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--border-opacity)) !important}.sm\:hover\:border-transparent:hover{border-color:transparent !important}.sm\:hover\:border-white:hover{--border-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--border-opacity)) !important}.sm\:hover\:border-blackest:hover{--border-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--border-opacity)) !important}.sm\:hover\:border-blackest-70:hover{border-color:rgba(0,0,0,0.7) !important}.sm\:hover\:border-black:hover{--border-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--border-opacity)) !important}.sm\:hover\:border-gray-darkest:hover{--border-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--border-opacity)) !important}.sm\:hover\:border-gray-darker:hover{--border-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--border-opacity)) !important}.sm\:hover\:border-gray-dark:hover{--border-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--border-opacity)) !important}.sm\:hover\:border-gray:hover{--border-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--border-opacity)) !important}.sm\:hover\:border-gray-light:hover{--border-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--border-opacity)) !important}.sm\:hover\:border-gray-lighter:hover{--border-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--border-opacity)) !important}.sm\:hover\:border-gray-lightest:hover{--border-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--border-opacity)) !important}.sm\:hover\:border-blue-darkest:hover{--border-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--border-opacity)) !important}.sm\:hover\:border-blue-dark:hover{--border-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--border-opacity)) !important}.sm\:hover\:border-blue:hover{--border-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--border-opacity)) !important}.sm\:hover\:border-blue-light:hover{--border-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--border-opacity)) !important}.sm\:hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,0.6) !important}.sm\:hover\:border-orange:hover{--border-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--border-opacity)) !important}.sm\:hover\:border-orange-darker:hover{--border-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--border-opacity)) !important}.sm\:hover\:border-orange-darkest:hover{--border-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--border-opacity)) !important}.sm\:hover\:border-red:hover{--border-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--border-opacity)) !important}.sm\:hover\:border-green:hover{--border-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--border-opacity)) !important}.sm\:hover\:border-yellow-400:hover{--border-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--border-opacity)) !important}.sm\:hover\:border-yellow-50:hover{--border-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--border-opacity)) !important}.sm\:focus\:border-transparent:focus{border-color:transparent !important}.sm\:focus\:border-white:focus{--border-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--border-opacity)) !important}.sm\:focus\:border-blackest:focus{--border-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--border-opacity)) !important}.sm\:focus\:border-blackest-70:focus{border-color:rgba(0,0,0,0.7) !important}.sm\:focus\:border-black:focus{--border-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--border-opacity)) !important}.sm\:focus\:border-gray-darkest:focus{--border-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--border-opacity)) !important}.sm\:focus\:border-gray-darker:focus{--border-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--border-opacity)) !important}.sm\:focus\:border-gray-dark:focus{--border-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--border-opacity)) !important}.sm\:focus\:border-gray:focus{--border-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--border-opacity)) !important}.sm\:focus\:border-gray-light:focus{--border-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--border-opacity)) !important}.sm\:focus\:border-gray-lighter:focus{--border-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--border-opacity)) !important}.sm\:focus\:border-gray-lightest:focus{--border-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--border-opacity)) !important}.sm\:focus\:border-blue-darkest:focus{--border-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--border-opacity)) !important}.sm\:focus\:border-blue-dark:focus{--border-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--border-opacity)) !important}.sm\:focus\:border-blue:focus{--border-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--border-opacity)) !important}.sm\:focus\:border-blue-light:focus{--border-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--border-opacity)) !important}.sm\:focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,0.6) !important}.sm\:focus\:border-orange:focus{--border-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--border-opacity)) !important}.sm\:focus\:border-orange-darker:focus{--border-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--border-opacity)) !important}.sm\:focus\:border-orange-darkest:focus{--border-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--border-opacity)) !important}.sm\:focus\:border-red:focus{--border-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--border-opacity)) !important}.sm\:focus\:border-green:focus{--border-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--border-opacity)) !important}.sm\:focus\:border-yellow-400:focus{--border-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--border-opacity)) !important}.sm\:focus\:border-yellow-50:focus{--border-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-transparent{border-color:transparent !important}.group:hover .sm\:group-hover\:border-white{--border-opacity:1 !important;border-color:#fff !important;border-color:rgba(255,255,255,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-blackest{--border-opacity:1 !important;border-color:#000 !important;border-color:rgba(0,0,0,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-blackest-70{border-color:rgba(0,0,0,0.7) !important}.group:hover .sm\:group-hover\:border-black{--border-opacity:1 !important;border-color:#23292d !important;border-color:rgba(35,41,45,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-gray-darkest{--border-opacity:1 !important;border-color:#3d4852 !important;border-color:rgba(61,72,82,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-gray-darker{--border-opacity:1 !important;border-color:#606f7b !important;border-color:rgba(96,111,123,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-gray-dark{--border-opacity:1 !important;border-color:#9ea3a8 !important;border-color:rgba(158,163,168,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-gray{--border-opacity:1 !important;border-color:#b8c2cc !important;border-color:rgba(184,194,204,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-gray-light{--border-opacity:1 !important;border-color:#dae1e7 !important;border-color:rgba(218,225,231,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-gray-lighter{--border-opacity:1 !important;border-color:#f1f1f1 !important;border-color:rgba(241,241,241,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-gray-lightest{--border-opacity:1 !important;border-color:#f8fafc !important;border-color:rgba(248,250,252,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-blue-darkest{--border-opacity:1 !important;border-color:#1673a7 !important;border-color:rgba(22,115,167,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-blue-dark{--border-opacity:1 !important;border-color:#0073aa !important;border-color:rgba(0,115,170,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-blue{--border-opacity:1 !important;border-color:#3188e6 !important;border-color:rgba(49,136,230,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-blue-light{--border-opacity:1 !important;border-color:#a4cafe !important;border-color:rgba(164,202,254,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-blue-highlight{border-color:rgba(180,215,255,0.6) !important}.group:hover .sm\:group-hover\:border-orange{--border-opacity:1 !important;border-color:#e1642e !important;border-color:rgba(225,100,46,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-orange-darker{--border-opacity:1 !important;border-color:#d5551e !important;border-color:rgba(213,85,30,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-orange-darkest{--border-opacity:1 !important;border-color:#c9501c !important;border-color:rgba(201,80,28,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-red{--border-opacity:1 !important;border-color:#e82323 !important;border-color:rgba(232,35,35,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-green{--border-opacity:1 !important;border-color:#46b450 !important;border-color:rgba(70,180,80,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-yellow-400{--border-opacity:1 !important;border-color:#e3a008 !important;border-color:rgba(227,160,8,var(--border-opacity)) !important}.group:hover .sm\:group-hover\:border-yellow-50{--border-opacity:1 !important;border-color:#fdfdea !important;border-color:rgba(253,253,234,var(--border-opacity)) !important}.sm\:border-opacity-0{--border-opacity:0 !important}.sm\:border-opacity-25{--border-opacity:.25 !important}.sm\:border-opacity-50{--border-opacity:.5 !important}.sm\:border-opacity-75{--border-opacity:.75 !important}.sm\:border-opacity-100{--border-opacity:1 !important}.sm\:hover\:border-opacity-0:hover{--border-opacity:0 !important}.sm\:hover\:border-opacity-25:hover{--border-opacity:.25 !important}.sm\:hover\:border-opacity-50:hover{--border-opacity:.5 !important}.sm\:hover\:border-opacity-75:hover{--border-opacity:.75 !important}.sm\:hover\:border-opacity-100:hover{--border-opacity:1 !important}.sm\:focus\:border-opacity-0:focus{--border-opacity:0 !important}.sm\:focus\:border-opacity-25:focus{--border-opacity:.25 !important}.sm\:focus\:border-opacity-50:focus{--border-opacity:.5 !important}.sm\:focus\:border-opacity-75:focus{--border-opacity:.75 !important}.sm\:focus\:border-opacity-100:focus{--border-opacity:1 !important}.sm\:rounded-none{border-radius:0 !important}.sm\:rounded-sm{border-radius:.125rem !important}.sm\:rounded{border-radius:.25rem !important}.sm\:rounded-md{border-radius:.375rem !important}.sm\:rounded-lg{border-radius:.5rem !important}.sm\:rounded-full{border-radius:9999px !important}.sm\:rounded-t-none{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.sm\:rounded-r-none{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.sm\:rounded-b-none{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.sm\:rounded-l-none{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.sm\:rounded-t-sm{border-top-left-radius:.125rem !important;border-top-right-radius:.125rem !important}.sm\:rounded-r-sm{border-top-right-radius:.125rem !important;border-bottom-right-radius:.125rem !important}.sm\:rounded-b-sm{border-bottom-right-radius:.125rem !important;border-bottom-left-radius:.125rem !important}.sm\:rounded-l-sm{border-top-left-radius:.125rem !important;border-bottom-left-radius:.125rem !important}.sm\:rounded-t{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.sm\:rounded-r{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.sm\:rounded-b{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.sm\:rounded-l{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.sm\:rounded-t-md{border-top-left-radius:.375rem !important;border-top-right-radius:.375rem !important}.sm\:rounded-r-md{border-top-right-radius:.375rem !important;border-bottom-right-radius:.375rem !important}.sm\:rounded-b-md{border-bottom-right-radius:.375rem !important;border-bottom-left-radius:.375rem !important}.sm\:rounded-l-md{border-top-left-radius:.375rem !important;border-bottom-left-radius:.375rem !important}.sm\:rounded-t-lg{border-top-left-radius:.5rem !important;border-top-right-radius:.5rem !important}.sm\:rounded-r-lg{border-top-right-radius:.5rem !important;border-bottom-right-radius:.5rem !important}.sm\:rounded-b-lg{border-bottom-right-radius:.5rem !important;border-bottom-left-radius:.5rem !important}.sm\:rounded-l-lg{border-top-left-radius:.5rem !important;border-bottom-left-radius:.5rem !important}.sm\:rounded-t-full{border-top-left-radius:9999px !important;border-top-right-radius:9999px !important}.sm\:rounded-r-full{border-top-right-radius:9999px !important;border-bottom-right-radius:9999px !important}.sm\:rounded-b-full{border-bottom-right-radius:9999px !important;border-bottom-left-radius:9999px !important}.sm\:rounded-l-full{border-top-left-radius:9999px !important;border-bottom-left-radius:9999px !important}.sm\:rounded-tl-none{border-top-left-radius:0 !important}.sm\:rounded-tr-none{border-top-right-radius:0 !important}.sm\:rounded-br-none{border-bottom-right-radius:0 !important}.sm\:rounded-bl-none{border-bottom-left-radius:0 !important}.sm\:rounded-tl-sm{border-top-left-radius:.125rem !important}.sm\:rounded-tr-sm{border-top-right-radius:.125rem !important}.sm\:rounded-br-sm{border-bottom-right-radius:.125rem !important}.sm\:rounded-bl-sm{border-bottom-left-radius:.125rem !important}.sm\:rounded-tl{border-top-left-radius:.25rem !important}.sm\:rounded-tr{border-top-right-radius:.25rem !important}.sm\:rounded-br{border-bottom-right-radius:.25rem !important}.sm\:rounded-bl{border-bottom-left-radius:.25rem !important}.sm\:rounded-tl-md{border-top-left-radius:.375rem !important}.sm\:rounded-tr-md{border-top-right-radius:.375rem !important}.sm\:rounded-br-md{border-bottom-right-radius:.375rem !important}.sm\:rounded-bl-md{border-bottom-left-radius:.375rem !important}.sm\:rounded-tl-lg{border-top-left-radius:.5rem !important}.sm\:rounded-tr-lg{border-top-right-radius:.5rem !important}.sm\:rounded-br-lg{border-bottom-right-radius:.5rem !important}.sm\:rounded-bl-lg{border-bottom-left-radius:.5rem !important}.sm\:rounded-tl-full{border-top-left-radius:9999px !important}.sm\:rounded-tr-full{border-top-right-radius:9999px !important}.sm\:rounded-br-full{border-bottom-right-radius:9999px !important}.sm\:rounded-bl-full{border-bottom-left-radius:9999px !important}.sm\:border-solid{border-style:solid !important}.sm\:border-dashed{border-style:dashed !important}.sm\:border-dotted{border-style:dotted !important}.sm\:border-double{border-style:double !important}.sm\:border-none{border-style:none !important}.sm\:border-0{border-width:0 !important}.sm\:border-2{border-width:2px !important}.sm\:border-4{border-width:4px !important}.sm\:border-8{border-width:8px !important}.sm\:border{border-width:1px !important}.sm\:border-t-0{border-top-width:0 !important}.sm\:border-r-0{border-right-width:0 !important}.sm\:border-b-0{border-bottom-width:0 !important}.sm\:border-l-0{border-left-width:0 !important}.sm\:border-t-2{border-top-width:2px !important}.sm\:border-r-2{border-right-width:2px !important}.sm\:border-b-2{border-bottom-width:2px !important}.sm\:border-l-2{border-left-width:2px !important}.sm\:border-t-4{border-top-width:4px !important}.sm\:border-r-4{border-right-width:4px !important}.sm\:border-b-4{border-bottom-width:4px !important}.sm\:border-l-4{border-left-width:4px !important}.sm\:border-t-8{border-top-width:8px !important}.sm\:border-r-8{border-right-width:8px !important}.sm\:border-b-8{border-bottom-width:8px !important}.sm\:border-l-8{border-left-width:8px !important}.sm\:border-t{border-top-width:1px !important}.sm\:border-r{border-right-width:1px !important}.sm\:border-b{border-bottom-width:1px !important}.sm\:border-l{border-left-width:1px !important}.sm\:box-border{box-sizing:border-box !important}.sm\:box-content{box-sizing:content-box !important}.sm\:cursor-auto{cursor:auto !important}.sm\:cursor-default{cursor:default !important}.sm\:cursor-pointer{cursor:pointer !important}.sm\:cursor-wait{cursor:wait !important}.sm\:cursor-text{cursor:text !important}.sm\:cursor-move{cursor:move !important}.sm\:cursor-not-allowed{cursor:not-allowed !important}.sm\:block{display:block !important}.sm\:inline-block{display:inline-block !important}.sm\:inline{display:inline !important}.sm\:flex{display:flex !important}.sm\:inline-flex{display:inline-flex !important}.sm\:table{display:table !important}.sm\:table-caption{display:table-caption !important}.sm\:table-cell{display:table-cell !important}.sm\:table-column{display:table-column !important}.sm\:table-column-group{display:table-column-group !important}.sm\:table-footer-group{display:table-footer-group !important}.sm\:table-header-group{display:table-header-group !important}.sm\:table-row-group{display:table-row-group !important}.sm\:table-row{display:table-row !important}.sm\:flow-root{display:flow-root !important}.sm\:grid{display:grid !important}.sm\:inline-grid{display:inline-grid !important}.sm\:hidden{display:none !important}.sm\:flex-row{flex-direction:row !important}.sm\:flex-row-reverse{flex-direction:row-reverse !important}.sm\:flex-col{flex-direction:column !important}.sm\:flex-col-reverse{flex-direction:column-reverse !important}.sm\:flex-wrap{flex-wrap:wrap !important}.sm\:flex-wrap-reverse{flex-wrap:wrap-reverse !important}.sm\:flex-no-wrap{flex-wrap:nowrap !important}.sm\:items-start{align-items:flex-start !important}.sm\:items-end{align-items:flex-end !important}.sm\:items-center{align-items:center !important}.sm\:items-baseline{align-items:baseline !important}.sm\:items-stretch{align-items:stretch !important}.sm\:self-auto{align-self:auto !important}.sm\:self-start{align-self:flex-start !important}.sm\:self-end{align-self:flex-end !important}.sm\:self-center{align-self:center !important}.sm\:self-stretch{align-self:stretch !important}.sm\:justify-start{justify-content:flex-start !important}.sm\:justify-end{justify-content:flex-end !important}.sm\:justify-center{justify-content:center !important}.sm\:justify-between{justify-content:space-between !important}.sm\:justify-around{justify-content:space-around !important}.sm\:justify-evenly{justify-content:space-evenly !important}.sm\:content-center{align-content:center !important}.sm\:content-start{align-content:flex-start !important}.sm\:content-end{align-content:flex-end !important}.sm\:content-between{align-content:space-between !important}.sm\:content-around{align-content:space-around !important}.sm\:flex-1{flex:1 1 0 !important}.sm\:flex-auto{flex:1 1 auto !important}.sm\:flex-initial{flex:0 1 auto !important}.sm\:flex-none{flex:none !important}.sm\:flex-grow-0{flex-grow:0 !important}.sm\:flex-grow{flex-grow:1 !important}.sm\:flex-shrink-0{flex-shrink:0 !important}.sm\:flex-shrink{flex-shrink:1 !important}.sm\:order-1{order:1 !important}.sm\:order-2{order:2 !important}.sm\:order-3{order:3 !important}.sm\:order-4{order:4 !important}.sm\:order-5{order:5 !important}.sm\:order-6{order:6 !important}.sm\:order-7{order:7 !important}.sm\:order-8{order:8 !important}.sm\:order-9{order:9 !important}.sm\:order-10{order:10 !important}.sm\:order-11{order:11 !important}.sm\:order-12{order:12 !important}.sm\:order-first{order:-9999 !important}.sm\:order-last{order:9999 !important}.sm\:order-none{order:0 !important}.sm\:float-right{float:right !important}.sm\:float-left{float:left !important}.sm\:float-none{float:none !important}.sm\:clearfix:after{content:"" !important;display:table !important;clear:both !important}[dir='ltr'] .sm\:ltr\:float-right{float:right !important}[dir='ltr'] .sm\:ltr\:float-left{float:left !important}[dir='ltr'] .sm\:ltr\:float-none{float:none !important}[dir='ltr'] .sm\:ltr\:clearfix:after{content:"" !important;display:table !important;clear:both !important}[dir='rtl'] .sm\:rtl\:float-right{float:right !important}[dir='rtl'] .sm\:rtl\:float-left{float:left !important}[dir='rtl'] .sm\:rtl\:float-none{float:none !important}[dir='rtl'] .sm\:rtl\:clearfix:after{content:"" !important;display:table !important;clear:both !important}.sm\:clear-left{clear:left !important}.sm\:clear-right{clear:right !important}.sm\:clear-both{clear:both !important}.sm\:clear-none{clear:none !important}.sm\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important}.sm\:font-serif{font-family:Georgia,Cambria,"Times New Roman",Times,serif !important}.sm\:font-mono{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.sm\:font-hairline{font-weight:100 !important}.sm\:font-thin{font-weight:200 !important}.sm\:font-light{font-weight:300 !important}.sm\:font-normal{font-weight:400 !important}.sm\:font-medium{font-weight:500 !important}.sm\:font-semibold{font-weight:600 !important}.sm\:font-bold{font-weight:700 !important}.sm\:font-extrabold{font-weight:800 !important}.sm\:font-black{font-weight:900 !important}.sm\:hover\:font-hairline:hover{font-weight:100 !important}.sm\:hover\:font-thin:hover{font-weight:200 !important}.sm\:hover\:font-light:hover{font-weight:300 !important}.sm\:hover\:font-normal:hover{font-weight:400 !important}.sm\:hover\:font-medium:hover{font-weight:500 !important}.sm\:hover\:font-semibold:hover{font-weight:600 !important}.sm\:hover\:font-bold:hover{font-weight:700 !important}.sm\:hover\:font-extrabold:hover{font-weight:800 !important}.sm\:hover\:font-black:hover{font-weight:900 !important}.sm\:focus\:font-hairline:focus{font-weight:100 !important}.sm\:focus\:font-thin:focus{font-weight:200 !important}.sm\:focus\:font-light:focus{font-weight:300 !important}.sm\:focus\:font-normal:focus{font-weight:400 !important}.sm\:focus\:font-medium:focus{font-weight:500 !important}.sm\:focus\:font-semibold:focus{font-weight:600 !important}.sm\:focus\:font-bold:focus{font-weight:700 !important}.sm\:focus\:font-extrabold:focus{font-weight:800 !important}.sm\:focus\:font-black:focus{font-weight:900 !important}.sm\:h-0{height:0 !important}.sm\:h-1{height:.25rem !important}.sm\:h-2{height:.5rem !important}.sm\:h-3{height:.75rem !important}.sm\:h-4{height:1rem !important}.sm\:h-5{height:1.25rem !important}.sm\:h-6{height:1.5rem !important}.sm\:h-7{height:1.75rem !important}.sm\:h-8{height:2rem !important}.sm\:h-9{height:2.25rem !important}.sm\:h-10{height:2.5rem !important}.sm\:h-11{height:2.75rem !important}.sm\:h-12{height:3rem !important}.sm\:h-13{height:3.25rem !important}.sm\:h-14{height:3.5rem !important}.sm\:h-15{height:3.75rem !important}.sm\:h-16{height:4rem !important}.sm\:h-20{height:5rem !important}.sm\:h-24{height:6rem !important}.sm\:h-28{height:7rem !important}.sm\:h-32{height:8rem !important}.sm\:h-36{height:9rem !important}.sm\:h-40{height:10rem !important}.sm\:h-48{height:12rem !important}.sm\:h-56{height:14rem !important}.sm\:h-60{height:15rem !important}.sm\:h-64{height:16rem !important}.sm\:h-72{height:18rem !important}.sm\:h-80{height:20rem !important}.sm\:h-96{height:24rem !important}.sm\:h-auto{height:auto !important}.sm\:h-px{height:1px !important}.sm\:h-0\.5{height:.125rem !important}.sm\:h-1\.5{height:.375rem !important}.sm\:h-2\.5{height:.625rem !important}.sm\:h-3\.5{height:.875rem !important}.sm\:h-1\/2{height:50% !important}.sm\:h-1\/3{height:33.333333% !important}.sm\:h-2\/3{height:66.666667% !important}.sm\:h-1\/4{height:25% !important}.sm\:h-2\/4{height:50% !important}.sm\:h-3\/4{height:75% !important}.sm\:h-1\/5{height:20% !important}.sm\:h-2\/5{height:40% !important}.sm\:h-3\/5{height:60% !important}.sm\:h-4\/5{height:80% !important}.sm\:h-1\/6{height:16.666667% !important}.sm\:h-2\/6{height:33.333333% !important}.sm\:h-3\/6{height:50% !important}.sm\:h-4\/6{height:66.666667% !important}.sm\:h-5\/6{height:83.333333% !important}.sm\:h-1\/12{height:8.333333% !important}.sm\:h-2\/12{height:16.666667% !important}.sm\:h-3\/12{height:25% !important}.sm\:h-4\/12{height:33.333333% !important}.sm\:h-5\/12{height:41.666667% !important}.sm\:h-6\/12{height:50% !important}.sm\:h-7\/12{height:58.333333% !important}.sm\:h-8\/12{height:66.666667% !important}.sm\:h-9\/12{height:75% !important}.sm\:h-10\/12{height:83.333333% !important}.sm\:h-11\/12{height:91.666667% !important}.sm\:h-full{height:100% !important}.sm\:h-screen{height:100vh !important}.sm\:text-xs{font-size:.7rem !important}.sm\:text-sm{font-size:.875rem !important}.sm\:text-base{font-size:1rem !important}.sm\:text-lg{font-size:1.125rem !important}.sm\:text-xl{font-size:1.25rem !important}.sm\:text-2xl{font-size:1.5rem !important}.sm\:text-3xl{font-size:1.875rem !important}.sm\:text-4xl{font-size:2.25rem !important}.sm\:text-5xl{font-size:3rem !important}.sm\:text-6xl{font-size:4rem !important}.sm\:leading-3{line-height:.75rem !important}.sm\:leading-4{line-height:1rem !important}.sm\:leading-5{line-height:1.25rem !important}.sm\:leading-6{line-height:1.5rem !important}.sm\:leading-7{line-height:1.75rem !important}.sm\:leading-8{line-height:2rem !important}.sm\:leading-9{line-height:2.25rem !important}.sm\:leading-10{line-height:2.5rem !important}.sm\:leading-none{line-height:1 !important}.sm\:leading-tight{line-height:1.25 !important}.sm\:leading-snug{line-height:1.375 !important}.sm\:leading-normal{line-height:1.5 !important}.sm\:leading-relaxed{line-height:1.625 !important}.sm\:leading-loose{line-height:2 !important}.sm\:list-inside{list-style-position:inside !important}.sm\:list-outside{list-style-position:outside !important}.sm\:list-none{list-style-type:none !important}.sm\:list-disc{list-style-type:disc !important}.sm\:list-decimal{list-style-type:decimal !important}.sm\:m-0{margin:0 !important}.sm\:m-1{margin:.25rem !important}.sm\:m-2{margin:.5rem !important}.sm\:m-3{margin:.75rem !important}.sm\:m-4{margin:1rem !important}.sm\:m-5{margin:1.25rem !important}.sm\:m-6{margin:1.5rem !important}.sm\:m-7{margin:1.75rem !important}.sm\:m-8{margin:2rem !important}.sm\:m-9{margin:2.25rem !important}.sm\:m-10{margin:2.5rem !important}.sm\:m-11{margin:2.75rem !important}.sm\:m-12{margin:3rem !important}.sm\:m-13{margin:3.25rem !important}.sm\:m-14{margin:3.5rem !important}.sm\:m-15{margin:3.75rem !important}.sm\:m-16{margin:4rem !important}.sm\:m-20{margin:5rem !important}.sm\:m-24{margin:6rem !important}.sm\:m-28{margin:7rem !important}.sm\:m-32{margin:8rem !important}.sm\:m-36{margin:9rem !important}.sm\:m-40{margin:10rem !important}.sm\:m-48{margin:12rem !important}.sm\:m-56{margin:14rem !important}.sm\:m-60{margin:15rem !important}.sm\:m-64{margin:16rem !important}.sm\:m-72{margin:18rem !important}.sm\:m-80{margin:20rem !important}.sm\:m-96{margin:24rem !important}.sm\:m-auto{margin:auto !important}.sm\:m-px{margin:1px !important}.sm\:m-0\.5{margin:.125rem !important}.sm\:m-1\.5{margin:.375rem !important}.sm\:m-2\.5{margin:.625rem !important}.sm\:m-3\.5{margin:.875rem !important}.sm\:m-1\/2{margin:50% !important}.sm\:m-1\/3{margin:33.333333% !important}.sm\:m-2\/3{margin:66.666667% !important}.sm\:m-1\/4{margin:25% !important}.sm\:m-2\/4{margin:50% !important}.sm\:m-3\/4{margin:75% !important}.sm\:m-1\/5{margin:20% !important}.sm\:m-2\/5{margin:40% !important}.sm\:m-3\/5{margin:60% !important}.sm\:m-4\/5{margin:80% !important}.sm\:m-1\/6{margin:16.666667% !important}.sm\:m-2\/6{margin:33.333333% !important}.sm\:m-3\/6{margin:50% !important}.sm\:m-4\/6{margin:66.666667% !important}.sm\:m-5\/6{margin:83.333333% !important}.sm\:m-1\/12{margin:8.333333% !important}.sm\:m-2\/12{margin:16.666667% !important}.sm\:m-3\/12{margin:25% !important}.sm\:m-4\/12{margin:33.333333% !important}.sm\:m-5\/12{margin:41.666667% !important}.sm\:m-6\/12{margin:50% !important}.sm\:m-7\/12{margin:58.333333% !important}.sm\:m-8\/12{margin:66.666667% !important}.sm\:m-9\/12{margin:75% !important}.sm\:m-10\/12{margin:83.333333% !important}.sm\:m-11\/12{margin:91.666667% !important}.sm\:m-full{margin:100% !important}.sm\:-m-1{margin:-0.25rem !important}.sm\:-m-2{margin:-0.5rem !important}.sm\:-m-3{margin:-0.75rem !important}.sm\:-m-4{margin:-1rem !important}.sm\:-m-5{margin:-1.25rem !important}.sm\:-m-6{margin:-1.5rem !important}.sm\:-m-7{margin:-1.75rem !important}.sm\:-m-8{margin:-2rem !important}.sm\:-m-9{margin:-2.25rem !important}.sm\:-m-10{margin:-2.5rem !important}.sm\:-m-11{margin:-2.75rem !important}.sm\:-m-12{margin:-3rem !important}.sm\:-m-13{margin:-3.25rem !important}.sm\:-m-14{margin:-3.5rem !important}.sm\:-m-15{margin:-3.75rem !important}.sm\:-m-16{margin:-4rem !important}.sm\:-m-20{margin:-5rem !important}.sm\:-m-24{margin:-6rem !important}.sm\:-m-28{margin:-7rem !important}.sm\:-m-32{margin:-8rem !important}.sm\:-m-36{margin:-9rem !important}.sm\:-m-40{margin:-10rem !important}.sm\:-m-48{margin:-12rem !important}.sm\:-m-56{margin:-14rem !important}.sm\:-m-60{margin:-15rem !important}.sm\:-m-64{margin:-16rem !important}.sm\:-m-72{margin:-18rem !important}.sm\:-m-80{margin:-20rem !important}.sm\:-m-96{margin:-24rem !important}.sm\:-m-px{margin:-1px !important}.sm\:-m-0\.5{margin:-0.125rem !important}.sm\:-m-1\.5{margin:-0.375rem !important}.sm\:-m-2\.5{margin:-0.625rem !important}.sm\:-m-3\.5{margin:-0.875rem !important}.sm\:-m-1\/2{margin:-50% !important}.sm\:-m-1\/3{margin:-33.33333% !important}.sm\:-m-2\/3{margin:-66.66667% !important}.sm\:-m-1\/4{margin:-25% !important}.sm\:-m-2\/4{margin:-50% !important}.sm\:-m-3\/4{margin:-75% !important}.sm\:-m-1\/5{margin:-20% !important}.sm\:-m-2\/5{margin:-40% !important}.sm\:-m-3\/5{margin:-60% !important}.sm\:-m-4\/5{margin:-80% !important}.sm\:-m-1\/6{margin:-16.66667% !important}.sm\:-m-2\/6{margin:-33.33333% !important}.sm\:-m-3\/6{margin:-50% !important}.sm\:-m-4\/6{margin:-66.66667% !important}.sm\:-m-5\/6{margin:-83.33333% !important}.sm\:-m-1\/12{margin:-8.33333% !important}.sm\:-m-2\/12{margin:-16.66667% !important}.sm\:-m-3\/12{margin:-25% !important}.sm\:-m-4\/12{margin:-33.33333% !important}.sm\:-m-5\/12{margin:-41.66667% !important}.sm\:-m-6\/12{margin:-50% !important}.sm\:-m-7\/12{margin:-58.33333% !important}.sm\:-m-8\/12{margin:-66.66667% !important}.sm\:-m-9\/12{margin:-75% !important}.sm\:-m-10\/12{margin:-83.33333% !important}.sm\:-m-11\/12{margin:-91.66667% !important}.sm\:-m-full{margin:-100% !important}.sm\:my-0{margin-top:0 !important;margin-bottom:0 !important}.sm\:mx-0{margin-left:0 !important;margin-right:0 !important}.sm\:my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.sm\:mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.sm\:my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.sm\:mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.sm\:my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.sm\:mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.sm\:my-4{margin-top:1rem !important;margin-bottom:1rem !important}.sm\:mx-4{margin-left:1rem !important;margin-right:1rem !important}.sm\:my-5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.sm\:mx-5{margin-left:1.25rem !important;margin-right:1.25rem !important}.sm\:my-6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.sm\:mx-6{margin-left:1.5rem !important;margin-right:1.5rem !important}.sm\:my-7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.sm\:mx-7{margin-left:1.75rem !important;margin-right:1.75rem !important}.sm\:my-8{margin-top:2rem !important;margin-bottom:2rem !important}.sm\:mx-8{margin-left:2rem !important;margin-right:2rem !important}.sm\:my-9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.sm\:mx-9{margin-left:2.25rem !important;margin-right:2.25rem !important}.sm\:my-10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.sm\:mx-10{margin-left:2.5rem !important;margin-right:2.5rem !important}.sm\:my-11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.sm\:mx-11{margin-left:2.75rem !important;margin-right:2.75rem !important}.sm\:my-12{margin-top:3rem !important;margin-bottom:3rem !important}.sm\:mx-12{margin-left:3rem !important;margin-right:3rem !important}.sm\:my-13{margin-top:3.25rem !important;margin-bottom:3.25rem !important}.sm\:mx-13{margin-left:3.25rem !important;margin-right:3.25rem !important}.sm\:my-14{margin-top:3.5rem !important;margin-bottom:3.5rem !important}.sm\:mx-14{margin-left:3.5rem !important;margin-right:3.5rem !important}.sm\:my-15{margin-top:3.75rem !important;margin-bottom:3.75rem !important}.sm\:mx-15{margin-left:3.75rem !important;margin-right:3.75rem !important}.sm\:my-16{margin-top:4rem !important;margin-bottom:4rem !important}.sm\:mx-16{margin-left:4rem !important;margin-right:4rem !important}.sm\:my-20{margin-top:5rem !important;margin-bottom:5rem !important}.sm\:mx-20{margin-left:5rem !important;margin-right:5rem !important}.sm\:my-24{margin-top:6rem !important;margin-bottom:6rem !important}.sm\:mx-24{margin-left:6rem !important;margin-right:6rem !important}.sm\:my-28{margin-top:7rem !important;margin-bottom:7rem !important}.sm\:mx-28{margin-left:7rem !important;margin-right:7rem !important}.sm\:my-32{margin-top:8rem !important;margin-bottom:8rem !important}.sm\:mx-32{margin-left:8rem !important;margin-right:8rem !important}.sm\:my-36{margin-top:9rem !important;margin-bottom:9rem !important}.sm\:mx-36{margin-left:9rem !important;margin-right:9rem !important}.sm\:my-40{margin-top:10rem !important;margin-bottom:10rem !important}.sm\:mx-40{margin-left:10rem !important;margin-right:10rem !important}.sm\:my-48{margin-top:12rem !important;margin-bottom:12rem !important}.sm\:mx-48{margin-left:12rem !important;margin-right:12rem !important}.sm\:my-56{margin-top:14rem !important;margin-bottom:14rem !important}.sm\:mx-56{margin-left:14rem !important;margin-right:14rem !important}.sm\:my-60{margin-top:15rem !important;margin-bottom:15rem !important}.sm\:mx-60{margin-left:15rem !important;margin-right:15rem !important}.sm\:my-64{margin-top:16rem !important;margin-bottom:16rem !important}.sm\:mx-64{margin-left:16rem !important;margin-right:16rem !important}.sm\:my-72{margin-top:18rem !important;margin-bottom:18rem !important}.sm\:mx-72{margin-left:18rem !important;margin-right:18rem !important}.sm\:my-80{margin-top:20rem !important;margin-bottom:20rem !important}.sm\:mx-80{margin-left:20rem !important;margin-right:20rem !important}.sm\:my-96{margin-top:24rem !important;margin-bottom:24rem !important}.sm\:mx-96{margin-left:24rem !important;margin-right:24rem !important}.sm\:my-auto{margin-top:auto !important;margin-bottom:auto !important}.sm\:mx-auto{margin-left:auto !important;margin-right:auto !important}.sm\:my-px{margin-top:1px !important;margin-bottom:1px !important}.sm\:mx-px{margin-left:1px !important;margin-right:1px !important}.sm\:my-0\.5{margin-top:.125rem !important;margin-bottom:.125rem !important}.sm\:mx-0\.5{margin-left:.125rem !important;margin-right:.125rem !important}.sm\:my-1\.5{margin-top:.375rem !important;margin-bottom:.375rem !important}.sm\:mx-1\.5{margin-left:.375rem !important;margin-right:.375rem !important}.sm\:my-2\.5{margin-top:.625rem !important;margin-bottom:.625rem !important}.sm\:mx-2\.5{margin-left:.625rem !important;margin-right:.625rem !important}.sm\:my-3\.5{margin-top:.875rem !important;margin-bottom:.875rem !important}.sm\:mx-3\.5{margin-left:.875rem !important;margin-right:.875rem !important}.sm\:my-1\/2{margin-top:50% !important;margin-bottom:50% !important}.sm\:mx-1\/2{margin-left:50% !important;margin-right:50% !important}.sm\:my-1\/3{margin-top:33.333333% !important;margin-bottom:33.333333% !important}.sm\:mx-1\/3{margin-left:33.333333% !important;margin-right:33.333333% !important}.sm\:my-2\/3{margin-top:66.666667% !important;margin-bottom:66.666667% !important}.sm\:mx-2\/3{margin-left:66.666667% !important;margin-right:66.666667% !important}.sm\:my-1\/4{margin-top:25% !important;margin-bottom:25% !important}.sm\:mx-1\/4{margin-left:25% !important;margin-right:25% !important}.sm\:my-2\/4{margin-top:50% !important;margin-bottom:50% !important}.sm\:mx-2\/4{margin-left:50% !important;margin-right:50% !important}.sm\:my-3\/4{margin-top:75% !important;margin-bottom:75% !important}.sm\:mx-3\/4{margin-left:75% !important;margin-right:75% !important}.sm\:my-1\/5{margin-top:20% !important;margin-bottom:20% !important}.sm\:mx-1\/5{margin-left:20% !important;margin-right:20% !important}.sm\:my-2\/5{margin-top:40% !important;margin-bottom:40% !important}.sm\:mx-2\/5{margin-left:40% !important;margin-right:40% !important}.sm\:my-3\/5{margin-top:60% !important;margin-bottom:60% !important}.sm\:mx-3\/5{margin-left:60% !important;margin-right:60% !important}.sm\:my-4\/5{margin-top:80% !important;margin-bottom:80% !important}.sm\:mx-4\/5{margin-left:80% !important;margin-right:80% !important}.sm\:my-1\/6{margin-top:16.666667% !important;margin-bottom:16.666667% !important}.sm\:mx-1\/6{margin-left:16.666667% !important;margin-right:16.666667% !important}.sm\:my-2\/6{margin-top:33.333333% !important;margin-bottom:33.333333% !important}.sm\:mx-2\/6{margin-left:33.333333% !important;margin-right:33.333333% !important}.sm\:my-3\/6{margin-top:50% !important;margin-bottom:50% !important}.sm\:mx-3\/6{margin-left:50% !important;margin-right:50% !important}.sm\:my-4\/6{margin-top:66.666667% !important;margin-bottom:66.666667% !important}.sm\:mx-4\/6{margin-left:66.666667% !important;margin-right:66.666667% !important}.sm\:my-5\/6{margin-top:83.333333% !important;margin-bottom:83.333333% !important}.sm\:mx-5\/6{margin-left:83.333333% !important;margin-right:83.333333% !important}.sm\:my-1\/12{margin-top:8.333333% !important;margin-bottom:8.333333% !important}.sm\:mx-1\/12{margin-left:8.333333% !important;margin-right:8.333333% !important}.sm\:my-2\/12{margin-top:16.666667% !important;margin-bottom:16.666667% !important}.sm\:mx-2\/12{margin-left:16.666667% !important;margin-right:16.666667% !important}.sm\:my-3\/12{margin-top:25% !important;margin-bottom:25% !important}.sm\:mx-3\/12{margin-left:25% !important;margin-right:25% !important}.sm\:my-4\/12{margin-top:33.333333% !important;margin-bottom:33.333333% !important}.sm\:mx-4\/12{margin-left:33.333333% !important;margin-right:33.333333% !important}.sm\:my-5\/12{margin-top:41.666667% !important;margin-bottom:41.666667% !important}.sm\:mx-5\/12{margin-left:41.666667% !important;margin-right:41.666667% !important}.sm\:my-6\/12{margin-top:50% !important;margin-bottom:50% !important}.sm\:mx-6\/12{margin-left:50% !important;margin-right:50% !important}.sm\:my-7\/12{margin-top:58.333333% !important;margin-bottom:58.333333% !important}.sm\:mx-7\/12{margin-left:58.333333% !important;margin-right:58.333333% !important}.sm\:my-8\/12{margin-top:66.666667% !important;margin-bottom:66.666667% !important}.sm\:mx-8\/12{margin-left:66.666667% !important;margin-right:66.666667% !important}.sm\:my-9\/12{margin-top:75% !important;margin-bottom:75% !important}.sm\:mx-9\/12{margin-left:75% !important;margin-right:75% !important}.sm\:my-10\/12{margin-top:83.333333% !important;margin-bottom:83.333333% !important}.sm\:mx-10\/12{margin-left:83.333333% !important;margin-right:83.333333% !important}.sm\:my-11\/12{margin-top:91.666667% !important;margin-bottom:91.666667% !important}.sm\:mx-11\/12{margin-left:91.666667% !important;margin-right:91.666667% !important}.sm\:my-full{margin-top:100% !important;margin-bottom:100% !important}.sm\:mx-full{margin-left:100% !important;margin-right:100% !important}.sm\:-my-1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.sm\:-mx-1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.sm\:-my-2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.sm\:-mx-2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.sm\:-my-3{margin-top:-0.75rem !important;margin-bottom:-0.75rem !important}.sm\:-mx-3{margin-left:-0.75rem !important;margin-right:-0.75rem !important}.sm\:-my-4{margin-top:-1rem !important;margin-bottom:-1rem !important}.sm\:-mx-4{margin-left:-1rem !important;margin-right:-1rem !important}.sm\:-my-5{margin-top:-1.25rem !important;margin-bottom:-1.25rem !important}.sm\:-mx-5{margin-left:-1.25rem !important;margin-right:-1.25rem !important}.sm\:-my-6{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.sm\:-mx-6{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.sm\:-my-7{margin-top:-1.75rem !important;margin-bottom:-1.75rem !important}.sm\:-mx-7{margin-left:-1.75rem !important;margin-right:-1.75rem !important}.sm\:-my-8{margin-top:-2rem !important;margin-bottom:-2rem !important}.sm\:-mx-8{margin-left:-2rem !important;margin-right:-2rem !important}.sm\:-my-9{margin-top:-2.25rem !important;margin-bottom:-2.25rem !important}.sm\:-mx-9{margin-left:-2.25rem !important;margin-right:-2.25rem !important}.sm\:-my-10{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.sm\:-mx-10{margin-left:-2.5rem !important;margin-right:-2.5rem !important}.sm\:-my-11{margin-top:-2.75rem !important;margin-bottom:-2.75rem !important}.sm\:-mx-11{margin-left:-2.75rem !important;margin-right:-2.75rem !important}.sm\:-my-12{margin-top:-3rem !important;margin-bottom:-3rem !important}.sm\:-mx-12{margin-left:-3rem !important;margin-right:-3rem !important}.sm\:-my-13{margin-top:-3.25rem !important;margin-bottom:-3.25rem !important}.sm\:-mx-13{margin-left:-3.25rem !important;margin-right:-3.25rem !important}.sm\:-my-14{margin-top:-3.5rem !important;margin-bottom:-3.5rem !important}.sm\:-mx-14{margin-left:-3.5rem !important;margin-right:-3.5rem !important}.sm\:-my-15{margin-top:-3.75rem !important;margin-bottom:-3.75rem !important}.sm\:-mx-15{margin-left:-3.75rem !important;margin-right:-3.75rem !important}.sm\:-my-16{margin-top:-4rem !important;margin-bottom:-4rem !important}.sm\:-mx-16{margin-left:-4rem !important;margin-right:-4rem !important}.sm\:-my-20{margin-top:-5rem !important;margin-bottom:-5rem !important}.sm\:-mx-20{margin-left:-5rem !important;margin-right:-5rem !important}.sm\:-my-24{margin-top:-6rem !important;margin-bottom:-6rem !important}.sm\:-mx-24{margin-left:-6rem !important;margin-right:-6rem !important}.sm\:-my-28{margin-top:-7rem !important;margin-bottom:-7rem !important}.sm\:-mx-28{margin-left:-7rem !important;margin-right:-7rem !important}.sm\:-my-32{margin-top:-8rem !important;margin-bottom:-8rem !important}.sm\:-mx-32{margin-left:-8rem !important;margin-right:-8rem !important}.sm\:-my-36{margin-top:-9rem !important;margin-bottom:-9rem !important}.sm\:-mx-36{margin-left:-9rem !important;margin-right:-9rem !important}.sm\:-my-40{margin-top:-10rem !important;margin-bottom:-10rem !important}.sm\:-mx-40{margin-left:-10rem !important;margin-right:-10rem !important}.sm\:-my-48{margin-top:-12rem !important;margin-bottom:-12rem !important}.sm\:-mx-48{margin-left:-12rem !important;margin-right:-12rem !important}.sm\:-my-56{margin-top:-14rem !important;margin-bottom:-14rem !important}.sm\:-mx-56{margin-left:-14rem !important;margin-right:-14rem !important}.sm\:-my-60{margin-top:-15rem !important;margin-bottom:-15rem !important}.sm\:-mx-60{margin-left:-15rem !important;margin-right:-15rem !important}.sm\:-my-64{margin-top:-16rem !important;margin-bottom:-16rem !important}.sm\:-mx-64{margin-left:-16rem !important;margin-right:-16rem !important}.sm\:-my-72{margin-top:-18rem !important;margin-bottom:-18rem !important}.sm\:-mx-72{margin-left:-18rem !important;margin-right:-18rem !important}.sm\:-my-80{margin-top:-20rem !important;margin-bottom:-20rem !important}.sm\:-mx-80{margin-left:-20rem !important;margin-right:-20rem !important}.sm\:-my-96{margin-top:-24rem !important;margin-bottom:-24rem !important}.sm\:-mx-96{margin-left:-24rem !important;margin-right:-24rem !important}.sm\:-my-px{margin-top:-1px !important;margin-bottom:-1px !important}.sm\:-mx-px{margin-left:-1px !important;margin-right:-1px !important}.sm\:-my-0\.5{margin-top:-0.125rem !important;margin-bottom:-0.125rem !important}.sm\:-mx-0\.5{margin-left:-0.125rem !important;margin-right:-0.125rem !important}.sm\:-my-1\.5{margin-top:-0.375rem !important;margin-bottom:-0.375rem !important}.sm\:-mx-1\.5{margin-left:-0.375rem !important;margin-right:-0.375rem !important}.sm\:-my-2\.5{margin-top:-0.625rem !important;margin-bottom:-0.625rem !important}.sm\:-mx-2\.5{margin-left:-0.625rem !important;margin-right:-0.625rem !important}.sm\:-my-3\.5{margin-top:-0.875rem !important;margin-bottom:-0.875rem !important}.sm\:-mx-3\.5{margin-left:-0.875rem !important;margin-right:-0.875rem !important}.sm\:-my-1\/2{margin-top:-50% !important;margin-bottom:-50% !important}.sm\:-mx-1\/2{margin-left:-50% !important;margin-right:-50% !important}.sm\:-my-1\/3{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}.sm\:-mx-1\/3{margin-left:-33.33333% !important;margin-right:-33.33333% !important}.sm\:-my-2\/3{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}.sm\:-mx-2\/3{margin-left:-66.66667% !important;margin-right:-66.66667% !important}.sm\:-my-1\/4{margin-top:-25% !important;margin-bottom:-25% !important}.sm\:-mx-1\/4{margin-left:-25% !important;margin-right:-25% !important}.sm\:-my-2\/4{margin-top:-50% !important;margin-bottom:-50% !important}.sm\:-mx-2\/4{margin-left:-50% !important;margin-right:-50% !important}.sm\:-my-3\/4{margin-top:-75% !important;margin-bottom:-75% !important}.sm\:-mx-3\/4{margin-left:-75% !important;margin-right:-75% !important}.sm\:-my-1\/5{margin-top:-20% !important;margin-bottom:-20% !important}.sm\:-mx-1\/5{margin-left:-20% !important;margin-right:-20% !important}.sm\:-my-2\/5{margin-top:-40% !important;margin-bottom:-40% !important}.sm\:-mx-2\/5{margin-left:-40% !important;margin-right:-40% !important}.sm\:-my-3\/5{margin-top:-60% !important;margin-bottom:-60% !important}.sm\:-mx-3\/5{margin-left:-60% !important;margin-right:-60% !important}.sm\:-my-4\/5{margin-top:-80% !important;margin-bottom:-80% !important}.sm\:-mx-4\/5{margin-left:-80% !important;margin-right:-80% !important}.sm\:-my-1\/6{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}.sm\:-mx-1\/6{margin-left:-16.66667% !important;margin-right:-16.66667% !important}.sm\:-my-2\/6{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}.sm\:-mx-2\/6{margin-left:-33.33333% !important;margin-right:-33.33333% !important}.sm\:-my-3\/6{margin-top:-50% !important;margin-bottom:-50% !important}.sm\:-mx-3\/6{margin-left:-50% !important;margin-right:-50% !important}.sm\:-my-4\/6{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}.sm\:-mx-4\/6{margin-left:-66.66667% !important;margin-right:-66.66667% !important}.sm\:-my-5\/6{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}.sm\:-mx-5\/6{margin-left:-83.33333% !important;margin-right:-83.33333% !important}.sm\:-my-1\/12{margin-top:-8.33333% !important;margin-bottom:-8.33333% !important}.sm\:-mx-1\/12{margin-left:-8.33333% !important;margin-right:-8.33333% !important}.sm\:-my-2\/12{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}.sm\:-mx-2\/12{margin-left:-16.66667% !important;margin-right:-16.66667% !important}.sm\:-my-3\/12{margin-top:-25% !important;margin-bottom:-25% !important}.sm\:-mx-3\/12{margin-left:-25% !important;margin-right:-25% !important}.sm\:-my-4\/12{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}.sm\:-mx-4\/12{margin-left:-33.33333% !important;margin-right:-33.33333% !important}.sm\:-my-5\/12{margin-top:-41.66667% !important;margin-bottom:-41.66667% !important}.sm\:-mx-5\/12{margin-left:-41.66667% !important;margin-right:-41.66667% !important}.sm\:-my-6\/12{margin-top:-50% !important;margin-bottom:-50% !important}.sm\:-mx-6\/12{margin-left:-50% !important;margin-right:-50% !important}.sm\:-my-7\/12{margin-top:-58.33333% !important;margin-bottom:-58.33333% !important}.sm\:-mx-7\/12{margin-left:-58.33333% !important;margin-right:-58.33333% !important}.sm\:-my-8\/12{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}.sm\:-mx-8\/12{margin-left:-66.66667% !important;margin-right:-66.66667% !important}.sm\:-my-9\/12{margin-top:-75% !important;margin-bottom:-75% !important}.sm\:-mx-9\/12{margin-left:-75% !important;margin-right:-75% !important}.sm\:-my-10\/12{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}.sm\:-mx-10\/12{margin-left:-83.33333% !important;margin-right:-83.33333% !important}.sm\:-my-11\/12{margin-top:-91.66667% !important;margin-bottom:-91.66667% !important}.sm\:-mx-11\/12{margin-left:-91.66667% !important;margin-right:-91.66667% !important}.sm\:-my-full{margin-top:-100% !important;margin-bottom:-100% !important}.sm\:-mx-full{margin-left:-100% !important;margin-right:-100% !important}.sm\:mt-0{margin-top:0 !important}.sm\:mr-0{margin-right:0 !important}.sm\:mb-0{margin-bottom:0 !important}.sm\:ml-0{margin-left:0 !important}.sm\:mt-1{margin-top:.25rem !important}.sm\:mr-1{margin-right:.25rem !important}.sm\:mb-1{margin-bottom:.25rem !important}.sm\:ml-1{margin-left:.25rem !important}.sm\:mt-2{margin-top:.5rem !important}.sm\:mr-2{margin-right:.5rem !important}.sm\:mb-2{margin-bottom:.5rem !important}.sm\:ml-2{margin-left:.5rem !important}.sm\:mt-3{margin-top:.75rem !important}.sm\:mr-3{margin-right:.75rem !important}.sm\:mb-3{margin-bottom:.75rem !important}.sm\:ml-3{margin-left:.75rem !important}.sm\:mt-4{margin-top:1rem !important}.sm\:mr-4{margin-right:1rem !important}.sm\:mb-4{margin-bottom:1rem !important}.sm\:ml-4{margin-left:1rem !important}.sm\:mt-5{margin-top:1.25rem !important}.sm\:mr-5{margin-right:1.25rem !important}.sm\:mb-5{margin-bottom:1.25rem !important}.sm\:ml-5{margin-left:1.25rem !important}.sm\:mt-6{margin-top:1.5rem !important}.sm\:mr-6{margin-right:1.5rem !important}.sm\:mb-6{margin-bottom:1.5rem !important}.sm\:ml-6{margin-left:1.5rem !important}.sm\:mt-7{margin-top:1.75rem !important}.sm\:mr-7{margin-right:1.75rem !important}.sm\:mb-7{margin-bottom:1.75rem !important}.sm\:ml-7{margin-left:1.75rem !important}.sm\:mt-8{margin-top:2rem !important}.sm\:mr-8{margin-right:2rem !important}.sm\:mb-8{margin-bottom:2rem !important}.sm\:ml-8{margin-left:2rem !important}.sm\:mt-9{margin-top:2.25rem !important}.sm\:mr-9{margin-right:2.25rem !important}.sm\:mb-9{margin-bottom:2.25rem !important}.sm\:ml-9{margin-left:2.25rem !important}.sm\:mt-10{margin-top:2.5rem !important}.sm\:mr-10{margin-right:2.5rem !important}.sm\:mb-10{margin-bottom:2.5rem !important}.sm\:ml-10{margin-left:2.5rem !important}.sm\:mt-11{margin-top:2.75rem !important}.sm\:mr-11{margin-right:2.75rem !important}.sm\:mb-11{margin-bottom:2.75rem !important}.sm\:ml-11{margin-left:2.75rem !important}.sm\:mt-12{margin-top:3rem !important}.sm\:mr-12{margin-right:3rem !important}.sm\:mb-12{margin-bottom:3rem !important}.sm\:ml-12{margin-left:3rem !important}.sm\:mt-13{margin-top:3.25rem !important}.sm\:mr-13{margin-right:3.25rem !important}.sm\:mb-13{margin-bottom:3.25rem !important}.sm\:ml-13{margin-left:3.25rem !important}.sm\:mt-14{margin-top:3.5rem !important}.sm\:mr-14{margin-right:3.5rem !important}.sm\:mb-14{margin-bottom:3.5rem !important}.sm\:ml-14{margin-left:3.5rem !important}.sm\:mt-15{margin-top:3.75rem !important}.sm\:mr-15{margin-right:3.75rem !important}.sm\:mb-15{margin-bottom:3.75rem !important}.sm\:ml-15{margin-left:3.75rem !important}.sm\:mt-16{margin-top:4rem !important}.sm\:mr-16{margin-right:4rem !important}.sm\:mb-16{margin-bottom:4rem !important}.sm\:ml-16{margin-left:4rem !important}.sm\:mt-20{margin-top:5rem !important}.sm\:mr-20{margin-right:5rem !important}.sm\:mb-20{margin-bottom:5rem !important}.sm\:ml-20{margin-left:5rem !important}.sm\:mt-24{margin-top:6rem !important}.sm\:mr-24{margin-right:6rem !important}.sm\:mb-24{margin-bottom:6rem !important}.sm\:ml-24{margin-left:6rem !important}.sm\:mt-28{margin-top:7rem !important}.sm\:mr-28{margin-right:7rem !important}.sm\:mb-28{margin-bottom:7rem !important}.sm\:ml-28{margin-left:7rem !important}.sm\:mt-32{margin-top:8rem !important}.sm\:mr-32{margin-right:8rem !important}.sm\:mb-32{margin-bottom:8rem !important}.sm\:ml-32{margin-left:8rem !important}.sm\:mt-36{margin-top:9rem !important}.sm\:mr-36{margin-right:9rem !important}.sm\:mb-36{margin-bottom:9rem !important}.sm\:ml-36{margin-left:9rem !important}.sm\:mt-40{margin-top:10rem !important}.sm\:mr-40{margin-right:10rem !important}.sm\:mb-40{margin-bottom:10rem !important}.sm\:ml-40{margin-left:10rem !important}.sm\:mt-48{margin-top:12rem !important}.sm\:mr-48{margin-right:12rem !important}.sm\:mb-48{margin-bottom:12rem !important}.sm\:ml-48{margin-left:12rem !important}.sm\:mt-56{margin-top:14rem !important}.sm\:mr-56{margin-right:14rem !important}.sm\:mb-56{margin-bottom:14rem !important}.sm\:ml-56{margin-left:14rem !important}.sm\:mt-60{margin-top:15rem !important}.sm\:mr-60{margin-right:15rem !important}.sm\:mb-60{margin-bottom:15rem !important}.sm\:ml-60{margin-left:15rem !important}.sm\:mt-64{margin-top:16rem !important}.sm\:mr-64{margin-right:16rem !important}.sm\:mb-64{margin-bottom:16rem !important}.sm\:ml-64{margin-left:16rem !important}.sm\:mt-72{margin-top:18rem !important}.sm\:mr-72{margin-right:18rem !important}.sm\:mb-72{margin-bottom:18rem !important}.sm\:ml-72{margin-left:18rem !important}.sm\:mt-80{margin-top:20rem !important}.sm\:mr-80{margin-right:20rem !important}.sm\:mb-80{margin-bottom:20rem !important}.sm\:ml-80{margin-left:20rem !important}.sm\:mt-96{margin-top:24rem !important}.sm\:mr-96{margin-right:24rem !important}.sm\:mb-96{margin-bottom:24rem !important}.sm\:ml-96{margin-left:24rem !important}.sm\:mt-auto{margin-top:auto !important}.sm\:mr-auto{margin-right:auto !important}.sm\:mb-auto{margin-bottom:auto !important}.sm\:ml-auto{margin-left:auto !important}.sm\:mt-px{margin-top:1px !important}.sm\:mr-px{margin-right:1px !important}.sm\:mb-px{margin-bottom:1px !important}.sm\:ml-px{margin-left:1px !important}.sm\:mt-0\.5{margin-top:.125rem !important}.sm\:mr-0\.5{margin-right:.125rem !important}.sm\:mb-0\.5{margin-bottom:.125rem !important}.sm\:ml-0\.5{margin-left:.125rem !important}.sm\:mt-1\.5{margin-top:.375rem !important}.sm\:mr-1\.5{margin-right:.375rem !important}.sm\:mb-1\.5{margin-bottom:.375rem !important}.sm\:ml-1\.5{margin-left:.375rem !important}.sm\:mt-2\.5{margin-top:.625rem !important}.sm\:mr-2\.5{margin-right:.625rem !important}.sm\:mb-2\.5{margin-bottom:.625rem !important}.sm\:ml-2\.5{margin-left:.625rem !important}.sm\:mt-3\.5{margin-top:.875rem !important}.sm\:mr-3\.5{margin-right:.875rem !important}.sm\:mb-3\.5{margin-bottom:.875rem !important}.sm\:ml-3\.5{margin-left:.875rem !important}.sm\:mt-1\/2{margin-top:50% !important}.sm\:mr-1\/2{margin-right:50% !important}.sm\:mb-1\/2{margin-bottom:50% !important}.sm\:ml-1\/2{margin-left:50% !important}.sm\:mt-1\/3{margin-top:33.333333% !important}.sm\:mr-1\/3{margin-right:33.333333% !important}.sm\:mb-1\/3{margin-bottom:33.333333% !important}.sm\:ml-1\/3{margin-left:33.333333% !important}.sm\:mt-2\/3{margin-top:66.666667% !important}.sm\:mr-2\/3{margin-right:66.666667% !important}.sm\:mb-2\/3{margin-bottom:66.666667% !important}.sm\:ml-2\/3{margin-left:66.666667% !important}.sm\:mt-1\/4{margin-top:25% !important}.sm\:mr-1\/4{margin-right:25% !important}.sm\:mb-1\/4{margin-bottom:25% !important}.sm\:ml-1\/4{margin-left:25% !important}.sm\:mt-2\/4{margin-top:50% !important}.sm\:mr-2\/4{margin-right:50% !important}.sm\:mb-2\/4{margin-bottom:50% !important}.sm\:ml-2\/4{margin-left:50% !important}.sm\:mt-3\/4{margin-top:75% !important}.sm\:mr-3\/4{margin-right:75% !important}.sm\:mb-3\/4{margin-bottom:75% !important}.sm\:ml-3\/4{margin-left:75% !important}.sm\:mt-1\/5{margin-top:20% !important}.sm\:mr-1\/5{margin-right:20% !important}.sm\:mb-1\/5{margin-bottom:20% !important}.sm\:ml-1\/5{margin-left:20% !important}.sm\:mt-2\/5{margin-top:40% !important}.sm\:mr-2\/5{margin-right:40% !important}.sm\:mb-2\/5{margin-bottom:40% !important}.sm\:ml-2\/5{margin-left:40% !important}.sm\:mt-3\/5{margin-top:60% !important}.sm\:mr-3\/5{margin-right:60% !important}.sm\:mb-3\/5{margin-bottom:60% !important}.sm\:ml-3\/5{margin-left:60% !important}.sm\:mt-4\/5{margin-top:80% !important}.sm\:mr-4\/5{margin-right:80% !important}.sm\:mb-4\/5{margin-bottom:80% !important}.sm\:ml-4\/5{margin-left:80% !important}.sm\:mt-1\/6{margin-top:16.666667% !important}.sm\:mr-1\/6{margin-right:16.666667% !important}.sm\:mb-1\/6{margin-bottom:16.666667% !important}.sm\:ml-1\/6{margin-left:16.666667% !important}.sm\:mt-2\/6{margin-top:33.333333% !important}.sm\:mr-2\/6{margin-right:33.333333% !important}.sm\:mb-2\/6{margin-bottom:33.333333% !important}.sm\:ml-2\/6{margin-left:33.333333% !important}.sm\:mt-3\/6{margin-top:50% !important}.sm\:mr-3\/6{margin-right:50% !important}.sm\:mb-3\/6{margin-bottom:50% !important}.sm\:ml-3\/6{margin-left:50% !important}.sm\:mt-4\/6{margin-top:66.666667% !important}.sm\:mr-4\/6{margin-right:66.666667% !important}.sm\:mb-4\/6{margin-bottom:66.666667% !important}.sm\:ml-4\/6{margin-left:66.666667% !important}.sm\:mt-5\/6{margin-top:83.333333% !important}.sm\:mr-5\/6{margin-right:83.333333% !important}.sm\:mb-5\/6{margin-bottom:83.333333% !important}.sm\:ml-5\/6{margin-left:83.333333% !important}.sm\:mt-1\/12{margin-top:8.333333% !important}.sm\:mr-1\/12{margin-right:8.333333% !important}.sm\:mb-1\/12{margin-bottom:8.333333% !important}.sm\:ml-1\/12{margin-left:8.333333% !important}.sm\:mt-2\/12{margin-top:16.666667% !important}.sm\:mr-2\/12{margin-right:16.666667% !important}.sm\:mb-2\/12{margin-bottom:16.666667% !important}.sm\:ml-2\/12{margin-left:16.666667% !important}.sm\:mt-3\/12{margin-top:25% !important}.sm\:mr-3\/12{margin-right:25% !important}.sm\:mb-3\/12{margin-bottom:25% !important}.sm\:ml-3\/12{margin-left:25% !important}.sm\:mt-4\/12{margin-top:33.333333% !important}.sm\:mr-4\/12{margin-right:33.333333% !important}.sm\:mb-4\/12{margin-bottom:33.333333% !important}.sm\:ml-4\/12{margin-left:33.333333% !important}.sm\:mt-5\/12{margin-top:41.666667% !important}.sm\:mr-5\/12{margin-right:41.666667% !important}.sm\:mb-5\/12{margin-bottom:41.666667% !important}.sm\:ml-5\/12{margin-left:41.666667% !important}.sm\:mt-6\/12{margin-top:50% !important}.sm\:mr-6\/12{margin-right:50% !important}.sm\:mb-6\/12{margin-bottom:50% !important}.sm\:ml-6\/12{margin-left:50% !important}.sm\:mt-7\/12{margin-top:58.333333% !important}.sm\:mr-7\/12{margin-right:58.333333% !important}.sm\:mb-7\/12{margin-bottom:58.333333% !important}.sm\:ml-7\/12{margin-left:58.333333% !important}.sm\:mt-8\/12{margin-top:66.666667% !important}.sm\:mr-8\/12{margin-right:66.666667% !important}.sm\:mb-8\/12{margin-bottom:66.666667% !important}.sm\:ml-8\/12{margin-left:66.666667% !important}.sm\:mt-9\/12{margin-top:75% !important}.sm\:mr-9\/12{margin-right:75% !important}.sm\:mb-9\/12{margin-bottom:75% !important}.sm\:ml-9\/12{margin-left:75% !important}.sm\:mt-10\/12{margin-top:83.333333% !important}.sm\:mr-10\/12{margin-right:83.333333% !important}.sm\:mb-10\/12{margin-bottom:83.333333% !important}.sm\:ml-10\/12{margin-left:83.333333% !important}.sm\:mt-11\/12{margin-top:91.666667% !important}.sm\:mr-11\/12{margin-right:91.666667% !important}.sm\:mb-11\/12{margin-bottom:91.666667% !important}.sm\:ml-11\/12{margin-left:91.666667% !important}.sm\:mt-full{margin-top:100% !important}.sm\:mr-full{margin-right:100% !important}.sm\:mb-full{margin-bottom:100% !important}.sm\:ml-full{margin-left:100% !important}.sm\:-mt-1{margin-top:-0.25rem !important}.sm\:-mr-1{margin-right:-0.25rem !important}.sm\:-mb-1{margin-bottom:-0.25rem !important}.sm\:-ml-1{margin-left:-0.25rem !important}.sm\:-mt-2{margin-top:-0.5rem !important}.sm\:-mr-2{margin-right:-0.5rem !important}.sm\:-mb-2{margin-bottom:-0.5rem !important}.sm\:-ml-2{margin-left:-0.5rem !important}.sm\:-mt-3{margin-top:-0.75rem !important}.sm\:-mr-3{margin-right:-0.75rem !important}.sm\:-mb-3{margin-bottom:-0.75rem !important}.sm\:-ml-3{margin-left:-0.75rem !important}.sm\:-mt-4{margin-top:-1rem !important}.sm\:-mr-4{margin-right:-1rem !important}.sm\:-mb-4{margin-bottom:-1rem !important}.sm\:-ml-4{margin-left:-1rem !important}.sm\:-mt-5{margin-top:-1.25rem !important}.sm\:-mr-5{margin-right:-1.25rem !important}.sm\:-mb-5{margin-bottom:-1.25rem !important}.sm\:-ml-5{margin-left:-1.25rem !important}.sm\:-mt-6{margin-top:-1.5rem !important}.sm\:-mr-6{margin-right:-1.5rem !important}.sm\:-mb-6{margin-bottom:-1.5rem !important}.sm\:-ml-6{margin-left:-1.5rem !important}.sm\:-mt-7{margin-top:-1.75rem !important}.sm\:-mr-7{margin-right:-1.75rem !important}.sm\:-mb-7{margin-bottom:-1.75rem !important}.sm\:-ml-7{margin-left:-1.75rem !important}.sm\:-mt-8{margin-top:-2rem !important}.sm\:-mr-8{margin-right:-2rem !important}.sm\:-mb-8{margin-bottom:-2rem !important}.sm\:-ml-8{margin-left:-2rem !important}.sm\:-mt-9{margin-top:-2.25rem !important}.sm\:-mr-9{margin-right:-2.25rem !important}.sm\:-mb-9{margin-bottom:-2.25rem !important}.sm\:-ml-9{margin-left:-2.25rem !important}.sm\:-mt-10{margin-top:-2.5rem !important}.sm\:-mr-10{margin-right:-2.5rem !important}.sm\:-mb-10{margin-bottom:-2.5rem !important}.sm\:-ml-10{margin-left:-2.5rem !important}.sm\:-mt-11{margin-top:-2.75rem !important}.sm\:-mr-11{margin-right:-2.75rem !important}.sm\:-mb-11{margin-bottom:-2.75rem !important}.sm\:-ml-11{margin-left:-2.75rem !important}.sm\:-mt-12{margin-top:-3rem !important}.sm\:-mr-12{margin-right:-3rem !important}.sm\:-mb-12{margin-bottom:-3rem !important}.sm\:-ml-12{margin-left:-3rem !important}.sm\:-mt-13{margin-top:-3.25rem !important}.sm\:-mr-13{margin-right:-3.25rem !important}.sm\:-mb-13{margin-bottom:-3.25rem !important}.sm\:-ml-13{margin-left:-3.25rem !important}.sm\:-mt-14{margin-top:-3.5rem !important}.sm\:-mr-14{margin-right:-3.5rem !important}.sm\:-mb-14{margin-bottom:-3.5rem !important}.sm\:-ml-14{margin-left:-3.5rem !important}.sm\:-mt-15{margin-top:-3.75rem !important}.sm\:-mr-15{margin-right:-3.75rem !important}.sm\:-mb-15{margin-bottom:-3.75rem !important}.sm\:-ml-15{margin-left:-3.75rem !important}.sm\:-mt-16{margin-top:-4rem !important}.sm\:-mr-16{margin-right:-4rem !important}.sm\:-mb-16{margin-bottom:-4rem !important}.sm\:-ml-16{margin-left:-4rem !important}.sm\:-mt-20{margin-top:-5rem !important}.sm\:-mr-20{margin-right:-5rem !important}.sm\:-mb-20{margin-bottom:-5rem !important}.sm\:-ml-20{margin-left:-5rem !important}.sm\:-mt-24{margin-top:-6rem !important}.sm\:-mr-24{margin-right:-6rem !important}.sm\:-mb-24{margin-bottom:-6rem !important}.sm\:-ml-24{margin-left:-6rem !important}.sm\:-mt-28{margin-top:-7rem !important}.sm\:-mr-28{margin-right:-7rem !important}.sm\:-mb-28{margin-bottom:-7rem !important}.sm\:-ml-28{margin-left:-7rem !important}.sm\:-mt-32{margin-top:-8rem !important}.sm\:-mr-32{margin-right:-8rem !important}.sm\:-mb-32{margin-bottom:-8rem !important}.sm\:-ml-32{margin-left:-8rem !important}.sm\:-mt-36{margin-top:-9rem !important}.sm\:-mr-36{margin-right:-9rem !important}.sm\:-mb-36{margin-bottom:-9rem !important}.sm\:-ml-36{margin-left:-9rem !important}.sm\:-mt-40{margin-top:-10rem !important}.sm\:-mr-40{margin-right:-10rem !important}.sm\:-mb-40{margin-bottom:-10rem !important}.sm\:-ml-40{margin-left:-10rem !important}.sm\:-mt-48{margin-top:-12rem !important}.sm\:-mr-48{margin-right:-12rem !important}.sm\:-mb-48{margin-bottom:-12rem !important}.sm\:-ml-48{margin-left:-12rem !important}.sm\:-mt-56{margin-top:-14rem !important}.sm\:-mr-56{margin-right:-14rem !important}.sm\:-mb-56{margin-bottom:-14rem !important}.sm\:-ml-56{margin-left:-14rem !important}.sm\:-mt-60{margin-top:-15rem !important}.sm\:-mr-60{margin-right:-15rem !important}.sm\:-mb-60{margin-bottom:-15rem !important}.sm\:-ml-60{margin-left:-15rem !important}.sm\:-mt-64{margin-top:-16rem !important}.sm\:-mr-64{margin-right:-16rem !important}.sm\:-mb-64{margin-bottom:-16rem !important}.sm\:-ml-64{margin-left:-16rem !important}.sm\:-mt-72{margin-top:-18rem !important}.sm\:-mr-72{margin-right:-18rem !important}.sm\:-mb-72{margin-bottom:-18rem !important}.sm\:-ml-72{margin-left:-18rem !important}.sm\:-mt-80{margin-top:-20rem !important}.sm\:-mr-80{margin-right:-20rem !important}.sm\:-mb-80{margin-bottom:-20rem !important}.sm\:-ml-80{margin-left:-20rem !important}.sm\:-mt-96{margin-top:-24rem !important}.sm\:-mr-96{margin-right:-24rem !important}.sm\:-mb-96{margin-bottom:-24rem !important}.sm\:-ml-96{margin-left:-24rem !important}.sm\:-mt-px{margin-top:-1px !important}.sm\:-mr-px{margin-right:-1px !important}.sm\:-mb-px{margin-bottom:-1px !important}.sm\:-ml-px{margin-left:-1px !important}.sm\:-mt-0\.5{margin-top:-0.125rem !important}.sm\:-mr-0\.5{margin-right:-0.125rem !important}.sm\:-mb-0\.5{margin-bottom:-0.125rem !important}.sm\:-ml-0\.5{margin-left:-0.125rem !important}.sm\:-mt-1\.5{margin-top:-0.375rem !important}.sm\:-mr-1\.5{margin-right:-0.375rem !important}.sm\:-mb-1\.5{margin-bottom:-0.375rem !important}.sm\:-ml-1\.5{margin-left:-0.375rem !important}.sm\:-mt-2\.5{margin-top:-0.625rem !important}.sm\:-mr-2\.5{margin-right:-0.625rem !important}.sm\:-mb-2\.5{margin-bottom:-0.625rem !important}.sm\:-ml-2\.5{margin-left:-0.625rem !important}.sm\:-mt-3\.5{margin-top:-0.875rem !important}.sm\:-mr-3\.5{margin-right:-0.875rem !important}.sm\:-mb-3\.5{margin-bottom:-0.875rem !important}.sm\:-ml-3\.5{margin-left:-0.875rem !important}.sm\:-mt-1\/2{margin-top:-50% !important}.sm\:-mr-1\/2{margin-right:-50% !important}.sm\:-mb-1\/2{margin-bottom:-50% !important}.sm\:-ml-1\/2{margin-left:-50% !important}.sm\:-mt-1\/3{margin-top:-33.33333% !important}.sm\:-mr-1\/3{margin-right:-33.33333% !important}.sm\:-mb-1\/3{margin-bottom:-33.33333% !important}.sm\:-ml-1\/3{margin-left:-33.33333% !important}.sm\:-mt-2\/3{margin-top:-66.66667% !important}.sm\:-mr-2\/3{margin-right:-66.66667% !important}.sm\:-mb-2\/3{margin-bottom:-66.66667% !important}.sm\:-ml-2\/3{margin-left:-66.66667% !important}.sm\:-mt-1\/4{margin-top:-25% !important}.sm\:-mr-1\/4{margin-right:-25% !important}.sm\:-mb-1\/4{margin-bottom:-25% !important}.sm\:-ml-1\/4{margin-left:-25% !important}.sm\:-mt-2\/4{margin-top:-50% !important}.sm\:-mr-2\/4{margin-right:-50% !important}.sm\:-mb-2\/4{margin-bottom:-50% !important}.sm\:-ml-2\/4{margin-left:-50% !important}.sm\:-mt-3\/4{margin-top:-75% !important}.sm\:-mr-3\/4{margin-right:-75% !important}.sm\:-mb-3\/4{margin-bottom:-75% !important}.sm\:-ml-3\/4{margin-left:-75% !important}.sm\:-mt-1\/5{margin-top:-20% !important}.sm\:-mr-1\/5{margin-right:-20% !important}.sm\:-mb-1\/5{margin-bottom:-20% !important}.sm\:-ml-1\/5{margin-left:-20% !important}.sm\:-mt-2\/5{margin-top:-40% !important}.sm\:-mr-2\/5{margin-right:-40% !important}.sm\:-mb-2\/5{margin-bottom:-40% !important}.sm\:-ml-2\/5{margin-left:-40% !important}.sm\:-mt-3\/5{margin-top:-60% !important}.sm\:-mr-3\/5{margin-right:-60% !important}.sm\:-mb-3\/5{margin-bottom:-60% !important}.sm\:-ml-3\/5{margin-left:-60% !important}.sm\:-mt-4\/5{margin-top:-80% !important}.sm\:-mr-4\/5{margin-right:-80% !important}.sm\:-mb-4\/5{margin-bottom:-80% !important}.sm\:-ml-4\/5{margin-left:-80% !important}.sm\:-mt-1\/6{margin-top:-16.66667% !important}.sm\:-mr-1\/6{margin-right:-16.66667% !important}.sm\:-mb-1\/6{margin-bottom:-16.66667% !important}.sm\:-ml-1\/6{margin-left:-16.66667% !important}.sm\:-mt-2\/6{margin-top:-33.33333% !important}.sm\:-mr-2\/6{margin-right:-33.33333% !important}.sm\:-mb-2\/6{margin-bottom:-33.33333% !important}.sm\:-ml-2\/6{margin-left:-33.33333% !important}.sm\:-mt-3\/6{margin-top:-50% !important}.sm\:-mr-3\/6{margin-right:-50% !important}.sm\:-mb-3\/6{margin-bottom:-50% !important}.sm\:-ml-3\/6{margin-left:-50% !important}.sm\:-mt-4\/6{margin-top:-66.66667% !important}.sm\:-mr-4\/6{margin-right:-66.66667% !important}.sm\:-mb-4\/6{margin-bottom:-66.66667% !important}.sm\:-ml-4\/6{margin-left:-66.66667% !important}.sm\:-mt-5\/6{margin-top:-83.33333% !important}.sm\:-mr-5\/6{margin-right:-83.33333% !important}.sm\:-mb-5\/6{margin-bottom:-83.33333% !important}.sm\:-ml-5\/6{margin-left:-83.33333% !important}.sm\:-mt-1\/12{margin-top:-8.33333% !important}.sm\:-mr-1\/12{margin-right:-8.33333% !important}.sm\:-mb-1\/12{margin-bottom:-8.33333% !important}.sm\:-ml-1\/12{margin-left:-8.33333% !important}.sm\:-mt-2\/12{margin-top:-16.66667% !important}.sm\:-mr-2\/12{margin-right:-16.66667% !important}.sm\:-mb-2\/12{margin-bottom:-16.66667% !important}.sm\:-ml-2\/12{margin-left:-16.66667% !important}.sm\:-mt-3\/12{margin-top:-25% !important}.sm\:-mr-3\/12{margin-right:-25% !important}.sm\:-mb-3\/12{margin-bottom:-25% !important}.sm\:-ml-3\/12{margin-left:-25% !important}.sm\:-mt-4\/12{margin-top:-33.33333% !important}.sm\:-mr-4\/12{margin-right:-33.33333% !important}.sm\:-mb-4\/12{margin-bottom:-33.33333% !important}.sm\:-ml-4\/12{margin-left:-33.33333% !important}.sm\:-mt-5\/12{margin-top:-41.66667% !important}.sm\:-mr-5\/12{margin-right:-41.66667% !important}.sm\:-mb-5\/12{margin-bottom:-41.66667% !important}.sm\:-ml-5\/12{margin-left:-41.66667% !important}.sm\:-mt-6\/12{margin-top:-50% !important}.sm\:-mr-6\/12{margin-right:-50% !important}.sm\:-mb-6\/12{margin-bottom:-50% !important}.sm\:-ml-6\/12{margin-left:-50% !important}.sm\:-mt-7\/12{margin-top:-58.33333% !important}.sm\:-mr-7\/12{margin-right:-58.33333% !important}.sm\:-mb-7\/12{margin-bottom:-58.33333% !important}.sm\:-ml-7\/12{margin-left:-58.33333% !important}.sm\:-mt-8\/12{margin-top:-66.66667% !important}.sm\:-mr-8\/12{margin-right:-66.66667% !important}.sm\:-mb-8\/12{margin-bottom:-66.66667% !important}.sm\:-ml-8\/12{margin-left:-66.66667% !important}.sm\:-mt-9\/12{margin-top:-75% !important}.sm\:-mr-9\/12{margin-right:-75% !important}.sm\:-mb-9\/12{margin-bottom:-75% !important}.sm\:-ml-9\/12{margin-left:-75% !important}.sm\:-mt-10\/12{margin-top:-83.33333% !important}.sm\:-mr-10\/12{margin-right:-83.33333% !important}.sm\:-mb-10\/12{margin-bottom:-83.33333% !important}.sm\:-ml-10\/12{margin-left:-83.33333% !important}.sm\:-mt-11\/12{margin-top:-91.66667% !important}.sm\:-mr-11\/12{margin-right:-91.66667% !important}.sm\:-mb-11\/12{margin-bottom:-91.66667% !important}.sm\:-ml-11\/12{margin-left:-91.66667% !important}.sm\:-mt-full{margin-top:-100% !important}.sm\:-mr-full{margin-right:-100% !important}.sm\:-mb-full{margin-bottom:-100% !important}.sm\:-ml-full{margin-left:-100% !important}[dir='ltr'] .sm\:ltr\:m-0{margin:0 !important}[dir='ltr'] .sm\:ltr\:m-1{margin:.25rem !important}[dir='ltr'] .sm\:ltr\:m-2{margin:.5rem !important}[dir='ltr'] .sm\:ltr\:m-3{margin:.75rem !important}[dir='ltr'] .sm\:ltr\:m-4{margin:1rem !important}[dir='ltr'] .sm\:ltr\:m-5{margin:1.25rem !important}[dir='ltr'] .sm\:ltr\:m-6{margin:1.5rem !important}[dir='ltr'] .sm\:ltr\:m-7{margin:1.75rem !important}[dir='ltr'] .sm\:ltr\:m-8{margin:2rem !important}[dir='ltr'] .sm\:ltr\:m-9{margin:2.25rem !important}[dir='ltr'] .sm\:ltr\:m-10{margin:2.5rem !important}[dir='ltr'] .sm\:ltr\:m-11{margin:2.75rem !important}[dir='ltr'] .sm\:ltr\:m-12{margin:3rem !important}[dir='ltr'] .sm\:ltr\:m-13{margin:3.25rem !important}[dir='ltr'] .sm\:ltr\:m-14{margin:3.5rem !important}[dir='ltr'] .sm\:ltr\:m-15{margin:3.75rem !important}[dir='ltr'] .sm\:ltr\:m-16{margin:4rem !important}[dir='ltr'] .sm\:ltr\:m-20{margin:5rem !important}[dir='ltr'] .sm\:ltr\:m-24{margin:6rem !important}[dir='ltr'] .sm\:ltr\:m-28{margin:7rem !important}[dir='ltr'] .sm\:ltr\:m-32{margin:8rem !important}[dir='ltr'] .sm\:ltr\:m-36{margin:9rem !important}[dir='ltr'] .sm\:ltr\:m-40{margin:10rem !important}[dir='ltr'] .sm\:ltr\:m-48{margin:12rem !important}[dir='ltr'] .sm\:ltr\:m-56{margin:14rem !important}[dir='ltr'] .sm\:ltr\:m-60{margin:15rem !important}[dir='ltr'] .sm\:ltr\:m-64{margin:16rem !important}[dir='ltr'] .sm\:ltr\:m-72{margin:18rem !important}[dir='ltr'] .sm\:ltr\:m-80{margin:20rem !important}[dir='ltr'] .sm\:ltr\:m-96{margin:24rem !important}[dir='ltr'] .sm\:ltr\:m-auto{margin:auto !important}[dir='ltr'] .sm\:ltr\:m-px{margin:1px !important}[dir='ltr'] .sm\:ltr\:m-0\.5{margin:.125rem !important}[dir='ltr'] .sm\:ltr\:m-1\.5{margin:.375rem !important}[dir='ltr'] .sm\:ltr\:m-2\.5{margin:.625rem !important}[dir='ltr'] .sm\:ltr\:m-3\.5{margin:.875rem !important}[dir='ltr'] .sm\:ltr\:m-1\/2{margin:50% !important}[dir='ltr'] .sm\:ltr\:m-1\/3{margin:33.333333% !important}[dir='ltr'] .sm\:ltr\:m-2\/3{margin:66.666667% !important}[dir='ltr'] .sm\:ltr\:m-1\/4{margin:25% !important}[dir='ltr'] .sm\:ltr\:m-2\/4{margin:50% !important}[dir='ltr'] .sm\:ltr\:m-3\/4{margin:75% !important}[dir='ltr'] .sm\:ltr\:m-1\/5{margin:20% !important}[dir='ltr'] .sm\:ltr\:m-2\/5{margin:40% !important}[dir='ltr'] .sm\:ltr\:m-3\/5{margin:60% !important}[dir='ltr'] .sm\:ltr\:m-4\/5{margin:80% !important}[dir='ltr'] .sm\:ltr\:m-1\/6{margin:16.666667% !important}[dir='ltr'] .sm\:ltr\:m-2\/6{margin:33.333333% !important}[dir='ltr'] .sm\:ltr\:m-3\/6{margin:50% !important}[dir='ltr'] .sm\:ltr\:m-4\/6{margin:66.666667% !important}[dir='ltr'] .sm\:ltr\:m-5\/6{margin:83.333333% !important}[dir='ltr'] .sm\:ltr\:m-1\/12{margin:8.333333% !important}[dir='ltr'] .sm\:ltr\:m-2\/12{margin:16.666667% !important}[dir='ltr'] .sm\:ltr\:m-3\/12{margin:25% !important}[dir='ltr'] .sm\:ltr\:m-4\/12{margin:33.333333% !important}[dir='ltr'] .sm\:ltr\:m-5\/12{margin:41.666667% !important}[dir='ltr'] .sm\:ltr\:m-6\/12{margin:50% !important}[dir='ltr'] .sm\:ltr\:m-7\/12{margin:58.333333% !important}[dir='ltr'] .sm\:ltr\:m-8\/12{margin:66.666667% !important}[dir='ltr'] .sm\:ltr\:m-9\/12{margin:75% !important}[dir='ltr'] .sm\:ltr\:m-10\/12{margin:83.333333% !important}[dir='ltr'] .sm\:ltr\:m-11\/12{margin:91.666667% !important}[dir='ltr'] .sm\:ltr\:m-full{margin:100% !important}[dir='ltr'] .sm\:ltr\:-m-1{margin:-0.25rem !important}[dir='ltr'] .sm\:ltr\:-m-2{margin:-0.5rem !important}[dir='ltr'] .sm\:ltr\:-m-3{margin:-0.75rem !important}[dir='ltr'] .sm\:ltr\:-m-4{margin:-1rem !important}[dir='ltr'] .sm\:ltr\:-m-5{margin:-1.25rem !important}[dir='ltr'] .sm\:ltr\:-m-6{margin:-1.5rem !important}[dir='ltr'] .sm\:ltr\:-m-7{margin:-1.75rem !important}[dir='ltr'] .sm\:ltr\:-m-8{margin:-2rem !important}[dir='ltr'] .sm\:ltr\:-m-9{margin:-2.25rem !important}[dir='ltr'] .sm\:ltr\:-m-10{margin:-2.5rem !important}[dir='ltr'] .sm\:ltr\:-m-11{margin:-2.75rem !important}[dir='ltr'] .sm\:ltr\:-m-12{margin:-3rem !important}[dir='ltr'] .sm\:ltr\:-m-13{margin:-3.25rem !important}[dir='ltr'] .sm\:ltr\:-m-14{margin:-3.5rem !important}[dir='ltr'] .sm\:ltr\:-m-15{margin:-3.75rem !important}[dir='ltr'] .sm\:ltr\:-m-16{margin:-4rem !important}[dir='ltr'] .sm\:ltr\:-m-20{margin:-5rem !important}[dir='ltr'] .sm\:ltr\:-m-24{margin:-6rem !important}[dir='ltr'] .sm\:ltr\:-m-28{margin:-7rem !important}[dir='ltr'] .sm\:ltr\:-m-32{margin:-8rem !important}[dir='ltr'] .sm\:ltr\:-m-36{margin:-9rem !important}[dir='ltr'] .sm\:ltr\:-m-40{margin:-10rem !important}[dir='ltr'] .sm\:ltr\:-m-48{margin:-12rem !important}[dir='ltr'] .sm\:ltr\:-m-56{margin:-14rem !important}[dir='ltr'] .sm\:ltr\:-m-60{margin:-15rem !important}[dir='ltr'] .sm\:ltr\:-m-64{margin:-16rem !important}[dir='ltr'] .sm\:ltr\:-m-72{margin:-18rem !important}[dir='ltr'] .sm\:ltr\:-m-80{margin:-20rem !important}[dir='ltr'] .sm\:ltr\:-m-96{margin:-24rem !important}[dir='ltr'] .sm\:ltr\:-m-px{margin:-1px !important}[dir='ltr'] .sm\:ltr\:-m-0\.5{margin:-0.125rem !important}[dir='ltr'] .sm\:ltr\:-m-1\.5{margin:-0.375rem !important}[dir='ltr'] .sm\:ltr\:-m-2\.5{margin:-0.625rem !important}[dir='ltr'] .sm\:ltr\:-m-3\.5{margin:-0.875rem !important}[dir='ltr'] .sm\:ltr\:-m-1\/2{margin:-50% !important}[dir='ltr'] .sm\:ltr\:-m-1\/3{margin:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-m-2\/3{margin:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-m-1\/4{margin:-25% !important}[dir='ltr'] .sm\:ltr\:-m-2\/4{margin:-50% !important}[dir='ltr'] .sm\:ltr\:-m-3\/4{margin:-75% !important}[dir='ltr'] .sm\:ltr\:-m-1\/5{margin:-20% !important}[dir='ltr'] .sm\:ltr\:-m-2\/5{margin:-40% !important}[dir='ltr'] .sm\:ltr\:-m-3\/5{margin:-60% !important}[dir='ltr'] .sm\:ltr\:-m-4\/5{margin:-80% !important}[dir='ltr'] .sm\:ltr\:-m-1\/6{margin:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-m-2\/6{margin:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-m-3\/6{margin:-50% !important}[dir='ltr'] .sm\:ltr\:-m-4\/6{margin:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-m-5\/6{margin:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-m-1\/12{margin:-8.33333% !important}[dir='ltr'] .sm\:ltr\:-m-2\/12{margin:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-m-3\/12{margin:-25% !important}[dir='ltr'] .sm\:ltr\:-m-4\/12{margin:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-m-5\/12{margin:-41.66667% !important}[dir='ltr'] .sm\:ltr\:-m-6\/12{margin:-50% !important}[dir='ltr'] .sm\:ltr\:-m-7\/12{margin:-58.33333% !important}[dir='ltr'] .sm\:ltr\:-m-8\/12{margin:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-m-9\/12{margin:-75% !important}[dir='ltr'] .sm\:ltr\:-m-10\/12{margin:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-m-11\/12{margin:-91.66667% !important}[dir='ltr'] .sm\:ltr\:-m-full{margin:-100% !important}[dir='ltr'] .sm\:ltr\:my-0{margin-top:0 !important;margin-bottom:0 !important}[dir='ltr'] .sm\:ltr\:mx-0{margin-left:0 !important;margin-right:0 !important}[dir='ltr'] .sm\:ltr\:my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}[dir='ltr'] .sm\:ltr\:mx-1{margin-left:.25rem !important;margin-right:.25rem !important}[dir='ltr'] .sm\:ltr\:my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}[dir='ltr'] .sm\:ltr\:mx-2{margin-left:.5rem !important;margin-right:.5rem !important}[dir='ltr'] .sm\:ltr\:my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}[dir='ltr'] .sm\:ltr\:mx-3{margin-left:.75rem !important;margin-right:.75rem !important}[dir='ltr'] .sm\:ltr\:my-4{margin-top:1rem !important;margin-bottom:1rem !important}[dir='ltr'] .sm\:ltr\:mx-4{margin-left:1rem !important;margin-right:1rem !important}[dir='ltr'] .sm\:ltr\:my-5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}[dir='ltr'] .sm\:ltr\:mx-5{margin-left:1.25rem !important;margin-right:1.25rem !important}[dir='ltr'] .sm\:ltr\:my-6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}[dir='ltr'] .sm\:ltr\:mx-6{margin-left:1.5rem !important;margin-right:1.5rem !important}[dir='ltr'] .sm\:ltr\:my-7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}[dir='ltr'] .sm\:ltr\:mx-7{margin-left:1.75rem !important;margin-right:1.75rem !important}[dir='ltr'] .sm\:ltr\:my-8{margin-top:2rem !important;margin-bottom:2rem !important}[dir='ltr'] .sm\:ltr\:mx-8{margin-left:2rem !important;margin-right:2rem !important}[dir='ltr'] .sm\:ltr\:my-9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}[dir='ltr'] .sm\:ltr\:mx-9{margin-left:2.25rem !important;margin-right:2.25rem !important}[dir='ltr'] .sm\:ltr\:my-10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}[dir='ltr'] .sm\:ltr\:mx-10{margin-left:2.5rem !important;margin-right:2.5rem !important}[dir='ltr'] .sm\:ltr\:my-11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}[dir='ltr'] .sm\:ltr\:mx-11{margin-left:2.75rem !important;margin-right:2.75rem !important}[dir='ltr'] .sm\:ltr\:my-12{margin-top:3rem !important;margin-bottom:3rem !important}[dir='ltr'] .sm\:ltr\:mx-12{margin-left:3rem !important;margin-right:3rem !important}[dir='ltr'] .sm\:ltr\:my-13{margin-top:3.25rem !important;margin-bottom:3.25rem !important}[dir='ltr'] .sm\:ltr\:mx-13{margin-left:3.25rem !important;margin-right:3.25rem !important}[dir='ltr'] .sm\:ltr\:my-14{margin-top:3.5rem !important;margin-bottom:3.5rem !important}[dir='ltr'] .sm\:ltr\:mx-14{margin-left:3.5rem !important;margin-right:3.5rem !important}[dir='ltr'] .sm\:ltr\:my-15{margin-top:3.75rem !important;margin-bottom:3.75rem !important}[dir='ltr'] .sm\:ltr\:mx-15{margin-left:3.75rem !important;margin-right:3.75rem !important}[dir='ltr'] .sm\:ltr\:my-16{margin-top:4rem !important;margin-bottom:4rem !important}[dir='ltr'] .sm\:ltr\:mx-16{margin-left:4rem !important;margin-right:4rem !important}[dir='ltr'] .sm\:ltr\:my-20{margin-top:5rem !important;margin-bottom:5rem !important}[dir='ltr'] .sm\:ltr\:mx-20{margin-left:5rem !important;margin-right:5rem !important}[dir='ltr'] .sm\:ltr\:my-24{margin-top:6rem !important;margin-bottom:6rem !important}[dir='ltr'] .sm\:ltr\:mx-24{margin-left:6rem !important;margin-right:6rem !important}[dir='ltr'] .sm\:ltr\:my-28{margin-top:7rem !important;margin-bottom:7rem !important}[dir='ltr'] .sm\:ltr\:mx-28{margin-left:7rem !important;margin-right:7rem !important}[dir='ltr'] .sm\:ltr\:my-32{margin-top:8rem !important;margin-bottom:8rem !important}[dir='ltr'] .sm\:ltr\:mx-32{margin-left:8rem !important;margin-right:8rem !important}[dir='ltr'] .sm\:ltr\:my-36{margin-top:9rem !important;margin-bottom:9rem !important}[dir='ltr'] .sm\:ltr\:mx-36{margin-left:9rem !important;margin-right:9rem !important}[dir='ltr'] .sm\:ltr\:my-40{margin-top:10rem !important;margin-bottom:10rem !important}[dir='ltr'] .sm\:ltr\:mx-40{margin-left:10rem !important;margin-right:10rem !important}[dir='ltr'] .sm\:ltr\:my-48{margin-top:12rem !important;margin-bottom:12rem !important}[dir='ltr'] .sm\:ltr\:mx-48{margin-left:12rem !important;margin-right:12rem !important}[dir='ltr'] .sm\:ltr\:my-56{margin-top:14rem !important;margin-bottom:14rem !important}[dir='ltr'] .sm\:ltr\:mx-56{margin-left:14rem !important;margin-right:14rem !important}[dir='ltr'] .sm\:ltr\:my-60{margin-top:15rem !important;margin-bottom:15rem !important}[dir='ltr'] .sm\:ltr\:mx-60{margin-left:15rem !important;margin-right:15rem !important}[dir='ltr'] .sm\:ltr\:my-64{margin-top:16rem !important;margin-bottom:16rem !important}[dir='ltr'] .sm\:ltr\:mx-64{margin-left:16rem !important;margin-right:16rem !important}[dir='ltr'] .sm\:ltr\:my-72{margin-top:18rem !important;margin-bottom:18rem !important}[dir='ltr'] .sm\:ltr\:mx-72{margin-left:18rem !important;margin-right:18rem !important}[dir='ltr'] .sm\:ltr\:my-80{margin-top:20rem !important;margin-bottom:20rem !important}[dir='ltr'] .sm\:ltr\:mx-80{margin-left:20rem !important;margin-right:20rem !important}[dir='ltr'] .sm\:ltr\:my-96{margin-top:24rem !important;margin-bottom:24rem !important}[dir='ltr'] .sm\:ltr\:mx-96{margin-left:24rem !important;margin-right:24rem !important}[dir='ltr'] .sm\:ltr\:my-auto{margin-top:auto !important;margin-bottom:auto !important}[dir='ltr'] .sm\:ltr\:mx-auto{margin-left:auto !important;margin-right:auto !important}[dir='ltr'] .sm\:ltr\:my-px{margin-top:1px !important;margin-bottom:1px !important}[dir='ltr'] .sm\:ltr\:mx-px{margin-left:1px !important;margin-right:1px !important}[dir='ltr'] .sm\:ltr\:my-0\.5{margin-top:.125rem !important;margin-bottom:.125rem !important}[dir='ltr'] .sm\:ltr\:mx-0\.5{margin-left:.125rem !important;margin-right:.125rem !important}[dir='ltr'] .sm\:ltr\:my-1\.5{margin-top:.375rem !important;margin-bottom:.375rem !important}[dir='ltr'] .sm\:ltr\:mx-1\.5{margin-left:.375rem !important;margin-right:.375rem !important}[dir='ltr'] .sm\:ltr\:my-2\.5{margin-top:.625rem !important;margin-bottom:.625rem !important}[dir='ltr'] .sm\:ltr\:mx-2\.5{margin-left:.625rem !important;margin-right:.625rem !important}[dir='ltr'] .sm\:ltr\:my-3\.5{margin-top:.875rem !important;margin-bottom:.875rem !important}[dir='ltr'] .sm\:ltr\:mx-3\.5{margin-left:.875rem !important;margin-right:.875rem !important}[dir='ltr'] .sm\:ltr\:my-1\/2{margin-top:50% !important;margin-bottom:50% !important}[dir='ltr'] .sm\:ltr\:mx-1\/2{margin-left:50% !important;margin-right:50% !important}[dir='ltr'] .sm\:ltr\:my-1\/3{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:mx-1\/3{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:my-2\/3{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:mx-2\/3{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:my-1\/4{margin-top:25% !important;margin-bottom:25% !important}[dir='ltr'] .sm\:ltr\:mx-1\/4{margin-left:25% !important;margin-right:25% !important}[dir='ltr'] .sm\:ltr\:my-2\/4{margin-top:50% !important;margin-bottom:50% !important}[dir='ltr'] .sm\:ltr\:mx-2\/4{margin-left:50% !important;margin-right:50% !important}[dir='ltr'] .sm\:ltr\:my-3\/4{margin-top:75% !important;margin-bottom:75% !important}[dir='ltr'] .sm\:ltr\:mx-3\/4{margin-left:75% !important;margin-right:75% !important}[dir='ltr'] .sm\:ltr\:my-1\/5{margin-top:20% !important;margin-bottom:20% !important}[dir='ltr'] .sm\:ltr\:mx-1\/5{margin-left:20% !important;margin-right:20% !important}[dir='ltr'] .sm\:ltr\:my-2\/5{margin-top:40% !important;margin-bottom:40% !important}[dir='ltr'] .sm\:ltr\:mx-2\/5{margin-left:40% !important;margin-right:40% !important}[dir='ltr'] .sm\:ltr\:my-3\/5{margin-top:60% !important;margin-bottom:60% !important}[dir='ltr'] .sm\:ltr\:mx-3\/5{margin-left:60% !important;margin-right:60% !important}[dir='ltr'] .sm\:ltr\:my-4\/5{margin-top:80% !important;margin-bottom:80% !important}[dir='ltr'] .sm\:ltr\:mx-4\/5{margin-left:80% !important;margin-right:80% !important}[dir='ltr'] .sm\:ltr\:my-1\/6{margin-top:16.666667% !important;margin-bottom:16.666667% !important}[dir='ltr'] .sm\:ltr\:mx-1\/6{margin-left:16.666667% !important;margin-right:16.666667% !important}[dir='ltr'] .sm\:ltr\:my-2\/6{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:mx-2\/6{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:my-3\/6{margin-top:50% !important;margin-bottom:50% !important}[dir='ltr'] .sm\:ltr\:mx-3\/6{margin-left:50% !important;margin-right:50% !important}[dir='ltr'] .sm\:ltr\:my-4\/6{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:mx-4\/6{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:my-5\/6{margin-top:83.333333% !important;margin-bottom:83.333333% !important}[dir='ltr'] .sm\:ltr\:mx-5\/6{margin-left:83.333333% !important;margin-right:83.333333% !important}[dir='ltr'] .sm\:ltr\:my-1\/12{margin-top:8.333333% !important;margin-bottom:8.333333% !important}[dir='ltr'] .sm\:ltr\:mx-1\/12{margin-left:8.333333% !important;margin-right:8.333333% !important}[dir='ltr'] .sm\:ltr\:my-2\/12{margin-top:16.666667% !important;margin-bottom:16.666667% !important}[dir='ltr'] .sm\:ltr\:mx-2\/12{margin-left:16.666667% !important;margin-right:16.666667% !important}[dir='ltr'] .sm\:ltr\:my-3\/12{margin-top:25% !important;margin-bottom:25% !important}[dir='ltr'] .sm\:ltr\:mx-3\/12{margin-left:25% !important;margin-right:25% !important}[dir='ltr'] .sm\:ltr\:my-4\/12{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:mx-4\/12{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:my-5\/12{margin-top:41.666667% !important;margin-bottom:41.666667% !important}[dir='ltr'] .sm\:ltr\:mx-5\/12{margin-left:41.666667% !important;margin-right:41.666667% !important}[dir='ltr'] .sm\:ltr\:my-6\/12{margin-top:50% !important;margin-bottom:50% !important}[dir='ltr'] .sm\:ltr\:mx-6\/12{margin-left:50% !important;margin-right:50% !important}[dir='ltr'] .sm\:ltr\:my-7\/12{margin-top:58.333333% !important;margin-bottom:58.333333% !important}[dir='ltr'] .sm\:ltr\:mx-7\/12{margin-left:58.333333% !important;margin-right:58.333333% !important}[dir='ltr'] .sm\:ltr\:my-8\/12{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:mx-8\/12{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:my-9\/12{margin-top:75% !important;margin-bottom:75% !important}[dir='ltr'] .sm\:ltr\:mx-9\/12{margin-left:75% !important;margin-right:75% !important}[dir='ltr'] .sm\:ltr\:my-10\/12{margin-top:83.333333% !important;margin-bottom:83.333333% !important}[dir='ltr'] .sm\:ltr\:mx-10\/12{margin-left:83.333333% !important;margin-right:83.333333% !important}[dir='ltr'] .sm\:ltr\:my-11\/12{margin-top:91.666667% !important;margin-bottom:91.666667% !important}[dir='ltr'] .sm\:ltr\:mx-11\/12{margin-left:91.666667% !important;margin-right:91.666667% !important}[dir='ltr'] .sm\:ltr\:my-full{margin-top:100% !important;margin-bottom:100% !important}[dir='ltr'] .sm\:ltr\:mx-full{margin-left:100% !important;margin-right:100% !important}[dir='ltr'] .sm\:ltr\:-my-1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}[dir='ltr'] .sm\:ltr\:-mx-1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}[dir='ltr'] .sm\:ltr\:-my-2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}[dir='ltr'] .sm\:ltr\:-mx-2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}[dir='ltr'] .sm\:ltr\:-my-3{margin-top:-0.75rem !important;margin-bottom:-0.75rem !important}[dir='ltr'] .sm\:ltr\:-mx-3{margin-left:-0.75rem !important;margin-right:-0.75rem !important}[dir='ltr'] .sm\:ltr\:-my-4{margin-top:-1rem !important;margin-bottom:-1rem !important}[dir='ltr'] .sm\:ltr\:-mx-4{margin-left:-1rem !important;margin-right:-1rem !important}[dir='ltr'] .sm\:ltr\:-my-5{margin-top:-1.25rem !important;margin-bottom:-1.25rem !important}[dir='ltr'] .sm\:ltr\:-mx-5{margin-left:-1.25rem !important;margin-right:-1.25rem !important}[dir='ltr'] .sm\:ltr\:-my-6{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}[dir='ltr'] .sm\:ltr\:-mx-6{margin-left:-1.5rem !important;margin-right:-1.5rem !important}[dir='ltr'] .sm\:ltr\:-my-7{margin-top:-1.75rem !important;margin-bottom:-1.75rem !important}[dir='ltr'] .sm\:ltr\:-mx-7{margin-left:-1.75rem !important;margin-right:-1.75rem !important}[dir='ltr'] .sm\:ltr\:-my-8{margin-top:-2rem !important;margin-bottom:-2rem !important}[dir='ltr'] .sm\:ltr\:-mx-8{margin-left:-2rem !important;margin-right:-2rem !important}[dir='ltr'] .sm\:ltr\:-my-9{margin-top:-2.25rem !important;margin-bottom:-2.25rem !important}[dir='ltr'] .sm\:ltr\:-mx-9{margin-left:-2.25rem !important;margin-right:-2.25rem !important}[dir='ltr'] .sm\:ltr\:-my-10{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}[dir='ltr'] .sm\:ltr\:-mx-10{margin-left:-2.5rem !important;margin-right:-2.5rem !important}[dir='ltr'] .sm\:ltr\:-my-11{margin-top:-2.75rem !important;margin-bottom:-2.75rem !important}[dir='ltr'] .sm\:ltr\:-mx-11{margin-left:-2.75rem !important;margin-right:-2.75rem !important}[dir='ltr'] .sm\:ltr\:-my-12{margin-top:-3rem !important;margin-bottom:-3rem !important}[dir='ltr'] .sm\:ltr\:-mx-12{margin-left:-3rem !important;margin-right:-3rem !important}[dir='ltr'] .sm\:ltr\:-my-13{margin-top:-3.25rem !important;margin-bottom:-3.25rem !important}[dir='ltr'] .sm\:ltr\:-mx-13{margin-left:-3.25rem !important;margin-right:-3.25rem !important}[dir='ltr'] .sm\:ltr\:-my-14{margin-top:-3.5rem !important;margin-bottom:-3.5rem !important}[dir='ltr'] .sm\:ltr\:-mx-14{margin-left:-3.5rem !important;margin-right:-3.5rem !important}[dir='ltr'] .sm\:ltr\:-my-15{margin-top:-3.75rem !important;margin-bottom:-3.75rem !important}[dir='ltr'] .sm\:ltr\:-mx-15{margin-left:-3.75rem !important;margin-right:-3.75rem !important}[dir='ltr'] .sm\:ltr\:-my-16{margin-top:-4rem !important;margin-bottom:-4rem !important}[dir='ltr'] .sm\:ltr\:-mx-16{margin-left:-4rem !important;margin-right:-4rem !important}[dir='ltr'] .sm\:ltr\:-my-20{margin-top:-5rem !important;margin-bottom:-5rem !important}[dir='ltr'] .sm\:ltr\:-mx-20{margin-left:-5rem !important;margin-right:-5rem !important}[dir='ltr'] .sm\:ltr\:-my-24{margin-top:-6rem !important;margin-bottom:-6rem !important}[dir='ltr'] .sm\:ltr\:-mx-24{margin-left:-6rem !important;margin-right:-6rem !important}[dir='ltr'] .sm\:ltr\:-my-28{margin-top:-7rem !important;margin-bottom:-7rem !important}[dir='ltr'] .sm\:ltr\:-mx-28{margin-left:-7rem !important;margin-right:-7rem !important}[dir='ltr'] .sm\:ltr\:-my-32{margin-top:-8rem !important;margin-bottom:-8rem !important}[dir='ltr'] .sm\:ltr\:-mx-32{margin-left:-8rem !important;margin-right:-8rem !important}[dir='ltr'] .sm\:ltr\:-my-36{margin-top:-9rem !important;margin-bottom:-9rem !important}[dir='ltr'] .sm\:ltr\:-mx-36{margin-left:-9rem !important;margin-right:-9rem !important}[dir='ltr'] .sm\:ltr\:-my-40{margin-top:-10rem !important;margin-bottom:-10rem !important}[dir='ltr'] .sm\:ltr\:-mx-40{margin-left:-10rem !important;margin-right:-10rem !important}[dir='ltr'] .sm\:ltr\:-my-48{margin-top:-12rem !important;margin-bottom:-12rem !important}[dir='ltr'] .sm\:ltr\:-mx-48{margin-left:-12rem !important;margin-right:-12rem !important}[dir='ltr'] .sm\:ltr\:-my-56{margin-top:-14rem !important;margin-bottom:-14rem !important}[dir='ltr'] .sm\:ltr\:-mx-56{margin-left:-14rem !important;margin-right:-14rem !important}[dir='ltr'] .sm\:ltr\:-my-60{margin-top:-15rem !important;margin-bottom:-15rem !important}[dir='ltr'] .sm\:ltr\:-mx-60{margin-left:-15rem !important;margin-right:-15rem !important}[dir='ltr'] .sm\:ltr\:-my-64{margin-top:-16rem !important;margin-bottom:-16rem !important}[dir='ltr'] .sm\:ltr\:-mx-64{margin-left:-16rem !important;margin-right:-16rem !important}[dir='ltr'] .sm\:ltr\:-my-72{margin-top:-18rem !important;margin-bottom:-18rem !important}[dir='ltr'] .sm\:ltr\:-mx-72{margin-left:-18rem !important;margin-right:-18rem !important}[dir='ltr'] .sm\:ltr\:-my-80{margin-top:-20rem !important;margin-bottom:-20rem !important}[dir='ltr'] .sm\:ltr\:-mx-80{margin-left:-20rem !important;margin-right:-20rem !important}[dir='ltr'] .sm\:ltr\:-my-96{margin-top:-24rem !important;margin-bottom:-24rem !important}[dir='ltr'] .sm\:ltr\:-mx-96{margin-left:-24rem !important;margin-right:-24rem !important}[dir='ltr'] .sm\:ltr\:-my-px{margin-top:-1px !important;margin-bottom:-1px !important}[dir='ltr'] .sm\:ltr\:-mx-px{margin-left:-1px !important;margin-right:-1px !important}[dir='ltr'] .sm\:ltr\:-my-0\.5{margin-top:-0.125rem !important;margin-bottom:-0.125rem !important}[dir='ltr'] .sm\:ltr\:-mx-0\.5{margin-left:-0.125rem !important;margin-right:-0.125rem !important}[dir='ltr'] .sm\:ltr\:-my-1\.5{margin-top:-0.375rem !important;margin-bottom:-0.375rem !important}[dir='ltr'] .sm\:ltr\:-mx-1\.5{margin-left:-0.375rem !important;margin-right:-0.375rem !important}[dir='ltr'] .sm\:ltr\:-my-2\.5{margin-top:-0.625rem !important;margin-bottom:-0.625rem !important}[dir='ltr'] .sm\:ltr\:-mx-2\.5{margin-left:-0.625rem !important;margin-right:-0.625rem !important}[dir='ltr'] .sm\:ltr\:-my-3\.5{margin-top:-0.875rem !important;margin-bottom:-0.875rem !important}[dir='ltr'] .sm\:ltr\:-mx-3\.5{margin-left:-0.875rem !important;margin-right:-0.875rem !important}[dir='ltr'] .sm\:ltr\:-my-1\/2{margin-top:-50% !important;margin-bottom:-50% !important}[dir='ltr'] .sm\:ltr\:-mx-1\/2{margin-left:-50% !important;margin-right:-50% !important}[dir='ltr'] .sm\:ltr\:-my-1\/3{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mx-1\/3{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-my-2\/3{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mx-2\/3{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-my-1\/4{margin-top:-25% !important;margin-bottom:-25% !important}[dir='ltr'] .sm\:ltr\:-mx-1\/4{margin-left:-25% !important;margin-right:-25% !important}[dir='ltr'] .sm\:ltr\:-my-2\/4{margin-top:-50% !important;margin-bottom:-50% !important}[dir='ltr'] .sm\:ltr\:-mx-2\/4{margin-left:-50% !important;margin-right:-50% !important}[dir='ltr'] .sm\:ltr\:-my-3\/4{margin-top:-75% !important;margin-bottom:-75% !important}[dir='ltr'] .sm\:ltr\:-mx-3\/4{margin-left:-75% !important;margin-right:-75% !important}[dir='ltr'] .sm\:ltr\:-my-1\/5{margin-top:-20% !important;margin-bottom:-20% !important}[dir='ltr'] .sm\:ltr\:-mx-1\/5{margin-left:-20% !important;margin-right:-20% !important}[dir='ltr'] .sm\:ltr\:-my-2\/5{margin-top:-40% !important;margin-bottom:-40% !important}[dir='ltr'] .sm\:ltr\:-mx-2\/5{margin-left:-40% !important;margin-right:-40% !important}[dir='ltr'] .sm\:ltr\:-my-3\/5{margin-top:-60% !important;margin-bottom:-60% !important}[dir='ltr'] .sm\:ltr\:-mx-3\/5{margin-left:-60% !important;margin-right:-60% !important}[dir='ltr'] .sm\:ltr\:-my-4\/5{margin-top:-80% !important;margin-bottom:-80% !important}[dir='ltr'] .sm\:ltr\:-mx-4\/5{margin-left:-80% !important;margin-right:-80% !important}[dir='ltr'] .sm\:ltr\:-my-1\/6{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-mx-1\/6{margin-left:-16.66667% !important;margin-right:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-my-2\/6{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mx-2\/6{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-my-3\/6{margin-top:-50% !important;margin-bottom:-50% !important}[dir='ltr'] .sm\:ltr\:-mx-3\/6{margin-left:-50% !important;margin-right:-50% !important}[dir='ltr'] .sm\:ltr\:-my-4\/6{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mx-4\/6{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-my-5\/6{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-mx-5\/6{margin-left:-83.33333% !important;margin-right:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-my-1\/12{margin-top:-8.33333% !important;margin-bottom:-8.33333% !important}[dir='ltr'] .sm\:ltr\:-mx-1\/12{margin-left:-8.33333% !important;margin-right:-8.33333% !important}[dir='ltr'] .sm\:ltr\:-my-2\/12{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-mx-2\/12{margin-left:-16.66667% !important;margin-right:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-my-3\/12{margin-top:-25% !important;margin-bottom:-25% !important}[dir='ltr'] .sm\:ltr\:-mx-3\/12{margin-left:-25% !important;margin-right:-25% !important}[dir='ltr'] .sm\:ltr\:-my-4\/12{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mx-4\/12{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-my-5\/12{margin-top:-41.66667% !important;margin-bottom:-41.66667% !important}[dir='ltr'] .sm\:ltr\:-mx-5\/12{margin-left:-41.66667% !important;margin-right:-41.66667% !important}[dir='ltr'] .sm\:ltr\:-my-6\/12{margin-top:-50% !important;margin-bottom:-50% !important}[dir='ltr'] .sm\:ltr\:-mx-6\/12{margin-left:-50% !important;margin-right:-50% !important}[dir='ltr'] .sm\:ltr\:-my-7\/12{margin-top:-58.33333% !important;margin-bottom:-58.33333% !important}[dir='ltr'] .sm\:ltr\:-mx-7\/12{margin-left:-58.33333% !important;margin-right:-58.33333% !important}[dir='ltr'] .sm\:ltr\:-my-8\/12{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mx-8\/12{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-my-9\/12{margin-top:-75% !important;margin-bottom:-75% !important}[dir='ltr'] .sm\:ltr\:-mx-9\/12{margin-left:-75% !important;margin-right:-75% !important}[dir='ltr'] .sm\:ltr\:-my-10\/12{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-mx-10\/12{margin-left:-83.33333% !important;margin-right:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-my-11\/12{margin-top:-91.66667% !important;margin-bottom:-91.66667% !important}[dir='ltr'] .sm\:ltr\:-mx-11\/12{margin-left:-91.66667% !important;margin-right:-91.66667% !important}[dir='ltr'] .sm\:ltr\:-my-full{margin-top:-100% !important;margin-bottom:-100% !important}[dir='ltr'] .sm\:ltr\:-mx-full{margin-left:-100% !important;margin-right:-100% !important}[dir='ltr'] .sm\:ltr\:mt-0{margin-top:0 !important}[dir='ltr'] .sm\:ltr\:mr-0{margin-right:0 !important}[dir='ltr'] .sm\:ltr\:mb-0{margin-bottom:0 !important}[dir='ltr'] .sm\:ltr\:ml-0{margin-left:0 !important}[dir='ltr'] .sm\:ltr\:mt-1{margin-top:.25rem !important}[dir='ltr'] .sm\:ltr\:mr-1{margin-right:.25rem !important}[dir='ltr'] .sm\:ltr\:mb-1{margin-bottom:.25rem !important}[dir='ltr'] .sm\:ltr\:ml-1{margin-left:.25rem !important}[dir='ltr'] .sm\:ltr\:mt-2{margin-top:.5rem !important}[dir='ltr'] .sm\:ltr\:mr-2{margin-right:.5rem !important}[dir='ltr'] .sm\:ltr\:mb-2{margin-bottom:.5rem !important}[dir='ltr'] .sm\:ltr\:ml-2{margin-left:.5rem !important}[dir='ltr'] .sm\:ltr\:mt-3{margin-top:.75rem !important}[dir='ltr'] .sm\:ltr\:mr-3{margin-right:.75rem !important}[dir='ltr'] .sm\:ltr\:mb-3{margin-bottom:.75rem !important}[dir='ltr'] .sm\:ltr\:ml-3{margin-left:.75rem !important}[dir='ltr'] .sm\:ltr\:mt-4{margin-top:1rem !important}[dir='ltr'] .sm\:ltr\:mr-4{margin-right:1rem !important}[dir='ltr'] .sm\:ltr\:mb-4{margin-bottom:1rem !important}[dir='ltr'] .sm\:ltr\:ml-4{margin-left:1rem !important}[dir='ltr'] .sm\:ltr\:mt-5{margin-top:1.25rem !important}[dir='ltr'] .sm\:ltr\:mr-5{margin-right:1.25rem !important}[dir='ltr'] .sm\:ltr\:mb-5{margin-bottom:1.25rem !important}[dir='ltr'] .sm\:ltr\:ml-5{margin-left:1.25rem !important}[dir='ltr'] .sm\:ltr\:mt-6{margin-top:1.5rem !important}[dir='ltr'] .sm\:ltr\:mr-6{margin-right:1.5rem !important}[dir='ltr'] .sm\:ltr\:mb-6{margin-bottom:1.5rem !important}[dir='ltr'] .sm\:ltr\:ml-6{margin-left:1.5rem !important}[dir='ltr'] .sm\:ltr\:mt-7{margin-top:1.75rem !important}[dir='ltr'] .sm\:ltr\:mr-7{margin-right:1.75rem !important}[dir='ltr'] .sm\:ltr\:mb-7{margin-bottom:1.75rem !important}[dir='ltr'] .sm\:ltr\:ml-7{margin-left:1.75rem !important}[dir='ltr'] .sm\:ltr\:mt-8{margin-top:2rem !important}[dir='ltr'] .sm\:ltr\:mr-8{margin-right:2rem !important}[dir='ltr'] .sm\:ltr\:mb-8{margin-bottom:2rem !important}[dir='ltr'] .sm\:ltr\:ml-8{margin-left:2rem !important}[dir='ltr'] .sm\:ltr\:mt-9{margin-top:2.25rem !important}[dir='ltr'] .sm\:ltr\:mr-9{margin-right:2.25rem !important}[dir='ltr'] .sm\:ltr\:mb-9{margin-bottom:2.25rem !important}[dir='ltr'] .sm\:ltr\:ml-9{margin-left:2.25rem !important}[dir='ltr'] .sm\:ltr\:mt-10{margin-top:2.5rem !important}[dir='ltr'] .sm\:ltr\:mr-10{margin-right:2.5rem !important}[dir='ltr'] .sm\:ltr\:mb-10{margin-bottom:2.5rem !important}[dir='ltr'] .sm\:ltr\:ml-10{margin-left:2.5rem !important}[dir='ltr'] .sm\:ltr\:mt-11{margin-top:2.75rem !important}[dir='ltr'] .sm\:ltr\:mr-11{margin-right:2.75rem !important}[dir='ltr'] .sm\:ltr\:mb-11{margin-bottom:2.75rem !important}[dir='ltr'] .sm\:ltr\:ml-11{margin-left:2.75rem !important}[dir='ltr'] .sm\:ltr\:mt-12{margin-top:3rem !important}[dir='ltr'] .sm\:ltr\:mr-12{margin-right:3rem !important}[dir='ltr'] .sm\:ltr\:mb-12{margin-bottom:3rem !important}[dir='ltr'] .sm\:ltr\:ml-12{margin-left:3rem !important}[dir='ltr'] .sm\:ltr\:mt-13{margin-top:3.25rem !important}[dir='ltr'] .sm\:ltr\:mr-13{margin-right:3.25rem !important}[dir='ltr'] .sm\:ltr\:mb-13{margin-bottom:3.25rem !important}[dir='ltr'] .sm\:ltr\:ml-13{margin-left:3.25rem !important}[dir='ltr'] .sm\:ltr\:mt-14{margin-top:3.5rem !important}[dir='ltr'] .sm\:ltr\:mr-14{margin-right:3.5rem !important}[dir='ltr'] .sm\:ltr\:mb-14{margin-bottom:3.5rem !important}[dir='ltr'] .sm\:ltr\:ml-14{margin-left:3.5rem !important}[dir='ltr'] .sm\:ltr\:mt-15{margin-top:3.75rem !important}[dir='ltr'] .sm\:ltr\:mr-15{margin-right:3.75rem !important}[dir='ltr'] .sm\:ltr\:mb-15{margin-bottom:3.75rem !important}[dir='ltr'] .sm\:ltr\:ml-15{margin-left:3.75rem !important}[dir='ltr'] .sm\:ltr\:mt-16{margin-top:4rem !important}[dir='ltr'] .sm\:ltr\:mr-16{margin-right:4rem !important}[dir='ltr'] .sm\:ltr\:mb-16{margin-bottom:4rem !important}[dir='ltr'] .sm\:ltr\:ml-16{margin-left:4rem !important}[dir='ltr'] .sm\:ltr\:mt-20{margin-top:5rem !important}[dir='ltr'] .sm\:ltr\:mr-20{margin-right:5rem !important}[dir='ltr'] .sm\:ltr\:mb-20{margin-bottom:5rem !important}[dir='ltr'] .sm\:ltr\:ml-20{margin-left:5rem !important}[dir='ltr'] .sm\:ltr\:mt-24{margin-top:6rem !important}[dir='ltr'] .sm\:ltr\:mr-24{margin-right:6rem !important}[dir='ltr'] .sm\:ltr\:mb-24{margin-bottom:6rem !important}[dir='ltr'] .sm\:ltr\:ml-24{margin-left:6rem !important}[dir='ltr'] .sm\:ltr\:mt-28{margin-top:7rem !important}[dir='ltr'] .sm\:ltr\:mr-28{margin-right:7rem !important}[dir='ltr'] .sm\:ltr\:mb-28{margin-bottom:7rem !important}[dir='ltr'] .sm\:ltr\:ml-28{margin-left:7rem !important}[dir='ltr'] .sm\:ltr\:mt-32{margin-top:8rem !important}[dir='ltr'] .sm\:ltr\:mr-32{margin-right:8rem !important}[dir='ltr'] .sm\:ltr\:mb-32{margin-bottom:8rem !important}[dir='ltr'] .sm\:ltr\:ml-32{margin-left:8rem !important}[dir='ltr'] .sm\:ltr\:mt-36{margin-top:9rem !important}[dir='ltr'] .sm\:ltr\:mr-36{margin-right:9rem !important}[dir='ltr'] .sm\:ltr\:mb-36{margin-bottom:9rem !important}[dir='ltr'] .sm\:ltr\:ml-36{margin-left:9rem !important}[dir='ltr'] .sm\:ltr\:mt-40{margin-top:10rem !important}[dir='ltr'] .sm\:ltr\:mr-40{margin-right:10rem !important}[dir='ltr'] .sm\:ltr\:mb-40{margin-bottom:10rem !important}[dir='ltr'] .sm\:ltr\:ml-40{margin-left:10rem !important}[dir='ltr'] .sm\:ltr\:mt-48{margin-top:12rem !important}[dir='ltr'] .sm\:ltr\:mr-48{margin-right:12rem !important}[dir='ltr'] .sm\:ltr\:mb-48{margin-bottom:12rem !important}[dir='ltr'] .sm\:ltr\:ml-48{margin-left:12rem !important}[dir='ltr'] .sm\:ltr\:mt-56{margin-top:14rem !important}[dir='ltr'] .sm\:ltr\:mr-56{margin-right:14rem !important}[dir='ltr'] .sm\:ltr\:mb-56{margin-bottom:14rem !important}[dir='ltr'] .sm\:ltr\:ml-56{margin-left:14rem !important}[dir='ltr'] .sm\:ltr\:mt-60{margin-top:15rem !important}[dir='ltr'] .sm\:ltr\:mr-60{margin-right:15rem !important}[dir='ltr'] .sm\:ltr\:mb-60{margin-bottom:15rem !important}[dir='ltr'] .sm\:ltr\:ml-60{margin-left:15rem !important}[dir='ltr'] .sm\:ltr\:mt-64{margin-top:16rem !important}[dir='ltr'] .sm\:ltr\:mr-64{margin-right:16rem !important}[dir='ltr'] .sm\:ltr\:mb-64{margin-bottom:16rem !important}[dir='ltr'] .sm\:ltr\:ml-64{margin-left:16rem !important}[dir='ltr'] .sm\:ltr\:mt-72{margin-top:18rem !important}[dir='ltr'] .sm\:ltr\:mr-72{margin-right:18rem !important}[dir='ltr'] .sm\:ltr\:mb-72{margin-bottom:18rem !important}[dir='ltr'] .sm\:ltr\:ml-72{margin-left:18rem !important}[dir='ltr'] .sm\:ltr\:mt-80{margin-top:20rem !important}[dir='ltr'] .sm\:ltr\:mr-80{margin-right:20rem !important}[dir='ltr'] .sm\:ltr\:mb-80{margin-bottom:20rem !important}[dir='ltr'] .sm\:ltr\:ml-80{margin-left:20rem !important}[dir='ltr'] .sm\:ltr\:mt-96{margin-top:24rem !important}[dir='ltr'] .sm\:ltr\:mr-96{margin-right:24rem !important}[dir='ltr'] .sm\:ltr\:mb-96{margin-bottom:24rem !important}[dir='ltr'] .sm\:ltr\:ml-96{margin-left:24rem !important}[dir='ltr'] .sm\:ltr\:mt-auto{margin-top:auto !important}[dir='ltr'] .sm\:ltr\:mr-auto{margin-right:auto !important}[dir='ltr'] .sm\:ltr\:mb-auto{margin-bottom:auto !important}[dir='ltr'] .sm\:ltr\:ml-auto{margin-left:auto !important}[dir='ltr'] .sm\:ltr\:mt-px{margin-top:1px !important}[dir='ltr'] .sm\:ltr\:mr-px{margin-right:1px !important}[dir='ltr'] .sm\:ltr\:mb-px{margin-bottom:1px !important}[dir='ltr'] .sm\:ltr\:ml-px{margin-left:1px !important}[dir='ltr'] .sm\:ltr\:mt-0\.5{margin-top:.125rem !important}[dir='ltr'] .sm\:ltr\:mr-0\.5{margin-right:.125rem !important}[dir='ltr'] .sm\:ltr\:mb-0\.5{margin-bottom:.125rem !important}[dir='ltr'] .sm\:ltr\:ml-0\.5{margin-left:.125rem !important}[dir='ltr'] .sm\:ltr\:mt-1\.5{margin-top:.375rem !important}[dir='ltr'] .sm\:ltr\:mr-1\.5{margin-right:.375rem !important}[dir='ltr'] .sm\:ltr\:mb-1\.5{margin-bottom:.375rem !important}[dir='ltr'] .sm\:ltr\:ml-1\.5{margin-left:.375rem !important}[dir='ltr'] .sm\:ltr\:mt-2\.5{margin-top:.625rem !important}[dir='ltr'] .sm\:ltr\:mr-2\.5{margin-right:.625rem !important}[dir='ltr'] .sm\:ltr\:mb-2\.5{margin-bottom:.625rem !important}[dir='ltr'] .sm\:ltr\:ml-2\.5{margin-left:.625rem !important}[dir='ltr'] .sm\:ltr\:mt-3\.5{margin-top:.875rem !important}[dir='ltr'] .sm\:ltr\:mr-3\.5{margin-right:.875rem !important}[dir='ltr'] .sm\:ltr\:mb-3\.5{margin-bottom:.875rem !important}[dir='ltr'] .sm\:ltr\:ml-3\.5{margin-left:.875rem !important}[dir='ltr'] .sm\:ltr\:mt-1\/2{margin-top:50% !important}[dir='ltr'] .sm\:ltr\:mr-1\/2{margin-right:50% !important}[dir='ltr'] .sm\:ltr\:mb-1\/2{margin-bottom:50% !important}[dir='ltr'] .sm\:ltr\:ml-1\/2{margin-left:50% !important}[dir='ltr'] .sm\:ltr\:mt-1\/3{margin-top:33.333333% !important}[dir='ltr'] .sm\:ltr\:mr-1\/3{margin-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:mb-1\/3{margin-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:ml-1\/3{margin-left:33.333333% !important}[dir='ltr'] .sm\:ltr\:mt-2\/3{margin-top:66.666667% !important}[dir='ltr'] .sm\:ltr\:mr-2\/3{margin-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:mb-2\/3{margin-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:ml-2\/3{margin-left:66.666667% !important}[dir='ltr'] .sm\:ltr\:mt-1\/4{margin-top:25% !important}[dir='ltr'] .sm\:ltr\:mr-1\/4{margin-right:25% !important}[dir='ltr'] .sm\:ltr\:mb-1\/4{margin-bottom:25% !important}[dir='ltr'] .sm\:ltr\:ml-1\/4{margin-left:25% !important}[dir='ltr'] .sm\:ltr\:mt-2\/4{margin-top:50% !important}[dir='ltr'] .sm\:ltr\:mr-2\/4{margin-right:50% !important}[dir='ltr'] .sm\:ltr\:mb-2\/4{margin-bottom:50% !important}[dir='ltr'] .sm\:ltr\:ml-2\/4{margin-left:50% !important}[dir='ltr'] .sm\:ltr\:mt-3\/4{margin-top:75% !important}[dir='ltr'] .sm\:ltr\:mr-3\/4{margin-right:75% !important}[dir='ltr'] .sm\:ltr\:mb-3\/4{margin-bottom:75% !important}[dir='ltr'] .sm\:ltr\:ml-3\/4{margin-left:75% !important}[dir='ltr'] .sm\:ltr\:mt-1\/5{margin-top:20% !important}[dir='ltr'] .sm\:ltr\:mr-1\/5{margin-right:20% !important}[dir='ltr'] .sm\:ltr\:mb-1\/5{margin-bottom:20% !important}[dir='ltr'] .sm\:ltr\:ml-1\/5{margin-left:20% !important}[dir='ltr'] .sm\:ltr\:mt-2\/5{margin-top:40% !important}[dir='ltr'] .sm\:ltr\:mr-2\/5{margin-right:40% !important}[dir='ltr'] .sm\:ltr\:mb-2\/5{margin-bottom:40% !important}[dir='ltr'] .sm\:ltr\:ml-2\/5{margin-left:40% !important}[dir='ltr'] .sm\:ltr\:mt-3\/5{margin-top:60% !important}[dir='ltr'] .sm\:ltr\:mr-3\/5{margin-right:60% !important}[dir='ltr'] .sm\:ltr\:mb-3\/5{margin-bottom:60% !important}[dir='ltr'] .sm\:ltr\:ml-3\/5{margin-left:60% !important}[dir='ltr'] .sm\:ltr\:mt-4\/5{margin-top:80% !important}[dir='ltr'] .sm\:ltr\:mr-4\/5{margin-right:80% !important}[dir='ltr'] .sm\:ltr\:mb-4\/5{margin-bottom:80% !important}[dir='ltr'] .sm\:ltr\:ml-4\/5{margin-left:80% !important}[dir='ltr'] .sm\:ltr\:mt-1\/6{margin-top:16.666667% !important}[dir='ltr'] .sm\:ltr\:mr-1\/6{margin-right:16.666667% !important}[dir='ltr'] .sm\:ltr\:mb-1\/6{margin-bottom:16.666667% !important}[dir='ltr'] .sm\:ltr\:ml-1\/6{margin-left:16.666667% !important}[dir='ltr'] .sm\:ltr\:mt-2\/6{margin-top:33.333333% !important}[dir='ltr'] .sm\:ltr\:mr-2\/6{margin-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:mb-2\/6{margin-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:ml-2\/6{margin-left:33.333333% !important}[dir='ltr'] .sm\:ltr\:mt-3\/6{margin-top:50% !important}[dir='ltr'] .sm\:ltr\:mr-3\/6{margin-right:50% !important}[dir='ltr'] .sm\:ltr\:mb-3\/6{margin-bottom:50% !important}[dir='ltr'] .sm\:ltr\:ml-3\/6{margin-left:50% !important}[dir='ltr'] .sm\:ltr\:mt-4\/6{margin-top:66.666667% !important}[dir='ltr'] .sm\:ltr\:mr-4\/6{margin-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:mb-4\/6{margin-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:ml-4\/6{margin-left:66.666667% !important}[dir='ltr'] .sm\:ltr\:mt-5\/6{margin-top:83.333333% !important}[dir='ltr'] .sm\:ltr\:mr-5\/6{margin-right:83.333333% !important}[dir='ltr'] .sm\:ltr\:mb-5\/6{margin-bottom:83.333333% !important}[dir='ltr'] .sm\:ltr\:ml-5\/6{margin-left:83.333333% !important}[dir='ltr'] .sm\:ltr\:mt-1\/12{margin-top:8.333333% !important}[dir='ltr'] .sm\:ltr\:mr-1\/12{margin-right:8.333333% !important}[dir='ltr'] .sm\:ltr\:mb-1\/12{margin-bottom:8.333333% !important}[dir='ltr'] .sm\:ltr\:ml-1\/12{margin-left:8.333333% !important}[dir='ltr'] .sm\:ltr\:mt-2\/12{margin-top:16.666667% !important}[dir='ltr'] .sm\:ltr\:mr-2\/12{margin-right:16.666667% !important}[dir='ltr'] .sm\:ltr\:mb-2\/12{margin-bottom:16.666667% !important}[dir='ltr'] .sm\:ltr\:ml-2\/12{margin-left:16.666667% !important}[dir='ltr'] .sm\:ltr\:mt-3\/12{margin-top:25% !important}[dir='ltr'] .sm\:ltr\:mr-3\/12{margin-right:25% !important}[dir='ltr'] .sm\:ltr\:mb-3\/12{margin-bottom:25% !important}[dir='ltr'] .sm\:ltr\:ml-3\/12{margin-left:25% !important}[dir='ltr'] .sm\:ltr\:mt-4\/12{margin-top:33.333333% !important}[dir='ltr'] .sm\:ltr\:mr-4\/12{margin-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:mb-4\/12{margin-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:ml-4\/12{margin-left:33.333333% !important}[dir='ltr'] .sm\:ltr\:mt-5\/12{margin-top:41.666667% !important}[dir='ltr'] .sm\:ltr\:mr-5\/12{margin-right:41.666667% !important}[dir='ltr'] .sm\:ltr\:mb-5\/12{margin-bottom:41.666667% !important}[dir='ltr'] .sm\:ltr\:ml-5\/12{margin-left:41.666667% !important}[dir='ltr'] .sm\:ltr\:mt-6\/12{margin-top:50% !important}[dir='ltr'] .sm\:ltr\:mr-6\/12{margin-right:50% !important}[dir='ltr'] .sm\:ltr\:mb-6\/12{margin-bottom:50% !important}[dir='ltr'] .sm\:ltr\:ml-6\/12{margin-left:50% !important}[dir='ltr'] .sm\:ltr\:mt-7\/12{margin-top:58.333333% !important}[dir='ltr'] .sm\:ltr\:mr-7\/12{margin-right:58.333333% !important}[dir='ltr'] .sm\:ltr\:mb-7\/12{margin-bottom:58.333333% !important}[dir='ltr'] .sm\:ltr\:ml-7\/12{margin-left:58.333333% !important}[dir='ltr'] .sm\:ltr\:mt-8\/12{margin-top:66.666667% !important}[dir='ltr'] .sm\:ltr\:mr-8\/12{margin-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:mb-8\/12{margin-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:ml-8\/12{margin-left:66.666667% !important}[dir='ltr'] .sm\:ltr\:mt-9\/12{margin-top:75% !important}[dir='ltr'] .sm\:ltr\:mr-9\/12{margin-right:75% !important}[dir='ltr'] .sm\:ltr\:mb-9\/12{margin-bottom:75% !important}[dir='ltr'] .sm\:ltr\:ml-9\/12{margin-left:75% !important}[dir='ltr'] .sm\:ltr\:mt-10\/12{margin-top:83.333333% !important}[dir='ltr'] .sm\:ltr\:mr-10\/12{margin-right:83.333333% !important}[dir='ltr'] .sm\:ltr\:mb-10\/12{margin-bottom:83.333333% !important}[dir='ltr'] .sm\:ltr\:ml-10\/12{margin-left:83.333333% !important}[dir='ltr'] .sm\:ltr\:mt-11\/12{margin-top:91.666667% !important}[dir='ltr'] .sm\:ltr\:mr-11\/12{margin-right:91.666667% !important}[dir='ltr'] .sm\:ltr\:mb-11\/12{margin-bottom:91.666667% !important}[dir='ltr'] .sm\:ltr\:ml-11\/12{margin-left:91.666667% !important}[dir='ltr'] .sm\:ltr\:mt-full{margin-top:100% !important}[dir='ltr'] .sm\:ltr\:mr-full{margin-right:100% !important}[dir='ltr'] .sm\:ltr\:mb-full{margin-bottom:100% !important}[dir='ltr'] .sm\:ltr\:ml-full{margin-left:100% !important}[dir='ltr'] .sm\:ltr\:-mt-1{margin-top:-0.25rem !important}[dir='ltr'] .sm\:ltr\:-mr-1{margin-right:-0.25rem !important}[dir='ltr'] .sm\:ltr\:-mb-1{margin-bottom:-0.25rem !important}[dir='ltr'] .sm\:ltr\:-ml-1{margin-left:-0.25rem !important}[dir='ltr'] .sm\:ltr\:-mt-2{margin-top:-0.5rem !important}[dir='ltr'] .sm\:ltr\:-mr-2{margin-right:-0.5rem !important}[dir='ltr'] .sm\:ltr\:-mb-2{margin-bottom:-0.5rem !important}[dir='ltr'] .sm\:ltr\:-ml-2{margin-left:-0.5rem !important}[dir='ltr'] .sm\:ltr\:-mt-3{margin-top:-0.75rem !important}[dir='ltr'] .sm\:ltr\:-mr-3{margin-right:-0.75rem !important}[dir='ltr'] .sm\:ltr\:-mb-3{margin-bottom:-0.75rem !important}[dir='ltr'] .sm\:ltr\:-ml-3{margin-left:-0.75rem !important}[dir='ltr'] .sm\:ltr\:-mt-4{margin-top:-1rem !important}[dir='ltr'] .sm\:ltr\:-mr-4{margin-right:-1rem !important}[dir='ltr'] .sm\:ltr\:-mb-4{margin-bottom:-1rem !important}[dir='ltr'] .sm\:ltr\:-ml-4{margin-left:-1rem !important}[dir='ltr'] .sm\:ltr\:-mt-5{margin-top:-1.25rem !important}[dir='ltr'] .sm\:ltr\:-mr-5{margin-right:-1.25rem !important}[dir='ltr'] .sm\:ltr\:-mb-5{margin-bottom:-1.25rem !important}[dir='ltr'] .sm\:ltr\:-ml-5{margin-left:-1.25rem !important}[dir='ltr'] .sm\:ltr\:-mt-6{margin-top:-1.5rem !important}[dir='ltr'] .sm\:ltr\:-mr-6{margin-right:-1.5rem !important}[dir='ltr'] .sm\:ltr\:-mb-6{margin-bottom:-1.5rem !important}[dir='ltr'] .sm\:ltr\:-ml-6{margin-left:-1.5rem !important}[dir='ltr'] .sm\:ltr\:-mt-7{margin-top:-1.75rem !important}[dir='ltr'] .sm\:ltr\:-mr-7{margin-right:-1.75rem !important}[dir='ltr'] .sm\:ltr\:-mb-7{margin-bottom:-1.75rem !important}[dir='ltr'] .sm\:ltr\:-ml-7{margin-left:-1.75rem !important}[dir='ltr'] .sm\:ltr\:-mt-8{margin-top:-2rem !important}[dir='ltr'] .sm\:ltr\:-mr-8{margin-right:-2rem !important}[dir='ltr'] .sm\:ltr\:-mb-8{margin-bottom:-2rem !important}[dir='ltr'] .sm\:ltr\:-ml-8{margin-left:-2rem !important}[dir='ltr'] .sm\:ltr\:-mt-9{margin-top:-2.25rem !important}[dir='ltr'] .sm\:ltr\:-mr-9{margin-right:-2.25rem !important}[dir='ltr'] .sm\:ltr\:-mb-9{margin-bottom:-2.25rem !important}[dir='ltr'] .sm\:ltr\:-ml-9{margin-left:-2.25rem !important}[dir='ltr'] .sm\:ltr\:-mt-10{margin-top:-2.5rem !important}[dir='ltr'] .sm\:ltr\:-mr-10{margin-right:-2.5rem !important}[dir='ltr'] .sm\:ltr\:-mb-10{margin-bottom:-2.5rem !important}[dir='ltr'] .sm\:ltr\:-ml-10{margin-left:-2.5rem !important}[dir='ltr'] .sm\:ltr\:-mt-11{margin-top:-2.75rem !important}[dir='ltr'] .sm\:ltr\:-mr-11{margin-right:-2.75rem !important}[dir='ltr'] .sm\:ltr\:-mb-11{margin-bottom:-2.75rem !important}[dir='ltr'] .sm\:ltr\:-ml-11{margin-left:-2.75rem !important}[dir='ltr'] .sm\:ltr\:-mt-12{margin-top:-3rem !important}[dir='ltr'] .sm\:ltr\:-mr-12{margin-right:-3rem !important}[dir='ltr'] .sm\:ltr\:-mb-12{margin-bottom:-3rem !important}[dir='ltr'] .sm\:ltr\:-ml-12{margin-left:-3rem !important}[dir='ltr'] .sm\:ltr\:-mt-13{margin-top:-3.25rem !important}[dir='ltr'] .sm\:ltr\:-mr-13{margin-right:-3.25rem !important}[dir='ltr'] .sm\:ltr\:-mb-13{margin-bottom:-3.25rem !important}[dir='ltr'] .sm\:ltr\:-ml-13{margin-left:-3.25rem !important}[dir='ltr'] .sm\:ltr\:-mt-14{margin-top:-3.5rem !important}[dir='ltr'] .sm\:ltr\:-mr-14{margin-right:-3.5rem !important}[dir='ltr'] .sm\:ltr\:-mb-14{margin-bottom:-3.5rem !important}[dir='ltr'] .sm\:ltr\:-ml-14{margin-left:-3.5rem !important}[dir='ltr'] .sm\:ltr\:-mt-15{margin-top:-3.75rem !important}[dir='ltr'] .sm\:ltr\:-mr-15{margin-right:-3.75rem !important}[dir='ltr'] .sm\:ltr\:-mb-15{margin-bottom:-3.75rem !important}[dir='ltr'] .sm\:ltr\:-ml-15{margin-left:-3.75rem !important}[dir='ltr'] .sm\:ltr\:-mt-16{margin-top:-4rem !important}[dir='ltr'] .sm\:ltr\:-mr-16{margin-right:-4rem !important}[dir='ltr'] .sm\:ltr\:-mb-16{margin-bottom:-4rem !important}[dir='ltr'] .sm\:ltr\:-ml-16{margin-left:-4rem !important}[dir='ltr'] .sm\:ltr\:-mt-20{margin-top:-5rem !important}[dir='ltr'] .sm\:ltr\:-mr-20{margin-right:-5rem !important}[dir='ltr'] .sm\:ltr\:-mb-20{margin-bottom:-5rem !important}[dir='ltr'] .sm\:ltr\:-ml-20{margin-left:-5rem !important}[dir='ltr'] .sm\:ltr\:-mt-24{margin-top:-6rem !important}[dir='ltr'] .sm\:ltr\:-mr-24{margin-right:-6rem !important}[dir='ltr'] .sm\:ltr\:-mb-24{margin-bottom:-6rem !important}[dir='ltr'] .sm\:ltr\:-ml-24{margin-left:-6rem !important}[dir='ltr'] .sm\:ltr\:-mt-28{margin-top:-7rem !important}[dir='ltr'] .sm\:ltr\:-mr-28{margin-right:-7rem !important}[dir='ltr'] .sm\:ltr\:-mb-28{margin-bottom:-7rem !important}[dir='ltr'] .sm\:ltr\:-ml-28{margin-left:-7rem !important}[dir='ltr'] .sm\:ltr\:-mt-32{margin-top:-8rem !important}[dir='ltr'] .sm\:ltr\:-mr-32{margin-right:-8rem !important}[dir='ltr'] .sm\:ltr\:-mb-32{margin-bottom:-8rem !important}[dir='ltr'] .sm\:ltr\:-ml-32{margin-left:-8rem !important}[dir='ltr'] .sm\:ltr\:-mt-36{margin-top:-9rem !important}[dir='ltr'] .sm\:ltr\:-mr-36{margin-right:-9rem !important}[dir='ltr'] .sm\:ltr\:-mb-36{margin-bottom:-9rem !important}[dir='ltr'] .sm\:ltr\:-ml-36{margin-left:-9rem !important}[dir='ltr'] .sm\:ltr\:-mt-40{margin-top:-10rem !important}[dir='ltr'] .sm\:ltr\:-mr-40{margin-right:-10rem !important}[dir='ltr'] .sm\:ltr\:-mb-40{margin-bottom:-10rem !important}[dir='ltr'] .sm\:ltr\:-ml-40{margin-left:-10rem !important}[dir='ltr'] .sm\:ltr\:-mt-48{margin-top:-12rem !important}[dir='ltr'] .sm\:ltr\:-mr-48{margin-right:-12rem !important}[dir='ltr'] .sm\:ltr\:-mb-48{margin-bottom:-12rem !important}[dir='ltr'] .sm\:ltr\:-ml-48{margin-left:-12rem !important}[dir='ltr'] .sm\:ltr\:-mt-56{margin-top:-14rem !important}[dir='ltr'] .sm\:ltr\:-mr-56{margin-right:-14rem !important}[dir='ltr'] .sm\:ltr\:-mb-56{margin-bottom:-14rem !important}[dir='ltr'] .sm\:ltr\:-ml-56{margin-left:-14rem !important}[dir='ltr'] .sm\:ltr\:-mt-60{margin-top:-15rem !important}[dir='ltr'] .sm\:ltr\:-mr-60{margin-right:-15rem !important}[dir='ltr'] .sm\:ltr\:-mb-60{margin-bottom:-15rem !important}[dir='ltr'] .sm\:ltr\:-ml-60{margin-left:-15rem !important}[dir='ltr'] .sm\:ltr\:-mt-64{margin-top:-16rem !important}[dir='ltr'] .sm\:ltr\:-mr-64{margin-right:-16rem !important}[dir='ltr'] .sm\:ltr\:-mb-64{margin-bottom:-16rem !important}[dir='ltr'] .sm\:ltr\:-ml-64{margin-left:-16rem !important}[dir='ltr'] .sm\:ltr\:-mt-72{margin-top:-18rem !important}[dir='ltr'] .sm\:ltr\:-mr-72{margin-right:-18rem !important}[dir='ltr'] .sm\:ltr\:-mb-72{margin-bottom:-18rem !important}[dir='ltr'] .sm\:ltr\:-ml-72{margin-left:-18rem !important}[dir='ltr'] .sm\:ltr\:-mt-80{margin-top:-20rem !important}[dir='ltr'] .sm\:ltr\:-mr-80{margin-right:-20rem !important}[dir='ltr'] .sm\:ltr\:-mb-80{margin-bottom:-20rem !important}[dir='ltr'] .sm\:ltr\:-ml-80{margin-left:-20rem !important}[dir='ltr'] .sm\:ltr\:-mt-96{margin-top:-24rem !important}[dir='ltr'] .sm\:ltr\:-mr-96{margin-right:-24rem !important}[dir='ltr'] .sm\:ltr\:-mb-96{margin-bottom:-24rem !important}[dir='ltr'] .sm\:ltr\:-ml-96{margin-left:-24rem !important}[dir='ltr'] .sm\:ltr\:-mt-px{margin-top:-1px !important}[dir='ltr'] .sm\:ltr\:-mr-px{margin-right:-1px !important}[dir='ltr'] .sm\:ltr\:-mb-px{margin-bottom:-1px !important}[dir='ltr'] .sm\:ltr\:-ml-px{margin-left:-1px !important}[dir='ltr'] .sm\:ltr\:-mt-0\.5{margin-top:-0.125rem !important}[dir='ltr'] .sm\:ltr\:-mr-0\.5{margin-right:-0.125rem !important}[dir='ltr'] .sm\:ltr\:-mb-0\.5{margin-bottom:-0.125rem !important}[dir='ltr'] .sm\:ltr\:-ml-0\.5{margin-left:-0.125rem !important}[dir='ltr'] .sm\:ltr\:-mt-1\.5{margin-top:-0.375rem !important}[dir='ltr'] .sm\:ltr\:-mr-1\.5{margin-right:-0.375rem !important}[dir='ltr'] .sm\:ltr\:-mb-1\.5{margin-bottom:-0.375rem !important}[dir='ltr'] .sm\:ltr\:-ml-1\.5{margin-left:-0.375rem !important}[dir='ltr'] .sm\:ltr\:-mt-2\.5{margin-top:-0.625rem !important}[dir='ltr'] .sm\:ltr\:-mr-2\.5{margin-right:-0.625rem !important}[dir='ltr'] .sm\:ltr\:-mb-2\.5{margin-bottom:-0.625rem !important}[dir='ltr'] .sm\:ltr\:-ml-2\.5{margin-left:-0.625rem !important}[dir='ltr'] .sm\:ltr\:-mt-3\.5{margin-top:-0.875rem !important}[dir='ltr'] .sm\:ltr\:-mr-3\.5{margin-right:-0.875rem !important}[dir='ltr'] .sm\:ltr\:-mb-3\.5{margin-bottom:-0.875rem !important}[dir='ltr'] .sm\:ltr\:-ml-3\.5{margin-left:-0.875rem !important}[dir='ltr'] .sm\:ltr\:-mt-1\/2{margin-top:-50% !important}[dir='ltr'] .sm\:ltr\:-mr-1\/2{margin-right:-50% !important}[dir='ltr'] .sm\:ltr\:-mb-1\/2{margin-bottom:-50% !important}[dir='ltr'] .sm\:ltr\:-ml-1\/2{margin-left:-50% !important}[dir='ltr'] .sm\:ltr\:-mt-1\/3{margin-top:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mr-1\/3{margin-right:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mb-1\/3{margin-bottom:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-ml-1\/3{margin-left:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mt-2\/3{margin-top:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mr-2\/3{margin-right:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mb-2\/3{margin-bottom:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-ml-2\/3{margin-left:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mt-1\/4{margin-top:-25% !important}[dir='ltr'] .sm\:ltr\:-mr-1\/4{margin-right:-25% !important}[dir='ltr'] .sm\:ltr\:-mb-1\/4{margin-bottom:-25% !important}[dir='ltr'] .sm\:ltr\:-ml-1\/4{margin-left:-25% !important}[dir='ltr'] .sm\:ltr\:-mt-2\/4{margin-top:-50% !important}[dir='ltr'] .sm\:ltr\:-mr-2\/4{margin-right:-50% !important}[dir='ltr'] .sm\:ltr\:-mb-2\/4{margin-bottom:-50% !important}[dir='ltr'] .sm\:ltr\:-ml-2\/4{margin-left:-50% !important}[dir='ltr'] .sm\:ltr\:-mt-3\/4{margin-top:-75% !important}[dir='ltr'] .sm\:ltr\:-mr-3\/4{margin-right:-75% !important}[dir='ltr'] .sm\:ltr\:-mb-3\/4{margin-bottom:-75% !important}[dir='ltr'] .sm\:ltr\:-ml-3\/4{margin-left:-75% !important}[dir='ltr'] .sm\:ltr\:-mt-1\/5{margin-top:-20% !important}[dir='ltr'] .sm\:ltr\:-mr-1\/5{margin-right:-20% !important}[dir='ltr'] .sm\:ltr\:-mb-1\/5{margin-bottom:-20% !important}[dir='ltr'] .sm\:ltr\:-ml-1\/5{margin-left:-20% !important}[dir='ltr'] .sm\:ltr\:-mt-2\/5{margin-top:-40% !important}[dir='ltr'] .sm\:ltr\:-mr-2\/5{margin-right:-40% !important}[dir='ltr'] .sm\:ltr\:-mb-2\/5{margin-bottom:-40% !important}[dir='ltr'] .sm\:ltr\:-ml-2\/5{margin-left:-40% !important}[dir='ltr'] .sm\:ltr\:-mt-3\/5{margin-top:-60% !important}[dir='ltr'] .sm\:ltr\:-mr-3\/5{margin-right:-60% !important}[dir='ltr'] .sm\:ltr\:-mb-3\/5{margin-bottom:-60% !important}[dir='ltr'] .sm\:ltr\:-ml-3\/5{margin-left:-60% !important}[dir='ltr'] .sm\:ltr\:-mt-4\/5{margin-top:-80% !important}[dir='ltr'] .sm\:ltr\:-mr-4\/5{margin-right:-80% !important}[dir='ltr'] .sm\:ltr\:-mb-4\/5{margin-bottom:-80% !important}[dir='ltr'] .sm\:ltr\:-ml-4\/5{margin-left:-80% !important}[dir='ltr'] .sm\:ltr\:-mt-1\/6{margin-top:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-mr-1\/6{margin-right:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-mb-1\/6{margin-bottom:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-ml-1\/6{margin-left:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-mt-2\/6{margin-top:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mr-2\/6{margin-right:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mb-2\/6{margin-bottom:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-ml-2\/6{margin-left:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mt-3\/6{margin-top:-50% !important}[dir='ltr'] .sm\:ltr\:-mr-3\/6{margin-right:-50% !important}[dir='ltr'] .sm\:ltr\:-mb-3\/6{margin-bottom:-50% !important}[dir='ltr'] .sm\:ltr\:-ml-3\/6{margin-left:-50% !important}[dir='ltr'] .sm\:ltr\:-mt-4\/6{margin-top:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mr-4\/6{margin-right:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mb-4\/6{margin-bottom:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-ml-4\/6{margin-left:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mt-5\/6{margin-top:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-mr-5\/6{margin-right:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-mb-5\/6{margin-bottom:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-ml-5\/6{margin-left:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-mt-1\/12{margin-top:-8.33333% !important}[dir='ltr'] .sm\:ltr\:-mr-1\/12{margin-right:-8.33333% !important}[dir='ltr'] .sm\:ltr\:-mb-1\/12{margin-bottom:-8.33333% !important}[dir='ltr'] .sm\:ltr\:-ml-1\/12{margin-left:-8.33333% !important}[dir='ltr'] .sm\:ltr\:-mt-2\/12{margin-top:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-mr-2\/12{margin-right:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-mb-2\/12{margin-bottom:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-ml-2\/12{margin-left:-16.66667% !important}[dir='ltr'] .sm\:ltr\:-mt-3\/12{margin-top:-25% !important}[dir='ltr'] .sm\:ltr\:-mr-3\/12{margin-right:-25% !important}[dir='ltr'] .sm\:ltr\:-mb-3\/12{margin-bottom:-25% !important}[dir='ltr'] .sm\:ltr\:-ml-3\/12{margin-left:-25% !important}[dir='ltr'] .sm\:ltr\:-mt-4\/12{margin-top:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mr-4\/12{margin-right:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mb-4\/12{margin-bottom:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-ml-4\/12{margin-left:-33.33333% !important}[dir='ltr'] .sm\:ltr\:-mt-5\/12{margin-top:-41.66667% !important}[dir='ltr'] .sm\:ltr\:-mr-5\/12{margin-right:-41.66667% !important}[dir='ltr'] .sm\:ltr\:-mb-5\/12{margin-bottom:-41.66667% !important}[dir='ltr'] .sm\:ltr\:-ml-5\/12{margin-left:-41.66667% !important}[dir='ltr'] .sm\:ltr\:-mt-6\/12{margin-top:-50% !important}[dir='ltr'] .sm\:ltr\:-mr-6\/12{margin-right:-50% !important}[dir='ltr'] .sm\:ltr\:-mb-6\/12{margin-bottom:-50% !important}[dir='ltr'] .sm\:ltr\:-ml-6\/12{margin-left:-50% !important}[dir='ltr'] .sm\:ltr\:-mt-7\/12{margin-top:-58.33333% !important}[dir='ltr'] .sm\:ltr\:-mr-7\/12{margin-right:-58.33333% !important}[dir='ltr'] .sm\:ltr\:-mb-7\/12{margin-bottom:-58.33333% !important}[dir='ltr'] .sm\:ltr\:-ml-7\/12{margin-left:-58.33333% !important}[dir='ltr'] .sm\:ltr\:-mt-8\/12{margin-top:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mr-8\/12{margin-right:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mb-8\/12{margin-bottom:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-ml-8\/12{margin-left:-66.66667% !important}[dir='ltr'] .sm\:ltr\:-mt-9\/12{margin-top:-75% !important}[dir='ltr'] .sm\:ltr\:-mr-9\/12{margin-right:-75% !important}[dir='ltr'] .sm\:ltr\:-mb-9\/12{margin-bottom:-75% !important}[dir='ltr'] .sm\:ltr\:-ml-9\/12{margin-left:-75% !important}[dir='ltr'] .sm\:ltr\:-mt-10\/12{margin-top:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-mr-10\/12{margin-right:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-mb-10\/12{margin-bottom:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-ml-10\/12{margin-left:-83.33333% !important}[dir='ltr'] .sm\:ltr\:-mt-11\/12{margin-top:-91.66667% !important}[dir='ltr'] .sm\:ltr\:-mr-11\/12{margin-right:-91.66667% !important}[dir='ltr'] .sm\:ltr\:-mb-11\/12{margin-bottom:-91.66667% !important}[dir='ltr'] .sm\:ltr\:-ml-11\/12{margin-left:-91.66667% !important}[dir='ltr'] .sm\:ltr\:-mt-full{margin-top:-100% !important}[dir='ltr'] .sm\:ltr\:-mr-full{margin-right:-100% !important}[dir='ltr'] .sm\:ltr\:-mb-full{margin-bottom:-100% !important}[dir='ltr'] .sm\:ltr\:-ml-full{margin-left:-100% !important}[dir='rtl'] .sm\:rtl\:m-0{margin:0 !important}[dir='rtl'] .sm\:rtl\:m-1{margin:.25rem !important}[dir='rtl'] .sm\:rtl\:m-2{margin:.5rem !important}[dir='rtl'] .sm\:rtl\:m-3{margin:.75rem !important}[dir='rtl'] .sm\:rtl\:m-4{margin:1rem !important}[dir='rtl'] .sm\:rtl\:m-5{margin:1.25rem !important}[dir='rtl'] .sm\:rtl\:m-6{margin:1.5rem !important}[dir='rtl'] .sm\:rtl\:m-7{margin:1.75rem !important}[dir='rtl'] .sm\:rtl\:m-8{margin:2rem !important}[dir='rtl'] .sm\:rtl\:m-9{margin:2.25rem !important}[dir='rtl'] .sm\:rtl\:m-10{margin:2.5rem !important}[dir='rtl'] .sm\:rtl\:m-11{margin:2.75rem !important}[dir='rtl'] .sm\:rtl\:m-12{margin:3rem !important}[dir='rtl'] .sm\:rtl\:m-13{margin:3.25rem !important}[dir='rtl'] .sm\:rtl\:m-14{margin:3.5rem !important}[dir='rtl'] .sm\:rtl\:m-15{margin:3.75rem !important}[dir='rtl'] .sm\:rtl\:m-16{margin:4rem !important}[dir='rtl'] .sm\:rtl\:m-20{margin:5rem !important}[dir='rtl'] .sm\:rtl\:m-24{margin:6rem !important}[dir='rtl'] .sm\:rtl\:m-28{margin:7rem !important}[dir='rtl'] .sm\:rtl\:m-32{margin:8rem !important}[dir='rtl'] .sm\:rtl\:m-36{margin:9rem !important}[dir='rtl'] .sm\:rtl\:m-40{margin:10rem !important}[dir='rtl'] .sm\:rtl\:m-48{margin:12rem !important}[dir='rtl'] .sm\:rtl\:m-56{margin:14rem !important}[dir='rtl'] .sm\:rtl\:m-60{margin:15rem !important}[dir='rtl'] .sm\:rtl\:m-64{margin:16rem !important}[dir='rtl'] .sm\:rtl\:m-72{margin:18rem !important}[dir='rtl'] .sm\:rtl\:m-80{margin:20rem !important}[dir='rtl'] .sm\:rtl\:m-96{margin:24rem !important}[dir='rtl'] .sm\:rtl\:m-auto{margin:auto !important}[dir='rtl'] .sm\:rtl\:m-px{margin:1px !important}[dir='rtl'] .sm\:rtl\:m-0\.5{margin:.125rem !important}[dir='rtl'] .sm\:rtl\:m-1\.5{margin:.375rem !important}[dir='rtl'] .sm\:rtl\:m-2\.5{margin:.625rem !important}[dir='rtl'] .sm\:rtl\:m-3\.5{margin:.875rem !important}[dir='rtl'] .sm\:rtl\:m-1\/2{margin:50% !important}[dir='rtl'] .sm\:rtl\:m-1\/3{margin:33.333333% !important}[dir='rtl'] .sm\:rtl\:m-2\/3{margin:66.666667% !important}[dir='rtl'] .sm\:rtl\:m-1\/4{margin:25% !important}[dir='rtl'] .sm\:rtl\:m-2\/4{margin:50% !important}[dir='rtl'] .sm\:rtl\:m-3\/4{margin:75% !important}[dir='rtl'] .sm\:rtl\:m-1\/5{margin:20% !important}[dir='rtl'] .sm\:rtl\:m-2\/5{margin:40% !important}[dir='rtl'] .sm\:rtl\:m-3\/5{margin:60% !important}[dir='rtl'] .sm\:rtl\:m-4\/5{margin:80% !important}[dir='rtl'] .sm\:rtl\:m-1\/6{margin:16.666667% !important}[dir='rtl'] .sm\:rtl\:m-2\/6{margin:33.333333% !important}[dir='rtl'] .sm\:rtl\:m-3\/6{margin:50% !important}[dir='rtl'] .sm\:rtl\:m-4\/6{margin:66.666667% !important}[dir='rtl'] .sm\:rtl\:m-5\/6{margin:83.333333% !important}[dir='rtl'] .sm\:rtl\:m-1\/12{margin:8.333333% !important}[dir='rtl'] .sm\:rtl\:m-2\/12{margin:16.666667% !important}[dir='rtl'] .sm\:rtl\:m-3\/12{margin:25% !important}[dir='rtl'] .sm\:rtl\:m-4\/12{margin:33.333333% !important}[dir='rtl'] .sm\:rtl\:m-5\/12{margin:41.666667% !important}[dir='rtl'] .sm\:rtl\:m-6\/12{margin:50% !important}[dir='rtl'] .sm\:rtl\:m-7\/12{margin:58.333333% !important}[dir='rtl'] .sm\:rtl\:m-8\/12{margin:66.666667% !important}[dir='rtl'] .sm\:rtl\:m-9\/12{margin:75% !important}[dir='rtl'] .sm\:rtl\:m-10\/12{margin:83.333333% !important}[dir='rtl'] .sm\:rtl\:m-11\/12{margin:91.666667% !important}[dir='rtl'] .sm\:rtl\:m-full{margin:100% !important}[dir='rtl'] .sm\:rtl\:-m-1{margin:-0.25rem !important}[dir='rtl'] .sm\:rtl\:-m-2{margin:-0.5rem !important}[dir='rtl'] .sm\:rtl\:-m-3{margin:-0.75rem !important}[dir='rtl'] .sm\:rtl\:-m-4{margin:-1rem !important}[dir='rtl'] .sm\:rtl\:-m-5{margin:-1.25rem !important}[dir='rtl'] .sm\:rtl\:-m-6{margin:-1.5rem !important}[dir='rtl'] .sm\:rtl\:-m-7{margin:-1.75rem !important}[dir='rtl'] .sm\:rtl\:-m-8{margin:-2rem !important}[dir='rtl'] .sm\:rtl\:-m-9{margin:-2.25rem !important}[dir='rtl'] .sm\:rtl\:-m-10{margin:-2.5rem !important}[dir='rtl'] .sm\:rtl\:-m-11{margin:-2.75rem !important}[dir='rtl'] .sm\:rtl\:-m-12{margin:-3rem !important}[dir='rtl'] .sm\:rtl\:-m-13{margin:-3.25rem !important}[dir='rtl'] .sm\:rtl\:-m-14{margin:-3.5rem !important}[dir='rtl'] .sm\:rtl\:-m-15{margin:-3.75rem !important}[dir='rtl'] .sm\:rtl\:-m-16{margin:-4rem !important}[dir='rtl'] .sm\:rtl\:-m-20{margin:-5rem !important}[dir='rtl'] .sm\:rtl\:-m-24{margin:-6rem !important}[dir='rtl'] .sm\:rtl\:-m-28{margin:-7rem !important}[dir='rtl'] .sm\:rtl\:-m-32{margin:-8rem !important}[dir='rtl'] .sm\:rtl\:-m-36{margin:-9rem !important}[dir='rtl'] .sm\:rtl\:-m-40{margin:-10rem !important}[dir='rtl'] .sm\:rtl\:-m-48{margin:-12rem !important}[dir='rtl'] .sm\:rtl\:-m-56{margin:-14rem !important}[dir='rtl'] .sm\:rtl\:-m-60{margin:-15rem !important}[dir='rtl'] .sm\:rtl\:-m-64{margin:-16rem !important}[dir='rtl'] .sm\:rtl\:-m-72{margin:-18rem !important}[dir='rtl'] .sm\:rtl\:-m-80{margin:-20rem !important}[dir='rtl'] .sm\:rtl\:-m-96{margin:-24rem !important}[dir='rtl'] .sm\:rtl\:-m-px{margin:-1px !important}[dir='rtl'] .sm\:rtl\:-m-0\.5{margin:-0.125rem !important}[dir='rtl'] .sm\:rtl\:-m-1\.5{margin:-0.375rem !important}[dir='rtl'] .sm\:rtl\:-m-2\.5{margin:-0.625rem !important}[dir='rtl'] .sm\:rtl\:-m-3\.5{margin:-0.875rem !important}[dir='rtl'] .sm\:rtl\:-m-1\/2{margin:-50% !important}[dir='rtl'] .sm\:rtl\:-m-1\/3{margin:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-m-2\/3{margin:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-m-1\/4{margin:-25% !important}[dir='rtl'] .sm\:rtl\:-m-2\/4{margin:-50% !important}[dir='rtl'] .sm\:rtl\:-m-3\/4{margin:-75% !important}[dir='rtl'] .sm\:rtl\:-m-1\/5{margin:-20% !important}[dir='rtl'] .sm\:rtl\:-m-2\/5{margin:-40% !important}[dir='rtl'] .sm\:rtl\:-m-3\/5{margin:-60% !important}[dir='rtl'] .sm\:rtl\:-m-4\/5{margin:-80% !important}[dir='rtl'] .sm\:rtl\:-m-1\/6{margin:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-m-2\/6{margin:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-m-3\/6{margin:-50% !important}[dir='rtl'] .sm\:rtl\:-m-4\/6{margin:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-m-5\/6{margin:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-m-1\/12{margin:-8.33333% !important}[dir='rtl'] .sm\:rtl\:-m-2\/12{margin:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-m-3\/12{margin:-25% !important}[dir='rtl'] .sm\:rtl\:-m-4\/12{margin:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-m-5\/12{margin:-41.66667% !important}[dir='rtl'] .sm\:rtl\:-m-6\/12{margin:-50% !important}[dir='rtl'] .sm\:rtl\:-m-7\/12{margin:-58.33333% !important}[dir='rtl'] .sm\:rtl\:-m-8\/12{margin:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-m-9\/12{margin:-75% !important}[dir='rtl'] .sm\:rtl\:-m-10\/12{margin:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-m-11\/12{margin:-91.66667% !important}[dir='rtl'] .sm\:rtl\:-m-full{margin:-100% !important}[dir='rtl'] .sm\:rtl\:my-0{margin-top:0 !important;margin-bottom:0 !important}[dir='rtl'] .sm\:rtl\:mx-0{margin-left:0 !important;margin-right:0 !important}[dir='rtl'] .sm\:rtl\:my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}[dir='rtl'] .sm\:rtl\:mx-1{margin-left:.25rem !important;margin-right:.25rem !important}[dir='rtl'] .sm\:rtl\:my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}[dir='rtl'] .sm\:rtl\:mx-2{margin-left:.5rem !important;margin-right:.5rem !important}[dir='rtl'] .sm\:rtl\:my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}[dir='rtl'] .sm\:rtl\:mx-3{margin-left:.75rem !important;margin-right:.75rem !important}[dir='rtl'] .sm\:rtl\:my-4{margin-top:1rem !important;margin-bottom:1rem !important}[dir='rtl'] .sm\:rtl\:mx-4{margin-left:1rem !important;margin-right:1rem !important}[dir='rtl'] .sm\:rtl\:my-5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}[dir='rtl'] .sm\:rtl\:mx-5{margin-left:1.25rem !important;margin-right:1.25rem !important}[dir='rtl'] .sm\:rtl\:my-6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}[dir='rtl'] .sm\:rtl\:mx-6{margin-left:1.5rem !important;margin-right:1.5rem !important}[dir='rtl'] .sm\:rtl\:my-7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}[dir='rtl'] .sm\:rtl\:mx-7{margin-left:1.75rem !important;margin-right:1.75rem !important}[dir='rtl'] .sm\:rtl\:my-8{margin-top:2rem !important;margin-bottom:2rem !important}[dir='rtl'] .sm\:rtl\:mx-8{margin-left:2rem !important;margin-right:2rem !important}[dir='rtl'] .sm\:rtl\:my-9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}[dir='rtl'] .sm\:rtl\:mx-9{margin-left:2.25rem !important;margin-right:2.25rem !important}[dir='rtl'] .sm\:rtl\:my-10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}[dir='rtl'] .sm\:rtl\:mx-10{margin-left:2.5rem !important;margin-right:2.5rem !important}[dir='rtl'] .sm\:rtl\:my-11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}[dir='rtl'] .sm\:rtl\:mx-11{margin-left:2.75rem !important;margin-right:2.75rem !important}[dir='rtl'] .sm\:rtl\:my-12{margin-top:3rem !important;margin-bottom:3rem !important}[dir='rtl'] .sm\:rtl\:mx-12{margin-left:3rem !important;margin-right:3rem !important}[dir='rtl'] .sm\:rtl\:my-13{margin-top:3.25rem !important;margin-bottom:3.25rem !important}[dir='rtl'] .sm\:rtl\:mx-13{margin-left:3.25rem !important;margin-right:3.25rem !important}[dir='rtl'] .sm\:rtl\:my-14{margin-top:3.5rem !important;margin-bottom:3.5rem !important}[dir='rtl'] .sm\:rtl\:mx-14{margin-left:3.5rem !important;margin-right:3.5rem !important}[dir='rtl'] .sm\:rtl\:my-15{margin-top:3.75rem !important;margin-bottom:3.75rem !important}[dir='rtl'] .sm\:rtl\:mx-15{margin-left:3.75rem !important;margin-right:3.75rem !important}[dir='rtl'] .sm\:rtl\:my-16{margin-top:4rem !important;margin-bottom:4rem !important}[dir='rtl'] .sm\:rtl\:mx-16{margin-left:4rem !important;margin-right:4rem !important}[dir='rtl'] .sm\:rtl\:my-20{margin-top:5rem !important;margin-bottom:5rem !important}[dir='rtl'] .sm\:rtl\:mx-20{margin-left:5rem !important;margin-right:5rem !important}[dir='rtl'] .sm\:rtl\:my-24{margin-top:6rem !important;margin-bottom:6rem !important}[dir='rtl'] .sm\:rtl\:mx-24{margin-left:6rem !important;margin-right:6rem !important}[dir='rtl'] .sm\:rtl\:my-28{margin-top:7rem !important;margin-bottom:7rem !important}[dir='rtl'] .sm\:rtl\:mx-28{margin-left:7rem !important;margin-right:7rem !important}[dir='rtl'] .sm\:rtl\:my-32{margin-top:8rem !important;margin-bottom:8rem !important}[dir='rtl'] .sm\:rtl\:mx-32{margin-left:8rem !important;margin-right:8rem !important}[dir='rtl'] .sm\:rtl\:my-36{margin-top:9rem !important;margin-bottom:9rem !important}[dir='rtl'] .sm\:rtl\:mx-36{margin-left:9rem !important;margin-right:9rem !important}[dir='rtl'] .sm\:rtl\:my-40{margin-top:10rem !important;margin-bottom:10rem !important}[dir='rtl'] .sm\:rtl\:mx-40{margin-left:10rem !important;margin-right:10rem !important}[dir='rtl'] .sm\:rtl\:my-48{margin-top:12rem !important;margin-bottom:12rem !important}[dir='rtl'] .sm\:rtl\:mx-48{margin-left:12rem !important;margin-right:12rem !important}[dir='rtl'] .sm\:rtl\:my-56{margin-top:14rem !important;margin-bottom:14rem !important}[dir='rtl'] .sm\:rtl\:mx-56{margin-left:14rem !important;margin-right:14rem !important}[dir='rtl'] .sm\:rtl\:my-60{margin-top:15rem !important;margin-bottom:15rem !important}[dir='rtl'] .sm\:rtl\:mx-60{margin-left:15rem !important;margin-right:15rem !important}[dir='rtl'] .sm\:rtl\:my-64{margin-top:16rem !important;margin-bottom:16rem !important}[dir='rtl'] .sm\:rtl\:mx-64{margin-left:16rem !important;margin-right:16rem !important}[dir='rtl'] .sm\:rtl\:my-72{margin-top:18rem !important;margin-bottom:18rem !important}[dir='rtl'] .sm\:rtl\:mx-72{margin-left:18rem !important;margin-right:18rem !important}[dir='rtl'] .sm\:rtl\:my-80{margin-top:20rem !important;margin-bottom:20rem !important}[dir='rtl'] .sm\:rtl\:mx-80{margin-left:20rem !important;margin-right:20rem !important}[dir='rtl'] .sm\:rtl\:my-96{margin-top:24rem !important;margin-bottom:24rem !important}[dir='rtl'] .sm\:rtl\:mx-96{margin-left:24rem !important;margin-right:24rem !important}[dir='rtl'] .sm\:rtl\:my-auto{margin-top:auto !important;margin-bottom:auto !important}[dir='rtl'] .sm\:rtl\:mx-auto{margin-left:auto !important;margin-right:auto !important}[dir='rtl'] .sm\:rtl\:my-px{margin-top:1px !important;margin-bottom:1px !important}[dir='rtl'] .sm\:rtl\:mx-px{margin-left:1px !important;margin-right:1px !important}[dir='rtl'] .sm\:rtl\:my-0\.5{margin-top:.125rem !important;margin-bottom:.125rem !important}[dir='rtl'] .sm\:rtl\:mx-0\.5{margin-left:.125rem !important;margin-right:.125rem !important}[dir='rtl'] .sm\:rtl\:my-1\.5{margin-top:.375rem !important;margin-bottom:.375rem !important}[dir='rtl'] .sm\:rtl\:mx-1\.5{margin-left:.375rem !important;margin-right:.375rem !important}[dir='rtl'] .sm\:rtl\:my-2\.5{margin-top:.625rem !important;margin-bottom:.625rem !important}[dir='rtl'] .sm\:rtl\:mx-2\.5{margin-left:.625rem !important;margin-right:.625rem !important}[dir='rtl'] .sm\:rtl\:my-3\.5{margin-top:.875rem !important;margin-bottom:.875rem !important}[dir='rtl'] .sm\:rtl\:mx-3\.5{margin-left:.875rem !important;margin-right:.875rem !important}[dir='rtl'] .sm\:rtl\:my-1\/2{margin-top:50% !important;margin-bottom:50% !important}[dir='rtl'] .sm\:rtl\:mx-1\/2{margin-left:50% !important;margin-right:50% !important}[dir='rtl'] .sm\:rtl\:my-1\/3{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:mx-1\/3{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:my-2\/3{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:mx-2\/3{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:my-1\/4{margin-top:25% !important;margin-bottom:25% !important}[dir='rtl'] .sm\:rtl\:mx-1\/4{margin-left:25% !important;margin-right:25% !important}[dir='rtl'] .sm\:rtl\:my-2\/4{margin-top:50% !important;margin-bottom:50% !important}[dir='rtl'] .sm\:rtl\:mx-2\/4{margin-left:50% !important;margin-right:50% !important}[dir='rtl'] .sm\:rtl\:my-3\/4{margin-top:75% !important;margin-bottom:75% !important}[dir='rtl'] .sm\:rtl\:mx-3\/4{margin-left:75% !important;margin-right:75% !important}[dir='rtl'] .sm\:rtl\:my-1\/5{margin-top:20% !important;margin-bottom:20% !important}[dir='rtl'] .sm\:rtl\:mx-1\/5{margin-left:20% !important;margin-right:20% !important}[dir='rtl'] .sm\:rtl\:my-2\/5{margin-top:40% !important;margin-bottom:40% !important}[dir='rtl'] .sm\:rtl\:mx-2\/5{margin-left:40% !important;margin-right:40% !important}[dir='rtl'] .sm\:rtl\:my-3\/5{margin-top:60% !important;margin-bottom:60% !important}[dir='rtl'] .sm\:rtl\:mx-3\/5{margin-left:60% !important;margin-right:60% !important}[dir='rtl'] .sm\:rtl\:my-4\/5{margin-top:80% !important;margin-bottom:80% !important}[dir='rtl'] .sm\:rtl\:mx-4\/5{margin-left:80% !important;margin-right:80% !important}[dir='rtl'] .sm\:rtl\:my-1\/6{margin-top:16.666667% !important;margin-bottom:16.666667% !important}[dir='rtl'] .sm\:rtl\:mx-1\/6{margin-left:16.666667% !important;margin-right:16.666667% !important}[dir='rtl'] .sm\:rtl\:my-2\/6{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:mx-2\/6{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:my-3\/6{margin-top:50% !important;margin-bottom:50% !important}[dir='rtl'] .sm\:rtl\:mx-3\/6{margin-left:50% !important;margin-right:50% !important}[dir='rtl'] .sm\:rtl\:my-4\/6{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:mx-4\/6{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:my-5\/6{margin-top:83.333333% !important;margin-bottom:83.333333% !important}[dir='rtl'] .sm\:rtl\:mx-5\/6{margin-left:83.333333% !important;margin-right:83.333333% !important}[dir='rtl'] .sm\:rtl\:my-1\/12{margin-top:8.333333% !important;margin-bottom:8.333333% !important}[dir='rtl'] .sm\:rtl\:mx-1\/12{margin-left:8.333333% !important;margin-right:8.333333% !important}[dir='rtl'] .sm\:rtl\:my-2\/12{margin-top:16.666667% !important;margin-bottom:16.666667% !important}[dir='rtl'] .sm\:rtl\:mx-2\/12{margin-left:16.666667% !important;margin-right:16.666667% !important}[dir='rtl'] .sm\:rtl\:my-3\/12{margin-top:25% !important;margin-bottom:25% !important}[dir='rtl'] .sm\:rtl\:mx-3\/12{margin-left:25% !important;margin-right:25% !important}[dir='rtl'] .sm\:rtl\:my-4\/12{margin-top:33.333333% !important;margin-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:mx-4\/12{margin-left:33.333333% !important;margin-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:my-5\/12{margin-top:41.666667% !important;margin-bottom:41.666667% !important}[dir='rtl'] .sm\:rtl\:mx-5\/12{margin-left:41.666667% !important;margin-right:41.666667% !important}[dir='rtl'] .sm\:rtl\:my-6\/12{margin-top:50% !important;margin-bottom:50% !important}[dir='rtl'] .sm\:rtl\:mx-6\/12{margin-left:50% !important;margin-right:50% !important}[dir='rtl'] .sm\:rtl\:my-7\/12{margin-top:58.333333% !important;margin-bottom:58.333333% !important}[dir='rtl'] .sm\:rtl\:mx-7\/12{margin-left:58.333333% !important;margin-right:58.333333% !important}[dir='rtl'] .sm\:rtl\:my-8\/12{margin-top:66.666667% !important;margin-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:mx-8\/12{margin-left:66.666667% !important;margin-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:my-9\/12{margin-top:75% !important;margin-bottom:75% !important}[dir='rtl'] .sm\:rtl\:mx-9\/12{margin-left:75% !important;margin-right:75% !important}[dir='rtl'] .sm\:rtl\:my-10\/12{margin-top:83.333333% !important;margin-bottom:83.333333% !important}[dir='rtl'] .sm\:rtl\:mx-10\/12{margin-left:83.333333% !important;margin-right:83.333333% !important}[dir='rtl'] .sm\:rtl\:my-11\/12{margin-top:91.666667% !important;margin-bottom:91.666667% !important}[dir='rtl'] .sm\:rtl\:mx-11\/12{margin-left:91.666667% !important;margin-right:91.666667% !important}[dir='rtl'] .sm\:rtl\:my-full{margin-top:100% !important;margin-bottom:100% !important}[dir='rtl'] .sm\:rtl\:mx-full{margin-left:100% !important;margin-right:100% !important}[dir='rtl'] .sm\:rtl\:-my-1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}[dir='rtl'] .sm\:rtl\:-mx-1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}[dir='rtl'] .sm\:rtl\:-my-2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}[dir='rtl'] .sm\:rtl\:-mx-2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}[dir='rtl'] .sm\:rtl\:-my-3{margin-top:-0.75rem !important;margin-bottom:-0.75rem !important}[dir='rtl'] .sm\:rtl\:-mx-3{margin-left:-0.75rem !important;margin-right:-0.75rem !important}[dir='rtl'] .sm\:rtl\:-my-4{margin-top:-1rem !important;margin-bottom:-1rem !important}[dir='rtl'] .sm\:rtl\:-mx-4{margin-left:-1rem !important;margin-right:-1rem !important}[dir='rtl'] .sm\:rtl\:-my-5{margin-top:-1.25rem !important;margin-bottom:-1.25rem !important}[dir='rtl'] .sm\:rtl\:-mx-5{margin-left:-1.25rem !important;margin-right:-1.25rem !important}[dir='rtl'] .sm\:rtl\:-my-6{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}[dir='rtl'] .sm\:rtl\:-mx-6{margin-left:-1.5rem !important;margin-right:-1.5rem !important}[dir='rtl'] .sm\:rtl\:-my-7{margin-top:-1.75rem !important;margin-bottom:-1.75rem !important}[dir='rtl'] .sm\:rtl\:-mx-7{margin-left:-1.75rem !important;margin-right:-1.75rem !important}[dir='rtl'] .sm\:rtl\:-my-8{margin-top:-2rem !important;margin-bottom:-2rem !important}[dir='rtl'] .sm\:rtl\:-mx-8{margin-left:-2rem !important;margin-right:-2rem !important}[dir='rtl'] .sm\:rtl\:-my-9{margin-top:-2.25rem !important;margin-bottom:-2.25rem !important}[dir='rtl'] .sm\:rtl\:-mx-9{margin-left:-2.25rem !important;margin-right:-2.25rem !important}[dir='rtl'] .sm\:rtl\:-my-10{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}[dir='rtl'] .sm\:rtl\:-mx-10{margin-left:-2.5rem !important;margin-right:-2.5rem !important}[dir='rtl'] .sm\:rtl\:-my-11{margin-top:-2.75rem !important;margin-bottom:-2.75rem !important}[dir='rtl'] .sm\:rtl\:-mx-11{margin-left:-2.75rem !important;margin-right:-2.75rem !important}[dir='rtl'] .sm\:rtl\:-my-12{margin-top:-3rem !important;margin-bottom:-3rem !important}[dir='rtl'] .sm\:rtl\:-mx-12{margin-left:-3rem !important;margin-right:-3rem !important}[dir='rtl'] .sm\:rtl\:-my-13{margin-top:-3.25rem !important;margin-bottom:-3.25rem !important}[dir='rtl'] .sm\:rtl\:-mx-13{margin-left:-3.25rem !important;margin-right:-3.25rem !important}[dir='rtl'] .sm\:rtl\:-my-14{margin-top:-3.5rem !important;margin-bottom:-3.5rem !important}[dir='rtl'] .sm\:rtl\:-mx-14{margin-left:-3.5rem !important;margin-right:-3.5rem !important}[dir='rtl'] .sm\:rtl\:-my-15{margin-top:-3.75rem !important;margin-bottom:-3.75rem !important}[dir='rtl'] .sm\:rtl\:-mx-15{margin-left:-3.75rem !important;margin-right:-3.75rem !important}[dir='rtl'] .sm\:rtl\:-my-16{margin-top:-4rem !important;margin-bottom:-4rem !important}[dir='rtl'] .sm\:rtl\:-mx-16{margin-left:-4rem !important;margin-right:-4rem !important}[dir='rtl'] .sm\:rtl\:-my-20{margin-top:-5rem !important;margin-bottom:-5rem !important}[dir='rtl'] .sm\:rtl\:-mx-20{margin-left:-5rem !important;margin-right:-5rem !important}[dir='rtl'] .sm\:rtl\:-my-24{margin-top:-6rem !important;margin-bottom:-6rem !important}[dir='rtl'] .sm\:rtl\:-mx-24{margin-left:-6rem !important;margin-right:-6rem !important}[dir='rtl'] .sm\:rtl\:-my-28{margin-top:-7rem !important;margin-bottom:-7rem !important}[dir='rtl'] .sm\:rtl\:-mx-28{margin-left:-7rem !important;margin-right:-7rem !important}[dir='rtl'] .sm\:rtl\:-my-32{margin-top:-8rem !important;margin-bottom:-8rem !important}[dir='rtl'] .sm\:rtl\:-mx-32{margin-left:-8rem !important;margin-right:-8rem !important}[dir='rtl'] .sm\:rtl\:-my-36{margin-top:-9rem !important;margin-bottom:-9rem !important}[dir='rtl'] .sm\:rtl\:-mx-36{margin-left:-9rem !important;margin-right:-9rem !important}[dir='rtl'] .sm\:rtl\:-my-40{margin-top:-10rem !important;margin-bottom:-10rem !important}[dir='rtl'] .sm\:rtl\:-mx-40{margin-left:-10rem !important;margin-right:-10rem !important}[dir='rtl'] .sm\:rtl\:-my-48{margin-top:-12rem !important;margin-bottom:-12rem !important}[dir='rtl'] .sm\:rtl\:-mx-48{margin-left:-12rem !important;margin-right:-12rem !important}[dir='rtl'] .sm\:rtl\:-my-56{margin-top:-14rem !important;margin-bottom:-14rem !important}[dir='rtl'] .sm\:rtl\:-mx-56{margin-left:-14rem !important;margin-right:-14rem !important}[dir='rtl'] .sm\:rtl\:-my-60{margin-top:-15rem !important;margin-bottom:-15rem !important}[dir='rtl'] .sm\:rtl\:-mx-60{margin-left:-15rem !important;margin-right:-15rem !important}[dir='rtl'] .sm\:rtl\:-my-64{margin-top:-16rem !important;margin-bottom:-16rem !important}[dir='rtl'] .sm\:rtl\:-mx-64{margin-left:-16rem !important;margin-right:-16rem !important}[dir='rtl'] .sm\:rtl\:-my-72{margin-top:-18rem !important;margin-bottom:-18rem !important}[dir='rtl'] .sm\:rtl\:-mx-72{margin-left:-18rem !important;margin-right:-18rem !important}[dir='rtl'] .sm\:rtl\:-my-80{margin-top:-20rem !important;margin-bottom:-20rem !important}[dir='rtl'] .sm\:rtl\:-mx-80{margin-left:-20rem !important;margin-right:-20rem !important}[dir='rtl'] .sm\:rtl\:-my-96{margin-top:-24rem !important;margin-bottom:-24rem !important}[dir='rtl'] .sm\:rtl\:-mx-96{margin-left:-24rem !important;margin-right:-24rem !important}[dir='rtl'] .sm\:rtl\:-my-px{margin-top:-1px !important;margin-bottom:-1px !important}[dir='rtl'] .sm\:rtl\:-mx-px{margin-left:-1px !important;margin-right:-1px !important}[dir='rtl'] .sm\:rtl\:-my-0\.5{margin-top:-0.125rem !important;margin-bottom:-0.125rem !important}[dir='rtl'] .sm\:rtl\:-mx-0\.5{margin-left:-0.125rem !important;margin-right:-0.125rem !important}[dir='rtl'] .sm\:rtl\:-my-1\.5{margin-top:-0.375rem !important;margin-bottom:-0.375rem !important}[dir='rtl'] .sm\:rtl\:-mx-1\.5{margin-left:-0.375rem !important;margin-right:-0.375rem !important}[dir='rtl'] .sm\:rtl\:-my-2\.5{margin-top:-0.625rem !important;margin-bottom:-0.625rem !important}[dir='rtl'] .sm\:rtl\:-mx-2\.5{margin-left:-0.625rem !important;margin-right:-0.625rem !important}[dir='rtl'] .sm\:rtl\:-my-3\.5{margin-top:-0.875rem !important;margin-bottom:-0.875rem !important}[dir='rtl'] .sm\:rtl\:-mx-3\.5{margin-left:-0.875rem !important;margin-right:-0.875rem !important}[dir='rtl'] .sm\:rtl\:-my-1\/2{margin-top:-50% !important;margin-bottom:-50% !important}[dir='rtl'] .sm\:rtl\:-mx-1\/2{margin-left:-50% !important;margin-right:-50% !important}[dir='rtl'] .sm\:rtl\:-my-1\/3{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mx-1\/3{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-my-2\/3{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mx-2\/3{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-my-1\/4{margin-top:-25% !important;margin-bottom:-25% !important}[dir='rtl'] .sm\:rtl\:-mx-1\/4{margin-left:-25% !important;margin-right:-25% !important}[dir='rtl'] .sm\:rtl\:-my-2\/4{margin-top:-50% !important;margin-bottom:-50% !important}[dir='rtl'] .sm\:rtl\:-mx-2\/4{margin-left:-50% !important;margin-right:-50% !important}[dir='rtl'] .sm\:rtl\:-my-3\/4{margin-top:-75% !important;margin-bottom:-75% !important}[dir='rtl'] .sm\:rtl\:-mx-3\/4{margin-left:-75% !important;margin-right:-75% !important}[dir='rtl'] .sm\:rtl\:-my-1\/5{margin-top:-20% !important;margin-bottom:-20% !important}[dir='rtl'] .sm\:rtl\:-mx-1\/5{margin-left:-20% !important;margin-right:-20% !important}[dir='rtl'] .sm\:rtl\:-my-2\/5{margin-top:-40% !important;margin-bottom:-40% !important}[dir='rtl'] .sm\:rtl\:-mx-2\/5{margin-left:-40% !important;margin-right:-40% !important}[dir='rtl'] .sm\:rtl\:-my-3\/5{margin-top:-60% !important;margin-bottom:-60% !important}[dir='rtl'] .sm\:rtl\:-mx-3\/5{margin-left:-60% !important;margin-right:-60% !important}[dir='rtl'] .sm\:rtl\:-my-4\/5{margin-top:-80% !important;margin-bottom:-80% !important}[dir='rtl'] .sm\:rtl\:-mx-4\/5{margin-left:-80% !important;margin-right:-80% !important}[dir='rtl'] .sm\:rtl\:-my-1\/6{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-mx-1\/6{margin-left:-16.66667% !important;margin-right:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-my-2\/6{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mx-2\/6{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-my-3\/6{margin-top:-50% !important;margin-bottom:-50% !important}[dir='rtl'] .sm\:rtl\:-mx-3\/6{margin-left:-50% !important;margin-right:-50% !important}[dir='rtl'] .sm\:rtl\:-my-4\/6{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mx-4\/6{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-my-5\/6{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-mx-5\/6{margin-left:-83.33333% !important;margin-right:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-my-1\/12{margin-top:-8.33333% !important;margin-bottom:-8.33333% !important}[dir='rtl'] .sm\:rtl\:-mx-1\/12{margin-left:-8.33333% !important;margin-right:-8.33333% !important}[dir='rtl'] .sm\:rtl\:-my-2\/12{margin-top:-16.66667% !important;margin-bottom:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-mx-2\/12{margin-left:-16.66667% !important;margin-right:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-my-3\/12{margin-top:-25% !important;margin-bottom:-25% !important}[dir='rtl'] .sm\:rtl\:-mx-3\/12{margin-left:-25% !important;margin-right:-25% !important}[dir='rtl'] .sm\:rtl\:-my-4\/12{margin-top:-33.33333% !important;margin-bottom:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mx-4\/12{margin-left:-33.33333% !important;margin-right:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-my-5\/12{margin-top:-41.66667% !important;margin-bottom:-41.66667% !important}[dir='rtl'] .sm\:rtl\:-mx-5\/12{margin-left:-41.66667% !important;margin-right:-41.66667% !important}[dir='rtl'] .sm\:rtl\:-my-6\/12{margin-top:-50% !important;margin-bottom:-50% !important}[dir='rtl'] .sm\:rtl\:-mx-6\/12{margin-left:-50% !important;margin-right:-50% !important}[dir='rtl'] .sm\:rtl\:-my-7\/12{margin-top:-58.33333% !important;margin-bottom:-58.33333% !important}[dir='rtl'] .sm\:rtl\:-mx-7\/12{margin-left:-58.33333% !important;margin-right:-58.33333% !important}[dir='rtl'] .sm\:rtl\:-my-8\/12{margin-top:-66.66667% !important;margin-bottom:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mx-8\/12{margin-left:-66.66667% !important;margin-right:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-my-9\/12{margin-top:-75% !important;margin-bottom:-75% !important}[dir='rtl'] .sm\:rtl\:-mx-9\/12{margin-left:-75% !important;margin-right:-75% !important}[dir='rtl'] .sm\:rtl\:-my-10\/12{margin-top:-83.33333% !important;margin-bottom:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-mx-10\/12{margin-left:-83.33333% !important;margin-right:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-my-11\/12{margin-top:-91.66667% !important;margin-bottom:-91.66667% !important}[dir='rtl'] .sm\:rtl\:-mx-11\/12{margin-left:-91.66667% !important;margin-right:-91.66667% !important}[dir='rtl'] .sm\:rtl\:-my-full{margin-top:-100% !important;margin-bottom:-100% !important}[dir='rtl'] .sm\:rtl\:-mx-full{margin-left:-100% !important;margin-right:-100% !important}[dir='rtl'] .sm\:rtl\:mt-0{margin-top:0 !important}[dir='rtl'] .sm\:rtl\:mr-0{margin-right:0 !important}[dir='rtl'] .sm\:rtl\:mb-0{margin-bottom:0 !important}[dir='rtl'] .sm\:rtl\:ml-0{margin-left:0 !important}[dir='rtl'] .sm\:rtl\:mt-1{margin-top:.25rem !important}[dir='rtl'] .sm\:rtl\:mr-1{margin-right:.25rem !important}[dir='rtl'] .sm\:rtl\:mb-1{margin-bottom:.25rem !important}[dir='rtl'] .sm\:rtl\:ml-1{margin-left:.25rem !important}[dir='rtl'] .sm\:rtl\:mt-2{margin-top:.5rem !important}[dir='rtl'] .sm\:rtl\:mr-2{margin-right:.5rem !important}[dir='rtl'] .sm\:rtl\:mb-2{margin-bottom:.5rem !important}[dir='rtl'] .sm\:rtl\:ml-2{margin-left:.5rem !important}[dir='rtl'] .sm\:rtl\:mt-3{margin-top:.75rem !important}[dir='rtl'] .sm\:rtl\:mr-3{margin-right:.75rem !important}[dir='rtl'] .sm\:rtl\:mb-3{margin-bottom:.75rem !important}[dir='rtl'] .sm\:rtl\:ml-3{margin-left:.75rem !important}[dir='rtl'] .sm\:rtl\:mt-4{margin-top:1rem !important}[dir='rtl'] .sm\:rtl\:mr-4{margin-right:1rem !important}[dir='rtl'] .sm\:rtl\:mb-4{margin-bottom:1rem !important}[dir='rtl'] .sm\:rtl\:ml-4{margin-left:1rem !important}[dir='rtl'] .sm\:rtl\:mt-5{margin-top:1.25rem !important}[dir='rtl'] .sm\:rtl\:mr-5{margin-right:1.25rem !important}[dir='rtl'] .sm\:rtl\:mb-5{margin-bottom:1.25rem !important}[dir='rtl'] .sm\:rtl\:ml-5{margin-left:1.25rem !important}[dir='rtl'] .sm\:rtl\:mt-6{margin-top:1.5rem !important}[dir='rtl'] .sm\:rtl\:mr-6{margin-right:1.5rem !important}[dir='rtl'] .sm\:rtl\:mb-6{margin-bottom:1.5rem !important}[dir='rtl'] .sm\:rtl\:ml-6{margin-left:1.5rem !important}[dir='rtl'] .sm\:rtl\:mt-7{margin-top:1.75rem !important}[dir='rtl'] .sm\:rtl\:mr-7{margin-right:1.75rem !important}[dir='rtl'] .sm\:rtl\:mb-7{margin-bottom:1.75rem !important}[dir='rtl'] .sm\:rtl\:ml-7{margin-left:1.75rem !important}[dir='rtl'] .sm\:rtl\:mt-8{margin-top:2rem !important}[dir='rtl'] .sm\:rtl\:mr-8{margin-right:2rem !important}[dir='rtl'] .sm\:rtl\:mb-8{margin-bottom:2rem !important}[dir='rtl'] .sm\:rtl\:ml-8{margin-left:2rem !important}[dir='rtl'] .sm\:rtl\:mt-9{margin-top:2.25rem !important}[dir='rtl'] .sm\:rtl\:mr-9{margin-right:2.25rem !important}[dir='rtl'] .sm\:rtl\:mb-9{margin-bottom:2.25rem !important}[dir='rtl'] .sm\:rtl\:ml-9{margin-left:2.25rem !important}[dir='rtl'] .sm\:rtl\:mt-10{margin-top:2.5rem !important}[dir='rtl'] .sm\:rtl\:mr-10{margin-right:2.5rem !important}[dir='rtl'] .sm\:rtl\:mb-10{margin-bottom:2.5rem !important}[dir='rtl'] .sm\:rtl\:ml-10{margin-left:2.5rem !important}[dir='rtl'] .sm\:rtl\:mt-11{margin-top:2.75rem !important}[dir='rtl'] .sm\:rtl\:mr-11{margin-right:2.75rem !important}[dir='rtl'] .sm\:rtl\:mb-11{margin-bottom:2.75rem !important}[dir='rtl'] .sm\:rtl\:ml-11{margin-left:2.75rem !important}[dir='rtl'] .sm\:rtl\:mt-12{margin-top:3rem !important}[dir='rtl'] .sm\:rtl\:mr-12{margin-right:3rem !important}[dir='rtl'] .sm\:rtl\:mb-12{margin-bottom:3rem !important}[dir='rtl'] .sm\:rtl\:ml-12{margin-left:3rem !important}[dir='rtl'] .sm\:rtl\:mt-13{margin-top:3.25rem !important}[dir='rtl'] .sm\:rtl\:mr-13{margin-right:3.25rem !important}[dir='rtl'] .sm\:rtl\:mb-13{margin-bottom:3.25rem !important}[dir='rtl'] .sm\:rtl\:ml-13{margin-left:3.25rem !important}[dir='rtl'] .sm\:rtl\:mt-14{margin-top:3.5rem !important}[dir='rtl'] .sm\:rtl\:mr-14{margin-right:3.5rem !important}[dir='rtl'] .sm\:rtl\:mb-14{margin-bottom:3.5rem !important}[dir='rtl'] .sm\:rtl\:ml-14{margin-left:3.5rem !important}[dir='rtl'] .sm\:rtl\:mt-15{margin-top:3.75rem !important}[dir='rtl'] .sm\:rtl\:mr-15{margin-right:3.75rem !important}[dir='rtl'] .sm\:rtl\:mb-15{margin-bottom:3.75rem !important}[dir='rtl'] .sm\:rtl\:ml-15{margin-left:3.75rem !important}[dir='rtl'] .sm\:rtl\:mt-16{margin-top:4rem !important}[dir='rtl'] .sm\:rtl\:mr-16{margin-right:4rem !important}[dir='rtl'] .sm\:rtl\:mb-16{margin-bottom:4rem !important}[dir='rtl'] .sm\:rtl\:ml-16{margin-left:4rem !important}[dir='rtl'] .sm\:rtl\:mt-20{margin-top:5rem !important}[dir='rtl'] .sm\:rtl\:mr-20{margin-right:5rem !important}[dir='rtl'] .sm\:rtl\:mb-20{margin-bottom:5rem !important}[dir='rtl'] .sm\:rtl\:ml-20{margin-left:5rem !important}[dir='rtl'] .sm\:rtl\:mt-24{margin-top:6rem !important}[dir='rtl'] .sm\:rtl\:mr-24{margin-right:6rem !important}[dir='rtl'] .sm\:rtl\:mb-24{margin-bottom:6rem !important}[dir='rtl'] .sm\:rtl\:ml-24{margin-left:6rem !important}[dir='rtl'] .sm\:rtl\:mt-28{margin-top:7rem !important}[dir='rtl'] .sm\:rtl\:mr-28{margin-right:7rem !important}[dir='rtl'] .sm\:rtl\:mb-28{margin-bottom:7rem !important}[dir='rtl'] .sm\:rtl\:ml-28{margin-left:7rem !important}[dir='rtl'] .sm\:rtl\:mt-32{margin-top:8rem !important}[dir='rtl'] .sm\:rtl\:mr-32{margin-right:8rem !important}[dir='rtl'] .sm\:rtl\:mb-32{margin-bottom:8rem !important}[dir='rtl'] .sm\:rtl\:ml-32{margin-left:8rem !important}[dir='rtl'] .sm\:rtl\:mt-36{margin-top:9rem !important}[dir='rtl'] .sm\:rtl\:mr-36{margin-right:9rem !important}[dir='rtl'] .sm\:rtl\:mb-36{margin-bottom:9rem !important}[dir='rtl'] .sm\:rtl\:ml-36{margin-left:9rem !important}[dir='rtl'] .sm\:rtl\:mt-40{margin-top:10rem !important}[dir='rtl'] .sm\:rtl\:mr-40{margin-right:10rem !important}[dir='rtl'] .sm\:rtl\:mb-40{margin-bottom:10rem !important}[dir='rtl'] .sm\:rtl\:ml-40{margin-left:10rem !important}[dir='rtl'] .sm\:rtl\:mt-48{margin-top:12rem !important}[dir='rtl'] .sm\:rtl\:mr-48{margin-right:12rem !important}[dir='rtl'] .sm\:rtl\:mb-48{margin-bottom:12rem !important}[dir='rtl'] .sm\:rtl\:ml-48{margin-left:12rem !important}[dir='rtl'] .sm\:rtl\:mt-56{margin-top:14rem !important}[dir='rtl'] .sm\:rtl\:mr-56{margin-right:14rem !important}[dir='rtl'] .sm\:rtl\:mb-56{margin-bottom:14rem !important}[dir='rtl'] .sm\:rtl\:ml-56{margin-left:14rem !important}[dir='rtl'] .sm\:rtl\:mt-60{margin-top:15rem !important}[dir='rtl'] .sm\:rtl\:mr-60{margin-right:15rem !important}[dir='rtl'] .sm\:rtl\:mb-60{margin-bottom:15rem !important}[dir='rtl'] .sm\:rtl\:ml-60{margin-left:15rem !important}[dir='rtl'] .sm\:rtl\:mt-64{margin-top:16rem !important}[dir='rtl'] .sm\:rtl\:mr-64{margin-right:16rem !important}[dir='rtl'] .sm\:rtl\:mb-64{margin-bottom:16rem !important}[dir='rtl'] .sm\:rtl\:ml-64{margin-left:16rem !important}[dir='rtl'] .sm\:rtl\:mt-72{margin-top:18rem !important}[dir='rtl'] .sm\:rtl\:mr-72{margin-right:18rem !important}[dir='rtl'] .sm\:rtl\:mb-72{margin-bottom:18rem !important}[dir='rtl'] .sm\:rtl\:ml-72{margin-left:18rem !important}[dir='rtl'] .sm\:rtl\:mt-80{margin-top:20rem !important}[dir='rtl'] .sm\:rtl\:mr-80{margin-right:20rem !important}[dir='rtl'] .sm\:rtl\:mb-80{margin-bottom:20rem !important}[dir='rtl'] .sm\:rtl\:ml-80{margin-left:20rem !important}[dir='rtl'] .sm\:rtl\:mt-96{margin-top:24rem !important}[dir='rtl'] .sm\:rtl\:mr-96{margin-right:24rem !important}[dir='rtl'] .sm\:rtl\:mb-96{margin-bottom:24rem !important}[dir='rtl'] .sm\:rtl\:ml-96{margin-left:24rem !important}[dir='rtl'] .sm\:rtl\:mt-auto{margin-top:auto !important}[dir='rtl'] .sm\:rtl\:mr-auto{margin-right:auto !important}[dir='rtl'] .sm\:rtl\:mb-auto{margin-bottom:auto !important}[dir='rtl'] .sm\:rtl\:ml-auto{margin-left:auto !important}[dir='rtl'] .sm\:rtl\:mt-px{margin-top:1px !important}[dir='rtl'] .sm\:rtl\:mr-px{margin-right:1px !important}[dir='rtl'] .sm\:rtl\:mb-px{margin-bottom:1px !important}[dir='rtl'] .sm\:rtl\:ml-px{margin-left:1px !important}[dir='rtl'] .sm\:rtl\:mt-0\.5{margin-top:.125rem !important}[dir='rtl'] .sm\:rtl\:mr-0\.5{margin-right:.125rem !important}[dir='rtl'] .sm\:rtl\:mb-0\.5{margin-bottom:.125rem !important}[dir='rtl'] .sm\:rtl\:ml-0\.5{margin-left:.125rem !important}[dir='rtl'] .sm\:rtl\:mt-1\.5{margin-top:.375rem !important}[dir='rtl'] .sm\:rtl\:mr-1\.5{margin-right:.375rem !important}[dir='rtl'] .sm\:rtl\:mb-1\.5{margin-bottom:.375rem !important}[dir='rtl'] .sm\:rtl\:ml-1\.5{margin-left:.375rem !important}[dir='rtl'] .sm\:rtl\:mt-2\.5{margin-top:.625rem !important}[dir='rtl'] .sm\:rtl\:mr-2\.5{margin-right:.625rem !important}[dir='rtl'] .sm\:rtl\:mb-2\.5{margin-bottom:.625rem !important}[dir='rtl'] .sm\:rtl\:ml-2\.5{margin-left:.625rem !important}[dir='rtl'] .sm\:rtl\:mt-3\.5{margin-top:.875rem !important}[dir='rtl'] .sm\:rtl\:mr-3\.5{margin-right:.875rem !important}[dir='rtl'] .sm\:rtl\:mb-3\.5{margin-bottom:.875rem !important}[dir='rtl'] .sm\:rtl\:ml-3\.5{margin-left:.875rem !important}[dir='rtl'] .sm\:rtl\:mt-1\/2{margin-top:50% !important}[dir='rtl'] .sm\:rtl\:mr-1\/2{margin-right:50% !important}[dir='rtl'] .sm\:rtl\:mb-1\/2{margin-bottom:50% !important}[dir='rtl'] .sm\:rtl\:ml-1\/2{margin-left:50% !important}[dir='rtl'] .sm\:rtl\:mt-1\/3{margin-top:33.333333% !important}[dir='rtl'] .sm\:rtl\:mr-1\/3{margin-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:mb-1\/3{margin-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:ml-1\/3{margin-left:33.333333% !important}[dir='rtl'] .sm\:rtl\:mt-2\/3{margin-top:66.666667% !important}[dir='rtl'] .sm\:rtl\:mr-2\/3{margin-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:mb-2\/3{margin-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:ml-2\/3{margin-left:66.666667% !important}[dir='rtl'] .sm\:rtl\:mt-1\/4{margin-top:25% !important}[dir='rtl'] .sm\:rtl\:mr-1\/4{margin-right:25% !important}[dir='rtl'] .sm\:rtl\:mb-1\/4{margin-bottom:25% !important}[dir='rtl'] .sm\:rtl\:ml-1\/4{margin-left:25% !important}[dir='rtl'] .sm\:rtl\:mt-2\/4{margin-top:50% !important}[dir='rtl'] .sm\:rtl\:mr-2\/4{margin-right:50% !important}[dir='rtl'] .sm\:rtl\:mb-2\/4{margin-bottom:50% !important}[dir='rtl'] .sm\:rtl\:ml-2\/4{margin-left:50% !important}[dir='rtl'] .sm\:rtl\:mt-3\/4{margin-top:75% !important}[dir='rtl'] .sm\:rtl\:mr-3\/4{margin-right:75% !important}[dir='rtl'] .sm\:rtl\:mb-3\/4{margin-bottom:75% !important}[dir='rtl'] .sm\:rtl\:ml-3\/4{margin-left:75% !important}[dir='rtl'] .sm\:rtl\:mt-1\/5{margin-top:20% !important}[dir='rtl'] .sm\:rtl\:mr-1\/5{margin-right:20% !important}[dir='rtl'] .sm\:rtl\:mb-1\/5{margin-bottom:20% !important}[dir='rtl'] .sm\:rtl\:ml-1\/5{margin-left:20% !important}[dir='rtl'] .sm\:rtl\:mt-2\/5{margin-top:40% !important}[dir='rtl'] .sm\:rtl\:mr-2\/5{margin-right:40% !important}[dir='rtl'] .sm\:rtl\:mb-2\/5{margin-bottom:40% !important}[dir='rtl'] .sm\:rtl\:ml-2\/5{margin-left:40% !important}[dir='rtl'] .sm\:rtl\:mt-3\/5{margin-top:60% !important}[dir='rtl'] .sm\:rtl\:mr-3\/5{margin-right:60% !important}[dir='rtl'] .sm\:rtl\:mb-3\/5{margin-bottom:60% !important}[dir='rtl'] .sm\:rtl\:ml-3\/5{margin-left:60% !important}[dir='rtl'] .sm\:rtl\:mt-4\/5{margin-top:80% !important}[dir='rtl'] .sm\:rtl\:mr-4\/5{margin-right:80% !important}[dir='rtl'] .sm\:rtl\:mb-4\/5{margin-bottom:80% !important}[dir='rtl'] .sm\:rtl\:ml-4\/5{margin-left:80% !important}[dir='rtl'] .sm\:rtl\:mt-1\/6{margin-top:16.666667% !important}[dir='rtl'] .sm\:rtl\:mr-1\/6{margin-right:16.666667% !important}[dir='rtl'] .sm\:rtl\:mb-1\/6{margin-bottom:16.666667% !important}[dir='rtl'] .sm\:rtl\:ml-1\/6{margin-left:16.666667% !important}[dir='rtl'] .sm\:rtl\:mt-2\/6{margin-top:33.333333% !important}[dir='rtl'] .sm\:rtl\:mr-2\/6{margin-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:mb-2\/6{margin-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:ml-2\/6{margin-left:33.333333% !important}[dir='rtl'] .sm\:rtl\:mt-3\/6{margin-top:50% !important}[dir='rtl'] .sm\:rtl\:mr-3\/6{margin-right:50% !important}[dir='rtl'] .sm\:rtl\:mb-3\/6{margin-bottom:50% !important}[dir='rtl'] .sm\:rtl\:ml-3\/6{margin-left:50% !important}[dir='rtl'] .sm\:rtl\:mt-4\/6{margin-top:66.666667% !important}[dir='rtl'] .sm\:rtl\:mr-4\/6{margin-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:mb-4\/6{margin-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:ml-4\/6{margin-left:66.666667% !important}[dir='rtl'] .sm\:rtl\:mt-5\/6{margin-top:83.333333% !important}[dir='rtl'] .sm\:rtl\:mr-5\/6{margin-right:83.333333% !important}[dir='rtl'] .sm\:rtl\:mb-5\/6{margin-bottom:83.333333% !important}[dir='rtl'] .sm\:rtl\:ml-5\/6{margin-left:83.333333% !important}[dir='rtl'] .sm\:rtl\:mt-1\/12{margin-top:8.333333% !important}[dir='rtl'] .sm\:rtl\:mr-1\/12{margin-right:8.333333% !important}[dir='rtl'] .sm\:rtl\:mb-1\/12{margin-bottom:8.333333% !important}[dir='rtl'] .sm\:rtl\:ml-1\/12{margin-left:8.333333% !important}[dir='rtl'] .sm\:rtl\:mt-2\/12{margin-top:16.666667% !important}[dir='rtl'] .sm\:rtl\:mr-2\/12{margin-right:16.666667% !important}[dir='rtl'] .sm\:rtl\:mb-2\/12{margin-bottom:16.666667% !important}[dir='rtl'] .sm\:rtl\:ml-2\/12{margin-left:16.666667% !important}[dir='rtl'] .sm\:rtl\:mt-3\/12{margin-top:25% !important}[dir='rtl'] .sm\:rtl\:mr-3\/12{margin-right:25% !important}[dir='rtl'] .sm\:rtl\:mb-3\/12{margin-bottom:25% !important}[dir='rtl'] .sm\:rtl\:ml-3\/12{margin-left:25% !important}[dir='rtl'] .sm\:rtl\:mt-4\/12{margin-top:33.333333% !important}[dir='rtl'] .sm\:rtl\:mr-4\/12{margin-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:mb-4\/12{margin-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:ml-4\/12{margin-left:33.333333% !important}[dir='rtl'] .sm\:rtl\:mt-5\/12{margin-top:41.666667% !important}[dir='rtl'] .sm\:rtl\:mr-5\/12{margin-right:41.666667% !important}[dir='rtl'] .sm\:rtl\:mb-5\/12{margin-bottom:41.666667% !important}[dir='rtl'] .sm\:rtl\:ml-5\/12{margin-left:41.666667% !important}[dir='rtl'] .sm\:rtl\:mt-6\/12{margin-top:50% !important}[dir='rtl'] .sm\:rtl\:mr-6\/12{margin-right:50% !important}[dir='rtl'] .sm\:rtl\:mb-6\/12{margin-bottom:50% !important}[dir='rtl'] .sm\:rtl\:ml-6\/12{margin-left:50% !important}[dir='rtl'] .sm\:rtl\:mt-7\/12{margin-top:58.333333% !important}[dir='rtl'] .sm\:rtl\:mr-7\/12{margin-right:58.333333% !important}[dir='rtl'] .sm\:rtl\:mb-7\/12{margin-bottom:58.333333% !important}[dir='rtl'] .sm\:rtl\:ml-7\/12{margin-left:58.333333% !important}[dir='rtl'] .sm\:rtl\:mt-8\/12{margin-top:66.666667% !important}[dir='rtl'] .sm\:rtl\:mr-8\/12{margin-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:mb-8\/12{margin-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:ml-8\/12{margin-left:66.666667% !important}[dir='rtl'] .sm\:rtl\:mt-9\/12{margin-top:75% !important}[dir='rtl'] .sm\:rtl\:mr-9\/12{margin-right:75% !important}[dir='rtl'] .sm\:rtl\:mb-9\/12{margin-bottom:75% !important}[dir='rtl'] .sm\:rtl\:ml-9\/12{margin-left:75% !important}[dir='rtl'] .sm\:rtl\:mt-10\/12{margin-top:83.333333% !important}[dir='rtl'] .sm\:rtl\:mr-10\/12{margin-right:83.333333% !important}[dir='rtl'] .sm\:rtl\:mb-10\/12{margin-bottom:83.333333% !important}[dir='rtl'] .sm\:rtl\:ml-10\/12{margin-left:83.333333% !important}[dir='rtl'] .sm\:rtl\:mt-11\/12{margin-top:91.666667% !important}[dir='rtl'] .sm\:rtl\:mr-11\/12{margin-right:91.666667% !important}[dir='rtl'] .sm\:rtl\:mb-11\/12{margin-bottom:91.666667% !important}[dir='rtl'] .sm\:rtl\:ml-11\/12{margin-left:91.666667% !important}[dir='rtl'] .sm\:rtl\:mt-full{margin-top:100% !important}[dir='rtl'] .sm\:rtl\:mr-full{margin-right:100% !important}[dir='rtl'] .sm\:rtl\:mb-full{margin-bottom:100% !important}[dir='rtl'] .sm\:rtl\:ml-full{margin-left:100% !important}[dir='rtl'] .sm\:rtl\:-mt-1{margin-top:-0.25rem !important}[dir='rtl'] .sm\:rtl\:-mr-1{margin-right:-0.25rem !important}[dir='rtl'] .sm\:rtl\:-mb-1{margin-bottom:-0.25rem !important}[dir='rtl'] .sm\:rtl\:-ml-1{margin-left:-0.25rem !important}[dir='rtl'] .sm\:rtl\:-mt-2{margin-top:-0.5rem !important}[dir='rtl'] .sm\:rtl\:-mr-2{margin-right:-0.5rem !important}[dir='rtl'] .sm\:rtl\:-mb-2{margin-bottom:-0.5rem !important}[dir='rtl'] .sm\:rtl\:-ml-2{margin-left:-0.5rem !important}[dir='rtl'] .sm\:rtl\:-mt-3{margin-top:-0.75rem !important}[dir='rtl'] .sm\:rtl\:-mr-3{margin-right:-0.75rem !important}[dir='rtl'] .sm\:rtl\:-mb-3{margin-bottom:-0.75rem !important}[dir='rtl'] .sm\:rtl\:-ml-3{margin-left:-0.75rem !important}[dir='rtl'] .sm\:rtl\:-mt-4{margin-top:-1rem !important}[dir='rtl'] .sm\:rtl\:-mr-4{margin-right:-1rem !important}[dir='rtl'] .sm\:rtl\:-mb-4{margin-bottom:-1rem !important}[dir='rtl'] .sm\:rtl\:-ml-4{margin-left:-1rem !important}[dir='rtl'] .sm\:rtl\:-mt-5{margin-top:-1.25rem !important}[dir='rtl'] .sm\:rtl\:-mr-5{margin-right:-1.25rem !important}[dir='rtl'] .sm\:rtl\:-mb-5{margin-bottom:-1.25rem !important}[dir='rtl'] .sm\:rtl\:-ml-5{margin-left:-1.25rem !important}[dir='rtl'] .sm\:rtl\:-mt-6{margin-top:-1.5rem !important}[dir='rtl'] .sm\:rtl\:-mr-6{margin-right:-1.5rem !important}[dir='rtl'] .sm\:rtl\:-mb-6{margin-bottom:-1.5rem !important}[dir='rtl'] .sm\:rtl\:-ml-6{margin-left:-1.5rem !important}[dir='rtl'] .sm\:rtl\:-mt-7{margin-top:-1.75rem !important}[dir='rtl'] .sm\:rtl\:-mr-7{margin-right:-1.75rem !important}[dir='rtl'] .sm\:rtl\:-mb-7{margin-bottom:-1.75rem !important}[dir='rtl'] .sm\:rtl\:-ml-7{margin-left:-1.75rem !important}[dir='rtl'] .sm\:rtl\:-mt-8{margin-top:-2rem !important}[dir='rtl'] .sm\:rtl\:-mr-8{margin-right:-2rem !important}[dir='rtl'] .sm\:rtl\:-mb-8{margin-bottom:-2rem !important}[dir='rtl'] .sm\:rtl\:-ml-8{margin-left:-2rem !important}[dir='rtl'] .sm\:rtl\:-mt-9{margin-top:-2.25rem !important}[dir='rtl'] .sm\:rtl\:-mr-9{margin-right:-2.25rem !important}[dir='rtl'] .sm\:rtl\:-mb-9{margin-bottom:-2.25rem !important}[dir='rtl'] .sm\:rtl\:-ml-9{margin-left:-2.25rem !important}[dir='rtl'] .sm\:rtl\:-mt-10{margin-top:-2.5rem !important}[dir='rtl'] .sm\:rtl\:-mr-10{margin-right:-2.5rem !important}[dir='rtl'] .sm\:rtl\:-mb-10{margin-bottom:-2.5rem !important}[dir='rtl'] .sm\:rtl\:-ml-10{margin-left:-2.5rem !important}[dir='rtl'] .sm\:rtl\:-mt-11{margin-top:-2.75rem !important}[dir='rtl'] .sm\:rtl\:-mr-11{margin-right:-2.75rem !important}[dir='rtl'] .sm\:rtl\:-mb-11{margin-bottom:-2.75rem !important}[dir='rtl'] .sm\:rtl\:-ml-11{margin-left:-2.75rem !important}[dir='rtl'] .sm\:rtl\:-mt-12{margin-top:-3rem !important}[dir='rtl'] .sm\:rtl\:-mr-12{margin-right:-3rem !important}[dir='rtl'] .sm\:rtl\:-mb-12{margin-bottom:-3rem !important}[dir='rtl'] .sm\:rtl\:-ml-12{margin-left:-3rem !important}[dir='rtl'] .sm\:rtl\:-mt-13{margin-top:-3.25rem !important}[dir='rtl'] .sm\:rtl\:-mr-13{margin-right:-3.25rem !important}[dir='rtl'] .sm\:rtl\:-mb-13{margin-bottom:-3.25rem !important}[dir='rtl'] .sm\:rtl\:-ml-13{margin-left:-3.25rem !important}[dir='rtl'] .sm\:rtl\:-mt-14{margin-top:-3.5rem !important}[dir='rtl'] .sm\:rtl\:-mr-14{margin-right:-3.5rem !important}[dir='rtl'] .sm\:rtl\:-mb-14{margin-bottom:-3.5rem !important}[dir='rtl'] .sm\:rtl\:-ml-14{margin-left:-3.5rem !important}[dir='rtl'] .sm\:rtl\:-mt-15{margin-top:-3.75rem !important}[dir='rtl'] .sm\:rtl\:-mr-15{margin-right:-3.75rem !important}[dir='rtl'] .sm\:rtl\:-mb-15{margin-bottom:-3.75rem !important}[dir='rtl'] .sm\:rtl\:-ml-15{margin-left:-3.75rem !important}[dir='rtl'] .sm\:rtl\:-mt-16{margin-top:-4rem !important}[dir='rtl'] .sm\:rtl\:-mr-16{margin-right:-4rem !important}[dir='rtl'] .sm\:rtl\:-mb-16{margin-bottom:-4rem !important}[dir='rtl'] .sm\:rtl\:-ml-16{margin-left:-4rem !important}[dir='rtl'] .sm\:rtl\:-mt-20{margin-top:-5rem !important}[dir='rtl'] .sm\:rtl\:-mr-20{margin-right:-5rem !important}[dir='rtl'] .sm\:rtl\:-mb-20{margin-bottom:-5rem !important}[dir='rtl'] .sm\:rtl\:-ml-20{margin-left:-5rem !important}[dir='rtl'] .sm\:rtl\:-mt-24{margin-top:-6rem !important}[dir='rtl'] .sm\:rtl\:-mr-24{margin-right:-6rem !important}[dir='rtl'] .sm\:rtl\:-mb-24{margin-bottom:-6rem !important}[dir='rtl'] .sm\:rtl\:-ml-24{margin-left:-6rem !important}[dir='rtl'] .sm\:rtl\:-mt-28{margin-top:-7rem !important}[dir='rtl'] .sm\:rtl\:-mr-28{margin-right:-7rem !important}[dir='rtl'] .sm\:rtl\:-mb-28{margin-bottom:-7rem !important}[dir='rtl'] .sm\:rtl\:-ml-28{margin-left:-7rem !important}[dir='rtl'] .sm\:rtl\:-mt-32{margin-top:-8rem !important}[dir='rtl'] .sm\:rtl\:-mr-32{margin-right:-8rem !important}[dir='rtl'] .sm\:rtl\:-mb-32{margin-bottom:-8rem !important}[dir='rtl'] .sm\:rtl\:-ml-32{margin-left:-8rem !important}[dir='rtl'] .sm\:rtl\:-mt-36{margin-top:-9rem !important}[dir='rtl'] .sm\:rtl\:-mr-36{margin-right:-9rem !important}[dir='rtl'] .sm\:rtl\:-mb-36{margin-bottom:-9rem !important}[dir='rtl'] .sm\:rtl\:-ml-36{margin-left:-9rem !important}[dir='rtl'] .sm\:rtl\:-mt-40{margin-top:-10rem !important}[dir='rtl'] .sm\:rtl\:-mr-40{margin-right:-10rem !important}[dir='rtl'] .sm\:rtl\:-mb-40{margin-bottom:-10rem !important}[dir='rtl'] .sm\:rtl\:-ml-40{margin-left:-10rem !important}[dir='rtl'] .sm\:rtl\:-mt-48{margin-top:-12rem !important}[dir='rtl'] .sm\:rtl\:-mr-48{margin-right:-12rem !important}[dir='rtl'] .sm\:rtl\:-mb-48{margin-bottom:-12rem !important}[dir='rtl'] .sm\:rtl\:-ml-48{margin-left:-12rem !important}[dir='rtl'] .sm\:rtl\:-mt-56{margin-top:-14rem !important}[dir='rtl'] .sm\:rtl\:-mr-56{margin-right:-14rem !important}[dir='rtl'] .sm\:rtl\:-mb-56{margin-bottom:-14rem !important}[dir='rtl'] .sm\:rtl\:-ml-56{margin-left:-14rem !important}[dir='rtl'] .sm\:rtl\:-mt-60{margin-top:-15rem !important}[dir='rtl'] .sm\:rtl\:-mr-60{margin-right:-15rem !important}[dir='rtl'] .sm\:rtl\:-mb-60{margin-bottom:-15rem !important}[dir='rtl'] .sm\:rtl\:-ml-60{margin-left:-15rem !important}[dir='rtl'] .sm\:rtl\:-mt-64{margin-top:-16rem !important}[dir='rtl'] .sm\:rtl\:-mr-64{margin-right:-16rem !important}[dir='rtl'] .sm\:rtl\:-mb-64{margin-bottom:-16rem !important}[dir='rtl'] .sm\:rtl\:-ml-64{margin-left:-16rem !important}[dir='rtl'] .sm\:rtl\:-mt-72{margin-top:-18rem !important}[dir='rtl'] .sm\:rtl\:-mr-72{margin-right:-18rem !important}[dir='rtl'] .sm\:rtl\:-mb-72{margin-bottom:-18rem !important}[dir='rtl'] .sm\:rtl\:-ml-72{margin-left:-18rem !important}[dir='rtl'] .sm\:rtl\:-mt-80{margin-top:-20rem !important}[dir='rtl'] .sm\:rtl\:-mr-80{margin-right:-20rem !important}[dir='rtl'] .sm\:rtl\:-mb-80{margin-bottom:-20rem !important}[dir='rtl'] .sm\:rtl\:-ml-80{margin-left:-20rem !important}[dir='rtl'] .sm\:rtl\:-mt-96{margin-top:-24rem !important}[dir='rtl'] .sm\:rtl\:-mr-96{margin-right:-24rem !important}[dir='rtl'] .sm\:rtl\:-mb-96{margin-bottom:-24rem !important}[dir='rtl'] .sm\:rtl\:-ml-96{margin-left:-24rem !important}[dir='rtl'] .sm\:rtl\:-mt-px{margin-top:-1px !important}[dir='rtl'] .sm\:rtl\:-mr-px{margin-right:-1px !important}[dir='rtl'] .sm\:rtl\:-mb-px{margin-bottom:-1px !important}[dir='rtl'] .sm\:rtl\:-ml-px{margin-left:-1px !important}[dir='rtl'] .sm\:rtl\:-mt-0\.5{margin-top:-0.125rem !important}[dir='rtl'] .sm\:rtl\:-mr-0\.5{margin-right:-0.125rem !important}[dir='rtl'] .sm\:rtl\:-mb-0\.5{margin-bottom:-0.125rem !important}[dir='rtl'] .sm\:rtl\:-ml-0\.5{margin-left:-0.125rem !important}[dir='rtl'] .sm\:rtl\:-mt-1\.5{margin-top:-0.375rem !important}[dir='rtl'] .sm\:rtl\:-mr-1\.5{margin-right:-0.375rem !important}[dir='rtl'] .sm\:rtl\:-mb-1\.5{margin-bottom:-0.375rem !important}[dir='rtl'] .sm\:rtl\:-ml-1\.5{margin-left:-0.375rem !important}[dir='rtl'] .sm\:rtl\:-mt-2\.5{margin-top:-0.625rem !important}[dir='rtl'] .sm\:rtl\:-mr-2\.5{margin-right:-0.625rem !important}[dir='rtl'] .sm\:rtl\:-mb-2\.5{margin-bottom:-0.625rem !important}[dir='rtl'] .sm\:rtl\:-ml-2\.5{margin-left:-0.625rem !important}[dir='rtl'] .sm\:rtl\:-mt-3\.5{margin-top:-0.875rem !important}[dir='rtl'] .sm\:rtl\:-mr-3\.5{margin-right:-0.875rem !important}[dir='rtl'] .sm\:rtl\:-mb-3\.5{margin-bottom:-0.875rem !important}[dir='rtl'] .sm\:rtl\:-ml-3\.5{margin-left:-0.875rem !important}[dir='rtl'] .sm\:rtl\:-mt-1\/2{margin-top:-50% !important}[dir='rtl'] .sm\:rtl\:-mr-1\/2{margin-right:-50% !important}[dir='rtl'] .sm\:rtl\:-mb-1\/2{margin-bottom:-50% !important}[dir='rtl'] .sm\:rtl\:-ml-1\/2{margin-left:-50% !important}[dir='rtl'] .sm\:rtl\:-mt-1\/3{margin-top:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mr-1\/3{margin-right:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mb-1\/3{margin-bottom:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-ml-1\/3{margin-left:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mt-2\/3{margin-top:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mr-2\/3{margin-right:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mb-2\/3{margin-bottom:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-ml-2\/3{margin-left:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mt-1\/4{margin-top:-25% !important}[dir='rtl'] .sm\:rtl\:-mr-1\/4{margin-right:-25% !important}[dir='rtl'] .sm\:rtl\:-mb-1\/4{margin-bottom:-25% !important}[dir='rtl'] .sm\:rtl\:-ml-1\/4{margin-left:-25% !important}[dir='rtl'] .sm\:rtl\:-mt-2\/4{margin-top:-50% !important}[dir='rtl'] .sm\:rtl\:-mr-2\/4{margin-right:-50% !important}[dir='rtl'] .sm\:rtl\:-mb-2\/4{margin-bottom:-50% !important}[dir='rtl'] .sm\:rtl\:-ml-2\/4{margin-left:-50% !important}[dir='rtl'] .sm\:rtl\:-mt-3\/4{margin-top:-75% !important}[dir='rtl'] .sm\:rtl\:-mr-3\/4{margin-right:-75% !important}[dir='rtl'] .sm\:rtl\:-mb-3\/4{margin-bottom:-75% !important}[dir='rtl'] .sm\:rtl\:-ml-3\/4{margin-left:-75% !important}[dir='rtl'] .sm\:rtl\:-mt-1\/5{margin-top:-20% !important}[dir='rtl'] .sm\:rtl\:-mr-1\/5{margin-right:-20% !important}[dir='rtl'] .sm\:rtl\:-mb-1\/5{margin-bottom:-20% !important}[dir='rtl'] .sm\:rtl\:-ml-1\/5{margin-left:-20% !important}[dir='rtl'] .sm\:rtl\:-mt-2\/5{margin-top:-40% !important}[dir='rtl'] .sm\:rtl\:-mr-2\/5{margin-right:-40% !important}[dir='rtl'] .sm\:rtl\:-mb-2\/5{margin-bottom:-40% !important}[dir='rtl'] .sm\:rtl\:-ml-2\/5{margin-left:-40% !important}[dir='rtl'] .sm\:rtl\:-mt-3\/5{margin-top:-60% !important}[dir='rtl'] .sm\:rtl\:-mr-3\/5{margin-right:-60% !important}[dir='rtl'] .sm\:rtl\:-mb-3\/5{margin-bottom:-60% !important}[dir='rtl'] .sm\:rtl\:-ml-3\/5{margin-left:-60% !important}[dir='rtl'] .sm\:rtl\:-mt-4\/5{margin-top:-80% !important}[dir='rtl'] .sm\:rtl\:-mr-4\/5{margin-right:-80% !important}[dir='rtl'] .sm\:rtl\:-mb-4\/5{margin-bottom:-80% !important}[dir='rtl'] .sm\:rtl\:-ml-4\/5{margin-left:-80% !important}[dir='rtl'] .sm\:rtl\:-mt-1\/6{margin-top:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-mr-1\/6{margin-right:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-mb-1\/6{margin-bottom:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-ml-1\/6{margin-left:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-mt-2\/6{margin-top:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mr-2\/6{margin-right:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mb-2\/6{margin-bottom:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-ml-2\/6{margin-left:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mt-3\/6{margin-top:-50% !important}[dir='rtl'] .sm\:rtl\:-mr-3\/6{margin-right:-50% !important}[dir='rtl'] .sm\:rtl\:-mb-3\/6{margin-bottom:-50% !important}[dir='rtl'] .sm\:rtl\:-ml-3\/6{margin-left:-50% !important}[dir='rtl'] .sm\:rtl\:-mt-4\/6{margin-top:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mr-4\/6{margin-right:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mb-4\/6{margin-bottom:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-ml-4\/6{margin-left:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mt-5\/6{margin-top:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-mr-5\/6{margin-right:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-mb-5\/6{margin-bottom:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-ml-5\/6{margin-left:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-mt-1\/12{margin-top:-8.33333% !important}[dir='rtl'] .sm\:rtl\:-mr-1\/12{margin-right:-8.33333% !important}[dir='rtl'] .sm\:rtl\:-mb-1\/12{margin-bottom:-8.33333% !important}[dir='rtl'] .sm\:rtl\:-ml-1\/12{margin-left:-8.33333% !important}[dir='rtl'] .sm\:rtl\:-mt-2\/12{margin-top:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-mr-2\/12{margin-right:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-mb-2\/12{margin-bottom:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-ml-2\/12{margin-left:-16.66667% !important}[dir='rtl'] .sm\:rtl\:-mt-3\/12{margin-top:-25% !important}[dir='rtl'] .sm\:rtl\:-mr-3\/12{margin-right:-25% !important}[dir='rtl'] .sm\:rtl\:-mb-3\/12{margin-bottom:-25% !important}[dir='rtl'] .sm\:rtl\:-ml-3\/12{margin-left:-25% !important}[dir='rtl'] .sm\:rtl\:-mt-4\/12{margin-top:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mr-4\/12{margin-right:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mb-4\/12{margin-bottom:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-ml-4\/12{margin-left:-33.33333% !important}[dir='rtl'] .sm\:rtl\:-mt-5\/12{margin-top:-41.66667% !important}[dir='rtl'] .sm\:rtl\:-mr-5\/12{margin-right:-41.66667% !important}[dir='rtl'] .sm\:rtl\:-mb-5\/12{margin-bottom:-41.66667% !important}[dir='rtl'] .sm\:rtl\:-ml-5\/12{margin-left:-41.66667% !important}[dir='rtl'] .sm\:rtl\:-mt-6\/12{margin-top:-50% !important}[dir='rtl'] .sm\:rtl\:-mr-6\/12{margin-right:-50% !important}[dir='rtl'] .sm\:rtl\:-mb-6\/12{margin-bottom:-50% !important}[dir='rtl'] .sm\:rtl\:-ml-6\/12{margin-left:-50% !important}[dir='rtl'] .sm\:rtl\:-mt-7\/12{margin-top:-58.33333% !important}[dir='rtl'] .sm\:rtl\:-mr-7\/12{margin-right:-58.33333% !important}[dir='rtl'] .sm\:rtl\:-mb-7\/12{margin-bottom:-58.33333% !important}[dir='rtl'] .sm\:rtl\:-ml-7\/12{margin-left:-58.33333% !important}[dir='rtl'] .sm\:rtl\:-mt-8\/12{margin-top:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mr-8\/12{margin-right:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mb-8\/12{margin-bottom:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-ml-8\/12{margin-left:-66.66667% !important}[dir='rtl'] .sm\:rtl\:-mt-9\/12{margin-top:-75% !important}[dir='rtl'] .sm\:rtl\:-mr-9\/12{margin-right:-75% !important}[dir='rtl'] .sm\:rtl\:-mb-9\/12{margin-bottom:-75% !important}[dir='rtl'] .sm\:rtl\:-ml-9\/12{margin-left:-75% !important}[dir='rtl'] .sm\:rtl\:-mt-10\/12{margin-top:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-mr-10\/12{margin-right:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-mb-10\/12{margin-bottom:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-ml-10\/12{margin-left:-83.33333% !important}[dir='rtl'] .sm\:rtl\:-mt-11\/12{margin-top:-91.66667% !important}[dir='rtl'] .sm\:rtl\:-mr-11\/12{margin-right:-91.66667% !important}[dir='rtl'] .sm\:rtl\:-mb-11\/12{margin-bottom:-91.66667% !important}[dir='rtl'] .sm\:rtl\:-ml-11\/12{margin-left:-91.66667% !important}[dir='rtl'] .sm\:rtl\:-mt-full{margin-top:-100% !important}[dir='rtl'] .sm\:rtl\:-mr-full{margin-right:-100% !important}[dir='rtl'] .sm\:rtl\:-mb-full{margin-bottom:-100% !important}[dir='rtl'] .sm\:rtl\:-ml-full{margin-left:-100% !important}.sm\:max-h-0{max-height:0 !important}.sm\:max-h-1{max-height:.25rem !important}.sm\:max-h-2{max-height:.5rem !important}.sm\:max-h-3{max-height:.75rem !important}.sm\:max-h-4{max-height:1rem !important}.sm\:max-h-5{max-height:1.25rem !important}.sm\:max-h-6{max-height:1.5rem !important}.sm\:max-h-7{max-height:1.75rem !important}.sm\:max-h-8{max-height:2rem !important}.sm\:max-h-9{max-height:2.25rem !important}.sm\:max-h-10{max-height:2.5rem !important}.sm\:max-h-11{max-height:2.75rem !important}.sm\:max-h-12{max-height:3rem !important}.sm\:max-h-13{max-height:3.25rem !important}.sm\:max-h-14{max-height:3.5rem !important}.sm\:max-h-15{max-height:3.75rem !important}.sm\:max-h-16{max-height:4rem !important}.sm\:max-h-20{max-height:5rem !important}.sm\:max-h-24{max-height:6rem !important}.sm\:max-h-28{max-height:7rem !important}.sm\:max-h-32{max-height:8rem !important}.sm\:max-h-36{max-height:9rem !important}.sm\:max-h-40{max-height:10rem !important}.sm\:max-h-48{max-height:12rem !important}.sm\:max-h-56{max-height:14rem !important}.sm\:max-h-60{max-height:15rem !important}.sm\:max-h-64{max-height:16rem !important}.sm\:max-h-72{max-height:18rem !important}.sm\:max-h-80{max-height:20rem !important}.sm\:max-h-96{max-height:24rem !important}.sm\:max-h-screen{max-height:100vh !important}.sm\:max-h-px{max-height:1px !important}.sm\:max-h-0\.5{max-height:.125rem !important}.sm\:max-h-1\.5{max-height:.375rem !important}.sm\:max-h-2\.5{max-height:.625rem !important}.sm\:max-h-3\.5{max-height:.875rem !important}.sm\:max-h-1\/2{max-height:50% !important}.sm\:max-h-1\/3{max-height:33.333333% !important}.sm\:max-h-2\/3{max-height:66.666667% !important}.sm\:max-h-1\/4{max-height:25% !important}.sm\:max-h-2\/4{max-height:50% !important}.sm\:max-h-3\/4{max-height:75% !important}.sm\:max-h-1\/5{max-height:20% !important}.sm\:max-h-2\/5{max-height:40% !important}.sm\:max-h-3\/5{max-height:60% !important}.sm\:max-h-4\/5{max-height:80% !important}.sm\:max-h-1\/6{max-height:16.666667% !important}.sm\:max-h-2\/6{max-height:33.333333% !important}.sm\:max-h-3\/6{max-height:50% !important}.sm\:max-h-4\/6{max-height:66.666667% !important}.sm\:max-h-5\/6{max-height:83.333333% !important}.sm\:max-h-1\/12{max-height:8.333333% !important}.sm\:max-h-2\/12{max-height:16.666667% !important}.sm\:max-h-3\/12{max-height:25% !important}.sm\:max-h-4\/12{max-height:33.333333% !important}.sm\:max-h-5\/12{max-height:41.666667% !important}.sm\:max-h-6\/12{max-height:50% !important}.sm\:max-h-7\/12{max-height:58.333333% !important}.sm\:max-h-8\/12{max-height:66.666667% !important}.sm\:max-h-9\/12{max-height:75% !important}.sm\:max-h-10\/12{max-height:83.333333% !important}.sm\:max-h-11\/12{max-height:91.666667% !important}.sm\:max-h-full{max-height:100% !important}.sm\:max-h-6xl{max-height:6rem !important}.sm\:max-w-none{max-width:none !important}.sm\:max-w-xs{max-width:20rem !important}.sm\:max-w-sm{max-width:24rem !important}.sm\:max-w-md{max-width:28rem !important}.sm\:max-w-lg{max-width:32rem !important}.sm\:max-w-xl{max-width:36rem !important}.sm\:max-w-2xl{max-width:42rem !important}.sm\:max-w-3xl{max-width:48rem !important}.sm\:max-w-4xl{max-width:56rem !important}.sm\:max-w-5xl{max-width:64rem !important}.sm\:max-w-6xl{max-width:72rem !important}.sm\:max-w-7xl{max-width:80rem !important}.sm\:max-w-full{max-width:100% !important}.sm\:max-w-screen-sm{max-width:600px !important}.sm\:max-w-screen-md{max-width:1024px !important}.sm\:max-w-screen-lg{max-width:1280px !important}.sm\:max-w-screen-xl{max-width:1536px !important}.sm\:max-w-screen-2xl{max-width:1400px !important}.sm\:max-w-screen-3xl{max-width:1800px !important}.sm\:max-w-screen-4xl{max-width:2200px !important}.sm\:min-h-0{min-height:0 !important}.sm\:min-h-full{min-height:100% !important}.sm\:min-h-screen{min-height:100vh !important}.sm\:min-h-half{min-height:50vh !important}.sm\:min-w-0{min-width:0 !important}.sm\:min-w-full{min-width:100% !important}.sm\:object-contain{-o-object-fit:contain !important;object-fit:contain !important}.sm\:object-cover{-o-object-fit:cover !important;object-fit:cover !important}.sm\:object-fill{-o-object-fit:fill !important;object-fit:fill !important}.sm\:object-none{-o-object-fit:none !important;object-fit:none !important}.sm\:object-scale-down{-o-object-fit:scale-down !important;object-fit:scale-down !important}.sm\:object-bottom{-o-object-position:bottom !important;object-position:bottom !important}.sm\:object-center{-o-object-position:center !important;object-position:center !important}.sm\:object-left{-o-object-position:left !important;object-position:left !important}.sm\:object-left-bottom{-o-object-position:left bottom !important;object-position:left bottom !important}.sm\:object-left-top{-o-object-position:left top !important;object-position:left top !important}.sm\:object-right{-o-object-position:right !important;object-position:right !important}.sm\:object-right-bottom{-o-object-position:right bottom !important;object-position:right bottom !important}.sm\:object-right-top{-o-object-position:right top !important;object-position:right top !important}.sm\:object-top{-o-object-position:top !important;object-position:top !important}.sm\:opacity-0{opacity:0 !important}.sm\:opacity-25{opacity:.25 !important}.sm\:opacity-50{opacity:.5 !important}.sm\:opacity-75{opacity:.75 !important}.sm\:opacity-100{opacity:1 !important}.sm\:hover\:opacity-0:hover{opacity:0 !important}.sm\:hover\:opacity-25:hover{opacity:.25 !important}.sm\:hover\:opacity-50:hover{opacity:.5 !important}.sm\:hover\:opacity-75:hover{opacity:.75 !important}.sm\:hover\:opacity-100:hover{opacity:1 !important}.sm\:focus\:opacity-0:focus{opacity:0 !important}.sm\:focus\:opacity-25:focus{opacity:.25 !important}.sm\:focus\:opacity-50:focus{opacity:.5 !important}.sm\:focus\:opacity-75:focus{opacity:.75 !important}.sm\:focus\:opacity-100:focus{opacity:1 !important}.sm\:outline-none{outline:0 !important}.sm\:focus\:outline-none:focus{outline:0 !important}.sm\:overflow-auto{overflow:auto !important}.sm\:overflow-hidden{overflow:hidden !important}.sm\:overflow-visible{overflow:visible !important}.sm\:overflow-scroll{overflow:scroll !important}.sm\:overflow-x-auto{overflow-x:auto !important}.sm\:overflow-y-auto{overflow-y:auto !important}.sm\:overflow-x-hidden{overflow-x:hidden !important}.sm\:overflow-y-hidden{overflow-y:hidden !important}.sm\:overflow-x-visible{overflow-x:visible !important}.sm\:overflow-y-visible{overflow-y:visible !important}.sm\:overflow-x-scroll{overflow-x:scroll !important}.sm\:overflow-y-scroll{overflow-y:scroll !important}.sm\:scrolling-touch{-webkit-overflow-scrolling:touch !important}.sm\:scrolling-auto{-webkit-overflow-scrolling:auto !important}.sm\:overscroll-auto{-ms-scroll-chaining:chained !important;overscroll-behavior:auto !important}.sm\:overscroll-contain{-ms-scroll-chaining:none !important;overscroll-behavior:contain !important}.sm\:overscroll-none{-ms-scroll-chaining:none !important;overscroll-behavior:none !important}.sm\:overscroll-y-auto{overscroll-behavior-y:auto !important}.sm\:overscroll-y-contain{overscroll-behavior-y:contain !important}.sm\:overscroll-y-none{overscroll-behavior-y:none !important}.sm\:overscroll-x-auto{overscroll-behavior-x:auto !important}.sm\:overscroll-x-contain{overscroll-behavior-x:contain !important}.sm\:overscroll-x-none{overscroll-behavior-x:none !important}.sm\:p-0{padding:0 !important}.sm\:p-1{padding:.25rem !important}.sm\:p-2{padding:.5rem !important}.sm\:p-3{padding:.75rem !important}.sm\:p-4{padding:1rem !important}.sm\:p-5{padding:1.25rem !important}.sm\:p-6{padding:1.5rem !important}.sm\:p-7{padding:1.75rem !important}.sm\:p-8{padding:2rem !important}.sm\:p-9{padding:2.25rem !important}.sm\:p-10{padding:2.5rem !important}.sm\:p-11{padding:2.75rem !important}.sm\:p-12{padding:3rem !important}.sm\:p-13{padding:3.25rem !important}.sm\:p-14{padding:3.5rem !important}.sm\:p-15{padding:3.75rem !important}.sm\:p-16{padding:4rem !important}.sm\:p-20{padding:5rem !important}.sm\:p-24{padding:6rem !important}.sm\:p-28{padding:7rem !important}.sm\:p-32{padding:8rem !important}.sm\:p-36{padding:9rem !important}.sm\:p-40{padding:10rem !important}.sm\:p-48{padding:12rem !important}.sm\:p-56{padding:14rem !important}.sm\:p-60{padding:15rem !important}.sm\:p-64{padding:16rem !important}.sm\:p-72{padding:18rem !important}.sm\:p-80{padding:20rem !important}.sm\:p-96{padding:24rem !important}.sm\:p-px{padding:1px !important}.sm\:p-0\.5{padding:.125rem !important}.sm\:p-1\.5{padding:.375rem !important}.sm\:p-2\.5{padding:.625rem !important}.sm\:p-3\.5{padding:.875rem !important}.sm\:p-1\/2{padding:50% !important}.sm\:p-1\/3{padding:33.333333% !important}.sm\:p-2\/3{padding:66.666667% !important}.sm\:p-1\/4{padding:25% !important}.sm\:p-2\/4{padding:50% !important}.sm\:p-3\/4{padding:75% !important}.sm\:p-1\/5{padding:20% !important}.sm\:p-2\/5{padding:40% !important}.sm\:p-3\/5{padding:60% !important}.sm\:p-4\/5{padding:80% !important}.sm\:p-1\/6{padding:16.666667% !important}.sm\:p-2\/6{padding:33.333333% !important}.sm\:p-3\/6{padding:50% !important}.sm\:p-4\/6{padding:66.666667% !important}.sm\:p-5\/6{padding:83.333333% !important}.sm\:p-1\/12{padding:8.333333% !important}.sm\:p-2\/12{padding:16.666667% !important}.sm\:p-3\/12{padding:25% !important}.sm\:p-4\/12{padding:33.333333% !important}.sm\:p-5\/12{padding:41.666667% !important}.sm\:p-6\/12{padding:50% !important}.sm\:p-7\/12{padding:58.333333% !important}.sm\:p-8\/12{padding:66.666667% !important}.sm\:p-9\/12{padding:75% !important}.sm\:p-10\/12{padding:83.333333% !important}.sm\:p-11\/12{padding:91.666667% !important}.sm\:p-full{padding:100% !important}.sm\:py-0{padding-top:0 !important;padding-bottom:0 !important}.sm\:px-0{padding-left:0 !important;padding-right:0 !important}.sm\:py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.sm\:px-1{padding-left:.25rem !important;padding-right:.25rem !important}.sm\:py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.sm\:px-2{padding-left:.5rem !important;padding-right:.5rem !important}.sm\:py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.sm\:px-3{padding-left:.75rem !important;padding-right:.75rem !important}.sm\:py-4{padding-top:1rem !important;padding-bottom:1rem !important}.sm\:px-4{padding-left:1rem !important;padding-right:1rem !important}.sm\:py-5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.sm\:px-5{padding-left:1.25rem !important;padding-right:1.25rem !important}.sm\:py-6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.sm\:px-6{padding-left:1.5rem !important;padding-right:1.5rem !important}.sm\:py-7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.sm\:px-7{padding-left:1.75rem !important;padding-right:1.75rem !important}.sm\:py-8{padding-top:2rem !important;padding-bottom:2rem !important}.sm\:px-8{padding-left:2rem !important;padding-right:2rem !important}.sm\:py-9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.sm\:px-9{padding-left:2.25rem !important;padding-right:2.25rem !important}.sm\:py-10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.sm\:px-10{padding-left:2.5rem !important;padding-right:2.5rem !important}.sm\:py-11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.sm\:px-11{padding-left:2.75rem !important;padding-right:2.75rem !important}.sm\:py-12{padding-top:3rem !important;padding-bottom:3rem !important}.sm\:px-12{padding-left:3rem !important;padding-right:3rem !important}.sm\:py-13{padding-top:3.25rem !important;padding-bottom:3.25rem !important}.sm\:px-13{padding-left:3.25rem !important;padding-right:3.25rem !important}.sm\:py-14{padding-top:3.5rem !important;padding-bottom:3.5rem !important}.sm\:px-14{padding-left:3.5rem !important;padding-right:3.5rem !important}.sm\:py-15{padding-top:3.75rem !important;padding-bottom:3.75rem !important}.sm\:px-15{padding-left:3.75rem !important;padding-right:3.75rem !important}.sm\:py-16{padding-top:4rem !important;padding-bottom:4rem !important}.sm\:px-16{padding-left:4rem !important;padding-right:4rem !important}.sm\:py-20{padding-top:5rem !important;padding-bottom:5rem !important}.sm\:px-20{padding-left:5rem !important;padding-right:5rem !important}.sm\:py-24{padding-top:6rem !important;padding-bottom:6rem !important}.sm\:px-24{padding-left:6rem !important;padding-right:6rem !important}.sm\:py-28{padding-top:7rem !important;padding-bottom:7rem !important}.sm\:px-28{padding-left:7rem !important;padding-right:7rem !important}.sm\:py-32{padding-top:8rem !important;padding-bottom:8rem !important}.sm\:px-32{padding-left:8rem !important;padding-right:8rem !important}.sm\:py-36{padding-top:9rem !important;padding-bottom:9rem !important}.sm\:px-36{padding-left:9rem !important;padding-right:9rem !important}.sm\:py-40{padding-top:10rem !important;padding-bottom:10rem !important}.sm\:px-40{padding-left:10rem !important;padding-right:10rem !important}.sm\:py-48{padding-top:12rem !important;padding-bottom:12rem !important}.sm\:px-48{padding-left:12rem !important;padding-right:12rem !important}.sm\:py-56{padding-top:14rem !important;padding-bottom:14rem !important}.sm\:px-56{padding-left:14rem !important;padding-right:14rem !important}.sm\:py-60{padding-top:15rem !important;padding-bottom:15rem !important}.sm\:px-60{padding-left:15rem !important;padding-right:15rem !important}.sm\:py-64{padding-top:16rem !important;padding-bottom:16rem !important}.sm\:px-64{padding-left:16rem !important;padding-right:16rem !important}.sm\:py-72{padding-top:18rem !important;padding-bottom:18rem !important}.sm\:px-72{padding-left:18rem !important;padding-right:18rem !important}.sm\:py-80{padding-top:20rem !important;padding-bottom:20rem !important}.sm\:px-80{padding-left:20rem !important;padding-right:20rem !important}.sm\:py-96{padding-top:24rem !important;padding-bottom:24rem !important}.sm\:px-96{padding-left:24rem !important;padding-right:24rem !important}.sm\:py-px{padding-top:1px !important;padding-bottom:1px !important}.sm\:px-px{padding-left:1px !important;padding-right:1px !important}.sm\:py-0\.5{padding-top:.125rem !important;padding-bottom:.125rem !important}.sm\:px-0\.5{padding-left:.125rem !important;padding-right:.125rem !important}.sm\:py-1\.5{padding-top:.375rem !important;padding-bottom:.375rem !important}.sm\:px-1\.5{padding-left:.375rem !important;padding-right:.375rem !important}.sm\:py-2\.5{padding-top:.625rem !important;padding-bottom:.625rem !important}.sm\:px-2\.5{padding-left:.625rem !important;padding-right:.625rem !important}.sm\:py-3\.5{padding-top:.875rem !important;padding-bottom:.875rem !important}.sm\:px-3\.5{padding-left:.875rem !important;padding-right:.875rem !important}.sm\:py-1\/2{padding-top:50% !important;padding-bottom:50% !important}.sm\:px-1\/2{padding-left:50% !important;padding-right:50% !important}.sm\:py-1\/3{padding-top:33.333333% !important;padding-bottom:33.333333% !important}.sm\:px-1\/3{padding-left:33.333333% !important;padding-right:33.333333% !important}.sm\:py-2\/3{padding-top:66.666667% !important;padding-bottom:66.666667% !important}.sm\:px-2\/3{padding-left:66.666667% !important;padding-right:66.666667% !important}.sm\:py-1\/4{padding-top:25% !important;padding-bottom:25% !important}.sm\:px-1\/4{padding-left:25% !important;padding-right:25% !important}.sm\:py-2\/4{padding-top:50% !important;padding-bottom:50% !important}.sm\:px-2\/4{padding-left:50% !important;padding-right:50% !important}.sm\:py-3\/4{padding-top:75% !important;padding-bottom:75% !important}.sm\:px-3\/4{padding-left:75% !important;padding-right:75% !important}.sm\:py-1\/5{padding-top:20% !important;padding-bottom:20% !important}.sm\:px-1\/5{padding-left:20% !important;padding-right:20% !important}.sm\:py-2\/5{padding-top:40% !important;padding-bottom:40% !important}.sm\:px-2\/5{padding-left:40% !important;padding-right:40% !important}.sm\:py-3\/5{padding-top:60% !important;padding-bottom:60% !important}.sm\:px-3\/5{padding-left:60% !important;padding-right:60% !important}.sm\:py-4\/5{padding-top:80% !important;padding-bottom:80% !important}.sm\:px-4\/5{padding-left:80% !important;padding-right:80% !important}.sm\:py-1\/6{padding-top:16.666667% !important;padding-bottom:16.666667% !important}.sm\:px-1\/6{padding-left:16.666667% !important;padding-right:16.666667% !important}.sm\:py-2\/6{padding-top:33.333333% !important;padding-bottom:33.333333% !important}.sm\:px-2\/6{padding-left:33.333333% !important;padding-right:33.333333% !important}.sm\:py-3\/6{padding-top:50% !important;padding-bottom:50% !important}.sm\:px-3\/6{padding-left:50% !important;padding-right:50% !important}.sm\:py-4\/6{padding-top:66.666667% !important;padding-bottom:66.666667% !important}.sm\:px-4\/6{padding-left:66.666667% !important;padding-right:66.666667% !important}.sm\:py-5\/6{padding-top:83.333333% !important;padding-bottom:83.333333% !important}.sm\:px-5\/6{padding-left:83.333333% !important;padding-right:83.333333% !important}.sm\:py-1\/12{padding-top:8.333333% !important;padding-bottom:8.333333% !important}.sm\:px-1\/12{padding-left:8.333333% !important;padding-right:8.333333% !important}.sm\:py-2\/12{padding-top:16.666667% !important;padding-bottom:16.666667% !important}.sm\:px-2\/12{padding-left:16.666667% !important;padding-right:16.666667% !important}.sm\:py-3\/12{padding-top:25% !important;padding-bottom:25% !important}.sm\:px-3\/12{padding-left:25% !important;padding-right:25% !important}.sm\:py-4\/12{padding-top:33.333333% !important;padding-bottom:33.333333% !important}.sm\:px-4\/12{padding-left:33.333333% !important;padding-right:33.333333% !important}.sm\:py-5\/12{padding-top:41.666667% !important;padding-bottom:41.666667% !important}.sm\:px-5\/12{padding-left:41.666667% !important;padding-right:41.666667% !important}.sm\:py-6\/12{padding-top:50% !important;padding-bottom:50% !important}.sm\:px-6\/12{padding-left:50% !important;padding-right:50% !important}.sm\:py-7\/12{padding-top:58.333333% !important;padding-bottom:58.333333% !important}.sm\:px-7\/12{padding-left:58.333333% !important;padding-right:58.333333% !important}.sm\:py-8\/12{padding-top:66.666667% !important;padding-bottom:66.666667% !important}.sm\:px-8\/12{padding-left:66.666667% !important;padding-right:66.666667% !important}.sm\:py-9\/12{padding-top:75% !important;padding-bottom:75% !important}.sm\:px-9\/12{padding-left:75% !important;padding-right:75% !important}.sm\:py-10\/12{padding-top:83.333333% !important;padding-bottom:83.333333% !important}.sm\:px-10\/12{padding-left:83.333333% !important;padding-right:83.333333% !important}.sm\:py-11\/12{padding-top:91.666667% !important;padding-bottom:91.666667% !important}.sm\:px-11\/12{padding-left:91.666667% !important;padding-right:91.666667% !important}.sm\:py-full{padding-top:100% !important;padding-bottom:100% !important}.sm\:px-full{padding-left:100% !important;padding-right:100% !important}.sm\:pt-0{padding-top:0 !important}.sm\:pr-0{padding-right:0 !important}.sm\:pb-0{padding-bottom:0 !important}.sm\:pl-0{padding-left:0 !important}.sm\:pt-1{padding-top:.25rem !important}.sm\:pr-1{padding-right:.25rem !important}.sm\:pb-1{padding-bottom:.25rem !important}.sm\:pl-1{padding-left:.25rem !important}.sm\:pt-2{padding-top:.5rem !important}.sm\:pr-2{padding-right:.5rem !important}.sm\:pb-2{padding-bottom:.5rem !important}.sm\:pl-2{padding-left:.5rem !important}.sm\:pt-3{padding-top:.75rem !important}.sm\:pr-3{padding-right:.75rem !important}.sm\:pb-3{padding-bottom:.75rem !important}.sm\:pl-3{padding-left:.75rem !important}.sm\:pt-4{padding-top:1rem !important}.sm\:pr-4{padding-right:1rem !important}.sm\:pb-4{padding-bottom:1rem !important}.sm\:pl-4{padding-left:1rem !important}.sm\:pt-5{padding-top:1.25rem !important}.sm\:pr-5{padding-right:1.25rem !important}.sm\:pb-5{padding-bottom:1.25rem !important}.sm\:pl-5{padding-left:1.25rem !important}.sm\:pt-6{padding-top:1.5rem !important}.sm\:pr-6{padding-right:1.5rem !important}.sm\:pb-6{padding-bottom:1.5rem !important}.sm\:pl-6{padding-left:1.5rem !important}.sm\:pt-7{padding-top:1.75rem !important}.sm\:pr-7{padding-right:1.75rem !important}.sm\:pb-7{padding-bottom:1.75rem !important}.sm\:pl-7{padding-left:1.75rem !important}.sm\:pt-8{padding-top:2rem !important}.sm\:pr-8{padding-right:2rem !important}.sm\:pb-8{padding-bottom:2rem !important}.sm\:pl-8{padding-left:2rem !important}.sm\:pt-9{padding-top:2.25rem !important}.sm\:pr-9{padding-right:2.25rem !important}.sm\:pb-9{padding-bottom:2.25rem !important}.sm\:pl-9{padding-left:2.25rem !important}.sm\:pt-10{padding-top:2.5rem !important}.sm\:pr-10{padding-right:2.5rem !important}.sm\:pb-10{padding-bottom:2.5rem !important}.sm\:pl-10{padding-left:2.5rem !important}.sm\:pt-11{padding-top:2.75rem !important}.sm\:pr-11{padding-right:2.75rem !important}.sm\:pb-11{padding-bottom:2.75rem !important}.sm\:pl-11{padding-left:2.75rem !important}.sm\:pt-12{padding-top:3rem !important}.sm\:pr-12{padding-right:3rem !important}.sm\:pb-12{padding-bottom:3rem !important}.sm\:pl-12{padding-left:3rem !important}.sm\:pt-13{padding-top:3.25rem !important}.sm\:pr-13{padding-right:3.25rem !important}.sm\:pb-13{padding-bottom:3.25rem !important}.sm\:pl-13{padding-left:3.25rem !important}.sm\:pt-14{padding-top:3.5rem !important}.sm\:pr-14{padding-right:3.5rem !important}.sm\:pb-14{padding-bottom:3.5rem !important}.sm\:pl-14{padding-left:3.5rem !important}.sm\:pt-15{padding-top:3.75rem !important}.sm\:pr-15{padding-right:3.75rem !important}.sm\:pb-15{padding-bottom:3.75rem !important}.sm\:pl-15{padding-left:3.75rem !important}.sm\:pt-16{padding-top:4rem !important}.sm\:pr-16{padding-right:4rem !important}.sm\:pb-16{padding-bottom:4rem !important}.sm\:pl-16{padding-left:4rem !important}.sm\:pt-20{padding-top:5rem !important}.sm\:pr-20{padding-right:5rem !important}.sm\:pb-20{padding-bottom:5rem !important}.sm\:pl-20{padding-left:5rem !important}.sm\:pt-24{padding-top:6rem !important}.sm\:pr-24{padding-right:6rem !important}.sm\:pb-24{padding-bottom:6rem !important}.sm\:pl-24{padding-left:6rem !important}.sm\:pt-28{padding-top:7rem !important}.sm\:pr-28{padding-right:7rem !important}.sm\:pb-28{padding-bottom:7rem !important}.sm\:pl-28{padding-left:7rem !important}.sm\:pt-32{padding-top:8rem !important}.sm\:pr-32{padding-right:8rem !important}.sm\:pb-32{padding-bottom:8rem !important}.sm\:pl-32{padding-left:8rem !important}.sm\:pt-36{padding-top:9rem !important}.sm\:pr-36{padding-right:9rem !important}.sm\:pb-36{padding-bottom:9rem !important}.sm\:pl-36{padding-left:9rem !important}.sm\:pt-40{padding-top:10rem !important}.sm\:pr-40{padding-right:10rem !important}.sm\:pb-40{padding-bottom:10rem !important}.sm\:pl-40{padding-left:10rem !important}.sm\:pt-48{padding-top:12rem !important}.sm\:pr-48{padding-right:12rem !important}.sm\:pb-48{padding-bottom:12rem !important}.sm\:pl-48{padding-left:12rem !important}.sm\:pt-56{padding-top:14rem !important}.sm\:pr-56{padding-right:14rem !important}.sm\:pb-56{padding-bottom:14rem !important}.sm\:pl-56{padding-left:14rem !important}.sm\:pt-60{padding-top:15rem !important}.sm\:pr-60{padding-right:15rem !important}.sm\:pb-60{padding-bottom:15rem !important}.sm\:pl-60{padding-left:15rem !important}.sm\:pt-64{padding-top:16rem !important}.sm\:pr-64{padding-right:16rem !important}.sm\:pb-64{padding-bottom:16rem !important}.sm\:pl-64{padding-left:16rem !important}.sm\:pt-72{padding-top:18rem !important}.sm\:pr-72{padding-right:18rem !important}.sm\:pb-72{padding-bottom:18rem !important}.sm\:pl-72{padding-left:18rem !important}.sm\:pt-80{padding-top:20rem !important}.sm\:pr-80{padding-right:20rem !important}.sm\:pb-80{padding-bottom:20rem !important}.sm\:pl-80{padding-left:20rem !important}.sm\:pt-96{padding-top:24rem !important}.sm\:pr-96{padding-right:24rem !important}.sm\:pb-96{padding-bottom:24rem !important}.sm\:pl-96{padding-left:24rem !important}.sm\:pt-px{padding-top:1px !important}.sm\:pr-px{padding-right:1px !important}.sm\:pb-px{padding-bottom:1px !important}.sm\:pl-px{padding-left:1px !important}.sm\:pt-0\.5{padding-top:.125rem !important}.sm\:pr-0\.5{padding-right:.125rem !important}.sm\:pb-0\.5{padding-bottom:.125rem !important}.sm\:pl-0\.5{padding-left:.125rem !important}.sm\:pt-1\.5{padding-top:.375rem !important}.sm\:pr-1\.5{padding-right:.375rem !important}.sm\:pb-1\.5{padding-bottom:.375rem !important}.sm\:pl-1\.5{padding-left:.375rem !important}.sm\:pt-2\.5{padding-top:.625rem !important}.sm\:pr-2\.5{padding-right:.625rem !important}.sm\:pb-2\.5{padding-bottom:.625rem !important}.sm\:pl-2\.5{padding-left:.625rem !important}.sm\:pt-3\.5{padding-top:.875rem !important}.sm\:pr-3\.5{padding-right:.875rem !important}.sm\:pb-3\.5{padding-bottom:.875rem !important}.sm\:pl-3\.5{padding-left:.875rem !important}.sm\:pt-1\/2{padding-top:50% !important}.sm\:pr-1\/2{padding-right:50% !important}.sm\:pb-1\/2{padding-bottom:50% !important}.sm\:pl-1\/2{padding-left:50% !important}.sm\:pt-1\/3{padding-top:33.333333% !important}.sm\:pr-1\/3{padding-right:33.333333% !important}.sm\:pb-1\/3{padding-bottom:33.333333% !important}.sm\:pl-1\/3{padding-left:33.333333% !important}.sm\:pt-2\/3{padding-top:66.666667% !important}.sm\:pr-2\/3{padding-right:66.666667% !important}.sm\:pb-2\/3{padding-bottom:66.666667% !important}.sm\:pl-2\/3{padding-left:66.666667% !important}.sm\:pt-1\/4{padding-top:25% !important}.sm\:pr-1\/4{padding-right:25% !important}.sm\:pb-1\/4{padding-bottom:25% !important}.sm\:pl-1\/4{padding-left:25% !important}.sm\:pt-2\/4{padding-top:50% !important}.sm\:pr-2\/4{padding-right:50% !important}.sm\:pb-2\/4{padding-bottom:50% !important}.sm\:pl-2\/4{padding-left:50% !important}.sm\:pt-3\/4{padding-top:75% !important}.sm\:pr-3\/4{padding-right:75% !important}.sm\:pb-3\/4{padding-bottom:75% !important}.sm\:pl-3\/4{padding-left:75% !important}.sm\:pt-1\/5{padding-top:20% !important}.sm\:pr-1\/5{padding-right:20% !important}.sm\:pb-1\/5{padding-bottom:20% !important}.sm\:pl-1\/5{padding-left:20% !important}.sm\:pt-2\/5{padding-top:40% !important}.sm\:pr-2\/5{padding-right:40% !important}.sm\:pb-2\/5{padding-bottom:40% !important}.sm\:pl-2\/5{padding-left:40% !important}.sm\:pt-3\/5{padding-top:60% !important}.sm\:pr-3\/5{padding-right:60% !important}.sm\:pb-3\/5{padding-bottom:60% !important}.sm\:pl-3\/5{padding-left:60% !important}.sm\:pt-4\/5{padding-top:80% !important}.sm\:pr-4\/5{padding-right:80% !important}.sm\:pb-4\/5{padding-bottom:80% !important}.sm\:pl-4\/5{padding-left:80% !important}.sm\:pt-1\/6{padding-top:16.666667% !important}.sm\:pr-1\/6{padding-right:16.666667% !important}.sm\:pb-1\/6{padding-bottom:16.666667% !important}.sm\:pl-1\/6{padding-left:16.666667% !important}.sm\:pt-2\/6{padding-top:33.333333% !important}.sm\:pr-2\/6{padding-right:33.333333% !important}.sm\:pb-2\/6{padding-bottom:33.333333% !important}.sm\:pl-2\/6{padding-left:33.333333% !important}.sm\:pt-3\/6{padding-top:50% !important}.sm\:pr-3\/6{padding-right:50% !important}.sm\:pb-3\/6{padding-bottom:50% !important}.sm\:pl-3\/6{padding-left:50% !important}.sm\:pt-4\/6{padding-top:66.666667% !important}.sm\:pr-4\/6{padding-right:66.666667% !important}.sm\:pb-4\/6{padding-bottom:66.666667% !important}.sm\:pl-4\/6{padding-left:66.666667% !important}.sm\:pt-5\/6{padding-top:83.333333% !important}.sm\:pr-5\/6{padding-right:83.333333% !important}.sm\:pb-5\/6{padding-bottom:83.333333% !important}.sm\:pl-5\/6{padding-left:83.333333% !important}.sm\:pt-1\/12{padding-top:8.333333% !important}.sm\:pr-1\/12{padding-right:8.333333% !important}.sm\:pb-1\/12{padding-bottom:8.333333% !important}.sm\:pl-1\/12{padding-left:8.333333% !important}.sm\:pt-2\/12{padding-top:16.666667% !important}.sm\:pr-2\/12{padding-right:16.666667% !important}.sm\:pb-2\/12{padding-bottom:16.666667% !important}.sm\:pl-2\/12{padding-left:16.666667% !important}.sm\:pt-3\/12{padding-top:25% !important}.sm\:pr-3\/12{padding-right:25% !important}.sm\:pb-3\/12{padding-bottom:25% !important}.sm\:pl-3\/12{padding-left:25% !important}.sm\:pt-4\/12{padding-top:33.333333% !important}.sm\:pr-4\/12{padding-right:33.333333% !important}.sm\:pb-4\/12{padding-bottom:33.333333% !important}.sm\:pl-4\/12{padding-left:33.333333% !important}.sm\:pt-5\/12{padding-top:41.666667% !important}.sm\:pr-5\/12{padding-right:41.666667% !important}.sm\:pb-5\/12{padding-bottom:41.666667% !important}.sm\:pl-5\/12{padding-left:41.666667% !important}.sm\:pt-6\/12{padding-top:50% !important}.sm\:pr-6\/12{padding-right:50% !important}.sm\:pb-6\/12{padding-bottom:50% !important}.sm\:pl-6\/12{padding-left:50% !important}.sm\:pt-7\/12{padding-top:58.333333% !important}.sm\:pr-7\/12{padding-right:58.333333% !important}.sm\:pb-7\/12{padding-bottom:58.333333% !important}.sm\:pl-7\/12{padding-left:58.333333% !important}.sm\:pt-8\/12{padding-top:66.666667% !important}.sm\:pr-8\/12{padding-right:66.666667% !important}.sm\:pb-8\/12{padding-bottom:66.666667% !important}.sm\:pl-8\/12{padding-left:66.666667% !important}.sm\:pt-9\/12{padding-top:75% !important}.sm\:pr-9\/12{padding-right:75% !important}.sm\:pb-9\/12{padding-bottom:75% !important}.sm\:pl-9\/12{padding-left:75% !important}.sm\:pt-10\/12{padding-top:83.333333% !important}.sm\:pr-10\/12{padding-right:83.333333% !important}.sm\:pb-10\/12{padding-bottom:83.333333% !important}.sm\:pl-10\/12{padding-left:83.333333% !important}.sm\:pt-11\/12{padding-top:91.666667% !important}.sm\:pr-11\/12{padding-right:91.666667% !important}.sm\:pb-11\/12{padding-bottom:91.666667% !important}.sm\:pl-11\/12{padding-left:91.666667% !important}.sm\:pt-full{padding-top:100% !important}.sm\:pr-full{padding-right:100% !important}.sm\:pb-full{padding-bottom:100% !important}.sm\:pl-full{padding-left:100% !important}[dir='ltr'] .sm\:ltr\:p-0{padding:0 !important}[dir='ltr'] .sm\:ltr\:p-1{padding:.25rem !important}[dir='ltr'] .sm\:ltr\:p-2{padding:.5rem !important}[dir='ltr'] .sm\:ltr\:p-3{padding:.75rem !important}[dir='ltr'] .sm\:ltr\:p-4{padding:1rem !important}[dir='ltr'] .sm\:ltr\:p-5{padding:1.25rem !important}[dir='ltr'] .sm\:ltr\:p-6{padding:1.5rem !important}[dir='ltr'] .sm\:ltr\:p-7{padding:1.75rem !important}[dir='ltr'] .sm\:ltr\:p-8{padding:2rem !important}[dir='ltr'] .sm\:ltr\:p-9{padding:2.25rem !important}[dir='ltr'] .sm\:ltr\:p-10{padding:2.5rem !important}[dir='ltr'] .sm\:ltr\:p-11{padding:2.75rem !important}[dir='ltr'] .sm\:ltr\:p-12{padding:3rem !important}[dir='ltr'] .sm\:ltr\:p-13{padding:3.25rem !important}[dir='ltr'] .sm\:ltr\:p-14{padding:3.5rem !important}[dir='ltr'] .sm\:ltr\:p-15{padding:3.75rem !important}[dir='ltr'] .sm\:ltr\:p-16{padding:4rem !important}[dir='ltr'] .sm\:ltr\:p-20{padding:5rem !important}[dir='ltr'] .sm\:ltr\:p-24{padding:6rem !important}[dir='ltr'] .sm\:ltr\:p-28{padding:7rem !important}[dir='ltr'] .sm\:ltr\:p-32{padding:8rem !important}[dir='ltr'] .sm\:ltr\:p-36{padding:9rem !important}[dir='ltr'] .sm\:ltr\:p-40{padding:10rem !important}[dir='ltr'] .sm\:ltr\:p-48{padding:12rem !important}[dir='ltr'] .sm\:ltr\:p-56{padding:14rem !important}[dir='ltr'] .sm\:ltr\:p-60{padding:15rem !important}[dir='ltr'] .sm\:ltr\:p-64{padding:16rem !important}[dir='ltr'] .sm\:ltr\:p-72{padding:18rem !important}[dir='ltr'] .sm\:ltr\:p-80{padding:20rem !important}[dir='ltr'] .sm\:ltr\:p-96{padding:24rem !important}[dir='ltr'] .sm\:ltr\:p-px{padding:1px !important}[dir='ltr'] .sm\:ltr\:p-0\.5{padding:.125rem !important}[dir='ltr'] .sm\:ltr\:p-1\.5{padding:.375rem !important}[dir='ltr'] .sm\:ltr\:p-2\.5{padding:.625rem !important}[dir='ltr'] .sm\:ltr\:p-3\.5{padding:.875rem !important}[dir='ltr'] .sm\:ltr\:p-1\/2{padding:50% !important}[dir='ltr'] .sm\:ltr\:p-1\/3{padding:33.333333% !important}[dir='ltr'] .sm\:ltr\:p-2\/3{padding:66.666667% !important}[dir='ltr'] .sm\:ltr\:p-1\/4{padding:25% !important}[dir='ltr'] .sm\:ltr\:p-2\/4{padding:50% !important}[dir='ltr'] .sm\:ltr\:p-3\/4{padding:75% !important}[dir='ltr'] .sm\:ltr\:p-1\/5{padding:20% !important}[dir='ltr'] .sm\:ltr\:p-2\/5{padding:40% !important}[dir='ltr'] .sm\:ltr\:p-3\/5{padding:60% !important}[dir='ltr'] .sm\:ltr\:p-4\/5{padding:80% !important}[dir='ltr'] .sm\:ltr\:p-1\/6{padding:16.666667% !important}[dir='ltr'] .sm\:ltr\:p-2\/6{padding:33.333333% !important}[dir='ltr'] .sm\:ltr\:p-3\/6{padding:50% !important}[dir='ltr'] .sm\:ltr\:p-4\/6{padding:66.666667% !important}[dir='ltr'] .sm\:ltr\:p-5\/6{padding:83.333333% !important}[dir='ltr'] .sm\:ltr\:p-1\/12{padding:8.333333% !important}[dir='ltr'] .sm\:ltr\:p-2\/12{padding:16.666667% !important}[dir='ltr'] .sm\:ltr\:p-3\/12{padding:25% !important}[dir='ltr'] .sm\:ltr\:p-4\/12{padding:33.333333% !important}[dir='ltr'] .sm\:ltr\:p-5\/12{padding:41.666667% !important}[dir='ltr'] .sm\:ltr\:p-6\/12{padding:50% !important}[dir='ltr'] .sm\:ltr\:p-7\/12{padding:58.333333% !important}[dir='ltr'] .sm\:ltr\:p-8\/12{padding:66.666667% !important}[dir='ltr'] .sm\:ltr\:p-9\/12{padding:75% !important}[dir='ltr'] .sm\:ltr\:p-10\/12{padding:83.333333% !important}[dir='ltr'] .sm\:ltr\:p-11\/12{padding:91.666667% !important}[dir='ltr'] .sm\:ltr\:p-full{padding:100% !important}[dir='ltr'] .sm\:ltr\:py-0{padding-top:0 !important;padding-bottom:0 !important}[dir='ltr'] .sm\:ltr\:px-0{padding-left:0 !important;padding-right:0 !important}[dir='ltr'] .sm\:ltr\:py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}[dir='ltr'] .sm\:ltr\:px-1{padding-left:.25rem !important;padding-right:.25rem !important}[dir='ltr'] .sm\:ltr\:py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}[dir='ltr'] .sm\:ltr\:px-2{padding-left:.5rem !important;padding-right:.5rem !important}[dir='ltr'] .sm\:ltr\:py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}[dir='ltr'] .sm\:ltr\:px-3{padding-left:.75rem !important;padding-right:.75rem !important}[dir='ltr'] .sm\:ltr\:py-4{padding-top:1rem !important;padding-bottom:1rem !important}[dir='ltr'] .sm\:ltr\:px-4{padding-left:1rem !important;padding-right:1rem !important}[dir='ltr'] .sm\:ltr\:py-5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}[dir='ltr'] .sm\:ltr\:px-5{padding-left:1.25rem !important;padding-right:1.25rem !important}[dir='ltr'] .sm\:ltr\:py-6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}[dir='ltr'] .sm\:ltr\:px-6{padding-left:1.5rem !important;padding-right:1.5rem !important}[dir='ltr'] .sm\:ltr\:py-7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}[dir='ltr'] .sm\:ltr\:px-7{padding-left:1.75rem !important;padding-right:1.75rem !important}[dir='ltr'] .sm\:ltr\:py-8{padding-top:2rem !important;padding-bottom:2rem !important}[dir='ltr'] .sm\:ltr\:px-8{padding-left:2rem !important;padding-right:2rem !important}[dir='ltr'] .sm\:ltr\:py-9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}[dir='ltr'] .sm\:ltr\:px-9{padding-left:2.25rem !important;padding-right:2.25rem !important}[dir='ltr'] .sm\:ltr\:py-10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}[dir='ltr'] .sm\:ltr\:px-10{padding-left:2.5rem !important;padding-right:2.5rem !important}[dir='ltr'] .sm\:ltr\:py-11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}[dir='ltr'] .sm\:ltr\:px-11{padding-left:2.75rem !important;padding-right:2.75rem !important}[dir='ltr'] .sm\:ltr\:py-12{padding-top:3rem !important;padding-bottom:3rem !important}[dir='ltr'] .sm\:ltr\:px-12{padding-left:3rem !important;padding-right:3rem !important}[dir='ltr'] .sm\:ltr\:py-13{padding-top:3.25rem !important;padding-bottom:3.25rem !important}[dir='ltr'] .sm\:ltr\:px-13{padding-left:3.25rem !important;padding-right:3.25rem !important}[dir='ltr'] .sm\:ltr\:py-14{padding-top:3.5rem !important;padding-bottom:3.5rem !important}[dir='ltr'] .sm\:ltr\:px-14{padding-left:3.5rem !important;padding-right:3.5rem !important}[dir='ltr'] .sm\:ltr\:py-15{padding-top:3.75rem !important;padding-bottom:3.75rem !important}[dir='ltr'] .sm\:ltr\:px-15{padding-left:3.75rem !important;padding-right:3.75rem !important}[dir='ltr'] .sm\:ltr\:py-16{padding-top:4rem !important;padding-bottom:4rem !important}[dir='ltr'] .sm\:ltr\:px-16{padding-left:4rem !important;padding-right:4rem !important}[dir='ltr'] .sm\:ltr\:py-20{padding-top:5rem !important;padding-bottom:5rem !important}[dir='ltr'] .sm\:ltr\:px-20{padding-left:5rem !important;padding-right:5rem !important}[dir='ltr'] .sm\:ltr\:py-24{padding-top:6rem !important;padding-bottom:6rem !important}[dir='ltr'] .sm\:ltr\:px-24{padding-left:6rem !important;padding-right:6rem !important}[dir='ltr'] .sm\:ltr\:py-28{padding-top:7rem !important;padding-bottom:7rem !important}[dir='ltr'] .sm\:ltr\:px-28{padding-left:7rem !important;padding-right:7rem !important}[dir='ltr'] .sm\:ltr\:py-32{padding-top:8rem !important;padding-bottom:8rem !important}[dir='ltr'] .sm\:ltr\:px-32{padding-left:8rem !important;padding-right:8rem !important}[dir='ltr'] .sm\:ltr\:py-36{padding-top:9rem !important;padding-bottom:9rem !important}[dir='ltr'] .sm\:ltr\:px-36{padding-left:9rem !important;padding-right:9rem !important}[dir='ltr'] .sm\:ltr\:py-40{padding-top:10rem !important;padding-bottom:10rem !important}[dir='ltr'] .sm\:ltr\:px-40{padding-left:10rem !important;padding-right:10rem !important}[dir='ltr'] .sm\:ltr\:py-48{padding-top:12rem !important;padding-bottom:12rem !important}[dir='ltr'] .sm\:ltr\:px-48{padding-left:12rem !important;padding-right:12rem !important}[dir='ltr'] .sm\:ltr\:py-56{padding-top:14rem !important;padding-bottom:14rem !important}[dir='ltr'] .sm\:ltr\:px-56{padding-left:14rem !important;padding-right:14rem !important}[dir='ltr'] .sm\:ltr\:py-60{padding-top:15rem !important;padding-bottom:15rem !important}[dir='ltr'] .sm\:ltr\:px-60{padding-left:15rem !important;padding-right:15rem !important}[dir='ltr'] .sm\:ltr\:py-64{padding-top:16rem !important;padding-bottom:16rem !important}[dir='ltr'] .sm\:ltr\:px-64{padding-left:16rem !important;padding-right:16rem !important}[dir='ltr'] .sm\:ltr\:py-72{padding-top:18rem !important;padding-bottom:18rem !important}[dir='ltr'] .sm\:ltr\:px-72{padding-left:18rem !important;padding-right:18rem !important}[dir='ltr'] .sm\:ltr\:py-80{padding-top:20rem !important;padding-bottom:20rem !important}[dir='ltr'] .sm\:ltr\:px-80{padding-left:20rem !important;padding-right:20rem !important}[dir='ltr'] .sm\:ltr\:py-96{padding-top:24rem !important;padding-bottom:24rem !important}[dir='ltr'] .sm\:ltr\:px-96{padding-left:24rem !important;padding-right:24rem !important}[dir='ltr'] .sm\:ltr\:py-px{padding-top:1px !important;padding-bottom:1px !important}[dir='ltr'] .sm\:ltr\:px-px{padding-left:1px !important;padding-right:1px !important}[dir='ltr'] .sm\:ltr\:py-0\.5{padding-top:.125rem !important;padding-bottom:.125rem !important}[dir='ltr'] .sm\:ltr\:px-0\.5{padding-left:.125rem !important;padding-right:.125rem !important}[dir='ltr'] .sm\:ltr\:py-1\.5{padding-top:.375rem !important;padding-bottom:.375rem !important}[dir='ltr'] .sm\:ltr\:px-1\.5{padding-left:.375rem !important;padding-right:.375rem !important}[dir='ltr'] .sm\:ltr\:py-2\.5{padding-top:.625rem !important;padding-bottom:.625rem !important}[dir='ltr'] .sm\:ltr\:px-2\.5{padding-left:.625rem !important;padding-right:.625rem !important}[dir='ltr'] .sm\:ltr\:py-3\.5{padding-top:.875rem !important;padding-bottom:.875rem !important}[dir='ltr'] .sm\:ltr\:px-3\.5{padding-left:.875rem !important;padding-right:.875rem !important}[dir='ltr'] .sm\:ltr\:py-1\/2{padding-top:50% !important;padding-bottom:50% !important}[dir='ltr'] .sm\:ltr\:px-1\/2{padding-left:50% !important;padding-right:50% !important}[dir='ltr'] .sm\:ltr\:py-1\/3{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:px-1\/3{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:py-2\/3{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:px-2\/3{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:py-1\/4{padding-top:25% !important;padding-bottom:25% !important}[dir='ltr'] .sm\:ltr\:px-1\/4{padding-left:25% !important;padding-right:25% !important}[dir='ltr'] .sm\:ltr\:py-2\/4{padding-top:50% !important;padding-bottom:50% !important}[dir='ltr'] .sm\:ltr\:px-2\/4{padding-left:50% !important;padding-right:50% !important}[dir='ltr'] .sm\:ltr\:py-3\/4{padding-top:75% !important;padding-bottom:75% !important}[dir='ltr'] .sm\:ltr\:px-3\/4{padding-left:75% !important;padding-right:75% !important}[dir='ltr'] .sm\:ltr\:py-1\/5{padding-top:20% !important;padding-bottom:20% !important}[dir='ltr'] .sm\:ltr\:px-1\/5{padding-left:20% !important;padding-right:20% !important}[dir='ltr'] .sm\:ltr\:py-2\/5{padding-top:40% !important;padding-bottom:40% !important}[dir='ltr'] .sm\:ltr\:px-2\/5{padding-left:40% !important;padding-right:40% !important}[dir='ltr'] .sm\:ltr\:py-3\/5{padding-top:60% !important;padding-bottom:60% !important}[dir='ltr'] .sm\:ltr\:px-3\/5{padding-left:60% !important;padding-right:60% !important}[dir='ltr'] .sm\:ltr\:py-4\/5{padding-top:80% !important;padding-bottom:80% !important}[dir='ltr'] .sm\:ltr\:px-4\/5{padding-left:80% !important;padding-right:80% !important}[dir='ltr'] .sm\:ltr\:py-1\/6{padding-top:16.666667% !important;padding-bottom:16.666667% !important}[dir='ltr'] .sm\:ltr\:px-1\/6{padding-left:16.666667% !important;padding-right:16.666667% !important}[dir='ltr'] .sm\:ltr\:py-2\/6{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:px-2\/6{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:py-3\/6{padding-top:50% !important;padding-bottom:50% !important}[dir='ltr'] .sm\:ltr\:px-3\/6{padding-left:50% !important;padding-right:50% !important}[dir='ltr'] .sm\:ltr\:py-4\/6{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:px-4\/6{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:py-5\/6{padding-top:83.333333% !important;padding-bottom:83.333333% !important}[dir='ltr'] .sm\:ltr\:px-5\/6{padding-left:83.333333% !important;padding-right:83.333333% !important}[dir='ltr'] .sm\:ltr\:py-1\/12{padding-top:8.333333% !important;padding-bottom:8.333333% !important}[dir='ltr'] .sm\:ltr\:px-1\/12{padding-left:8.333333% !important;padding-right:8.333333% !important}[dir='ltr'] .sm\:ltr\:py-2\/12{padding-top:16.666667% !important;padding-bottom:16.666667% !important}[dir='ltr'] .sm\:ltr\:px-2\/12{padding-left:16.666667% !important;padding-right:16.666667% !important}[dir='ltr'] .sm\:ltr\:py-3\/12{padding-top:25% !important;padding-bottom:25% !important}[dir='ltr'] .sm\:ltr\:px-3\/12{padding-left:25% !important;padding-right:25% !important}[dir='ltr'] .sm\:ltr\:py-4\/12{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:px-4\/12{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:py-5\/12{padding-top:41.666667% !important;padding-bottom:41.666667% !important}[dir='ltr'] .sm\:ltr\:px-5\/12{padding-left:41.666667% !important;padding-right:41.666667% !important}[dir='ltr'] .sm\:ltr\:py-6\/12{padding-top:50% !important;padding-bottom:50% !important}[dir='ltr'] .sm\:ltr\:px-6\/12{padding-left:50% !important;padding-right:50% !important}[dir='ltr'] .sm\:ltr\:py-7\/12{padding-top:58.333333% !important;padding-bottom:58.333333% !important}[dir='ltr'] .sm\:ltr\:px-7\/12{padding-left:58.333333% !important;padding-right:58.333333% !important}[dir='ltr'] .sm\:ltr\:py-8\/12{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:px-8\/12{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:py-9\/12{padding-top:75% !important;padding-bottom:75% !important}[dir='ltr'] .sm\:ltr\:px-9\/12{padding-left:75% !important;padding-right:75% !important}[dir='ltr'] .sm\:ltr\:py-10\/12{padding-top:83.333333% !important;padding-bottom:83.333333% !important}[dir='ltr'] .sm\:ltr\:px-10\/12{padding-left:83.333333% !important;padding-right:83.333333% !important}[dir='ltr'] .sm\:ltr\:py-11\/12{padding-top:91.666667% !important;padding-bottom:91.666667% !important}[dir='ltr'] .sm\:ltr\:px-11\/12{padding-left:91.666667% !important;padding-right:91.666667% !important}[dir='ltr'] .sm\:ltr\:py-full{padding-top:100% !important;padding-bottom:100% !important}[dir='ltr'] .sm\:ltr\:px-full{padding-left:100% !important;padding-right:100% !important}[dir='ltr'] .sm\:ltr\:pt-0{padding-top:0 !important}[dir='ltr'] .sm\:ltr\:pr-0{padding-right:0 !important}[dir='ltr'] .sm\:ltr\:pb-0{padding-bottom:0 !important}[dir='ltr'] .sm\:ltr\:pl-0{padding-left:0 !important}[dir='ltr'] .sm\:ltr\:pt-1{padding-top:.25rem !important}[dir='ltr'] .sm\:ltr\:pr-1{padding-right:.25rem !important}[dir='ltr'] .sm\:ltr\:pb-1{padding-bottom:.25rem !important}[dir='ltr'] .sm\:ltr\:pl-1{padding-left:.25rem !important}[dir='ltr'] .sm\:ltr\:pt-2{padding-top:.5rem !important}[dir='ltr'] .sm\:ltr\:pr-2{padding-right:.5rem !important}[dir='ltr'] .sm\:ltr\:pb-2{padding-bottom:.5rem !important}[dir='ltr'] .sm\:ltr\:pl-2{padding-left:.5rem !important}[dir='ltr'] .sm\:ltr\:pt-3{padding-top:.75rem !important}[dir='ltr'] .sm\:ltr\:pr-3{padding-right:.75rem !important}[dir='ltr'] .sm\:ltr\:pb-3{padding-bottom:.75rem !important}[dir='ltr'] .sm\:ltr\:pl-3{padding-left:.75rem !important}[dir='ltr'] .sm\:ltr\:pt-4{padding-top:1rem !important}[dir='ltr'] .sm\:ltr\:pr-4{padding-right:1rem !important}[dir='ltr'] .sm\:ltr\:pb-4{padding-bottom:1rem !important}[dir='ltr'] .sm\:ltr\:pl-4{padding-left:1rem !important}[dir='ltr'] .sm\:ltr\:pt-5{padding-top:1.25rem !important}[dir='ltr'] .sm\:ltr\:pr-5{padding-right:1.25rem !important}[dir='ltr'] .sm\:ltr\:pb-5{padding-bottom:1.25rem !important}[dir='ltr'] .sm\:ltr\:pl-5{padding-left:1.25rem !important}[dir='ltr'] .sm\:ltr\:pt-6{padding-top:1.5rem !important}[dir='ltr'] .sm\:ltr\:pr-6{padding-right:1.5rem !important}[dir='ltr'] .sm\:ltr\:pb-6{padding-bottom:1.5rem !important}[dir='ltr'] .sm\:ltr\:pl-6{padding-left:1.5rem !important}[dir='ltr'] .sm\:ltr\:pt-7{padding-top:1.75rem !important}[dir='ltr'] .sm\:ltr\:pr-7{padding-right:1.75rem !important}[dir='ltr'] .sm\:ltr\:pb-7{padding-bottom:1.75rem !important}[dir='ltr'] .sm\:ltr\:pl-7{padding-left:1.75rem !important}[dir='ltr'] .sm\:ltr\:pt-8{padding-top:2rem !important}[dir='ltr'] .sm\:ltr\:pr-8{padding-right:2rem !important}[dir='ltr'] .sm\:ltr\:pb-8{padding-bottom:2rem !important}[dir='ltr'] .sm\:ltr\:pl-8{padding-left:2rem !important}[dir='ltr'] .sm\:ltr\:pt-9{padding-top:2.25rem !important}[dir='ltr'] .sm\:ltr\:pr-9{padding-right:2.25rem !important}[dir='ltr'] .sm\:ltr\:pb-9{padding-bottom:2.25rem !important}[dir='ltr'] .sm\:ltr\:pl-9{padding-left:2.25rem !important}[dir='ltr'] .sm\:ltr\:pt-10{padding-top:2.5rem !important}[dir='ltr'] .sm\:ltr\:pr-10{padding-right:2.5rem !important}[dir='ltr'] .sm\:ltr\:pb-10{padding-bottom:2.5rem !important}[dir='ltr'] .sm\:ltr\:pl-10{padding-left:2.5rem !important}[dir='ltr'] .sm\:ltr\:pt-11{padding-top:2.75rem !important}[dir='ltr'] .sm\:ltr\:pr-11{padding-right:2.75rem !important}[dir='ltr'] .sm\:ltr\:pb-11{padding-bottom:2.75rem !important}[dir='ltr'] .sm\:ltr\:pl-11{padding-left:2.75rem !important}[dir='ltr'] .sm\:ltr\:pt-12{padding-top:3rem !important}[dir='ltr'] .sm\:ltr\:pr-12{padding-right:3rem !important}[dir='ltr'] .sm\:ltr\:pb-12{padding-bottom:3rem !important}[dir='ltr'] .sm\:ltr\:pl-12{padding-left:3rem !important}[dir='ltr'] .sm\:ltr\:pt-13{padding-top:3.25rem !important}[dir='ltr'] .sm\:ltr\:pr-13{padding-right:3.25rem !important}[dir='ltr'] .sm\:ltr\:pb-13{padding-bottom:3.25rem !important}[dir='ltr'] .sm\:ltr\:pl-13{padding-left:3.25rem !important}[dir='ltr'] .sm\:ltr\:pt-14{padding-top:3.5rem !important}[dir='ltr'] .sm\:ltr\:pr-14{padding-right:3.5rem !important}[dir='ltr'] .sm\:ltr\:pb-14{padding-bottom:3.5rem !important}[dir='ltr'] .sm\:ltr\:pl-14{padding-left:3.5rem !important}[dir='ltr'] .sm\:ltr\:pt-15{padding-top:3.75rem !important}[dir='ltr'] .sm\:ltr\:pr-15{padding-right:3.75rem !important}[dir='ltr'] .sm\:ltr\:pb-15{padding-bottom:3.75rem !important}[dir='ltr'] .sm\:ltr\:pl-15{padding-left:3.75rem !important}[dir='ltr'] .sm\:ltr\:pt-16{padding-top:4rem !important}[dir='ltr'] .sm\:ltr\:pr-16{padding-right:4rem !important}[dir='ltr'] .sm\:ltr\:pb-16{padding-bottom:4rem !important}[dir='ltr'] .sm\:ltr\:pl-16{padding-left:4rem !important}[dir='ltr'] .sm\:ltr\:pt-20{padding-top:5rem !important}[dir='ltr'] .sm\:ltr\:pr-20{padding-right:5rem !important}[dir='ltr'] .sm\:ltr\:pb-20{padding-bottom:5rem !important}[dir='ltr'] .sm\:ltr\:pl-20{padding-left:5rem !important}[dir='ltr'] .sm\:ltr\:pt-24{padding-top:6rem !important}[dir='ltr'] .sm\:ltr\:pr-24{padding-right:6rem !important}[dir='ltr'] .sm\:ltr\:pb-24{padding-bottom:6rem !important}[dir='ltr'] .sm\:ltr\:pl-24{padding-left:6rem !important}[dir='ltr'] .sm\:ltr\:pt-28{padding-top:7rem !important}[dir='ltr'] .sm\:ltr\:pr-28{padding-right:7rem !important}[dir='ltr'] .sm\:ltr\:pb-28{padding-bottom:7rem !important}[dir='ltr'] .sm\:ltr\:pl-28{padding-left:7rem !important}[dir='ltr'] .sm\:ltr\:pt-32{padding-top:8rem !important}[dir='ltr'] .sm\:ltr\:pr-32{padding-right:8rem !important}[dir='ltr'] .sm\:ltr\:pb-32{padding-bottom:8rem !important}[dir='ltr'] .sm\:ltr\:pl-32{padding-left:8rem !important}[dir='ltr'] .sm\:ltr\:pt-36{padding-top:9rem !important}[dir='ltr'] .sm\:ltr\:pr-36{padding-right:9rem !important}[dir='ltr'] .sm\:ltr\:pb-36{padding-bottom:9rem !important}[dir='ltr'] .sm\:ltr\:pl-36{padding-left:9rem !important}[dir='ltr'] .sm\:ltr\:pt-40{padding-top:10rem !important}[dir='ltr'] .sm\:ltr\:pr-40{padding-right:10rem !important}[dir='ltr'] .sm\:ltr\:pb-40{padding-bottom:10rem !important}[dir='ltr'] .sm\:ltr\:pl-40{padding-left:10rem !important}[dir='ltr'] .sm\:ltr\:pt-48{padding-top:12rem !important}[dir='ltr'] .sm\:ltr\:pr-48{padding-right:12rem !important}[dir='ltr'] .sm\:ltr\:pb-48{padding-bottom:12rem !important}[dir='ltr'] .sm\:ltr\:pl-48{padding-left:12rem !important}[dir='ltr'] .sm\:ltr\:pt-56{padding-top:14rem !important}[dir='ltr'] .sm\:ltr\:pr-56{padding-right:14rem !important}[dir='ltr'] .sm\:ltr\:pb-56{padding-bottom:14rem !important}[dir='ltr'] .sm\:ltr\:pl-56{padding-left:14rem !important}[dir='ltr'] .sm\:ltr\:pt-60{padding-top:15rem !important}[dir='ltr'] .sm\:ltr\:pr-60{padding-right:15rem !important}[dir='ltr'] .sm\:ltr\:pb-60{padding-bottom:15rem !important}[dir='ltr'] .sm\:ltr\:pl-60{padding-left:15rem !important}[dir='ltr'] .sm\:ltr\:pt-64{padding-top:16rem !important}[dir='ltr'] .sm\:ltr\:pr-64{padding-right:16rem !important}[dir='ltr'] .sm\:ltr\:pb-64{padding-bottom:16rem !important}[dir='ltr'] .sm\:ltr\:pl-64{padding-left:16rem !important}[dir='ltr'] .sm\:ltr\:pt-72{padding-top:18rem !important}[dir='ltr'] .sm\:ltr\:pr-72{padding-right:18rem !important}[dir='ltr'] .sm\:ltr\:pb-72{padding-bottom:18rem !important}[dir='ltr'] .sm\:ltr\:pl-72{padding-left:18rem !important}[dir='ltr'] .sm\:ltr\:pt-80{padding-top:20rem !important}[dir='ltr'] .sm\:ltr\:pr-80{padding-right:20rem !important}[dir='ltr'] .sm\:ltr\:pb-80{padding-bottom:20rem !important}[dir='ltr'] .sm\:ltr\:pl-80{padding-left:20rem !important}[dir='ltr'] .sm\:ltr\:pt-96{padding-top:24rem !important}[dir='ltr'] .sm\:ltr\:pr-96{padding-right:24rem !important}[dir='ltr'] .sm\:ltr\:pb-96{padding-bottom:24rem !important}[dir='ltr'] .sm\:ltr\:pl-96{padding-left:24rem !important}[dir='ltr'] .sm\:ltr\:pt-px{padding-top:1px !important}[dir='ltr'] .sm\:ltr\:pr-px{padding-right:1px !important}[dir='ltr'] .sm\:ltr\:pb-px{padding-bottom:1px !important}[dir='ltr'] .sm\:ltr\:pl-px{padding-left:1px !important}[dir='ltr'] .sm\:ltr\:pt-0\.5{padding-top:.125rem !important}[dir='ltr'] .sm\:ltr\:pr-0\.5{padding-right:.125rem !important}[dir='ltr'] .sm\:ltr\:pb-0\.5{padding-bottom:.125rem !important}[dir='ltr'] .sm\:ltr\:pl-0\.5{padding-left:.125rem !important}[dir='ltr'] .sm\:ltr\:pt-1\.5{padding-top:.375rem !important}[dir='ltr'] .sm\:ltr\:pr-1\.5{padding-right:.375rem !important}[dir='ltr'] .sm\:ltr\:pb-1\.5{padding-bottom:.375rem !important}[dir='ltr'] .sm\:ltr\:pl-1\.5{padding-left:.375rem !important}[dir='ltr'] .sm\:ltr\:pt-2\.5{padding-top:.625rem !important}[dir='ltr'] .sm\:ltr\:pr-2\.5{padding-right:.625rem !important}[dir='ltr'] .sm\:ltr\:pb-2\.5{padding-bottom:.625rem !important}[dir='ltr'] .sm\:ltr\:pl-2\.5{padding-left:.625rem !important}[dir='ltr'] .sm\:ltr\:pt-3\.5{padding-top:.875rem !important}[dir='ltr'] .sm\:ltr\:pr-3\.5{padding-right:.875rem !important}[dir='ltr'] .sm\:ltr\:pb-3\.5{padding-bottom:.875rem !important}[dir='ltr'] .sm\:ltr\:pl-3\.5{padding-left:.875rem !important}[dir='ltr'] .sm\:ltr\:pt-1\/2{padding-top:50% !important}[dir='ltr'] .sm\:ltr\:pr-1\/2{padding-right:50% !important}[dir='ltr'] .sm\:ltr\:pb-1\/2{padding-bottom:50% !important}[dir='ltr'] .sm\:ltr\:pl-1\/2{padding-left:50% !important}[dir='ltr'] .sm\:ltr\:pt-1\/3{padding-top:33.333333% !important}[dir='ltr'] .sm\:ltr\:pr-1\/3{padding-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:pb-1\/3{padding-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:pl-1\/3{padding-left:33.333333% !important}[dir='ltr'] .sm\:ltr\:pt-2\/3{padding-top:66.666667% !important}[dir='ltr'] .sm\:ltr\:pr-2\/3{padding-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:pb-2\/3{padding-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:pl-2\/3{padding-left:66.666667% !important}[dir='ltr'] .sm\:ltr\:pt-1\/4{padding-top:25% !important}[dir='ltr'] .sm\:ltr\:pr-1\/4{padding-right:25% !important}[dir='ltr'] .sm\:ltr\:pb-1\/4{padding-bottom:25% !important}[dir='ltr'] .sm\:ltr\:pl-1\/4{padding-left:25% !important}[dir='ltr'] .sm\:ltr\:pt-2\/4{padding-top:50% !important}[dir='ltr'] .sm\:ltr\:pr-2\/4{padding-right:50% !important}[dir='ltr'] .sm\:ltr\:pb-2\/4{padding-bottom:50% !important}[dir='ltr'] .sm\:ltr\:pl-2\/4{padding-left:50% !important}[dir='ltr'] .sm\:ltr\:pt-3\/4{padding-top:75% !important}[dir='ltr'] .sm\:ltr\:pr-3\/4{padding-right:75% !important}[dir='ltr'] .sm\:ltr\:pb-3\/4{padding-bottom:75% !important}[dir='ltr'] .sm\:ltr\:pl-3\/4{padding-left:75% !important}[dir='ltr'] .sm\:ltr\:pt-1\/5{padding-top:20% !important}[dir='ltr'] .sm\:ltr\:pr-1\/5{padding-right:20% !important}[dir='ltr'] .sm\:ltr\:pb-1\/5{padding-bottom:20% !important}[dir='ltr'] .sm\:ltr\:pl-1\/5{padding-left:20% !important}[dir='ltr'] .sm\:ltr\:pt-2\/5{padding-top:40% !important}[dir='ltr'] .sm\:ltr\:pr-2\/5{padding-right:40% !important}[dir='ltr'] .sm\:ltr\:pb-2\/5{padding-bottom:40% !important}[dir='ltr'] .sm\:ltr\:pl-2\/5{padding-left:40% !important}[dir='ltr'] .sm\:ltr\:pt-3\/5{padding-top:60% !important}[dir='ltr'] .sm\:ltr\:pr-3\/5{padding-right:60% !important}[dir='ltr'] .sm\:ltr\:pb-3\/5{padding-bottom:60% !important}[dir='ltr'] .sm\:ltr\:pl-3\/5{padding-left:60% !important}[dir='ltr'] .sm\:ltr\:pt-4\/5{padding-top:80% !important}[dir='ltr'] .sm\:ltr\:pr-4\/5{padding-right:80% !important}[dir='ltr'] .sm\:ltr\:pb-4\/5{padding-bottom:80% !important}[dir='ltr'] .sm\:ltr\:pl-4\/5{padding-left:80% !important}[dir='ltr'] .sm\:ltr\:pt-1\/6{padding-top:16.666667% !important}[dir='ltr'] .sm\:ltr\:pr-1\/6{padding-right:16.666667% !important}[dir='ltr'] .sm\:ltr\:pb-1\/6{padding-bottom:16.666667% !important}[dir='ltr'] .sm\:ltr\:pl-1\/6{padding-left:16.666667% !important}[dir='ltr'] .sm\:ltr\:pt-2\/6{padding-top:33.333333% !important}[dir='ltr'] .sm\:ltr\:pr-2\/6{padding-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:pb-2\/6{padding-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:pl-2\/6{padding-left:33.333333% !important}[dir='ltr'] .sm\:ltr\:pt-3\/6{padding-top:50% !important}[dir='ltr'] .sm\:ltr\:pr-3\/6{padding-right:50% !important}[dir='ltr'] .sm\:ltr\:pb-3\/6{padding-bottom:50% !important}[dir='ltr'] .sm\:ltr\:pl-3\/6{padding-left:50% !important}[dir='ltr'] .sm\:ltr\:pt-4\/6{padding-top:66.666667% !important}[dir='ltr'] .sm\:ltr\:pr-4\/6{padding-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:pb-4\/6{padding-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:pl-4\/6{padding-left:66.666667% !important}[dir='ltr'] .sm\:ltr\:pt-5\/6{padding-top:83.333333% !important}[dir='ltr'] .sm\:ltr\:pr-5\/6{padding-right:83.333333% !important}[dir='ltr'] .sm\:ltr\:pb-5\/6{padding-bottom:83.333333% !important}[dir='ltr'] .sm\:ltr\:pl-5\/6{padding-left:83.333333% !important}[dir='ltr'] .sm\:ltr\:pt-1\/12{padding-top:8.333333% !important}[dir='ltr'] .sm\:ltr\:pr-1\/12{padding-right:8.333333% !important}[dir='ltr'] .sm\:ltr\:pb-1\/12{padding-bottom:8.333333% !important}[dir='ltr'] .sm\:ltr\:pl-1\/12{padding-left:8.333333% !important}[dir='ltr'] .sm\:ltr\:pt-2\/12{padding-top:16.666667% !important}[dir='ltr'] .sm\:ltr\:pr-2\/12{padding-right:16.666667% !important}[dir='ltr'] .sm\:ltr\:pb-2\/12{padding-bottom:16.666667% !important}[dir='ltr'] .sm\:ltr\:pl-2\/12{padding-left:16.666667% !important}[dir='ltr'] .sm\:ltr\:pt-3\/12{padding-top:25% !important}[dir='ltr'] .sm\:ltr\:pr-3\/12{padding-right:25% !important}[dir='ltr'] .sm\:ltr\:pb-3\/12{padding-bottom:25% !important}[dir='ltr'] .sm\:ltr\:pl-3\/12{padding-left:25% !important}[dir='ltr'] .sm\:ltr\:pt-4\/12{padding-top:33.333333% !important}[dir='ltr'] .sm\:ltr\:pr-4\/12{padding-right:33.333333% !important}[dir='ltr'] .sm\:ltr\:pb-4\/12{padding-bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:pl-4\/12{padding-left:33.333333% !important}[dir='ltr'] .sm\:ltr\:pt-5\/12{padding-top:41.666667% !important}[dir='ltr'] .sm\:ltr\:pr-5\/12{padding-right:41.666667% !important}[dir='ltr'] .sm\:ltr\:pb-5\/12{padding-bottom:41.666667% !important}[dir='ltr'] .sm\:ltr\:pl-5\/12{padding-left:41.666667% !important}[dir='ltr'] .sm\:ltr\:pt-6\/12{padding-top:50% !important}[dir='ltr'] .sm\:ltr\:pr-6\/12{padding-right:50% !important}[dir='ltr'] .sm\:ltr\:pb-6\/12{padding-bottom:50% !important}[dir='ltr'] .sm\:ltr\:pl-6\/12{padding-left:50% !important}[dir='ltr'] .sm\:ltr\:pt-7\/12{padding-top:58.333333% !important}[dir='ltr'] .sm\:ltr\:pr-7\/12{padding-right:58.333333% !important}[dir='ltr'] .sm\:ltr\:pb-7\/12{padding-bottom:58.333333% !important}[dir='ltr'] .sm\:ltr\:pl-7\/12{padding-left:58.333333% !important}[dir='ltr'] .sm\:ltr\:pt-8\/12{padding-top:66.666667% !important}[dir='ltr'] .sm\:ltr\:pr-8\/12{padding-right:66.666667% !important}[dir='ltr'] .sm\:ltr\:pb-8\/12{padding-bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:pl-8\/12{padding-left:66.666667% !important}[dir='ltr'] .sm\:ltr\:pt-9\/12{padding-top:75% !important}[dir='ltr'] .sm\:ltr\:pr-9\/12{padding-right:75% !important}[dir='ltr'] .sm\:ltr\:pb-9\/12{padding-bottom:75% !important}[dir='ltr'] .sm\:ltr\:pl-9\/12{padding-left:75% !important}[dir='ltr'] .sm\:ltr\:pt-10\/12{padding-top:83.333333% !important}[dir='ltr'] .sm\:ltr\:pr-10\/12{padding-right:83.333333% !important}[dir='ltr'] .sm\:ltr\:pb-10\/12{padding-bottom:83.333333% !important}[dir='ltr'] .sm\:ltr\:pl-10\/12{padding-left:83.333333% !important}[dir='ltr'] .sm\:ltr\:pt-11\/12{padding-top:91.666667% !important}[dir='ltr'] .sm\:ltr\:pr-11\/12{padding-right:91.666667% !important}[dir='ltr'] .sm\:ltr\:pb-11\/12{padding-bottom:91.666667% !important}[dir='ltr'] .sm\:ltr\:pl-11\/12{padding-left:91.666667% !important}[dir='ltr'] .sm\:ltr\:pt-full{padding-top:100% !important}[dir='ltr'] .sm\:ltr\:pr-full{padding-right:100% !important}[dir='ltr'] .sm\:ltr\:pb-full{padding-bottom:100% !important}[dir='ltr'] .sm\:ltr\:pl-full{padding-left:100% !important}[dir='rtl'] .sm\:rtl\:p-0{padding:0 !important}[dir='rtl'] .sm\:rtl\:p-1{padding:.25rem !important}[dir='rtl'] .sm\:rtl\:p-2{padding:.5rem !important}[dir='rtl'] .sm\:rtl\:p-3{padding:.75rem !important}[dir='rtl'] .sm\:rtl\:p-4{padding:1rem !important}[dir='rtl'] .sm\:rtl\:p-5{padding:1.25rem !important}[dir='rtl'] .sm\:rtl\:p-6{padding:1.5rem !important}[dir='rtl'] .sm\:rtl\:p-7{padding:1.75rem !important}[dir='rtl'] .sm\:rtl\:p-8{padding:2rem !important}[dir='rtl'] .sm\:rtl\:p-9{padding:2.25rem !important}[dir='rtl'] .sm\:rtl\:p-10{padding:2.5rem !important}[dir='rtl'] .sm\:rtl\:p-11{padding:2.75rem !important}[dir='rtl'] .sm\:rtl\:p-12{padding:3rem !important}[dir='rtl'] .sm\:rtl\:p-13{padding:3.25rem !important}[dir='rtl'] .sm\:rtl\:p-14{padding:3.5rem !important}[dir='rtl'] .sm\:rtl\:p-15{padding:3.75rem !important}[dir='rtl'] .sm\:rtl\:p-16{padding:4rem !important}[dir='rtl'] .sm\:rtl\:p-20{padding:5rem !important}[dir='rtl'] .sm\:rtl\:p-24{padding:6rem !important}[dir='rtl'] .sm\:rtl\:p-28{padding:7rem !important}[dir='rtl'] .sm\:rtl\:p-32{padding:8rem !important}[dir='rtl'] .sm\:rtl\:p-36{padding:9rem !important}[dir='rtl'] .sm\:rtl\:p-40{padding:10rem !important}[dir='rtl'] .sm\:rtl\:p-48{padding:12rem !important}[dir='rtl'] .sm\:rtl\:p-56{padding:14rem !important}[dir='rtl'] .sm\:rtl\:p-60{padding:15rem !important}[dir='rtl'] .sm\:rtl\:p-64{padding:16rem !important}[dir='rtl'] .sm\:rtl\:p-72{padding:18rem !important}[dir='rtl'] .sm\:rtl\:p-80{padding:20rem !important}[dir='rtl'] .sm\:rtl\:p-96{padding:24rem !important}[dir='rtl'] .sm\:rtl\:p-px{padding:1px !important}[dir='rtl'] .sm\:rtl\:p-0\.5{padding:.125rem !important}[dir='rtl'] .sm\:rtl\:p-1\.5{padding:.375rem !important}[dir='rtl'] .sm\:rtl\:p-2\.5{padding:.625rem !important}[dir='rtl'] .sm\:rtl\:p-3\.5{padding:.875rem !important}[dir='rtl'] .sm\:rtl\:p-1\/2{padding:50% !important}[dir='rtl'] .sm\:rtl\:p-1\/3{padding:33.333333% !important}[dir='rtl'] .sm\:rtl\:p-2\/3{padding:66.666667% !important}[dir='rtl'] .sm\:rtl\:p-1\/4{padding:25% !important}[dir='rtl'] .sm\:rtl\:p-2\/4{padding:50% !important}[dir='rtl'] .sm\:rtl\:p-3\/4{padding:75% !important}[dir='rtl'] .sm\:rtl\:p-1\/5{padding:20% !important}[dir='rtl'] .sm\:rtl\:p-2\/5{padding:40% !important}[dir='rtl'] .sm\:rtl\:p-3\/5{padding:60% !important}[dir='rtl'] .sm\:rtl\:p-4\/5{padding:80% !important}[dir='rtl'] .sm\:rtl\:p-1\/6{padding:16.666667% !important}[dir='rtl'] .sm\:rtl\:p-2\/6{padding:33.333333% !important}[dir='rtl'] .sm\:rtl\:p-3\/6{padding:50% !important}[dir='rtl'] .sm\:rtl\:p-4\/6{padding:66.666667% !important}[dir='rtl'] .sm\:rtl\:p-5\/6{padding:83.333333% !important}[dir='rtl'] .sm\:rtl\:p-1\/12{padding:8.333333% !important}[dir='rtl'] .sm\:rtl\:p-2\/12{padding:16.666667% !important}[dir='rtl'] .sm\:rtl\:p-3\/12{padding:25% !important}[dir='rtl'] .sm\:rtl\:p-4\/12{padding:33.333333% !important}[dir='rtl'] .sm\:rtl\:p-5\/12{padding:41.666667% !important}[dir='rtl'] .sm\:rtl\:p-6\/12{padding:50% !important}[dir='rtl'] .sm\:rtl\:p-7\/12{padding:58.333333% !important}[dir='rtl'] .sm\:rtl\:p-8\/12{padding:66.666667% !important}[dir='rtl'] .sm\:rtl\:p-9\/12{padding:75% !important}[dir='rtl'] .sm\:rtl\:p-10\/12{padding:83.333333% !important}[dir='rtl'] .sm\:rtl\:p-11\/12{padding:91.666667% !important}[dir='rtl'] .sm\:rtl\:p-full{padding:100% !important}[dir='rtl'] .sm\:rtl\:py-0{padding-top:0 !important;padding-bottom:0 !important}[dir='rtl'] .sm\:rtl\:px-0{padding-left:0 !important;padding-right:0 !important}[dir='rtl'] .sm\:rtl\:py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}[dir='rtl'] .sm\:rtl\:px-1{padding-left:.25rem !important;padding-right:.25rem !important}[dir='rtl'] .sm\:rtl\:py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}[dir='rtl'] .sm\:rtl\:px-2{padding-left:.5rem !important;padding-right:.5rem !important}[dir='rtl'] .sm\:rtl\:py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}[dir='rtl'] .sm\:rtl\:px-3{padding-left:.75rem !important;padding-right:.75rem !important}[dir='rtl'] .sm\:rtl\:py-4{padding-top:1rem !important;padding-bottom:1rem !important}[dir='rtl'] .sm\:rtl\:px-4{padding-left:1rem !important;padding-right:1rem !important}[dir='rtl'] .sm\:rtl\:py-5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}[dir='rtl'] .sm\:rtl\:px-5{padding-left:1.25rem !important;padding-right:1.25rem !important}[dir='rtl'] .sm\:rtl\:py-6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}[dir='rtl'] .sm\:rtl\:px-6{padding-left:1.5rem !important;padding-right:1.5rem !important}[dir='rtl'] .sm\:rtl\:py-7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}[dir='rtl'] .sm\:rtl\:px-7{padding-left:1.75rem !important;padding-right:1.75rem !important}[dir='rtl'] .sm\:rtl\:py-8{padding-top:2rem !important;padding-bottom:2rem !important}[dir='rtl'] .sm\:rtl\:px-8{padding-left:2rem !important;padding-right:2rem !important}[dir='rtl'] .sm\:rtl\:py-9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}[dir='rtl'] .sm\:rtl\:px-9{padding-left:2.25rem !important;padding-right:2.25rem !important}[dir='rtl'] .sm\:rtl\:py-10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}[dir='rtl'] .sm\:rtl\:px-10{padding-left:2.5rem !important;padding-right:2.5rem !important}[dir='rtl'] .sm\:rtl\:py-11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}[dir='rtl'] .sm\:rtl\:px-11{padding-left:2.75rem !important;padding-right:2.75rem !important}[dir='rtl'] .sm\:rtl\:py-12{padding-top:3rem !important;padding-bottom:3rem !important}[dir='rtl'] .sm\:rtl\:px-12{padding-left:3rem !important;padding-right:3rem !important}[dir='rtl'] .sm\:rtl\:py-13{padding-top:3.25rem !important;padding-bottom:3.25rem !important}[dir='rtl'] .sm\:rtl\:px-13{padding-left:3.25rem !important;padding-right:3.25rem !important}[dir='rtl'] .sm\:rtl\:py-14{padding-top:3.5rem !important;padding-bottom:3.5rem !important}[dir='rtl'] .sm\:rtl\:px-14{padding-left:3.5rem !important;padding-right:3.5rem !important}[dir='rtl'] .sm\:rtl\:py-15{padding-top:3.75rem !important;padding-bottom:3.75rem !important}[dir='rtl'] .sm\:rtl\:px-15{padding-left:3.75rem !important;padding-right:3.75rem !important}[dir='rtl'] .sm\:rtl\:py-16{padding-top:4rem !important;padding-bottom:4rem !important}[dir='rtl'] .sm\:rtl\:px-16{padding-left:4rem !important;padding-right:4rem !important}[dir='rtl'] .sm\:rtl\:py-20{padding-top:5rem !important;padding-bottom:5rem !important}[dir='rtl'] .sm\:rtl\:px-20{padding-left:5rem !important;padding-right:5rem !important}[dir='rtl'] .sm\:rtl\:py-24{padding-top:6rem !important;padding-bottom:6rem !important}[dir='rtl'] .sm\:rtl\:px-24{padding-left:6rem !important;padding-right:6rem !important}[dir='rtl'] .sm\:rtl\:py-28{padding-top:7rem !important;padding-bottom:7rem !important}[dir='rtl'] .sm\:rtl\:px-28{padding-left:7rem !important;padding-right:7rem !important}[dir='rtl'] .sm\:rtl\:py-32{padding-top:8rem !important;padding-bottom:8rem !important}[dir='rtl'] .sm\:rtl\:px-32{padding-left:8rem !important;padding-right:8rem !important}[dir='rtl'] .sm\:rtl\:py-36{padding-top:9rem !important;padding-bottom:9rem !important}[dir='rtl'] .sm\:rtl\:px-36{padding-left:9rem !important;padding-right:9rem !important}[dir='rtl'] .sm\:rtl\:py-40{padding-top:10rem !important;padding-bottom:10rem !important}[dir='rtl'] .sm\:rtl\:px-40{padding-left:10rem !important;padding-right:10rem !important}[dir='rtl'] .sm\:rtl\:py-48{padding-top:12rem !important;padding-bottom:12rem !important}[dir='rtl'] .sm\:rtl\:px-48{padding-left:12rem !important;padding-right:12rem !important}[dir='rtl'] .sm\:rtl\:py-56{padding-top:14rem !important;padding-bottom:14rem !important}[dir='rtl'] .sm\:rtl\:px-56{padding-left:14rem !important;padding-right:14rem !important}[dir='rtl'] .sm\:rtl\:py-60{padding-top:15rem !important;padding-bottom:15rem !important}[dir='rtl'] .sm\:rtl\:px-60{padding-left:15rem !important;padding-right:15rem !important}[dir='rtl'] .sm\:rtl\:py-64{padding-top:16rem !important;padding-bottom:16rem !important}[dir='rtl'] .sm\:rtl\:px-64{padding-left:16rem !important;padding-right:16rem !important}[dir='rtl'] .sm\:rtl\:py-72{padding-top:18rem !important;padding-bottom:18rem !important}[dir='rtl'] .sm\:rtl\:px-72{padding-left:18rem !important;padding-right:18rem !important}[dir='rtl'] .sm\:rtl\:py-80{padding-top:20rem !important;padding-bottom:20rem !important}[dir='rtl'] .sm\:rtl\:px-80{padding-left:20rem !important;padding-right:20rem !important}[dir='rtl'] .sm\:rtl\:py-96{padding-top:24rem !important;padding-bottom:24rem !important}[dir='rtl'] .sm\:rtl\:px-96{padding-left:24rem !important;padding-right:24rem !important}[dir='rtl'] .sm\:rtl\:py-px{padding-top:1px !important;padding-bottom:1px !important}[dir='rtl'] .sm\:rtl\:px-px{padding-left:1px !important;padding-right:1px !important}[dir='rtl'] .sm\:rtl\:py-0\.5{padding-top:.125rem !important;padding-bottom:.125rem !important}[dir='rtl'] .sm\:rtl\:px-0\.5{padding-left:.125rem !important;padding-right:.125rem !important}[dir='rtl'] .sm\:rtl\:py-1\.5{padding-top:.375rem !important;padding-bottom:.375rem !important}[dir='rtl'] .sm\:rtl\:px-1\.5{padding-left:.375rem !important;padding-right:.375rem !important}[dir='rtl'] .sm\:rtl\:py-2\.5{padding-top:.625rem !important;padding-bottom:.625rem !important}[dir='rtl'] .sm\:rtl\:px-2\.5{padding-left:.625rem !important;padding-right:.625rem !important}[dir='rtl'] .sm\:rtl\:py-3\.5{padding-top:.875rem !important;padding-bottom:.875rem !important}[dir='rtl'] .sm\:rtl\:px-3\.5{padding-left:.875rem !important;padding-right:.875rem !important}[dir='rtl'] .sm\:rtl\:py-1\/2{padding-top:50% !important;padding-bottom:50% !important}[dir='rtl'] .sm\:rtl\:px-1\/2{padding-left:50% !important;padding-right:50% !important}[dir='rtl'] .sm\:rtl\:py-1\/3{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:px-1\/3{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:py-2\/3{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:px-2\/3{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:py-1\/4{padding-top:25% !important;padding-bottom:25% !important}[dir='rtl'] .sm\:rtl\:px-1\/4{padding-left:25% !important;padding-right:25% !important}[dir='rtl'] .sm\:rtl\:py-2\/4{padding-top:50% !important;padding-bottom:50% !important}[dir='rtl'] .sm\:rtl\:px-2\/4{padding-left:50% !important;padding-right:50% !important}[dir='rtl'] .sm\:rtl\:py-3\/4{padding-top:75% !important;padding-bottom:75% !important}[dir='rtl'] .sm\:rtl\:px-3\/4{padding-left:75% !important;padding-right:75% !important}[dir='rtl'] .sm\:rtl\:py-1\/5{padding-top:20% !important;padding-bottom:20% !important}[dir='rtl'] .sm\:rtl\:px-1\/5{padding-left:20% !important;padding-right:20% !important}[dir='rtl'] .sm\:rtl\:py-2\/5{padding-top:40% !important;padding-bottom:40% !important}[dir='rtl'] .sm\:rtl\:px-2\/5{padding-left:40% !important;padding-right:40% !important}[dir='rtl'] .sm\:rtl\:py-3\/5{padding-top:60% !important;padding-bottom:60% !important}[dir='rtl'] .sm\:rtl\:px-3\/5{padding-left:60% !important;padding-right:60% !important}[dir='rtl'] .sm\:rtl\:py-4\/5{padding-top:80% !important;padding-bottom:80% !important}[dir='rtl'] .sm\:rtl\:px-4\/5{padding-left:80% !important;padding-right:80% !important}[dir='rtl'] .sm\:rtl\:py-1\/6{padding-top:16.666667% !important;padding-bottom:16.666667% !important}[dir='rtl'] .sm\:rtl\:px-1\/6{padding-left:16.666667% !important;padding-right:16.666667% !important}[dir='rtl'] .sm\:rtl\:py-2\/6{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:px-2\/6{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:py-3\/6{padding-top:50% !important;padding-bottom:50% !important}[dir='rtl'] .sm\:rtl\:px-3\/6{padding-left:50% !important;padding-right:50% !important}[dir='rtl'] .sm\:rtl\:py-4\/6{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:px-4\/6{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:py-5\/6{padding-top:83.333333% !important;padding-bottom:83.333333% !important}[dir='rtl'] .sm\:rtl\:px-5\/6{padding-left:83.333333% !important;padding-right:83.333333% !important}[dir='rtl'] .sm\:rtl\:py-1\/12{padding-top:8.333333% !important;padding-bottom:8.333333% !important}[dir='rtl'] .sm\:rtl\:px-1\/12{padding-left:8.333333% !important;padding-right:8.333333% !important}[dir='rtl'] .sm\:rtl\:py-2\/12{padding-top:16.666667% !important;padding-bottom:16.666667% !important}[dir='rtl'] .sm\:rtl\:px-2\/12{padding-left:16.666667% !important;padding-right:16.666667% !important}[dir='rtl'] .sm\:rtl\:py-3\/12{padding-top:25% !important;padding-bottom:25% !important}[dir='rtl'] .sm\:rtl\:px-3\/12{padding-left:25% !important;padding-right:25% !important}[dir='rtl'] .sm\:rtl\:py-4\/12{padding-top:33.333333% !important;padding-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:px-4\/12{padding-left:33.333333% !important;padding-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:py-5\/12{padding-top:41.666667% !important;padding-bottom:41.666667% !important}[dir='rtl'] .sm\:rtl\:px-5\/12{padding-left:41.666667% !important;padding-right:41.666667% !important}[dir='rtl'] .sm\:rtl\:py-6\/12{padding-top:50% !important;padding-bottom:50% !important}[dir='rtl'] .sm\:rtl\:px-6\/12{padding-left:50% !important;padding-right:50% !important}[dir='rtl'] .sm\:rtl\:py-7\/12{padding-top:58.333333% !important;padding-bottom:58.333333% !important}[dir='rtl'] .sm\:rtl\:px-7\/12{padding-left:58.333333% !important;padding-right:58.333333% !important}[dir='rtl'] .sm\:rtl\:py-8\/12{padding-top:66.666667% !important;padding-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:px-8\/12{padding-left:66.666667% !important;padding-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:py-9\/12{padding-top:75% !important;padding-bottom:75% !important}[dir='rtl'] .sm\:rtl\:px-9\/12{padding-left:75% !important;padding-right:75% !important}[dir='rtl'] .sm\:rtl\:py-10\/12{padding-top:83.333333% !important;padding-bottom:83.333333% !important}[dir='rtl'] .sm\:rtl\:px-10\/12{padding-left:83.333333% !important;padding-right:83.333333% !important}[dir='rtl'] .sm\:rtl\:py-11\/12{padding-top:91.666667% !important;padding-bottom:91.666667% !important}[dir='rtl'] .sm\:rtl\:px-11\/12{padding-left:91.666667% !important;padding-right:91.666667% !important}[dir='rtl'] .sm\:rtl\:py-full{padding-top:100% !important;padding-bottom:100% !important}[dir='rtl'] .sm\:rtl\:px-full{padding-left:100% !important;padding-right:100% !important}[dir='rtl'] .sm\:rtl\:pt-0{padding-top:0 !important}[dir='rtl'] .sm\:rtl\:pr-0{padding-right:0 !important}[dir='rtl'] .sm\:rtl\:pb-0{padding-bottom:0 !important}[dir='rtl'] .sm\:rtl\:pl-0{padding-left:0 !important}[dir='rtl'] .sm\:rtl\:pt-1{padding-top:.25rem !important}[dir='rtl'] .sm\:rtl\:pr-1{padding-right:.25rem !important}[dir='rtl'] .sm\:rtl\:pb-1{padding-bottom:.25rem !important}[dir='rtl'] .sm\:rtl\:pl-1{padding-left:.25rem !important}[dir='rtl'] .sm\:rtl\:pt-2{padding-top:.5rem !important}[dir='rtl'] .sm\:rtl\:pr-2{padding-right:.5rem !important}[dir='rtl'] .sm\:rtl\:pb-2{padding-bottom:.5rem !important}[dir='rtl'] .sm\:rtl\:pl-2{padding-left:.5rem !important}[dir='rtl'] .sm\:rtl\:pt-3{padding-top:.75rem !important}[dir='rtl'] .sm\:rtl\:pr-3{padding-right:.75rem !important}[dir='rtl'] .sm\:rtl\:pb-3{padding-bottom:.75rem !important}[dir='rtl'] .sm\:rtl\:pl-3{padding-left:.75rem !important}[dir='rtl'] .sm\:rtl\:pt-4{padding-top:1rem !important}[dir='rtl'] .sm\:rtl\:pr-4{padding-right:1rem !important}[dir='rtl'] .sm\:rtl\:pb-4{padding-bottom:1rem !important}[dir='rtl'] .sm\:rtl\:pl-4{padding-left:1rem !important}[dir='rtl'] .sm\:rtl\:pt-5{padding-top:1.25rem !important}[dir='rtl'] .sm\:rtl\:pr-5{padding-right:1.25rem !important}[dir='rtl'] .sm\:rtl\:pb-5{padding-bottom:1.25rem !important}[dir='rtl'] .sm\:rtl\:pl-5{padding-left:1.25rem !important}[dir='rtl'] .sm\:rtl\:pt-6{padding-top:1.5rem !important}[dir='rtl'] .sm\:rtl\:pr-6{padding-right:1.5rem !important}[dir='rtl'] .sm\:rtl\:pb-6{padding-bottom:1.5rem !important}[dir='rtl'] .sm\:rtl\:pl-6{padding-left:1.5rem !important}[dir='rtl'] .sm\:rtl\:pt-7{padding-top:1.75rem !important}[dir='rtl'] .sm\:rtl\:pr-7{padding-right:1.75rem !important}[dir='rtl'] .sm\:rtl\:pb-7{padding-bottom:1.75rem !important}[dir='rtl'] .sm\:rtl\:pl-7{padding-left:1.75rem !important}[dir='rtl'] .sm\:rtl\:pt-8{padding-top:2rem !important}[dir='rtl'] .sm\:rtl\:pr-8{padding-right:2rem !important}[dir='rtl'] .sm\:rtl\:pb-8{padding-bottom:2rem !important}[dir='rtl'] .sm\:rtl\:pl-8{padding-left:2rem !important}[dir='rtl'] .sm\:rtl\:pt-9{padding-top:2.25rem !important}[dir='rtl'] .sm\:rtl\:pr-9{padding-right:2.25rem !important}[dir='rtl'] .sm\:rtl\:pb-9{padding-bottom:2.25rem !important}[dir='rtl'] .sm\:rtl\:pl-9{padding-left:2.25rem !important}[dir='rtl'] .sm\:rtl\:pt-10{padding-top:2.5rem !important}[dir='rtl'] .sm\:rtl\:pr-10{padding-right:2.5rem !important}[dir='rtl'] .sm\:rtl\:pb-10{padding-bottom:2.5rem !important}[dir='rtl'] .sm\:rtl\:pl-10{padding-left:2.5rem !important}[dir='rtl'] .sm\:rtl\:pt-11{padding-top:2.75rem !important}[dir='rtl'] .sm\:rtl\:pr-11{padding-right:2.75rem !important}[dir='rtl'] .sm\:rtl\:pb-11{padding-bottom:2.75rem !important}[dir='rtl'] .sm\:rtl\:pl-11{padding-left:2.75rem !important}[dir='rtl'] .sm\:rtl\:pt-12{padding-top:3rem !important}[dir='rtl'] .sm\:rtl\:pr-12{padding-right:3rem !important}[dir='rtl'] .sm\:rtl\:pb-12{padding-bottom:3rem !important}[dir='rtl'] .sm\:rtl\:pl-12{padding-left:3rem !important}[dir='rtl'] .sm\:rtl\:pt-13{padding-top:3.25rem !important}[dir='rtl'] .sm\:rtl\:pr-13{padding-right:3.25rem !important}[dir='rtl'] .sm\:rtl\:pb-13{padding-bottom:3.25rem !important}[dir='rtl'] .sm\:rtl\:pl-13{padding-left:3.25rem !important}[dir='rtl'] .sm\:rtl\:pt-14{padding-top:3.5rem !important}[dir='rtl'] .sm\:rtl\:pr-14{padding-right:3.5rem !important}[dir='rtl'] .sm\:rtl\:pb-14{padding-bottom:3.5rem !important}[dir='rtl'] .sm\:rtl\:pl-14{padding-left:3.5rem !important}[dir='rtl'] .sm\:rtl\:pt-15{padding-top:3.75rem !important}[dir='rtl'] .sm\:rtl\:pr-15{padding-right:3.75rem !important}[dir='rtl'] .sm\:rtl\:pb-15{padding-bottom:3.75rem !important}[dir='rtl'] .sm\:rtl\:pl-15{padding-left:3.75rem !important}[dir='rtl'] .sm\:rtl\:pt-16{padding-top:4rem !important}[dir='rtl'] .sm\:rtl\:pr-16{padding-right:4rem !important}[dir='rtl'] .sm\:rtl\:pb-16{padding-bottom:4rem !important}[dir='rtl'] .sm\:rtl\:pl-16{padding-left:4rem !important}[dir='rtl'] .sm\:rtl\:pt-20{padding-top:5rem !important}[dir='rtl'] .sm\:rtl\:pr-20{padding-right:5rem !important}[dir='rtl'] .sm\:rtl\:pb-20{padding-bottom:5rem !important}[dir='rtl'] .sm\:rtl\:pl-20{padding-left:5rem !important}[dir='rtl'] .sm\:rtl\:pt-24{padding-top:6rem !important}[dir='rtl'] .sm\:rtl\:pr-24{padding-right:6rem !important}[dir='rtl'] .sm\:rtl\:pb-24{padding-bottom:6rem !important}[dir='rtl'] .sm\:rtl\:pl-24{padding-left:6rem !important}[dir='rtl'] .sm\:rtl\:pt-28{padding-top:7rem !important}[dir='rtl'] .sm\:rtl\:pr-28{padding-right:7rem !important}[dir='rtl'] .sm\:rtl\:pb-28{padding-bottom:7rem !important}[dir='rtl'] .sm\:rtl\:pl-28{padding-left:7rem !important}[dir='rtl'] .sm\:rtl\:pt-32{padding-top:8rem !important}[dir='rtl'] .sm\:rtl\:pr-32{padding-right:8rem !important}[dir='rtl'] .sm\:rtl\:pb-32{padding-bottom:8rem !important}[dir='rtl'] .sm\:rtl\:pl-32{padding-left:8rem !important}[dir='rtl'] .sm\:rtl\:pt-36{padding-top:9rem !important}[dir='rtl'] .sm\:rtl\:pr-36{padding-right:9rem !important}[dir='rtl'] .sm\:rtl\:pb-36{padding-bottom:9rem !important}[dir='rtl'] .sm\:rtl\:pl-36{padding-left:9rem !important}[dir='rtl'] .sm\:rtl\:pt-40{padding-top:10rem !important}[dir='rtl'] .sm\:rtl\:pr-40{padding-right:10rem !important}[dir='rtl'] .sm\:rtl\:pb-40{padding-bottom:10rem !important}[dir='rtl'] .sm\:rtl\:pl-40{padding-left:10rem !important}[dir='rtl'] .sm\:rtl\:pt-48{padding-top:12rem !important}[dir='rtl'] .sm\:rtl\:pr-48{padding-right:12rem !important}[dir='rtl'] .sm\:rtl\:pb-48{padding-bottom:12rem !important}[dir='rtl'] .sm\:rtl\:pl-48{padding-left:12rem !important}[dir='rtl'] .sm\:rtl\:pt-56{padding-top:14rem !important}[dir='rtl'] .sm\:rtl\:pr-56{padding-right:14rem !important}[dir='rtl'] .sm\:rtl\:pb-56{padding-bottom:14rem !important}[dir='rtl'] .sm\:rtl\:pl-56{padding-left:14rem !important}[dir='rtl'] .sm\:rtl\:pt-60{padding-top:15rem !important}[dir='rtl'] .sm\:rtl\:pr-60{padding-right:15rem !important}[dir='rtl'] .sm\:rtl\:pb-60{padding-bottom:15rem !important}[dir='rtl'] .sm\:rtl\:pl-60{padding-left:15rem !important}[dir='rtl'] .sm\:rtl\:pt-64{padding-top:16rem !important}[dir='rtl'] .sm\:rtl\:pr-64{padding-right:16rem !important}[dir='rtl'] .sm\:rtl\:pb-64{padding-bottom:16rem !important}[dir='rtl'] .sm\:rtl\:pl-64{padding-left:16rem !important}[dir='rtl'] .sm\:rtl\:pt-72{padding-top:18rem !important}[dir='rtl'] .sm\:rtl\:pr-72{padding-right:18rem !important}[dir='rtl'] .sm\:rtl\:pb-72{padding-bottom:18rem !important}[dir='rtl'] .sm\:rtl\:pl-72{padding-left:18rem !important}[dir='rtl'] .sm\:rtl\:pt-80{padding-top:20rem !important}[dir='rtl'] .sm\:rtl\:pr-80{padding-right:20rem !important}[dir='rtl'] .sm\:rtl\:pb-80{padding-bottom:20rem !important}[dir='rtl'] .sm\:rtl\:pl-80{padding-left:20rem !important}[dir='rtl'] .sm\:rtl\:pt-96{padding-top:24rem !important}[dir='rtl'] .sm\:rtl\:pr-96{padding-right:24rem !important}[dir='rtl'] .sm\:rtl\:pb-96{padding-bottom:24rem !important}[dir='rtl'] .sm\:rtl\:pl-96{padding-left:24rem !important}[dir='rtl'] .sm\:rtl\:pt-px{padding-top:1px !important}[dir='rtl'] .sm\:rtl\:pr-px{padding-right:1px !important}[dir='rtl'] .sm\:rtl\:pb-px{padding-bottom:1px !important}[dir='rtl'] .sm\:rtl\:pl-px{padding-left:1px !important}[dir='rtl'] .sm\:rtl\:pt-0\.5{padding-top:.125rem !important}[dir='rtl'] .sm\:rtl\:pr-0\.5{padding-right:.125rem !important}[dir='rtl'] .sm\:rtl\:pb-0\.5{padding-bottom:.125rem !important}[dir='rtl'] .sm\:rtl\:pl-0\.5{padding-left:.125rem !important}[dir='rtl'] .sm\:rtl\:pt-1\.5{padding-top:.375rem !important}[dir='rtl'] .sm\:rtl\:pr-1\.5{padding-right:.375rem !important}[dir='rtl'] .sm\:rtl\:pb-1\.5{padding-bottom:.375rem !important}[dir='rtl'] .sm\:rtl\:pl-1\.5{padding-left:.375rem !important}[dir='rtl'] .sm\:rtl\:pt-2\.5{padding-top:.625rem !important}[dir='rtl'] .sm\:rtl\:pr-2\.5{padding-right:.625rem !important}[dir='rtl'] .sm\:rtl\:pb-2\.5{padding-bottom:.625rem !important}[dir='rtl'] .sm\:rtl\:pl-2\.5{padding-left:.625rem !important}[dir='rtl'] .sm\:rtl\:pt-3\.5{padding-top:.875rem !important}[dir='rtl'] .sm\:rtl\:pr-3\.5{padding-right:.875rem !important}[dir='rtl'] .sm\:rtl\:pb-3\.5{padding-bottom:.875rem !important}[dir='rtl'] .sm\:rtl\:pl-3\.5{padding-left:.875rem !important}[dir='rtl'] .sm\:rtl\:pt-1\/2{padding-top:50% !important}[dir='rtl'] .sm\:rtl\:pr-1\/2{padding-right:50% !important}[dir='rtl'] .sm\:rtl\:pb-1\/2{padding-bottom:50% !important}[dir='rtl'] .sm\:rtl\:pl-1\/2{padding-left:50% !important}[dir='rtl'] .sm\:rtl\:pt-1\/3{padding-top:33.333333% !important}[dir='rtl'] .sm\:rtl\:pr-1\/3{padding-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:pb-1\/3{padding-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:pl-1\/3{padding-left:33.333333% !important}[dir='rtl'] .sm\:rtl\:pt-2\/3{padding-top:66.666667% !important}[dir='rtl'] .sm\:rtl\:pr-2\/3{padding-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:pb-2\/3{padding-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:pl-2\/3{padding-left:66.666667% !important}[dir='rtl'] .sm\:rtl\:pt-1\/4{padding-top:25% !important}[dir='rtl'] .sm\:rtl\:pr-1\/4{padding-right:25% !important}[dir='rtl'] .sm\:rtl\:pb-1\/4{padding-bottom:25% !important}[dir='rtl'] .sm\:rtl\:pl-1\/4{padding-left:25% !important}[dir='rtl'] .sm\:rtl\:pt-2\/4{padding-top:50% !important}[dir='rtl'] .sm\:rtl\:pr-2\/4{padding-right:50% !important}[dir='rtl'] .sm\:rtl\:pb-2\/4{padding-bottom:50% !important}[dir='rtl'] .sm\:rtl\:pl-2\/4{padding-left:50% !important}[dir='rtl'] .sm\:rtl\:pt-3\/4{padding-top:75% !important}[dir='rtl'] .sm\:rtl\:pr-3\/4{padding-right:75% !important}[dir='rtl'] .sm\:rtl\:pb-3\/4{padding-bottom:75% !important}[dir='rtl'] .sm\:rtl\:pl-3\/4{padding-left:75% !important}[dir='rtl'] .sm\:rtl\:pt-1\/5{padding-top:20% !important}[dir='rtl'] .sm\:rtl\:pr-1\/5{padding-right:20% !important}[dir='rtl'] .sm\:rtl\:pb-1\/5{padding-bottom:20% !important}[dir='rtl'] .sm\:rtl\:pl-1\/5{padding-left:20% !important}[dir='rtl'] .sm\:rtl\:pt-2\/5{padding-top:40% !important}[dir='rtl'] .sm\:rtl\:pr-2\/5{padding-right:40% !important}[dir='rtl'] .sm\:rtl\:pb-2\/5{padding-bottom:40% !important}[dir='rtl'] .sm\:rtl\:pl-2\/5{padding-left:40% !important}[dir='rtl'] .sm\:rtl\:pt-3\/5{padding-top:60% !important}[dir='rtl'] .sm\:rtl\:pr-3\/5{padding-right:60% !important}[dir='rtl'] .sm\:rtl\:pb-3\/5{padding-bottom:60% !important}[dir='rtl'] .sm\:rtl\:pl-3\/5{padding-left:60% !important}[dir='rtl'] .sm\:rtl\:pt-4\/5{padding-top:80% !important}[dir='rtl'] .sm\:rtl\:pr-4\/5{padding-right:80% !important}[dir='rtl'] .sm\:rtl\:pb-4\/5{padding-bottom:80% !important}[dir='rtl'] .sm\:rtl\:pl-4\/5{padding-left:80% !important}[dir='rtl'] .sm\:rtl\:pt-1\/6{padding-top:16.666667% !important}[dir='rtl'] .sm\:rtl\:pr-1\/6{padding-right:16.666667% !important}[dir='rtl'] .sm\:rtl\:pb-1\/6{padding-bottom:16.666667% !important}[dir='rtl'] .sm\:rtl\:pl-1\/6{padding-left:16.666667% !important}[dir='rtl'] .sm\:rtl\:pt-2\/6{padding-top:33.333333% !important}[dir='rtl'] .sm\:rtl\:pr-2\/6{padding-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:pb-2\/6{padding-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:pl-2\/6{padding-left:33.333333% !important}[dir='rtl'] .sm\:rtl\:pt-3\/6{padding-top:50% !important}[dir='rtl'] .sm\:rtl\:pr-3\/6{padding-right:50% !important}[dir='rtl'] .sm\:rtl\:pb-3\/6{padding-bottom:50% !important}[dir='rtl'] .sm\:rtl\:pl-3\/6{padding-left:50% !important}[dir='rtl'] .sm\:rtl\:pt-4\/6{padding-top:66.666667% !important}[dir='rtl'] .sm\:rtl\:pr-4\/6{padding-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:pb-4\/6{padding-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:pl-4\/6{padding-left:66.666667% !important}[dir='rtl'] .sm\:rtl\:pt-5\/6{padding-top:83.333333% !important}[dir='rtl'] .sm\:rtl\:pr-5\/6{padding-right:83.333333% !important}[dir='rtl'] .sm\:rtl\:pb-5\/6{padding-bottom:83.333333% !important}[dir='rtl'] .sm\:rtl\:pl-5\/6{padding-left:83.333333% !important}[dir='rtl'] .sm\:rtl\:pt-1\/12{padding-top:8.333333% !important}[dir='rtl'] .sm\:rtl\:pr-1\/12{padding-right:8.333333% !important}[dir='rtl'] .sm\:rtl\:pb-1\/12{padding-bottom:8.333333% !important}[dir='rtl'] .sm\:rtl\:pl-1\/12{padding-left:8.333333% !important}[dir='rtl'] .sm\:rtl\:pt-2\/12{padding-top:16.666667% !important}[dir='rtl'] .sm\:rtl\:pr-2\/12{padding-right:16.666667% !important}[dir='rtl'] .sm\:rtl\:pb-2\/12{padding-bottom:16.666667% !important}[dir='rtl'] .sm\:rtl\:pl-2\/12{padding-left:16.666667% !important}[dir='rtl'] .sm\:rtl\:pt-3\/12{padding-top:25% !important}[dir='rtl'] .sm\:rtl\:pr-3\/12{padding-right:25% !important}[dir='rtl'] .sm\:rtl\:pb-3\/12{padding-bottom:25% !important}[dir='rtl'] .sm\:rtl\:pl-3\/12{padding-left:25% !important}[dir='rtl'] .sm\:rtl\:pt-4\/12{padding-top:33.333333% !important}[dir='rtl'] .sm\:rtl\:pr-4\/12{padding-right:33.333333% !important}[dir='rtl'] .sm\:rtl\:pb-4\/12{padding-bottom:33.333333% !important}[dir='rtl'] .sm\:rtl\:pl-4\/12{padding-left:33.333333% !important}[dir='rtl'] .sm\:rtl\:pt-5\/12{padding-top:41.666667% !important}[dir='rtl'] .sm\:rtl\:pr-5\/12{padding-right:41.666667% !important}[dir='rtl'] .sm\:rtl\:pb-5\/12{padding-bottom:41.666667% !important}[dir='rtl'] .sm\:rtl\:pl-5\/12{padding-left:41.666667% !important}[dir='rtl'] .sm\:rtl\:pt-6\/12{padding-top:50% !important}[dir='rtl'] .sm\:rtl\:pr-6\/12{padding-right:50% !important}[dir='rtl'] .sm\:rtl\:pb-6\/12{padding-bottom:50% !important}[dir='rtl'] .sm\:rtl\:pl-6\/12{padding-left:50% !important}[dir='rtl'] .sm\:rtl\:pt-7\/12{padding-top:58.333333% !important}[dir='rtl'] .sm\:rtl\:pr-7\/12{padding-right:58.333333% !important}[dir='rtl'] .sm\:rtl\:pb-7\/12{padding-bottom:58.333333% !important}[dir='rtl'] .sm\:rtl\:pl-7\/12{padding-left:58.333333% !important}[dir='rtl'] .sm\:rtl\:pt-8\/12{padding-top:66.666667% !important}[dir='rtl'] .sm\:rtl\:pr-8\/12{padding-right:66.666667% !important}[dir='rtl'] .sm\:rtl\:pb-8\/12{padding-bottom:66.666667% !important}[dir='rtl'] .sm\:rtl\:pl-8\/12{padding-left:66.666667% !important}[dir='rtl'] .sm\:rtl\:pt-9\/12{padding-top:75% !important}[dir='rtl'] .sm\:rtl\:pr-9\/12{padding-right:75% !important}[dir='rtl'] .sm\:rtl\:pb-9\/12{padding-bottom:75% !important}[dir='rtl'] .sm\:rtl\:pl-9\/12{padding-left:75% !important}[dir='rtl'] .sm\:rtl\:pt-10\/12{padding-top:83.333333% !important}[dir='rtl'] .sm\:rtl\:pr-10\/12{padding-right:83.333333% !important}[dir='rtl'] .sm\:rtl\:pb-10\/12{padding-bottom:83.333333% !important}[dir='rtl'] .sm\:rtl\:pl-10\/12{padding-left:83.333333% !important}[dir='rtl'] .sm\:rtl\:pt-11\/12{padding-top:91.666667% !important}[dir='rtl'] .sm\:rtl\:pr-11\/12{padding-right:91.666667% !important}[dir='rtl'] .sm\:rtl\:pb-11\/12{padding-bottom:91.666667% !important}[dir='rtl'] .sm\:rtl\:pl-11\/12{padding-left:91.666667% !important}[dir='rtl'] .sm\:rtl\:pt-full{padding-top:100% !important}[dir='rtl'] .sm\:rtl\:pr-full{padding-right:100% !important}[dir='rtl'] .sm\:rtl\:pb-full{padding-bottom:100% !important}[dir='rtl'] .sm\:rtl\:pl-full{padding-left:100% !important}.sm\:placeholder-transparent::-moz-placeholder{color:transparent !important}.sm\:placeholder-transparent:-ms-input-placeholder{color:transparent !important}.sm\:placeholder-transparent::-ms-input-placeholder{color:transparent !important}.sm\:placeholder-transparent::placeholder{color:transparent !important}.sm\:placeholder-white::-moz-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.sm\:placeholder-white:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.sm\:placeholder-white::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.sm\:placeholder-white::placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.sm\:placeholder-blackest::-moz-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.sm\:placeholder-blackest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.sm\:placeholder-blackest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.sm\:placeholder-blackest::placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.sm\:placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,0.7) !important}.sm\:placeholder-blackest-70:-ms-input-placeholder{color:rgba(0,0,0,0.7) !important}.sm\:placeholder-blackest-70::-ms-input-placeholder{color:rgba(0,0,0,0.7) !important}.sm\:placeholder-blackest-70::placeholder{color:rgba(0,0,0,0.7) !important}.sm\:placeholder-black::-moz-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.sm\:placeholder-black:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.sm\:placeholder-black::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.sm\:placeholder-black::placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-darkest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-darkest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-darkest::placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-darker:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-darker::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-darker::placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-dark:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-dark::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-dark::placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.sm\:placeholder-gray::-moz-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.sm\:placeholder-gray:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.sm\:placeholder-gray::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.sm\:placeholder-gray::placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-light:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-light::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-light::placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-lighter:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-lighter::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-lighter::placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-lightest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-lightest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.sm\:placeholder-gray-lightest::placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-darkest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-darkest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-darkest::placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-dark:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-dark::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-dark::placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.sm\:placeholder-blue::-moz-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.sm\:placeholder-blue:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.sm\:placeholder-blue::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.sm\:placeholder-blue::placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-light:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-light::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-light::placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.sm\:placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,0.6) !important}.sm\:placeholder-blue-highlight:-ms-input-placeholder{color:rgba(180,215,255,0.6) !important}.sm\:placeholder-blue-highlight::-ms-input-placeholder{color:rgba(180,215,255,0.6) !important}.sm\:placeholder-blue-highlight::placeholder{color:rgba(180,215,255,0.6) !important}.sm\:placeholder-orange::-moz-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.sm\:placeholder-orange:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.sm\:placeholder-orange::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.sm\:placeholder-orange::placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.sm\:placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.sm\:placeholder-orange-darker:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.sm\:placeholder-orange-darker::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.sm\:placeholder-orange-darker::placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.sm\:placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.sm\:placeholder-orange-darkest:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.sm\:placeholder-orange-darkest::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.sm\:placeholder-orange-darkest::placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.sm\:placeholder-red::-moz-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.sm\:placeholder-red:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.sm\:placeholder-red::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.sm\:placeholder-red::placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.sm\:placeholder-green::-moz-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.sm\:placeholder-green:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.sm\:placeholder-green::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.sm\:placeholder-green::placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.sm\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.sm\:placeholder-yellow-400:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.sm\:placeholder-yellow-400::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.sm\:placeholder-yellow-400::placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.sm\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.sm\:placeholder-yellow-50:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.sm\:placeholder-yellow-50::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.sm\:placeholder-yellow-50::placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent !important}.sm\:focus\:placeholder-transparent:focus:-ms-input-placeholder{color:transparent !important}.sm\:focus\:placeholder-transparent:focus::-ms-input-placeholder{color:transparent !important}.sm\:focus\:placeholder-transparent:focus::placeholder{color:transparent !important}.sm\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-white:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-white:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1 !important;color:#fff !important;color:rgba(255,255,255,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blackest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blackest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1 !important;color:#000 !important;color:rgba(0,0,0,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,0.7) !important}.sm\:focus\:placeholder-blackest-70:focus:-ms-input-placeholder{color:rgba(0,0,0,0.7) !important}.sm\:focus\:placeholder-blackest-70:focus::-ms-input-placeholder{color:rgba(0,0,0,0.7) !important}.sm\:focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,0.7) !important}.sm\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-black:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-black:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1 !important;color:#23292d !important;color:rgba(35,41,45,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-darkest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-darkest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1 !important;color:#3d4852 !important;color:rgba(61,72,82,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-darker:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-darker:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1 !important;color:#606f7b !important;color:rgba(96,111,123,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-dark:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-dark:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1 !important;color:#9ea3a8 !important;color:rgba(158,163,168,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1 !important;color:#b8c2cc !important;color:rgba(184,194,204,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-light:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-light:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1 !important;color:#dae1e7 !important;color:rgba(218,225,231,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-lighter:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-lighter:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1 !important;color:#f1f1f1 !important;color:rgba(241,241,241,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-lightest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-lightest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1 !important;color:#f8fafc !important;color:rgba(248,250,252,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-darkest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-darkest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1 !important;color:#1673a7 !important;color:rgba(22,115,167,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-dark:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-dark:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1 !important;color:#0073aa !important;color:rgba(0,115,170,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1 !important;color:#3188e6 !important;color:rgba(49,136,230,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-light:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-light:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1 !important;color:#a4cafe !important;color:rgba(164,202,254,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,0.6) !important}.sm\:focus\:placeholder-blue-highlight:focus:-ms-input-placeholder{color:rgba(180,215,255,0.6) !important}.sm\:focus\:placeholder-blue-highlight:focus::-ms-input-placeholder{color:rgba(180,215,255,0.6) !important}.sm\:focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,0.6) !important}.sm\:focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1 !important;color:#e1642e !important;color:rgba(225,100,46,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange-darker:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange-darker:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1 !important;color:#d5551e !important;color:rgba(213,85,30,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange-darkest:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange-darkest:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1 !important;color:#c9501c !important;color:rgba(201,80,28,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-red:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-red:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1 !important;color:#e82323 !important;color:rgba(232,35,35,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-green:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-green:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1 !important;color:#46b450 !important;color:rgba(70,180,80,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1 !important;color:#e3a008 !important;color:rgba(227,160,8,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.sm\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1 !important;color:#fdfdea !important;color:rgba(253,253,234,var(--placeholder-opacity)) !important}.sm\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0 !important}.sm\:placeholder-opacity-0:-ms-input-placeholder{--placeholder-opacity:0 !important}.sm\:placeholder-opacity-0::-ms-input-placeholder{--placeholder-opacity:0 !important}.sm\:placeholder-opacity-0::placeholder{--placeholder-opacity:0 !important}.sm\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:.25 !important}.sm\:placeholder-opacity-25:-ms-input-placeholder{--placeholder-opacity:.25 !important}.sm\:placeholder-opacity-25::-ms-input-placeholder{--placeholder-opacity:.25 !important}.sm\:placeholder-opacity-25::placeholder{--placeholder-opacity:.25 !important}.sm\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:.5 !important}.sm\:placeholder-opacity-50:-ms-input-placeholder{--placeholder-opacity:.5 !important}.sm\:placeholder-opacity-50::-ms-input-placeholder{--placeholder-opacity:.5 !important}.sm\:placeholder-opacity-50::placeholder{--placeholder-opacity:.5 !important}.sm\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:.75 !important}.sm\:placeholder-opacity-75:-ms-input-placeholder{--placeholder-opacity:.75 !important}.sm\:placeholder-opacity-75::-ms-input-placeholder{--placeholder-opacity:.75 !important}.sm\:placeholder-opacity-75::placeholder{--placeholder-opacity:.75 !important}.sm\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1 !important}.sm\:placeholder-opacity-100:-ms-input-placeholder{--placeholder-opacity:1 !important}.sm\:placeholder-opacity-100::-ms-input-placeholder{--placeholder-opacity:1 !important}.sm\:placeholder-opacity-100::placeholder{--placeholder-opacity:1 !important}.sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0 !important}.sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{--placeholder-opacity:0 !important}.sm\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{--placeholder-opacity:0 !important}.sm\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0 !important}.sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:.25 !important}.sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{--placeholder-opacity:.25 !important}.sm\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{--placeholder-opacity:.25 !important}.sm\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:.25 !important}.sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:.5 !important}.sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{--placeholder-opacity:.5 !important}.sm\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{--placeholder-opacity:.5 !important}.sm\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:.5 !important}.sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:.75 !important}.sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{--placeholder-opacity:.75 !important}.sm\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{--placeholder-opacity:.75 !important}.sm\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:.75 !important}.sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1 !important}.sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{--placeholder-opacity:1 !important}.sm\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{--placeholder-opacity:1 !important}.sm\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1 !important}.sm\:pointer-events-none{pointer-events:none !important}.sm\:pointer-events-auto{pointer-events:auto !important}.sm\:static{position:static !important}.sm\:fixed{position:fixed !important}.sm\:absolute{position:absolute !important}.sm\:relative{position:relative !important}.sm\:sticky{position:-webkit-sticky !important;position:sticky !important}.sm\:inset-0{top:0 !important;right:0 !important;bottom:0 !important;left:0 !important}.sm\:inset-1{top:.25rem !important;right:.25rem !important;bottom:.25rem !important;left:.25rem !important}.sm\:inset-2{top:.5rem !important;right:.5rem !important;bottom:.5rem !important;left:.5rem !important}.sm\:inset-3{top:.75rem !important;right:.75rem !important;bottom:.75rem !important;left:.75rem !important}.sm\:inset-4{top:1rem !important;right:1rem !important;bottom:1rem !important;left:1rem !important}.sm\:inset-5{top:1.25rem !important;right:1.25rem !important;bottom:1.25rem !important;left:1.25rem !important}.sm\:inset-6{top:1.5rem !important;right:1.5rem !important;bottom:1.5rem !important;left:1.5rem !important}.sm\:inset-7{top:1.75rem !important;right:1.75rem !important;bottom:1.75rem !important;left:1.75rem !important}.sm\:inset-8{top:2rem !important;right:2rem !important;bottom:2rem !important;left:2rem !important}.sm\:inset-9{top:2.25rem !important;right:2.25rem !important;bottom:2.25rem !important;left:2.25rem !important}.sm\:inset-10{top:2.5rem !important;right:2.5rem !important;bottom:2.5rem !important;left:2.5rem !important}.sm\:inset-11{top:2.75rem !important;right:2.75rem !important;bottom:2.75rem !important;left:2.75rem !important}.sm\:inset-12{top:3rem !important;right:3rem !important;bottom:3rem !important;left:3rem !important}.sm\:inset-13{top:3.25rem !important;right:3.25rem !important;bottom:3.25rem !important;left:3.25rem !important}.sm\:inset-14{top:3.5rem !important;right:3.5rem !important;bottom:3.5rem !important;left:3.5rem !important}.sm\:inset-15{top:3.75rem !important;right:3.75rem !important;bottom:3.75rem !important;left:3.75rem !important}.sm\:inset-16{top:4rem !important;right:4rem !important;bottom:4rem !important;left:4rem !important}.sm\:inset-20{top:5rem !important;right:5rem !important;bottom:5rem !important;left:5rem !important}.sm\:inset-24{top:6rem !important;right:6rem !important;bottom:6rem !important;left:6rem !important}.sm\:inset-28{top:7rem !important;right:7rem !important;bottom:7rem !important;left:7rem !important}.sm\:inset-32{top:8rem !important;right:8rem !important;bottom:8rem !important;left:8rem !important}.sm\:inset-36{top:9rem !important;right:9rem !important;bottom:9rem !important;left:9rem !important}.sm\:inset-40{top:10rem !important;right:10rem !important;bottom:10rem !important;left:10rem !important}.sm\:inset-48{top:12rem !important;right:12rem !important;bottom:12rem !important;left:12rem !important}.sm\:inset-56{top:14rem !important;right:14rem !important;bottom:14rem !important;left:14rem !important}.sm\:inset-60{top:15rem !important;right:15rem !important;bottom:15rem !important;left:15rem !important}.sm\:inset-64{top:16rem !important;right:16rem !important;bottom:16rem !important;left:16rem !important}.sm\:inset-72{top:18rem !important;right:18rem !important;bottom:18rem !important;left:18rem !important}.sm\:inset-80{top:20rem !important;right:20rem !important;bottom:20rem !important;left:20rem !important}.sm\:inset-96{top:24rem !important;right:24rem !important;bottom:24rem !important;left:24rem !important}.sm\:inset-auto{top:auto !important;right:auto !important;bottom:auto !important;left:auto !important}.sm\:inset-px{top:1px !important;right:1px !important;bottom:1px !important;left:1px !important}.sm\:inset-0\.5{top:.125rem !important;right:.125rem !important;bottom:.125rem !important;left:.125rem !important}.sm\:inset-1\.5{top:.375rem !important;right:.375rem !important;bottom:.375rem !important;left:.375rem !important}.sm\:inset-2\.5{top:.625rem !important;right:.625rem !important;bottom:.625rem !important;left:.625rem !important}.sm\:inset-3\.5{top:.875rem !important;right:.875rem !important;bottom:.875rem !important;left:.875rem !important}.sm\:inset-1\/2{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}.sm\:inset-1\/3{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}.sm\:inset-2\/3{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}.sm\:inset-1\/4{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}.sm\:inset-2\/4{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}.sm\:inset-3\/4{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}.sm\:inset-1\/5{top:20% !important;right:20% !important;bottom:20% !important;left:20% !important}.sm\:inset-2\/5{top:40% !important;right:40% !important;bottom:40% !important;left:40% !important}.sm\:inset-3\/5{top:60% !important;right:60% !important;bottom:60% !important;left:60% !important}.sm\:inset-4\/5{top:80% !important;right:80% !important;bottom:80% !important;left:80% !important}.sm\:inset-1\/6{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}.sm\:inset-2\/6{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}.sm\:inset-3\/6{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}.sm\:inset-4\/6{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}.sm\:inset-5\/6{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}.sm\:inset-1\/12{top:8.333333% !important;right:8.333333% !important;bottom:8.333333% !important;left:8.333333% !important}.sm\:inset-2\/12{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}.sm\:inset-3\/12{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}.sm\:inset-4\/12{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}.sm\:inset-5\/12{top:41.666667% !important;right:41.666667% !important;bottom:41.666667% !important;left:41.666667% !important}.sm\:inset-6\/12{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}.sm\:inset-7\/12{top:58.333333% !important;right:58.333333% !important;bottom:58.333333% !important;left:58.333333% !important}.sm\:inset-8\/12{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}.sm\:inset-9\/12{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}.sm\:inset-10\/12{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}.sm\:inset-11\/12{top:91.666667% !important;right:91.666667% !important;bottom:91.666667% !important;left:91.666667% !important}.sm\:inset-full{top:100% !important;right:100% !important;bottom:100% !important;left:100% !important}.sm\:inset-y-0{top:0 !important;bottom:0 !important}.sm\:inset-x-0{right:0 !important;left:0 !important}.sm\:inset-y-1{top:.25rem !important;bottom:.25rem !important}.sm\:inset-x-1{right:.25rem !important;left:.25rem !important}.sm\:inset-y-2{top:.5rem !important;bottom:.5rem !important}.sm\:inset-x-2{right:.5rem !important;left:.5rem !important}.sm\:inset-y-3{top:.75rem !important;bottom:.75rem !important}.sm\:inset-x-3{right:.75rem !important;left:.75rem !important}.sm\:inset-y-4{top:1rem !important;bottom:1rem !important}.sm\:inset-x-4{right:1rem !important;left:1rem !important}.sm\:inset-y-5{top:1.25rem !important;bottom:1.25rem !important}.sm\:inset-x-5{right:1.25rem !important;left:1.25rem !important}.sm\:inset-y-6{top:1.5rem !important;bottom:1.5rem !important}.sm\:inset-x-6{right:1.5rem !important;left:1.5rem !important}.sm\:inset-y-7{top:1.75rem !important;bottom:1.75rem !important}.sm\:inset-x-7{right:1.75rem !important;left:1.75rem !important}.sm\:inset-y-8{top:2rem !important;bottom:2rem !important}.sm\:inset-x-8{right:2rem !important;left:2rem !important}.sm\:inset-y-9{top:2.25rem !important;bottom:2.25rem !important}.sm\:inset-x-9{right:2.25rem !important;left:2.25rem !important}.sm\:inset-y-10{top:2.5rem !important;bottom:2.5rem !important}.sm\:inset-x-10{right:2.5rem !important;left:2.5rem !important}.sm\:inset-y-11{top:2.75rem !important;bottom:2.75rem !important}.sm\:inset-x-11{right:2.75rem !important;left:2.75rem !important}.sm\:inset-y-12{top:3rem !important;bottom:3rem !important}.sm\:inset-x-12{right:3rem !important;left:3rem !important}.sm\:inset-y-13{top:3.25rem !important;bottom:3.25rem !important}.sm\:inset-x-13{right:3.25rem !important;left:3.25rem !important}.sm\:inset-y-14{top:3.5rem !important;bottom:3.5rem !important}.sm\:inset-x-14{right:3.5rem !important;left:3.5rem !important}.sm\:inset-y-15{top:3.75rem !important;bottom:3.75rem !important}.sm\:inset-x-15{right:3.75rem !important;left:3.75rem !important}.sm\:inset-y-16{top:4rem !important;bottom:4rem !important}.sm\:inset-x-16{right:4rem !important;left:4rem !important}.sm\:inset-y-20{top:5rem !important;bottom:5rem !important}.sm\:inset-x-20{right:5rem !important;left:5rem !important}.sm\:inset-y-24{top:6rem !important;bottom:6rem !important}.sm\:inset-x-24{right:6rem !important;left:6rem !important}.sm\:inset-y-28{top:7rem !important;bottom:7rem !important}.sm\:inset-x-28{right:7rem !important;left:7rem !important}.sm\:inset-y-32{top:8rem !important;bottom:8rem !important}.sm\:inset-x-32{right:8rem !important;left:8rem !important}.sm\:inset-y-36{top:9rem !important;bottom:9rem !important}.sm\:inset-x-36{right:9rem !important;left:9rem !important}.sm\:inset-y-40{top:10rem !important;bottom:10rem !important}.sm\:inset-x-40{right:10rem !important;left:10rem !important}.sm\:inset-y-48{top:12rem !important;bottom:12rem !important}.sm\:inset-x-48{right:12rem !important;left:12rem !important}.sm\:inset-y-56{top:14rem !important;bottom:14rem !important}.sm\:inset-x-56{right:14rem !important;left:14rem !important}.sm\:inset-y-60{top:15rem !important;bottom:15rem !important}.sm\:inset-x-60{right:15rem !important;left:15rem !important}.sm\:inset-y-64{top:16rem !important;bottom:16rem !important}.sm\:inset-x-64{right:16rem !important;left:16rem !important}.sm\:inset-y-72{top:18rem !important;bottom:18rem !important}.sm\:inset-x-72{right:18rem !important;left:18rem !important}.sm\:inset-y-80{top:20rem !important;bottom:20rem !important}.sm\:inset-x-80{right:20rem !important;left:20rem !important}.sm\:inset-y-96{top:24rem !important;bottom:24rem !important}.sm\:inset-x-96{right:24rem !important;left:24rem !important}.sm\:inset-y-auto{top:auto !important;bottom:auto !important}.sm\:inset-x-auto{right:auto !important;left:auto !important}.sm\:inset-y-px{top:1px !important;bottom:1px !important}.sm\:inset-x-px{right:1px !important;left:1px !important}.sm\:inset-y-0\.5{top:.125rem !important;bottom:.125rem !important}.sm\:inset-x-0\.5{right:.125rem !important;left:.125rem !important}.sm\:inset-y-1\.5{top:.375rem !important;bottom:.375rem !important}.sm\:inset-x-1\.5{right:.375rem !important;left:.375rem !important}.sm\:inset-y-2\.5{top:.625rem !important;bottom:.625rem !important}.sm\:inset-x-2\.5{right:.625rem !important;left:.625rem !important}.sm\:inset-y-3\.5{top:.875rem !important;bottom:.875rem !important}.sm\:inset-x-3\.5{right:.875rem !important;left:.875rem !important}.sm\:inset-y-1\/2{top:50% !important;bottom:50% !important}.sm\:inset-x-1\/2{right:50% !important;left:50% !important}.sm\:inset-y-1\/3{top:33.333333% !important;bottom:33.333333% !important}.sm\:inset-x-1\/3{right:33.333333% !important;left:33.333333% !important}.sm\:inset-y-2\/3{top:66.666667% !important;bottom:66.666667% !important}.sm\:inset-x-2\/3{right:66.666667% !important;left:66.666667% !important}.sm\:inset-y-1\/4{top:25% !important;bottom:25% !important}.sm\:inset-x-1\/4{right:25% !important;left:25% !important}.sm\:inset-y-2\/4{top:50% !important;bottom:50% !important}.sm\:inset-x-2\/4{right:50% !important;left:50% !important}.sm\:inset-y-3\/4{top:75% !important;bottom:75% !important}.sm\:inset-x-3\/4{right:75% !important;left:75% !important}.sm\:inset-y-1\/5{top:20% !important;bottom:20% !important}.sm\:inset-x-1\/5{right:20% !important;left:20% !important}.sm\:inset-y-2\/5{top:40% !important;bottom:40% !important}.sm\:inset-x-2\/5{right:40% !important;left:40% !important}.sm\:inset-y-3\/5{top:60% !important;bottom:60% !important}.sm\:inset-x-3\/5{right:60% !important;left:60% !important}.sm\:inset-y-4\/5{top:80% !important;bottom:80% !important}.sm\:inset-x-4\/5{right:80% !important;left:80% !important}.sm\:inset-y-1\/6{top:16.666667% !important;bottom:16.666667% !important}.sm\:inset-x-1\/6{right:16.666667% !important;left:16.666667% !important}.sm\:inset-y-2\/6{top:33.333333% !important;bottom:33.333333% !important}.sm\:inset-x-2\/6{right:33.333333% !important;left:33.333333% !important}.sm\:inset-y-3\/6{top:50% !important;bottom:50% !important}.sm\:inset-x-3\/6{right:50% !important;left:50% !important}.sm\:inset-y-4\/6{top:66.666667% !important;bottom:66.666667% !important}.sm\:inset-x-4\/6{right:66.666667% !important;left:66.666667% !important}.sm\:inset-y-5\/6{top:83.333333% !important;bottom:83.333333% !important}.sm\:inset-x-5\/6{right:83.333333% !important;left:83.333333% !important}.sm\:inset-y-1\/12{top:8.333333% !important;bottom:8.333333% !important}.sm\:inset-x-1\/12{right:8.333333% !important;left:8.333333% !important}.sm\:inset-y-2\/12{top:16.666667% !important;bottom:16.666667% !important}.sm\:inset-x-2\/12{right:16.666667% !important;left:16.666667% !important}.sm\:inset-y-3\/12{top:25% !important;bottom:25% !important}.sm\:inset-x-3\/12{right:25% !important;left:25% !important}.sm\:inset-y-4\/12{top:33.333333% !important;bottom:33.333333% !important}.sm\:inset-x-4\/12{right:33.333333% !important;left:33.333333% !important}.sm\:inset-y-5\/12{top:41.666667% !important;bottom:41.666667% !important}.sm\:inset-x-5\/12{right:41.666667% !important;left:41.666667% !important}.sm\:inset-y-6\/12{top:50% !important;bottom:50% !important}.sm\:inset-x-6\/12{right:50% !important;left:50% !important}.sm\:inset-y-7\/12{top:58.333333% !important;bottom:58.333333% !important}.sm\:inset-x-7\/12{right:58.333333% !important;left:58.333333% !important}.sm\:inset-y-8\/12{top:66.666667% !important;bottom:66.666667% !important}.sm\:inset-x-8\/12{right:66.666667% !important;left:66.666667% !important}.sm\:inset-y-9\/12{top:75% !important;bottom:75% !important}.sm\:inset-x-9\/12{right:75% !important;left:75% !important}.sm\:inset-y-10\/12{top:83.333333% !important;bottom:83.333333% !important}.sm\:inset-x-10\/12{right:83.333333% !important;left:83.333333% !important}.sm\:inset-y-11\/12{top:91.666667% !important;bottom:91.666667% !important}.sm\:inset-x-11\/12{right:91.666667% !important;left:91.666667% !important}.sm\:inset-y-full{top:100% !important;bottom:100% !important}.sm\:inset-x-full{right:100% !important;left:100% !important}.sm\:top-0{top:0 !important}.sm\:right-0{right:0 !important}.sm\:bottom-0{bottom:0 !important}.sm\:left-0{left:0 !important}.sm\:top-1{top:.25rem !important}.sm\:right-1{right:.25rem !important}.sm\:bottom-1{bottom:.25rem !important}.sm\:left-1{left:.25rem !important}.sm\:top-2{top:.5rem !important}.sm\:right-2{right:.5rem !important}.sm\:bottom-2{bottom:.5rem !important}.sm\:left-2{left:.5rem !important}.sm\:top-3{top:.75rem !important}.sm\:right-3{right:.75rem !important}.sm\:bottom-3{bottom:.75rem !important}.sm\:left-3{left:.75rem !important}.sm\:top-4{top:1rem !important}.sm\:right-4{right:1rem !important}.sm\:bottom-4{bottom:1rem !important}.sm\:left-4{left:1rem !important}.sm\:top-5{top:1.25rem !important}.sm\:right-5{right:1.25rem !important}.sm\:bottom-5{bottom:1.25rem !important}.sm\:left-5{left:1.25rem !important}.sm\:top-6{top:1.5rem !important}.sm\:right-6{right:1.5rem !important}.sm\:bottom-6{bottom:1.5rem !important}.sm\:left-6{left:1.5rem !important}.sm\:top-7{top:1.75rem !important}.sm\:right-7{right:1.75rem !important}.sm\:bottom-7{bottom:1.75rem !important}.sm\:left-7{left:1.75rem !important}.sm\:top-8{top:2rem !important}.sm\:right-8{right:2rem !important}.sm\:bottom-8{bottom:2rem !important}.sm\:left-8{left:2rem !important}.sm\:top-9{top:2.25rem !important}.sm\:right-9{right:2.25rem !important}.sm\:bottom-9{bottom:2.25rem !important}.sm\:left-9{left:2.25rem !important}.sm\:top-10{top:2.5rem !important}.sm\:right-10{right:2.5rem !important}.sm\:bottom-10{bottom:2.5rem !important}.sm\:left-10{left:2.5rem !important}.sm\:top-11{top:2.75rem !important}.sm\:right-11{right:2.75rem !important}.sm\:bottom-11{bottom:2.75rem !important}.sm\:left-11{left:2.75rem !important}.sm\:top-12{top:3rem !important}.sm\:right-12{right:3rem !important}.sm\:bottom-12{bottom:3rem !important}.sm\:left-12{left:3rem !important}.sm\:top-13{top:3.25rem !important}.sm\:right-13{right:3.25rem !important}.sm\:bottom-13{bottom:3.25rem !important}.sm\:left-13{left:3.25rem !important}.sm\:top-14{top:3.5rem !important}.sm\:right-14{right:3.5rem !important}.sm\:bottom-14{bottom:3.5rem !important}.sm\:left-14{left:3.5rem !important}.sm\:top-15{top:3.75rem !important}.sm\:right-15{right:3.75rem !important}.sm\:bottom-15{bottom:3.75rem !important}.sm\:left-15{left:3.75rem !important}.sm\:top-16{top:4rem !important}.sm\:right-16{right:4rem !important}.sm\:bottom-16{bottom:4rem !important}.sm\:left-16{left:4rem !important}.sm\:top-20{top:5rem !important}.sm\:right-20{right:5rem !important}.sm\:bottom-20{bottom:5rem !important}.sm\:left-20{left:5rem !important}.sm\:top-24{top:6rem !important}.sm\:right-24{right:6rem !important}.sm\:bottom-24{bottom:6rem !important}.sm\:left-24{left:6rem !important}.sm\:top-28{top:7rem !important}.sm\:right-28{right:7rem !important}.sm\:bottom-28{bottom:7rem !important}.sm\:left-28{left:7rem !important}.sm\:top-32{top:8rem !important}.sm\:right-32{right:8rem !important}.sm\:bottom-32{bottom:8rem !important}.sm\:left-32{left:8rem !important}.sm\:top-36{top:9rem !important}.sm\:right-36{right:9rem !important}.sm\:bottom-36{bottom:9rem !important}.sm\:left-36{left:9rem !important}.sm\:top-40{top:10rem !important}.sm\:right-40{right:10rem !important}.sm\:bottom-40{bottom:10rem !important}.sm\:left-40{left:10rem !important}.sm\:top-48{top:12rem !important}.sm\:right-48{right:12rem !important}.sm\:bottom-48{bottom:12rem !important}.sm\:left-48{left:12rem !important}.sm\:top-56{top:14rem !important}.sm\:right-56{right:14rem !important}.sm\:bottom-56{bottom:14rem !important}.sm\:left-56{left:14rem !important}.sm\:top-60{top:15rem !important}.sm\:right-60{right:15rem !important}.sm\:bottom-60{bottom:15rem !important}.sm\:left-60{left:15rem !important}.sm\:top-64{top:16rem !important}.sm\:right-64{right:16rem !important}.sm\:bottom-64{bottom:16rem !important}.sm\:left-64{left:16rem !important}.sm\:top-72{top:18rem !important}.sm\:right-72{right:18rem !important}.sm\:bottom-72{bottom:18rem !important}.sm\:left-72{left:18rem !important}.sm\:top-80{top:20rem !important}.sm\:right-80{right:20rem !important}.sm\:bottom-80{bottom:20rem !important}.sm\:left-80{left:20rem !important}.sm\:top-96{top:24rem !important}.sm\:right-96{right:24rem !important}.sm\:bottom-96{bottom:24rem !important}.sm\:left-96{left:24rem !important}.sm\:top-auto{top:auto !important}.sm\:right-auto{right:auto !important}.sm\:bottom-auto{bottom:auto !important}.sm\:left-auto{left:auto !important}.sm\:top-px{top:1px !important}.sm\:right-px{right:1px !important}.sm\:bottom-px{bottom:1px !important}.sm\:left-px{left:1px !important}.sm\:top-0\.5{top:.125rem !important}.sm\:right-0\.5{right:.125rem !important}.sm\:bottom-0\.5{bottom:.125rem !important}.sm\:left-0\.5{left:.125rem !important}.sm\:top-1\.5{top:.375rem !important}.sm\:right-1\.5{right:.375rem !important}.sm\:bottom-1\.5{bottom:.375rem !important}.sm\:left-1\.5{left:.375rem !important}.sm\:top-2\.5{top:.625rem !important}.sm\:right-2\.5{right:.625rem !important}.sm\:bottom-2\.5{bottom:.625rem !important}.sm\:left-2\.5{left:.625rem !important}.sm\:top-3\.5{top:.875rem !important}.sm\:right-3\.5{right:.875rem !important}.sm\:bottom-3\.5{bottom:.875rem !important}.sm\:left-3\.5{left:.875rem !important}.sm\:top-1\/2{top:50% !important}.sm\:right-1\/2{right:50% !important}.sm\:bottom-1\/2{bottom:50% !important}.sm\:left-1\/2{left:50% !important}.sm\:top-1\/3{top:33.333333% !important}.sm\:right-1\/3{right:33.333333% !important}.sm\:bottom-1\/3{bottom:33.333333% !important}.sm\:left-1\/3{left:33.333333% !important}.sm\:top-2\/3{top:66.666667% !important}.sm\:right-2\/3{right:66.666667% !important}.sm\:bottom-2\/3{bottom:66.666667% !important}.sm\:left-2\/3{left:66.666667% !important}.sm\:top-1\/4{top:25% !important}.sm\:right-1\/4{right:25% !important}.sm\:bottom-1\/4{bottom:25% !important}.sm\:left-1\/4{left:25% !important}.sm\:top-2\/4{top:50% !important}.sm\:right-2\/4{right:50% !important}.sm\:bottom-2\/4{bottom:50% !important}.sm\:left-2\/4{left:50% !important}.sm\:top-3\/4{top:75% !important}.sm\:right-3\/4{right:75% !important}.sm\:bottom-3\/4{bottom:75% !important}.sm\:left-3\/4{left:75% !important}.sm\:top-1\/5{top:20% !important}.sm\:right-1\/5{right:20% !important}.sm\:bottom-1\/5{bottom:20% !important}.sm\:left-1\/5{left:20% !important}.sm\:top-2\/5{top:40% !important}.sm\:right-2\/5{right:40% !important}.sm\:bottom-2\/5{bottom:40% !important}.sm\:left-2\/5{left:40% !important}.sm\:top-3\/5{top:60% !important}.sm\:right-3\/5{right:60% !important}.sm\:bottom-3\/5{bottom:60% !important}.sm\:left-3\/5{left:60% !important}.sm\:top-4\/5{top:80% !important}.sm\:right-4\/5{right:80% !important}.sm\:bottom-4\/5{bottom:80% !important}.sm\:left-4\/5{left:80% !important}.sm\:top-1\/6{top:16.666667% !important}.sm\:right-1\/6{right:16.666667% !important}.sm\:bottom-1\/6{bottom:16.666667% !important}.sm\:left-1\/6{left:16.666667% !important}.sm\:top-2\/6{top:33.333333% !important}.sm\:right-2\/6{right:33.333333% !important}.sm\:bottom-2\/6{bottom:33.333333% !important}.sm\:left-2\/6{left:33.333333% !important}.sm\:top-3\/6{top:50% !important}.sm\:right-3\/6{right:50% !important}.sm\:bottom-3\/6{bottom:50% !important}.sm\:left-3\/6{left:50% !important}.sm\:top-4\/6{top:66.666667% !important}.sm\:right-4\/6{right:66.666667% !important}.sm\:bottom-4\/6{bottom:66.666667% !important}.sm\:left-4\/6{left:66.666667% !important}.sm\:top-5\/6{top:83.333333% !important}.sm\:right-5\/6{right:83.333333% !important}.sm\:bottom-5\/6{bottom:83.333333% !important}.sm\:left-5\/6{left:83.333333% !important}.sm\:top-1\/12{top:8.333333% !important}.sm\:right-1\/12{right:8.333333% !important}.sm\:bottom-1\/12{bottom:8.333333% !important}.sm\:left-1\/12{left:8.333333% !important}.sm\:top-2\/12{top:16.666667% !important}.sm\:right-2\/12{right:16.666667% !important}.sm\:bottom-2\/12{bottom:16.666667% !important}.sm\:left-2\/12{left:16.666667% !important}.sm\:top-3\/12{top:25% !important}.sm\:right-3\/12{right:25% !important}.sm\:bottom-3\/12{bottom:25% !important}.sm\:left-3\/12{left:25% !important}.sm\:top-4\/12{top:33.333333% !important}.sm\:right-4\/12{right:33.333333% !important}.sm\:bottom-4\/12{bottom:33.333333% !important}.sm\:left-4\/12{left:33.333333% !important}.sm\:top-5\/12{top:41.666667% !important}.sm\:right-5\/12{right:41.666667% !important}.sm\:bottom-5\/12{bottom:41.666667% !important}.sm\:left-5\/12{left:41.666667% !important}.sm\:top-6\/12{top:50% !important}.sm\:right-6\/12{right:50% !important}.sm\:bottom-6\/12{bottom:50% !important}.sm\:left-6\/12{left:50% !important}.sm\:top-7\/12{top:58.333333% !important}.sm\:right-7\/12{right:58.333333% !important}.sm\:bottom-7\/12{bottom:58.333333% !important}.sm\:left-7\/12{left:58.333333% !important}.sm\:top-8\/12{top:66.666667% !important}.sm\:right-8\/12{right:66.666667% !important}.sm\:bottom-8\/12{bottom:66.666667% !important}.sm\:left-8\/12{left:66.666667% !important}.sm\:top-9\/12{top:75% !important}.sm\:right-9\/12{right:75% !important}.sm\:bottom-9\/12{bottom:75% !important}.sm\:left-9\/12{left:75% !important}.sm\:top-10\/12{top:83.333333% !important}.sm\:right-10\/12{right:83.333333% !important}.sm\:bottom-10\/12{bottom:83.333333% !important}.sm\:left-10\/12{left:83.333333% !important}.sm\:top-11\/12{top:91.666667% !important}.sm\:right-11\/12{right:91.666667% !important}.sm\:bottom-11\/12{bottom:91.666667% !important}.sm\:left-11\/12{left:91.666667% !important}.sm\:top-full{top:100% !important}.sm\:right-full{right:100% !important}.sm\:bottom-full{bottom:100% !important}.sm\:left-full{left:100% !important}[dir='ltr'] .sm\:ltr\:inset-0{top:0 !important;right:0 !important;bottom:0 !important;left:0 !important}[dir='ltr'] .sm\:ltr\:inset-1{top:.25rem !important;right:.25rem !important;bottom:.25rem !important;left:.25rem !important}[dir='ltr'] .sm\:ltr\:inset-2{top:.5rem !important;right:.5rem !important;bottom:.5rem !important;left:.5rem !important}[dir='ltr'] .sm\:ltr\:inset-3{top:.75rem !important;right:.75rem !important;bottom:.75rem !important;left:.75rem !important}[dir='ltr'] .sm\:ltr\:inset-4{top:1rem !important;right:1rem !important;bottom:1rem !important;left:1rem !important}[dir='ltr'] .sm\:ltr\:inset-5{top:1.25rem !important;right:1.25rem !important;bottom:1.25rem !important;left:1.25rem !important}[dir='ltr'] .sm\:ltr\:inset-6{top:1.5rem !important;right:1.5rem !important;bottom:1.5rem !important;left:1.5rem !important}[dir='ltr'] .sm\:ltr\:inset-7{top:1.75rem !important;right:1.75rem !important;bottom:1.75rem !important;left:1.75rem !important}[dir='ltr'] .sm\:ltr\:inset-8{top:2rem !important;right:2rem !important;bottom:2rem !important;left:2rem !important}[dir='ltr'] .sm\:ltr\:inset-9{top:2.25rem !important;right:2.25rem !important;bottom:2.25rem !important;left:2.25rem !important}[dir='ltr'] .sm\:ltr\:inset-10{top:2.5rem !important;right:2.5rem !important;bottom:2.5rem !important;left:2.5rem !important}[dir='ltr'] .sm\:ltr\:inset-11{top:2.75rem !important;right:2.75rem !important;bottom:2.75rem !important;left:2.75rem !important}[dir='ltr'] .sm\:ltr\:inset-12{top:3rem !important;right:3rem !important;bottom:3rem !important;left:3rem !important}[dir='ltr'] .sm\:ltr\:inset-13{top:3.25rem !important;right:3.25rem !important;bottom:3.25rem !important;left:3.25rem !important}[dir='ltr'] .sm\:ltr\:inset-14{top:3.5rem !important;right:3.5rem !important;bottom:3.5rem !important;left:3.5rem !important}[dir='ltr'] .sm\:ltr\:inset-15{top:3.75rem !important;right:3.75rem !important;bottom:3.75rem !important;left:3.75rem !important}[dir='ltr'] .sm\:ltr\:inset-16{top:4rem !important;right:4rem !important;bottom:4rem !important;left:4rem !important}[dir='ltr'] .sm\:ltr\:inset-20{top:5rem !important;right:5rem !important;bottom:5rem !important;left:5rem !important}[dir='ltr'] .sm\:ltr\:inset-24{top:6rem !important;right:6rem !important;bottom:6rem !important;left:6rem !important}[dir='ltr'] .sm\:ltr\:inset-28{top:7rem !important;right:7rem !important;bottom:7rem !important;left:7rem !important}[dir='ltr'] .sm\:ltr\:inset-32{top:8rem !important;right:8rem !important;bottom:8rem !important;left:8rem !important}[dir='ltr'] .sm\:ltr\:inset-36{top:9rem !important;right:9rem !important;bottom:9rem !important;left:9rem !important}[dir='ltr'] .sm\:ltr\:inset-40{top:10rem !important;right:10rem !important;bottom:10rem !important;left:10rem !important}[dir='ltr'] .sm\:ltr\:inset-48{top:12rem !important;right:12rem !important;bottom:12rem !important;left:12rem !important}[dir='ltr'] .sm\:ltr\:inset-56{top:14rem !important;right:14rem !important;bottom:14rem !important;left:14rem !important}[dir='ltr'] .sm\:ltr\:inset-60{top:15rem !important;right:15rem !important;bottom:15rem !important;left:15rem !important}[dir='ltr'] .sm\:ltr\:inset-64{top:16rem !important;right:16rem !important;bottom:16rem !important;left:16rem !important}[dir='ltr'] .sm\:ltr\:inset-72{top:18rem !important;right:18rem !important;bottom:18rem !important;left:18rem !important}[dir='ltr'] .sm\:ltr\:inset-80{top:20rem !important;right:20rem !important;bottom:20rem !important;left:20rem !important}[dir='ltr'] .sm\:ltr\:inset-96{top:24rem !important;right:24rem !important;bottom:24rem !important;left:24rem !important}[dir='ltr'] .sm\:ltr\:inset-auto{top:auto !important;right:auto !important;bottom:auto !important;left:auto !important}[dir='ltr'] .sm\:ltr\:inset-px{top:1px !important;right:1px !important;bottom:1px !important;left:1px !important}[dir='ltr'] .sm\:ltr\:inset-0\.5{top:.125rem !important;right:.125rem !important;bottom:.125rem !important;left:.125rem !important}[dir='ltr'] .sm\:ltr\:inset-1\.5{top:.375rem !important;right:.375rem !important;bottom:.375rem !important;left:.375rem !important}[dir='ltr'] .sm\:ltr\:inset-2\.5{top:.625rem !important;right:.625rem !important;bottom:.625rem !important;left:.625rem !important}[dir='ltr'] .sm\:ltr\:inset-3\.5{top:.875rem !important;right:.875rem !important;bottom:.875rem !important;left:.875rem !important}[dir='ltr'] .sm\:ltr\:inset-1\/2{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='ltr'] .sm\:ltr\:inset-1\/3{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='ltr'] .sm\:ltr\:inset-2\/3{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='ltr'] .sm\:ltr\:inset-1\/4{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}[dir='ltr'] .sm\:ltr\:inset-2\/4{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='ltr'] .sm\:ltr\:inset-3\/4{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}[dir='ltr'] .sm\:ltr\:inset-1\/5{top:20% !important;right:20% !important;bottom:20% !important;left:20% !important}[dir='ltr'] .sm\:ltr\:inset-2\/5{top:40% !important;right:40% !important;bottom:40% !important;left:40% !important}[dir='ltr'] .sm\:ltr\:inset-3\/5{top:60% !important;right:60% !important;bottom:60% !important;left:60% !important}[dir='ltr'] .sm\:ltr\:inset-4\/5{top:80% !important;right:80% !important;bottom:80% !important;left:80% !important}[dir='ltr'] .sm\:ltr\:inset-1\/6{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}[dir='ltr'] .sm\:ltr\:inset-2\/6{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='ltr'] .sm\:ltr\:inset-3\/6{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='ltr'] .sm\:ltr\:inset-4\/6{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='ltr'] .sm\:ltr\:inset-5\/6{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}[dir='ltr'] .sm\:ltr\:inset-1\/12{top:8.333333% !important;right:8.333333% !important;bottom:8.333333% !important;left:8.333333% !important}[dir='ltr'] .sm\:ltr\:inset-2\/12{top:16.666667% !important;right:16.666667% !important;bottom:16.666667% !important;left:16.666667% !important}[dir='ltr'] .sm\:ltr\:inset-3\/12{top:25% !important;right:25% !important;bottom:25% !important;left:25% !important}[dir='ltr'] .sm\:ltr\:inset-4\/12{top:33.333333% !important;right:33.333333% !important;bottom:33.333333% !important;left:33.333333% !important}[dir='ltr'] .sm\:ltr\:inset-5\/12{top:41.666667% !important;right:41.666667% !important;bottom:41.666667% !important;left:41.666667% !important}[dir='ltr'] .sm\:ltr\:inset-6\/12{top:50% !important;right:50% !important;bottom:50% !important;left:50% !important}[dir='ltr'] .sm\:ltr\:inset-7\/12{top:58.333333% !important;right:58.333333% !important;bottom:58.333333% !important;left:58.333333% !important}[dir='ltr'] .sm\:ltr\:inset-8\/12{top:66.666667% !important;right:66.666667% !important;bottom:66.666667% !important;left:66.666667% !important}[dir='ltr'] .sm\:ltr\:inset-9\/12{top:75% !important;right:75% !important;bottom:75% !important;left:75% !important}[dir='ltr'] .sm\:ltr\:inset-10\/12{top:83.333333% !important;right:83.333333% !important;bottom:83.333333% !important;left:83.333333% !important}[dir='ltr'] .sm\:ltr\:inset-11\/12{top:91.666667% !important;right:91.666667% !important;bottom:91.666667% !important;left:91.666667% !important}[dir='ltr'] .sm\:ltr\:inset-full{top:100% !important;right:100% !important;bottom:100% !important;left:100% !important}[dir='ltr'] .sm\:ltr\:inset-y-0{top:0 !important;bottom:0 !important}[dir='ltr'] .sm\:ltr\:inset-x-0{right:0 !important;left:0 !important}[dir='ltr'] .sm\:ltr\:inset-y-1{top:.25rem !important;bottom:.25rem !important}[dir='ltr'] .sm\:ltr\:inset-x-1{right:.25rem !important;left:.25rem !important}[dir='ltr'] .sm\:ltr\:inset-y-2{top:.5rem !important;bottom:.5rem !important}[dir='ltr'] .sm\:ltr\:inset-x-2{right:.5rem !important;left:.5rem !important}[dir='ltr'] .sm\:ltr\:inset-y-3{top:.75rem !important;bottom:.75rem !important}[dir='ltr'] .sm\:ltr\:inset-x-3{right:.75rem !important;left:.75rem !important}[dir='ltr'] .sm\:ltr\:inset-y-4{top:1rem !important;bottom:1rem !important}[dir='ltr'] .sm\:ltr\:inset-x-4{right:1rem !important;left:1rem !important}[dir='ltr'] .sm\:ltr\:inset-y-5{top:1.25rem !important;bottom:1.25rem !important}[dir='ltr'] .sm\:ltr\:inset-x-5{right:1.25rem !important;left:1.25rem !important}[dir='ltr'] .sm\:ltr\:inset-y-6{top:1.5rem !important;bottom:1.5rem !important}[dir='ltr'] .sm\:ltr\:inset-x-6{right:1.5rem !important;left:1.5rem !important}[dir='ltr'] .sm\:ltr\:inset-y-7{top:1.75rem !important;bottom:1.75rem !important}[dir='ltr'] .sm\:ltr\:inset-x-7{right:1.75rem !important;left:1.75rem !important}[dir='ltr'] .sm\:ltr\:inset-y-8{top:2rem !important;bottom:2rem !important}[dir='ltr'] .sm\:ltr\:inset-x-8{right:2rem !important;left:2rem !important}[dir='ltr'] .sm\:ltr\:inset-y-9{top:2.25rem !important;bottom:2.25rem !important}[dir='ltr'] .sm\:ltr\:inset-x-9{right:2.25rem !important;left:2.25rem !important}[dir='ltr'] .sm\:ltr\:inset-y-10{top:2.5rem !important;bottom:2.5rem !important}[dir='ltr'] .sm\:ltr\:inset-x-10{right:2.5rem !important;left:2.5rem !important}[dir='ltr'] .sm\:ltr\:inset-y-11{top:2.75rem !important;bottom:2.75rem !important}[dir='ltr'] .sm\:ltr\:inset-x-11{right:2.75rem !important;left:2.75rem !important}[dir='ltr'] .sm\:ltr\:inset-y-12{top:3rem !important;bottom:3rem !important}[dir='ltr'] .sm\:ltr\:inset-x-12{right:3rem !important;left:3rem !important}[dir='ltr'] .sm\:ltr\:inset-y-13{top:3.25rem !important;bottom:3.25rem !important}[dir='ltr'] .sm\:ltr\:inset-x-13{right:3.25rem !important;left:3.25rem !important}[dir='ltr'] .sm\:ltr\:inset-y-14{top:3.5rem !important;bottom:3.5rem !important}[dir='ltr'] .sm\:ltr\:inset-x-14{right:3.5rem !important;left:3.5rem !important}[dir='ltr'] .sm\:ltr\:inset-y-15{top:3.75rem !important;bottom:3.75rem !important}[dir='ltr'] .sm\:ltr\:inset-x-15{right:3.75rem !important;left:3.75rem !important}[dir='ltr'] .sm\:ltr\:inset-y-16{top:4rem !important;bottom:4rem !important}[dir='ltr'] .sm\:ltr\:inset-x-16{right:4rem !important;left:4rem !important}[dir='ltr'] .sm\:ltr\:inset-y-20{top:5rem !important;bottom:5rem !important}[dir='ltr'] .sm\:ltr\:inset-x-20{right:5rem !important;left:5rem !important}[dir='ltr'] .sm\:ltr\:inset-y-24{top:6rem !important;bottom:6rem !important}[dir='ltr'] .sm\:ltr\:inset-x-24{right:6rem !important;left:6rem !important}[dir='ltr'] .sm\:ltr\:inset-y-28{top:7rem !important;bottom:7rem !important}[dir='ltr'] .sm\:ltr\:inset-x-28{right:7rem !important;left:7rem !important}[dir='ltr'] .sm\:ltr\:inset-y-32{top:8rem !important;bottom:8rem !important}[dir='ltr'] .sm\:ltr\:inset-x-32{right:8rem !important;left:8rem !important}[dir='ltr'] .sm\:ltr\:inset-y-36{top:9rem !important;bottom:9rem !important}[dir='ltr'] .sm\:ltr\:inset-x-36{right:9rem !important;left:9rem !important}[dir='ltr'] .sm\:ltr\:inset-y-40{top:10rem !important;bottom:10rem !important}[dir='ltr'] .sm\:ltr\:inset-x-40{right:10rem !important;left:10rem !important}[dir='ltr'] .sm\:ltr\:inset-y-48{top:12rem !important;bottom:12rem !important}[dir='ltr'] .sm\:ltr\:inset-x-48{right:12rem !important;left:12rem !important}[dir='ltr'] .sm\:ltr\:inset-y-56{top:14rem !important;bottom:14rem !important}[dir='ltr'] .sm\:ltr\:inset-x-56{right:14rem !important;left:14rem !important}[dir='ltr'] .sm\:ltr\:inset-y-60{top:15rem !important;bottom:15rem !important}[dir='ltr'] .sm\:ltr\:inset-x-60{right:15rem !important;left:15rem !important}[dir='ltr'] .sm\:ltr\:inset-y-64{top:16rem !important;bottom:16rem !important}[dir='ltr'] .sm\:ltr\:inset-x-64{right:16rem !important;left:16rem !important}[dir='ltr'] .sm\:ltr\:inset-y-72{top:18rem !important;bottom:18rem !important}[dir='ltr'] .sm\:ltr\:inset-x-72{right:18rem !important;left:18rem !important}[dir='ltr'] .sm\:ltr\:inset-y-80{top:20rem !important;bottom:20rem !important}[dir='ltr'] .sm\:ltr\:inset-x-80{right:20rem !important;left:20rem !important}[dir='ltr'] .sm\:ltr\:inset-y-96{top:24rem !important;bottom:24rem !important}[dir='ltr'] .sm\:ltr\:inset-x-96{right:24rem !important;left:24rem !important}[dir='ltr'] .sm\:ltr\:inset-y-auto{top:auto !important;bottom:auto !important}[dir='ltr'] .sm\:ltr\:inset-x-auto{right:auto !important;left:auto !important}[dir='ltr'] .sm\:ltr\:inset-y-px{top:1px !important;bottom:1px !important}[dir='ltr'] .sm\:ltr\:inset-x-px{right:1px !important;left:1px !important}[dir='ltr'] .sm\:ltr\:inset-y-0\.5{top:.125rem !important;bottom:.125rem !important}[dir='ltr'] .sm\:ltr\:inset-x-0\.5{right:.125rem !important;left:.125rem !important}[dir='ltr'] .sm\:ltr\:inset-y-1\.5{top:.375rem !important;bottom:.375rem !important}[dir='ltr'] .sm\:ltr\:inset-x-1\.5{right:.375rem !important;left:.375rem !important}[dir='ltr'] .sm\:ltr\:inset-y-2\.5{top:.625rem !important;bottom:.625rem !important}[dir='ltr'] .sm\:ltr\:inset-x-2\.5{right:.625rem !important;left:.625rem !important}[dir='ltr'] .sm\:ltr\:inset-y-3\.5{top:.875rem !important;bottom:.875rem !important}[dir='ltr'] .sm\:ltr\:inset-x-3\.5{right:.875rem !important;left:.875rem !important}[dir='ltr'] .sm\:ltr\:inset-y-1\/2{top:50% !important;bottom:50% !important}[dir='ltr'] .sm\:ltr\:inset-x-1\/2{right:50% !important;left:50% !important}[dir='ltr'] .sm\:ltr\:inset-y-1\/3{top:33.333333% !important;bottom:33.333333% !important}[dir='ltr'] .sm\:ltr\:inset-x-1\/3{right:33.333333% !important;left:33.333333% !important}[dir='ltr'] .sm\:ltr\:inset-y-2\/3{top:66.666667% !important;bottom:66.666667% !important}[dir='ltr'] .sm\:ltr\:inset-x-2\/3{right:66.666667% !important;left:66.666667% !important}[dir='ltr'] .sm\:ltr\:inset-y-1\/4{top:25% !important;bottom:25% !important}[dir='ltr'] .sm\:ltr\:inset-x-1\/4{right:25% !important;left:25% !important}[dir='ltr'] .sm\:ltr\:inset-y-2\/4{top:50% !important;bottom:50% !important}[dir='ltr'] .sm\:ltr\:inset-x-2\/4{right:50% !important;left:50% !important}[dir='ltr'] .sm\:ltr\:inset-y-3\/4{top:75% !important;bottom:75% !important}[dir='ltr'] .sm\:ltr\:inset-x-3\/4{right:75% !important;left:75% !important}[dir='ltr'] .sm\:ltr\:inset-y-1\/5{top:20% !important;bottom:20% !important}[dir='ltr'] .sm\:ltr\:inset-x-1\/5{right:20% !important;left:20% !important}[dir='ltr'] .sm\:ltr\:inset-y-2\/5{top:40% !important;bottom:40% !important}[dir='ltr'] .sm\:ltr\:inset-x-2\/5{right:40% !important;left:40% !important}[dir='ltr'] .sm\:ltr\:inset-y-3\/5{top:60% !important;bottom:60% !important}[dir='ltr'] .sm\:ltr\:inset-x-3\/5{right:60% !important;left:60% !important}[dir='ltr'] .sm\:ltr\:inset-y-4\/5{top:
|
|