WordPress Download Manager - Version 3.2.04

Version Description

  • 2021.07.06 =
  • Fixed thumbnail issue with link-template-bsthumnail
  • Added option to hide admin notice for add-on update
  • Fixed an issue with the Top Downloads widget
Download this release

Release Info

Developer codename065
Plugin Icon 128x128 WordPress Download Manager
Version 3.2.04
Comparing to
See all releases

Code changes from version 3.1.28 to 3.2.04

admin/class.WordPressDownloadManagerAdmin.php DELETED
@@ -1,201 +0,0 @@
1
- <?php
2
- namespace WPDM\admin;
3
-
4
- class WordPressDownloadManagerAdmin
5
- {
6
-
7
- function __construct()
8
- {
9
- new \WPDM\admin\menus\Welcome();
10
- new \WPDM\admin\menus\Packages();
11
- new \WPDM\admin\menus\Categories();
12
- new \WPDM\admin\menus\Templates();
13
- new \WPDM\admin\menus\Addons();
14
- new \WPDM\admin\menus\Stats();
15
- new \WPDM\admin\menus\Settings();
16
-
17
- $this->Actions();
18
- }
19
-
20
- function Actions()
21
- {
22
- add_action('admin_enqueue_scripts', array($this, 'enqueueScripts'));
23
- add_action('admin_init', array($this, 'metaBoxes'), 0);
24
- add_action('init', array($this, 'registerScripts'), 0);
25
- add_action('admin_init', array(new \WPDM\Email(), 'preview'));
26
- add_action('wp_ajax_updatenow', array($this, 'updateNow'));
27
- add_action('admin_head', array($this, 'adminHead'));
28
-
29
- add_action('wp_ajax_updateaddon', array( $this, 'updateAddon' ));
30
- add_action('wp_ajax_installaddon', array( $this, 'installAddon' ));
31
-
32
- add_action('wp_dashboard_setup', array($this, 'addDashboardWidget'));
33
-
34
- }
35
-
36
- function registerScripts(){
37
- wp_register_style('wpdm-admin-bootstrap', WPDM_BASE_URL . 'assets/bootstrap3/css/bootstrap.min.css');
38
- wp_register_script('wpdm-admin-bootstrap', WPDM_BASE_URL . 'assets/bootstrap3/js/bootstrap.min.js', array('jquery'));
39
- wp_register_style('wpdm-font-awesome', WPDM_BASE_URL . 'assets/fontawesome/css/all.css');
40
- wp_register_style('wpdm-front', WPDM_BASE_URL . 'assets/css/front.css');
41
- }
42
-
43
- /**
44
- * Enqueue admin scripts & styles
45
- */
46
- function enqueueScripts($hook){
47
-
48
-
49
- if(get_post_type()=='wpdmpro' || wpdm_query_var('post_type') == 'wpdmpro' || in_array($hook, ['index.php', 'profile.php', 'user-edit.php'])){
50
- wp_enqueue_script('jquery');
51
- wp_enqueue_script('jquery-form');
52
- wp_enqueue_script('jquery-ui-core');
53
- wp_enqueue_script('jquery-ui-tabs');
54
- wp_enqueue_script('jquery-ui-datepicker');
55
- wp_enqueue_script('jquery-ui-slider');
56
- wp_enqueue_script('jquery-ui-sortable');
57
- wp_enqueue_script('jquery-ui-timepicker', WPDM_BASE_URL.'assets/js/jquery-ui-timepicker-addon.js',array('jquery','jquery-ui-core','jquery-ui-datepicker','jquery-ui-slider') );
58
-
59
- wp_enqueue_script('thickbox');
60
- wp_enqueue_style('thickbox');
61
- wp_enqueue_script('media-upload');
62
- wp_enqueue_media();
63
-
64
- wp_enqueue_script('jquery-choosen', plugins_url('/download-manager/assets/js/chosen.jquery.min.js'), array('jquery'));
65
- wp_enqueue_style('choosen-css', plugins_url('/download-manager/assets/css/chosen.css'));
66
- wp_enqueue_style('jqui-css', plugins_url('/download-manager/assets/jqui/theme/jquery-ui.css'));
67
-
68
- wp_enqueue_script('wpdm-admin', plugins_url('/download-manager/assets/js/wpdm-admin.js'), array('wpdm-admin-bootstrap'));
69
- wp_enqueue_style('wpdm-font-awesome' );
70
-
71
- wp_enqueue_style( 'wp-color-picker' );
72
- wp_enqueue_script( 'wp-color-picker' );
73
- //wp_enqueue_script( 'my-script-handle', plugins_url('my-script.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
74
-
75
- wp_enqueue_style('wpdm-admin-styles', plugins_url('/download-manager/assets/css/admin-styles.css'), array('wpdm-admin-bootstrap'));
76
-
77
- }
78
-
79
- if(get_post_type()=='wpdmpro' || wpdm_query_var('post_type') == 'wpdmpro' || $hook == 'index.php'){
80
- //wp_enqueue_script('wpdm-admin-bootstrap' );
81
- //wp_enqueue_style('wpdm-admin-bootstrap' );
82
- //wp_enqueue_style('wpdm-bootstrap-theme', plugins_url('/download-manager/assets/bootstrap/css/bootstrap-theme.min.css'));
83
-
84
- }
85
-
86
- }
87
-
88
-
89
- /**
90
- * @usage Single click add-on update
91
- */
92
- function updateAddon(){
93
- if(isset($_POST['updateurl']) && current_user_can(WPDM_ADMIN_CAP)){
94
- include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
95
- include_once ABSPATH . 'wp-admin/includes/plugin-install.php';
96
- $upgrader = new \Plugin_Upgrader( new \Plugin_Installer_Skin( compact('title', 'url', 'nonce', 'plugin', 'api') ) );
97
- $downloadlink = $_POST['updateurl'].'&preact=login&user=' . get_option('__wpdm_suname') . '&pass=' . get_option('__wpdm_supass').'&__wpdmnocache='.uniqid();
98
- $update = new \stdClass();
99
- $plugininfo = wpdm_plugin_data($_POST['plugin']);
100
- deactivate_plugins($plugininfo['plugin_index_file'], true);
101
- delete_plugins(array($plugininfo['plugin_index_file']));
102
- $upgrader->install($downloadlink);
103
- if(file_exists(dirname(WPDM_BASE_DIR).'/'.$plugininfo['plugin_index_file']))
104
- activate_plugin($plugininfo['plugin_index_file']);
105
- die("Updated Successfully");
106
- } else {
107
- die("Only site admin is authorized to install add-on");
108
- }
109
- }
110
-
111
- /**
112
- * @usage Single click add-on install
113
- */
114
- function installAddon(){
115
-
116
- if(isset($_POST['updateurl']) && current_user_can(WPDM_ADMIN_CAP)){
117
- include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
118
- include_once ABSPATH . 'wp-admin/includes/plugin-install.php';
119
- $upgrader = new \Plugin_Upgrader( new \Plugin_Installer_Skin( compact('title', 'url', 'nonce', 'plugin', 'api') ) );
120
- $downloadlink = $_POST['updateurl'].'&preact=login&user=' . get_option('__wpdm_suname') . '&pass=' . get_option('__wpdm_supass');
121
- $upgrader->install($downloadlink);
122
- $plugininfo = wpdm_plugin_data($_POST['plugin']);
123
- if(file_exists(dirname(WPDM_BASE_DIR).'/'.$plugininfo['plugin_index_file']))
124
- activate_plugin($plugininfo['plugin_index_file']);
125
- die("Installed Successfully");
126
- } else {
127
- die("Only site admin is authorized to install add-on");
128
- }
129
- }
130
-
131
-
132
- function adminHead(){
133
- remove_submenu_page( 'index.php', 'wpdm-welcome' );
134
- ?>
135
- <script type="text/javascript">
136
-
137
- var wpdmConfig = {
138
- siteURL: '<?php echo site_url(); ?>'
139
- };
140
-
141
- jQuery(function () {
142
-
143
-
144
- jQuery('#TB_closeWindowButton').click(function () {
145
- tb_remove();
146
- });
147
-
148
- });
149
- </script>
150
- <?php
151
- }
152
-
153
- function widgetCallback(){
154
- include dirname(__FILE__).'/tpls/dashboard-widget.php';
155
- }
156
-
157
- function addDashboardWidget(){
158
- wp_add_dashboard_widget('wpdm_dashboard_widget', 'WordPress Download Manager', array($this, 'widgetCallback'));
159
- global $wp_meta_boxes;
160
- $side_dashboard = $wp_meta_boxes['dashboard']['side']['core'];
161
- $wpdm_widget = array('wpdm_dashboard_widget' => $wp_meta_boxes['dashboard']['normal']['core']['wpdm_dashboard_widget']);
162
- unset($wp_meta_boxes['dashboard']['normal']['core']['wpdm_dashboard_widget']);
163
- $sorted_dashboard = array_merge($wpdm_widget, $side_dashboard);
164
- $wp_meta_boxes['dashboard']['side']['core'] = $sorted_dashboard;
165
- }
166
-
167
- function metaBoxes()
168
- {
169
-
170
- $meta_boxes = array(
171
- 'wpdm-settings' => array('title' => __('Package Settings','download-manager'), 'callback' => array($this, 'packageSettings'), 'position' => 'normal', 'priority' => 'low'),
172
- 'wpdm-upload-file' => array('title' => __('Attach File','download-manager'), 'callback' => array($this, 'uploadFiles'), 'position' => 'side', 'priority' => 'core'),
173
- );
174
-
175
-
176
- $meta_boxes = apply_filters("wpdm_meta_box", $meta_boxes);
177
- foreach ($meta_boxes as $id => $meta_box) {
178
- extract($meta_box);
179
- if(!isset($position)) $position = 'normal';
180
- if(!isset($priority)) $priority = 'core';
181
- add_meta_box($id, $title, $callback, 'wpdmpro', $position, $priority);
182
- }
183
- }
184
-
185
- function Files($post)
186
- {
187
- include(WPDM_BASE_DIR."admin/tpls/metaboxes/attached-files.php");
188
- }
189
-
190
- function packageSettings($post)
191
- {
192
- include(WPDM_BASE_DIR."admin/tpls/metaboxes/package-settings.php");
193
- }
194
-
195
- function uploadFiles($post)
196
- {
197
- include(WPDM_BASE_DIR."admin/tpls/metaboxes/attach-file.php");
198
- }
199
-
200
-
201
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/menus/class.Templates.php DELETED
@@ -1,245 +0,0 @@
1
- <?php
2
-
3
- namespace WPDM\admin\menus;
4
-
5
-
6
- class Templates
7
- {
8
-
9
- function __construct()
10
- {
11
- add_action('admin_init', array($this, 'Save'));
12
- add_action('wp_ajax_template_preview', array($this, 'Preview'));
13
- add_action('wp_ajax_wpdm_delete_template', array($this, 'deleteTemplate'));
14
- add_action('wp_ajax_update_template_status', array($this, 'updateTemplateStatus'));
15
- add_action('wp_ajax_wpdm_save_email_setting', array($this, 'saveEmailSetting'));
16
- add_action('admin_menu', array($this, 'Menu'));
17
- }
18
-
19
- function Menu()
20
- {
21
- add_submenu_page('edit.php?post_type=wpdmpro', __( "Templates &lsaquo; Download Manager" , "download-manager" ), __( "Templates" , "download-manager" ), WPDM_MENU_ACCESS_CAP, 'templates', array($this, 'UI'));
22
- }
23
-
24
- function UI(){
25
- $ttype = isset($_GET['_type']) ? esc_attr($_GET['_type']) : 'link';
26
-
27
- if (wpdm_query_var('task') === 'EditEmailTemplate')
28
- \WPDM\admin\menus\Templates::EmailEditor();
29
- else
30
- \WPDM\admin\menus\Templates::Show();
31
- }
32
-
33
-
34
- public static function Editor(){
35
- include(WPDM_BASE_DIR . "admin/tpls/template-editor.php");
36
- }
37
-
38
-
39
- public static function EmailEditor(){
40
- include(WPDM_BASE_DIR . "admin/tpls/email-template-editor.php");
41
- }
42
-
43
-
44
- public static function Show(){
45
- include(WPDM_BASE_DIR . "admin/tpls/templates.php");
46
- }
47
-
48
- /**
49
- * @usage Delete link/page template
50
- * @since 4.7.0
51
- */
52
-
53
- function deleteTemplate(){
54
- if (current_user_can(WPDM_ADMIN_CAP)) {
55
- $ttype = wpdm_query_var('ttype');
56
- $tplid = wpdm_query_var('tplid');
57
- $tpldata = maybe_unserialize(get_option("_fm_{$ttype}_templates"));
58
- if (!is_array($tpldata)) $tpldata = array();
59
- unset($tpldata[$tplid]);
60
- update_option("_fm_{$ttype}_templates", @serialize($tpldata));
61
- die('ok');
62
- }
63
-
64
- }
65
-
66
-
67
- /**
68
- * @usage Save Link/Page Templates
69
- */
70
- function Save()
71
- {
72
- if (!isset($_GET['page']) || $_GET['page'] != 'templates') return;
73
- $ttype = isset($_GET['_type']) ? esc_attr($_GET['_type']) : 'link';
74
- if (isset($_GET['task']) && $_GET['task'] == 'DeleteTemplate') {
75
- $tpldata = maybe_unserialize(get_option("_fm_{$ttype}_templates"));
76
- if (!is_array($tpldata)) $tpldata = array();
77
- unset($tpldata[wpdm_query_var('tplid')]);
78
- update_option("_fm_{$ttype}_templates", @serialize($tpldata));
79
-
80
- header("location: edit.php?post_type=wpdmpro&page=templates&_type=$ttype");
81
- die();
82
- }
83
-
84
- if (isset($_POST['tpl'])) {
85
- if (is_array(get_option("_fm_{$ttype}_templates")))
86
- $tpldata = (get_option("_fm_{$ttype}_templates"));
87
- else
88
- $tpldata = maybe_unserialize(get_option("_fm_{$ttype}_templates"));
89
- if (!is_array($tpldata)) $tpldata = array();
90
- $tplid = wpdm_query_var('tplid');
91
- $tpldata[$tplid] = $_POST['tpl'];
92
- update_option("_fm_{$ttype}_templates", @serialize($tpldata));
93
-
94
- header("location: edit.php?post_type=wpdmpro&&page=templates&_type=$ttype");
95
- die();
96
- }
97
-
98
- if (isset($_POST['email_template'])) {
99
- if(current_user_can(WPDM_ADMIN_CAP) && wp_verify_nonce(wpdm_query_var('__wpdm_nonce'), NONCE_KEY)) {
100
- check_ajax_referer(NONCE_KEY, '__wpdm_nonce');
101
- $email_template = wpdm_query_var('email_template', array('validate' => array('subject' => '', 'message' => 'escs', 'from_name' => '', 'from_email' => '')));
102
- update_option("__wpdm_etpl_" . wpdm_query_var('id'), $email_template);
103
- if (wpdm_is_ajax()) {
104
- die('ok');
105
- }
106
- header("location: edit.php?post_type=wpdmpro&&page=templates&_type=$ttype");
107
- die();
108
- }
109
- }
110
-
111
- }
112
-
113
- /**
114
- * @usage Preview link/page template
115
- */
116
- function Preview()
117
- {
118
- error_reporting(0);
119
-
120
- $wposts = array();
121
-
122
- $template = sanitize_file_name(wpdm_query_var('template'));
123
- $type = wpdm_query_var("_type");
124
-
125
- $args=array(
126
- 'post_type'=>'wpdmpro',
127
- 'posts_per_page'=>1
128
- );
129
-
130
- $wposts = get_posts( $args );
131
-
132
- $html = "";
133
-
134
- foreach( $wposts as $p ) {
135
-
136
- $package = (array)$p;
137
-
138
- $html .= wpdm_fetch_template($template, $package, $type);
139
-
140
- }
141
-
142
- if(count($wposts)==0) $html = "<div class='col-md-12'><div class='alert alert-info'>".__( "No package found! Please create at least 1 package to see template preview" , "download-manager" )."</div> </div>";
143
- $html = "<div class='w3eden'>".$html."</div><div style='clear:both'></div>";
144
-
145
- echo $html;
146
- die();
147
-
148
- }
149
-
150
- public static function Dropdown($params, $activeOnly = false)
151
- {
152
- extract($params);
153
- $type = isset($type) && in_array($type, array('link', 'page', 'email')) ? esc_attr($type) : 'link';
154
- $tplstatus = maybe_unserialize(get_option("_fm_{$type}_template_status"));
155
-
156
- $activetpls = array();
157
- if(is_array($tplstatus)) {
158
- foreach ($tplstatus as $tpl => $active) {
159
- if ($active)
160
- $activetpls[] = $tpl;
161
- }
162
- }
163
-
164
- $ttpldir = get_stylesheet_directory() . '/download-manager/' . $type . '-templates/';
165
- $ttpls = array();
166
- if(file_exists($ttpldir)) {
167
- $ttpls = scandir($ttpldir);
168
- array_shift($ttpls);
169
- array_shift($ttpls);
170
- }
171
-
172
- $ltpldir = WPDM_TPL_DIR . $type . '-templates/';
173
- $ctpls = scandir($ltpldir);
174
- array_shift($ctpls);
175
- array_shift($ctpls);
176
-
177
- foreach($ctpls as $ind => $tpl){
178
- $ctpls[$ind] = $ltpldir.$tpl;
179
- }
180
-
181
- foreach($ttpls as $tpl){
182
- if(!in_array($ltpldir.$tpl, $ctpls)) {
183
- $ctpls[] = $ttpldir . $tpl;
184
- }
185
- }
186
-
187
- $custom_templates = maybe_unserialize(get_option("_fm_{$type}_templates",true));
188
-
189
- $name = isset($name)?$name:$type.'_template';
190
- $css = isset($css)?"style='$css'":'';
191
- $id = isset($id)?$id:uniqid();
192
- $default = $type == 'link'?'link-template-calltoaction3.php':'page-template-1col-flat.php';
193
- $xdf = str_replace(".php", "", $default);
194
- if(is_array($activetpls) && count($activetpls) > 0)
195
- $default = in_array($xdf, $activetpls) || !isset($activetpls[0]) ? $default : $activetpls[0];
196
- $html = "<select name='$name' id='$id' class='form-control template {$type}_template' {$css}><option value='$default'>Select ".ucfirst($type)." Template</option>";
197
- $data = array();
198
- foreach ($ctpls as $ctpl) {
199
- $ind = str_replace(".php", "", basename($ctpl));
200
- if(!$activeOnly || ($activeOnly && (!isset($tplstatus[$ind]) || $tplstatus[$ind] == 1))) {
201
- $tmpdata = file_get_contents($ctpl);
202
- $regx = "/WPDM.*Template[\s]*:([^\-\->]+)/";
203
- if (preg_match($regx, $tmpdata, $matches)) {
204
- $data[basename($ctpl)] = $matches[1];
205
- $eselected = isset($selected) && $selected == basename($ctpl) ? 'selected=selected' : '';
206
-
207
- $html .= "<option value='" . basename($ctpl) . "' {$eselected}>{$matches[1]}</option>";
208
- }
209
- }
210
- }
211
-
212
- if(is_array($custom_templates)) {
213
- foreach ($custom_templates as $id => $template) {
214
- if(!$activeOnly || ($activeOnly && (!isset($tplstatus[$id]) || $tplstatus[$id] == 1))) {
215
- $data[$id] = $template['title'];
216
- $eselected = isset($selected) && $selected == $id ? 'selected=selected' : '';
217
- $html .= "<option value='{$id}' {$eselected}>{$template['title']}</option>";
218
- }
219
- }
220
- }
221
- $html .= "</select>";
222
-
223
- return isset($data_type) && $data_type == 'ARRAY'? $data : $html;
224
- }
225
-
226
- function saveEmailSetting(){
227
- if(current_user_can(WPDM_ADMIN_CAP) && wp_verify_nonce(wpdm_query_var('__wpdm_nonce'), NONCE_KEY)) {
228
- check_ajax_referer(NONCE_KEY, '__wpdm_nonce');
229
- update_option('__wpdm_email_template', wpdm_query_var('__wpdm_email_template'));
230
- $email_settings = wpdm_query_var('__wpdm_email_setting', array('validate' => array('logo' => 'url', 'banner' => 'url', 'youtube' => 'url', 'twitter' => 'url', 'facebook' => 'url', 'footer_text' => 'txts')));
231
- update_option('__wpdm_email_setting', $email_settings);
232
- die("Done!");
233
- }
234
- }
235
-
236
- function updateTemplateStatus(){
237
- if(!current_user_can(WPDM_ADMIN_CAP)) die('error');
238
- $type = wpdm_query_var('type');
239
- $tpldata = maybe_unserialize(get_option("_fm_{$type}_template_status"));
240
- $tpldata[wpdm_query_var('template')] = wpdm_query_var('status');
241
- update_option("_fm_{$type}_template_status", @serialize($tpldata));
242
- echo "OK";
243
- die();
244
- }
245
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/dashboard-widget.php DELETED
@@ -1,11 +0,0 @@
1
- <?php
2
- if(!defined('ABSPATH')) die();
3
- ?>
4
- <div style="border-bottom: 1px solid #eeeeee;margin: -10px -12px 10px;padding: 10px;background: #f8f8f8">
5
- <center><a href="https://www.wpdownloadmanager.com/?affid=shahriar&utm_source=<?php echo isset($_SERVER['HTTP_HOST'])?$_SERVER['HTTP_HOST']:'';?>&utm_campaign=wpdashboard&utm_term=wpdashboard" target="_blank"><img style='max-width:60%;' src='<?php echo plugins_url('/download-manager/assets/images/wpdm-logo.png'); ?>' /></a></center>
6
- </div>
7
- <div class="w3eden">
8
-
9
- <iframe id="wpdmdbwframeh" src="//cdn.wpdownloadmanager.com/notice.php?wpdmvarsion=<?php echo WPDM_Version; ?>&origin=<?php echo (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on'?'https://':'http://').$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; ?>" style="min-height: 390px;width:100%;border:0px"></iframe>
10
-
11
- </div>
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/email-templates/html-frame.html DELETED
@@ -1,11 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5
- <meta charset="UTF-8">
6
- <title>Welcome</title>
7
- </head>
8
- <body>
9
- [#message#]
10
- </body>
11
- </html>
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/email-templates/wpdm-new-user.html DELETED
@@ -1,103 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
- <html>
3
-
4
- <head>
5
- <meta content="en-us" http-equiv="Content-Language">
6
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
7
- <title>Welcome to [#sitename#]</title>
8
- <style type="text/css">
9
- body {
10
- margin:0;
11
- padding:0;
12
- background-color:#cccccc;
13
- background:#cccccc;
14
- }
15
- </style>
16
- </head>
17
-
18
- <body bgcolor="#cccccc" link="#0f75c3" vlink="#0f75c3">
19
- <!-- Start of main container -->
20
- <table align="center" bgcolor="#cccccc" cellpadding="0" cellspacing="0" style="width: 100%; background:#cccccc; background-color:#cccccc; margin:0; padding:0 20px;">
21
- <tr>
22
- <td>
23
- <table align="center" cellpadding="0" cellspacing="0" style="width: 620px; border-collapse:collapse; text-align:left; font-family:Tahoma; font-weight:normal; font-size:12px; line-height:15pt; color:#444444; margin:0 auto;">
24
- <!-- Start of logo and top links -->
25
- <tr>
26
- <td valign="top" style="height:5px;margin:0;padding:20px 0 0 0;;line-height:0;">
27
- <img alt="" height="5" src="https://lh4.googleusercontent.com/-HhYJa1RgT3Y/T-Cy77lMMjI/AAAAAAAAAOI/d6K5GyWdnoI/s620/top.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
28
- </tr>
29
- <tr>
30
- <td style=" width:620px;" valign="top">
31
- <table cellpadding="0" cellspacing="0" style="width:100%; border-collapse:collapse;font-family:Tahoma; font-weight:normal; font-size:12px; line-height:15pt; color:#444444;" >
32
- <tr>
33
- <td bgcolor="#0f75c3" style="background:#0f75c3; color:#ffffff; padding-left:20px; padding-right:0; padding-top:10px; padding-bottom:10px; background-color:#0f75c3" valign="top">
34
- <p align="center">Support Email: [#support_email#]
35
- </td>
36
- </tr>
37
- <tr>
38
- <td bgcolor="#FFFFFF" style="background:#ffffff; padding-left:20px; padding-right:0; padding-top:20px; padding-bottom:15px; background-color:#ffffff" valign="middle">
39
- <p align="center">
40
- <a href="http://wpmarketplaceplugin.com/">
41
- <img border="0" src="http://cdn.wpdownloadmanager.com/wp-content/uploads/2014/05/download-manager-logo-v4.png" alt="wpmarketplaceplugin.com" /></a></td>
42
- </tr>
43
- </table>
44
- </td>
45
- </tr>
46
- <tr>
47
- <td valign="top" style="height:5px;margin:0;padding:0;line-height:0;">
48
- <img alt="" height="5" src="https://lh3.googleusercontent.com/-JE5gnp7_60k/T-C3U1xjPMI/AAAAAAAAAO8/WpCbXCFjfB0/s620/bottom.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
49
- </tr>
50
-
51
- <tr>
52
- <td valign="top" style="height:5px;margin:0;padding:20px 0 0 0;line-height:0;">
53
- <img alt="" height="5" src="https://lh5.googleusercontent.com/-bgjgaEJ4zLY/T-C5FIdoNQI/AAAAAAAAAPQ/7DYVUa3Vp8Q/s620/toph.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
54
- </tr>
55
- <tr>
56
- <td bgcolor="#FFFFFF" style="padding:10px 20px; background:#ffffff;background-color:#ffffff;" valign="top">
57
- <span style="font-size: 8pt; color: #999999">[#date#]</span><br>
58
- <p style="line-height: 160%; font-size: 18px; margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 11pt; padding: 0">
59
- Welcome to [#sitename#]</p>
60
- Hello [#name#],<br>
61
- Thanks for registering to [#sitename#]. For the
62
- record, here is your login info again:<br>
63
- Username: [#username#]<br>
64
- Password: [#password#]<br>
65
- <b>Login URL: <a href="[#loginurl#]">[#loginurl#]</a></b><br>
66
-
67
- <br>
68
- Best
69
- Regards,<br>
70
- Support Team<br>
71
- <b><a href="[#homeurl#]">[#sitename#]</a></b></td>
72
- </tr>
73
- <tr>
74
- <td valign="top" style="height:5px;margin:0;padding:0;line-height:0;">
75
- <img alt="" height="5" src="https://lh3.googleusercontent.com/-JE5gnp7_60k/T-C3U1xjPMI/AAAAAAAAAO8/WpCbXCFjfB0/s620/bottom.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
76
- </tr>
77
-
78
- <tr>
79
- <td valign="top" style="height:5px;margin:0;padding:20px 0 0 0;line-height:0;">
80
- <img alt="" height="5" src="https://lh4.googleusercontent.com/-HhYJa1RgT3Y/T-Cy77lMMjI/AAAAAAAAAOI/d6K5GyWdnoI/s620/top.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
81
- </tr>
82
- <tr>
83
- <td bgcolor="#0f75c3" style="padding:15px 20px 15px 20px; background-color:#0f75c3; background:#0f75c3;">
84
- <table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse:collapse; font-family:Tahoma; font-weight:normal; font-size:12px; line-height:15pt; color:#FFFFFF;">
85
- <tr>
86
- <td>
87
- <p align="center">Copyright &copy; 2013 [#sitename#]</td>
88
- </tr>
89
- </table>
90
- </td>
91
- </tr>
92
- <tr>
93
- <td valign="top" style="height:5px;margin:0;padding:0 0 20px 0;line-height:0;">
94
- <img alt="" height="5" src="https://lh5.googleusercontent.com/-8ChncE34Qy8/T-C5-36xXuI/AAAAAAAAAPk/dsdkvdLwsSw/s620/bottomb.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
95
- </tr>
96
- <!-- End of Footer -->
97
- </table>
98
- </td>
99
- </tr>
100
- </table>
101
- <!-- End of main container -->
102
- </body>
103
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/email-templates/wpdm-remind-password.html DELETED
@@ -1,112 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
- <html>
3
-
4
- <head>
5
- <meta content="en-us" http-equiv="Content-Language">
6
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
7
- <title>Remin Password</title>
8
- <style type="text/css">
9
- body {
10
- margin:0;
11
- padding:0;
12
- background-color:#cccccc;
13
- background:#cccccc;
14
- }
15
- </style>
16
- </head>
17
-
18
- <body bgcolor="#cccccc" link="#0f75c3" vlink="#0f75c3">
19
- <!-- Start of main container -->
20
- <table align="center" bgcolor="#cccccc" cellpadding="0" cellspacing="0" style="width: 100%; background:#cccccc; background-color:#cccccc; margin:0; padding:0 20px;">
21
- <tr>
22
- <td>
23
- <table align="center" cellpadding="0" cellspacing="0" style="width: 620px; border-collapse:collapse; text-align:left; font-family:Tahoma; font-weight:normal; font-size:12px; line-height:15pt; color:#444444; margin:0 auto;">
24
- <!-- Start of logo and top links -->
25
- <tr>
26
- <td valign="top" style="height:5px;margin:0;padding:20px 0 0 0;;line-height:0;">
27
- <img alt="" height="5" src="https://lh4.googleusercontent.com/-HhYJa1RgT3Y/T-Cy77lMMjI/AAAAAAAAAOI/d6K5GyWdnoI/s620/top.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
28
- </tr>
29
- <tr>
30
- <td style=" width:620px;" valign="top">
31
- <table cellpadding="0" cellspacing="0" style="width:100%; border-collapse:collapse;font-family:Tahoma; font-weight:normal; font-size:12px; line-height:15pt; color:#444444;" >
32
- <tr>
33
- <td bgcolor="#0f75c3" style="background:#0f75c3; color:#ffffff; padding-left:20px; padding-right:0; padding-top:10px; padding-bottom:10px; background-color:#0f75c3" valign="top">
34
- <p align="center">Support Email: support@wpmarketplaceplugin.com
35
- </td>
36
- </tr>
37
- <tr>
38
- <td bgcolor="#FFFFFF" style="background:#ffffff; padding-left:20px; padding-right:0; padding-top:20px; padding-bottom:15px; background-color:#ffffff" valign="middle">
39
- <p align="center">
40
- <a href="http://wpmarketplaceplugin.com/">
41
- <img border="0" src="https://lh6.googleusercontent.com/-3SM_v1tW23w/T-CzRCztOeI/AAAAAAAAAOY/rQXLVVydx00/s512/wpmp-logo.png" alt="wpmarketplaceplugin.com" /></a></td>
42
- </tr>
43
- </table>
44
- </td>
45
- </tr>
46
- <tr>
47
- <td valign="top" style="height:5px;margin:0;padding:0;line-height:0;">
48
- <img alt="" height="5" src="https://lh3.googleusercontent.com/-JE5gnp7_60k/T-C3U1xjPMI/AAAAAAAAAO8/WpCbXCFjfB0/s620/bottom.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
49
- </tr>
50
- <!-- End of logo and top links -->
51
- <!-- Start of banner -->
52
- <!-- End of banner -->
53
- <!-- Start of First Content -->
54
- <tr>
55
- <td valign="top" style="height:5px;margin:0;padding:20px 0 0 0;line-height:0;">
56
- <img alt="" height="5" src="https://lh5.googleusercontent.com/-bgjgaEJ4zLY/T-C5FIdoNQI/AAAAAAAAAPQ/7DYVUa3Vp8Q/s620/toph.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
57
- </tr>
58
- <tr>
59
- <td bgcolor="#FFFFFF" style="padding:10px 20px; background:#ffffff;background-color:#ffffff;" valign="top">
60
- <span style="font-size: 8pt; color: #999999">[#date#]</span><br>
61
- <p style="line-height: 160%; font-size: 18px; margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 11pt; padding: 0">
62
- Password reset request for your account</p>
63
- We just received a password reset request for your account.
64
- If you really wanted to reset your password, please click on
65
- following link:<br>
66
- <b><a href="[#npurl">[#npurl#]</a></b><br>
67
-
68
- But if it is a mistake, just skip this email.<p>Best
69
- Regards,<br>
70
- Support Team<br>
71
- <b><a href="http://wpmarketplaceplugin.com/">WP Marketplace
72
- Plugin</a></b></td>
73
- </tr>
74
- <tr>
75
- <td valign="top" style="height:5px;margin:0;padding:0;line-height:0;">
76
- <img alt="" height="5" src="https://lh3.googleusercontent.com/-JE5gnp7_60k/T-C3U1xjPMI/AAAAAAAAAO8/WpCbXCFjfB0/s620/bottom.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
77
- </tr>
78
- <!-- End of First Content -->
79
- <!-- Start of Second Content -->
80
- <!-- End of Second Content -->
81
- <!-- Start of Third Content -->
82
- <!-- End of Third Content -->
83
- <!-- Start of two content in row Container -->
84
- <!-- End of two content in row Container -->
85
- <!-- Start of Footer -->
86
- <tr>
87
- <td valign="top" style="height:5px;margin:0;padding:20px 0 0 0;line-height:0;">
88
- <img alt="" height="5" src="https://lh4.googleusercontent.com/-HhYJa1RgT3Y/T-Cy77lMMjI/AAAAAAAAAOI/d6K5GyWdnoI/s620/top.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
89
- </tr>
90
- <tr>
91
- <td bgcolor="#0f75c3" style="padding:15px 20px 15px 20px; background-color:#0f75c3; background:#0f75c3;">
92
- <table cellpadding="0" cellspacing="0" style="width: 100%; border-collapse:collapse; font-family:Tahoma; font-weight:normal; font-size:12px; line-height:15pt; color:#FFFFFF;">
93
- <tr>
94
- <td>
95
- <p align="center">Copyright © 2010 WP
96
- Marketplace Plugin</td>
97
- </tr>
98
- </table>
99
- </td>
100
- </tr>
101
- <tr>
102
- <td valign="top" style="height:5px;margin:0;padding:0 0 20px 0;line-height:0;">
103
- <img alt="" height="5" src="https://lh5.googleusercontent.com/-8ChncE34Qy8/T-C5-36xXuI/AAAAAAAAAPk/dsdkvdLwsSw/s620/bottomb.png" vspace="0" style="border:0; padding:0; margin:0; line-height:0;" width="620"></td>
104
- </tr>
105
- <!-- End of Footer -->
106
- </table>
107
- </td>
108
- </tr>
109
- </table>
110
- <!-- End of main container -->
111
- </body>
112
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/metaboxes/attach-file.php DELETED
@@ -1,264 +0,0 @@
1
-
2
- <div class="w3eden">
3
- <input type="hidden" name="file[files][]" value="<?php $afiles = maybe_unserialize(get_post_meta(get_the_ID(), "__wpdm_files", true)); echo is_array($afiles)&&isset($afiles[0])?$afiles[0]:''; ?>" id="wpdmfile" />
4
-
5
- <div class="cfile" id="cfl" style="padding: 10px;border:2px solid #ddd;background: #ffffff;margin-bottom: 10px">
6
- <?php
7
- $filesize = "<em style='color: darkred'>( ".__("attached file is missing/deleted",'download-manager')." )</em>";
8
- $afile = is_array($afiles)&&isset($afiles[0])?$afiles[0]:'';
9
- $afile = trim($afile);
10
- $mfz = get_post_meta(get_the_ID(), '__wpdm_package_size', true);
11
- $url = false;
12
- if($afile !=''){
13
- if(substr_count($afile, "://") > 0){
14
- $fparts = parse_url($afile);
15
- $url = true;
16
- $hurl = strlen($fparts['host']) > 20 ? substr($fparts['host'], 0, 20)."..." : $fparts['host'];
17
- $filesize = "<span class='w3eden'><span class='text-primary ellipsis ttip' title='{$afile}'><i class='fa fa-link'></i> {$hurl}</span></span>";
18
- }
19
- else {
20
- $filesize = wpdm_file_size($afile);
21
- }
22
-
23
- if(strpos($afile, "#")) {
24
- $afile = explode("#", $afile);
25
- $afile = $afile[1];
26
- }
27
-
28
-
29
- ?>
30
- <div class="media">
31
- <a href="#" id="dcf" title="Delete Current File" class="pull-right" style="font-size:24px">
32
- <i class="fa fa-trash color-red"></i>
33
- </a>
34
- <div class="media-body"><strong><?php echo basename($afile); ?></strong><br><span class="text-success"><?php echo (double)$mfz && !$url ?$mfz:$filesize; ?></span></div>
35
- </div>
36
-
37
- <?php } else echo "<span style='font-weight:bold;color:#ddd'>". __('No file uploaded yet!', 'download-manager')."</span>"; ?>
38
- <div style="clear: both;"></div>
39
- </div>
40
-
41
-
42
- <div id="upload">
43
- <div id="plupload-upload-ui" class="hide-if-no-js">
44
- <div id="drag-drop-area">
45
- <div class="drag-drop-inside" style="margin-top: 40px">
46
- <p class="drag-drop-info" style="letter-spacing: 1px;font-size: 10pt"><?php _e('Drop file here'); ?><p>
47
- <p>&mdash; <?php _ex('or', 'Uploader: Drop file here - or - Select File'); ?> &mdash;</p>
48
- <p class="drag-drop-buttons">
49
- <button id="plupload-browse-button" type="button" class="btn btn-sm btn-success wpdm-whatsapp"><i class="fa fa-file"></i> <?php esc_attr_e('Select File'); ?></button><br/>
50
- <small style="margin-top: 15px;display: block">[ Max: <?php echo get_option('__wpdm_chunk_upload',0) == 1?'No Limit':(int)(wp_max_upload_size()/1048576).' MB'; ?> ]</small>
51
- </p>
52
- </div>
53
- </div>
54
- </div>
55
-
56
- <?php
57
-
58
- $plupload_init = array(
59
- 'runtimes' => 'html5,silverlight,flash,html4',
60
- 'browse_button' => 'plupload-browse-button',
61
- 'container' => 'plupload-upload-ui',
62
- 'drop_element' => 'drag-drop-area',
63
- 'file_data_name' => 'package_file',
64
- 'multiple_queues' => true,
65
- 'url' => admin_url('admin-ajax.php'),
66
- 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
67
- 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
68
- 'filters' => array(array('title' => __('Allowed Files'), 'extensions' => implode(",", wpdm_get_allowed_file_types()) )),
69
- 'multipart' => true,
70
- 'urlstream_upload' => true,
71
- // additional post data to send to our ajax hook
72
- 'multipart_params' => array(
73
- '_ajax_nonce' => wp_create_nonce(NONCE_KEY),
74
- 'type' => 'package_attachment',
75
- 'package_id' => get_the_ID(),
76
- 'action' => 'wpdm_admin_upload_file', // the ajax action name
77
- ),
78
- );
79
-
80
- if(get_option('__wpdm_chunk_upload',0) == 1){
81
- $plupload_init['chunk_size'] = (int)get_option('__wpdm_chunk_size', 1024).'kb';
82
- $plupload_init['max_retries'] = 3;
83
- } else
84
- $plupload_init['max_file_size'] = wp_max_upload_size().'b';
85
-
86
- // we should probably not apply this filter, plugins may expect wp's media uploader...
87
- $plupload_init = apply_filters('plupload_init', $plupload_init); ?>
88
-
89
- <script type="text/javascript">
90
-
91
- jQuery(document).ready(function($){
92
-
93
- // create the uploader and pass the config from above
94
- var uploader = new plupload.Uploader(<?php echo json_encode($plupload_init); ?>);
95
-
96
- // checks if browser supports drag and drop upload, makes some css adjustments if necessary
97
- uploader.bind('Init', function(up){
98
- var uploaddiv = jQuery('#plupload-upload-ui');
99
-
100
- if(up.features.dragdrop){
101
- uploaddiv.addClass('drag-drop');
102
- jQuery('#drag-drop-area')
103
- .bind('dragover.wp-uploader', function(){ uploaddiv.addClass('drag-over'); })
104
- .bind('dragleave.wp-uploader, drop.wp-uploader', function(){ uploaddiv.removeClass('drag-over'); });
105
-
106
- }else{
107
- uploaddiv.removeClass('drag-drop');
108
- jQuery('#drag-drop-area').unbind('.wp-uploader');
109
- }
110
- });
111
-
112
- uploader.init();
113
-
114
- // a file was added in the queue
115
- uploader.bind('FilesAdded', function(up, files){
116
- //var hundredmb = 100 * 1024 * 1024, max = parseInt(up.settings.max_file_size, 10);
117
-
118
-
119
-
120
- plupload.each(files, function(file){
121
- jQuery('#filelist').append(
122
- '<div class="file" id="' + file.id + '"><b>' +
123
-
124
- file.name.replace(/</ig, "&lt;") + '</b> (<span>' + plupload.formatSize(0) + '</span>/' + plupload.formatSize(file.size) + ') ' +
125
- '<div class="progress progress-success progress-striped active"><div class="bar fileprogress"></div></div></div>');
126
- });
127
-
128
- up.refresh();
129
- up.start();
130
- });
131
-
132
- uploader.bind('UploadProgress', function(up, file) {
133
-
134
- jQuery('#' + file.id + " .fileprogress").width(file.percent + "%");
135
- jQuery('#' + file.id + " span").html(plupload.formatSize(parseInt(file.size * file.percent / 100)));
136
- });
137
-
138
-
139
- // a file was uploaded
140
- uploader.bind('FileUploaded', function(up, file, response) {
141
-
142
- jQuery('#' + file.id ).remove();
143
- var d = new Date();
144
- var ID = d.getTime();
145
- response = response.response;
146
- if(response == -3)
147
- jQuery('#cfl').html('<span class="text-danger"><i class="fa fa-exclamation-triangle"></i> &nbsp; <?php _e('Invalid File Type!','download-manager');?></span>');
148
- else if(response == -2)
149
- jQuery('#cfl').html('<span class="text-danger"><i class="fa fa-exclamation-triangle"></i> &nbsp; <?php _e('Unauthorized Access!','download-manager');?></span>');
150
- else {
151
- var data = response.split("|||");
152
- jQuery('#wpdmfile').val(data[1]);
153
- jQuery('#cfl').html('<div class="media"><a href="#" class="pull-right ttip" id="dcf" title="<?php _e('Delete Current File', 'download-manager');?>" style="font-size: 24px"><i class="fa fa-trash color-red"></i></a><div class="media-body"><strong>' + data[1] + '</strong><br/>'+data[2]+' </div></div>').slideDown();
154
- }
155
- });
156
- });
157
-
158
- </script>
159
- <div id="filelist"></div>
160
-
161
- <div class="clear"></div>
162
- </div>
163
-
164
-
165
- <script>
166
- jQuery(function($){
167
- $('#rmta').click(function(){
168
- var ID = 'file_' + parseInt(Math.random()*1000000);
169
- var file = $('#rurl').val();
170
- var filename = file;
171
- $('#rurl').val('');
172
- if(/^(http:\/\/www\.|https:\/\/www\.|http:\/\/|https:\/\/|www\.)[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$/.test(file)==false){
173
- alert("Invalid url");
174
- return false;
175
- }
176
-
177
- $('#wpdmfile').val(file);
178
- $('#cfl').html('<div><strong>'+file+'</strong>').slideDown();
179
-
180
-
181
- });
182
-
183
-
184
-
185
- $('body').on('click', '#dcf', function(){
186
- if(!confirm('<?php _e('Are you sure?','download-manager'); ?>')) return false;
187
- $('#wpdmfile').val('');
188
- $('#cfl').html('<?php _e('<div class="w3eden"><div class="text-danger"><i class="fa fa-check-circle"></i> Removed!</div></div>','download-manager'); ?>');
189
- });
190
-
191
-
192
-
193
-
194
- });
195
-
196
- </script>
197
-
198
- <div class="input-group" style="margin-bottom: 10px"><input type="url" id="rurl" class="form-control" placeholder="Insert URL"><span class="input-group-btn"><button type="button" id="rmta" class="btn wpdm-wordpress"><i class="fa fa-plus-circle"></i></button></span></div>
199
-
200
- <button type="button" class="btn btn-primary btn-block" id="attachml"><?php echo __( "Select from media library", "download-manager" ); ?></button>
201
- <script>
202
- jQuery(function ($) {
203
- var file_frame;
204
- $('body').on('click', '#attachml' , function( event ){
205
- event.preventDefault();
206
- if ( file_frame ) {
207
- file_frame.open();
208
- return;
209
- }
210
- file_frame = wp.media.frames.file_frame = wp.media({
211
- title: $( this ).data( 'uploader_title' ),
212
- button: {
213
- text: $( this ).data( 'uploader_button_text' )
214
- },
215
- multiple: false
216
- });
217
- file_frame.on( 'select', function() {
218
- var attachment = file_frame.state().get('selection').first().toJSON();
219
- console.log(attachment);
220
- $('#wpdmfile').val(attachment.url);
221
- $('#cfl').html('<div><strong>'+attachment.filename+'</strong><br/>'+attachment.filesizeHumanReadable).slideDown();
222
- $('input[name="file[package_size]"]').val(attachment.filesizeHumanReadable);
223
-
224
- });
225
- file_frame.open();
226
- });
227
- });
228
- </script>
229
- <?php if(current_user_can('access_server_browser')) { ?>
230
-
231
- <button type="button" class="btn btn-warning btn-block" id="attachsf"
232
- style="margin-top: 10px"><?php echo __("Select from server", "download-manager"); ?></button>
233
- <script>
234
- jQuery(function ($) {
235
- $('body').on('click', '#attachsf', function (e) {
236
- e.preventDefault();
237
- hide_asset_picker_frame();
238
- $(window.parent.document.body).append("<iframe id='wpdm-asset-picker' style='left:0;top:0;width: 100%;height: 100%;z-index: 999999999;position: fixed;background: rgba(255,255,255,0.4) url('<?php echo home_url('/wp-content/plugins/download-manager/assets/images/loader.svg') ?>') center center no-repeat;background-size: 100px 100px;border: 0;' src='<?php echo admin_url('/index.php?assetpicker=1'); ?>'></iframe>");
239
-
240
- });
241
- });
242
-
243
- function hide_asset_picker_frame() {
244
- jQuery('#wpdm-asset-picker').remove();
245
- }
246
-
247
- function attach_server_files(files) {
248
- jQuery.each(files, function (index, file) {
249
- var d = new Date();
250
- var ID = d.getTime();
251
- jQuery('#wpdmfile').val(file.path);
252
- jQuery('#cfl').html('<div class="media"><a href="#" class="pull-right ttip" id="dcf" title="<?php _e('Delete Current File', 'download-manager');?>" style="font-size: 24px"><i class="fa fa-trash color-red"></i></a><div class="media-body"><strong>' + file.name + '</strong><br/>&mdash; </div></div>').slideDown();
253
-
254
- });
255
- }
256
- </script>
257
-
258
- <?php
259
- }
260
-
261
- do_action("wpdm_attach_file_metabox");
262
-
263
- ?>
264
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/metaboxes/icons.php DELETED
@@ -1,86 +0,0 @@
1
-
2
-
3
-
4
- <div id="package-icons" class="tab-pane">
5
- <div class="w3eden"><input style="background: url(<?php echo esc_url(get_post_meta($post->ID,'__wpdm_icon', true)); ?>) no-repeat;background-size: 24px;padding-left: 40px;background-position:8px center;" id="wpdmiconurl" placeholder="<?php _e( "Icon URL" , "download-manager" ); ?>" value="<?php echo esc_url(get_post_meta($post->ID,'__wpdm_icon', true)); ?>" type="text" name="file[icon]" class="form-control input-lg" ></div>
6
- <br clear="all" />
7
- <?php
8
- $path = WPDM_BASE_DIR."assets/file-type-icons/";
9
- $_upload_dir = wp_upload_dir();
10
- $_upload_basedir = $_upload_dir['basedir'];
11
- $c_path = $_upload_basedir.'/wpdm-file-type-icons/';
12
- $c_url = $_upload_dir['baseurl'].'/wpdm-file-type-icons/';
13
- $scan = scandir( $path );
14
- $k = 0;
15
- $fileinfo = array();
16
- foreach( $scan as $v )
17
- {
18
- if( $v=='.' or $v=='..' or is_dir($path.$v) ) continue;
19
-
20
- $fileinfo[$k]['file'] = 'download-manager/assets/file-type-icons/'.$v;
21
- $fileinfo[$k]['name'] = $v;
22
- $k++;
23
- }
24
-
25
- if(file_exists($c_path)) {
26
- $c_scan = scandir( $c_path );
27
- if(is_array($c_scan)) {
28
- foreach ($c_scan as $v) {
29
- if ($v == '.' or $v == '..' or is_dir($path . $v)) continue;
30
-
31
- $fileinfo[$k]['file'] = $c_url . $v;
32
- $fileinfo[$k]['name'] = $v;
33
- $k++;
34
- }
35
- }
36
- }
37
-
38
-
39
-
40
- ?>
41
- <div id="w-icons">
42
- <img id="icon-loading" src="<?php echo plugins_url('download-manager/assets/images/loading.gif'); ?>" style=";display:none;padding:5px; margin:1px; float:left; border:#fff 2px solid;height: 32px;width:auto; " />
43
- <?php
44
- $img = array('jpg','gif','jpeg','png', 'svg');
45
- foreach($fileinfo as $index=>$value): $tmpvar = explode(".",$value['file']); $ext = strtolower(end($tmpvar)); if(in_array($ext,$img)): ?>
46
- <label>
47
- <img class="wdmiconfile" id="<?php echo !strstr($value['file'], '://')?md5(plugins_url().'/'.$value['file']):md5($value['file']); ?>" src="<?php echo !strstr($value['file'], '://')?plugins_url().'/'.esc_attr($value['file']):esc_url($value['file']); ?>" alt="<?php echo $value['name'] ?>" style="padding:5px; margin:1px; float:left; border:#fff 2px solid;height: 32px;width:auto; " />
48
- </label>
49
- <?php endif; endforeach; ?>
50
- </div>
51
- <script type="text/javascript">
52
- //border:#CCCCCC 2px solid
53
-
54
- <?php if(isset($_GET['action'])&&$_GET['action']=='edit'){ ?>
55
- jQuery('#<?php echo md5(get_post_meta($post->ID,'__wpdm_icon', true)) ?>').addClass("iactive");
56
- <?php } ?>
57
- jQuery('body').on('click', 'img.wdmiconfile',function(){
58
- jQuery('#wpdmiconurl').val(jQuery(this).attr('src'));
59
- jQuery('#wpdmiconurl').css('background-image','url('+jQuery(this).attr('src')+')');
60
- jQuery('img.wdmiconfile').removeClass('iactive');
61
- jQuery(this).addClass('iactive');
62
-
63
-
64
-
65
- });
66
- jQuery('#wpdmiconurl').on('change', function(){
67
- jQuery('#wpdmiconurl').css('background-image','url('+jQuery(this).val()+')');
68
- });
69
-
70
-
71
-
72
-
73
- </script>
74
- <style>
75
-
76
- .iactive{
77
- -moz-box-shadow: inset 0 0 10px #5FAC4F;
78
- -webkit-box-shadow: inset 0 0 10px #5FAC4F;
79
- box-shadow: inset 0 0 10px #5FAC4F;
80
- background: #D9FCD1;
81
- }
82
- </style>
83
-
84
- <div class="clear"></div>
85
- </div>
86
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/metaboxes/lock-options.php DELETED
@@ -1,62 +0,0 @@
1
- <div id="lock-options" class="tab-pane">
2
- <?php echo __('You can use one or more of following methods to lock your package download:','download-manager'); ?>
3
- <br/>
4
- <br/>
5
- <div class="wpdm-accordion w3eden">
6
- <!-- Terms Lock -->
7
- <div class="panel panel-default">
8
- <h3 class="panel-heading"><label><input type="checkbox" class="wpdmlock" rel='terms' name="file[terms_lock]" <?php if(get_post_meta($post->ID,'__wpdm_terms_lock', true)=='1') echo "checked=checked"; ?> value="1"><span class="checkx"><i class="fas fa-check-double"></i></span><?php echo __( "Must Agree with Terms" , "download-manager" ); ?></label></h3>
9
- <div id="terms" class="fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_terms_lock', true)!='1') echo "style='display:none'"; ?> >
10
- <div class="form-group">
11
- <label><?php echo __( "Terms Page:" , "download-manager" ); ?></label><br/>
12
- <?php wp_dropdown_pages(['name' => 'file[terms_page]', 'class' => 'form-control d-block', 'id' => 'wpdm_terms_page', 'show_option_none' => __( 'Use custom content below', 'download-manager' ), 'selected' => get_post_meta($post->ID, '__wpdm_terms_page', true)]) ?>
13
- </div>
14
- <div class="form-group">
15
- <label for="pps_z"><?php echo __( "Terms Title:" , "download-manager" ); ?></label>
16
- <input type="text" class="form-control input-lg" name="file[terms_title]" value="<?php echo esc_html(stripslashes(get_post_meta($post->ID,'__wpdm_terms_title', true))); ?>" />
17
- </div>
18
- <div class="form-group">
19
- <label for="pps_z"><?php echo __( "Terms and Conditions:" , "download-manager" ); ?></label>
20
- <?php
21
- wp_editor(stripslashes(get_post_meta($post->ID,'__wpdm_terms_conditions', true)), "tc_z", ['textarea_name' => 'file[terms_conditions]', 'media_buttons' => false]);
22
- ?>
23
- </div>
24
- <label for="pps_z"><?php echo __( "Terms Checkbox Label:" , "download-manager" ); ?></label>
25
- <input type="text" class="form-control input-lg" name="file[terms_check_label]" value="<?php echo esc_html(stripslashes(get_post_meta($post->ID,'__wpdm_terms_check_label', true))); ?>" />
26
-
27
-
28
- </div>
29
- </div>
30
-
31
- <!-- Password Lock -->
32
- <div class="panel panel-default">
33
- <h3 class="panel-heading"><label><input type="checkbox" class="wpdmlock" rel='password' name="file[password_lock]" <?php if(get_post_meta($post->ID,'__wpdm_password_lock', true)=='1') echo "checked=checked"; ?> value="1"><span class="checkx"><i class="fas fa-check-double"></i></span><?php echo __('Enable Password Lock','download-manager'); ?></label></h3>
34
- <div id="password" class="fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_password_lock', true)!='1') echo "style='display:none'"; ?> >
35
-
36
- <label for="pps_z"><?php echo __('Password:','download-manager'); ?></label>
37
-
38
- <input class="form-control" type="text" name="file[password]" id="pps_z" value="<?php echo esc_attr(get_post_meta($post->ID,'__wpdm_password', true)); ?>" />
39
- <em class="note"><small><?php _e('If you want to use multiple passwords, keep each one inside [], like [123][456][789]', 'download-manager'); ?></small></em>
40
-
41
-
42
- </div>
43
- </div>
44
-
45
-
46
- <!-- Captcha Lock -->
47
- <div class="panel panel-default">
48
- <h3 class="panel-heading"><label><input type="checkbox" rel="captcha" class="wpdmlock" name="file[captcha_lock]" <?php if(get_post_meta($post->ID,'__wpdm_captcha_lock', true)=='1') echo "checked=checked"; ?> value="1"><span class="checkx"><i class="fas fa-check-double"></i></span><?php echo __('Enable Captcha Lock','download-manager'); ?></label></h3>
49
- <div id="captcha" class="frm fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_captcha_lock', true)!='1') echo "style='display:none'"; ?> >
50
-
51
- <a href="edit.php?post_type=wpdmpro&page=settings"><?php if(!get_option('_wpdm_recaptcha_site_key') || !get_option('_wpdm_recaptcha_secret_key')) _e('Please configure reCAPTCHA','download-manager'); ?></a>
52
- <?php _e('Users will be asked for reCAPTCHA verification before download.','download-manager'); ?>
53
-
54
- </div>
55
- </div>
56
-
57
-
58
-
59
- <?php do_action('wpdm_download_lock_option',$post); ?>
60
- </div>
61
- <div class="clear"></div>
62
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/settings.php DELETED
@@ -1,133 +0,0 @@
1
-
2
- <div class="wrap w3eden">
3
-
4
- <div style="clear: both;"></div>
5
- <form method="post" id="wdm_settings_form" style="margin-top:35px;">
6
- <?php
7
- wp_nonce_field(NONCE_KEY, '__wpdms_nonce');
8
- ?>
9
- <div class="panel panel-default" id="wpdm-wrapper-panel">
10
- <div class="panel-heading"><button type="submit" class="btn btn-primary pull-right" style="font-weight: 600"><i class="sinc fa fa-hdd"></i> <?php _e("Save Settings",'download-manager'); ?></button><h3 class="h"><i class="fa fa-cogs color-purple"></i>&nbsp;&nbsp;<?php _e("Download Manager Settings",'download-manager'); ?></h3>
11
-
12
- </div>
13
- <div class="panel-heading" style="background: #f5f5f5 !important;border: 0;border-radius: 0;border-bottom: 1px solid #eeeeee;margin-top: 53px">
14
- <div id="msgst" onclick="jQuery(this).html('');" class="pull-right text-success" style="font-weight: normal;font-style: italic"></div>
15
- <a class="text-success" href='https://wordpress.org/support/plugin/download-manager/reviews/?filter=5&rate=5#new-post' title="Please consider it when you get some free moments" target="_blank">A <span class="ttip" title="5 Stars"><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i></span> rating will inspire me a lot. Thanks for your time &#128522;</a>
16
- </div>
17
- <div class="panel-body settings-panel-body">
18
- <div class="container-fluid">
19
- <div class="row"><div class="col-md-3">
20
- <ul id="tabs" class="nav nav-pills nav-stacked settings-tabs">
21
- <?php \WPDM\admin\menus\Settings::renderMenu($tab=isset($_GET['tab'])?esc_attr($_GET['tab']):'basic'); ?>
22
- </ul>
23
-
24
- </div><div class="col-md-9">
25
- <div class="tab-content">
26
- <div onclick="jQuery(this).slideUp();" class="alert alert-info" style="display: none" id="message"></div>
27
- <input type="hidden" name="task" id="task" value="wdm_save_settings" />
28
- <input type="hidden" name="action" id="action" value="wpdm_settings" />
29
- <input type="hidden" name="section" id="section" value="<?php echo (isset($_REQUEST['tab']))?esc_attr($_REQUEST['tab']):'basic'; ?>" />
30
- <div id="fm_settings">
31
- <?php
32
- global $stabs;
33
- call_user_func($stabs[$tab]['callback']); ?>
34
- </div> <br>
35
- <br>
36
-
37
- <button type="submit" class="btn btn-info btn-lg"><i class="sinc fa fa-hdd"></i> &nbsp;<?php _e("Save Settings",'download-manager'); ?></button>
38
-
39
- <br>
40
-
41
- </div>
42
- </div>
43
-
44
- </div>
45
- </div>
46
- </div>
47
-
48
- </div>
49
-
50
- </form>
51
-
52
- <script type="text/javascript">
53
- jQuery(document).ready(function(){
54
- jQuery('select').chosen();
55
- jQuery("ul#tabs li").click(function() {
56
-
57
- });
58
- jQuery('#message').removeClass('hide').hide();
59
- jQuery("ul#tabs li a").click(function() {
60
- jQuery('#msgst').html('');
61
- ///jQuert("ul#tabs li").removeClass('active')
62
- jQuery("ul#tabs li").removeClass("active");
63
- jQuery(this).parent('li').addClass('active');
64
- jQuery('#wdms_loading').addClass('wpdm-spin');
65
- jQuery(this).append('<span class="wpdm-loading wpdm-spin pull-right" id="wpdm-lsp"></span>')
66
- var section = this.id;
67
- jQuery.post(ajaxurl,{action:'wpdm_settings',section:this.id},function(res){
68
- jQuery('#fm_settings').html(res);
69
- jQuery('#section').val(section)
70
- jQuery('#wdms_loading').removeClass('wpdm-spin');
71
- jQuery('select').chosen();
72
- window.history.pushState({"html":res,"pageTitle":"response.pageTitle"},"", "edit.php?post_type=wpdmpro&page=settings&tab="+section);
73
- jQuery('#wpdm-lsp').fadeOut(function(){
74
- jQuery(this).remove();
75
- });
76
- });
77
- return false;
78
- });
79
-
80
- window.onpopstate = function(e){
81
- if(e.state){
82
- jQuery("#fm_settings").html(e.state.html);
83
- //document.title = e.state.pageTitle;
84
- }
85
- };
86
-
87
- <?php /* if(isset($_GET['tab'])&&$_GET['tab']!=''){ ?>
88
- jQuery("ul#tabs li").removeClass("active");
89
- jQuery('#wdms_loading').addClass('wpdm-spin');
90
- jQuery('#<?php echo esc_attr($_GET['tab']); ?>').parents().addClass("active");
91
- var section = '<?php echo esc_attr($_GET['tab']);?>';
92
- jQuery.post(ajaxurl,{action:'wdm_settings',section:section},function(res){
93
- jQuery('#fm_settings').html(res);
94
- jQuery('#section').val(section)
95
- jQuery('#wdms_loading').removeClass('wpdm-spin');
96
- });
97
- <?php } */ ?>
98
-
99
- jQuery('#wdm_settings_form').submit(function(){
100
-
101
- jQuery('.sinc').removeClass('fa-hdd').addClass('fa-sun fa-spin');
102
-
103
- jQuery(this).ajaxSubmit({
104
- url:ajaxurl,
105
- beforeSubmit: function(formData, jqForm, options){
106
- jQuery('.wpdm-ssb').addClass('wpdm-spin');
107
- jQuery('#wdms_loading').addClass('wpdm-spin');
108
- },
109
- success: function(responseText, statusText, xhr, $form){
110
- //jQuery('#message').html("<p>"+responseText+"</p>").slideDown();
111
- jQuery('#msgst').html('<i class="fa fa-check-circle"></i> '+responseText).slideDown();
112
- //setTimeout("jQuery('#message').slideUp()",4000);
113
- jQuery('.wpdm-ssb').removeClass('wpdm-spin');
114
- jQuery('.sinc').removeClass('fa-sun fa-spin').addClass('fa-hdd');
115
- jQuery('#wdms_loading').removeClass('wpdm-spin');
116
- }
117
- });
118
-
119
- return false;
120
- });
121
-
122
- jQuery('body').on("click",'.nav-tabs a', function (e) {
123
- e.preventDefault();
124
- jQuery(this).tab('show');
125
- });
126
-
127
-
128
-
129
- });
130
-
131
- </script>
132
-
133
- <style>.updated{ display: none !important; }</style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/settings/basic.php DELETED
@@ -1,280 +0,0 @@
1
-
2
- <style>
3
- .frm td{
4
- padding:5px;
5
- border-bottom: 1px solid #eeeeee;
6
-
7
- font-size:10pt;
8
-
9
- }
10
- h4{
11
- color: #336699;
12
- margin-bottom: 0px;
13
- }
14
- em{
15
- color: #888;
16
- }
17
- .wp-switch-editor{
18
- height: 27px !important;
19
- }
20
- </style>
21
-
22
-
23
- <div class="row">
24
- <div class="col-md-12">
25
-
26
-
27
-
28
- <div class="panel panel-default">
29
- <div class="panel-heading"><?php echo __('Messages','download-manager'); ?></div>
30
- <div class="panel-body">
31
-
32
-
33
- <div class="form-group">
34
- <label><?php echo __('Permission Denied Message for Packages:','download-manager'); ?></label>
35
- <input type=text class="form-control" name="wpdm_permission_msg" value="<?php echo htmlspecialchars(stripslashes_deep(get_option('wpdm_permission_msg','Access Denied'))); ?>" />
36
- </div>
37
-
38
-
39
-
40
-
41
-
42
- <div class="form-group">
43
- <label><?php echo __('Login Required Message:','download-manager'); ?></label>
44
- <textarea class="form-control" cols="70" rows="6" name="wpdm_login_msg"><?php echo htmlspecialchars(get_option('wpdm_login_msg', "<a href=\"".wp_login_url()."\" >Please login to download</a>")); ?></textarea><br>
45
-
46
- </div>
47
- </div>
48
- </div>
49
-
50
- <div class="panel panel-default">
51
- <div class="panel-heading"><?php echo __('Server File Browser','download-manager'); ?></div>
52
- <div class="panel-body">
53
-
54
- <div class="form-group">
55
- <label><?php echo __('Server File Browser Base Dir:','download-manager'); ?></label>
56
- <div class="input-group">
57
- <input type=text class="form-control" id="_wpdm_file_browser_root" name="_wpdm_file_browser_root" value="<?php echo htmlspecialchars(stripslashes_deep(get_option('_wpdm_file_browser_root', str_replace("\\", "/", ABSPATH)))); ?>" />
58
- <span class="input-group-btn">
59
- <button class="btn btn-secondary ttip" title="<?php _e('Reset Base Dir'); ?>" type="button" onclick="jQuery('#_wpdm_file_browser_root').val('<?php echo rtrim(str_replace("\\", "/", ABSPATH),'/'); ?>');"><i class="fas fa-redo"></i></button>
60
- </span>
61
- </div>
62
- </div>
63
-
64
- <div class="form-group">
65
- <label><?php echo __('File Browser Access:','download-manager'); ?></label><br/>
66
- <input type="hidden" name="_wpdm_file_browser_access[]" value="[NONE]" />
67
- <select style="width: 100%" name="_wpdm_file_browser_access[]" multiple="multiple" data-placeholder="<?php _e('Who will have access to server file browser','download-manager'); ?>">
68
- <?php
69
-
70
- $currentAccess = maybe_unserialize(get_option( '_wpdm_file_browser_access', array('administrator')));
71
- $selz = '';
72
-
73
- ?>
74
-
75
- <?php
76
- global $wp_roles;
77
- $roles = array_reverse($wp_roles->role_names);
78
- foreach( $roles as $role => $name ) {
79
-
80
- $ro = get_role($role);
81
-
82
- if(isset($ro->capabilities['edit_posts']) && $ro->capabilities['edit_posts']==1){
83
-
84
- if( $currentAccess ) $sel = (in_array($role,$currentAccess))?'selected=selected':'';
85
- else $sel = '';
86
-
87
-
88
-
89
- ?>
90
- <option value="<?php echo $role; ?>" <?php echo $sel ?>> <?php echo $name; ?></option>
91
- <?php }} ?>
92
- </select>
93
- </div>
94
-
95
- </div>
96
- </div>
97
-
98
- <div class="panel panel-default">
99
- <div class="panel-heading"><?php echo __('Upload Settings','download-manager'); ?></div>
100
- <div class="panel-body">
101
- <div class="form-group">
102
- <label><?php _e('Allowed file types to upload','download-manager'); ?></label><br/>
103
- <?php
104
- $allowed_file_types = get_option("__wpdm_allowed_file_types", '');
105
- ?>
106
- <input type="text" class="form-control" value="<?=$allowed_file_types; ?>" placeholder="<?=esc_attr__( 'Keep empty to use wordpress defaults', 'download-manager' ); ?>" name="__wpdm_allowed_file_types" />
107
- <em><?php _e('Enter the file extensions you want to allow to upload through WPDM ( ex: png,jpg,pdf )','download-manager'); ?></em>
108
- <br/>
109
-
110
- </div>
111
- <hr/>
112
- <div class="form-group">
113
- <input type="hidden" value="0" name="__wpdm_sanitize_filename" />
114
- <label><input style="margin: 0 10px 0 0" <?php checked(1, get_option('__wpdm_sanitize_filename',0)); ?> type="checkbox" value="1" name="__wpdm_sanitize_filename"><?php _e('Sanitize Filename','download-manager'); ?></label><br/>
115
- <em><?php _e('Check the option if you want to sanitize uploaded file names to remove illegal chars','download-manager'); ?></em>
116
- <br/>
117
-
118
- </div>
119
- <hr/>
120
- <div class="form-group">
121
- <input type="hidden" value="0" name="__wpdm_chunk_upload" />
122
- <label><input style="margin: 0 10px 0 0" <?php checked(1, get_option('__wpdm_chunk_upload',0)); ?> type="checkbox" value="1" name="__wpdm_chunk_upload"><?php _e('Chunk Upload','download-manager'); ?></label><br/>
123
- <em><?php _e('Check the option if you want to enable chunk upload to override http upload limits','download-manager'); ?></em>
124
- <br/>
125
-
126
- </div>
127
- <div class="form-group">
128
- <label><?php _e('Chunk Size','download-manager'); ?></label><br/>
129
- <div class="input-group">
130
- <input class="form-control" value="<?php echo (int)get_option('__wpdm_chunk_size',1024); ?>" type="number" name="__wpdm_chunk_size">
131
- <div class="input-group-addon">KB</div>
132
- </div>
133
- <br/>
134
-
135
- </div>
136
-
137
- </div>
138
- </div>
139
-
140
- <div class="panel panel-default">
141
- <div class="panel-heading"><?php echo __('File Download','download-manager'); ?></div>
142
- <div class="panel-body">
143
-
144
- <div class="form-group">
145
- <label><?php echo __('Download Speed:','download-manager'); ?></label>
146
- <div class="input-group">
147
- <input type=number class="form-control" name="__wpdm_download_speed" value="<?php echo intval(get_option('__wpdm_download_speed',4096)); ?>" />
148
- <span class="input-group-addon">KB</span>
149
- </div>
150
- </div>
151
- <br/>
152
- <fieldset>
153
- <legend><?php echo __('Blocked IPs','download-manager'); ?></legend>
154
- <div class="form-group">
155
- <textarea placeholder="<?php _e('One IP per line','download-manager'); ?>" rows="5" class="form-control" name="__wpdm_blocked_ips"><?php echo esc_attr(get_option('__wpdm_blocked_ips')); ?></textarea>
156
- <em><?php _e('List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or 2620:112:3000::/44 )','download-manager'); ?></em>
157
- </div>
158
- <div class="form-group">
159
- <textarea placeholder="<?php _e('Write a Message for Blocked IPs','download-manager'); ?>" class="form-control" name="__wpdm_blocked_ips_msg"><?php echo esc_attr(stripslashes_deep(get_option('__wpdm_blocked_ips_msg'))); ?></textarea>
160
- <em><?php _e('Message for Blocked IPs','download-manager'); ?></em>
161
- </div>
162
- </fieldset>
163
- <hr/>
164
- <em class="note"><?php _e('If you get broken download, then try enabling/disabling following options, as sometimes server may not support output buffering or partial downloads','download-manager'); ?>:</em>
165
- <hr/>
166
- <div class="form-group">
167
- <label><?php _e('Resumable Downloads','download-manager'); ?></label><br/>
168
- <select name="__wpdm_download_resume">
169
- <option value="1"><?php _e("Enabled",'download-manager'); ?></option>
170
- <option value="2" <?php selected(get_option('__wpdm_download_resume'), 2); ?>><?php _e("Disabled",'download-manager'); ?></option>
171
- </select>
172
- </div>
173
- <div class="form-group">
174
- <label><?php _e('Output Buffering','download-manager'); ?></label><br/>
175
- <select name="__wpdm_support_output_buffer">
176
- <option value="1"><?php _e("Enabled",'download-manager'); ?></option>
177
- <option value="0" <?php selected(get_option('__wpdm_support_output_buffer'), 0); ?>><?php _e("Disabled",'download-manager'); ?></option>
178
- </select>
179
- </div>
180
-
181
- <div class="form-group"><hr/>
182
- <input type="hidden" value="0" name="__wpdm_open_in_browser" />
183
- <label><input style="margin: 0 10px 0 0" <?php checked(1, get_option('__wpdm_open_in_browser',0)); ?> type="checkbox" value="1" name="__wpdm_open_in_browser"><?php _e('Open in Browser','download-manager'); ?></label><br/>
184
- <em><?php _e('Try to Open in Browser instead of download when someone clicks on download link','download-manager'); ?></em>
185
-
186
- </div>
187
- <hr/>
188
- <div class="form-group"><input type="hidden" name="__wpdm_mask_link" value="0">
189
- <label><input type="radio" <?php checked(get_option('__wpdm_mask_dlink', 1),1); ?> name="__wpdm_mask_dlink" value="1"> <?php _e( "Mask Download Link" , "download-manager" ); ?> &nbsp; </label>
190
- <label><input type="radio" <?php checked(get_option('__wpdm_mask_dlink', 1),0); ?> name="__wpdm_mask_dlink" value="0"> <?php _e( "Unmask Download Link" , "download-manager" ); ?></label><br/>
191
- <em><?php _e( "Check this option if you want to mask/unmask file download link. If you unmask download link, bots will be able the find any public download link easily." , "download-manager" ); ?></em>
192
- </div><hr/>
193
-
194
- <fieldset>
195
- <legend><?php echo __('reCAPTCHA Lock Settings','download-manager'); ?></legend>
196
- <div class="form-group">
197
- <label><a name="liappid"></a><?php echo __('reCAPTCHA Site Key','download-manager'); ?></label>
198
- <input type="text" class="form-control" name="_wpdm_recaptcha_site_key" value="<?php echo get_option('_wpdm_recaptcha_site_key'); ?>">
199
- <em><?php _e('Register a new site for reCAPTCHA from <a target="_blank" href="https://www.google.com/recaptcha/admin#list">here</a>','download-manager'); ?></em>
200
- </div>
201
- <div class="form-group">
202
- <label><a name="liappid"></a><?php echo __('reCAPTCHA Secret Key','download-manager'); ?></label>
203
- <input type="text" class="form-control" name="_wpdm_recaptcha_secret_key" value="<?php echo get_option('_wpdm_recaptcha_secret_key'); ?>">
204
- </div>
205
- <div class="form-group">
206
- <input type="hidden" value="0" name="__wpdm_recaptcha_regform">
207
- <label><input type="checkbox" name="__wpdm_recaptcha_regform" value="1" <?php checked(1, get_option('__wpdm_recaptcha_regform')); ?> > <?php echo __( "Enable sign up form CAPTCHA validation" , "download-manager" ); ?></label>
208
- </div>
209
- <div class="form-group">
210
- <input type="hidden" value="0" name="__wpdm_recaptcha_loginform">
211
- <label><input type="checkbox" name="__wpdm_recaptcha_loginform" value="1" <?php checked(1, get_option('__wpdm_recaptcha_loginform')); ?>> <?php echo __( "Enable sign in form CAPTCHA validation" , "download-manager" ); ?></label>
212
- </div>
213
- </fieldset>
214
-
215
-
216
-
217
-
218
- </div>
219
- </div>
220
-
221
-
222
- <div class="panel panel-default">
223
- <div class="panel-heading"><?php _e("Misc Settings",'download-manager'); ?></div>
224
- <div class="panel-body">
225
-
226
-
227
- <div class="form-group">
228
- <label for="__wpdm_user_dashboard"><?php echo __('Login Page','download-manager'); ?></label><br/>
229
- <?php wp_dropdown_pages(array('name' => '__wpdm_login_url', 'id' => '__wpdm_login_url', 'show_option_none' => __('None Selected','download-manager'), 'option_none_value' => '' , 'selected' => get_option('__wpdm_login_url'))) ?><br/>
230
- <em class="note"><?php printf(__('The page where you used short-code %s','download-manager'),'<code>[wpdm_login_form]</code>'); ?> &nbsp; <a target="_blank" href="https://www.wpdownloadmanager.com/doc/short-codes/wpdm_login_form-user-login-form-short-code/"><i title="Read Documentation" class="fa fa-book"></i></a></em>
231
- <label style="margin-top: 2px;display: block"><input type="hidden" name="__wpdm_modal_login" value="0"><input <?php checked(1, get_option('__wpdm_modal_login', 0)); ?> style="margin: 0 3px 0 5px" value="1" name="__wpdm_modal_login" type="checkbox" /> <?php _e("Enable modal login form", "download-manager"); ?></label>
232
- <em class="note"><?php printf(__('%s will show the modal login form, <a target="_blank" href="%s">follow the docs</a> for moore details','download-manager'),'<code>CTRL + L</code>', 'https://www.wpdownloadmanager.com/how-to-add-modal-popup-login-form-in-your-wordpress-site/'); ?></em>
233
- <hr/>
234
- </div>
235
-
236
- <div class="form-group">
237
- <label for="__wpdm_user_dashboard"><?php echo __('Register Page','download-manager'); ?></label><br/>
238
- <?php wp_dropdown_pages(array('name' => '__wpdm_register_url', 'id' => '__wpdm_register_url', 'show_option_none' => __('None Selected','download-manager'), 'option_none_value' => '' , 'selected' => get_option('__wpdm_register_url'))) ?><br/>
239
- <em class="note"><?php printf(__('The page where you used short-code %s','download-manager'),'<code>[wpdm_reg_form]</code>'); ?> &nbsp; <a target="_blank" href="https://www.wpdownloadmanager.com/doc/short-codes/wpdm_reg_form-user-registration-form-short-code/"><i title="Read Documentation" class="fa fa-book"></i></a></em>
240
- <label style="margin-top: 2px;display: block"><input type="hidden" name="__wpdm_signup_email_verify" value="0"><input <?php checked(1, get_option('__wpdm_signup_email_verify', 0)); ?> style="margin: 0 3px 0 5px" value="1" name="__wpdm_signup_email_verify" type="checkbox" /> <?php _e("Enable email verification on signup", "download-manager"); ?></label>
241
- <label style="margin-top: 2px;display: block"><input type="hidden" name="__wpdm_signup_autologin" value="0"><input <?php checked(1, get_option('__wpdm_signup_autologin', 0)); ?> style="margin: 0 3px 0 5px" value="1" name="__wpdm_signup_autologin" type="checkbox" /> <?php _e("Login automatically after signup is completed", "download-manager"); ?></label>
242
- </div>
243
- <hr/>
244
- <div class="form-group">
245
- <label for="__wpdm_user_dashboard"><?php echo __('Dashboard Page','download-manager'); ?></label><br/>
246
- <?php wp_dropdown_pages(array('name' => '__wpdm_user_dashboard', 'id' => '__wpdm_user_dashboard', 'show_option_none' => __('None Selected','download-manager'), 'option_none_value' => '' , 'selected' => get_option('__wpdm_user_dashboard'))) ?><br/>
247
- <em class="note"><?php printf(__('The page where you used short-code %s','download-manager'),'<code>[wpdm_user_dashboard]</code>'); ?> &nbsp; <a target="_blank" href="https://www.wpdownloadmanager.com/doc/short-codes/wpdm_user_dashboard-user-dashboard-short-code/"><i title="Read Documentation" class="fa fa-book"></i></a></em>
248
- </div>
249
-
250
- <div class="form-group"><hr/>
251
- <input type="hidden" value="0" name="__wpdm_rss_feed_main" />
252
- <label><input style="margin: 0 10px 0 0" type="checkbox" <?php checked(get_option('__wpdm_rss_feed_main'),1); ?> value="1" name="__wpdm_rss_feed_main"><?php _e('Include Packages in Main RSS Feed','download-manager'); ?></label><br/>
253
- <em><?php printf(__('Check this option if you want to show wpdm packages in your main <a target="_blank" href="%s">RSS Feed</a>','download-manager'), get_bloginfo('rss_url')); ?></em>
254
- <br/>
255
-
256
- </div>
257
-
258
-
259
- <table cellpadding="5" cellspacing="0" class="frm" width="100%">
260
-
261
-
262
-
263
-
264
-
265
- <?php do_action('basic_settings'); ?>
266
-
267
- </table>
268
-
269
- </div>
270
- <div class="panel-footer">
271
-
272
- </div>
273
- </div>
274
-
275
- <?php do_action('basic_settings_section'); ?>
276
-
277
-
278
-
279
- </div>
280
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/settings/privacy.php DELETED
@@ -1,68 +0,0 @@
1
- <?php
2
- /**
3
- * Date: 9/28/16
4
- * Time: 9:26 PM
5
- */
6
- if(!defined('ABSPATH')) die('!');
7
- ?>
8
- <div class="panel panel-default">
9
- <div class="panel-heading"><?php echo __( "Privacy Settings" , "download-manager" ); ?></div>
10
- <div class="panel-body">
11
- <div class="form-group">
12
- <input type="hidden" value="0" name="__wpdm_noip" />
13
- <label><input style="margin: 0 10px 0 0" type="checkbox" <?php checked(get_option('__wpdm_noip'),1); ?> value="1" name="__wpdm_noip"><?php _e('Do not store visitor\'s IP','wpdmpro'); ?></label><br/>
14
- <em><?php _e('Check this option if you do not want to store visitors IPs','wpdmpro'); ?></em>
15
- </div>
16
-
17
- <div class="form-group">
18
- <input type="hidden" value="0" name="__wpdm_delstats_on_udel" />
19
- <label><input style="margin: 0 10px 0 0" type="checkbox" <?php checked(get_option('__wpdm_delstats_on_udel'),1); ?> value="1" name="__wpdm_delstats_on_udel"><?php _e('Delete download history when users close accounts','wpdmpro'); ?></label><br/>
20
- <em><?php _e('If any user is deleted or close his/her own account, delete their download history too','wpdmpro'); ?></em>
21
- </div>
22
-
23
- <?php
24
- do_action("wpdm_privacy_settings_option");
25
- ?>
26
-
27
- </div>
28
- </div>
29
-
30
- <?php
31
- do_action("wpdm_privacy_settings_panel");
32
- ?>
33
-
34
- <div class="panel panel-default">
35
- <div class="panel-heading"><?php _e('Cache & Stats','wpdmpro'); ?></div>
36
- <div class="panel-body">
37
-
38
-
39
-
40
- <button type="button" id="clearCache" style="width: 250px" class="btn btn-success btn-lg"><?php _e('Empty Cache Dir','wpdmpro'); ?></button>
41
- <button type="button" id="clearStats" style="width: 250px" class="btn btn-danger btn-lg"><?php _e('Delete All Stats Data','wpdmpro'); ?></button>
42
-
43
-
44
-
45
-
46
-
47
- </div>
48
- </div>
49
- <script>
50
- jQuery(function($) {
51
- $('#clearCache').on('click', function () {
52
- $(this).html('<i class="fa fa-sync fa-spin"></i>');
53
- $.get(ajaxurl + '?action=clear_cache', function (res) {
54
- $('#clearCache').html('<i class="fa fa-check-circle"></i>')
55
- });
56
- return false;
57
- });
58
- $('#clearStats').on('click', function () {
59
- if (!confirm('Are you sure?')) return false;
60
- $(this).html('<i class="fa fa-sync fa-spin"></i>');
61
- $.get(ajaxurl + '?action=clear_stats', function (res) {
62
- $('#clearStats').html('<i class="fa fa-check-circle"></i>')
63
- });
64
- return false;
65
- });
66
-
67
- });
68
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/stats.php DELETED
@@ -1,43 +0,0 @@
1
-
2
- <div class="wrap w3eden" style="margin-top: 45px">
3
-
4
- <div class="panel panel-default" id="wpdm-wrapper-panel">
5
- <div class="panel-heading">
6
- <button type="button" id="cdh" class="btn btn-danger btn-sm pull-right" style="font-weight: 600;margin-left: 10px;"><i class="sinc fas fa-trash"></i><?php _e("Clear History",'download-manager'); ?></button>
7
- <a class="btn btn-secondary btn-sm pull-right" href="edit.php?post_type=wpdmpro&page=wpdm-stats&task=export<?php echo wpdm_query_var('pid', 'int')?'&pid='.wpdm_query_var('pid', 'int'):''; ?><?php echo wpdm_query_var('uid', 'int')?'&uid='.wpdm_query_var('uid', 'int'):''; ?><?php echo wpdm_query_var('ip')?'&ip='.wpdm_query_var('ip'):''; ?>" style="font-weight: 600"><i class="sinc fa fa-file-export"></i><?php _e("Export History",'download-manager'); ?></a>
8
- <b><i class="fa fa-history color-purple"></i> &nbsp; <a href="edit.php?post_type=wpdmpro&page=wpdm-stats"><?php echo __('Download History','download-manager'); ?></a></b>
9
-
10
- </div>
11
-
12
- <div class="tab-content" style="padding: 15px;" id="dstats">
13
- <?php
14
-
15
- $type = WPDM_BASE_DIR."admin/tpls/stats/history.php";
16
-
17
- include($type);
18
-
19
- ?>
20
- </div>
21
- </div>
22
-
23
- <style>
24
- .notice, .updated{
25
- display: none !important;
26
- }
27
- </style>
28
- <script>
29
- jQuery(function ($) {
30
- $('#cdh').on('click', function () {
31
- if(!confirm("<?php _e('Are you sure? There is no going back!', 'download-manager'); ?>")) return false;
32
- var olabel = $(this).html();
33
- var ow = $(this).width();
34
- $(this).css('width', (ow+30)+"px");
35
- $(this).html('<i class="sinc fas fa-sync fa-spin color-green"></i> &nbsp; <?php _e("Clearing...",'download-manager'); ?>');
36
- $.post(ajaxurl, {action:'wpdm_clear_stats'}, function (res) {
37
- $('#cdh').html(olabel);
38
- $('#dstats').html("<div class='alert alert-info'><?php _e('Download History is Empty', 'download-manager'); ?></div>");
39
- });
40
-
41
- });
42
- });
43
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/tpls/templates.php DELETED
@@ -1,383 +0,0 @@
1
-
2
-
3
- <div class="wrap w3eden">
4
-
5
- <div class="panel panel-default" id="wpdm-wrapper-panel">
6
- <div class="panel-heading">
7
- <b><i class="fa fa-magic color-purple"></i> &nbsp; <?php echo __( "Templates" , "download-manager" ); ?></b>
8
-
9
- <div style="clear: both"></div>
10
- </div>
11
- <ul id="tabs" class="nav nav-tabs nav-wrapper-tabs" style="padding: 60px 10px 0 10px;background: #f5f5f5">
12
- <li <?php if(!isset($_GET['_type'])||$_GET['_type']=='link'){ ?>class="active"<?php } ?>><a href="edit.php?post_type=wpdmpro&page=templates&_type=link" id="basic"><?php _e( "Link Templates" , "download-manager" ); ?></a></li>
13
- <li <?php if(isset($_GET['_type'])&&$_GET['_type']=='page'){ ?>class="active"<?php } ?>><a href="edit.php?post_type=wpdmpro&page=templates&_type=page" id="basic"><?php _e( "Page Templates" , "download-manager" ); ?></a></li>
14
- <li <?php if(isset($_GET['_type'])&&$_GET['_type']=='email'){ ?>class="active"<?php } ?>><a href="edit.php?post_type=wpdmpro&page=templates&_type=email" id="basic"><?php _e( "Email Templates" , "download-manager" ); ?></a></li>
15
- </ul>
16
- <div class="tab-content panel-body">
17
- <?php if(!isset($_GET['_type']) || $_GET['_type']!='email'){ ?>
18
- <blockquote class="alert alert-info" style="margin-bottom: 10px">
19
- <?php echo sprintf(__( "Custom Template editor is available with <a target='_blank' href='%s'>WordPress Download Manager Pro</a>" , "download-manager" ), 'https://www.wpdownloadmanager.com/pricing/'); ?>
20
- | <?php echo sprintf(__( "Please follow the <a target='_blank' href='%s'>documentation</a> to edit exiting template files" , "download-manager" ), 'https://www.wpdownloadmanager.com/doc/template-files/'); ?>
21
- </blockquote>
22
- <?php } ?>
23
-
24
-
25
- <table cellspacing="0" class="table table-hover">
26
- <thead>
27
- <tr>
28
- <th style="min-width: 400px"><?php echo __( "Template Name" , "download-manager" ); ?></th>
29
- <th style="width: 250px;"><?php echo __( "Template ID" , "download-manager" ); ?></th>
30
-
31
- <th style="width: 260px;text-align: right"><?php echo __( "Actions" , "download-manager" ); ?></th>
32
- </tr>
33
- </thead>
34
-
35
-
36
- <tbody class="list:post" id="the-list">
37
-
38
- <?php
39
- $ttype = isset($_GET['_type'])?esc_attr($_GET['_type']):'link';
40
- if($ttype != 'email'){
41
- $ctpls = WPDM\admin\menus\Templates::Dropdown(array('data_type' => 'ARRAY', 'type' => $ttype));
42
- $ctemplates = maybe_unserialize(get_option("_fm_{$ttype}_templates",true));
43
- if(is_array($ctemplates))
44
- $ctemplates = array_keys($ctemplates);
45
- if(!is_array($ctemplates)) $ctemplates = array();
46
- $tplstatus = maybe_unserialize(get_option("_fm_{$ttype}_template_status"));
47
-
48
- foreach($ctpls as $ctpl => $title){
49
- $tplid = str_replace(".php","",$ctpl);
50
- $status = isset($tplstatus[$tplid])?$tplstatus[$tplid]:1;
51
- ?>
52
-
53
- <tr valign="top" class="author-self status-inherit" id="template-<?php echo $ttype; ?>-<?php echo $ctpl; ?>">
54
- <td class="column-icon media-icon" style="text-align: left;">
55
- <nobr><?php echo $title; ?></nobr>
56
- </td>
57
- <td>
58
- <input class="form-control input-sm input-tplid" type="text" readonly="readonly" onclick="this.select()" value="<?php echo $tplid; ?>" />
59
- </td>
60
-
61
- <td style="text-align: right">
62
- <a data-toggle="modal" href="#" data-href="admin-ajax.php?action=template_preview&_type=<?php echo $ttype; ?>&template=<?php echo $ctpl; ?>" data-target="#preview-modal" rel="<?php echo $ctpl; ?>" class="template_preview btn btn-sm btn-success"><i class="fa fa-desktop"></i> Preview</a>
63
- </td>
64
-
65
-
66
- </tr>
67
- <?php
68
- }} else {
69
- $templates = \WPDM\Email::templates();
70
- foreach($templates as $ctpl => $template){
71
- ?>
72
- <tr valign="top" class="author-self status-inherit" id="post-8">
73
- <td class="column-icon media-icon" style="text-align: left;">
74
- <?php echo $template['label']; ?> ( <?php _e( "To:" , "download-manager" ); ?> <?php echo ucfirst($template['for']); ?> )
75
-
76
- </td>
77
- <td>
78
- <?php echo $ctpl; ?>
79
- </td>
80
- <td style="text-align: right">
81
-
82
- <a href="edit.php?post_type=wpdmpro&page=templates&_type=email&task=EditEmailTemplate&id=<?php echo $ctpl; ?>" class="btn btn-sm btn-primary"><i class="fas fa-pencil-alt"></i> <?php echo __( "Edit" , "download-manager" ); ?></a>
83
-
84
- </td>
85
-
86
-
87
- </tr>
88
- <?php
89
- }}
90
- ?>
91
- </tbody>
92
- </table>
93
-
94
-
95
-
96
- <?php if($ttype == 'email'){ ?>
97
- <form method="post" id="emlstform">
98
- <?php wp_nonce_field(NONCE_KEY, '__wpdm_nonce') ?>
99
- <div class="panel panel-default">
100
- <div class="panel-heading">Email Settings</div>
101
- <div class="panel-body">
102
-
103
- <div class="row">
104
- <div class="col-md-4">
105
- <div class="form-group">
106
- <?php _e( "Email Template" , "download-manager" ); ?>
107
- <select name="__wpdm_email_template" class="form-control wpdm-custom-select" style="width: 200px" id="etmpl">
108
- <?php
109
- $eds = \WPDM\libs\FileSystem::scanDir(WPDM_BASE_DIR.'email-templates');
110
- $__wpdm_email_template = get_option('__wpdm_email_template', "default.html");
111
- $__wpdm_email_setting = maybe_unserialize(get_option('__wpdm_email_setting'));
112
- foreach ($eds as $file) {
113
- if(strstr($file, ".html")) {
114
- ?>
115
- <option value="<?php echo basename($file); ?>" <?php selected($__wpdm_email_template, basename($file)); ?> ><?php echo ucfirst(str_replace(".html", "", basename($file))); ?></option>
116
- <?php
117
- }
118
- }
119
- ?>
120
- </select>
121
- </div>
122
- <div class="form-group">
123
- <?php _e( "Logo URL" , "download-manager" ); ?>
124
- <?php echo wpdm_media_field(array('placeholder' => __("Logo URL" , "download-manager"), 'name' => '__wpdm_email_setting[logo]', 'id' => 'logo-url', 'value' => (isset($__wpdm_email_setting['logo'])?$__wpdm_email_setting['logo']:''))); ?>
125
- </div>
126
- <div class="form-group">
127
- <?php _e( "Banner/Background Image URL" , "download-manager" ); ?>
128
- <?php echo wpdm_media_field(array('placeholder' => __("Banner/Background Image URL" , "download-manager"), 'name' => '__wpdm_email_setting[banner]', 'id' => 'banner-url', 'value' => (isset($__wpdm_email_setting['banner'])?$__wpdm_email_setting['banner']:''))); ?>
129
- <div class="xbubble" style="margin-top: 5px;box-shadow: none;z-index: 999">
130
- <img class="bselect" src="https://wpdmcdn.s3.amazonaws.com/emails/brush.jpg" style="height: 32px;margin: 2px" />
131
- <img class="bselect" src="https://wpdmcdn.s3.amazonaws.com/emails/a.jpg" style="height: 32px;margin: 2px" />
132
- <img class="bselect" src="https://wpdmcdn.s3.amazonaws.com/emails/crain.jpg" style="height: 32px;margin: 2px" />
133
- <img class="bselect" src="https://wpdmcdn.s3.amazonaws.com/emails/c.jpg" style="height: 32px;margin: 2px" />
134
- <img class="bselect" src="https://wpdmcdn.s3.amazonaws.com/emails/z.jpg" style="height: 32px;margin: 2px" />
135
- <img class="bselect" src="https://wpdmcdn.s3.amazonaws.com/emails/oilpaint.jpg" style="height: 32px;margin: 2px" />
136
- </div>
137
- </div>
138
- <div class="form-group">
139
- <?php _e( "Footer Text" , "download-manager" ); ?>
140
- <textarea name="__wpdm_email_setting[footer_text]" class="form-control"><?php echo isset($__wpdm_email_setting['footer_text'])?stripslashes($__wpdm_email_setting['footer_text']):'';?></textarea>
141
- </div>
142
- <div class="form-group">
143
- <?php _e( "Facebook Page URL" , "download-manager" ); ?>
144
- <input type="text" name="__wpdm_email_setting[facebook]" value="<?php echo isset($__wpdm_email_setting['facebook'])?($__wpdm_email_setting['facebook']):'';?>" class="form-control">
145
- </div>
146
- <div class="form-group">
147
- <?php _e( "Twitter Profile URL" , "download-manager" ); ?>
148
- <input type="text" name="__wpdm_email_setting[twitter]" value="<?php echo isset($__wpdm_email_setting['twitter'])?$__wpdm_email_setting['twitter']:'';?>" class="form-control">
149
- </div>
150
- <div class="form-group">
151
- <?php _e( "Youtube Profile URL" , "download-manager" ); ?>
152
- <input type="text" name="__wpdm_email_setting[youtube]" value="<?php echo isset($__wpdm_email_setting['youtube'])?$__wpdm_email_setting['youtube']:'';?>" class="form-control">
153
- </div>
154
- </div>
155
- <div class="col-md-8">
156
- <div class="w3econtainer">
157
- <div class="w3erow">
158
- <div class="w3ecolumn w3eleft">
159
- <span class="w3edot" style="background:#ED594A;"></span>
160
- <span class="w3edot" style="background:#FDD800;"></span>
161
- <span class="w3edot" style="background:#5AC05A;"></span>
162
- </div>
163
- <div class="w3ecolumn w3emiddle">
164
- Email Preview
165
- </div>
166
- <div class="w3ecolumn w3eright">
167
- <div style="float:right">
168
- <span class="w3ebar"></span>
169
- <span class="w3ebar"></span>
170
- <span class="w3ebar"></span>
171
- </div>
172
- </div>
173
- </div>
174
-
175
- <div class="w3econtent">
176
- <iframe style="margin: 0;width: 100%;height: 550px;border-radius: 3px" id="preview" src="edit.php?action=email_template_preview&id=user-signup&etmpl=<?php echo $__wpdm_email_template; ?>">
177
-
178
- </iframe>
179
- </div>
180
- </div>
181
- </div>
182
- </div>
183
-
184
- </div>
185
- <div class="panel-footer text-right">
186
- <button class="btn btn-primary" id="emsbtn" style="width: 180px;"><i class="fas fa-hdd"></i> <?php _e( "Save Changes" , "download-manager" ); ?></button>
187
- </div>
188
- </div>
189
- </form>
190
- <?php } ?>
191
-
192
- </div>
193
- </div>
194
-
195
-
196
- <div class="modal fade" id="preview-modal" tabindex="-1" role="dialog" aria-labelledby="preview" aria-hidden="true">
197
- <div class="modal-dialog">
198
- <div class="modal-content">
199
- <div class="modal-header">
200
- <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
201
- <h4 class="modal-title" id="myModalLabel"><?php _e( "Template Preview" , "download-manager" ); ?></h4>
202
- </div>
203
- <div class="modal-body" id="preview-area">
204
-
205
- </div>
206
- <div class="modal-footer text-left" style="text-align: left">
207
- <div class='alert alert-info'><?php _e( "This is a preview, original template color scheme may look little different, but structure will be same" , "download-manager" ); ?></div>
208
- </div>
209
- </div>
210
- </div>
211
- </div>
212
-
213
-
214
- <style>
215
- div.notice, .updated{ display: none; }
216
- img{
217
- max-width: 100%;
218
- }
219
- .xbubble
220
- {
221
- position: relative;
222
- padding: 10px;
223
- background: #eeeeee;
224
- -webkit-border-radius: 3px;
225
- -moz-border-radius: 3px;
226
- border-radius: 3px;
227
- }
228
-
229
- .xbubble:after
230
- {
231
- content: '';
232
- position: absolute;
233
- border-style: solid;
234
- border-width: 0 10px 10px;
235
- border-color: #eeeeee transparent;
236
- display: block;
237
- width: 0;
238
- z-index: 1;
239
- top: -10px;
240
- left: 17px;
241
- }
242
- .w3ebselect{
243
- padding: 2px;
244
- border-radius: 2px;
245
- background: #ffffff;
246
- cursor: pointer;
247
- }
248
-
249
- .w3econtainer {
250
- border: 3px solid #333;
251
- border-radius: 4px;
252
- background: #333;
253
- }
254
-
255
- /* Container for columns and the top "toolbar" */
256
- .w3erow {
257
- padding: 10px;
258
- background: #333;
259
- color: #777777;
260
- letter-spacing: 0.5px;
261
- font-size: 11px;
262
- font-weight: 600;
263
- }
264
-
265
- /* Create three unequal columns that floats next to each other */
266
- .w3ecolumn {
267
- float: left;
268
- }
269
-
270
- .w3eleft {
271
- width: 60px;
272
- }
273
-
274
- .w3eright {
275
- width: 10%;
276
- }
277
-
278
- .w3emiddle {
279
- width: calc(90% - 60px);
280
- }
281
-
282
- /* Clear floats after the columns */
283
- .w3erow:after {
284
- content: "";
285
- display: table;
286
- clear: both;
287
- }
288
-
289
- /* Three dots */
290
- .w3edot {
291
- margin-top: 4px;
292
- height: 12px;
293
- width: 12px;
294
- background-color: #bbb;
295
- border-radius: 50%;
296
- display: inline-block;
297
- }
298
-
299
- /* Style the input field */
300
- input[type=text].w3e {
301
- width: 100%;
302
- border-radius: 3px;
303
- border: none;
304
- background-color: white;
305
- margin-top: -8px;
306
- height: 25px;
307
- color: #666;
308
- padding: 5px;
309
- }
310
-
311
- /* Three bars (hamburger menu) */
312
- .w3ebar {
313
- width: 17px;
314
- height: 3px;
315
- background-color: #aaa;
316
- margin: 3px 0;
317
- display: block;
318
- }
319
-
320
- /* Page content */
321
- .w3econtent {
322
- padding: 0;
323
- margin-bottom: -4px;
324
- }
325
-
326
- </style>
327
- <script>
328
-
329
-
330
-
331
- jQuery(function($){
332
- $('.bselect').click(function(){
333
- $('#banner-url').val(this.src);
334
- });
335
- $('.template_preview').click(function(){
336
- $('#preview-area').html("<i class='fa fa-spin fa-spinner'></i> Loading Preview...").load($(this).attr('data-href'));
337
- });
338
- $('#etmpl').on('change', function () {
339
- $('#preview').attr('src', 'edit.php?action=email_template_preview&id=user-signup&etmpl='+$(this).val());
340
- });
341
- $('#emlstform').submit(function (e) {
342
- e.preventDefault();
343
- $('#emsbtn').html('<i class="fa fa-sync fa-spin"></i> <?php _e( "Saving..." , "download-manager" ); ?>');
344
- $(this).ajaxSubmit({
345
- url: ajaxurl+"?action=wpdm_save_email_setting",
346
- success: function (res) {
347
- $('#emsbtn').html('<i class="fas fa-hdd"></i> <?php _e( "Save Changes" , "download-manager" ); ?>');
348
- document.getElementById('preview').contentDocument.location.reload(true);
349
- }
350
- });
351
- });
352
-
353
- $('.btn-status').on('click', function () {
354
- var v = $(this).data('value');
355
- var c = '.'+$(this).data('id');
356
- var $this = this;
357
- $.post(ajaxurl, {action: 'update_template_status', template: $(this).data('id'), type: '<?php echo $ttype; ?>', status: v}, function (res) {
358
- $(c).removeClass('btn-danger').removeClass('btn-success').addClass('btn-default');
359
- if(v==1)
360
- $($this).addClass('btn-success').removeClass('btn-default');
361
- else
362
- $($this).addClass('btn-danger').removeClass('btn-default');
363
- });
364
-
365
-
366
- });
367
-
368
- $('.delete-template').on('click', function (e) {
369
- if(!confirm('<?php _e( "Are you sure?" , "download-manager" ); ?>')) return false;
370
- e.preventDefault();
371
- var rowid = '#template-'+$(this).data('ttype')+"-"+$(this).data('tplid');
372
- $(this).html('<i class="fa fa-times fa-spin"></i> Delete');
373
- $.get(ajaxurl, {action: 'wpdm_delete_template', ttype: $(this).data('ttype'), tplid: $(this).data('tplid')}, function (res) {
374
- $(rowid).remove();
375
- });
376
- });
377
- });
378
-
379
- </script>
380
- </div>
381
-
382
-
383
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/bootstrap/css/bootstrap-441.css ADDED
@@ -0,0 +1,11049 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Bootstrap v4.4.1 (https://getbootstrap.com/)
3
+ * Copyright 2011-2019 The Bootstrap Authors
4
+ * Copyright 2011-2019 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */
7
+ /*# sourceMappingURL=bootstrap.css.map */
8
+ :root {
9
+ --blue: var(--color-primary);
10
+ --indigo: #6610f2;
11
+ --purple: #6f42c1;
12
+ --pink: #e83e8c;
13
+ --red: var(--color-danger);
14
+ --orange: #fd7e14;
15
+ --yellow: var(--color-warning);
16
+ --green: var(--color-success);
17
+ --teal: #20c997;
18
+ --cyan: var(--color-info);
19
+ --white: #fff;
20
+ --gray: #6c757d;
21
+ --gray-dark: #343a40;
22
+ --primary: var(--color-primary);
23
+ --secondary: #6c757d;
24
+ --success: var(--color-success);
25
+ --info: var(--color-info);
26
+ --warning: var(--color-warning);
27
+ --danger: var(--color-danger);
28
+ --light: #f8f9fa;
29
+ --dark: #343a40;
30
+ --breakpoint-xs: 0;
31
+ --breakpoint-sm: 576px;
32
+ --breakpoint-md: 768px;
33
+ --breakpoint-lg: 992px;
34
+ --breakpoint-xl: 1200px;
35
+ --font-family-sans-serif: -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";
36
+ --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
37
+ }
38
+
39
+ .w3eden *,
40
+ .w3eden *::before,
41
+ .w3eden *::after {
42
+ box-sizing: border-box;
43
+ }
44
+
45
+ .w3eden html {
46
+ font-family: sans-serif;
47
+ line-height: 1.15;
48
+ -webkit-text-size-adjust: 100%;
49
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
50
+ }
51
+
52
+ .w3eden article, .w3eden aside, .w3eden figcaption, .w3eden figure, .w3eden footer, .w3eden header, .w3eden hgroup, .w3eden main, .w3eden nav, .w3eden section {
53
+ display: block;
54
+ }
55
+
56
+ .w3eden body {
57
+ margin: 0;
58
+ font-family: -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";
59
+ font-size: 1rem;
60
+ font-weight: 400;
61
+ line-height: 1.5;
62
+ color: #212529;
63
+ text-align: left;
64
+ background-color: #fff;
65
+ }
66
+
67
+ .w3eden [tabindex="-1"]:focus:not(:focus-visible) {
68
+ outline: 0 !important;
69
+ }
70
+
71
+ .w3eden hr {
72
+ box-sizing: content-box;
73
+ height: 0;
74
+ overflow: visible;
75
+ }
76
+
77
+ .w3eden h1, .w3eden h2, .w3eden h3, .w3eden h4, .w3eden h5, .w3eden h6 {
78
+ margin-top: 0;
79
+ margin-bottom: 0.5rem;
80
+ }
81
+
82
+ .w3eden p {
83
+ margin-top: 0;
84
+ margin-bottom: 1rem;
85
+ }
86
+
87
+ .w3eden abbr[title],
88
+ .w3eden abbr[data-original-title] {
89
+ text-decoration: underline;
90
+ -webkit-text-decoration: underline dotted;
91
+ text-decoration: underline dotted;
92
+ cursor: help;
93
+ border-bottom: 0;
94
+ -webkit-text-decoration-skip-ink: none;
95
+ text-decoration-skip-ink: none;
96
+ }
97
+
98
+ .w3eden address {
99
+ margin-bottom: 1rem;
100
+ font-style: normal;
101
+ line-height: inherit;
102
+ }
103
+
104
+ .w3eden ol,
105
+ .w3eden ul,
106
+ .w3eden dl {
107
+ margin-top: 0;
108
+ margin-bottom: 1rem;
109
+ }
110
+
111
+ .w3eden ol ol,
112
+ .w3eden ul ul,
113
+ .w3eden ol ul,
114
+ .w3eden ul ol {
115
+ margin-bottom: 0;
116
+ }
117
+
118
+ .w3eden dt {
119
+ font-weight: 700;
120
+ }
121
+
122
+ .w3eden dd {
123
+ margin-bottom: .5rem;
124
+ margin-left: 0;
125
+ }
126
+
127
+ .w3eden blockquote {
128
+ margin: 0 0 1rem;
129
+ }
130
+
131
+ .w3eden b,
132
+ .w3eden strong {
133
+ font-weight: bolder;
134
+ }
135
+
136
+ .w3eden small {
137
+ font-size: 80%;
138
+ }
139
+
140
+ .w3eden sub,
141
+ .w3eden sup {
142
+ position: relative;
143
+ font-size: 75%;
144
+ line-height: 0;
145
+ vertical-align: baseline;
146
+ }
147
+
148
+ .w3eden sub {
149
+ bottom: -.25em;
150
+ }
151
+
152
+ .w3eden sup {
153
+ top: -.5em;
154
+ }
155
+
156
+ .w3eden a {
157
+ color: var(--color-primary);
158
+ text-decoration: none;
159
+ background-color: transparent;
160
+ }
161
+
162
+ .w3eden a:hover {
163
+ color: #0056b3;
164
+ text-decoration: underline;
165
+ }
166
+
167
+ .w3eden a:not([href]) {
168
+ color: inherit;
169
+ text-decoration: none;
170
+ }
171
+
172
+ .w3eden a:not([href]):hover {
173
+ color: inherit;
174
+ text-decoration: none;
175
+ }
176
+
177
+ .w3eden pre,
178
+ .w3eden code,
179
+ .w3eden kbd,
180
+ .w3eden samp {
181
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
182
+ font-size: 1em;
183
+ }
184
+
185
+ .w3eden pre {
186
+ margin-top: 0;
187
+ margin-bottom: 1rem;
188
+ overflow: auto;
189
+ }
190
+
191
+ .w3eden figure {
192
+ margin: 0 0 1rem;
193
+ }
194
+
195
+ .w3eden img {
196
+ vertical-align: middle;
197
+ border-style: none;
198
+ }
199
+
200
+ .w3eden svg {
201
+ overflow: hidden;
202
+ vertical-align: middle;
203
+ }
204
+
205
+ .w3eden table {
206
+ border-collapse: collapse;
207
+ }
208
+
209
+ .w3eden caption {
210
+ padding-top: 0.75rem;
211
+ padding-bottom: 0.75rem;
212
+ color: #6c757d;
213
+ text-align: left;
214
+ caption-side: bottom;
215
+ }
216
+
217
+ .w3eden th {
218
+ text-align: inherit;
219
+ }
220
+
221
+ .w3eden label {
222
+ display: inline-block;
223
+ margin-bottom: 0.5rem;
224
+ }
225
+
226
+ .w3eden button {
227
+ border-radius: 0;
228
+ }
229
+
230
+ .w3eden button:focus {
231
+ outline: 1px dotted;
232
+ outline: 5px auto -webkit-focus-ring-color;
233
+ }
234
+
235
+ .w3eden input,
236
+ .w3eden button,
237
+ .w3eden select,
238
+ .w3eden optgroup,
239
+ .w3eden textarea {
240
+ margin: 0;
241
+ font-family: inherit;
242
+ font-size: inherit;
243
+ line-height: inherit;
244
+ }
245
+
246
+ .w3eden button,
247
+ .w3eden input {
248
+ overflow: visible;
249
+ }
250
+
251
+ .w3eden button,
252
+ .w3eden select {
253
+ text-transform: none;
254
+ }
255
+
256
+ .w3eden select {
257
+ word-wrap: normal;
258
+ }
259
+
260
+ .w3eden button,
261
+ .w3eden [type="button"],
262
+ .w3eden [type="reset"],
263
+ .w3eden [type="submit"] {
264
+ -webkit-appearance: button;
265
+ }
266
+
267
+ .w3eden button:not(:disabled),
268
+ .w3eden [type="button"]:not(:disabled),
269
+ .w3eden [type="reset"]:not(:disabled),
270
+ .w3eden [type="submit"]:not(:disabled) {
271
+ cursor: pointer;
272
+ }
273
+
274
+ .w3eden button::-moz-focus-inner,
275
+ .w3eden [type="button"]::-moz-focus-inner,
276
+ .w3eden [type="reset"]::-moz-focus-inner,
277
+ .w3eden [type="submit"]::-moz-focus-inner {
278
+ padding: 0;
279
+ border-style: none;
280
+ }
281
+
282
+ .w3eden input[type="radio"],
283
+ .w3eden input[type="checkbox"] {
284
+ box-sizing: border-box;
285
+ padding: 0;
286
+ }
287
+
288
+ .w3eden input[type="date"],
289
+ .w3eden input[type="time"],
290
+ .w3eden input[type="datetime-local"],
291
+ .w3eden input[type="month"] {
292
+ -webkit-appearance: listbox;
293
+ }
294
+
295
+ .w3eden textarea {
296
+ overflow: auto;
297
+ resize: vertical;
298
+ }
299
+
300
+ .w3eden fieldset {
301
+ min-width: 0;
302
+ padding: 0;
303
+ margin: 0;
304
+ border: 0;
305
+ }
306
+
307
+ .w3eden legend {
308
+ display: block;
309
+ width: 100%;
310
+ max-width: 100%;
311
+ padding: 0;
312
+ margin-bottom: .5rem;
313
+ font-size: 1.5rem;
314
+ line-height: inherit;
315
+ color: inherit;
316
+ white-space: normal;
317
+ }
318
+
319
+ .w3eden progress {
320
+ vertical-align: baseline;
321
+ }
322
+
323
+ .w3eden [type="number"]::-webkit-inner-spin-button,
324
+ .w3eden [type="number"]::-webkit-outer-spin-button {
325
+ height: auto;
326
+ }
327
+
328
+ .w3eden [type="search"] {
329
+ outline-offset: -2px;
330
+ -webkit-appearance: none;
331
+ }
332
+
333
+ .w3eden [type="search"]::-webkit-search-decoration {
334
+ -webkit-appearance: none;
335
+ }
336
+
337
+ .w3eden ::-webkit-file-upload-button {
338
+ font: inherit;
339
+ -webkit-appearance: button;
340
+ }
341
+
342
+ .w3eden output {
343
+ display: inline-block;
344
+ }
345
+
346
+ .w3eden summary {
347
+ display: list-item;
348
+ cursor: pointer;
349
+ }
350
+
351
+ .w3eden template {
352
+ display: none;
353
+ }
354
+
355
+ .w3eden [hidden] {
356
+ display: none !important;
357
+ }
358
+
359
+ .w3eden h1, .w3eden h2, .w3eden h3, .w3eden h4, .w3eden h5, .w3eden h6,
360
+ .w3eden .h1, .w3eden .h2, .w3eden .h3, .w3eden .h4, .w3eden .h5, .w3eden .h6 {
361
+ margin-bottom: 0.5rem;
362
+ font-weight: 500;
363
+ line-height: 1.2;
364
+ }
365
+
366
+ .w3eden h1, .w3eden .h1 {
367
+ font-size: 2.5rem;
368
+ }
369
+
370
+ .w3eden h2, .w3eden .h2 {
371
+ font-size: 2rem;
372
+ }
373
+
374
+ .w3eden h3, .w3eden .h3 {
375
+ font-size: 1.75rem;
376
+ }
377
+
378
+ .w3eden h4, .w3eden .h4 {
379
+ font-size: 1.5rem;
380
+ }
381
+
382
+ .w3eden h5, .w3eden .h5 {
383
+ font-size: 1.25rem;
384
+ }
385
+
386
+ .w3eden h6, .w3eden .h6 {
387
+ font-size: 1rem;
388
+ }
389
+
390
+ .w3eden .lead {
391
+ font-size: 1.25rem;
392
+ font-weight: 300;
393
+ }
394
+
395
+ .w3eden .display-1 {
396
+ font-size: 6rem;
397
+ font-weight: 300;
398
+ line-height: 1.2;
399
+ }
400
+
401
+ .w3eden .display-2 {
402
+ font-size: 5.5rem;
403
+ font-weight: 300;
404
+ line-height: 1.2;
405
+ }
406
+
407
+ .w3eden .display-3 {
408
+ font-size: 4.5rem;
409
+ font-weight: 300;
410
+ line-height: 1.2;
411
+ }
412
+
413
+ .w3eden .display-4 {
414
+ font-size: 3.5rem;
415
+ font-weight: 300;
416
+ line-height: 1.2;
417
+ }
418
+
419
+ .w3eden hr {
420
+ margin-top: 1rem;
421
+ margin-bottom: 1rem;
422
+ border: 0;
423
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
424
+ }
425
+
426
+ .w3eden small,
427
+ .w3eden .small {
428
+ font-size: 80%;
429
+ font-weight: 400;
430
+ }
431
+
432
+ .w3eden mark,
433
+ .w3eden .mark {
434
+ padding: 0.2em;
435
+ background-color: #fcf8e3;
436
+ }
437
+
438
+ .w3eden .list-unstyled {
439
+ padding-left: 0;
440
+ list-style: none;
441
+ }
442
+
443
+ .w3eden .list-inline {
444
+ padding-left: 0;
445
+ list-style: none;
446
+ }
447
+
448
+ .w3eden .list-inline-item {
449
+ display: inline-block;
450
+ }
451
+
452
+ .w3eden .list-inline-item:not(:last-child) {
453
+ margin-right: 0.5rem;
454
+ }
455
+
456
+ .w3eden .initialism {
457
+ font-size: 90%;
458
+ text-transform: uppercase;
459
+ }
460
+
461
+ .w3eden .blockquote {
462
+ margin-bottom: 1rem;
463
+ font-size: 1.25rem;
464
+ }
465
+
466
+ .w3eden .blockquote-footer {
467
+ display: block;
468
+ font-size: 80%;
469
+ color: #6c757d;
470
+ }
471
+
472
+ .w3eden .blockquote-footer::before {
473
+ content: "\2014\00A0";
474
+ }
475
+
476
+ .w3eden .img-fluid {
477
+ max-width: 100%;
478
+ height: auto;
479
+ }
480
+
481
+ .w3eden .img-thumbnail {
482
+ padding: 0.25rem;
483
+ background-color: #fff;
484
+ border: 1px solid #dee2e6;
485
+ border-radius: 0.25rem;
486
+ max-width: 100%;
487
+ height: auto;
488
+ }
489
+
490
+ .w3eden .figure {
491
+ display: inline-block;
492
+ }
493
+
494
+ .w3eden .figure-img {
495
+ margin-bottom: 0.5rem;
496
+ line-height: 1;
497
+ }
498
+
499
+ .w3eden .figure-caption {
500
+ font-size: 90%;
501
+ color: #6c757d;
502
+ }
503
+
504
+ .w3eden code {
505
+ font-size: 87.5%;
506
+ color: #e83e8c;
507
+ word-wrap: break-word;
508
+ }
509
+
510
+ .w3eden a > code {
511
+ color: inherit;
512
+ }
513
+
514
+ .w3eden kbd {
515
+ padding: 0.2rem 0.4rem;
516
+ font-size: 87.5%;
517
+ color: #fff;
518
+ background-color: #212529;
519
+ border-radius: 0.2rem;
520
+ }
521
+
522
+ .w3eden kbd kbd {
523
+ padding: 0;
524
+ font-size: 100%;
525
+ font-weight: 700;
526
+ }
527
+
528
+ .w3eden pre {
529
+ display: block;
530
+ font-size: 87.5%;
531
+ color: #212529;
532
+ }
533
+
534
+ .w3eden pre code {
535
+ font-size: inherit;
536
+ color: inherit;
537
+ word-break: normal;
538
+ }
539
+
540
+ .w3eden .pre-scrollable {
541
+ max-height: 340px;
542
+ overflow-y: scroll;
543
+ }
544
+
545
+ .w3eden .container {
546
+ width: 100%;
547
+ padding-right: 15px;
548
+ padding-left: 15px;
549
+ margin-right: auto;
550
+ margin-left: auto;
551
+ }
552
+
553
+ @media (min-width: 576px) {
554
+ .w3eden .container {
555
+ max-width: 540px;
556
+ }
557
+ }
558
+
559
+ @media (min-width: 768px) {
560
+ .w3eden .container {
561
+ max-width: 720px;
562
+ }
563
+ }
564
+
565
+ @media (min-width: 992px) {
566
+ .w3eden .container {
567
+ max-width: 960px;
568
+ }
569
+ }
570
+
571
+ @media (min-width: 1200px) {
572
+ .w3eden .container {
573
+ max-width: 1140px;
574
+ }
575
+ }
576
+
577
+ .w3eden .container-fluid, .w3eden .container-sm, .w3eden .container-md, .w3eden .container-lg, .w3eden .container-xl {
578
+ width: 100%;
579
+ padding-right: 15px;
580
+ padding-left: 15px;
581
+ margin-right: auto;
582
+ margin-left: auto;
583
+ }
584
+
585
+ @media (min-width: 576px) {
586
+ .w3eden .container, .w3eden .container-sm {
587
+ max-width: 540px;
588
+ }
589
+ }
590
+
591
+ @media (min-width: 768px) {
592
+ .w3eden .container, .w3eden .container-sm, .w3eden .container-md {
593
+ max-width: 720px;
594
+ }
595
+ }
596
+
597
+ @media (min-width: 992px) {
598
+ .w3eden .container, .w3eden .container-sm, .w3eden .container-md, .w3eden .container-lg {
599
+ max-width: 960px;
600
+ }
601
+ }
602
+
603
+ @media (min-width: 1200px) {
604
+ .w3eden .container, .w3eden .container-sm, .w3eden .container-md, .w3eden .container-lg, .w3eden .container-xl {
605
+ max-width: 1140px;
606
+ }
607
+ }
608
+
609
+ .w3eden .row {
610
+ display: -ms-flexbox;
611
+ display: flex;
612
+ -ms-flex-wrap: wrap;
613
+ flex-wrap: wrap;
614
+ margin-right: -15px;
615
+ margin-left: -15px;
616
+ }
617
+
618
+ .w3eden .no-gutters {
619
+ margin-right: 0;
620
+ margin-left: 0;
621
+ }
622
+
623
+ .w3eden .no-gutters > .col,
624
+ .w3eden .no-gutters > [class*="col-"] {
625
+ padding-right: 0;
626
+ padding-left: 0;
627
+ }
628
+
629
+ .w3eden .col-1, .w3eden .col-2, .w3eden .col-3, .w3eden .col-4, .w3eden .col-5, .w3eden .col-6, .w3eden .col-7, .w3eden .col-8, .w3eden .col-9, .w3eden .col-10, .w3eden .col-11, .w3eden .col-12, .w3eden .col,
630
+ .w3eden .col-auto, .w3eden .col-sm-1, .w3eden .col-sm-2, .w3eden .col-sm-3, .w3eden .col-sm-4, .w3eden .col-sm-5, .w3eden .col-sm-6, .w3eden .col-sm-7, .w3eden .col-sm-8, .w3eden .col-sm-9, .w3eden .col-sm-10, .w3eden .col-sm-11, .w3eden .col-sm-12, .w3eden .col-sm,
631
+ .w3eden .col-sm-auto, .w3eden .col-md-1, .w3eden .col-md-2, .w3eden .col-md-3, .w3eden .col-md-4, .w3eden .col-md-5, .w3eden .col-md-6, .w3eden .col-md-7, .w3eden .col-md-8, .w3eden .col-md-9, .w3eden .col-md-10, .w3eden .col-md-11, .w3eden .col-md-12, .w3eden .col-md,
632
+ .w3eden .col-md-auto, .w3eden .col-lg-1, .w3eden .col-lg-2, .w3eden .col-lg-3, .w3eden .col-lg-4, .w3eden .col-lg-5, .w3eden .col-lg-6, .w3eden .col-lg-7, .w3eden .col-lg-8, .w3eden .col-lg-9, .w3eden .col-lg-10, .w3eden .col-lg-11, .w3eden .col-lg-12, .w3eden .col-lg,
633
+ .w3eden .col-lg-auto, .w3eden .col-xl-1, .w3eden .col-xl-2, .w3eden .col-xl-3, .w3eden .col-xl-4, .w3eden .col-xl-5, .w3eden .col-xl-6, .w3eden .col-xl-7, .w3eden .col-xl-8, .w3eden .col-xl-9, .w3eden .col-xl-10, .w3eden .col-xl-11, .w3eden .col-xl-12, .w3eden .col-xl,
634
+ .w3eden .col-xl-auto {
635
+ position: relative;
636
+ width: 100%;
637
+ padding-right: 15px;
638
+ padding-left: 15px;
639
+ }
640
+
641
+ .w3eden .col {
642
+ -ms-flex-preferred-size: 0;
643
+ flex-basis: 0;
644
+ -ms-flex-positive: 1;
645
+ flex-grow: 1;
646
+ max-width: 100%;
647
+ }
648
+
649
+ .w3eden .row-cols-1 > * {
650
+ -ms-flex: 0 0 100%;
651
+ flex: 0 0 100%;
652
+ max-width: 100%;
653
+ }
654
+
655
+ .w3eden .row-cols-2 > * {
656
+ -ms-flex: 0 0 50%;
657
+ flex: 0 0 50%;
658
+ max-width: 50%;
659
+ }
660
+
661
+ .w3eden .row-cols-3 > * {
662
+ -ms-flex: 0 0 33.333333%;
663
+ flex: 0 0 33.333333%;
664
+ max-width: 33.333333%;
665
+ }
666
+
667
+ .w3eden .row-cols-4 > * {
668
+ -ms-flex: 0 0 25%;
669
+ flex: 0 0 25%;
670
+ max-width: 25%;
671
+ }
672
+
673
+ .w3eden .row-cols-5 > * {
674
+ -ms-flex: 0 0 20%;
675
+ flex: 0 0 20%;
676
+ max-width: 20%;
677
+ }
678
+
679
+ .w3eden .row-cols-6 > * {
680
+ -ms-flex: 0 0 16.666667%;
681
+ flex: 0 0 16.666667%;
682
+ max-width: 16.666667%;
683
+ }
684
+
685
+ .w3eden .col-auto {
686
+ -ms-flex: 0 0 auto;
687
+ flex: 0 0 auto;
688
+ width: auto;
689
+ max-width: 100%;
690
+ }
691
+
692
+ .w3eden .col-1 {
693
+ -ms-flex: 0 0 8.333333%;
694
+ flex: 0 0 8.333333%;
695
+ max-width: 8.333333%;
696
+ }
697
+
698
+ .w3eden .col-2 {
699
+ -ms-flex: 0 0 16.666667%;
700
+ flex: 0 0 16.666667%;
701
+ max-width: 16.666667%;
702
+ }
703
+
704
+ .w3eden .col-3 {
705
+ -ms-flex: 0 0 25%;
706
+ flex: 0 0 25%;
707
+ max-width: 25%;
708
+ }
709
+
710
+ .w3eden .col-4 {
711
+ -ms-flex: 0 0 33.333333%;
712
+ flex: 0 0 33.333333%;
713
+ max-width: 33.333333%;
714
+ }
715
+
716
+ .w3eden .col-5 {
717
+ -ms-flex: 0 0 41.666667%;
718
+ flex: 0 0 41.666667%;
719
+ max-width: 41.666667%;
720
+ }
721
+
722
+ .w3eden .col-6 {
723
+ -ms-flex: 0 0 50%;
724
+ flex: 0 0 50%;
725
+ max-width: 50%;
726
+ }
727
+
728
+ .w3eden .col-7 {
729
+ -ms-flex: 0 0 58.333333%;
730
+ flex: 0 0 58.333333%;
731
+ max-width: 58.333333%;
732
+ }
733
+
734
+ .w3eden .col-8 {
735
+ -ms-flex: 0 0 66.666667%;
736
+ flex: 0 0 66.666667%;
737
+ max-width: 66.666667%;
738
+ }
739
+
740
+ .w3eden .col-9 {
741
+ -ms-flex: 0 0 75%;
742
+ flex: 0 0 75%;
743
+ max-width: 75%;
744
+ }
745
+
746
+ .w3eden .col-10 {
747
+ -ms-flex: 0 0 83.333333%;
748
+ flex: 0 0 83.333333%;
749
+ max-width: 83.333333%;
750
+ }
751
+
752
+ .w3eden .col-11 {
753
+ -ms-flex: 0 0 91.666667%;
754
+ flex: 0 0 91.666667%;
755
+ max-width: 91.666667%;
756
+ }
757
+
758
+ .w3eden .col-12 {
759
+ -ms-flex: 0 0 100%;
760
+ flex: 0 0 100%;
761
+ max-width: 100%;
762
+ }
763
+
764
+ .w3eden .order-first {
765
+ -ms-flex-order: -1;
766
+ order: -1;
767
+ }
768
+
769
+ .w3eden .order-last {
770
+ -ms-flex-order: 13;
771
+ order: 13;
772
+ }
773
+
774
+ .w3eden .order-0 {
775
+ -ms-flex-order: 0;
776
+ order: 0;
777
+ }
778
+
779
+ .w3eden .order-1 {
780
+ -ms-flex-order: 1;
781
+ order: 1;
782
+ }
783
+
784
+ .w3eden .order-2 {
785
+ -ms-flex-order: 2;
786
+ order: 2;
787
+ }
788
+
789
+ .w3eden .order-3 {
790
+ -ms-flex-order: 3;
791
+ order: 3;
792
+ }
793
+
794
+ .w3eden .order-4 {
795
+ -ms-flex-order: 4;
796
+ order: 4;
797
+ }
798
+
799
+ .w3eden .order-5 {
800
+ -ms-flex-order: 5;
801
+ order: 5;
802
+ }
803
+
804
+ .w3eden .order-6 {
805
+ -ms-flex-order: 6;
806
+ order: 6;
807
+ }
808
+
809
+ .w3eden .order-7 {
810
+ -ms-flex-order: 7;
811
+ order: 7;
812
+ }
813
+
814
+ .w3eden .order-8 {
815
+ -ms-flex-order: 8;
816
+ order: 8;
817
+ }
818
+
819
+ .w3eden .order-9 {
820
+ -ms-flex-order: 9;
821
+ order: 9;
822
+ }
823
+
824
+ .w3eden .order-10 {
825
+ -ms-flex-order: 10;
826
+ order: 10;
827
+ }
828
+
829
+ .w3eden .order-11 {
830
+ -ms-flex-order: 11;
831
+ order: 11;
832
+ }
833
+
834
+ .w3eden .order-12 {
835
+ -ms-flex-order: 12;
836
+ order: 12;
837
+ }
838
+
839
+ .w3eden .offset-1 {
840
+ margin-left: 8.333333%;
841
+ }
842
+
843
+ .w3eden .offset-2 {
844
+ margin-left: 16.666667%;
845
+ }
846
+
847
+ .w3eden .offset-3 {
848
+ margin-left: 25%;
849
+ }
850
+
851
+ .w3eden .offset-4 {
852
+ margin-left: 33.333333%;
853
+ }
854
+
855
+ .w3eden .offset-5 {
856
+ margin-left: 41.666667%;
857
+ }
858
+
859
+ .w3eden .offset-6 {
860
+ margin-left: 50%;
861
+ }
862
+
863
+ .w3eden .offset-7 {
864
+ margin-left: 58.333333%;
865
+ }
866
+
867
+ .w3eden .offset-8 {
868
+ margin-left: 66.666667%;
869
+ }
870
+
871
+ .w3eden .offset-9 {
872
+ margin-left: 75%;
873
+ }
874
+
875
+ .w3eden .offset-10 {
876
+ margin-left: 83.333333%;
877
+ }
878
+
879
+ .w3eden .offset-11 {
880
+ margin-left: 91.666667%;
881
+ }
882
+
883
+ @media (min-width: 576px) {
884
+ .w3eden .col-sm {
885
+ -ms-flex-preferred-size: 0;
886
+ flex-basis: 0;
887
+ -ms-flex-positive: 1;
888
+ flex-grow: 1;
889
+ max-width: 100%;
890
+ }
891
+
892
+ .w3eden .row-cols-sm-1 > * {
893
+ -ms-flex: 0 0 100%;
894
+ flex: 0 0 100%;
895
+ max-width: 100%;
896
+ }
897
+
898
+ .w3eden .row-cols-sm-2 > * {
899
+ -ms-flex: 0 0 50%;
900
+ flex: 0 0 50%;
901
+ max-width: 50%;
902
+ }
903
+
904
+ .w3eden .row-cols-sm-3 > * {
905
+ -ms-flex: 0 0 33.333333%;
906
+ flex: 0 0 33.333333%;
907
+ max-width: 33.333333%;
908
+ }
909
+
910
+ .w3eden .row-cols-sm-4 > * {
911
+ -ms-flex: 0 0 25%;
912
+ flex: 0 0 25%;
913
+ max-width: 25%;
914
+ }
915
+
916
+ .w3eden .row-cols-sm-5 > * {
917
+ -ms-flex: 0 0 20%;
918
+ flex: 0 0 20%;
919
+ max-width: 20%;
920
+ }
921
+
922
+ .w3eden .row-cols-sm-6 > * {
923
+ -ms-flex: 0 0 16.666667%;
924
+ flex: 0 0 16.666667%;
925
+ max-width: 16.666667%;
926
+ }
927
+
928
+ .w3eden .col-sm-auto {
929
+ -ms-flex: 0 0 auto;
930
+ flex: 0 0 auto;
931
+ width: auto;
932
+ max-width: 100%;
933
+ }
934
+
935
+ .w3eden .col-sm-1 {
936
+ -ms-flex: 0 0 8.333333%;
937
+ flex: 0 0 8.333333%;
938
+ max-width: 8.333333%;
939
+ }
940
+
941
+ .w3eden .col-sm-2 {
942
+ -ms-flex: 0 0 16.666667%;
943
+ flex: 0 0 16.666667%;
944
+ max-width: 16.666667%;
945
+ }
946
+
947
+ .w3eden .col-sm-3 {
948
+ -ms-flex: 0 0 25%;
949
+ flex: 0 0 25%;
950
+ max-width: 25%;
951
+ }
952
+
953
+ .w3eden .col-sm-4 {
954
+ -ms-flex: 0 0 33.333333%;
955
+ flex: 0 0 33.333333%;
956
+ max-width: 33.333333%;
957
+ }
958
+
959
+ .w3eden .col-sm-5 {
960
+ -ms-flex: 0 0 41.666667%;
961
+ flex: 0 0 41.666667%;
962
+ max-width: 41.666667%;
963
+ }
964
+
965
+ .w3eden .col-sm-6 {
966
+ -ms-flex: 0 0 50%;
967
+ flex: 0 0 50%;
968
+ max-width: 50%;
969
+ }
970
+
971
+ .w3eden .col-sm-7 {
972
+ -ms-flex: 0 0 58.333333%;
973
+ flex: 0 0 58.333333%;
974
+ max-width: 58.333333%;
975
+ }
976
+
977
+ .w3eden .col-sm-8 {
978
+ -ms-flex: 0 0 66.666667%;
979
+ flex: 0 0 66.666667%;
980
+ max-width: 66.666667%;
981
+ }
982
+
983
+ .w3eden .col-sm-9 {
984
+ -ms-flex: 0 0 75%;
985
+ flex: 0 0 75%;
986
+ max-width: 75%;
987
+ }
988
+
989
+ .w3eden .col-sm-10 {
990
+ -ms-flex: 0 0 83.333333%;
991
+ flex: 0 0 83.333333%;
992
+ max-width: 83.333333%;
993
+ }
994
+
995
+ .w3eden .col-sm-11 {
996
+ -ms-flex: 0 0 91.666667%;
997
+ flex: 0 0 91.666667%;
998
+ max-width: 91.666667%;
999
+ }
1000
+
1001
+ .w3eden .col-sm-12 {
1002
+ -ms-flex: 0 0 100%;
1003
+ flex: 0 0 100%;
1004
+ max-width: 100%;
1005
+ }
1006
+
1007
+ .w3eden .order-sm-first {
1008
+ -ms-flex-order: -1;
1009
+ order: -1;
1010
+ }
1011
+
1012
+ .w3eden .order-sm-last {
1013
+ -ms-flex-order: 13;
1014
+ order: 13;
1015
+ }
1016
+
1017
+ .w3eden .order-sm-0 {
1018
+ -ms-flex-order: 0;
1019
+ order: 0;
1020
+ }
1021
+
1022
+ .w3eden .order-sm-1 {
1023
+ -ms-flex-order: 1;
1024
+ order: 1;
1025
+ }
1026
+
1027
+ .w3eden .order-sm-2 {
1028
+ -ms-flex-order: 2;
1029
+ order: 2;
1030
+ }
1031
+
1032
+ .w3eden .order-sm-3 {
1033
+ -ms-flex-order: 3;
1034
+ order: 3;
1035
+ }
1036
+
1037
+ .w3eden .order-sm-4 {
1038
+ -ms-flex-order: 4;
1039
+ order: 4;
1040
+ }
1041
+
1042
+ .w3eden .order-sm-5 {
1043
+ -ms-flex-order: 5;
1044
+ order: 5;
1045
+ }
1046
+
1047
+ .w3eden .order-sm-6 {
1048
+ -ms-flex-order: 6;
1049
+ order: 6;
1050
+ }
1051
+
1052
+ .w3eden .order-sm-7 {
1053
+ -ms-flex-order: 7;
1054
+ order: 7;
1055
+ }
1056
+
1057
+ .w3eden .order-sm-8 {
1058
+ -ms-flex-order: 8;
1059
+ order: 8;
1060
+ }
1061
+
1062
+ .w3eden .order-sm-9 {
1063
+ -ms-flex-order: 9;
1064
+ order: 9;
1065
+ }
1066
+
1067
+ .w3eden .order-sm-10 {
1068
+ -ms-flex-order: 10;
1069
+ order: 10;
1070
+ }
1071
+
1072
+ .w3eden .order-sm-11 {
1073
+ -ms-flex-order: 11;
1074
+ order: 11;
1075
+ }
1076
+
1077
+ .w3eden .order-sm-12 {
1078
+ -ms-flex-order: 12;
1079
+ order: 12;
1080
+ }
1081
+
1082
+ .w3eden .offset-sm-0 {
1083
+ margin-left: 0;
1084
+ }
1085
+
1086
+ .w3eden .offset-sm-1 {
1087
+ margin-left: 8.333333%;
1088
+ }
1089
+
1090
+ .w3eden .offset-sm-2 {
1091
+ margin-left: 16.666667%;
1092
+ }
1093
+
1094
+ .w3eden .offset-sm-3 {
1095
+ margin-left: 25%;
1096
+ }
1097
+
1098
+ .w3eden .offset-sm-4 {
1099
+ margin-left: 33.333333%;
1100
+ }
1101
+
1102
+ .w3eden .offset-sm-5 {
1103
+ margin-left: 41.666667%;
1104
+ }
1105
+
1106
+ .w3eden .offset-sm-6 {
1107
+ margin-left: 50%;
1108
+ }
1109
+
1110
+ .w3eden .offset-sm-7 {
1111
+ margin-left: 58.333333%;
1112
+ }
1113
+
1114
+ .w3eden .offset-sm-8 {
1115
+ margin-left: 66.666667%;
1116
+ }
1117
+
1118
+ .w3eden .offset-sm-9 {
1119
+ margin-left: 75%;
1120
+ }
1121
+
1122
+ .w3eden .offset-sm-10 {
1123
+ margin-left: 83.333333%;
1124
+ }
1125
+
1126
+ .w3eden .offset-sm-11 {
1127
+ margin-left: 91.666667%;
1128
+ }
1129
+ }
1130
+
1131
+ @media (min-width: 768px) {
1132
+ .w3eden .col-md {
1133
+ -ms-flex-preferred-size: 0;
1134
+ flex-basis: 0;
1135
+ -ms-flex-positive: 1;
1136
+ flex-grow: 1;
1137
+ max-width: 100%;
1138
+ }
1139
+
1140
+ .w3eden .row-cols-md-1 > * {
1141
+ -ms-flex: 0 0 100%;
1142
+ flex: 0 0 100%;
1143
+ max-width: 100%;
1144
+ }
1145
+
1146
+ .w3eden .row-cols-md-2 > * {
1147
+ -ms-flex: 0 0 50%;
1148
+ flex: 0 0 50%;
1149
+ max-width: 50%;
1150
+ }
1151
+
1152
+ .w3eden .row-cols-md-3 > * {
1153
+ -ms-flex: 0 0 33.333333%;
1154
+ flex: 0 0 33.333333%;
1155
+ max-width: 33.333333%;
1156
+ }
1157
+
1158
+ .w3eden .row-cols-md-4 > * {
1159
+ -ms-flex: 0 0 25%;
1160
+ flex: 0 0 25%;
1161
+ max-width: 25%;
1162
+ }
1163
+
1164
+ .w3eden .row-cols-md-5 > * {
1165
+ -ms-flex: 0 0 20%;
1166
+ flex: 0 0 20%;
1167
+ max-width: 20%;
1168
+ }
1169
+
1170
+ .w3eden .row-cols-md-6 > * {
1171
+ -ms-flex: 0 0 16.666667%;
1172
+ flex: 0 0 16.666667%;
1173
+ max-width: 16.666667%;
1174
+ }
1175
+
1176
+ .w3eden .col-md-auto {
1177
+ -ms-flex: 0 0 auto;
1178
+ flex: 0 0 auto;
1179
+ width: auto;
1180
+ max-width: 100%;
1181
+ }
1182
+
1183
+ .w3eden .col-md-1 {
1184
+ -ms-flex: 0 0 8.333333%;
1185
+ flex: 0 0 8.333333%;
1186
+ max-width: 8.333333%;
1187
+ }
1188
+
1189
+ .w3eden .col-md-2 {
1190
+ -ms-flex: 0 0 16.666667%;
1191
+ flex: 0 0 16.666667%;
1192
+ max-width: 16.666667%;
1193
+ }
1194
+
1195
+ .w3eden .col-md-3 {
1196
+ -ms-flex: 0 0 25%;
1197
+ flex: 0 0 25%;
1198
+ max-width: 25%;
1199
+ }
1200
+
1201
+ .w3eden .col-md-4 {
1202
+ -ms-flex: 0 0 33.333333%;
1203
+ flex: 0 0 33.333333%;
1204
+ max-width: 33.333333%;
1205
+ }
1206
+
1207
+ .w3eden .col-md-5 {
1208
+ -ms-flex: 0 0 41.666667%;
1209
+ flex: 0 0 41.666667%;
1210
+ max-width: 41.666667%;
1211
+ }
1212
+
1213
+ .w3eden .col-md-6 {
1214
+ -ms-flex: 0 0 50%;
1215
+ flex: 0 0 50%;
1216
+ max-width: 50%;
1217
+ }
1218
+
1219
+ .w3eden .col-md-7 {
1220
+ -ms-flex: 0 0 58.333333%;
1221
+ flex: 0 0 58.333333%;
1222
+ max-width: 58.333333%;
1223
+ }
1224
+
1225
+ .w3eden .col-md-8 {
1226
+ -ms-flex: 0 0 66.666667%;
1227
+ flex: 0 0 66.666667%;
1228
+ max-width: 66.666667%;
1229
+ }
1230
+
1231
+ .w3eden .col-md-9 {
1232
+ -ms-flex: 0 0 75%;
1233
+ flex: 0 0 75%;
1234
+ max-width: 75%;
1235
+ }
1236
+
1237
+ .w3eden .col-md-10 {
1238
+ -ms-flex: 0 0 83.333333%;
1239
+ flex: 0 0 83.333333%;
1240
+ max-width: 83.333333%;
1241
+ }
1242
+
1243
+ .w3eden .col-md-11 {
1244
+ -ms-flex: 0 0 91.666667%;
1245
+ flex: 0 0 91.666667%;
1246
+ max-width: 91.666667%;
1247
+ }
1248
+
1249
+ .w3eden .col-md-12 {
1250
+ -ms-flex: 0 0 100%;
1251
+ flex: 0 0 100%;
1252
+ max-width: 100%;
1253
+ }
1254
+
1255
+ .w3eden .order-md-first {
1256
+ -ms-flex-order: -1;
1257
+ order: -1;
1258
+ }
1259
+
1260
+ .w3eden .order-md-last {
1261
+ -ms-flex-order: 13;
1262
+ order: 13;
1263
+ }
1264
+
1265
+ .w3eden .order-md-0 {
1266
+ -ms-flex-order: 0;
1267
+ order: 0;
1268
+ }
1269
+
1270
+ .w3eden .order-md-1 {
1271
+ -ms-flex-order: 1;
1272
+ order: 1;
1273
+ }
1274
+
1275
+ .w3eden .order-md-2 {
1276
+ -ms-flex-order: 2;
1277
+ order: 2;
1278
+ }
1279
+
1280
+ .w3eden .order-md-3 {
1281
+ -ms-flex-order: 3;
1282
+ order: 3;
1283
+ }
1284
+
1285
+ .w3eden .order-md-4 {
1286
+ -ms-flex-order: 4;
1287
+ order: 4;
1288
+ }
1289
+
1290
+ .w3eden .order-md-5 {
1291
+ -ms-flex-order: 5;
1292
+ order: 5;
1293
+ }
1294
+
1295
+ .w3eden .order-md-6 {
1296
+ -ms-flex-order: 6;
1297
+ order: 6;
1298
+ }
1299
+
1300
+ .w3eden .order-md-7 {
1301
+ -ms-flex-order: 7;
1302
+ order: 7;
1303
+ }
1304
+
1305
+ .w3eden .order-md-8 {
1306
+ -ms-flex-order: 8;
1307
+ order: 8;
1308
+ }
1309
+
1310
+ .w3eden .order-md-9 {
1311
+ -ms-flex-order: 9;
1312
+ order: 9;
1313
+ }
1314
+
1315
+ .w3eden .order-md-10 {
1316
+ -ms-flex-order: 10;
1317
+ order: 10;
1318
+ }
1319
+
1320
+ .w3eden .order-md-11 {
1321
+ -ms-flex-order: 11;
1322
+ order: 11;
1323
+ }
1324
+
1325
+ .w3eden .order-md-12 {
1326
+ -ms-flex-order: 12;
1327
+ order: 12;
1328
+ }
1329
+
1330
+ .w3eden .offset-md-0 {
1331
+ margin-left: 0;
1332
+ }
1333
+
1334
+ .w3eden .offset-md-1 {
1335
+ margin-left: 8.333333%;
1336
+ }
1337
+
1338
+ .w3eden .offset-md-2 {
1339
+ margin-left: 16.666667%;
1340
+ }
1341
+
1342
+ .w3eden .offset-md-3 {
1343
+ margin-left: 25%;
1344
+ }
1345
+
1346
+ .w3eden .offset-md-4 {
1347
+ margin-left: 33.333333%;
1348
+ }
1349
+
1350
+ .w3eden .offset-md-5 {
1351
+ margin-left: 41.666667%;
1352
+ }
1353
+
1354
+ .w3eden .offset-md-6 {
1355
+ margin-left: 50%;
1356
+ }
1357
+
1358
+ .w3eden .offset-md-7 {
1359
+ margin-left: 58.333333%;
1360
+ }
1361
+
1362
+ .w3eden .offset-md-8 {
1363
+ margin-left: 66.666667%;
1364
+ }
1365
+
1366
+ .w3eden .offset-md-9 {
1367
+ margin-left: 75%;
1368
+ }
1369
+
1370
+ .w3eden .offset-md-10 {
1371
+ margin-left: 83.333333%;
1372
+ }
1373
+
1374
+ .w3eden .offset-md-11 {
1375
+ margin-left: 91.666667%;
1376
+ }
1377
+ }
1378
+
1379
+ @media (min-width: 992px) {
1380
+ .w3eden .col-lg {
1381
+ -ms-flex-preferred-size: 0;
1382
+ flex-basis: 0;
1383
+ -ms-flex-positive: 1;
1384
+ flex-grow: 1;
1385
+ max-width: 100%;
1386
+ }
1387
+
1388
+ .w3eden .row-cols-lg-1 > * {
1389
+ -ms-flex: 0 0 100%;
1390
+ flex: 0 0 100%;
1391
+ max-width: 100%;
1392
+ }
1393
+
1394
+ .w3eden .row-cols-lg-2 > * {
1395
+ -ms-flex: 0 0 50%;
1396
+ flex: 0 0 50%;
1397
+ max-width: 50%;
1398
+ }
1399
+
1400
+ .w3eden .row-cols-lg-3 > * {
1401
+ -ms-flex: 0 0 33.333333%;
1402
+ flex: 0 0 33.333333%;
1403
+ max-width: 33.333333%;
1404
+ }
1405
+
1406
+ .w3eden .row-cols-lg-4 > * {
1407
+ -ms-flex: 0 0 25%;
1408
+ flex: 0 0 25%;
1409
+ max-width: 25%;
1410
+ }
1411
+
1412
+ .w3eden .row-cols-lg-5 > * {
1413
+ -ms-flex: 0 0 20%;
1414
+ flex: 0 0 20%;
1415
+ max-width: 20%;
1416
+ }
1417
+
1418
+ .w3eden .row-cols-lg-6 > * {
1419
+ -ms-flex: 0 0 16.666667%;
1420
+ flex: 0 0 16.666667%;
1421
+ max-width: 16.666667%;
1422
+ }
1423
+
1424
+ .w3eden .col-lg-auto {
1425
+ -ms-flex: 0 0 auto;
1426
+ flex: 0 0 auto;
1427
+ width: auto;
1428
+ max-width: 100%;
1429
+ }
1430
+
1431
+ .w3eden .col-lg-1 {
1432
+ -ms-flex: 0 0 8.333333%;
1433
+ flex: 0 0 8.333333%;
1434
+ max-width: 8.333333%;
1435
+ }
1436
+
1437
+ .w3eden .col-lg-2 {
1438
+ -ms-flex: 0 0 16.666667%;
1439
+ flex: 0 0 16.666667%;
1440
+ max-width: 16.666667%;
1441
+ }
1442
+
1443
+ .w3eden .col-lg-3 {
1444
+ -ms-flex: 0 0 25%;
1445
+ flex: 0 0 25%;
1446
+ max-width: 25%;
1447
+ }
1448
+
1449
+ .w3eden .col-lg-4 {
1450
+ -ms-flex: 0 0 33.333333%;
1451
+ flex: 0 0 33.333333%;
1452
+ max-width: 33.333333%;
1453
+ }
1454
+
1455
+ .w3eden .col-lg-5 {
1456
+ -ms-flex: 0 0 41.666667%;
1457
+ flex: 0 0 41.666667%;
1458
+ max-width: 41.666667%;
1459
+ }
1460
+
1461
+ .w3eden .col-lg-6 {
1462
+ -ms-flex: 0 0 50%;
1463
+ flex: 0 0 50%;
1464
+ max-width: 50%;
1465
+ }
1466
+
1467
+ .w3eden .col-lg-7 {
1468
+ -ms-flex: 0 0 58.333333%;
1469
+ flex: 0 0 58.333333%;
1470
+ max-width: 58.333333%;
1471
+ }
1472
+
1473
+ .w3eden .col-lg-8 {
1474
+ -ms-flex: 0 0 66.666667%;
1475
+ flex: 0 0 66.666667%;
1476
+ max-width: 66.666667%;
1477
+ }
1478
+
1479
+ .w3eden .col-lg-9 {
1480
+ -ms-flex: 0 0 75%;
1481
+ flex: 0 0 75%;
1482
+ max-width: 75%;
1483
+ }
1484
+
1485
+ .w3eden .col-lg-10 {
1486
+ -ms-flex: 0 0 83.333333%;
1487
+ flex: 0 0 83.333333%;
1488
+ max-width: 83.333333%;
1489
+ }
1490
+
1491
+ .w3eden .col-lg-11 {
1492
+ -ms-flex: 0 0 91.666667%;
1493
+ flex: 0 0 91.666667%;
1494
+ max-width: 91.666667%;
1495
+ }
1496
+
1497
+ .w3eden .col-lg-12 {
1498
+ -ms-flex: 0 0 100%;
1499
+ flex: 0 0 100%;
1500
+ max-width: 100%;
1501
+ }
1502
+
1503
+ .w3eden .order-lg-first {
1504
+ -ms-flex-order: -1;
1505
+ order: -1;
1506
+ }
1507
+
1508
+ .w3eden .order-lg-last {
1509
+ -ms-flex-order: 13;
1510
+ order: 13;
1511
+ }
1512
+
1513
+ .w3eden .order-lg-0 {
1514
+ -ms-flex-order: 0;
1515
+ order: 0;
1516
+ }
1517
+
1518
+ .w3eden .order-lg-1 {
1519
+ -ms-flex-order: 1;
1520
+ order: 1;
1521
+ }
1522
+
1523
+ .w3eden .order-lg-2 {
1524
+ -ms-flex-order: 2;
1525
+ order: 2;
1526
+ }
1527
+
1528
+ .w3eden .order-lg-3 {
1529
+ -ms-flex-order: 3;
1530
+ order: 3;
1531
+ }
1532
+
1533
+ .w3eden .order-lg-4 {
1534
+ -ms-flex-order: 4;
1535
+ order: 4;
1536
+ }
1537
+
1538
+ .w3eden .order-lg-5 {
1539
+ -ms-flex-order: 5;
1540
+ order: 5;
1541
+ }
1542
+
1543
+ .w3eden .order-lg-6 {
1544
+ -ms-flex-order: 6;
1545
+ order: 6;
1546
+ }
1547
+
1548
+ .w3eden .order-lg-7 {
1549
+ -ms-flex-order: 7;
1550
+ order: 7;
1551
+ }
1552
+
1553
+ .w3eden .order-lg-8 {
1554
+ -ms-flex-order: 8;
1555
+ order: 8;
1556
+ }
1557
+
1558
+ .w3eden .order-lg-9 {
1559
+ -ms-flex-order: 9;
1560
+ order: 9;
1561
+ }
1562
+
1563
+ .w3eden .order-lg-10 {
1564
+ -ms-flex-order: 10;
1565
+ order: 10;
1566
+ }
1567
+
1568
+ .w3eden .order-lg-11 {
1569
+ -ms-flex-order: 11;
1570
+ order: 11;
1571
+ }
1572
+
1573
+ .w3eden .order-lg-12 {
1574
+ -ms-flex-order: 12;
1575
+ order: 12;
1576
+ }
1577
+
1578
+ .w3eden .offset-lg-0 {
1579
+ margin-left: 0;
1580
+ }
1581
+
1582
+ .w3eden .offset-lg-1 {
1583
+ margin-left: 8.333333%;
1584
+ }
1585
+
1586
+ .w3eden .offset-lg-2 {
1587
+ margin-left: 16.666667%;
1588
+ }
1589
+
1590
+ .w3eden .offset-lg-3 {
1591
+ margin-left: 25%;
1592
+ }
1593
+
1594
+ .w3eden .offset-lg-4 {
1595
+ margin-left: 33.333333%;
1596
+ }
1597
+
1598
+ .w3eden .offset-lg-5 {
1599
+ margin-left: 41.666667%;
1600
+ }
1601
+
1602
+ .w3eden .offset-lg-6 {
1603
+ margin-left: 50%;
1604
+ }
1605
+
1606
+ .w3eden .offset-lg-7 {
1607
+ margin-left: 58.333333%;
1608
+ }
1609
+
1610
+ .w3eden .offset-lg-8 {
1611
+ margin-left: 66.666667%;
1612
+ }
1613
+
1614
+ .w3eden .offset-lg-9 {
1615
+ margin-left: 75%;
1616
+ }
1617
+
1618
+ .w3eden .offset-lg-10 {
1619
+ margin-left: 83.333333%;
1620
+ }
1621
+
1622
+ .w3eden .offset-lg-11 {
1623
+ margin-left: 91.666667%;
1624
+ }
1625
+ }
1626
+
1627
+ @media (min-width: 1200px) {
1628
+ .w3eden .col-xl {
1629
+ -ms-flex-preferred-size: 0;
1630
+ flex-basis: 0;
1631
+ -ms-flex-positive: 1;
1632
+ flex-grow: 1;
1633
+ max-width: 100%;
1634
+ }
1635
+
1636
+ .w3eden .row-cols-xl-1 > * {
1637
+ -ms-flex: 0 0 100%;
1638
+ flex: 0 0 100%;
1639
+ max-width: 100%;
1640
+ }
1641
+
1642
+ .w3eden .row-cols-xl-2 > * {
1643
+ -ms-flex: 0 0 50%;
1644
+ flex: 0 0 50%;
1645
+ max-width: 50%;
1646
+ }
1647
+
1648
+ .w3eden .row-cols-xl-3 > * {
1649
+ -ms-flex: 0 0 33.333333%;
1650
+ flex: 0 0 33.333333%;
1651
+ max-width: 33.333333%;
1652
+ }
1653
+
1654
+ .w3eden .row-cols-xl-4 > * {
1655
+ -ms-flex: 0 0 25%;
1656
+ flex: 0 0 25%;
1657
+ max-width: 25%;
1658
+ }
1659
+
1660
+ .w3eden .row-cols-xl-5 > * {
1661
+ -ms-flex: 0 0 20%;
1662
+ flex: 0 0 20%;
1663
+ max-width: 20%;
1664
+ }
1665
+
1666
+ .w3eden .row-cols-xl-6 > * {
1667
+ -ms-flex: 0 0 16.666667%;
1668
+ flex: 0 0 16.666667%;
1669
+ max-width: 16.666667%;
1670
+ }
1671
+
1672
+ .w3eden .col-xl-auto {
1673
+ -ms-flex: 0 0 auto;
1674
+ flex: 0 0 auto;
1675
+ width: auto;
1676
+ max-width: 100%;
1677
+ }
1678
+
1679
+ .w3eden .col-xl-1 {
1680
+ -ms-flex: 0 0 8.333333%;
1681
+ flex: 0 0 8.333333%;
1682
+ max-width: 8.333333%;
1683
+ }
1684
+
1685
+ .w3eden .col-xl-2 {
1686
+ -ms-flex: 0 0 16.666667%;
1687
+ flex: 0 0 16.666667%;
1688
+ max-width: 16.666667%;
1689
+ }
1690
+
1691
+ .w3eden .col-xl-3 {
1692
+ -ms-flex: 0 0 25%;
1693
+ flex: 0 0 25%;
1694
+ max-width: 25%;
1695
+ }
1696
+
1697
+ .w3eden .col-xl-4 {
1698
+ -ms-flex: 0 0 33.333333%;
1699
+ flex: 0 0 33.333333%;
1700
+ max-width: 33.333333%;
1701
+ }
1702
+
1703
+ .w3eden .col-xl-5 {
1704
+ -ms-flex: 0 0 41.666667%;
1705
+ flex: 0 0 41.666667%;
1706
+ max-width: 41.666667%;
1707
+ }
1708
+
1709
+ .w3eden .col-xl-6 {
1710
+ -ms-flex: 0 0 50%;
1711
+ flex: 0 0 50%;
1712
+ max-width: 50%;
1713
+ }
1714
+
1715
+ .w3eden .col-xl-7 {
1716
+ -ms-flex: 0 0 58.333333%;
1717
+ flex: 0 0 58.333333%;
1718
+ max-width: 58.333333%;
1719
+ }
1720
+
1721
+ .w3eden .col-xl-8 {
1722
+ -ms-flex: 0 0 66.666667%;
1723
+ flex: 0 0 66.666667%;
1724
+ max-width: 66.666667%;
1725
+ }
1726
+
1727
+ .w3eden .col-xl-9 {
1728
+ -ms-flex: 0 0 75%;
1729
+ flex: 0 0 75%;
1730
+ max-width: 75%;
1731
+ }
1732
+
1733
+ .w3eden .col-xl-10 {
1734
+ -ms-flex: 0 0 83.333333%;
1735
+ flex: 0 0 83.333333%;
1736
+ max-width: 83.333333%;
1737
+ }
1738
+
1739
+ .w3eden .col-xl-11 {
1740
+ -ms-flex: 0 0 91.666667%;
1741
+ flex: 0 0 91.666667%;
1742
+ max-width: 91.666667%;
1743
+ }
1744
+
1745
+ .w3eden .col-xl-12 {
1746
+ -ms-flex: 0 0 100%;
1747
+ flex: 0 0 100%;
1748
+ max-width: 100%;
1749
+ }
1750
+
1751
+ .w3eden .order-xl-first {
1752
+ -ms-flex-order: -1;
1753
+ order: -1;
1754
+ }
1755
+
1756
+ .w3eden .order-xl-last {
1757
+ -ms-flex-order: 13;
1758
+ order: 13;
1759
+ }
1760
+
1761
+ .w3eden .order-xl-0 {
1762
+ -ms-flex-order: 0;
1763
+ order: 0;
1764
+ }
1765
+
1766
+ .w3eden .order-xl-1 {
1767
+ -ms-flex-order: 1;
1768
+ order: 1;
1769
+ }
1770
+
1771
+ .w3eden .order-xl-2 {
1772
+ -ms-flex-order: 2;
1773
+ order: 2;
1774
+ }
1775
+
1776
+ .w3eden .order-xl-3 {
1777
+ -ms-flex-order: 3;
1778
+ order: 3;
1779
+ }
1780
+
1781
+ .w3eden .order-xl-4 {
1782
+ -ms-flex-order: 4;
1783
+ order: 4;
1784
+ }
1785
+
1786
+ .w3eden .order-xl-5 {
1787
+ -ms-flex-order: 5;
1788
+ order: 5;
1789
+ }
1790
+
1791
+ .w3eden .order-xl-6 {
1792
+ -ms-flex-order: 6;
1793
+ order: 6;
1794
+ }
1795
+
1796
+ .w3eden .order-xl-7 {
1797
+ -ms-flex-order: 7;
1798
+ order: 7;
1799
+ }
1800
+
1801
+ .w3eden .order-xl-8 {
1802
+ -ms-flex-order: 8;
1803
+ order: 8;
1804
+ }
1805
+
1806
+ .w3eden .order-xl-9 {
1807
+ -ms-flex-order: 9;
1808
+ order: 9;
1809
+ }
1810
+
1811
+ .w3eden .order-xl-10 {
1812
+ -ms-flex-order: 10;
1813
+ order: 10;
1814
+ }
1815
+
1816
+ .w3eden .order-xl-11 {
1817
+ -ms-flex-order: 11;
1818
+ order: 11;
1819
+ }
1820
+
1821
+ .w3eden .order-xl-12 {
1822
+ -ms-flex-order: 12;
1823
+ order: 12;
1824
+ }
1825
+
1826
+ .w3eden .offset-xl-0 {
1827
+ margin-left: 0;
1828
+ }
1829
+
1830
+ .w3eden .offset-xl-1 {
1831
+ margin-left: 8.333333%;
1832
+ }
1833
+
1834
+ .w3eden .offset-xl-2 {
1835
+ margin-left: 16.666667%;
1836
+ }
1837
+
1838
+ .w3eden .offset-xl-3 {
1839
+ margin-left: 25%;
1840
+ }
1841
+
1842
+ .w3eden .offset-xl-4 {
1843
+ margin-left: 33.333333%;
1844
+ }
1845
+
1846
+ .w3eden .offset-xl-5 {
1847
+ margin-left: 41.666667%;
1848
+ }
1849
+
1850
+ .w3eden .offset-xl-6 {
1851
+ margin-left: 50%;
1852
+ }
1853
+
1854
+ .w3eden .offset-xl-7 {
1855
+ margin-left: 58.333333%;
1856
+ }
1857
+
1858
+ .w3eden .offset-xl-8 {
1859
+ margin-left: 66.666667%;
1860
+ }
1861
+
1862
+ .w3eden .offset-xl-9 {
1863
+ margin-left: 75%;
1864
+ }
1865
+
1866
+ .w3eden .offset-xl-10 {
1867
+ margin-left: 83.333333%;
1868
+ }
1869
+
1870
+ .w3eden .offset-xl-11 {
1871
+ margin-left: 91.666667%;
1872
+ }
1873
+ }
1874
+
1875
+ .w3eden .table {
1876
+ width: 100%;
1877
+ margin-bottom: 1rem;
1878
+ color: #212529;
1879
+ }
1880
+
1881
+ .w3eden .table th,
1882
+ .w3eden .table td {
1883
+ padding: 0.75rem;
1884
+ vertical-align: top;
1885
+ border-top: 1px solid #dee2e6;
1886
+ }
1887
+
1888
+ .w3eden .table thead th {
1889
+ vertical-align: bottom;
1890
+ border-bottom: 2px solid #dee2e6;
1891
+ }
1892
+
1893
+ .w3eden .table tbody + tbody {
1894
+ border-top: 2px solid #dee2e6;
1895
+ }
1896
+
1897
+ .w3eden .table-sm th,
1898
+ .w3eden .table-sm td {
1899
+ padding: 0.3rem;
1900
+ }
1901
+
1902
+ .w3eden .table-bordered {
1903
+ border: 1px solid #dee2e6;
1904
+ }
1905
+
1906
+ .w3eden .table-bordered th,
1907
+ .w3eden .table-bordered td {
1908
+ border: 1px solid #dee2e6;
1909
+ }
1910
+
1911
+ .w3eden .table-bordered thead th,
1912
+ .w3eden .table-bordered thead td {
1913
+ border-bottom-width: 2px;
1914
+ }
1915
+
1916
+ .w3eden .table-borderless th,
1917
+ .w3eden .table-borderless td,
1918
+ .w3eden .table-borderless thead th,
1919
+ .w3eden .table-borderless tbody + tbody {
1920
+ border: 0;
1921
+ }
1922
+
1923
+ .w3eden .table-striped tbody tr:nth-of-type(odd) {
1924
+ background-color: rgba(0, 0, 0, 0.05);
1925
+ }
1926
+
1927
+ .w3eden .table-hover tbody tr:hover {
1928
+ color: #212529;
1929
+ background-color: rgba(0, 0, 0, 0.075);
1930
+ }
1931
+
1932
+ .w3eden .table-primary,
1933
+ .w3eden .table-primary > th,
1934
+ .w3eden .table-primary > td {
1935
+ background-color: #b8daff;
1936
+ }
1937
+
1938
+ .w3eden .table-primary th,
1939
+ .w3eden .table-primary td,
1940
+ .w3eden .table-primary thead th,
1941
+ .w3eden .table-primary tbody + tbody {
1942
+ border-color: #7abaff;
1943
+ }
1944
+
1945
+ .w3eden .table-hover .table-primary:hover {
1946
+ background-color: #9fcdff;
1947
+ }
1948
+
1949
+ .w3eden .table-hover .table-primary:hover > td,
1950
+ .w3eden .table-hover .table-primary:hover > th {
1951
+ background-color: #9fcdff;
1952
+ }
1953
+
1954
+ .w3eden .table-secondary,
1955
+ .w3eden .table-secondary > th,
1956
+ .w3eden .table-secondary > td {
1957
+ background-color: #d6d8db;
1958
+ }
1959
+
1960
+ .w3eden .table-secondary th,
1961
+ .w3eden .table-secondary td,
1962
+ .w3eden .table-secondary thead th,
1963
+ .w3eden .table-secondary tbody + tbody {
1964
+ border-color: #b3b7bb;
1965
+ }
1966
+
1967
+ .w3eden .table-hover .table-secondary:hover {
1968
+ background-color: #c8cbcf;
1969
+ }
1970
+
1971
+ .w3eden .table-hover .table-secondary:hover > td,
1972
+ .w3eden .table-hover .table-secondary:hover > th {
1973
+ background-color: #c8cbcf;
1974
+ }
1975
+
1976
+ .w3eden .table-success,
1977
+ .w3eden .table-success > th,
1978
+ .w3eden .table-success > td {
1979
+ background-color: #c3e6cb;
1980
+ }
1981
+
1982
+ .w3eden .table-success th,
1983
+ .w3eden .table-success td,
1984
+ .w3eden .table-success thead th,
1985
+ .w3eden .table-success tbody + tbody {
1986
+ border-color: #8fd19e;
1987
+ }
1988
+
1989
+ .w3eden .table-hover .table-success:hover {
1990
+ background-color: #b1dfbb;
1991
+ }
1992
+
1993
+ .w3eden .table-hover .table-success:hover > td,
1994
+ .w3eden .table-hover .table-success:hover > th {
1995
+ background-color: #b1dfbb;
1996
+ }
1997
+
1998
+ .w3eden .table-info,
1999
+ .w3eden .table-info > th,
2000
+ .w3eden .table-info > td {
2001
+ background-color: #bee5eb;
2002
+ }
2003
+
2004
+ .w3eden .table-info th,
2005
+ .w3eden .table-info td,
2006
+ .w3eden .table-info thead th,
2007
+ .w3eden .table-info tbody + tbody {
2008
+ border-color: #86cfda;
2009
+ }
2010
+
2011
+ .w3eden .table-hover .table-info:hover {
2012
+ background-color: #abdde5;
2013
+ }
2014
+
2015
+ .w3eden .table-hover .table-info:hover > td,
2016
+ .w3eden .table-hover .table-info:hover > th {
2017
+ background-color: #abdde5;
2018
+ }
2019
+
2020
+ .w3eden .table-warning,
2021
+ .w3eden .table-warning > th,
2022
+ .w3eden .table-warning > td {
2023
+ background-color: #ffeeba;
2024
+ }
2025
+
2026
+ .w3eden .table-warning th,
2027
+ .w3eden .table-warning td,
2028
+ .w3eden .table-warning thead th,
2029
+ .w3eden .table-warning tbody + tbody {
2030
+ border-color: #ffdf7e;
2031
+ }
2032
+
2033
+ .w3eden .table-hover .table-warning:hover {
2034
+ background-color: #ffe8a1;
2035
+ }
2036
+
2037
+ .w3eden .table-hover .table-warning:hover > td,
2038
+ .w3eden .table-hover .table-warning:hover > th {
2039
+ background-color: #ffe8a1;
2040
+ }
2041
+
2042
+ .w3eden .table-danger,
2043
+ .w3eden .table-danger > th,
2044
+ .w3eden .table-danger > td {
2045
+ background-color: #f5c6cb;
2046
+ }
2047
+
2048
+ .w3eden .table-danger th,
2049
+ .w3eden .table-danger td,
2050
+ .w3eden .table-danger thead th,
2051
+ .w3eden .table-danger tbody + tbody {
2052
+ border-color: #ed969e;
2053
+ }
2054
+
2055
+ .w3eden .table-hover .table-danger:hover {
2056
+ background-color: #f1b0b7;
2057
+ }
2058
+
2059
+ .w3eden .table-hover .table-danger:hover > td,
2060
+ .w3eden .table-hover .table-danger:hover > th {
2061
+ background-color: #f1b0b7;
2062
+ }
2063
+
2064
+ .w3eden .table-light,
2065
+ .w3eden .table-light > th,
2066
+ .w3eden .table-light > td {
2067
+ background-color: #fdfdfe;
2068
+ }
2069
+
2070
+ .w3eden .table-light th,
2071
+ .w3eden .table-light td,
2072
+ .w3eden .table-light thead th,
2073
+ .w3eden .table-light tbody + tbody {
2074
+ border-color: #fbfcfc;
2075
+ }
2076
+
2077
+ .w3eden .table-hover .table-light:hover {
2078
+ background-color: #ececf6;
2079
+ }
2080
+
2081
+ .w3eden .table-hover .table-light:hover > td,
2082
+ .w3eden .table-hover .table-light:hover > th {
2083
+ background-color: #ececf6;
2084
+ }
2085
+
2086
+ .w3eden .table-dark,
2087
+ .w3eden .table-dark > th,
2088
+ .w3eden .table-dark > td {
2089
+ background-color: #c6c8ca;
2090
+ }
2091
+
2092
+ .w3eden .table-dark th,
2093
+ .w3eden .table-dark td,
2094
+ .w3eden .table-dark thead th,
2095
+ .w3eden .table-dark tbody + tbody {
2096
+ border-color: #95999c;
2097
+ }
2098
+
2099
+ .w3eden .table-hover .table-dark:hover {
2100
+ background-color: #b9bbbe;
2101
+ }
2102
+
2103
+ .w3eden .table-hover .table-dark:hover > td,
2104
+ .w3eden .table-hover .table-dark:hover > th {
2105
+ background-color: #b9bbbe;
2106
+ }
2107
+
2108
+ .w3eden .table-active,
2109
+ .w3eden .table-active > th,
2110
+ .w3eden .table-active > td {
2111
+ background-color: rgba(0, 0, 0, 0.075);
2112
+ }
2113
+
2114
+ .w3eden .table-hover .table-active:hover {
2115
+ background-color: rgba(0, 0, 0, 0.075);
2116
+ }
2117
+
2118
+ .w3eden .table-hover .table-active:hover > td,
2119
+ .w3eden .table-hover .table-active:hover > th {
2120
+ background-color: rgba(0, 0, 0, 0.075);
2121
+ }
2122
+
2123
+ .w3eden .table .thead-dark th {
2124
+ color: #fff;
2125
+ background-color: #343a40;
2126
+ border-color: #454d55;
2127
+ }
2128
+
2129
+ .w3eden .table .thead-light th {
2130
+ color: #495057;
2131
+ background-color: #e9ecef;
2132
+ border-color: #dee2e6;
2133
+ }
2134
+
2135
+ .w3eden .table-dark {
2136
+ color: #fff;
2137
+ background-color: #343a40;
2138
+ }
2139
+
2140
+ .w3eden .table-dark th,
2141
+ .w3eden .table-dark td,
2142
+ .w3eden .table-dark thead th {
2143
+ border-color: #454d55;
2144
+ }
2145
+
2146
+ .w3eden .table-dark.table-bordered {
2147
+ border: 0;
2148
+ }
2149
+
2150
+ .w3eden .table-dark.table-striped tbody tr:nth-of-type(odd) {
2151
+ background-color: rgba(255, 255, 255, 0.05);
2152
+ }
2153
+
2154
+ .w3eden .table-dark.table-hover tbody tr:hover {
2155
+ color: #fff;
2156
+ background-color: rgba(255, 255, 255, 0.075);
2157
+ }
2158
+
2159
+ @media (max-width: 575.98px) {
2160
+ .w3eden .table-responsive-sm {
2161
+ display: block;
2162
+ width: 100%;
2163
+ overflow-x: auto;
2164
+ -webkit-overflow-scrolling: touch;
2165
+ }
2166
+
2167
+ .w3eden .table-responsive-sm > .table-bordered {
2168
+ border: 0;
2169
+ }
2170
+ }
2171
+
2172
+ @media (max-width: 767.98px) {
2173
+ .w3eden .table-responsive-md {
2174
+ display: block;
2175
+ width: 100%;
2176
+ overflow-x: auto;
2177
+ -webkit-overflow-scrolling: touch;
2178
+ }
2179
+
2180
+ .w3eden .table-responsive-md > .table-bordered {
2181
+ border: 0;
2182
+ }
2183
+ }
2184
+
2185
+ @media (max-width: 991.98px) {
2186
+ .w3eden .table-responsive-lg {
2187
+ display: block;
2188
+ width: 100%;
2189
+ overflow-x: auto;
2190
+ -webkit-overflow-scrolling: touch;
2191
+ }
2192
+
2193
+ .w3eden .table-responsive-lg > .table-bordered {
2194
+ border: 0;
2195
+ }
2196
+ }
2197
+
2198
+ @media (max-width: 1199.98px) {
2199
+ .w3eden .table-responsive-xl {
2200
+ display: block;
2201
+ width: 100%;
2202
+ overflow-x: auto;
2203
+ -webkit-overflow-scrolling: touch;
2204
+ }
2205
+
2206
+ .w3eden .table-responsive-xl > .table-bordered {
2207
+ border: 0;
2208
+ }
2209
+ }
2210
+
2211
+ .w3eden .table-responsive {
2212
+ display: block;
2213
+ width: 100%;
2214
+ overflow-x: auto;
2215
+ -webkit-overflow-scrolling: touch;
2216
+ }
2217
+
2218
+ .w3eden .table-responsive > .table-bordered {
2219
+ border: 0;
2220
+ }
2221
+
2222
+ .w3eden .form-control {
2223
+ display: block;
2224
+ width: 100%;
2225
+ height: calc(1.5em + 0.75rem + 2px);
2226
+ padding: 0.375rem 0.75rem;
2227
+ font-size: 1rem;
2228
+ font-weight: 400;
2229
+ line-height: 1.5;
2230
+ color: #495057;
2231
+ background-color: #fff;
2232
+ background-clip: padding-box;
2233
+ border: 1px solid #ced4da;
2234
+ border-radius: 0.25rem;
2235
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2236
+ }
2237
+
2238
+ @media (prefers-reduced-motion: reduce) {
2239
+ .w3eden .form-control {
2240
+ transition: none;
2241
+ }
2242
+ }
2243
+
2244
+ .w3eden .form-control::-ms-expand {
2245
+ background-color: transparent;
2246
+ border: 0;
2247
+ }
2248
+
2249
+ .w3eden .form-control:-moz-focusring {
2250
+ color: transparent;
2251
+ text-shadow: 0 0 0 #495057;
2252
+ }
2253
+
2254
+ .w3eden .form-control:focus {
2255
+ color: #495057;
2256
+ background-color: #fff;
2257
+ border-color: #80bdff;
2258
+ outline: 0;
2259
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
2260
+ }
2261
+
2262
+ .w3eden .form-control::-webkit-input-placeholder {
2263
+ color: #6c757d;
2264
+ opacity: 1;
2265
+ }
2266
+
2267
+ .w3eden .form-control::-moz-placeholder {
2268
+ color: #6c757d;
2269
+ opacity: 1;
2270
+ }
2271
+
2272
+ .w3eden .form-control:-ms-input-placeholder {
2273
+ color: #6c757d;
2274
+ opacity: 1;
2275
+ }
2276
+
2277
+ .w3eden .form-control::-ms-input-placeholder {
2278
+ color: #6c757d;
2279
+ opacity: 1;
2280
+ }
2281
+
2282
+ .w3eden .form-control::placeholder {
2283
+ color: #6c757d;
2284
+ opacity: 1;
2285
+ }
2286
+
2287
+ .w3eden .form-control:disabled, .w3eden .form-control[readonly] {
2288
+ background-color: #e9ecef;
2289
+ opacity: 1;
2290
+ }
2291
+
2292
+ .w3eden select.form-control:focus::-ms-value {
2293
+ color: #495057;
2294
+ background-color: #fff;
2295
+ }
2296
+
2297
+ .w3eden .form-control-file,
2298
+ .w3eden .form-control-range {
2299
+ display: block;
2300
+ width: 100%;
2301
+ }
2302
+
2303
+ .w3eden .col-form-label {
2304
+ padding-top: calc(0.375rem + 1px);
2305
+ padding-bottom: calc(0.375rem + 1px);
2306
+ margin-bottom: 0;
2307
+ font-size: inherit;
2308
+ line-height: 1.5;
2309
+ }
2310
+
2311
+ .w3eden .col-form-label-lg {
2312
+ padding-top: calc(0.5rem + 1px);
2313
+ padding-bottom: calc(0.5rem + 1px);
2314
+ font-size: 1.25rem;
2315
+ line-height: 1.5;
2316
+ }
2317
+
2318
+ .w3eden .col-form-label-sm {
2319
+ padding-top: calc(0.25rem + 1px);
2320
+ padding-bottom: calc(0.25rem + 1px);
2321
+ font-size: 0.875rem;
2322
+ line-height: 1.5;
2323
+ }
2324
+
2325
+ .w3eden .form-control-plaintext {
2326
+ display: block;
2327
+ width: 100%;
2328
+ padding: 0.375rem 0;
2329
+ margin-bottom: 0;
2330
+ font-size: 1rem;
2331
+ line-height: 1.5;
2332
+ color: #212529;
2333
+ background-color: transparent;
2334
+ border: solid transparent;
2335
+ border-width: 1px 0;
2336
+ }
2337
+
2338
+ .w3eden .form-control-plaintext.form-control-sm, .w3eden .form-control-plaintext.form-control-lg {
2339
+ padding-right: 0;
2340
+ padding-left: 0;
2341
+ }
2342
+
2343
+ .w3eden .form-control-sm {
2344
+ height: calc(1.5em + 0.5rem + 2px);
2345
+ padding: 0.25rem 0.5rem;
2346
+ font-size: 0.875rem;
2347
+ line-height: 1.5;
2348
+ border-radius: 0.2rem;
2349
+ }
2350
+
2351
+ .w3eden .form-control-lg {
2352
+ height: calc(1.5em + 1rem + 2px);
2353
+ padding: 0.5rem 1rem;
2354
+ font-size: 1.25rem;
2355
+ line-height: 1.5;
2356
+ border-radius: 0.3rem;
2357
+ }
2358
+
2359
+ .w3eden select.form-control[size], .w3eden select.form-control[multiple] {
2360
+ height: auto;
2361
+ }
2362
+
2363
+ .w3eden textarea.form-control {
2364
+ height: auto;
2365
+ }
2366
+
2367
+ .w3eden .form-group {
2368
+ margin-bottom: 1rem;
2369
+ }
2370
+
2371
+ .w3eden .form-text {
2372
+ display: block;
2373
+ margin-top: 0.25rem;
2374
+ }
2375
+
2376
+ .w3eden .form-row {
2377
+ display: -ms-flexbox;
2378
+ display: flex;
2379
+ -ms-flex-wrap: wrap;
2380
+ flex-wrap: wrap;
2381
+ margin-right: -5px;
2382
+ margin-left: -5px;
2383
+ }
2384
+
2385
+ .w3eden .form-row > .col,
2386
+ .w3eden .form-row > [class*="col-"] {
2387
+ padding-right: 5px;
2388
+ padding-left: 5px;
2389
+ }
2390
+
2391
+ .w3eden .form-check {
2392
+ position: relative;
2393
+ display: block;
2394
+ padding-left: 1.25rem;
2395
+ }
2396
+
2397
+ .w3eden .form-check-input {
2398
+ position: absolute;
2399
+ margin-top: 0.3rem;
2400
+ margin-left: -1.25rem;
2401
+ }
2402
+
2403
+ .w3eden .form-check-input[disabled] ~ .form-check-label,
2404
+ .w3eden .form-check-input:disabled ~ .form-check-label {
2405
+ color: #6c757d;
2406
+ }
2407
+
2408
+ .w3eden .form-check-label {
2409
+ margin-bottom: 0;
2410
+ }
2411
+
2412
+ .w3eden .form-check-inline {
2413
+ display: -ms-inline-flexbox;
2414
+ display: inline-flex;
2415
+ -ms-flex-align: center;
2416
+ align-items: center;
2417
+ padding-left: 0;
2418
+ margin-right: 0.75rem;
2419
+ }
2420
+
2421
+ .w3eden .form-check-inline .form-check-input {
2422
+ position: static;
2423
+ margin-top: 0;
2424
+ margin-right: 0.3125rem;
2425
+ margin-left: 0;
2426
+ }
2427
+
2428
+ .w3eden .valid-feedback {
2429
+ display: none;
2430
+ width: 100%;
2431
+ margin-top: 0.25rem;
2432
+ font-size: 80%;
2433
+ color: var(--color-success);
2434
+ }
2435
+
2436
+ .w3eden .valid-tooltip {
2437
+ position: absolute;
2438
+ top: 100%;
2439
+ z-index: 5;
2440
+ display: none;
2441
+ max-width: 100%;
2442
+ padding: 0.25rem 0.5rem;
2443
+ margin-top: .1rem;
2444
+ font-size: 0.875rem;
2445
+ line-height: 1.5;
2446
+ color: #fff;
2447
+ background-color: rgba(40, 167, 69, 0.9);
2448
+ border-radius: 0.25rem;
2449
+ }
2450
+
2451
+ .w3eden .was-validated :valid ~ .valid-feedback,
2452
+ .w3eden .was-validated :valid ~ .valid-tooltip,
2453
+ .w3eden .is-valid ~ .valid-feedback,
2454
+ .w3eden .is-valid ~ .valid-tooltip {
2455
+ display: block;
2456
+ }
2457
+
2458
+ .w3eden .was-validated .form-control:valid, .w3eden .form-control.is-valid {
2459
+ border-color: var(--color-success);
2460
+ padding-right: calc(1.5em + 0.75rem);
2461
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
2462
+ background-repeat: no-repeat;
2463
+ background-position: right calc(0.375em + 0.1875rem) center;
2464
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2465
+ }
2466
+
2467
+ .w3eden .was-validated .form-control:valid:focus, .w3eden .form-control.is-valid:focus {
2468
+ border-color: var(--color-success);
2469
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2470
+ }
2471
+
2472
+ .w3eden .was-validated textarea.form-control:valid, .w3eden textarea.form-control.is-valid {
2473
+ padding-right: calc(1.5em + 0.75rem);
2474
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
2475
+ }
2476
+
2477
+ .w3eden .was-validated .custom-select:valid, .w3eden .custom-select.is-valid {
2478
+ border-color: var(--color-success);
2479
+ padding-right: calc(0.75em + 2.3125rem);
2480
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2481
+ }
2482
+
2483
+ .w3eden .was-validated .custom-select:valid:focus, .w3eden .custom-select.is-valid:focus {
2484
+ border-color: var(--color-success);
2485
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2486
+ }
2487
+
2488
+ .w3eden .was-validated .form-check-input:valid ~ .form-check-label, .w3eden .form-check-input.is-valid ~ .form-check-label {
2489
+ color: var(--color-success);
2490
+ }
2491
+
2492
+ .w3eden .was-validated .form-check-input:valid ~ .valid-feedback,
2493
+ .w3eden .was-validated .form-check-input:valid ~ .valid-tooltip, .w3eden .form-check-input.is-valid ~ .valid-feedback,
2494
+ .w3eden .form-check-input.is-valid ~ .valid-tooltip {
2495
+ display: block;
2496
+ }
2497
+
2498
+ .w3eden .was-validated .custom-control-input:valid ~ .custom-control-label, .w3eden .custom-control-input.is-valid ~ .custom-control-label {
2499
+ color: var(--color-success);
2500
+ }
2501
+
2502
+ .w3eden .was-validated .custom-control-input:valid ~ .custom-control-label::before, .w3eden .custom-control-input.is-valid ~ .custom-control-label::before {
2503
+ border-color: var(--color-success);
2504
+ }
2505
+
2506
+ .w3eden .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .w3eden .custom-control-input.is-valid:checked ~ .custom-control-label::before {
2507
+ border-color: #34ce57;
2508
+ background-color: #34ce57;
2509
+ }
2510
+
2511
+ .w3eden .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .w3eden .custom-control-input.is-valid:focus ~ .custom-control-label::before {
2512
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2513
+ }
2514
+
2515
+ .w3eden .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .w3eden .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
2516
+ border-color: var(--color-success);
2517
+ }
2518
+
2519
+ .w3eden .was-validated .custom-file-input:valid ~ .custom-file-label, .w3eden .custom-file-input.is-valid ~ .custom-file-label {
2520
+ border-color: var(--color-success);
2521
+ }
2522
+
2523
+ .w3eden .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .w3eden .custom-file-input.is-valid:focus ~ .custom-file-label {
2524
+ border-color: var(--color-success);
2525
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2526
+ }
2527
+
2528
+ .w3eden .invalid-feedback {
2529
+ display: none;
2530
+ width: 100%;
2531
+ margin-top: 0.25rem;
2532
+ font-size: 80%;
2533
+ color: var(--color-danger);
2534
+ }
2535
+
2536
+ .w3eden .invalid-tooltip {
2537
+ position: absolute;
2538
+ top: 100%;
2539
+ z-index: 5;
2540
+ display: none;
2541
+ max-width: 100%;
2542
+ padding: 0.25rem 0.5rem;
2543
+ margin-top: .1rem;
2544
+ font-size: 0.875rem;
2545
+ line-height: 1.5;
2546
+ color: #fff;
2547
+ background-color: rgba(220, 53, 69, 0.9);
2548
+ border-radius: 0.25rem;
2549
+ }
2550
+
2551
+ .w3eden .was-validated :invalid ~ .invalid-feedback,
2552
+ .w3eden .was-validated :invalid ~ .invalid-tooltip,
2553
+ .w3eden .is-invalid ~ .invalid-feedback,
2554
+ .w3eden .is-invalid ~ .invalid-tooltip {
2555
+ display: block;
2556
+ }
2557
+
2558
+ .w3eden .was-validated .form-control:invalid, .w3eden .form-control.is-invalid {
2559
+ border-color: var(--color-danger);
2560
+ padding-right: calc(1.5em + 0.75rem);
2561
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
2562
+ background-repeat: no-repeat;
2563
+ background-position: right calc(0.375em + 0.1875rem) center;
2564
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2565
+ }
2566
+
2567
+ .w3eden .was-validated .form-control:invalid:focus, .w3eden .form-control.is-invalid:focus {
2568
+ border-color: var(--color-danger);
2569
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2570
+ }
2571
+
2572
+ .w3eden .was-validated textarea.form-control:invalid, .w3eden textarea.form-control.is-invalid {
2573
+ padding-right: calc(1.5em + 0.75rem);
2574
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
2575
+ }
2576
+
2577
+ .w3eden .was-validated .custom-select:invalid, .w3eden .custom-select.is-invalid {
2578
+ border-color: var(--color-danger);
2579
+ padding-right: calc(0.75em + 2.3125rem);
2580
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2581
+ }
2582
+
2583
+ .w3eden .was-validated .custom-select:invalid:focus, .w3eden .custom-select.is-invalid:focus {
2584
+ border-color: var(--color-danger);
2585
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2586
+ }
2587
+
2588
+ .w3eden .was-validated .form-check-input:invalid ~ .form-check-label, .w3eden .form-check-input.is-invalid ~ .form-check-label {
2589
+ color: var(--color-danger);
2590
+ }
2591
+
2592
+ .w3eden .was-validated .form-check-input:invalid ~ .invalid-feedback,
2593
+ .w3eden .was-validated .form-check-input:invalid ~ .invalid-tooltip, .w3eden .form-check-input.is-invalid ~ .invalid-feedback,
2594
+ .w3eden .form-check-input.is-invalid ~ .invalid-tooltip {
2595
+ display: block;
2596
+ }
2597
+
2598
+ .w3eden .was-validated .custom-control-input:invalid ~ .custom-control-label, .w3eden .custom-control-input.is-invalid ~ .custom-control-label {
2599
+ color: var(--color-danger);
2600
+ }
2601
+
2602
+ .w3eden .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .w3eden .custom-control-input.is-invalid ~ .custom-control-label::before {
2603
+ border-color: var(--color-danger);
2604
+ }
2605
+
2606
+ .w3eden .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .w3eden .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
2607
+ border-color: #e4606d;
2608
+ background-color: #e4606d;
2609
+ }
2610
+
2611
+ .w3eden .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .w3eden .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
2612
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2613
+ }
2614
+
2615
+ .w3eden .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .w3eden .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
2616
+ border-color: var(--color-danger);
2617
+ }
2618
+
2619
+ .w3eden .was-validated .custom-file-input:invalid ~ .custom-file-label, .w3eden .custom-file-input.is-invalid ~ .custom-file-label {
2620
+ border-color: var(--color-danger);
2621
+ }
2622
+
2623
+ .w3eden .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .w3eden .custom-file-input.is-invalid:focus ~ .custom-file-label {
2624
+ border-color: var(--color-danger);
2625
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2626
+ }
2627
+
2628
+ .w3eden .form-inline {
2629
+ display: -ms-flexbox;
2630
+ display: flex;
2631
+ -ms-flex-flow: row wrap;
2632
+ flex-flow: row wrap;
2633
+ -ms-flex-align: center;
2634
+ align-items: center;
2635
+ }
2636
+
2637
+ .w3eden .form-inline .form-check {
2638
+ width: 100%;
2639
+ }
2640
+
2641
+ @media (min-width: 576px) {
2642
+ .w3eden .form-inline label {
2643
+ display: -ms-flexbox;
2644
+ display: flex;
2645
+ -ms-flex-align: center;
2646
+ align-items: center;
2647
+ -ms-flex-pack: center;
2648
+ justify-content: center;
2649
+ margin-bottom: 0;
2650
+ }
2651
+
2652
+ .w3eden .form-inline .form-group {
2653
+ display: -ms-flexbox;
2654
+ display: flex;
2655
+ -ms-flex: 0 0 auto;
2656
+ flex: 0 0 auto;
2657
+ -ms-flex-flow: row wrap;
2658
+ flex-flow: row wrap;
2659
+ -ms-flex-align: center;
2660
+ align-items: center;
2661
+ margin-bottom: 0;
2662
+ }
2663
+
2664
+ .w3eden .form-inline .form-control {
2665
+ display: inline-block;
2666
+ width: auto;
2667
+ vertical-align: middle;
2668
+ }
2669
+
2670
+ .w3eden .form-inline .form-control-plaintext {
2671
+ display: inline-block;
2672
+ }
2673
+
2674
+ .w3eden .form-inline .input-group,
2675
+ .w3eden .form-inline .custom-select {
2676
+ width: auto;
2677
+ }
2678
+
2679
+ .w3eden .form-inline .form-check {
2680
+ display: -ms-flexbox;
2681
+ display: flex;
2682
+ -ms-flex-align: center;
2683
+ align-items: center;
2684
+ -ms-flex-pack: center;
2685
+ justify-content: center;
2686
+ width: auto;
2687
+ padding-left: 0;
2688
+ }
2689
+
2690
+ .w3eden .form-inline .form-check-input {
2691
+ position: relative;
2692
+ -ms-flex-negative: 0;
2693
+ flex-shrink: 0;
2694
+ margin-top: 0;
2695
+ margin-right: 0.25rem;
2696
+ margin-left: 0;
2697
+ }
2698
+
2699
+ .w3eden .form-inline .custom-control {
2700
+ -ms-flex-align: center;
2701
+ align-items: center;
2702
+ -ms-flex-pack: center;
2703
+ justify-content: center;
2704
+ }
2705
+
2706
+ .w3eden .form-inline .custom-control-label {
2707
+ margin-bottom: 0;
2708
+ }
2709
+ }
2710
+
2711
+ .w3eden .btn {
2712
+ display: inline-block;
2713
+ font-weight: 400;
2714
+ color: #212529;
2715
+ text-align: center;
2716
+ vertical-align: middle;
2717
+ cursor: pointer;
2718
+ -webkit-user-select: none;
2719
+ -moz-user-select: none;
2720
+ -ms-user-select: none;
2721
+ user-select: none;
2722
+ background-color: transparent;
2723
+ border: 1px solid transparent;
2724
+ padding: 0.375rem 0.75rem;
2725
+ font-size: 1rem;
2726
+ line-height: 1.5;
2727
+ border-radius: 0.25rem;
2728
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2729
+ }
2730
+
2731
+ @media (prefers-reduced-motion: reduce) {
2732
+ .w3eden .btn {
2733
+ transition: none;
2734
+ }
2735
+ }
2736
+
2737
+ .w3eden .btn:hover {
2738
+ color: #212529;
2739
+ text-decoration: none;
2740
+ }
2741
+
2742
+ .w3eden .btn:focus, .w3eden .btn.focus {
2743
+ outline: 0;
2744
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
2745
+ }
2746
+
2747
+ .w3eden .btn.disabled, .w3eden .btn:disabled {
2748
+ opacity: 0.65;
2749
+ }
2750
+
2751
+ .w3eden a.btn.disabled,
2752
+ .w3eden fieldset:disabled a.btn {
2753
+ pointer-events: none;
2754
+ }
2755
+
2756
+ .w3eden .btn-primary {
2757
+ color: #fff;
2758
+ background-color: var(--color-primary);
2759
+ border-color: var(--color-primary);
2760
+ }
2761
+
2762
+ .w3eden .btn-primary:hover {
2763
+ color: #fff;
2764
+ background-color: var(--color-primary-hover);
2765
+ border-color: var(--color-primary-hover);
2766
+ }
2767
+
2768
+ .w3eden .btn-primary:focus, .w3eden .btn-primary.focus {
2769
+ color: #fff;
2770
+ background-color: var(--color-primary-hover);
2771
+ border-color: var(--color-primary-hover);
2772
+ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
2773
+ }
2774
+
2775
+ .w3eden .btn-primary.disabled, .w3eden .btn-primary:disabled {
2776
+ color: #fff;
2777
+ background-color: var(--color-primary);
2778
+ border-color: var(--color-primary);
2779
+ }
2780
+
2781
+ .w3eden .btn-primary:not(:disabled):not(.disabled):active, .w3eden .btn-primary:not(:disabled):not(.disabled).active,
2782
+ .w3eden .show > .btn-primary.dropdown-toggle {
2783
+ color: #fff;
2784
+ background-color: var(--color-primary-hover);
2785
+ border-color: var(--color-primary-active);
2786
+ }
2787
+
2788
+ .w3eden .btn-primary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-primary:not(:disabled):not(.disabled).active:focus,
2789
+ .w3eden .show > .btn-primary.dropdown-toggle:focus {
2790
+ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
2791
+ }
2792
+
2793
+ .w3eden .btn-secondary {
2794
+ color: #fff;
2795
+ background-color: #6c757d;
2796
+ border-color: #6c757d;
2797
+ }
2798
+
2799
+ .w3eden .btn-secondary:hover {
2800
+ color: #fff;
2801
+ background-color: #5a6268;
2802
+ border-color: #545b62;
2803
+ }
2804
+
2805
+ .w3eden .btn-secondary:focus, .w3eden .btn-secondary.focus {
2806
+ color: #fff;
2807
+ background-color: #5a6268;
2808
+ border-color: #545b62;
2809
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
2810
+ }
2811
+
2812
+ .w3eden .btn-secondary.disabled, .w3eden .btn-secondary:disabled {
2813
+ color: #fff;
2814
+ background-color: #6c757d;
2815
+ border-color: #6c757d;
2816
+ }
2817
+
2818
+ .w3eden .btn-secondary:not(:disabled):not(.disabled):active, .w3eden .btn-secondary:not(:disabled):not(.disabled).active,
2819
+ .w3eden .show > .btn-secondary.dropdown-toggle {
2820
+ color: #fff;
2821
+ background-color: #545b62;
2822
+ border-color: #4e555b;
2823
+ }
2824
+
2825
+ .w3eden .btn-secondary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-secondary:not(:disabled):not(.disabled).active:focus,
2826
+ .w3eden .show > .btn-secondary.dropdown-toggle:focus {
2827
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
2828
+ }
2829
+
2830
+ .w3eden .btn-success {
2831
+ color: #fff;
2832
+ background-color: var(--color-success);
2833
+ border-color: var(--color-success);
2834
+ }
2835
+
2836
+ .w3eden .btn-success:hover {
2837
+ color: #fff;
2838
+ background-color: var(--color-success-hover);
2839
+ border-color: var(--color-success);
2840
+ }
2841
+
2842
+ .w3eden .btn-success:focus, .w3eden .btn-success.focus {
2843
+ color: #fff;
2844
+ background-color: var(--color-success-hover);
2845
+ border-color: var(--color-success);
2846
+ box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
2847
+ }
2848
+
2849
+ .w3eden .btn-success.disabled, .w3eden .btn-success:disabled {
2850
+ color: #fff;
2851
+ background-color: var(--color-success);
2852
+ border-color: var(--color-success);
2853
+ }
2854
+
2855
+ .w3eden .btn-success:not(:disabled):not(.disabled):active, .w3eden .btn-success:not(:disabled):not(.disabled).active,
2856
+ .w3eden .show > .btn-success.dropdown-toggle {
2857
+ color: #fff;
2858
+ background-color: var(--color-success-active);
2859
+ border-color: var(--color-success-active);
2860
+ }
2861
+
2862
+ .w3eden .btn-success:not(:disabled):not(.disabled):active:focus, .w3eden .btn-success:not(:disabled):not(.disabled).active:focus,
2863
+ .w3eden .show > .btn-success.dropdown-toggle:focus {
2864
+ box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
2865
+ }
2866
+
2867
+ .w3eden .btn-info {
2868
+ color: #fff;
2869
+ background-color: var(--color-info);
2870
+ border-color: var(--color-info);
2871
+ }
2872
+
2873
+ .w3eden .btn-info:hover {
2874
+ color: #fff;
2875
+ background-color: var(--color-info-hover);
2876
+ border-color: var(--color-info-active);
2877
+ }
2878
+
2879
+ .w3eden .btn-info:focus, .w3eden .btn-info.focus {
2880
+ color: #fff;
2881
+ background-color: var(--color-info-active);
2882
+ border-color: var(--color-info-active);
2883
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-info-rgb), 0.5);
2884
+ }
2885
+
2886
+ .w3eden .btn-info.disabled, .w3eden .btn-info:disabled {
2887
+ color: #fff;
2888
+ background-color: var(--color-info);
2889
+ border-color: var(--color-info);
2890
+ }
2891
+
2892
+ .w3eden .btn-info:not(:disabled):not(.disabled):active, .w3eden .btn-info:not(:disabled):not(.disabled).active,
2893
+ .w3eden .show > .btn-info.dropdown-toggle {
2894
+ color: #fff;
2895
+ background-color: var(--color-info-active);
2896
+ border-color: var(--color-info-active);
2897
+ }
2898
+
2899
+ .w3eden .btn-info:not(:disabled):not(.disabled):active:focus, .w3eden .btn-info:not(:disabled):not(.disabled).active:focus,
2900
+ .w3eden .show > .btn-info.dropdown-toggle:focus {
2901
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-info-rgb), 0.5);
2902
+ }
2903
+
2904
+ .w3eden .btn-warning {
2905
+ color: #212529;
2906
+ background-color: var(--color-warning);
2907
+ border-color: var(--color-warning);
2908
+ }
2909
+
2910
+ .w3eden .btn-warning:hover {
2911
+ color: #212529;
2912
+ background-color: var(--color-warning-hover);
2913
+ border-color: var(--color-warning-active);
2914
+ }
2915
+
2916
+ .w3eden .btn-warning:focus, .w3eden .btn-warning.focus {
2917
+ color: #212529;
2918
+ background-color: var(--color-warning-hover);
2919
+ border-color: var(--color-warning-active);
2920
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-warning-rgb), 0.5);
2921
+ }
2922
+
2923
+ .w3eden .btn-warning.disabled, .w3eden .btn-warning:disabled {
2924
+ color: #212529;
2925
+ background-color: var(--color-warning);
2926
+ border-color: var(--color-warning);
2927
+ }
2928
+
2929
+ .w3eden .btn-warning:not(:disabled):not(.disabled):active, .w3eden .btn-warning:not(:disabled):not(.disabled).active,
2930
+ .w3eden .show > .btn-warning.dropdown-toggle {
2931
+ color: #212529;
2932
+ background-color: var(--color-warning-active);
2933
+ border-color: var(--color-warning-active);
2934
+ }
2935
+
2936
+ .w3eden .btn-warning:not(:disabled):not(.disabled):active:focus, .w3eden .btn-warning:not(:disabled):not(.disabled).active:focus,
2937
+ .w3eden .show > .btn-warning.dropdown-toggle:focus {
2938
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-warning-rgb), 0.5);
2939
+ }
2940
+
2941
+ .w3eden .btn-danger {
2942
+ color: #fff;
2943
+ background-color: var(--color-danger);
2944
+ border-color: var(--color-danger);
2945
+ }
2946
+
2947
+ .w3eden .btn-danger:hover {
2948
+ color: #fff;
2949
+ background-color: var(--color-danger-hover);
2950
+ border-color: var(--color-danger-active);
2951
+ }
2952
+
2953
+ .w3eden .btn-danger:focus, .w3eden .btn-danger.focus {
2954
+ color: #fff;
2955
+ background-color: var(--color-danger-hover);
2956
+ border-color: var(--color-danger-active);
2957
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-danger-rgb), 0.5);
2958
+ }
2959
+
2960
+ .w3eden .btn-danger.disabled, .w3eden .btn-danger:disabled {
2961
+ color: #fff;
2962
+ background-color: var(--color-danger);
2963
+ border-color: var(--color-danger);
2964
+ }
2965
+
2966
+ .w3eden .btn-danger:not(:disabled):not(.disabled):active, .w3eden .btn-danger:not(:disabled):not(.disabled).active,
2967
+ .w3eden .show > .btn-danger.dropdown-toggle {
2968
+ color: #fff;
2969
+ background-color: var(--color-danger-active);
2970
+ border-color: var(--color-danger-active);
2971
+ }
2972
+
2973
+ .w3eden .btn-danger:not(:disabled):not(.disabled):active:focus, .w3eden .btn-danger:not(:disabled):not(.disabled).active:focus,
2974
+ .w3eden .show > .btn-danger.dropdown-toggle:focus {
2975
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-danger-rgb), 0.5);
2976
+ }
2977
+
2978
+ .w3eden .btn-light {
2979
+ color: #212529;
2980
+ background-color: #f8f9fa;
2981
+ border-color: #f8f9fa;
2982
+ }
2983
+
2984
+ .w3eden .btn-light:hover {
2985
+ color: #212529;
2986
+ background-color: #e2e6ea;
2987
+ border-color: #dae0e5;
2988
+ }
2989
+
2990
+ .w3eden .btn-light:focus, .w3eden .btn-light.focus {
2991
+ color: #212529;
2992
+ background-color: #e2e6ea;
2993
+ border-color: #dae0e5;
2994
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
2995
+ }
2996
+
2997
+ .w3eden .btn-light.disabled, .w3eden .btn-light:disabled {
2998
+ color: #212529;
2999
+ background-color: #f8f9fa;
3000
+ border-color: #f8f9fa;
3001
+ }
3002
+
3003
+ .w3eden .btn-light:not(:disabled):not(.disabled):active, .w3eden .btn-light:not(:disabled):not(.disabled).active,
3004
+ .w3eden .show > .btn-light.dropdown-toggle {
3005
+ color: #212529;
3006
+ background-color: #dae0e5;
3007
+ border-color: #d3d9df;
3008
+ }
3009
+
3010
+ .w3eden .btn-light:not(:disabled):not(.disabled):active:focus, .w3eden .btn-light:not(:disabled):not(.disabled).active:focus,
3011
+ .w3eden .show > .btn-light.dropdown-toggle:focus {
3012
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
3013
+ }
3014
+
3015
+ .w3eden .btn-dark {
3016
+ color: #fff;
3017
+ background-color: #343a40;
3018
+ border-color: #343a40;
3019
+ }
3020
+
3021
+ .w3eden .btn-dark:hover {
3022
+ color: #fff;
3023
+ background-color: #23272b;
3024
+ border-color: #1d2124;
3025
+ }
3026
+
3027
+ .w3eden .btn-dark:focus, .w3eden .btn-dark.focus {
3028
+ color: #fff;
3029
+ background-color: #23272b;
3030
+ border-color: #1d2124;
3031
+ box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
3032
+ }
3033
+
3034
+ .w3eden .btn-dark.disabled, .w3eden .btn-dark:disabled {
3035
+ color: #fff;
3036
+ background-color: #343a40;
3037
+ border-color: #343a40;
3038
+ }
3039
+
3040
+ .w3eden .btn-dark:not(:disabled):not(.disabled):active, .w3eden .btn-dark:not(:disabled):not(.disabled).active,
3041
+ .w3eden .show > .btn-dark.dropdown-toggle {
3042
+ color: #fff;
3043
+ background-color: #1d2124;
3044
+ border-color: #171a1d;
3045
+ }
3046
+
3047
+ .w3eden .btn-dark:not(:disabled):not(.disabled):active:focus, .w3eden .btn-dark:not(:disabled):not(.disabled).active:focus,
3048
+ .w3eden .show > .btn-dark.dropdown-toggle:focus {
3049
+ box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
3050
+ }
3051
+
3052
+ .w3eden .btn-outline-primary {
3053
+ color: var(--color-primary);
3054
+ border-color: var(--color-primary);
3055
+ }
3056
+
3057
+ .w3eden .btn-outline-primary:hover {
3058
+ color: #fff;
3059
+ background-color: var(--color-primary);
3060
+ border-color: var(--color-primary);
3061
+ }
3062
+
3063
+ .w3eden .btn-outline-primary:focus, .w3eden .btn-outline-primary.focus {
3064
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
3065
+ }
3066
+
3067
+ .w3eden .btn-outline-primary.disabled, .w3eden .btn-outline-primary:disabled {
3068
+ color: var(--color-primary);
3069
+ background-color: transparent;
3070
+ }
3071
+
3072
+ .w3eden .btn-outline-primary:not(:disabled):not(.disabled):active, .w3eden .btn-outline-primary:not(:disabled):not(.disabled).active,
3073
+ .w3eden .show > .btn-outline-primary.dropdown-toggle {
3074
+ color: #fff;
3075
+ background-color: var(--color-primary);
3076
+ border-color: var(--color-primary);
3077
+ }
3078
+
3079
+ .w3eden .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
3080
+ .w3eden .show > .btn-outline-primary.dropdown-toggle:focus {
3081
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
3082
+ }
3083
+
3084
+ .w3eden .btn-outline-secondary {
3085
+ color: #6c757d;
3086
+ border-color: #6c757d;
3087
+ }
3088
+
3089
+ .w3eden .btn-outline-secondary:hover {
3090
+ color: #fff;
3091
+ background-color: #6c757d;
3092
+ border-color: #6c757d;
3093
+ }
3094
+
3095
+ .w3eden .btn-outline-secondary:focus, .w3eden .btn-outline-secondary.focus {
3096
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
3097
+ }
3098
+
3099
+ .w3eden .btn-outline-secondary.disabled, .w3eden .btn-outline-secondary:disabled {
3100
+ color: #6c757d;
3101
+ background-color: transparent;
3102
+ }
3103
+
3104
+ .w3eden .btn-outline-secondary:not(:disabled):not(.disabled):active, .w3eden .btn-outline-secondary:not(:disabled):not(.disabled).active,
3105
+ .w3eden .show > .btn-outline-secondary.dropdown-toggle {
3106
+ color: #fff;
3107
+ background-color: #6c757d;
3108
+ border-color: #6c757d;
3109
+ }
3110
+
3111
+ .w3eden .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
3112
+ .w3eden .show > .btn-outline-secondary.dropdown-toggle:focus {
3113
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
3114
+ }
3115
+
3116
+ .w3eden .btn-outline-success {
3117
+ color: var(--color-success);
3118
+ border-color: var(--color-success);
3119
+ }
3120
+
3121
+ .w3eden .btn-outline-success:hover {
3122
+ color: #fff;
3123
+ background-color: var(--color-success);
3124
+ border-color: var(--color-success);
3125
+ }
3126
+
3127
+ .w3eden .btn-outline-success:focus, .w3eden .btn-outline-success.focus {
3128
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
3129
+ }
3130
+
3131
+ .w3eden .btn-outline-success.disabled, .w3eden .btn-outline-success:disabled {
3132
+ color: var(--color-success);
3133
+ background-color: transparent;
3134
+ }
3135
+
3136
+ .w3eden .btn-outline-success:not(:disabled):not(.disabled):active, .w3eden .btn-outline-success:not(:disabled):not(.disabled).active,
3137
+ .w3eden .show > .btn-outline-success.dropdown-toggle {
3138
+ color: #fff;
3139
+ background-color: var(--color-success);
3140
+ border-color: var(--color-success);
3141
+ }
3142
+
3143
+ .w3eden .btn-outline-success:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-success:not(:disabled):not(.disabled).active:focus,
3144
+ .w3eden .show > .btn-outline-success.dropdown-toggle:focus {
3145
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
3146
+ }
3147
+
3148
+ .w3eden .btn-outline-info {
3149
+ color: var(--color-info);
3150
+ border-color: var(--color-info);
3151
+ }
3152
+
3153
+ .w3eden .btn-outline-info:hover {
3154
+ color: #fff;
3155
+ background-color: var(--color-info);
3156
+ border-color: var(--color-info);
3157
+ }
3158
+
3159
+ .w3eden .btn-outline-info:focus, .w3eden .btn-outline-info.focus {
3160
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
3161
+ }
3162
+
3163
+ .w3eden .btn-outline-info.disabled, .w3eden .btn-outline-info:disabled {
3164
+ color: var(--color-info);
3165
+ background-color: transparent;
3166
+ }
3167
+
3168
+ .w3eden .btn-outline-info:not(:disabled):not(.disabled):active, .w3eden .btn-outline-info:not(:disabled):not(.disabled).active,
3169
+ .w3eden .show > .btn-outline-info.dropdown-toggle {
3170
+ color: #fff;
3171
+ background-color: var(--color-info);
3172
+ border-color: var(--color-info);
3173
+ }
3174
+
3175
+ .w3eden .btn-outline-info:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-info:not(:disabled):not(.disabled).active:focus,
3176
+ .w3eden .show > .btn-outline-info.dropdown-toggle:focus {
3177
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
3178
+ }
3179
+
3180
+ .w3eden .btn-outline-warning {
3181
+ color: var(--color-warning);
3182
+ border-color: var(--color-warning);
3183
+ }
3184
+
3185
+ .w3eden .btn-outline-warning:hover {
3186
+ color: #212529;
3187
+ background-color: var(--color-warning);
3188
+ border-color: var(--color-warning);
3189
+ }
3190
+
3191
+ .w3eden .btn-outline-warning:focus, .w3eden .btn-outline-warning.focus {
3192
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
3193
+ }
3194
+
3195
+ .w3eden .btn-outline-warning.disabled, .w3eden .btn-outline-warning:disabled {
3196
+ color: var(--color-warning);
3197
+ background-color: transparent;
3198
+ }
3199
+
3200
+ .w3eden .btn-outline-warning:not(:disabled):not(.disabled):active, .w3eden .btn-outline-warning:not(:disabled):not(.disabled).active,
3201
+ .w3eden .show > .btn-outline-warning.dropdown-toggle {
3202
+ color: #212529;
3203
+ background-color: var(--color-warning);
3204
+ border-color: var(--color-warning);
3205
+ }
3206
+
3207
+ .w3eden .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
3208
+ .w3eden .show > .btn-outline-warning.dropdown-toggle:focus {
3209
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
3210
+ }
3211
+
3212
+ .w3eden .btn-outline-danger {
3213
+ color: var(--color-danger);
3214
+ border-color: var(--color-danger);
3215
+ }
3216
+
3217
+ .w3eden .btn-outline-danger:hover {
3218
+ color: #fff;
3219
+ background-color: var(--color-danger);
3220
+ border-color: var(--color-danger);
3221
+ }
3222
+
3223
+ .w3eden .btn-outline-danger:focus, .w3eden .btn-outline-danger.focus {
3224
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
3225
+ }
3226
+
3227
+ .w3eden .btn-outline-danger.disabled, .w3eden .btn-outline-danger:disabled {
3228
+ color: var(--color-danger);
3229
+ background-color: transparent;
3230
+ }
3231
+
3232
+ .w3eden .btn-outline-danger:not(:disabled):not(.disabled):active, .w3eden .btn-outline-danger:not(:disabled):not(.disabled).active,
3233
+ .w3eden .show > .btn-outline-danger.dropdown-toggle {
3234
+ color: #fff;
3235
+ background-color: var(--color-danger);
3236
+ border-color: var(--color-danger);
3237
+ }
3238
+
3239
+ .w3eden .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
3240
+ .w3eden .show > .btn-outline-danger.dropdown-toggle:focus {
3241
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
3242
+ }
3243
+
3244
+ .w3eden .btn-outline-light {
3245
+ color: #f8f9fa;
3246
+ border-color: #f8f9fa;
3247
+ }
3248
+
3249
+ .w3eden .btn-outline-light:hover {
3250
+ color: #212529;
3251
+ background-color: #f8f9fa;
3252
+ border-color: #f8f9fa;
3253
+ }
3254
+
3255
+ .w3eden .btn-outline-light:focus, .w3eden .btn-outline-light.focus {
3256
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
3257
+ }
3258
+
3259
+ .w3eden .btn-outline-light.disabled, .w3eden .btn-outline-light:disabled {
3260
+ color: #f8f9fa;
3261
+ background-color: transparent;
3262
+ }
3263
+
3264
+ .w3eden .btn-outline-light:not(:disabled):not(.disabled):active, .w3eden .btn-outline-light:not(:disabled):not(.disabled).active,
3265
+ .w3eden .show > .btn-outline-light.dropdown-toggle {
3266
+ color: #212529;
3267
+ background-color: #f8f9fa;
3268
+ border-color: #f8f9fa;
3269
+ }
3270
+
3271
+ .w3eden .btn-outline-light:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-light:not(:disabled):not(.disabled).active:focus,
3272
+ .w3eden .show > .btn-outline-light.dropdown-toggle:focus {
3273
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
3274
+ }
3275
+
3276
+ .w3eden .btn-outline-dark {
3277
+ color: #343a40;
3278
+ border-color: #343a40;
3279
+ }
3280
+
3281
+ .w3eden .btn-outline-dark:hover {
3282
+ color: #fff;
3283
+ background-color: #343a40;
3284
+ border-color: #343a40;
3285
+ }
3286
+
3287
+ .w3eden .btn-outline-dark:focus, .w3eden .btn-outline-dark.focus {
3288
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
3289
+ }
3290
+
3291
+ .w3eden .btn-outline-dark.disabled, .w3eden .btn-outline-dark:disabled {
3292
+ color: #343a40;
3293
+ background-color: transparent;
3294
+ }
3295
+
3296
+ .w3eden .btn-outline-dark:not(:disabled):not(.disabled):active, .w3eden .btn-outline-dark:not(:disabled):not(.disabled).active,
3297
+ .w3eden .show > .btn-outline-dark.dropdown-toggle {
3298
+ color: #fff;
3299
+ background-color: #343a40;
3300
+ border-color: #343a40;
3301
+ }
3302
+
3303
+ .w3eden .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
3304
+ .w3eden .show > .btn-outline-dark.dropdown-toggle:focus {
3305
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
3306
+ }
3307
+
3308
+ .w3eden .btn-link {
3309
+ font-weight: 400;
3310
+ color: var(--color-primary);
3311
+ text-decoration: none;
3312
+ }
3313
+
3314
+ .w3eden .btn-link:hover {
3315
+ color: #0056b3;
3316
+ text-decoration: underline;
3317
+ }
3318
+
3319
+ .w3eden .btn-link:focus, .w3eden .btn-link.focus {
3320
+ text-decoration: underline;
3321
+ box-shadow: none;
3322
+ }
3323
+
3324
+ .w3eden .btn-link:disabled, .w3eden .btn-link.disabled {
3325
+ color: #6c757d;
3326
+ pointer-events: none;
3327
+ }
3328
+
3329
+ .w3eden .btn-lg, .w3eden .btn-group-lg > .btn {
3330
+ padding: 0.5rem 1rem;
3331
+ font-size: 1.25rem;
3332
+ line-height: 1.5;
3333
+ border-radius: 0.3rem;
3334
+ }
3335
+
3336
+ .w3eden .btn-sm, .w3eden .btn-group-sm > .btn {
3337
+ padding: 0.25rem 0.5rem;
3338
+ font-size: 0.875rem;
3339
+ line-height: 1.5;
3340
+ border-radius: 0.2rem;
3341
+ }
3342
+
3343
+ .w3eden .btn-block {
3344
+ display: block;
3345
+ width: 100%;
3346
+ }
3347
+
3348
+ .w3eden .btn-block + .btn-block {
3349
+ margin-top: 0.5rem;
3350
+ }
3351
+
3352
+ .w3eden input[type="submit"].btn-block,
3353
+ .w3eden input[type="reset"].btn-block,
3354
+ .w3eden input[type="button"].btn-block {
3355
+ width: 100%;
3356
+ }
3357
+
3358
+ .w3eden .fade {
3359
+ transition: opacity 0.15s linear;
3360
+ }
3361
+
3362
+ @media (prefers-reduced-motion: reduce) {
3363
+ .w3eden .fade {
3364
+ transition: none;
3365
+ }
3366
+ }
3367
+
3368
+ .w3eden .fade:not(.show) {
3369
+ opacity: 0;
3370
+ }
3371
+
3372
+ .w3eden .collapse:not(.show) {
3373
+ display: none;
3374
+ }
3375
+
3376
+ .w3eden .collapsing {
3377
+ position: relative;
3378
+ height: 0;
3379
+ overflow: hidden;
3380
+ transition: height 0.35s ease;
3381
+ }
3382
+
3383
+ @media (prefers-reduced-motion: reduce) {
3384
+ .w3eden .collapsing {
3385
+ transition: none;
3386
+ }
3387
+ }
3388
+
3389
+ .w3eden .dropup,
3390
+ .w3eden .dropright,
3391
+ .w3eden .dropdown,
3392
+ .w3eden .dropleft {
3393
+ position: relative;
3394
+ }
3395
+
3396
+ .w3eden .dropdown-toggle {
3397
+ white-space: nowrap;
3398
+ }
3399
+
3400
+ .w3eden .dropdown-toggle::after {
3401
+ display: inline-block;
3402
+ margin-left: 0.255em;
3403
+ vertical-align: 0.255em;
3404
+ content: "";
3405
+ border-top: 0.3em solid;
3406
+ border-right: 0.3em solid transparent;
3407
+ border-bottom: 0;
3408
+ border-left: 0.3em solid transparent;
3409
+ }
3410
+
3411
+ .w3eden .dropdown-toggle:empty::after {
3412
+ margin-left: 0;
3413
+ }
3414
+
3415
+ .w3eden .dropdown-menu {
3416
+ position: absolute;
3417
+ top: 100%;
3418
+ left: 0;
3419
+ z-index: 1000;
3420
+ display: none;
3421
+ float: left;
3422
+ min-width: 10rem;
3423
+ padding: 0.5rem 0;
3424
+ margin: 0.125rem 0 0;
3425
+ font-size: 1rem;
3426
+ color: #212529;
3427
+ text-align: left;
3428
+ list-style: none;
3429
+ background-color: #fff;
3430
+ background-clip: padding-box;
3431
+ border: 1px solid rgba(0, 0, 0, 0.15);
3432
+ border-radius: 0.25rem;
3433
+ }
3434
+
3435
+ .w3eden .dropdown-menu-left {
3436
+ right: auto;
3437
+ left: 0;
3438
+ }
3439
+
3440
+ .w3eden .dropdown-menu-right {
3441
+ right: 0;
3442
+ left: auto;
3443
+ }
3444
+
3445
+ @media (min-width: 576px) {
3446
+ .w3eden .dropdown-menu-sm-left {
3447
+ right: auto;
3448
+ left: 0;
3449
+ }
3450
+
3451
+ .w3eden .dropdown-menu-sm-right {
3452
+ right: 0;
3453
+ left: auto;
3454
+ }
3455
+ }
3456
+
3457
+ @media (min-width: 768px) {
3458
+ .w3eden .dropdown-menu-md-left {
3459
+ right: auto;
3460
+ left: 0;
3461
+ }
3462
+
3463
+ .w3eden .dropdown-menu-md-right {
3464
+ right: 0;
3465
+ left: auto;
3466
+ }
3467
+ }
3468
+
3469
+ @media (min-width: 992px) {
3470
+ .w3eden .dropdown-menu-lg-left {
3471
+ right: auto;
3472
+ left: 0;
3473
+ }
3474
+
3475
+ .w3eden .dropdown-menu-lg-right {
3476
+ right: 0;
3477
+ left: auto;
3478
+ }
3479
+ }
3480
+
3481
+ @media (min-width: 1200px) {
3482
+ .w3eden .dropdown-menu-xl-left {
3483
+ right: auto;
3484
+ left: 0;
3485
+ }
3486
+
3487
+ .w3eden .dropdown-menu-xl-right {
3488
+ right: 0;
3489
+ left: auto;
3490
+ }
3491
+ }
3492
+
3493
+ .w3eden .dropup .dropdown-menu {
3494
+ top: auto;
3495
+ bottom: 100%;
3496
+ margin-top: 0;
3497
+ margin-bottom: 0.125rem;
3498
+ }
3499
+
3500
+ .w3eden .dropup .dropdown-toggle::after {
3501
+ display: inline-block;
3502
+ margin-left: 0.255em;
3503
+ vertical-align: 0.255em;
3504
+ content: "";
3505
+ border-top: 0;
3506
+ border-right: 0.3em solid transparent;
3507
+ border-bottom: 0.3em solid;
3508
+ border-left: 0.3em solid transparent;
3509
+ }
3510
+
3511
+ .w3eden .dropup .dropdown-toggle:empty::after {
3512
+ margin-left: 0;
3513
+ }
3514
+
3515
+ .w3eden .dropright .dropdown-menu {
3516
+ top: 0;
3517
+ right: auto;
3518
+ left: 100%;
3519
+ margin-top: 0;
3520
+ margin-left: 0.125rem;
3521
+ }
3522
+
3523
+ .w3eden .dropright .dropdown-toggle::after {
3524
+ display: inline-block;
3525
+ margin-left: 0.255em;
3526
+ vertical-align: 0.255em;
3527
+ content: "";
3528
+ border-top: 0.3em solid transparent;
3529
+ border-right: 0;
3530
+ border-bottom: 0.3em solid transparent;
3531
+ border-left: 0.3em solid;
3532
+ }
3533
+
3534
+ .w3eden .dropright .dropdown-toggle:empty::after {
3535
+ margin-left: 0;
3536
+ }
3537
+
3538
+ .w3eden .dropright .dropdown-toggle::after {
3539
+ vertical-align: 0;
3540
+ }
3541
+
3542
+ .w3eden .dropleft .dropdown-menu {
3543
+ top: 0;
3544
+ right: 100%;
3545
+ left: auto;
3546
+ margin-top: 0;
3547
+ margin-right: 0.125rem;
3548
+ }
3549
+
3550
+ .w3eden .dropleft .dropdown-toggle::after {
3551
+ display: inline-block;
3552
+ margin-left: 0.255em;
3553
+ vertical-align: 0.255em;
3554
+ content: "";
3555
+ }
3556
+
3557
+ .w3eden .dropleft .dropdown-toggle::after {
3558
+ display: none;
3559
+ }
3560
+
3561
+ .w3eden .dropleft .dropdown-toggle::before {
3562
+ display: inline-block;
3563
+ margin-right: 0.255em;
3564
+ vertical-align: 0.255em;
3565
+ content: "";
3566
+ border-top: 0.3em solid transparent;
3567
+ border-right: 0.3em solid;
3568
+ border-bottom: 0.3em solid transparent;
3569
+ }
3570
+
3571
+ .w3eden .dropleft .dropdown-toggle:empty::after {
3572
+ margin-left: 0;
3573
+ }
3574
+
3575
+ .w3eden .dropleft .dropdown-toggle::before {
3576
+ vertical-align: 0;
3577
+ }
3578
+
3579
+ .w3eden .dropdown-menu[x-placement^="top"], .w3eden .dropdown-menu[x-placement^="right"], .w3eden .dropdown-menu[x-placement^="bottom"], .w3eden .dropdown-menu[x-placement^="left"] {
3580
+ right: auto;
3581
+ bottom: auto;
3582
+ }
3583
+
3584
+ .w3eden .dropdown-divider {
3585
+ height: 0;
3586
+ margin: 0.5rem 0;
3587
+ overflow: hidden;
3588
+ border-top: 1px solid #e9ecef;
3589
+ }
3590
+
3591
+ .w3eden .dropdown-item {
3592
+ display: block;
3593
+ width: 100%;
3594
+ padding: 0.25rem 1.5rem;
3595
+ clear: both;
3596
+ font-weight: 400;
3597
+ color: #212529;
3598
+ text-align: inherit;
3599
+ white-space: nowrap;
3600
+ background-color: transparent;
3601
+ border: 0;
3602
+ }
3603
+
3604
+ .w3eden .dropdown-item:hover, .w3eden .dropdown-item:focus {
3605
+ color: #16181b;
3606
+ text-decoration: none;
3607
+ background-color: #f8f9fa;
3608
+ }
3609
+
3610
+ .w3eden .dropdown-item.active, .w3eden .dropdown-item:active {
3611
+ color: #fff;
3612
+ text-decoration: none;
3613
+ background-color: var(--color-primary);
3614
+ }
3615
+
3616
+ .w3eden .dropdown-item.disabled, .w3eden .dropdown-item:disabled {
3617
+ color: #6c757d;
3618
+ pointer-events: none;
3619
+ background-color: transparent;
3620
+ }
3621
+
3622
+ .w3eden .dropdown-menu.show {
3623
+ display: block;
3624
+ }
3625
+
3626
+ .w3eden .dropdown-header {
3627
+ display: block;
3628
+ padding: 0.5rem 1.5rem;
3629
+ margin-bottom: 0;
3630
+ font-size: 0.875rem;
3631
+ color: #6c757d;
3632
+ white-space: nowrap;
3633
+ }
3634
+
3635
+ .w3eden .dropdown-item-text {
3636
+ display: block;
3637
+ padding: 0.25rem 1.5rem;
3638
+ color: #212529;
3639
+ }
3640
+
3641
+ .w3eden .btn-group,
3642
+ .w3eden .btn-group-vertical {
3643
+ position: relative;
3644
+ display: -ms-inline-flexbox;
3645
+ display: inline-flex;
3646
+ vertical-align: middle;
3647
+ }
3648
+
3649
+ .w3eden .btn-group > .btn,
3650
+ .w3eden .btn-group-vertical > .btn {
3651
+ position: relative;
3652
+ -ms-flex: 1 1 auto;
3653
+ flex: 1 1 auto;
3654
+ }
3655
+
3656
+ .w3eden .btn-group > .btn:hover,
3657
+ .w3eden .btn-group-vertical > .btn:hover {
3658
+ z-index: 1;
3659
+ }
3660
+
3661
+ .w3eden .btn-group > .btn:focus, .w3eden .btn-group > .btn:active, .w3eden .btn-group > .btn.active,
3662
+ .w3eden .btn-group-vertical > .btn:focus,
3663
+ .w3eden .btn-group-vertical > .btn:active,
3664
+ .w3eden .btn-group-vertical > .btn.active {
3665
+ z-index: 1;
3666
+ }
3667
+
3668
+ .w3eden .btn-toolbar {
3669
+ display: -ms-flexbox;
3670
+ display: flex;
3671
+ -ms-flex-wrap: wrap;
3672
+ flex-wrap: wrap;
3673
+ -ms-flex-pack: start;
3674
+ justify-content: flex-start;
3675
+ }
3676
+
3677
+ .w3eden .btn-toolbar .input-group {
3678
+ width: auto;
3679
+ }
3680
+
3681
+ .w3eden .btn-group > .btn:not(:first-child),
3682
+ .w3eden .btn-group > .btn-group:not(:first-child) {
3683
+ margin-left: -1px;
3684
+ }
3685
+
3686
+ .w3eden .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
3687
+ .w3eden .btn-group > .btn-group:not(:last-child) > .btn {
3688
+ border-top-right-radius: 0;
3689
+ border-bottom-right-radius: 0;
3690
+ }
3691
+
3692
+ .w3eden .btn-group > .btn:not(:first-child),
3693
+ .w3eden .btn-group > .btn-group:not(:first-child) > .btn {
3694
+ border-top-left-radius: 0;
3695
+ border-bottom-left-radius: 0;
3696
+ }
3697
+
3698
+ .w3eden .dropdown-toggle-split {
3699
+ padding-right: 0.5625rem;
3700
+ padding-left: 0.5625rem;
3701
+ }
3702
+
3703
+ .w3eden .dropdown-toggle-split::after,
3704
+ .w3eden .dropup .dropdown-toggle-split::after,
3705
+ .w3eden .dropright .dropdown-toggle-split::after {
3706
+ margin-left: 0;
3707
+ }
3708
+
3709
+ .w3eden .dropleft .dropdown-toggle-split::before {
3710
+ margin-right: 0;
3711
+ }
3712
+
3713
+ .w3eden .btn-sm + .dropdown-toggle-split, .w3eden .btn-group-sm > .btn + .dropdown-toggle-split {
3714
+ padding-right: 0.375rem;
3715
+ padding-left: 0.375rem;
3716
+ }
3717
+
3718
+ .w3eden .btn-lg + .dropdown-toggle-split, .w3eden .btn-group-lg > .btn + .dropdown-toggle-split {
3719
+ padding-right: 0.75rem;
3720
+ padding-left: 0.75rem;
3721
+ }
3722
+
3723
+ .w3eden .btn-group-vertical {
3724
+ -ms-flex-direction: column;
3725
+ flex-direction: column;
3726
+ -ms-flex-align: start;
3727
+ align-items: flex-start;
3728
+ -ms-flex-pack: center;
3729
+ justify-content: center;
3730
+ }
3731
+
3732
+ .w3eden .btn-group-vertical > .btn,
3733
+ .w3eden .btn-group-vertical > .btn-group {
3734
+ width: 100%;
3735
+ }
3736
+
3737
+ .w3eden .btn-group-vertical > .btn:not(:first-child),
3738
+ .w3eden .btn-group-vertical > .btn-group:not(:first-child) {
3739
+ margin-top: -1px;
3740
+ }
3741
+
3742
+ .w3eden .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
3743
+ .w3eden .btn-group-vertical > .btn-group:not(:last-child) > .btn {
3744
+ border-bottom-right-radius: 0;
3745
+ border-bottom-left-radius: 0;
3746
+ }
3747
+
3748
+ .w3eden .btn-group-vertical > .btn:not(:first-child),
3749
+ .w3eden .btn-group-vertical > .btn-group:not(:first-child) > .btn {
3750
+ border-top-left-radius: 0;
3751
+ border-top-right-radius: 0;
3752
+ }
3753
+
3754
+ .w3eden .btn-group-toggle > .btn,
3755
+ .w3eden .btn-group-toggle > .btn-group > .btn {
3756
+ margin-bottom: 0;
3757
+ }
3758
+
3759
+ .w3eden .btn-group-toggle > .btn input[type="radio"],
3760
+ .w3eden .btn-group-toggle > .btn input[type="checkbox"],
3761
+ .w3eden .btn-group-toggle > .btn-group > .btn input[type="radio"],
3762
+ .w3eden .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
3763
+ position: absolute;
3764
+ clip: rect(0, 0, 0, 0);
3765
+ pointer-events: none;
3766
+ }
3767
+
3768
+ .w3eden .input-group {
3769
+ position: relative;
3770
+ display: -ms-flexbox;
3771
+ display: flex;
3772
+ -ms-flex-wrap: wrap;
3773
+ flex-wrap: wrap;
3774
+ -ms-flex-align: stretch;
3775
+ align-items: stretch;
3776
+ width: 100%;
3777
+ }
3778
+
3779
+ .w3eden .input-group > .form-control,
3780
+ .w3eden .input-group > .form-control-plaintext,
3781
+ .w3eden .input-group > .custom-select,
3782
+ .w3eden .input-group > .custom-file {
3783
+ position: relative;
3784
+ -ms-flex: 1 1 0%;
3785
+ flex: 1 1 0%;
3786
+ min-width: 0;
3787
+ margin-bottom: 0;
3788
+ }
3789
+
3790
+ .w3eden .input-group > .form-control + .form-control,
3791
+ .w3eden .input-group > .form-control + .custom-select,
3792
+ .w3eden .input-group > .form-control + .custom-file,
3793
+ .w3eden .input-group > .form-control-plaintext + .form-control,
3794
+ .w3eden .input-group > .form-control-plaintext + .custom-select,
3795
+ .w3eden .input-group > .form-control-plaintext + .custom-file,
3796
+ .w3eden .input-group > .custom-select + .form-control,
3797
+ .w3eden .input-group > .custom-select + .custom-select,
3798
+ .w3eden .input-group > .custom-select + .custom-file,
3799
+ .w3eden .input-group > .custom-file + .form-control,
3800
+ .w3eden .input-group > .custom-file + .custom-select,
3801
+ .w3eden .input-group > .custom-file + .custom-file {
3802
+ margin-left: -1px;
3803
+ }
3804
+
3805
+ .w3eden .input-group > .form-control:focus,
3806
+ .w3eden .input-group > .custom-select:focus,
3807
+ .w3eden .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
3808
+ z-index: 3;
3809
+ }
3810
+
3811
+ .w3eden .input-group > .custom-file .custom-file-input:focus {
3812
+ z-index: 4;
3813
+ }
3814
+
3815
+ .w3eden .input-group > .form-control:not(:last-child),
3816
+ .w3eden .input-group > .custom-select:not(:last-child) {
3817
+ border-top-right-radius: 0;
3818
+ border-bottom-right-radius: 0;
3819
+ }
3820
+
3821
+ .w3eden .input-group > .form-control:not(:first-child),
3822
+ .w3eden .input-group > .custom-select:not(:first-child) {
3823
+ border-top-left-radius: 0;
3824
+ border-bottom-left-radius: 0;
3825
+ }
3826
+
3827
+ .w3eden .input-group > .custom-file {
3828
+ display: -ms-flexbox;
3829
+ display: flex;
3830
+ -ms-flex-align: center;
3831
+ align-items: center;
3832
+ }
3833
+
3834
+ .w3eden .input-group > .custom-file:not(:last-child) .custom-file-label,
3835
+ .w3eden .input-group > .custom-file:not(:last-child) .custom-file-label::after {
3836
+ border-top-right-radius: 0;
3837
+ border-bottom-right-radius: 0;
3838
+ }
3839
+
3840
+ .w3eden .input-group > .custom-file:not(:first-child) .custom-file-label {
3841
+ border-top-left-radius: 0;
3842
+ border-bottom-left-radius: 0;
3843
+ }
3844
+
3845
+ .w3eden .input-group-prepend,
3846
+ .w3eden .input-group-append {
3847
+ display: -ms-flexbox;
3848
+ display: flex;
3849
+ }
3850
+
3851
+ .w3eden .input-group-prepend .btn,
3852
+ .w3eden .input-group-append .btn {
3853
+ position: relative;
3854
+ z-index: 2;
3855
+ }
3856
+
3857
+ .w3eden .input-group-prepend .btn:focus,
3858
+ .w3eden .input-group-append .btn:focus {
3859
+ z-index: 3;
3860
+ }
3861
+
3862
+ .w3eden .input-group-prepend .btn + .btn,
3863
+ .w3eden .input-group-prepend .btn + .input-group-text,
3864
+ .w3eden .input-group-prepend .input-group-text + .input-group-text,
3865
+ .w3eden .input-group-prepend .input-group-text + .btn,
3866
+ .w3eden .input-group-append .btn + .btn,
3867
+ .w3eden .input-group-append .btn + .input-group-text,
3868
+ .w3eden .input-group-append .input-group-text + .input-group-text,
3869
+ .w3eden .input-group-append .input-group-text + .btn {
3870
+ margin-left: -1px;
3871
+ }
3872
+
3873
+ .w3eden .input-group-prepend {
3874
+ margin-right: -1px;
3875
+ }
3876
+
3877
+ .w3eden .input-group-append {
3878
+ margin-left: -1px;
3879
+ }
3880
+
3881
+ .w3eden .input-group-text {
3882
+ display: -ms-flexbox;
3883
+ display: flex;
3884
+ -ms-flex-align: center;
3885
+ align-items: center;
3886
+ padding: 0.375rem 0.75rem;
3887
+ margin-bottom: 0;
3888
+ font-size: 1rem;
3889
+ font-weight: 400;
3890
+ line-height: 1.5;
3891
+ color: #495057;
3892
+ text-align: center;
3893
+ white-space: nowrap;
3894
+ background-color: #e9ecef;
3895
+ border: 1px solid #ced4da;
3896
+ border-radius: 0.25rem;
3897
+ }
3898
+
3899
+ .w3eden .input-group-text input[type="radio"],
3900
+ .w3eden .input-group-text input[type="checkbox"] {
3901
+ margin-top: 0;
3902
+ }
3903
+
3904
+ .w3eden .input-group-lg > .form-control:not(textarea),
3905
+ .w3eden .input-group-lg > .custom-select {
3906
+ height: calc(1.5em + 1rem + 2px);
3907
+ }
3908
+
3909
+ .w3eden .input-group-lg > .form-control,
3910
+ .w3eden .input-group-lg > .custom-select,
3911
+ .w3eden .input-group-lg > .input-group-prepend > .input-group-text,
3912
+ .w3eden .input-group-lg > .input-group-append > .input-group-text,
3913
+ .w3eden .input-group-lg > .input-group-prepend > .btn,
3914
+ .w3eden .input-group-lg > .input-group-append > .btn {
3915
+ padding: 0.5rem 1rem;
3916
+ font-size: 1.25rem;
3917
+ line-height: 1.5;
3918
+ border-radius: 0.3rem;
3919
+ }
3920
+
3921
+ .w3eden .input-group-sm > .form-control:not(textarea),
3922
+ .w3eden .input-group-sm > .custom-select {
3923
+ height: calc(1.5em + 0.5rem + 2px);
3924
+ }
3925
+
3926
+ .w3eden .input-group-sm > .form-control,
3927
+ .w3eden .input-group-sm > .custom-select,
3928
+ .w3eden .input-group-sm > .input-group-prepend > .input-group-text,
3929
+ .w3eden .input-group-sm > .input-group-append > .input-group-text,
3930
+ .w3eden .input-group-sm > .input-group-prepend > .btn,
3931
+ .w3eden .input-group-sm > .input-group-append > .btn {
3932
+ padding: 0.25rem 0.5rem;
3933
+ font-size: 0.875rem;
3934
+ line-height: 1.5;
3935
+ border-radius: 0.2rem;
3936
+ }
3937
+
3938
+ .w3eden .input-group-lg > .custom-select,
3939
+ .w3eden .input-group-sm > .custom-select {
3940
+ padding-right: 1.75rem;
3941
+ }
3942
+
3943
+ .w3eden .input-group > .input-group-prepend > .btn,
3944
+ .w3eden .input-group > .input-group-prepend > .input-group-text,
3945
+ .w3eden .input-group > .input-group-append:not(:last-child) > .btn,
3946
+ .w3eden .input-group > .input-group-append:not(:last-child) > .input-group-text,
3947
+ .w3eden .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3948
+ .w3eden .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
3949
+ border-top-right-radius: 0;
3950
+ border-bottom-right-radius: 0;
3951
+ }
3952
+
3953
+ .w3eden .input-group > .input-group-append > .btn,
3954
+ .w3eden .input-group > .input-group-append > .input-group-text,
3955
+ .w3eden .input-group > .input-group-prepend:not(:first-child) > .btn,
3956
+ .w3eden .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
3957
+ .w3eden .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
3958
+ .w3eden .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
3959
+ border-top-left-radius: 0;
3960
+ border-bottom-left-radius: 0;
3961
+ }
3962
+
3963
+ .w3eden .custom-control {
3964
+ position: relative;
3965
+ display: block;
3966
+ min-height: 1.5rem;
3967
+ padding-left: 1.5rem;
3968
+ }
3969
+
3970
+ .w3eden .custom-control-inline {
3971
+ display: -ms-inline-flexbox;
3972
+ display: inline-flex;
3973
+ margin-right: 1rem;
3974
+ }
3975
+
3976
+ .w3eden .custom-control-input {
3977
+ position: absolute;
3978
+ left: 0;
3979
+ z-index: -1;
3980
+ width: 1rem;
3981
+ height: 1.25rem;
3982
+ opacity: 0;
3983
+ }
3984
+
3985
+ .w3eden .custom-control-input:checked ~ .custom-control-label::before {
3986
+ color: #fff;
3987
+ border-color: var(--color-primary);
3988
+ background-color: var(--color-primary);
3989
+ }
3990
+
3991
+ .w3eden .custom-control-input:focus ~ .custom-control-label::before {
3992
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
3993
+ }
3994
+
3995
+ .w3eden .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
3996
+ border-color: #80bdff;
3997
+ }
3998
+
3999
+ .w3eden .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
4000
+ color: #fff;
4001
+ background-color: #b3d7ff;
4002
+ border-color: #b3d7ff;
4003
+ }
4004
+
4005
+ .w3eden .custom-control-input[disabled] ~ .custom-control-label, .w3eden .custom-control-input:disabled ~ .custom-control-label {
4006
+ color: #6c757d;
4007
+ }
4008
+
4009
+ .w3eden .custom-control-input[disabled] ~ .custom-control-label::before, .w3eden .custom-control-input:disabled ~ .custom-control-label::before {
4010
+ background-color: #e9ecef;
4011
+ }
4012
+
4013
+ .w3eden .custom-control-label {
4014
+ position: relative;
4015
+ margin-bottom: 0;
4016
+ vertical-align: top;
4017
+ }
4018
+
4019
+ .w3eden .custom-control-label::before {
4020
+ position: absolute;
4021
+ top: 0.25rem;
4022
+ left: -1.5rem;
4023
+ display: block;
4024
+ width: 1rem;
4025
+ height: 1rem;
4026
+ pointer-events: none;
4027
+ content: "";
4028
+ background-color: #fff;
4029
+ border: #adb5bd solid 1px;
4030
+ }
4031
+
4032
+ .w3eden .custom-control-label::after {
4033
+ position: absolute;
4034
+ top: 0.25rem;
4035
+ left: -1.5rem;
4036
+ display: block;
4037
+ width: 1rem;
4038
+ height: 1rem;
4039
+ content: "";
4040
+ background: no-repeat 50% / 50% 50%;
4041
+ }
4042
+
4043
+ .w3eden .custom-checkbox .custom-control-label::before {
4044
+ border-radius: 0.25rem;
4045
+ }
4046
+
4047
+ .w3eden .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
4048
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
4049
+ }
4050
+
4051
+ .w3eden .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
4052
+ border-color: var(--color-primary);
4053
+ background-color: var(--color-primary);
4054
+ }
4055
+
4056
+ .w3eden .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
4057
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
4058
+ }
4059
+
4060
+ .w3eden .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
4061
+ background-color: rgba(0, 123, 255, 0.5);
4062
+ }
4063
+
4064
+ .w3eden .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
4065
+ background-color: rgba(0, 123, 255, 0.5);
4066
+ }
4067
+
4068
+ .w3eden .custom-radio .custom-control-label::before {
4069
+ border-radius: 50%;
4070
+ }
4071
+
4072
+ .w3eden .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
4073
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
4074
+ }
4075
+
4076
+ .w3eden .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
4077
+ background-color: rgba(0, 123, 255, 0.5);
4078
+ }
4079
+
4080
+ .w3eden .custom-switch {
4081
+ padding-left: 2.25rem;
4082
+ }
4083
+
4084
+ .w3eden .custom-switch .custom-control-label::before {
4085
+ left: -2.25rem;
4086
+ width: 1.75rem;
4087
+ pointer-events: all;
4088
+ border-radius: 0.5rem;
4089
+ }
4090
+
4091
+ .w3eden .custom-switch .custom-control-label::after {
4092
+ top: calc(0.25rem + 2px);
4093
+ left: calc(-2.25rem + 2px);
4094
+ width: calc(1rem - 4px);
4095
+ height: calc(1rem - 4px);
4096
+ background-color: #adb5bd;
4097
+ border-radius: 0.5rem;
4098
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
4099
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4100
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
4101
+ }
4102
+
4103
+ @media (prefers-reduced-motion: reduce) {
4104
+ .w3eden .custom-switch .custom-control-label::after {
4105
+ transition: none;
4106
+ }
4107
+ }
4108
+
4109
+ .w3eden .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
4110
+ background-color: #fff;
4111
+ -webkit-transform: translateX(0.75rem);
4112
+ transform: translateX(0.75rem);
4113
+ }
4114
+
4115
+ .w3eden .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
4116
+ background-color: rgba(0, 123, 255, 0.5);
4117
+ }
4118
+
4119
+ .w3eden .custom-select {
4120
+ display: inline-block;
4121
+ width: 100%;
4122
+ height: calc(1.5em + 0.75rem + 2px);
4123
+ padding: 0.375rem 1.75rem 0.375rem 0.75rem;
4124
+ font-size: 1rem;
4125
+ font-weight: 400;
4126
+ line-height: 1.5;
4127
+ color: #495057;
4128
+ vertical-align: middle;
4129
+ background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
4130
+ border: 1px solid #ced4da;
4131
+ border-radius: 0.25rem;
4132
+ -webkit-appearance: none;
4133
+ -moz-appearance: none;
4134
+ appearance: none;
4135
+ }
4136
+
4137
+ .w3eden .custom-select:focus {
4138
+ border-color: #80bdff;
4139
+ outline: 0;
4140
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4141
+ }
4142
+
4143
+ .w3eden .custom-select:focus::-ms-value {
4144
+ color: #495057;
4145
+ background-color: #fff;
4146
+ }
4147
+
4148
+ .w3eden .custom-select[multiple], .w3eden .custom-select[size]:not([size="1"]) {
4149
+ height: auto;
4150
+ padding-right: 0.75rem;
4151
+ background-image: none;
4152
+ }
4153
+
4154
+ .w3eden .custom-select:disabled {
4155
+ color: #6c757d;
4156
+ background-color: #e9ecef;
4157
+ }
4158
+
4159
+ .w3eden .custom-select::-ms-expand {
4160
+ display: none;
4161
+ }
4162
+
4163
+ .w3eden .custom-select:-moz-focusring {
4164
+ color: transparent;
4165
+ text-shadow: 0 0 0 #495057;
4166
+ }
4167
+
4168
+ .w3eden .custom-select-sm {
4169
+ height: calc(1.5em + 0.5rem + 2px);
4170
+ padding-top: 0.25rem;
4171
+ padding-bottom: 0.25rem;
4172
+ padding-left: 0.5rem;
4173
+ font-size: 0.875rem;
4174
+ }
4175
+
4176
+ .w3eden .custom-select-lg {
4177
+ height: calc(1.5em + 1rem + 2px);
4178
+ padding-top: 0.5rem;
4179
+ padding-bottom: 0.5rem;
4180
+ padding-left: 1rem;
4181
+ font-size: 1.25rem;
4182
+ }
4183
+
4184
+ .w3eden .custom-file {
4185
+ position: relative;
4186
+ display: inline-block;
4187
+ width: 100%;
4188
+ height: calc(1.5em + 0.75rem + 2px);
4189
+ margin-bottom: 0;
4190
+ }
4191
+
4192
+ .w3eden .custom-file-input {
4193
+ position: relative;
4194
+ z-index: 2;
4195
+ width: 100%;
4196
+ height: calc(1.5em + 0.75rem + 2px);
4197
+ margin: 0;
4198
+ opacity: 0;
4199
+ }
4200
+
4201
+ .w3eden .custom-file-input:focus ~ .custom-file-label {
4202
+ border-color: #80bdff;
4203
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4204
+ }
4205
+
4206
+ .w3eden .custom-file-input[disabled] ~ .custom-file-label,
4207
+ .w3eden .custom-file-input:disabled ~ .custom-file-label {
4208
+ background-color: #e9ecef;
4209
+ }
4210
+
4211
+ .w3eden .custom-file-input:lang(en) ~ .custom-file-label::after {
4212
+ content: "Browse";
4213
+ }
4214
+
4215
+ .w3eden .custom-file-input ~ .custom-file-label[data-browse]::after {
4216
+ content: attr(data-browse);
4217
+ }
4218
+
4219
+ .w3eden .custom-file-label {
4220
+ position: absolute;
4221
+ top: 0;
4222
+ right: 0;
4223
+ left: 0;
4224
+ z-index: 1;
4225
+ height: calc(1.5em + 0.75rem + 2px);
4226
+ padding: 0.375rem 0.75rem;
4227
+ font-weight: 400;
4228
+ line-height: 1.5;
4229
+ color: #495057;
4230
+ background-color: #fff;
4231
+ border: 1px solid #ced4da;
4232
+ border-radius: 0.25rem;
4233
+ }
4234
+
4235
+ .w3eden .custom-file-label::after {
4236
+ position: absolute;
4237
+ top: 0;
4238
+ right: 0;
4239
+ bottom: 0;
4240
+ z-index: 3;
4241
+ display: block;
4242
+ height: calc(1.5em + 0.75rem);
4243
+ padding: 0.375rem 0.75rem;
4244
+ line-height: 1.5;
4245
+ color: #495057;
4246
+ content: "Browse";
4247
+ background-color: #e9ecef;
4248
+ border-left: inherit;
4249
+ border-radius: 0 0.25rem 0.25rem 0;
4250
+ }
4251
+
4252
+ .w3eden .custom-range {
4253
+ width: 100%;
4254
+ height: 1.4rem;
4255
+ padding: 0;
4256
+ background-color: transparent;
4257
+ -webkit-appearance: none;
4258
+ -moz-appearance: none;
4259
+ appearance: none;
4260
+ }
4261
+
4262
+ .w3eden .custom-range:focus {
4263
+ outline: none;
4264
+ }
4265
+
4266
+ .w3eden .custom-range:focus::-webkit-slider-thumb {
4267
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4268
+ }
4269
+
4270
+ .w3eden .custom-range:focus::-moz-range-thumb {
4271
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4272
+ }
4273
+
4274
+ .w3eden .custom-range:focus::-ms-thumb {
4275
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4276
+ }
4277
+
4278
+ .w3eden .custom-range::-moz-focus-outer {
4279
+ border: 0;
4280
+ }
4281
+
4282
+ .w3eden .custom-range::-webkit-slider-thumb {
4283
+ width: 1rem;
4284
+ height: 1rem;
4285
+ margin-top: -0.25rem;
4286
+ background-color: var(--color-primary);
4287
+ border: 0;
4288
+ border-radius: 1rem;
4289
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4290
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4291
+ -webkit-appearance: none;
4292
+ appearance: none;
4293
+ }
4294
+
4295
+ @media (prefers-reduced-motion: reduce) {
4296
+ .w3eden .custom-range::-webkit-slider-thumb {
4297
+ -webkit-transition: none;
4298
+ transition: none;
4299
+ }
4300
+ }
4301
+
4302
+ .w3eden .custom-range::-webkit-slider-thumb:active {
4303
+ background-color: #b3d7ff;
4304
+ }
4305
+
4306
+ .w3eden .custom-range::-webkit-slider-runnable-track {
4307
+ width: 100%;
4308
+ height: 0.5rem;
4309
+ color: transparent;
4310
+ cursor: pointer;
4311
+ background-color: #dee2e6;
4312
+ border-color: transparent;
4313
+ border-radius: 1rem;
4314
+ }
4315
+
4316
+ .w3eden .custom-range::-moz-range-thumb {
4317
+ width: 1rem;
4318
+ height: 1rem;
4319
+ background-color: var(--color-primary);
4320
+ border: 0;
4321
+ border-radius: 1rem;
4322
+ -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4323
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4324
+ -moz-appearance: none;
4325
+ appearance: none;
4326
+ }
4327
+
4328
+ @media (prefers-reduced-motion: reduce) {
4329
+ .w3eden .custom-range::-moz-range-thumb {
4330
+ -moz-transition: none;
4331
+ transition: none;
4332
+ }
4333
+ }
4334
+
4335
+ .w3eden .custom-range::-moz-range-thumb:active {
4336
+ background-color: #b3d7ff;
4337
+ }
4338
+
4339
+ .w3eden .custom-range::-moz-range-track {
4340
+ width: 100%;
4341
+ height: 0.5rem;
4342
+ color: transparent;
4343
+ cursor: pointer;
4344
+ background-color: #dee2e6;
4345
+ border-color: transparent;
4346
+ border-radius: 1rem;
4347
+ }
4348
+
4349
+ .w3eden .custom-range::-ms-thumb {
4350
+ width: 1rem;
4351
+ height: 1rem;
4352
+ margin-top: 0;
4353
+ margin-right: 0.2rem;
4354
+ margin-left: 0.2rem;
4355
+ background-color: var(--color-primary);
4356
+ border: 0;
4357
+ border-radius: 1rem;
4358
+ -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4359
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4360
+ appearance: none;
4361
+ }
4362
+
4363
+ @media (prefers-reduced-motion: reduce) {
4364
+ .w3eden .custom-range::-ms-thumb {
4365
+ -ms-transition: none;
4366
+ transition: none;
4367
+ }
4368
+ }
4369
+
4370
+ .w3eden .custom-range::-ms-thumb:active {
4371
+ background-color: #b3d7ff;
4372
+ }
4373
+
4374
+ .w3eden .custom-range::-ms-track {
4375
+ width: 100%;
4376
+ height: 0.5rem;
4377
+ color: transparent;
4378
+ cursor: pointer;
4379
+ background-color: transparent;
4380
+ border-color: transparent;
4381
+ border-width: 0.5rem;
4382
+ }
4383
+
4384
+ .w3eden .custom-range::-ms-fill-lower {
4385
+ background-color: #dee2e6;
4386
+ border-radius: 1rem;
4387
+ }
4388
+
4389
+ .w3eden .custom-range::-ms-fill-upper {
4390
+ margin-right: 15px;
4391
+ background-color: #dee2e6;
4392
+ border-radius: 1rem;
4393
+ }
4394
+
4395
+ .w3eden .custom-range:disabled::-webkit-slider-thumb {
4396
+ background-color: #adb5bd;
4397
+ }
4398
+
4399
+ .w3eden .custom-range:disabled::-webkit-slider-runnable-track {
4400
+ cursor: default;
4401
+ }
4402
+
4403
+ .w3eden .custom-range:disabled::-moz-range-thumb {
4404
+ background-color: #adb5bd;
4405
+ }
4406
+
4407
+ .w3eden .custom-range:disabled::-moz-range-track {
4408
+ cursor: default;
4409
+ }
4410
+
4411
+ .w3eden .custom-range:disabled::-ms-thumb {
4412
+ background-color: #adb5bd;
4413
+ }
4414
+
4415
+ .w3eden .custom-control-label::before,
4416
+ .w3eden .custom-file-label,
4417
+ .w3eden .custom-select {
4418
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4419
+ }
4420
+
4421
+ @media (prefers-reduced-motion: reduce) {
4422
+ .w3eden .custom-control-label::before,
4423
+ .w3eden .custom-file-label,
4424
+ .w3eden .custom-select {
4425
+ transition: none;
4426
+ }
4427
+ }
4428
+
4429
+ .w3eden .nav {
4430
+ display: -ms-flexbox;
4431
+ display: flex;
4432
+ -ms-flex-wrap: wrap;
4433
+ flex-wrap: wrap;
4434
+ padding-left: 0;
4435
+ margin-bottom: 0;
4436
+ list-style: none;
4437
+ }
4438
+
4439
+ .w3eden .nav-link {
4440
+ display: block;
4441
+ padding: 0.5rem 1rem;
4442
+ }
4443
+
4444
+ .w3eden .nav-link:hover, .w3eden .nav-link:focus {
4445
+ text-decoration: none;
4446
+ }
4447
+
4448
+ .w3eden .nav-link.disabled {
4449
+ color: #6c757d;
4450
+ pointer-events: none;
4451
+ cursor: default;
4452
+ }
4453
+
4454
+ .w3eden .nav-tabs {
4455
+ border-bottom: 1px solid #dee2e6;
4456
+ }
4457
+
4458
+ .w3eden .nav-tabs .nav-item {
4459
+ margin-bottom: -1px;
4460
+ }
4461
+
4462
+ .w3eden .nav-tabs .nav-link {
4463
+ border: 1px solid transparent;
4464
+ border-top-left-radius: 0.25rem;
4465
+ border-top-right-radius: 0.25rem;
4466
+ }
4467
+
4468
+ .w3eden .nav-tabs .nav-link:hover, .w3eden .nav-tabs .nav-link:focus {
4469
+ border-color: #e9ecef #e9ecef #dee2e6;
4470
+ }
4471
+
4472
+ .w3eden .nav-tabs .nav-link.disabled {
4473
+ color: #6c757d;
4474
+ background-color: transparent;
4475
+ border-color: transparent;
4476
+ }
4477
+
4478
+ .w3eden .nav-tabs .nav-link.active,
4479
+ .w3eden .nav-tabs .nav-item.show .nav-link {
4480
+ color: #495057;
4481
+ background-color: #fff;
4482
+ border-color: #dee2e6 #dee2e6 #fff;
4483
+ }
4484
+
4485
+ .w3eden .nav-tabs .dropdown-menu {
4486
+ margin-top: -1px;
4487
+ border-top-left-radius: 0;
4488
+ border-top-right-radius: 0;
4489
+ }
4490
+
4491
+ .w3eden .nav-pills .nav-link {
4492
+ border-radius: 0.25rem;
4493
+ }
4494
+
4495
+ .w3eden .nav-pills .nav-link.active,
4496
+ .w3eden .nav-pills .show > .nav-link {
4497
+ color: #fff;
4498
+ background-color: var(--color-primary);
4499
+ }
4500
+
4501
+ .w3eden .nav-fill .nav-item {
4502
+ -ms-flex: 1 1 auto;
4503
+ flex: 1 1 auto;
4504
+ text-align: center;
4505
+ }
4506
+
4507
+ .w3eden .nav-justified .nav-item {
4508
+ -ms-flex-preferred-size: 0;
4509
+ flex-basis: 0;
4510
+ -ms-flex-positive: 1;
4511
+ flex-grow: 1;
4512
+ text-align: center;
4513
+ }
4514
+
4515
+ .w3eden .tab-content > .tab-pane {
4516
+ display: none;
4517
+ }
4518
+
4519
+ .w3eden .tab-content > .active {
4520
+ display: block;
4521
+ }
4522
+
4523
+ .w3eden .navbar {
4524
+ position: relative;
4525
+ display: -ms-flexbox;
4526
+ display: flex;
4527
+ -ms-flex-wrap: wrap;
4528
+ flex-wrap: wrap;
4529
+ -ms-flex-align: center;
4530
+ align-items: center;
4531
+ -ms-flex-pack: justify;
4532
+ justify-content: space-between;
4533
+ padding: 0.5rem 1rem;
4534
+ }
4535
+
4536
+ .w3eden .navbar .container,
4537
+ .w3eden .navbar .container-fluid, .w3eden .navbar .container-sm, .w3eden .navbar .container-md, .w3eden .navbar .container-lg, .w3eden .navbar .container-xl {
4538
+ display: -ms-flexbox;
4539
+ display: flex;
4540
+ -ms-flex-wrap: wrap;
4541
+ flex-wrap: wrap;
4542
+ -ms-flex-align: center;
4543
+ align-items: center;
4544
+ -ms-flex-pack: justify;
4545
+ justify-content: space-between;
4546
+ }
4547
+
4548
+ .w3eden .navbar-brand {
4549
+ display: inline-block;
4550
+ padding-top: 0.3125rem;
4551
+ padding-bottom: 0.3125rem;
4552
+ margin-right: 1rem;
4553
+ font-size: 1.25rem;
4554
+ line-height: inherit;
4555
+ white-space: nowrap;
4556
+ }
4557
+
4558
+ .w3eden .navbar-brand:hover, .w3eden .navbar-brand:focus {
4559
+ text-decoration: none;
4560
+ }
4561
+
4562
+ .w3eden .navbar-nav {
4563
+ display: -ms-flexbox;
4564
+ display: flex;
4565
+ -ms-flex-direction: column;
4566
+ flex-direction: column;
4567
+ padding-left: 0;
4568
+ margin-bottom: 0;
4569
+ list-style: none;
4570
+ }
4571
+
4572
+ .w3eden .navbar-nav .nav-link {
4573
+ padding-right: 0;
4574
+ padding-left: 0;
4575
+ }
4576
+
4577
+ .w3eden .navbar-nav .dropdown-menu {
4578
+ position: static;
4579
+ float: none;
4580
+ }
4581
+
4582
+ .w3eden .navbar-text {
4583
+ display: inline-block;
4584
+ padding-top: 0.5rem;
4585
+ padding-bottom: 0.5rem;
4586
+ }
4587
+
4588
+ .w3eden .navbar-collapse {
4589
+ -ms-flex-preferred-size: 100%;
4590
+ flex-basis: 100%;
4591
+ -ms-flex-positive: 1;
4592
+ flex-grow: 1;
4593
+ -ms-flex-align: center;
4594
+ align-items: center;
4595
+ }
4596
+
4597
+ .w3eden .navbar-toggler {
4598
+ padding: 0.25rem 0.75rem;
4599
+ font-size: 1.25rem;
4600
+ line-height: 1;
4601
+ background-color: transparent;
4602
+ border: 1px solid transparent;
4603
+ border-radius: 0.25rem;
4604
+ }
4605
+
4606
+ .w3eden .navbar-toggler:hover, .w3eden .navbar-toggler:focus {
4607
+ text-decoration: none;
4608
+ }
4609
+
4610
+ .w3eden .navbar-toggler-icon {
4611
+ display: inline-block;
4612
+ width: 1.5em;
4613
+ height: 1.5em;
4614
+ vertical-align: middle;
4615
+ content: "";
4616
+ background: no-repeat center center;
4617
+ background-size: 100% 100%;
4618
+ }
4619
+
4620
+ @media (max-width: 575.98px) {
4621
+ .w3eden .navbar-expand-sm > .container,
4622
+ .w3eden .navbar-expand-sm > .container-fluid, .w3eden .navbar-expand-sm > .container-sm, .w3eden .navbar-expand-sm > .container-md, .w3eden .navbar-expand-sm > .container-lg, .w3eden .navbar-expand-sm > .container-xl {
4623
+ padding-right: 0;
4624
+ padding-left: 0;
4625
+ }
4626
+ }
4627
+
4628
+ @media (min-width: 576px) {
4629
+ .w3eden .navbar-expand-sm {
4630
+ -ms-flex-flow: row nowrap;
4631
+ flex-flow: row nowrap;
4632
+ -ms-flex-pack: start;
4633
+ justify-content: flex-start;
4634
+ }
4635
+
4636
+ .w3eden .navbar-expand-sm .navbar-nav {
4637
+ -ms-flex-direction: row;
4638
+ flex-direction: row;
4639
+ }
4640
+
4641
+ .w3eden .navbar-expand-sm .navbar-nav .dropdown-menu {
4642
+ position: absolute;
4643
+ }
4644
+
4645
+ .w3eden .navbar-expand-sm .navbar-nav .nav-link {
4646
+ padding-right: 0.5rem;
4647
+ padding-left: 0.5rem;
4648
+ }
4649
+
4650
+ .w3eden .navbar-expand-sm > .container,
4651
+ .w3eden .navbar-expand-sm > .container-fluid, .w3eden .navbar-expand-sm > .container-sm, .w3eden .navbar-expand-sm > .container-md, .w3eden .navbar-expand-sm > .container-lg, .w3eden .navbar-expand-sm > .container-xl {
4652
+ -ms-flex-wrap: nowrap;
4653
+ flex-wrap: nowrap;
4654
+ }
4655
+
4656
+ .w3eden .navbar-expand-sm .navbar-collapse {
4657
+ display: -ms-flexbox !important;
4658
+ display: flex !important;
4659
+ -ms-flex-preferred-size: auto;
4660
+ flex-basis: auto;
4661
+ }
4662
+
4663
+ .w3eden .navbar-expand-sm .navbar-toggler {
4664
+ display: none;
4665
+ }
4666
+ }
4667
+
4668
+ @media (max-width: 767.98px) {
4669
+ .w3eden .navbar-expand-md > .container,
4670
+ .w3eden .navbar-expand-md > .container-fluid, .w3eden .navbar-expand-md > .container-sm, .w3eden .navbar-expand-md > .container-md, .w3eden .navbar-expand-md > .container-lg, .w3eden .navbar-expand-md > .container-xl {
4671
+ padding-right: 0;
4672
+ padding-left: 0;
4673
+ }
4674
+ }
4675
+
4676
+ @media (min-width: 768px) {
4677
+ .w3eden .navbar-expand-md {
4678
+ -ms-flex-flow: row nowrap;
4679
+ flex-flow: row nowrap;
4680
+ -ms-flex-pack: start;
4681
+ justify-content: flex-start;
4682
+ }
4683
+
4684
+ .w3eden .navbar-expand-md .navbar-nav {
4685
+ -ms-flex-direction: row;
4686
+ flex-direction: row;
4687
+ }
4688
+
4689
+ .w3eden .navbar-expand-md .navbar-nav .dropdown-menu {
4690
+ position: absolute;
4691
+ }
4692
+
4693
+ .w3eden .navbar-expand-md .navbar-nav .nav-link {
4694
+ padding-right: 0.5rem;
4695
+ padding-left: 0.5rem;
4696
+ }
4697
+
4698
+ .w3eden .navbar-expand-md > .container,
4699
+ .w3eden .navbar-expand-md > .container-fluid, .w3eden .navbar-expand-md > .container-sm, .w3eden .navbar-expand-md > .container-md, .w3eden .navbar-expand-md > .container-lg, .w3eden .navbar-expand-md > .container-xl {
4700
+ -ms-flex-wrap: nowrap;
4701
+ flex-wrap: nowrap;
4702
+ }
4703
+
4704
+ .w3eden .navbar-expand-md .navbar-collapse {
4705
+ display: -ms-flexbox !important;
4706
+ display: flex !important;
4707
+ -ms-flex-preferred-size: auto;
4708
+ flex-basis: auto;
4709
+ }
4710
+
4711
+ .w3eden .navbar-expand-md .navbar-toggler {
4712
+ display: none;
4713
+ }
4714
+ }
4715
+
4716
+ @media (max-width: 991.98px) {
4717
+ .w3eden .navbar-expand-lg > .container,
4718
+ .w3eden .navbar-expand-lg > .container-fluid, .w3eden .navbar-expand-lg > .container-sm, .w3eden .navbar-expand-lg > .container-md, .w3eden .navbar-expand-lg > .container-lg, .w3eden .navbar-expand-lg > .container-xl {
4719
+ padding-right: 0;
4720
+ padding-left: 0;
4721
+ }
4722
+ }
4723
+
4724
+ @media (min-width: 992px) {
4725
+ .w3eden .navbar-expand-lg {
4726
+ -ms-flex-flow: row nowrap;
4727
+ flex-flow: row nowrap;
4728
+ -ms-flex-pack: start;
4729
+ justify-content: flex-start;
4730
+ }
4731
+
4732
+ .w3eden .navbar-expand-lg .navbar-nav {
4733
+ -ms-flex-direction: row;
4734
+ flex-direction: row;
4735
+ }
4736
+
4737
+ .w3eden .navbar-expand-lg .navbar-nav .dropdown-menu {
4738
+ position: absolute;
4739
+ }
4740
+
4741
+ .w3eden .navbar-expand-lg .navbar-nav .nav-link {
4742
+ padding-right: 0.5rem;
4743
+ padding-left: 0.5rem;
4744
+ }
4745
+
4746
+ .w3eden .navbar-expand-lg > .container,
4747
+ .w3eden .navbar-expand-lg > .container-fluid, .w3eden .navbar-expand-lg > .container-sm, .w3eden .navbar-expand-lg > .container-md, .w3eden .navbar-expand-lg > .container-lg, .w3eden .navbar-expand-lg > .container-xl {
4748
+ -ms-flex-wrap: nowrap;
4749
+ flex-wrap: nowrap;
4750
+ }
4751
+
4752
+ .w3eden .navbar-expand-lg .navbar-collapse {
4753
+ display: -ms-flexbox !important;
4754
+ display: flex !important;
4755
+ -ms-flex-preferred-size: auto;
4756
+ flex-basis: auto;
4757
+ }
4758
+
4759
+ .w3eden .navbar-expand-lg .navbar-toggler {
4760
+ display: none;
4761
+ }
4762
+ }
4763
+
4764
+ @media (max-width: 1199.98px) {
4765
+ .w3eden .navbar-expand-xl > .container,
4766
+ .w3eden .navbar-expand-xl > .container-fluid, .w3eden .navbar-expand-xl > .container-sm, .w3eden .navbar-expand-xl > .container-md, .w3eden .navbar-expand-xl > .container-lg, .w3eden .navbar-expand-xl > .container-xl {
4767
+ padding-right: 0;
4768
+ padding-left: 0;
4769
+ }
4770
+ }
4771
+
4772
+ @media (min-width: 1200px) {
4773
+ .w3eden .navbar-expand-xl {
4774
+ -ms-flex-flow: row nowrap;
4775
+ flex-flow: row nowrap;
4776
+ -ms-flex-pack: start;
4777
+ justify-content: flex-start;
4778
+ }
4779
+
4780
+ .w3eden .navbar-expand-xl .navbar-nav {
4781
+ -ms-flex-direction: row;
4782
+ flex-direction: row;
4783
+ }
4784
+
4785
+ .w3eden .navbar-expand-xl .navbar-nav .dropdown-menu {
4786
+ position: absolute;
4787
+ }
4788
+
4789
+ .w3eden .navbar-expand-xl .navbar-nav .nav-link {
4790
+ padding-right: 0.5rem;
4791
+ padding-left: 0.5rem;
4792
+ }
4793
+
4794
+ .w3eden .navbar-expand-xl > .container,
4795
+ .w3eden .navbar-expand-xl > .container-fluid, .w3eden .navbar-expand-xl > .container-sm, .w3eden .navbar-expand-xl > .container-md, .w3eden .navbar-expand-xl > .container-lg, .w3eden .navbar-expand-xl > .container-xl {
4796
+ -ms-flex-wrap: nowrap;
4797
+ flex-wrap: nowrap;
4798
+ }
4799
+
4800
+ .w3eden .navbar-expand-xl .navbar-collapse {
4801
+ display: -ms-flexbox !important;
4802
+ display: flex !important;
4803
+ -ms-flex-preferred-size: auto;
4804
+ flex-basis: auto;
4805
+ }
4806
+
4807
+ .w3eden .navbar-expand-xl .navbar-toggler {
4808
+ display: none;
4809
+ }
4810
+ }
4811
+
4812
+ .w3eden .navbar-expand {
4813
+ -ms-flex-flow: row nowrap;
4814
+ flex-flow: row nowrap;
4815
+ -ms-flex-pack: start;
4816
+ justify-content: flex-start;
4817
+ }
4818
+
4819
+ .w3eden .navbar-expand > .container,
4820
+ .w3eden .navbar-expand > .container-fluid, .w3eden .navbar-expand > .container-sm, .w3eden .navbar-expand > .container-md, .w3eden .navbar-expand > .container-lg, .w3eden .navbar-expand > .container-xl {
4821
+ padding-right: 0;
4822
+ padding-left: 0;
4823
+ }
4824
+
4825
+ .w3eden .navbar-expand .navbar-nav {
4826
+ -ms-flex-direction: row;
4827
+ flex-direction: row;
4828
+ }
4829
+
4830
+ .w3eden .navbar-expand .navbar-nav .dropdown-menu {
4831
+ position: absolute;
4832
+ }
4833
+
4834
+ .w3eden .navbar-expand .navbar-nav .nav-link {
4835
+ padding-right: 0.5rem;
4836
+ padding-left: 0.5rem;
4837
+ }
4838
+
4839
+ .w3eden .navbar-expand > .container,
4840
+ .w3eden .navbar-expand > .container-fluid, .w3eden .navbar-expand > .container-sm, .w3eden .navbar-expand > .container-md, .w3eden .navbar-expand > .container-lg, .w3eden .navbar-expand > .container-xl {
4841
+ -ms-flex-wrap: nowrap;
4842
+ flex-wrap: nowrap;
4843
+ }
4844
+
4845
+ .w3eden .navbar-expand .navbar-collapse {
4846
+ display: -ms-flexbox !important;
4847
+ display: flex !important;
4848
+ -ms-flex-preferred-size: auto;
4849
+ flex-basis: auto;
4850
+ }
4851
+
4852
+ .w3eden .navbar-expand .navbar-toggler {
4853
+ display: none;
4854
+ }
4855
+
4856
+ .w3eden .navbar-light .navbar-brand {
4857
+ color: rgba(0, 0, 0, 0.9);
4858
+ }
4859
+
4860
+ .w3eden .navbar-light .navbar-brand:hover, .w3eden .navbar-light .navbar-brand:focus {
4861
+ color: rgba(0, 0, 0, 0.9);
4862
+ }
4863
+
4864
+ .w3eden .navbar-light .navbar-nav .nav-link {
4865
+ color: rgba(0, 0, 0, 0.5);
4866
+ }
4867
+
4868
+ .w3eden .navbar-light .navbar-nav .nav-link:hover, .w3eden .navbar-light .navbar-nav .nav-link:focus {
4869
+ color: rgba(0, 0, 0, 0.7);
4870
+ }
4871
+
4872
+ .w3eden .navbar-light .navbar-nav .nav-link.disabled {
4873
+ color: rgba(0, 0, 0, 0.3);
4874
+ }
4875
+
4876
+ .w3eden .navbar-light .navbar-nav .show > .nav-link,
4877
+ .w3eden .navbar-light .navbar-nav .active > .nav-link,
4878
+ .w3eden .navbar-light .navbar-nav .nav-link.show,
4879
+ .w3eden .navbar-light .navbar-nav .nav-link.active {
4880
+ color: rgba(0, 0, 0, 0.9);
4881
+ }
4882
+
4883
+ .w3eden .navbar-light .navbar-toggler {
4884
+ color: rgba(0, 0, 0, 0.5);
4885
+ border-color: rgba(0, 0, 0, 0.1);
4886
+ }
4887
+
4888
+ .w3eden .navbar-light .navbar-toggler-icon {
4889
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
4890
+ }
4891
+
4892
+ .w3eden .navbar-light .navbar-text {
4893
+ color: rgba(0, 0, 0, 0.5);
4894
+ }
4895
+
4896
+ .w3eden .navbar-light .navbar-text a {
4897
+ color: rgba(0, 0, 0, 0.9);
4898
+ }
4899
+
4900
+ .w3eden .navbar-light .navbar-text a:hover, .w3eden .navbar-light .navbar-text a:focus {
4901
+ color: rgba(0, 0, 0, 0.9);
4902
+ }
4903
+
4904
+ .w3eden .navbar-dark .navbar-brand {
4905
+ color: #fff;
4906
+ }
4907
+
4908
+ .w3eden .navbar-dark .navbar-brand:hover, .w3eden .navbar-dark .navbar-brand:focus {
4909
+ color: #fff;
4910
+ }
4911
+
4912
+ .w3eden .navbar-dark .navbar-nav .nav-link {
4913
+ color: rgba(255, 255, 255, 0.5);
4914
+ }
4915
+
4916
+ .w3eden .navbar-dark .navbar-nav .nav-link:hover, .w3eden .navbar-dark .navbar-nav .nav-link:focus {
4917
+ color: rgba(255, 255, 255, 0.75);
4918
+ }
4919
+
4920
+ .w3eden .navbar-dark .navbar-nav .nav-link.disabled {
4921
+ color: rgba(255, 255, 255, 0.25);
4922
+ }
4923
+
4924
+ .w3eden .navbar-dark .navbar-nav .show > .nav-link,
4925
+ .w3eden .navbar-dark .navbar-nav .active > .nav-link,
4926
+ .w3eden .navbar-dark .navbar-nav .nav-link.show,
4927
+ .w3eden .navbar-dark .navbar-nav .nav-link.active {
4928
+ color: #fff;
4929
+ }
4930
+
4931
+ .w3eden .navbar-dark .navbar-toggler {
4932
+ color: rgba(255, 255, 255, 0.5);
4933
+ border-color: rgba(255, 255, 255, 0.1);
4934
+ }
4935
+
4936
+ .w3eden .navbar-dark .navbar-toggler-icon {
4937
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
4938
+ }
4939
+
4940
+ .w3eden .navbar-dark .navbar-text {
4941
+ color: rgba(255, 255, 255, 0.5);
4942
+ }
4943
+
4944
+ .w3eden .navbar-dark .navbar-text a {
4945
+ color: #fff;
4946
+ }
4947
+
4948
+ .w3eden .navbar-dark .navbar-text a:hover, .w3eden .navbar-dark .navbar-text a:focus {
4949
+ color: #fff;
4950
+ }
4951
+
4952
+ .w3eden .card {
4953
+ position: relative;
4954
+ display: -ms-flexbox;
4955
+ display: flex;
4956
+ -ms-flex-direction: column;
4957
+ flex-direction: column;
4958
+ min-width: 0;
4959
+ word-wrap: break-word;
4960
+ background-color: #fff;
4961
+ background-clip: border-box;
4962
+ border: 1px solid rgba(0, 0, 0, 0.125);
4963
+ border-radius: 0.25rem;
4964
+ }
4965
+
4966
+ .w3eden .card > hr {
4967
+ margin-right: 0;
4968
+ margin-left: 0;
4969
+ }
4970
+
4971
+ .w3eden .card > .list-group:first-child .list-group-item:first-child {
4972
+ border-top-left-radius: 0.25rem;
4973
+ border-top-right-radius: 0.25rem;
4974
+ }
4975
+
4976
+ .w3eden .card > .list-group:last-child .list-group-item:last-child {
4977
+ border-bottom-right-radius: 0.25rem;
4978
+ border-bottom-left-radius: 0.25rem;
4979
+ }
4980
+
4981
+ .w3eden .card-body {
4982
+ -ms-flex: 1 1 auto;
4983
+ flex: 1 1 auto;
4984
+ min-height: 1px;
4985
+ padding: 1.25rem;
4986
+ }
4987
+
4988
+ .w3eden .card-title {
4989
+ margin-bottom: 0.75rem;
4990
+ }
4991
+
4992
+ .w3eden .card-subtitle {
4993
+ margin-top: -0.375rem;
4994
+ margin-bottom: 0;
4995
+ }
4996
+
4997
+ .w3eden .card-text:last-child {
4998
+ margin-bottom: 0;
4999
+ }
5000
+
5001
+ .w3eden .card-link:hover {
5002
+ text-decoration: none;
5003
+ }
5004
+
5005
+ .w3eden .card-link + .card-link {
5006
+ margin-left: 1.25rem;
5007
+ }
5008
+
5009
+ .w3eden .card-header {
5010
+ padding: 0.75rem 1.25rem;
5011
+ margin-bottom: 0;
5012
+ background-color: rgba(0, 0, 0, 0.03);
5013
+ border-bottom: 1px solid rgba(0, 0, 0, 0.125);
5014
+ }
5015
+
5016
+ .w3eden .card-header:first-child {
5017
+ border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
5018
+ }
5019
+
5020
+ .w3eden .card-header + .list-group .list-group-item:first-child {
5021
+ border-top: 0;
5022
+ }
5023
+
5024
+ .w3eden .card-footer {
5025
+ padding: 0.75rem 1.25rem;
5026
+ background-color: rgba(0, 0, 0, 0.03);
5027
+ border-top: 1px solid rgba(0, 0, 0, 0.125);
5028
+ }
5029
+
5030
+ .w3eden .card-footer:last-child {
5031
+ border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
5032
+ }
5033
+
5034
+ .w3eden .card-header-tabs {
5035
+ margin-right: -0.625rem;
5036
+ margin-bottom: -0.75rem;
5037
+ margin-left: -0.625rem;
5038
+ border-bottom: 0;
5039
+ }
5040
+
5041
+ .w3eden .card-header-pills {
5042
+ margin-right: -0.625rem;
5043
+ margin-left: -0.625rem;
5044
+ }
5045
+
5046
+ .w3eden .card-img-overlay {
5047
+ position: absolute;
5048
+ top: 0;
5049
+ right: 0;
5050
+ bottom: 0;
5051
+ left: 0;
5052
+ padding: 1.25rem;
5053
+ }
5054
+
5055
+ .w3eden .card-img,
5056
+ .w3eden .card-img-top,
5057
+ .w3eden .card-img-bottom {
5058
+ -ms-flex-negative: 0;
5059
+ flex-shrink: 0;
5060
+ width: 100%;
5061
+ }
5062
+
5063
+ .w3eden .card-img,
5064
+ .w3eden .card-img-top {
5065
+ border-top-left-radius: calc(0.25rem - 1px);
5066
+ border-top-right-radius: calc(0.25rem - 1px);
5067
+ }
5068
+
5069
+ .w3eden .card-img,
5070
+ .w3eden .card-img-bottom {
5071
+ border-bottom-right-radius: calc(0.25rem - 1px);
5072
+ border-bottom-left-radius: calc(0.25rem - 1px);
5073
+ }
5074
+
5075
+ .w3eden .card-deck .card {
5076
+ margin-bottom: 15px;
5077
+ }
5078
+
5079
+ @media (min-width: 576px) {
5080
+ .w3eden .card-deck {
5081
+ display: -ms-flexbox;
5082
+ display: flex;
5083
+ -ms-flex-flow: row wrap;
5084
+ flex-flow: row wrap;
5085
+ margin-right: -15px;
5086
+ margin-left: -15px;
5087
+ }
5088
+
5089
+ .w3eden .card-deck .card {
5090
+ -ms-flex: 1 0 0%;
5091
+ flex: 1 0 0%;
5092
+ margin-right: 15px;
5093
+ margin-bottom: 0;
5094
+ margin-left: 15px;
5095
+ }
5096
+ }
5097
+
5098
+ .w3eden .card-group > .card {
5099
+ margin-bottom: 15px;
5100
+ }
5101
+
5102
+ @media (min-width: 576px) {
5103
+ .w3eden .card-group {
5104
+ display: -ms-flexbox;
5105
+ display: flex;
5106
+ -ms-flex-flow: row wrap;
5107
+ flex-flow: row wrap;
5108
+ }
5109
+
5110
+ .w3eden .card-group > .card {
5111
+ -ms-flex: 1 0 0%;
5112
+ flex: 1 0 0%;
5113
+ margin-bottom: 0;
5114
+ }
5115
+
5116
+ .w3eden .card-group > .card + .card {
5117
+ margin-left: 0;
5118
+ border-left: 0;
5119
+ }
5120
+
5121
+ .w3eden .card-group > .card:not(:last-child) {
5122
+ border-top-right-radius: 0;
5123
+ border-bottom-right-radius: 0;
5124
+ }
5125
+
5126
+ .w3eden .card-group > .card:not(:last-child) .card-img-top,
5127
+ .w3eden .card-group > .card:not(:last-child) .card-header {
5128
+ border-top-right-radius: 0;
5129
+ }
5130
+
5131
+ .w3eden .card-group > .card:not(:last-child) .card-img-bottom,
5132
+ .w3eden .card-group > .card:not(:last-child) .card-footer {
5133
+ border-bottom-right-radius: 0;
5134
+ }
5135
+
5136
+ .w3eden .card-group > .card:not(:first-child) {
5137
+ border-top-left-radius: 0;
5138
+ border-bottom-left-radius: 0;
5139
+ }
5140
+
5141
+ .w3eden .card-group > .card:not(:first-child) .card-img-top,
5142
+ .w3eden .card-group > .card:not(:first-child) .card-header {
5143
+ border-top-left-radius: 0;
5144
+ }
5145
+
5146
+ .w3eden .card-group > .card:not(:first-child) .card-img-bottom,
5147
+ .w3eden .card-group > .card:not(:first-child) .card-footer {
5148
+ border-bottom-left-radius: 0;
5149
+ }
5150
+ }
5151
+
5152
+ .w3eden .card-columns .card {
5153
+ margin-bottom: 0.75rem;
5154
+ }
5155
+
5156
+ @media (min-width: 576px) {
5157
+ .w3eden .card-columns {
5158
+ -webkit-column-count: 3;
5159
+ -moz-column-count: 3;
5160
+ column-count: 3;
5161
+ -webkit-column-gap: 1.25rem;
5162
+ -moz-column-gap: 1.25rem;
5163
+ column-gap: 1.25rem;
5164
+ orphans: 1;
5165
+ widows: 1;
5166
+ }
5167
+
5168
+ .w3eden .card-columns .card {
5169
+ display: inline-block;
5170
+ width: 100%;
5171
+ }
5172
+ }
5173
+
5174
+ .w3eden .accordion > .card {
5175
+ overflow: hidden;
5176
+ }
5177
+
5178
+ .w3eden .accordion > .card:not(:last-of-type) {
5179
+ border-bottom: 0;
5180
+ border-bottom-right-radius: 0;
5181
+ border-bottom-left-radius: 0;
5182
+ }
5183
+
5184
+ .w3eden .accordion > .card:not(:first-of-type) {
5185
+ border-top-left-radius: 0;
5186
+ border-top-right-radius: 0;
5187
+ }
5188
+
5189
+ .w3eden .accordion > .card > .card-header {
5190
+ border-radius: 0;
5191
+ margin-bottom: -1px;
5192
+ }
5193
+
5194
+ .w3eden .breadcrumb {
5195
+ display: -ms-flexbox;
5196
+ display: flex;
5197
+ -ms-flex-wrap: wrap;
5198
+ flex-wrap: wrap;
5199
+ padding: 0.75rem 1rem;
5200
+ margin-bottom: 1rem;
5201
+ list-style: none;
5202
+ background-color: #e9ecef;
5203
+ border-radius: 0.25rem;
5204
+ }
5205
+
5206
+ .w3eden .breadcrumb-item + .breadcrumb-item {
5207
+ padding-left: 0.5rem;
5208
+ }
5209
+
5210
+ .w3eden .breadcrumb-item + .breadcrumb-item::before {
5211
+ display: inline-block;
5212
+ padding-right: 0.5rem;
5213
+ color: #6c757d;
5214
+ content: "/";
5215
+ }
5216
+
5217
+ .w3eden .breadcrumb-item + .breadcrumb-item:hover::before {
5218
+ text-decoration: underline;
5219
+ }
5220
+
5221
+ .w3eden .breadcrumb-item + .breadcrumb-item:hover::before {
5222
+ text-decoration: none;
5223
+ }
5224
+
5225
+ .w3eden .breadcrumb-item.active {
5226
+ color: #6c757d;
5227
+ }
5228
+
5229
+ .w3eden .pagination {
5230
+ display: -ms-flexbox;
5231
+ display: flex;
5232
+ padding-left: 0;
5233
+ list-style: none;
5234
+ border-radius: 0.25rem;
5235
+ }
5236
+
5237
+ .w3eden .page-link {
5238
+ position: relative;
5239
+ display: block;
5240
+ padding: 0.5rem 0.75rem;
5241
+ margin-left: -1px;
5242
+ line-height: 1.25;
5243
+ color: var(--color-primary);
5244
+ background-color: #fff;
5245
+ border: 1px solid #dee2e6;
5246
+ }
5247
+
5248
+ .w3eden .page-link:hover {
5249
+ z-index: 2;
5250
+ color: #0056b3;
5251
+ text-decoration: none;
5252
+ background-color: #e9ecef;
5253
+ border-color: #dee2e6;
5254
+ }
5255
+
5256
+ .w3eden .page-link:focus {
5257
+ z-index: 3;
5258
+ outline: 0;
5259
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
5260
+ }
5261
+
5262
+ .w3eden .page-item:first-child .page-link {
5263
+ margin-left: 0;
5264
+ border-top-left-radius: 0.25rem;
5265
+ border-bottom-left-radius: 0.25rem;
5266
+ }
5267
+
5268
+ .w3eden .page-item:last-child .page-link {
5269
+ border-top-right-radius: 0.25rem;
5270
+ border-bottom-right-radius: 0.25rem;
5271
+ }
5272
+
5273
+ .w3eden .page-item.active .page-link {
5274
+ z-index: 3;
5275
+ color: #fff;
5276
+ background-color: var(--color-primary);
5277
+ border-color: var(--color-primary);
5278
+ }
5279
+
5280
+ .w3eden .page-item.disabled .page-link {
5281
+ color: #6c757d;
5282
+ pointer-events: none;
5283
+ cursor: auto;
5284
+ background-color: #fff;
5285
+ border-color: #dee2e6;
5286
+ }
5287
+
5288
+ .w3eden .pagination-lg .page-link {
5289
+ padding: 0.75rem 1.5rem;
5290
+ font-size: 1.25rem;
5291
+ line-height: 1.5;
5292
+ }
5293
+
5294
+ .w3eden .pagination-lg .page-item:first-child .page-link {
5295
+ border-top-left-radius: 0.3rem;
5296
+ border-bottom-left-radius: 0.3rem;
5297
+ }
5298
+
5299
+ .w3eden .pagination-lg .page-item:last-child .page-link {
5300
+ border-top-right-radius: 0.3rem;
5301
+ border-bottom-right-radius: 0.3rem;
5302
+ }
5303
+
5304
+ .w3eden .pagination-sm .page-link {
5305
+ padding: 0.25rem 0.5rem;
5306
+ font-size: 0.875rem;
5307
+ line-height: 1.5;
5308
+ }
5309
+
5310
+ .w3eden .pagination-sm .page-item:first-child .page-link {
5311
+ border-top-left-radius: 0.2rem;
5312
+ border-bottom-left-radius: 0.2rem;
5313
+ }
5314
+
5315
+ .w3eden .pagination-sm .page-item:last-child .page-link {
5316
+ border-top-right-radius: 0.2rem;
5317
+ border-bottom-right-radius: 0.2rem;
5318
+ }
5319
+
5320
+ .w3eden .badge {
5321
+ display: inline-block;
5322
+ padding: 0.25em 0.4em;
5323
+ font-size: 75%;
5324
+ font-weight: 700;
5325
+ line-height: 1;
5326
+ text-align: center;
5327
+ white-space: nowrap;
5328
+ vertical-align: baseline;
5329
+ border-radius: 0.25rem;
5330
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
5331
+ }
5332
+
5333
+ @media (prefers-reduced-motion: reduce) {
5334
+ .w3eden .badge {
5335
+ transition: none;
5336
+ }
5337
+ }
5338
+
5339
+ .w3eden a.badge:hover, .w3eden a.badge:focus {
5340
+ text-decoration: none;
5341
+ }
5342
+
5343
+ .w3eden .badge:empty {
5344
+ display: none;
5345
+ }
5346
+
5347
+ .w3eden .btn .badge {
5348
+ position: relative;
5349
+ top: -1px;
5350
+ }
5351
+
5352
+ .w3eden .badge-pill {
5353
+ padding-right: 0.6em;
5354
+ padding-left: 0.6em;
5355
+ border-radius: 10rem;
5356
+ }
5357
+
5358
+ .w3eden .badge-primary {
5359
+ color: #fff;
5360
+ background-color: var(--color-primary);
5361
+ }
5362
+
5363
+ .w3eden a.badge-primary:hover, .w3eden a.badge-primary:focus {
5364
+ color: #fff;
5365
+ background-color: var(--color-primary-hover);
5366
+ }
5367
+
5368
+ .w3eden a.badge-primary:focus, .w3eden a.badge-primary.focus {
5369
+ outline: 0;
5370
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
5371
+ }
5372
+
5373
+ .w3eden .badge-secondary {
5374
+ color: #fff;
5375
+ background-color: #6c757d;
5376
+ }
5377
+
5378
+ .w3eden a.badge-secondary:hover, .w3eden a.badge-secondary:focus {
5379
+ color: #fff;
5380
+ background-color: #545b62;
5381
+ }
5382
+
5383
+ .w3eden a.badge-secondary:focus, .w3eden a.badge-secondary.focus {
5384
+ outline: 0;
5385
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
5386
+ }
5387
+
5388
+ .w3eden .badge-success {
5389
+ color: #fff;
5390
+ background-color: var(--color-success);
5391
+ }
5392
+
5393
+ .w3eden a.badge-success:hover, .w3eden a.badge-success:focus {
5394
+ color: #fff;
5395
+ background-color: var(--color-success);
5396
+ }
5397
+
5398
+ .w3eden a.badge-success:focus, .w3eden a.badge-success.focus {
5399
+ outline: 0;
5400
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
5401
+ }
5402
+
5403
+ .w3eden .badge-info {
5404
+ color: #fff;
5405
+ background-color: var(--color-info);
5406
+ }
5407
+
5408
+ .w3eden a.badge-info:hover, .w3eden a.badge-info:focus {
5409
+ color: #fff;
5410
+ background-color: var(--color-info-active);
5411
+ }
5412
+
5413
+ .w3eden a.badge-info:focus, .w3eden a.badge-info.focus {
5414
+ outline: 0;
5415
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
5416
+ }
5417
+
5418
+ .w3eden .badge-warning {
5419
+ color: #212529;
5420
+ background-color: var(--color-warning);
5421
+ }
5422
+
5423
+ .w3eden a.badge-warning:hover, .w3eden a.badge-warning:focus {
5424
+ color: #212529;
5425
+ background-color: var(--color-warning-active);
5426
+ }
5427
+
5428
+ .w3eden a.badge-warning:focus, .w3eden a.badge-warning.focus {
5429
+ outline: 0;
5430
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
5431
+ }
5432
+
5433
+ .w3eden .badge-danger {
5434
+ color: #fff;
5435
+ background-color: var(--color-danger);
5436
+ }
5437
+
5438
+ .w3eden a.badge-danger:hover, .w3eden a.badge-danger:focus {
5439
+ color: #fff;
5440
+ background-color: var(--color-danger-active);
5441
+ }
5442
+
5443
+ .w3eden a.badge-danger:focus, .w3eden a.badge-danger.focus {
5444
+ outline: 0;
5445
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
5446
+ }
5447
+
5448
+ .w3eden .badge-light {
5449
+ color: #212529;
5450
+ background-color: #f8f9fa;
5451
+ }
5452
+
5453
+ .w3eden a.badge-light:hover, .w3eden a.badge-light:focus {
5454
+ color: #212529;
5455
+ background-color: #dae0e5;
5456
+ }
5457
+
5458
+ .w3eden a.badge-light:focus, .w3eden a.badge-light.focus {
5459
+ outline: 0;
5460
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
5461
+ }
5462
+
5463
+ .w3eden .badge-dark {
5464
+ color: #fff;
5465
+ background-color: #343a40;
5466
+ }
5467
+
5468
+ .w3eden a.badge-dark:hover, .w3eden a.badge-dark:focus {
5469
+ color: #fff;
5470
+ background-color: #1d2124;
5471
+ }
5472
+
5473
+ .w3eden a.badge-dark:focus, .w3eden a.badge-dark.focus {
5474
+ outline: 0;
5475
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
5476
+ }
5477
+
5478
+ .w3eden .jumbotron {
5479
+ padding: 2rem 1rem;
5480
+ margin-bottom: 2rem;
5481
+ background-color: #e9ecef;
5482
+ border-radius: 0.3rem;
5483
+ }
5484
+
5485
+ @media (min-width: 576px) {
5486
+ .w3eden .jumbotron {
5487
+ padding: 4rem 2rem;
5488
+ }
5489
+ }
5490
+
5491
+ .w3eden .jumbotron-fluid {
5492
+ padding-right: 0;
5493
+ padding-left: 0;
5494
+ border-radius: 0;
5495
+ }
5496
+
5497
+ .w3eden .alert {
5498
+ position: relative;
5499
+ padding: 0.75rem 1.25rem;
5500
+ margin-bottom: 1rem;
5501
+ border-top: 2px solid transparent;
5502
+ border-radius: 0;
5503
+ }
5504
+
5505
+ .w3eden .alert-heading {
5506
+ color: inherit;
5507
+ }
5508
+
5509
+ .w3eden .alert-link {
5510
+ font-weight: 700;
5511
+ }
5512
+
5513
+ .w3eden .alert-dismissible {
5514
+ padding-right: 4rem;
5515
+ }
5516
+
5517
+ .w3eden .alert-dismissible .close {
5518
+ position: absolute;
5519
+ top: 0;
5520
+ right: 0;
5521
+ padding: 0.75rem 1.25rem;
5522
+ color: inherit;
5523
+ }
5524
+
5525
+ .w3eden .alert-primary {
5526
+ color: #004085;
5527
+ background-color: #cce5ff;
5528
+ border-color: #b8daff;
5529
+ }
5530
+
5531
+ .w3eden .alert-primary hr {
5532
+ border-top-color: #9fcdff;
5533
+ }
5534
+
5535
+ .w3eden .alert-primary .alert-link {
5536
+ color: #002752;
5537
+ }
5538
+
5539
+ .w3eden .alert-secondary {
5540
+ color: #383d41;
5541
+ background-color: #e2e3e5;
5542
+ border-color: #d6d8db;
5543
+ }
5544
+
5545
+ .w3eden .alert-secondary hr {
5546
+ border-top-color: #c8cbcf;
5547
+ }
5548
+
5549
+ .w3eden .alert-secondary .alert-link {
5550
+ color: #202326;
5551
+ }
5552
+
5553
+ .w3eden .alert-success {
5554
+ color: var(--color-success-active);
5555
+ background-color: rgba(var(--color-success-rgb), 0.1);
5556
+ border-color: var(--color-success-active);
5557
+ }
5558
+
5559
+ .w3eden .alert-success hr {
5560
+ border-top-color: #b1dfbb;
5561
+ }
5562
+
5563
+ .w3eden .alert-success .alert-link {
5564
+ color: #0b2e13;
5565
+ }
5566
+
5567
+ .w3eden .alert-info {
5568
+ color: var(--color-info);
5569
+ background-color: rgba(var(--color-info-rgb), 0.1);
5570
+ border-color: var(--color-info-active)
5571
+ }
5572
+
5573
+ .w3eden .alert-info hr {
5574
+ border-top-color: #abdde5;
5575
+ }
5576
+
5577
+ .w3eden .alert-info a,
5578
+ .w3eden .alert-info .alert-link {
5579
+ color: var(--color-info-active);
5580
+ }
5581
+
5582
+ .w3eden .alert-warning {
5583
+ color: #856404;
5584
+ background-color: #fff3cd;
5585
+ border-color: #ffeeba;
5586
+ }
5587
+
5588
+ .w3eden .alert-warning hr {
5589
+ border-top-color: #ffe8a1;
5590
+ }
5591
+
5592
+ .w3eden .alert-warning .alert-link {
5593
+ color: #533f03;
5594
+ }
5595
+
5596
+ .w3eden .alert-danger {
5597
+ color: #721c24;
5598
+ background-color: #f8d7da;
5599
+ border-color: #f5c6cb;
5600
+ }
5601
+
5602
+ .w3eden .alert-danger hr {
5603
+ border-top-color: #f1b0b7;
5604
+ }
5605
+
5606
+ .w3eden .alert-danger .alert-link {
5607
+ color: #491217;
5608
+ }
5609
+
5610
+ .w3eden .alert-light {
5611
+ color: #818182;
5612
+ background-color: #fefefe;
5613
+ border-color: #fdfdfe;
5614
+ }
5615
+
5616
+ .w3eden .alert-light hr {
5617
+ border-top-color: #ececf6;
5618
+ }
5619
+
5620
+ .w3eden .alert-light .alert-link {
5621
+ color: #686868;
5622
+ }
5623
+
5624
+ .w3eden .alert-dark {
5625
+ color: #1b1e21;
5626
+ background-color: #d6d8d9;
5627
+ border-color: #c6c8ca;
5628
+ }
5629
+
5630
+ .w3eden .alert-dark hr {
5631
+ border-top-color: #b9bbbe;
5632
+ }
5633
+
5634
+ .w3eden .alert-dark .alert-link {
5635
+ color: #040505;
5636
+ }
5637
+
5638
+ @-webkit-keyframes progress-bar-stripes {
5639
+ from {
5640
+ background-position: 1rem 0;
5641
+ }
5642
+ to {
5643
+ background-position: 0 0;
5644
+ }
5645
+ }
5646
+
5647
+ @keyframes progress-bar-stripes {
5648
+ from {
5649
+ background-position: 1rem 0;
5650
+ }
5651
+ to {
5652
+ background-position: 0 0;
5653
+ }
5654
+ }
5655
+
5656
+ .w3eden .progress {
5657
+ display: -ms-flexbox;
5658
+ display: flex;
5659
+ height: 1rem;
5660
+ overflow: hidden;
5661
+ font-size: 0.75rem;
5662
+ background-color: #e9ecef;
5663
+ border-radius: 0.25rem;
5664
+ }
5665
+
5666
+ .w3eden .progress-bar {
5667
+ display: -ms-flexbox;
5668
+ display: flex;
5669
+ -ms-flex-direction: column;
5670
+ flex-direction: column;
5671
+ -ms-flex-pack: center;
5672
+ justify-content: center;
5673
+ overflow: hidden;
5674
+ color: #fff;
5675
+ text-align: center;
5676
+ white-space: nowrap;
5677
+ background-color: var(--color-primary);
5678
+ transition: width 0.6s ease;
5679
+ }
5680
+
5681
+ @media (prefers-reduced-motion: reduce) {
5682
+ .w3eden .progress-bar {
5683
+ transition: none;
5684
+ }
5685
+ }
5686
+
5687
+ .w3eden .progress-bar-striped {
5688
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5689
+ background-size: 1rem 1rem;
5690
+ }
5691
+
5692
+ .w3eden .progress-bar-animated {
5693
+ -webkit-animation: progress-bar-stripes 1s linear infinite;
5694
+ animation: progress-bar-stripes 1s linear infinite;
5695
+ }
5696
+
5697
+ @media (prefers-reduced-motion: reduce) {
5698
+ .w3eden .progress-bar-animated {
5699
+ -webkit-animation: none;
5700
+ animation: none;
5701
+ }
5702
+ }
5703
+
5704
+ .w3eden .media {
5705
+ display: -ms-flexbox;
5706
+ display: flex;
5707
+ -ms-flex-align: start;
5708
+ align-items: flex-start;
5709
+ }
5710
+
5711
+ .w3eden .media-body {
5712
+ -ms-flex: 1;
5713
+ flex: 1;
5714
+ }
5715
+
5716
+ .w3eden .list-group {
5717
+ display: -ms-flexbox;
5718
+ display: flex;
5719
+ -ms-flex-direction: column;
5720
+ flex-direction: column;
5721
+ padding-left: 0;
5722
+ margin-bottom: 0;
5723
+ }
5724
+
5725
+ .w3eden .list-group-item-action {
5726
+ width: 100%;
5727
+ color: #495057;
5728
+ text-align: inherit;
5729
+ }
5730
+
5731
+ .w3eden .list-group-item-action:hover, .w3eden .list-group-item-action:focus {
5732
+ z-index: 1;
5733
+ color: #495057;
5734
+ text-decoration: none;
5735
+ background-color: #f8f9fa;
5736
+ }
5737
+
5738
+ .w3eden .list-group-item-action:active {
5739
+ color: #212529;
5740
+ background-color: #e9ecef;
5741
+ }
5742
+
5743
+ .w3eden .list-group-item {
5744
+ position: relative;
5745
+ display: block;
5746
+ padding: 0.75rem 1.25rem;
5747
+ background-color: #fff;
5748
+ border: 1px solid rgba(0, 0, 0, 0.125);
5749
+ }
5750
+
5751
+ .w3eden .list-group-item:first-child {
5752
+ border-top-left-radius: 0.25rem;
5753
+ border-top-right-radius: 0.25rem;
5754
+ }
5755
+
5756
+ .w3eden .list-group-item:last-child {
5757
+ border-bottom-right-radius: 0.25rem;
5758
+ border-bottom-left-radius: 0.25rem;
5759
+ }
5760
+
5761
+ .w3eden .list-group-item.disabled, .w3eden .list-group-item:disabled {
5762
+ color: #6c757d;
5763
+ pointer-events: none;
5764
+ background-color: #fff;
5765
+ }
5766
+
5767
+ .w3eden .list-group-item.active {
5768
+ z-index: 2;
5769
+ color: #fff;
5770
+ background-color: var(--color-primary);
5771
+ border-color: var(--color-primary);
5772
+ }
5773
+
5774
+ .w3eden .list-group-item + .list-group-item {
5775
+ border-top-width: 0;
5776
+ }
5777
+
5778
+ .w3eden .list-group-item + .list-group-item.active {
5779
+ margin-top: -1px;
5780
+ border-top-width: 1px;
5781
+ }
5782
+
5783
+ .w3eden .list-group-horizontal {
5784
+ -ms-flex-direction: row;
5785
+ flex-direction: row;
5786
+ }
5787
+
5788
+ .w3eden .list-group-horizontal .list-group-item:first-child {
5789
+ border-bottom-left-radius: 0.25rem;
5790
+ border-top-right-radius: 0;
5791
+ }
5792
+
5793
+ .w3eden .list-group-horizontal .list-group-item:last-child {
5794
+ border-top-right-radius: 0.25rem;
5795
+ border-bottom-left-radius: 0;
5796
+ }
5797
+
5798
+ .w3eden .list-group-horizontal .list-group-item.active {
5799
+ margin-top: 0;
5800
+ }
5801
+
5802
+ .w3eden .list-group-horizontal .list-group-item + .list-group-item {
5803
+ border-top-width: 1px;
5804
+ border-left-width: 0;
5805
+ }
5806
+
5807
+ .w3eden .list-group-horizontal .list-group-item + .list-group-item.active {
5808
+ margin-left: -1px;
5809
+ border-left-width: 1px;
5810
+ }
5811
+
5812
+ @media (min-width: 576px) {
5813
+ .w3eden .list-group-horizontal-sm {
5814
+ -ms-flex-direction: row;
5815
+ flex-direction: row;
5816
+ }
5817
+
5818
+ .w3eden .list-group-horizontal-sm .list-group-item:first-child {
5819
+ border-bottom-left-radius: 0.25rem;
5820
+ border-top-right-radius: 0;
5821
+ }
5822
+
5823
+ .w3eden .list-group-horizontal-sm .list-group-item:last-child {
5824
+ border-top-right-radius: 0.25rem;
5825
+ border-bottom-left-radius: 0;
5826
+ }
5827
+
5828
+ .w3eden .list-group-horizontal-sm .list-group-item.active {
5829
+ margin-top: 0;
5830
+ }
5831
+
5832
+ .w3eden .list-group-horizontal-sm .list-group-item + .list-group-item {
5833
+ border-top-width: 1px;
5834
+ border-left-width: 0;
5835
+ }
5836
+
5837
+ .w3eden .list-group-horizontal-sm .list-group-item + .list-group-item.active {
5838
+ margin-left: -1px;
5839
+ border-left-width: 1px;
5840
+ }
5841
+ }
5842
+
5843
+ @media (min-width: 768px) {
5844
+ .w3eden .list-group-horizontal-md {
5845
+ -ms-flex-direction: row;
5846
+ flex-direction: row;
5847
+ }
5848
+
5849
+ .w3eden .list-group-horizontal-md .list-group-item:first-child {
5850
+ border-bottom-left-radius: 0.25rem;
5851
+ border-top-right-radius: 0;
5852
+ }
5853
+
5854
+ .w3eden .list-group-horizontal-md .list-group-item:last-child {
5855
+ border-top-right-radius: 0.25rem;
5856
+ border-bottom-left-radius: 0;
5857
+ }
5858
+
5859
+ .w3eden .list-group-horizontal-md .list-group-item.active {
5860
+ margin-top: 0;
5861
+ }
5862
+
5863
+ .w3eden .list-group-horizontal-md .list-group-item + .list-group-item {
5864
+ border-top-width: 1px;
5865
+ border-left-width: 0;
5866
+ }
5867
+
5868
+ .w3eden .list-group-horizontal-md .list-group-item + .list-group-item.active {
5869
+ margin-left: -1px;
5870
+ border-left-width: 1px;
5871
+ }
5872
+ }
5873
+
5874
+ @media (min-width: 992px) {
5875
+ .w3eden .list-group-horizontal-lg {
5876
+ -ms-flex-direction: row;
5877
+ flex-direction: row;
5878
+ }
5879
+
5880
+ .w3eden .list-group-horizontal-lg .list-group-item:first-child {
5881
+ border-bottom-left-radius: 0.25rem;
5882
+ border-top-right-radius: 0;
5883
+ }
5884
+
5885
+ .w3eden .list-group-horizontal-lg .list-group-item:last-child {
5886
+ border-top-right-radius: 0.25rem;
5887
+ border-bottom-left-radius: 0;
5888
+ }
5889
+
5890
+ .w3eden .list-group-horizontal-lg .list-group-item.active {
5891
+ margin-top: 0;
5892
+ }
5893
+
5894
+ .w3eden .list-group-horizontal-lg .list-group-item + .list-group-item {
5895
+ border-top-width: 1px;
5896
+ border-left-width: 0;
5897
+ }
5898
+
5899
+ .w3eden .list-group-horizontal-lg .list-group-item + .list-group-item.active {
5900
+ margin-left: -1px;
5901
+ border-left-width: 1px;
5902
+ }
5903
+ }
5904
+
5905
+ @media (min-width: 1200px) {
5906
+ .w3eden .list-group-horizontal-xl {
5907
+ -ms-flex-direction: row;
5908
+ flex-direction: row;
5909
+ }
5910
+
5911
+ .w3eden .list-group-horizontal-xl .list-group-item:first-child {
5912
+ border-bottom-left-radius: 0.25rem;
5913
+ border-top-right-radius: 0;
5914
+ }
5915
+
5916
+ .w3eden .list-group-horizontal-xl .list-group-item:last-child {
5917
+ border-top-right-radius: 0.25rem;
5918
+ border-bottom-left-radius: 0;
5919
+ }
5920
+
5921
+ .w3eden .list-group-horizontal-xl .list-group-item.active {
5922
+ margin-top: 0;
5923
+ }
5924
+
5925
+ .w3eden .list-group-horizontal-xl .list-group-item + .list-group-item {
5926
+ border-top-width: 1px;
5927
+ border-left-width: 0;
5928
+ }
5929
+
5930
+ .w3eden .list-group-horizontal-xl .list-group-item + .list-group-item.active {
5931
+ margin-left: -1px;
5932
+ border-left-width: 1px;
5933
+ }
5934
+ }
5935
+
5936
+ .w3eden .list-group-flush .list-group-item {
5937
+ border-right-width: 0;
5938
+ border-left-width: 0;
5939
+ border-radius: 0;
5940
+ }
5941
+
5942
+ .w3eden .list-group-flush .list-group-item:first-child {
5943
+ border-top-width: 0;
5944
+ }
5945
+
5946
+ .w3eden .list-group-flush:last-child .list-group-item:last-child {
5947
+ border-bottom-width: 0;
5948
+ }
5949
+
5950
+ .w3eden .list-group-item-primary {
5951
+ color: #004085;
5952
+ background-color: #b8daff;
5953
+ }
5954
+
5955
+ .w3eden .list-group-item-primary.list-group-item-action:hover, .w3eden .list-group-item-primary.list-group-item-action:focus {
5956
+ color: #004085;
5957
+ background-color: #9fcdff;
5958
+ }
5959
+
5960
+ .w3eden .list-group-item-primary.list-group-item-action.active {
5961
+ color: #fff;
5962
+ background-color: #004085;
5963
+ border-color: #004085;
5964
+ }
5965
+
5966
+ .w3eden .list-group-item-secondary {
5967
+ color: #383d41;
5968
+ background-color: #d6d8db;
5969
+ }
5970
+
5971
+ .w3eden .list-group-item-secondary.list-group-item-action:hover, .w3eden .list-group-item-secondary.list-group-item-action:focus {
5972
+ color: #383d41;
5973
+ background-color: #c8cbcf;
5974
+ }
5975
+
5976
+ .w3eden .list-group-item-secondary.list-group-item-action.active {
5977
+ color: #fff;
5978
+ background-color: #383d41;
5979
+ border-color: #383d41;
5980
+ }
5981
+
5982
+ .w3eden .list-group-item-success {
5983
+ color: var(--color-success-active);
5984
+ background-color: #c3e6cb;
5985
+ }
5986
+
5987
+ .w3eden .list-group-item-success.list-group-item-action:hover, .w3eden .list-group-item-success.list-group-item-action:focus {
5988
+ color: var(--color-success-active);
5989
+ background-color: #b1dfbb;
5990
+ }
5991
+
5992
+ .w3eden .list-group-item-success.list-group-item-action.active {
5993
+ color: #fff;
5994
+ background-color: var(--color-success-active);
5995
+ border-color: var(--color-success-active);
5996
+ }
5997
+
5998
+ .w3eden .list-group-item-info {
5999
+ color: #0c5460;
6000
+ background-color: #bee5eb;
6001
+ }
6002
+
6003
+ .w3eden .list-group-item-info.list-group-item-action:hover, .w3eden .list-group-item-info.list-group-item-action:focus {
6004
+ color: #0c5460;
6005
+ background-color: #abdde5;
6006
+ }
6007
+
6008
+ .w3eden .list-group-item-info.list-group-item-action.active {
6009
+ color: #fff;
6010
+ background-color: #0c5460;
6011
+ border-color: #0c5460;
6012
+ }
6013
+
6014
+ .w3eden .list-group-item-warning {
6015
+ color: #856404;
6016
+ background-color: #ffeeba;
6017
+ }
6018
+
6019
+ .w3eden .list-group-item-warning.list-group-item-action:hover, .w3eden .list-group-item-warning.list-group-item-action:focus {
6020
+ color: #856404;
6021
+ background-color: #ffe8a1;
6022
+ }
6023
+
6024
+ .w3eden .list-group-item-warning.list-group-item-action.active {
6025
+ color: #fff;
6026
+ background-color: #856404;
6027
+ border-color: #856404;
6028
+ }
6029
+
6030
+ .w3eden .list-group-item-danger {
6031
+ color: #721c24;
6032
+ background-color: #f5c6cb;
6033
+ }
6034
+
6035
+ .w3eden .list-group-item-danger.list-group-item-action:hover, .w3eden .list-group-item-danger.list-group-item-action:focus {
6036
+ color: #721c24;
6037
+ background-color: #f1b0b7;
6038
+ }
6039
+
6040
+ .w3eden .list-group-item-danger.list-group-item-action.active {
6041
+ color: #fff;
6042
+ background-color: #721c24;
6043
+ border-color: #721c24;
6044
+ }
6045
+
6046
+ .w3eden .list-group-item-light {
6047
+ color: #818182;
6048
+ background-color: #fdfdfe;
6049
+ }
6050
+
6051
+ .w3eden .list-group-item-light.list-group-item-action:hover, .w3eden .list-group-item-light.list-group-item-action:focus {
6052
+ color: #818182;
6053
+ background-color: #ececf6;
6054
+ }
6055
+
6056
+ .w3eden .list-group-item-light.list-group-item-action.active {
6057
+ color: #fff;
6058
+ background-color: #818182;
6059
+ border-color: #818182;
6060
+ }
6061
+
6062
+ .w3eden .list-group-item-dark {
6063
+ color: #1b1e21;
6064
+ background-color: #c6c8ca;
6065
+ }
6066
+
6067
+ .w3eden .list-group-item-dark.list-group-item-action:hover, .w3eden .list-group-item-dark.list-group-item-action:focus {
6068
+ color: #1b1e21;
6069
+ background-color: #b9bbbe;
6070
+ }
6071
+
6072
+ .w3eden .list-group-item-dark.list-group-item-action.active {
6073
+ color: #fff;
6074
+ background-color: #1b1e21;
6075
+ border-color: #1b1e21;
6076
+ }
6077
+
6078
+ .w3eden .close {
6079
+ float: right;
6080
+ font-size: 1.5rem;
6081
+ font-weight: 700;
6082
+ line-height: 1;
6083
+ color: #000;
6084
+ text-shadow: 0 1px 0 #fff;
6085
+ opacity: .5;
6086
+ }
6087
+
6088
+ .w3eden .close:hover {
6089
+ color: #000;
6090
+ text-decoration: none;
6091
+ }
6092
+
6093
+ .w3eden .close:not(:disabled):not(.disabled):hover, .w3eden .close:not(:disabled):not(.disabled):focus {
6094
+ opacity: .75;
6095
+ }
6096
+
6097
+ .w3eden button.close {
6098
+ padding: 0;
6099
+ background-color: transparent;
6100
+ border: 0;
6101
+ -webkit-appearance: none;
6102
+ -moz-appearance: none;
6103
+ appearance: none;
6104
+ }
6105
+
6106
+ .w3eden a.close.disabled {
6107
+ pointer-events: none;
6108
+ }
6109
+
6110
+ .w3eden .toast {
6111
+ max-width: 350px;
6112
+ overflow: hidden;
6113
+ font-size: 0.875rem;
6114
+ background-color: rgba(255, 255, 255, 0.85);
6115
+ background-clip: padding-box;
6116
+ border: 1px solid rgba(0, 0, 0, 0.1);
6117
+ box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
6118
+ -webkit-backdrop-filter: blur(10px);
6119
+ backdrop-filter: blur(10px);
6120
+ opacity: 0;
6121
+ border-radius: 0.25rem;
6122
+ }
6123
+
6124
+ .w3eden .toast:not(:last-child) {
6125
+ margin-bottom: 0.75rem;
6126
+ }
6127
+
6128
+ .w3eden .toast.showing {
6129
+ opacity: 1;
6130
+ }
6131
+
6132
+ .w3eden .toast.show {
6133
+ display: block;
6134
+ opacity: 1;
6135
+ }
6136
+
6137
+ .w3eden .toast.hide {
6138
+ display: none;
6139
+ }
6140
+
6141
+ .w3eden .toast-header {
6142
+ display: -ms-flexbox;
6143
+ display: flex;
6144
+ -ms-flex-align: center;
6145
+ align-items: center;
6146
+ padding: 0.25rem 0.75rem;
6147
+ color: #6c757d;
6148
+ background-color: rgba(255, 255, 255, 0.85);
6149
+ background-clip: padding-box;
6150
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
6151
+ }
6152
+
6153
+ .w3eden .toast-body {
6154
+ padding: 0.75rem;
6155
+ }
6156
+
6157
+ .w3eden .modal-open {
6158
+ overflow: hidden;
6159
+ }
6160
+
6161
+ .w3eden .modal-open .modal {
6162
+ overflow-x: hidden;
6163
+ overflow-y: auto;
6164
+ }
6165
+
6166
+ .w3eden .modal {
6167
+ position: fixed;
6168
+ top: 0;
6169
+ left: 0;
6170
+ z-index: 1050;
6171
+ display: none;
6172
+ width: 100%;
6173
+ height: 100%;
6174
+ overflow: hidden;
6175
+ outline: 0;
6176
+ }
6177
+
6178
+ .w3eden .modal-dialog {
6179
+ position: relative;
6180
+ width: auto;
6181
+ margin: 0.5rem;
6182
+ pointer-events: none;
6183
+ }
6184
+
6185
+ .w3eden .modal.fade .modal-dialog {
6186
+ transition: -webkit-transform 0.3s ease-out;
6187
+ transition: transform 0.3s ease-out;
6188
+ transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
6189
+ -webkit-transform: translate(0, -50px);
6190
+ transform: translate(0, -50px);
6191
+ }
6192
+
6193
+ @media (prefers-reduced-motion: reduce) {
6194
+ .w3eden .modal.fade .modal-dialog {
6195
+ transition: none;
6196
+ }
6197
+ }
6198
+
6199
+ .w3eden .modal.show .modal-dialog {
6200
+ -webkit-transform: none;
6201
+ transform: none;
6202
+ }
6203
+
6204
+ .w3eden .modal.modal-static .modal-dialog {
6205
+ -webkit-transform: scale(1.02);
6206
+ transform: scale(1.02);
6207
+ }
6208
+
6209
+ .w3eden .modal-dialog-scrollable {
6210
+ display: -ms-flexbox;
6211
+ display: flex;
6212
+ max-height: calc(100% - 1rem);
6213
+ }
6214
+
6215
+ .w3eden .modal-dialog-scrollable .modal-content {
6216
+ max-height: calc(100vh - 1rem);
6217
+ overflow: hidden;
6218
+ }
6219
+
6220
+ .w3eden .modal-dialog-scrollable .modal-header,
6221
+ .w3eden .modal-dialog-scrollable .modal-footer {
6222
+ -ms-flex-negative: 0;
6223
+ flex-shrink: 0;
6224
+ }
6225
+
6226
+ .w3eden .modal-dialog-scrollable .modal-body {
6227
+ overflow-y: auto;
6228
+ }
6229
+
6230
+ .w3eden .modal-dialog-centered {
6231
+ display: -ms-flexbox;
6232
+ display: flex;
6233
+ -ms-flex-align: center;
6234
+ align-items: center;
6235
+ min-height: calc(100% - 1rem);
6236
+ }
6237
+
6238
+ .w3eden .modal-dialog-centered::before {
6239
+ display: block;
6240
+ height: calc(100vh - 1rem);
6241
+ content: "";
6242
+ }
6243
+
6244
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable {
6245
+ -ms-flex-direction: column;
6246
+ flex-direction: column;
6247
+ -ms-flex-pack: center;
6248
+ justify-content: center;
6249
+ height: 100%;
6250
+ }
6251
+
6252
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable .modal-content {
6253
+ max-height: none;
6254
+ }
6255
+
6256
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable::before {
6257
+ content: none;
6258
+ }
6259
+
6260
+ .w3eden .modal-content {
6261
+ position: relative;
6262
+ display: -ms-flexbox;
6263
+ display: flex;
6264
+ -ms-flex-direction: column;
6265
+ flex-direction: column;
6266
+ width: 100%;
6267
+ pointer-events: auto;
6268
+ background-color: #fff;
6269
+ background-clip: padding-box;
6270
+ border: 1px solid rgba(0, 0, 0, 0.2);
6271
+ border-radius: 0.3rem;
6272
+ outline: 0;
6273
+ }
6274
+
6275
+ .modal-backdrop {
6276
+ position: fixed;
6277
+ top: 0;
6278
+ left: 0;
6279
+ z-index: 1040;
6280
+ width: 100vw;
6281
+ height: 100vh;
6282
+ background-color: #000;
6283
+ }
6284
+
6285
+ .modal-backdrop.fade {
6286
+ opacity: 0;
6287
+ }
6288
+
6289
+ .modal-backdrop.show {
6290
+ opacity: 0.5;
6291
+ }
6292
+
6293
+ .w3eden .modal-header {
6294
+ display: -ms-flexbox;
6295
+ display: flex;
6296
+ -ms-flex-align: start;
6297
+ align-items: flex-start;
6298
+ -ms-flex-pack: justify;
6299
+ justify-content: space-between;
6300
+ padding: 1rem 1rem;
6301
+ border-bottom: 1px solid #dee2e6;
6302
+ border-top-left-radius: calc(0.3rem - 1px);
6303
+ border-top-right-radius: calc(0.3rem - 1px);
6304
+ }
6305
+
6306
+ .w3eden .modal-header .close {
6307
+ padding: 1rem 1rem;
6308
+ margin: -1rem -1rem -1rem auto;
6309
+ }
6310
+
6311
+ .w3eden .modal-title {
6312
+ margin-bottom: 0;
6313
+ line-height: 1.5;
6314
+ }
6315
+
6316
+ .w3eden .modal-body {
6317
+ position: relative;
6318
+ -ms-flex: 1 1 auto;
6319
+ flex: 1 1 auto;
6320
+ padding: 1rem;
6321
+ }
6322
+
6323
+ .w3eden .modal-footer {
6324
+ display: -ms-flexbox;
6325
+ display: flex;
6326
+ -ms-flex-wrap: wrap;
6327
+ flex-wrap: wrap;
6328
+ -ms-flex-align: center;
6329
+ align-items: center;
6330
+ -ms-flex-pack: end;
6331
+ justify-content: flex-end;
6332
+ padding: 0.75rem;
6333
+ border-top: 1px solid #dee2e6;
6334
+ border-bottom-right-radius: calc(0.3rem - 1px);
6335
+ border-bottom-left-radius: calc(0.3rem - 1px);
6336
+ }
6337
+
6338
+ .w3eden .modal-footer > * {
6339
+ margin: 0.25rem;
6340
+ }
6341
+
6342
+ .w3eden .modal-scrollbar-measure {
6343
+ position: absolute;
6344
+ top: -9999px;
6345
+ width: 50px;
6346
+ height: 50px;
6347
+ overflow: scroll;
6348
+ }
6349
+
6350
+ @media (min-width: 576px) {
6351
+ .w3eden .modal-dialog {
6352
+ max-width: 500px;
6353
+ margin: 1.75rem auto;
6354
+ }
6355
+
6356
+ .w3eden .modal-dialog-scrollable {
6357
+ max-height: calc(100% - 3.5rem);
6358
+ }
6359
+
6360
+ .w3eden .modal-dialog-scrollable .modal-content {
6361
+ max-height: calc(100vh - 3.5rem);
6362
+ }
6363
+
6364
+ .w3eden .modal-dialog-centered {
6365
+ min-height: calc(100% - 3.5rem);
6366
+ }
6367
+
6368
+ .w3eden .modal-dialog-centered::before {
6369
+ height: calc(100vh - 3.5rem);
6370
+ }
6371
+
6372
+ .w3eden .modal-sm {
6373
+ max-width: 300px;
6374
+ }
6375
+ }
6376
+
6377
+ @media (min-width: 992px) {
6378
+ .w3eden .modal-lg,
6379
+ .w3eden .modal-xl {
6380
+ max-width: 800px;
6381
+ }
6382
+ }
6383
+
6384
+ @media (min-width: 1200px) {
6385
+ .w3eden .modal-xl {
6386
+ max-width: 1140px;
6387
+ }
6388
+ }
6389
+
6390
+ .w3eden .tooltip {
6391
+ position: absolute;
6392
+ z-index: 1070;
6393
+ display: block;
6394
+ margin: 0;
6395
+ font-family: -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";
6396
+ font-style: normal;
6397
+ font-weight: 400;
6398
+ line-height: 1.5;
6399
+ text-align: left;
6400
+ text-align: start;
6401
+ text-decoration: none;
6402
+ text-shadow: none;
6403
+ text-transform: none;
6404
+ letter-spacing: normal;
6405
+ word-break: normal;
6406
+ word-spacing: normal;
6407
+ white-space: normal;
6408
+ line-break: auto;
6409
+ font-size: 0.875rem;
6410
+ word-wrap: break-word;
6411
+ opacity: 0;
6412
+ }
6413
+
6414
+ .w3eden .tooltip.show {
6415
+ opacity: 0.9;
6416
+ }
6417
+
6418
+ .w3eden .tooltip .arrow {
6419
+ position: absolute;
6420
+ display: block;
6421
+ width: 0.8rem;
6422
+ height: 0.4rem;
6423
+ }
6424
+
6425
+ .w3eden .tooltip .arrow::before {
6426
+ position: absolute;
6427
+ content: "";
6428
+ border-color: transparent;
6429
+ border-style: solid;
6430
+ }
6431
+
6432
+ .w3eden .bs-tooltip-top, .w3eden .bs-tooltip-auto[x-placement^="top"] {
6433
+ padding: 0.4rem 0;
6434
+ }
6435
+
6436
+ .w3eden .bs-tooltip-top .arrow, .w3eden .bs-tooltip-auto[x-placement^="top"] .arrow {
6437
+ bottom: 0;
6438
+ }
6439
+
6440
+ .w3eden .bs-tooltip-top .arrow::before, .w3eden .bs-tooltip-auto[x-placement^="top"] .arrow::before {
6441
+ top: 0;
6442
+ border-width: 0.4rem 0.4rem 0;
6443
+ border-top-color: #000;
6444
+ }
6445
+
6446
+ .w3eden .bs-tooltip-right, .w3eden .bs-tooltip-auto[x-placement^="right"] {
6447
+ padding: 0 0.4rem;
6448
+ }
6449
+
6450
+ .w3eden .bs-tooltip-right .arrow, .w3eden .bs-tooltip-auto[x-placement^="right"] .arrow {
6451
+ left: 0;
6452
+ width: 0.4rem;
6453
+ height: 0.8rem;
6454
+ }
6455
+
6456
+ .w3eden .bs-tooltip-right .arrow::before, .w3eden .bs-tooltip-auto[x-placement^="right"] .arrow::before {
6457
+ right: 0;
6458
+ border-width: 0.4rem 0.4rem 0.4rem 0;
6459
+ border-right-color: #000;
6460
+ }
6461
+
6462
+ .w3eden .bs-tooltip-bottom, .w3eden .bs-tooltip-auto[x-placement^="bottom"] {
6463
+ padding: 0.4rem 0;
6464
+ }
6465
+
6466
+ .w3eden .bs-tooltip-bottom .arrow, .w3eden .bs-tooltip-auto[x-placement^="bottom"] .arrow {
6467
+ top: 0;
6468
+ }
6469
+
6470
+ .w3eden .bs-tooltip-bottom .arrow::before, .w3eden .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
6471
+ bottom: 0;
6472
+ border-width: 0 0.4rem 0.4rem;
6473
+ border-bottom-color: #000;
6474
+ }
6475
+
6476
+ .w3eden .bs-tooltip-left, .w3eden .bs-tooltip-auto[x-placement^="left"] {
6477
+ padding: 0 0.4rem;
6478
+ }
6479
+
6480
+ .w3eden .bs-tooltip-left .arrow, .w3eden .bs-tooltip-auto[x-placement^="left"] .arrow {
6481
+ right: 0;
6482
+ width: 0.4rem;
6483
+ height: 0.8rem;
6484
+ }
6485
+
6486
+ .w3eden .bs-tooltip-left .arrow::before, .w3eden .bs-tooltip-auto[x-placement^="left"] .arrow::before {
6487
+ left: 0;
6488
+ border-width: 0.4rem 0 0.4rem 0.4rem;
6489
+ border-left-color: #000;
6490
+ }
6491
+
6492
+ .w3eden .tooltip-inner {
6493
+ max-width: 200px;
6494
+ padding: 0.25rem 0.5rem;
6495
+ color: #fff;
6496
+ text-align: center;
6497
+ background-color: #000;
6498
+ border-radius: 0.25rem;
6499
+ }
6500
+
6501
+ .w3eden .popover {
6502
+ position: absolute;
6503
+ top: 0;
6504
+ left: 0;
6505
+ z-index: 1060;
6506
+ display: block;
6507
+ max-width: 276px;
6508
+ font-family: -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";
6509
+ font-style: normal;
6510
+ font-weight: 400;
6511
+ line-height: 1.5;
6512
+ text-align: left;
6513
+ text-align: start;
6514
+ text-decoration: none;
6515
+ text-shadow: none;
6516
+ text-transform: none;
6517
+ letter-spacing: normal;
6518
+ word-break: normal;
6519
+ word-spacing: normal;
6520
+ white-space: normal;
6521
+ line-break: auto;
6522
+ font-size: 0.875rem;
6523
+ word-wrap: break-word;
6524
+ background-color: #fff;
6525
+ background-clip: padding-box;
6526
+ border: 1px solid rgba(0, 0, 0, 0.2);
6527
+ border-radius: 0.3rem;
6528
+ }
6529
+
6530
+ .w3eden .popover .arrow {
6531
+ position: absolute;
6532
+ display: block;
6533
+ width: 1rem;
6534
+ height: 0.5rem;
6535
+ margin: 0 0.3rem;
6536
+ }
6537
+
6538
+ .w3eden .popover .arrow::before, .w3eden .popover .arrow::after {
6539
+ position: absolute;
6540
+ display: block;
6541
+ content: "";
6542
+ border-color: transparent;
6543
+ border-style: solid;
6544
+ }
6545
+
6546
+ .w3eden .bs-popover-top, .w3eden .bs-popover-auto[x-placement^="top"] {
6547
+ margin-bottom: 0.5rem;
6548
+ }
6549
+
6550
+ .w3eden .bs-popover-top > .arrow, .w3eden .bs-popover-auto[x-placement^="top"] > .arrow {
6551
+ bottom: calc(-0.5rem - 1px);
6552
+ }
6553
+
6554
+ .w3eden .bs-popover-top > .arrow::before, .w3eden .bs-popover-auto[x-placement^="top"] > .arrow::before {
6555
+ bottom: 0;
6556
+ border-width: 0.5rem 0.5rem 0;
6557
+ border-top-color: rgba(0, 0, 0, 0.25);
6558
+ }
6559
+
6560
+ .w3eden .bs-popover-top > .arrow::after, .w3eden .bs-popover-auto[x-placement^="top"] > .arrow::after {
6561
+ bottom: 1px;
6562
+ border-width: 0.5rem 0.5rem 0;
6563
+ border-top-color: #fff;
6564
+ }
6565
+
6566
+ .w3eden .bs-popover-right, .w3eden .bs-popover-auto[x-placement^="right"] {
6567
+ margin-left: 0.5rem;
6568
+ }
6569
+
6570
+ .w3eden .bs-popover-right > .arrow, .w3eden .bs-popover-auto[x-placement^="right"] > .arrow {
6571
+ left: calc(-0.5rem - 1px);
6572
+ width: 0.5rem;
6573
+ height: 1rem;
6574
+ margin: 0.3rem 0;
6575
+ }
6576
+
6577
+ .w3eden .bs-popover-right > .arrow::before, .w3eden .bs-popover-auto[x-placement^="right"] > .arrow::before {
6578
+ left: 0;
6579
+ border-width: 0.5rem 0.5rem 0.5rem 0;
6580
+ border-right-color: rgba(0, 0, 0, 0.25);
6581
+ }
6582
+
6583
+ .w3eden .bs-popover-right > .arrow::after, .w3eden .bs-popover-auto[x-placement^="right"] > .arrow::after {
6584
+ left: 1px;
6585
+ border-width: 0.5rem 0.5rem 0.5rem 0;
6586
+ border-right-color: #fff;
6587
+ }
6588
+
6589
+ .w3eden .bs-popover-bottom, .w3eden .bs-popover-auto[x-placement^="bottom"] {
6590
+ margin-top: 0.5rem;
6591
+ }
6592
+
6593
+ .w3eden .bs-popover-bottom > .arrow, .w3eden .bs-popover-auto[x-placement^="bottom"] > .arrow {
6594
+ top: calc(-0.5rem - 1px);
6595
+ }
6596
+
6597
+ .w3eden .bs-popover-bottom > .arrow::before, .w3eden .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
6598
+ top: 0;
6599
+ border-width: 0 0.5rem 0.5rem 0.5rem;
6600
+ border-bottom-color: rgba(0, 0, 0, 0.25);
6601
+ }
6602
+
6603
+ .w3eden .bs-popover-bottom > .arrow::after, .w3eden .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
6604
+ top: 1px;
6605
+ border-width: 0 0.5rem 0.5rem 0.5rem;
6606
+ border-bottom-color: #fff;
6607
+ }
6608
+
6609
+ .w3eden .bs-popover-bottom .popover-header::before, .w3eden .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
6610
+ position: absolute;
6611
+ top: 0;
6612
+ left: 50%;
6613
+ display: block;
6614
+ width: 1rem;
6615
+ margin-left: -0.5rem;
6616
+ content: "";
6617
+ border-bottom: 1px solid #f7f7f7;
6618
+ }
6619
+
6620
+ .w3eden .bs-popover-left, .w3eden .bs-popover-auto[x-placement^="left"] {
6621
+ margin-right: 0.5rem;
6622
+ }
6623
+
6624
+ .w3eden .bs-popover-left > .arrow, .w3eden .bs-popover-auto[x-placement^="left"] > .arrow {
6625
+ right: calc(-0.5rem - 1px);
6626
+ width: 0.5rem;
6627
+ height: 1rem;
6628
+ margin: 0.3rem 0;
6629
+ }
6630
+
6631
+ .w3eden .bs-popover-left > .arrow::before, .w3eden .bs-popover-auto[x-placement^="left"] > .arrow::before {
6632
+ right: 0;
6633
+ border-width: 0.5rem 0 0.5rem 0.5rem;
6634
+ border-left-color: rgba(0, 0, 0, 0.25);
6635
+ }
6636
+
6637
+ .w3eden .bs-popover-left > .arrow::after, .w3eden .bs-popover-auto[x-placement^="left"] > .arrow::after {
6638
+ right: 1px;
6639
+ border-width: 0.5rem 0 0.5rem 0.5rem;
6640
+ border-left-color: #fff;
6641
+ }
6642
+
6643
+ .w3eden .popover-header {
6644
+ padding: 0.5rem 0.75rem;
6645
+ margin-bottom: 0;
6646
+ font-size: 1rem;
6647
+ background-color: #f7f7f7;
6648
+ border-bottom: 1px solid #ebebeb;
6649
+ border-top-left-radius: calc(0.3rem - 1px);
6650
+ border-top-right-radius: calc(0.3rem - 1px);
6651
+ }
6652
+
6653
+ .w3eden .popover-header:empty {
6654
+ display: none;
6655
+ }
6656
+
6657
+ .w3eden .popover-body {
6658
+ padding: 0.5rem 0.75rem;
6659
+ color: #212529;
6660
+ }
6661
+
6662
+ .w3eden .carousel {
6663
+ position: relative;
6664
+ }
6665
+
6666
+ .w3eden .carousel.pointer-event {
6667
+ -ms-touch-action: pan-y;
6668
+ touch-action: pan-y;
6669
+ }
6670
+
6671
+ .w3eden .carousel-inner {
6672
+ position: relative;
6673
+ width: 100%;
6674
+ overflow: hidden;
6675
+ }
6676
+
6677
+ .w3eden .carousel-inner::after {
6678
+ display: block;
6679
+ clear: both;
6680
+ content: "";
6681
+ }
6682
+
6683
+ .w3eden .carousel-item {
6684
+ position: relative;
6685
+ display: none;
6686
+ float: left;
6687
+ width: 100%;
6688
+ margin-right: -100%;
6689
+ -webkit-backface-visibility: hidden;
6690
+ backface-visibility: hidden;
6691
+ transition: -webkit-transform 0.6s ease-in-out;
6692
+ transition: transform 0.6s ease-in-out;
6693
+ transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
6694
+ }
6695
+
6696
+ @media (prefers-reduced-motion: reduce) {
6697
+ .w3eden .carousel-item {
6698
+ transition: none;
6699
+ }
6700
+ }
6701
+
6702
+ .w3eden .carousel-item.active,
6703
+ .w3eden .carousel-item-next,
6704
+ .w3eden .carousel-item-prev {
6705
+ display: block;
6706
+ }
6707
+
6708
+ .w3eden .carousel-item-next:not(.carousel-item-left),
6709
+ .w3eden .active.carousel-item-right {
6710
+ -webkit-transform: translateX(100%);
6711
+ transform: translateX(100%);
6712
+ }
6713
+
6714
+ .w3eden .carousel-item-prev:not(.carousel-item-right),
6715
+ .w3eden .active.carousel-item-left {
6716
+ -webkit-transform: translateX(-100%);
6717
+ transform: translateX(-100%);
6718
+ }
6719
+
6720
+ .w3eden .carousel-fade .carousel-item {
6721
+ opacity: 0;
6722
+ transition-property: opacity;
6723
+ -webkit-transform: none;
6724
+ transform: none;
6725
+ }
6726
+
6727
+ .w3eden .carousel-fade .carousel-item.active,
6728
+ .w3eden .carousel-fade .carousel-item-next.carousel-item-left,
6729
+ .w3eden .carousel-fade .carousel-item-prev.carousel-item-right {
6730
+ z-index: 1;
6731
+ opacity: 1;
6732
+ }
6733
+
6734
+ .w3eden .carousel-fade .active.carousel-item-left,
6735
+ .w3eden .carousel-fade .active.carousel-item-right {
6736
+ z-index: 0;
6737
+ opacity: 0;
6738
+ transition: opacity 0s 0.6s;
6739
+ }
6740
+
6741
+ @media (prefers-reduced-motion: reduce) {
6742
+ .w3eden .carousel-fade .active.carousel-item-left,
6743
+ .w3eden .carousel-fade .active.carousel-item-right {
6744
+ transition: none;
6745
+ }
6746
+ }
6747
+
6748
+ .w3eden .carousel-control-prev,
6749
+ .w3eden .carousel-control-next {
6750
+ position: absolute;
6751
+ top: 0;
6752
+ bottom: 0;
6753
+ z-index: 1;
6754
+ display: -ms-flexbox;
6755
+ display: flex;
6756
+ -ms-flex-align: center;
6757
+ align-items: center;
6758
+ -ms-flex-pack: center;
6759
+ justify-content: center;
6760
+ width: 15%;
6761
+ color: #fff;
6762
+ text-align: center;
6763
+ opacity: 0.5;
6764
+ transition: opacity 0.15s ease;
6765
+ }
6766
+
6767
+ @media (prefers-reduced-motion: reduce) {
6768
+ .w3eden .carousel-control-prev,
6769
+ .w3eden .carousel-control-next {
6770
+ transition: none;
6771
+ }
6772
+ }
6773
+
6774
+ .w3eden .carousel-control-prev:hover, .w3eden .carousel-control-prev:focus,
6775
+ .w3eden .carousel-control-next:hover,
6776
+ .w3eden .carousel-control-next:focus {
6777
+ color: #fff;
6778
+ text-decoration: none;
6779
+ outline: 0;
6780
+ opacity: 0.9;
6781
+ }
6782
+
6783
+ .w3eden .carousel-control-prev {
6784
+ left: 0;
6785
+ }
6786
+
6787
+ .w3eden .carousel-control-next {
6788
+ right: 0;
6789
+ }
6790
+
6791
+ .w3eden .carousel-control-prev-icon,
6792
+ .w3eden .carousel-control-next-icon {
6793
+ display: inline-block;
6794
+ width: 20px;
6795
+ height: 20px;
6796
+ background: no-repeat 50% / 100% 100%;
6797
+ }
6798
+
6799
+ .w3eden .carousel-control-prev-icon {
6800
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
6801
+ }
6802
+
6803
+ .w3eden .carousel-control-next-icon {
6804
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
6805
+ }
6806
+
6807
+ .w3eden .carousel-indicators {
6808
+ position: absolute;
6809
+ right: 0;
6810
+ bottom: 0;
6811
+ left: 0;
6812
+ z-index: 15;
6813
+ display: -ms-flexbox;
6814
+ display: flex;
6815
+ -ms-flex-pack: center;
6816
+ justify-content: center;
6817
+ padding-left: 0;
6818
+ margin-right: 15%;
6819
+ margin-left: 15%;
6820
+ list-style: none;
6821
+ }
6822
+
6823
+ .w3eden .carousel-indicators li {
6824
+ box-sizing: content-box;
6825
+ -ms-flex: 0 1 auto;
6826
+ flex: 0 1 auto;
6827
+ width: 30px;
6828
+ height: 3px;
6829
+ margin-right: 3px;
6830
+ margin-left: 3px;
6831
+ text-indent: -999px;
6832
+ cursor: pointer;
6833
+ background-color: #fff;
6834
+ background-clip: padding-box;
6835
+ border-top: 10px solid transparent;
6836
+ border-bottom: 10px solid transparent;
6837
+ opacity: .5;
6838
+ transition: opacity 0.6s ease;
6839
+ }
6840
+
6841
+ @media (prefers-reduced-motion: reduce) {
6842
+ .w3eden .carousel-indicators li {
6843
+ transition: none;
6844
+ }
6845
+ }
6846
+
6847
+ .w3eden .carousel-indicators .active {
6848
+ opacity: 1;
6849
+ }
6850
+
6851
+ .w3eden .carousel-caption {
6852
+ position: absolute;
6853
+ right: 15%;
6854
+ bottom: 20px;
6855
+ left: 15%;
6856
+ z-index: 10;
6857
+ padding-top: 20px;
6858
+ padding-bottom: 20px;
6859
+ color: #fff;
6860
+ text-align: center;
6861
+ }
6862
+
6863
+ @-webkit-keyframes spinner-border {
6864
+ to {
6865
+ -webkit-transform: rotate(360deg);
6866
+ transform: rotate(360deg);
6867
+ }
6868
+ }
6869
+
6870
+ @keyframes spinner-border {
6871
+ to {
6872
+ -webkit-transform: rotate(360deg);
6873
+ transform: rotate(360deg);
6874
+ }
6875
+ }
6876
+
6877
+ .w3eden .spinner-border {
6878
+ display: inline-block;
6879
+ width: 2rem;
6880
+ height: 2rem;
6881
+ vertical-align: text-bottom;
6882
+ border: 0.25em solid currentColor;
6883
+ border-right-color: transparent;
6884
+ border-radius: 50%;
6885
+ -webkit-animation: spinner-border .75s linear infinite;
6886
+ animation: spinner-border .75s linear infinite;
6887
+ }
6888
+
6889
+ .w3eden .spinner-border-sm {
6890
+ width: 1rem;
6891
+ height: 1rem;
6892
+ border-width: 0.2em;
6893
+ }
6894
+
6895
+ @-webkit-keyframes spinner-grow {
6896
+ 0% {
6897
+ -webkit-transform: scale(0);
6898
+ transform: scale(0);
6899
+ }
6900
+ 50% {
6901
+ opacity: 1;
6902
+ }
6903
+ }
6904
+
6905
+ @keyframes spinner-grow {
6906
+ 0% {
6907
+ -webkit-transform: scale(0);
6908
+ transform: scale(0);
6909
+ }
6910
+ 50% {
6911
+ opacity: 1;
6912
+ }
6913
+ }
6914
+
6915
+ .w3eden .spinner-grow {
6916
+ display: inline-block;
6917
+ width: 2rem;
6918
+ height: 2rem;
6919
+ vertical-align: text-bottom;
6920
+ background-color: currentColor;
6921
+ border-radius: 50%;
6922
+ opacity: 0;
6923
+ -webkit-animation: spinner-grow .75s linear infinite;
6924
+ animation: spinner-grow .75s linear infinite;
6925
+ }
6926
+
6927
+ .w3eden .spinner-grow-sm {
6928
+ width: 1rem;
6929
+ height: 1rem;
6930
+ }
6931
+
6932
+ .w3eden .align-baseline {
6933
+ vertical-align: baseline !important;
6934
+ }
6935
+
6936
+ .w3eden .align-top {
6937
+ vertical-align: top !important;
6938
+ }
6939
+
6940
+ .w3eden .align-middle {
6941
+ vertical-align: middle !important;
6942
+ }
6943
+
6944
+ .w3eden .align-bottom {
6945
+ vertical-align: bottom !important;
6946
+ }
6947
+
6948
+ .w3eden .align-text-bottom {
6949
+ vertical-align: text-bottom !important;
6950
+ }
6951
+
6952
+ .w3eden .align-text-top {
6953
+ vertical-align: text-top !important;
6954
+ }
6955
+
6956
+ .w3eden .bg-primary {
6957
+ background-color: var(--color-primary) !important;
6958
+ }
6959
+
6960
+ .w3eden a.bg-primary:hover, .w3eden a.bg-primary:focus,
6961
+ .w3eden button.bg-primary:hover,
6962
+ .w3eden button.bg-primary:focus {
6963
+ background-color: var(--color-primary-hover) !important;
6964
+ }
6965
+
6966
+ .w3eden .bg-secondary {
6967
+ background-color: #6c757d !important;
6968
+ }
6969
+
6970
+ .w3eden a.bg-secondary:hover, .w3eden a.bg-secondary:focus,
6971
+ .w3eden button.bg-secondary:hover,
6972
+ .w3eden button.bg-secondary:focus {
6973
+ background-color: #545b62 !important;
6974
+ }
6975
+
6976
+ .w3eden .bg-success {
6977
+ background-color: var(--color-success) !important;
6978
+ }
6979
+
6980
+ .w3eden a.bg-success:hover, .w3eden a.bg-success:focus,
6981
+ .w3eden button.bg-success:hover,
6982
+ .w3eden button.bg-success:focus {
6983
+ background-color: var(--color-success) !important;
6984
+ }
6985
+
6986
+ .w3eden .bg-info {
6987
+ background-color: var(--color-info) !important;
6988
+ }
6989
+
6990
+ .w3eden a.bg-info:hover, .w3eden a.bg-info:focus,
6991
+ .w3eden button.bg-info:hover,
6992
+ .w3eden button.bg-info:focus {
6993
+ background-color: var(--color-info-active) !important;
6994
+ }
6995
+
6996
+ .w3eden .bg-warning {
6997
+ background-color: var(--color-warning) !important;
6998
+ }
6999
+
7000
+ .w3eden a.bg-warning:hover, .w3eden a.bg-warning:focus,
7001
+ .w3eden button.bg-warning:hover,
7002
+ .w3eden button.bg-warning:focus {
7003
+ background-color: #d39e00 !important;
7004
+ }
7005
+
7006
+ .w3eden .bg-danger {
7007
+ background-color: var(--color-danger) !important;
7008
+ }
7009
+
7010
+ .w3eden a.bg-danger:hover, .w3eden a.bg-danger:focus,
7011
+ .w3eden button.bg-danger:hover,
7012
+ .w3eden button.bg-danger:focus {
7013
+ background-color: var(--color-danger-active) !important;
7014
+ }
7015
+
7016
+ .w3eden .bg-light {
7017
+ background-color: #f8f9fa !important;
7018
+ }
7019
+
7020
+ .w3eden a.bg-light:hover, .w3eden a.bg-light:focus,
7021
+ .w3eden button.bg-light:hover,
7022
+ .w3eden button.bg-light:focus {
7023
+ background-color: #dae0e5 !important;
7024
+ }
7025
+
7026
+ .w3eden .bg-dark {
7027
+ background-color: #343a40 !important;
7028
+ }
7029
+
7030
+ .w3eden a.bg-dark:hover, .w3eden a.bg-dark:focus,
7031
+ .w3eden button.bg-dark:hover,
7032
+ .w3eden button.bg-dark:focus {
7033
+ background-color: #1d2124 !important;
7034
+ }
7035
+
7036
+ .w3eden .bg-white {
7037
+ background-color: #fff !important;
7038
+ }
7039
+
7040
+ .w3eden .bg-transparent {
7041
+ background-color: transparent !important;
7042
+ }
7043
+
7044
+ .w3eden .border {
7045
+ border: 1px solid #dee2e6 !important;
7046
+ }
7047
+
7048
+ .w3eden .border-top {
7049
+ border-top: 1px solid #dee2e6 !important;
7050
+ }
7051
+
7052
+ .w3eden .border-right {
7053
+ border-right: 1px solid #dee2e6 !important;
7054
+ }
7055
+
7056
+ .w3eden .border-bottom {
7057
+ border-bottom: 1px solid #dee2e6 !important;
7058
+ }
7059
+
7060
+ .w3eden .border-left {
7061
+ border-left: 1px solid #dee2e6 !important;
7062
+ }
7063
+
7064
+ .w3eden .border-0 {
7065
+ border: 0 !important;
7066
+ }
7067
+
7068
+ .w3eden .border-top-0 {
7069
+ border-top: 0 !important;
7070
+ }
7071
+
7072
+ .w3eden .border-right-0 {
7073
+ border-right: 0 !important;
7074
+ }
7075
+
7076
+ .w3eden .border-bottom-0 {
7077
+ border-bottom: 0 !important;
7078
+ }
7079
+
7080
+ .w3eden .border-left-0 {
7081
+ border-left: 0 !important;
7082
+ }
7083
+
7084
+ .w3eden .border-primary {
7085
+ border-color: var(--color-primary) !important;
7086
+ }
7087
+
7088
+ .w3eden .border-secondary {
7089
+ border-color: #6c757d !important;
7090
+ }
7091
+
7092
+ .w3eden .border-success {
7093
+ border-color: var(--color-success) !important;
7094
+ }
7095
+
7096
+ .w3eden .border-info {
7097
+ border-color: var(--color-info) !important;
7098
+ }
7099
+
7100
+ .w3eden .border-warning {
7101
+ border-color: var(--color-warning) !important;
7102
+ }
7103
+
7104
+ .w3eden .border-danger {
7105
+ border-color: var(--color-danger) !important;
7106
+ }
7107
+
7108
+ .w3eden .border-light {
7109
+ border-color: #f8f9fa !important;
7110
+ }
7111
+
7112
+ .w3eden .border-dark {
7113
+ border-color: #343a40 !important;
7114
+ }
7115
+
7116
+ .w3eden .border-white {
7117
+ border-color: #fff !important;
7118
+ }
7119
+
7120
+ .w3eden .rounded-sm {
7121
+ border-radius: 0.2rem !important;
7122
+ }
7123
+
7124
+ .w3eden .rounded {
7125
+ border-radius: 0.25rem !important;
7126
+ }
7127
+
7128
+ .w3eden .rounded-top {
7129
+ border-top-left-radius: 0.25rem !important;
7130
+ border-top-right-radius: 0.25rem !important;
7131
+ }
7132
+
7133
+ .w3eden .rounded-right {
7134
+ border-top-right-radius: 0.25rem !important;
7135
+ border-bottom-right-radius: 0.25rem !important;
7136
+ }
7137
+
7138
+ .w3eden .rounded-bottom {
7139
+ border-bottom-right-radius: 0.25rem !important;
7140
+ border-bottom-left-radius: 0.25rem !important;
7141
+ }
7142
+
7143
+ .w3eden .rounded-left {
7144
+ border-top-left-radius: 0.25rem !important;
7145
+ border-bottom-left-radius: 0.25rem !important;
7146
+ }
7147
+
7148
+ .w3eden .rounded-lg {
7149
+ border-radius: 0.3rem !important;
7150
+ }
7151
+
7152
+ .w3eden .rounded-circle {
7153
+ border-radius: 50% !important;
7154
+ }
7155
+
7156
+ .w3eden .rounded-pill {
7157
+ border-radius: 50rem !important;
7158
+ }
7159
+
7160
+ .w3eden .rounded-0 {
7161
+ border-radius: 0 !important;
7162
+ }
7163
+
7164
+ .w3eden .clearfix::after {
7165
+ display: block;
7166
+ clear: both;
7167
+ content: "";
7168
+ }
7169
+
7170
+ .w3eden .d-none {
7171
+ display: none !important;
7172
+ }
7173
+
7174
+ .w3eden .d-inline {
7175
+ display: inline !important;
7176
+ }
7177
+
7178
+ .w3eden .d-inline-block {
7179
+ display: inline-block !important;
7180
+ }
7181
+
7182
+ .w3eden .d-block {
7183
+ display: block !important;
7184
+ }
7185
+
7186
+ .w3eden .d-table {
7187
+ display: table !important;
7188
+ }
7189
+
7190
+ .w3eden .d-table-row {
7191
+ display: table-row !important;
7192
+ }
7193
+
7194
+ .w3eden .d-table-cell {
7195
+ display: table-cell !important;
7196
+ }
7197
+
7198
+ .w3eden .d-flex {
7199
+ display: -ms-flexbox !important;
7200
+ display: flex !important;
7201
+ }
7202
+
7203
+ .w3eden .d-inline-flex {
7204
+ display: -ms-inline-flexbox !important;
7205
+ display: inline-flex !important;
7206
+ }
7207
+
7208
+ @media (min-width: 576px) {
7209
+ .w3eden .d-sm-none {
7210
+ display: none !important;
7211
+ }
7212
+
7213
+ .w3eden .d-sm-inline {
7214
+ display: inline !important;
7215
+ }
7216
+
7217
+ .w3eden .d-sm-inline-block {
7218
+ display: inline-block !important;
7219
+ }
7220
+
7221
+ .w3eden .d-sm-block {
7222
+ display: block !important;
7223
+ }
7224
+
7225
+ .w3eden .d-sm-table {
7226
+ display: table !important;
7227
+ }
7228
+
7229
+ .w3eden .d-sm-table-row {
7230
+ display: table-row !important;
7231
+ }
7232
+
7233
+ .w3eden .d-sm-table-cell {
7234
+ display: table-cell !important;
7235
+ }
7236
+
7237
+ .w3eden .d-sm-flex {
7238
+ display: -ms-flexbox !important;
7239
+ display: flex !important;
7240
+ }
7241
+
7242
+ .w3eden .d-sm-inline-flex {
7243
+ display: -ms-inline-flexbox !important;
7244
+ display: inline-flex !important;
7245
+ }
7246
+ }
7247
+
7248
+ @media (min-width: 768px) {
7249
+ .w3eden .d-md-none {
7250
+ display: none !important;
7251
+ }
7252
+
7253
+ .w3eden .d-md-inline {
7254
+ display: inline !important;
7255
+ }
7256
+
7257
+ .w3eden .d-md-inline-block {
7258
+ display: inline-block !important;
7259
+ }
7260
+
7261
+ .w3eden .d-md-block {
7262
+ display: block !important;
7263
+ }
7264
+
7265
+ .w3eden .d-md-table {
7266
+ display: table !important;
7267
+ }
7268
+
7269
+ .w3eden .d-md-table-row {
7270
+ display: table-row !important;
7271
+ }
7272
+
7273
+ .w3eden .d-md-table-cell {
7274
+ display: table-cell !important;
7275
+ }
7276
+
7277
+ .w3eden .d-md-flex {
7278
+ display: -ms-flexbox !important;
7279
+ display: flex !important;
7280
+ }
7281
+
7282
+ .w3eden .d-md-inline-flex {
7283
+ display: -ms-inline-flexbox !important;
7284
+ display: inline-flex !important;
7285
+ }
7286
+ }
7287
+
7288
+ @media (min-width: 992px) {
7289
+ .w3eden .d-lg-none {
7290
+ display: none !important;
7291
+ }
7292
+
7293
+ .w3eden .d-lg-inline {
7294
+ display: inline !important;
7295
+ }
7296
+
7297
+ .w3eden .d-lg-inline-block {
7298
+ display: inline-block !important;
7299
+ }
7300
+
7301
+ .w3eden .d-lg-block {
7302
+ display: block !important;
7303
+ }
7304
+
7305
+ .w3eden .d-lg-table {
7306
+ display: table !important;
7307
+ }
7308
+
7309
+ .w3eden .d-lg-table-row {
7310
+ display: table-row !important;
7311
+ }
7312
+
7313
+ .w3eden .d-lg-table-cell {
7314
+ display: table-cell !important;
7315
+ }
7316
+
7317
+ .w3eden .d-lg-flex {
7318
+ display: -ms-flexbox !important;
7319
+ display: flex !important;
7320
+ }
7321
+
7322
+ .w3eden .d-lg-inline-flex {
7323
+ display: -ms-inline-flexbox !important;
7324
+ display: inline-flex !important;
7325
+ }
7326
+ }
7327
+
7328
+ @media (min-width: 1200px) {
7329
+ .w3eden .d-xl-none {
7330
+ display: none !important;
7331
+ }
7332
+
7333
+ .w3eden .d-xl-inline {
7334
+ display: inline !important;
7335
+ }
7336
+
7337
+ .w3eden .d-xl-inline-block {
7338
+ display: inline-block !important;
7339
+ }
7340
+
7341
+ .w3eden .d-xl-block {
7342
+ display: block !important;
7343
+ }
7344
+
7345
+ .w3eden .d-xl-table {
7346
+ display: table !important;
7347
+ }
7348
+
7349
+ .w3eden .d-xl-table-row {
7350
+ display: table-row !important;
7351
+ }
7352
+
7353
+ .w3eden .d-xl-table-cell {
7354
+ display: table-cell !important;
7355
+ }
7356
+
7357
+ .w3eden .d-xl-flex {
7358
+ display: -ms-flexbox !important;
7359
+ display: flex !important;
7360
+ }
7361
+
7362
+ .w3eden .d-xl-inline-flex {
7363
+ display: -ms-inline-flexbox !important;
7364
+ display: inline-flex !important;
7365
+ }
7366
+ }
7367
+
7368
+ @media print {
7369
+ .w3eden .d-print-none {
7370
+ display: none !important;
7371
+ }
7372
+
7373
+ .w3eden .d-print-inline {
7374
+ display: inline !important;
7375
+ }
7376
+
7377
+ .w3eden .d-print-inline-block {
7378
+ display: inline-block !important;
7379
+ }
7380
+
7381
+ .w3eden .d-print-block {
7382
+ display: block !important;
7383
+ }
7384
+
7385
+ .w3eden .d-print-table {
7386
+ display: table !important;
7387
+ }
7388
+
7389
+ .w3eden .d-print-table-row {
7390
+ display: table-row !important;
7391
+ }
7392
+
7393
+ .w3eden .d-print-table-cell {
7394
+ display: table-cell !important;
7395
+ }
7396
+
7397
+ .w3eden .d-print-flex {
7398
+ display: -ms-flexbox !important;
7399
+ display: flex !important;
7400
+ }
7401
+
7402
+ .w3eden .d-print-inline-flex {
7403
+ display: -ms-inline-flexbox !important;
7404
+ display: inline-flex !important;
7405
+ }
7406
+ }
7407
+
7408
+ .w3eden .embed-responsive {
7409
+ position: relative;
7410
+ display: block;
7411
+ width: 100%;
7412
+ padding: 0;
7413
+ overflow: hidden;
7414
+ }
7415
+
7416
+ .w3eden .embed-responsive::before {
7417
+ display: block;
7418
+ content: "";
7419
+ }
7420
+
7421
+ .w3eden .embed-responsive .embed-responsive-item,
7422
+ .w3eden .embed-responsive iframe,
7423
+ .w3eden .embed-responsive embed,
7424
+ .w3eden .embed-responsive object,
7425
+ .w3eden .embed-responsive video {
7426
+ position: absolute;
7427
+ top: 0;
7428
+ bottom: 0;
7429
+ left: 0;
7430
+ width: 100%;
7431
+ height: 100%;
7432
+ border: 0;
7433
+ }
7434
+
7435
+ .w3eden .embed-responsive-21by9::before {
7436
+ padding-top: 42.857143%;
7437
+ }
7438
+
7439
+ .w3eden .embed-responsive-16by9::before {
7440
+ padding-top: 56.25%;
7441
+ }
7442
+
7443
+ .w3eden .embed-responsive-4by3::before {
7444
+ padding-top: 75%;
7445
+ }
7446
+
7447
+ .w3eden .embed-responsive-1by1::before {
7448
+ padding-top: 100%;
7449
+ }
7450
+
7451
+ .w3eden .flex-row {
7452
+ -ms-flex-direction: row !important;
7453
+ flex-direction: row !important;
7454
+ }
7455
+
7456
+ .w3eden .flex-column {
7457
+ -ms-flex-direction: column !important;
7458
+ flex-direction: column !important;
7459
+ }
7460
+
7461
+ .w3eden .flex-row-reverse {
7462
+ -ms-flex-direction: row-reverse !important;
7463
+ flex-direction: row-reverse !important;
7464
+ }
7465
+
7466
+ .w3eden .flex-column-reverse {
7467
+ -ms-flex-direction: column-reverse !important;
7468
+ flex-direction: column-reverse !important;
7469
+ }
7470
+
7471
+ .w3eden .flex-wrap {
7472
+ -ms-flex-wrap: wrap !important;
7473
+ flex-wrap: wrap !important;
7474
+ }
7475
+
7476
+ .w3eden .flex-nowrap {
7477
+ -ms-flex-wrap: nowrap !important;
7478
+ flex-wrap: nowrap !important;
7479
+ }
7480
+
7481
+ .w3eden .flex-wrap-reverse {
7482
+ -ms-flex-wrap: wrap-reverse !important;
7483
+ flex-wrap: wrap-reverse !important;
7484
+ }
7485
+
7486
+ .w3eden .flex-fill {
7487
+ -ms-flex: 1 1 auto !important;
7488
+ flex: 1 1 auto !important;
7489
+ }
7490
+
7491
+ .w3eden .flex-grow-0 {
7492
+ -ms-flex-positive: 0 !important;
7493
+ flex-grow: 0 !important;
7494
+ }
7495
+
7496
+ .w3eden .flex-grow-1 {
7497
+ -ms-flex-positive: 1 !important;
7498
+ flex-grow: 1 !important;
7499
+ }
7500
+
7501
+ .w3eden .flex-shrink-0 {
7502
+ -ms-flex-negative: 0 !important;
7503
+ flex-shrink: 0 !important;
7504
+ }
7505
+
7506
+ .w3eden .flex-shrink-1 {
7507
+ -ms-flex-negative: 1 !important;
7508
+ flex-shrink: 1 !important;
7509
+ }
7510
+
7511
+ .w3eden .justify-content-start {
7512
+ -ms-flex-pack: start !important;
7513
+ justify-content: flex-start !important;
7514
+ }
7515
+
7516
+ .w3eden .justify-content-end {
7517
+ -ms-flex-pack: end !important;
7518
+ justify-content: flex-end !important;
7519
+ }
7520
+
7521
+ .w3eden .justify-content-center {
7522
+ -ms-flex-pack: center !important;
7523
+ justify-content: center !important;
7524
+ }
7525
+
7526
+ .w3eden .justify-content-between {
7527
+ -ms-flex-pack: justify !important;
7528
+ justify-content: space-between !important;
7529
+ }
7530
+
7531
+ .w3eden .justify-content-around {
7532
+ -ms-flex-pack: distribute !important;
7533
+ justify-content: space-around !important;
7534
+ }
7535
+
7536
+ .w3eden .align-items-start {
7537
+ -ms-flex-align: start !important;
7538
+ align-items: flex-start !important;
7539
+ }
7540
+
7541
+ .w3eden .align-items-end {
7542
+ -ms-flex-align: end !important;
7543
+ align-items: flex-end !important;
7544
+ }
7545
+
7546
+ .w3eden .align-items-center {
7547
+ -ms-flex-align: center !important;
7548
+ align-items: center !important;
7549
+ }
7550
+
7551
+ .w3eden .align-items-baseline {
7552
+ -ms-flex-align: baseline !important;
7553
+ align-items: baseline !important;
7554
+ }
7555
+
7556
+ .w3eden .align-items-stretch {
7557
+ -ms-flex-align: stretch !important;
7558
+ align-items: stretch !important;
7559
+ }
7560
+
7561
+ .w3eden .align-content-start {
7562
+ -ms-flex-line-pack: start !important;
7563
+ align-content: flex-start !important;
7564
+ }
7565
+
7566
+ .w3eden .align-content-end {
7567
+ -ms-flex-line-pack: end !important;
7568
+ align-content: flex-end !important;
7569
+ }
7570
+
7571
+ .w3eden .align-content-center {
7572
+ -ms-flex-line-pack: center !important;
7573
+ align-content: center !important;
7574
+ }
7575
+
7576
+ .w3eden .align-content-between {
7577
+ -ms-flex-line-pack: justify !important;
7578
+ align-content: space-between !important;
7579
+ }
7580
+
7581
+ .w3eden .align-content-around {
7582
+ -ms-flex-line-pack: distribute !important;
7583
+ align-content: space-around !important;
7584
+ }
7585
+
7586
+ .w3eden .align-content-stretch {
7587
+ -ms-flex-line-pack: stretch !important;
7588
+ align-content: stretch !important;
7589
+ }
7590
+
7591
+ .w3eden .align-self-auto {
7592
+ -ms-flex-item-align: auto !important;
7593
+ align-self: auto !important;
7594
+ }
7595
+
7596
+ .w3eden .align-self-start {
7597
+ -ms-flex-item-align: start !important;
7598
+ align-self: flex-start !important;
7599
+ }
7600
+
7601
+ .w3eden .align-self-end {
7602
+ -ms-flex-item-align: end !important;
7603
+ align-self: flex-end !important;
7604
+ }
7605
+
7606
+ .w3eden .align-self-center {
7607
+ -ms-flex-item-align: center !important;
7608
+ align-self: center !important;
7609
+ }
7610
+
7611
+ .w3eden .align-self-baseline {
7612
+ -ms-flex-item-align: baseline !important;
7613
+ align-self: baseline !important;
7614
+ }
7615
+
7616
+ .w3eden .align-self-stretch {
7617
+ -ms-flex-item-align: stretch !important;
7618
+ align-self: stretch !important;
7619
+ }
7620
+
7621
+ @media (min-width: 576px) {
7622
+ .w3eden .flex-sm-row {
7623
+ -ms-flex-direction: row !important;
7624
+ flex-direction: row !important;
7625
+ }
7626
+
7627
+ .w3eden .flex-sm-column {
7628
+ -ms-flex-direction: column !important;
7629
+ flex-direction: column !important;
7630
+ }
7631
+
7632
+ .w3eden .flex-sm-row-reverse {
7633
+ -ms-flex-direction: row-reverse !important;
7634
+ flex-direction: row-reverse !important;
7635
+ }
7636
+
7637
+ .w3eden .flex-sm-column-reverse {
7638
+ -ms-flex-direction: column-reverse !important;
7639
+ flex-direction: column-reverse !important;
7640
+ }
7641
+
7642
+ .w3eden .flex-sm-wrap {
7643
+ -ms-flex-wrap: wrap !important;
7644
+ flex-wrap: wrap !important;
7645
+ }
7646
+
7647
+ .w3eden .flex-sm-nowrap {
7648
+ -ms-flex-wrap: nowrap !important;
7649
+ flex-wrap: nowrap !important;
7650
+ }
7651
+
7652
+ .w3eden .flex-sm-wrap-reverse {
7653
+ -ms-flex-wrap: wrap-reverse !important;
7654
+ flex-wrap: wrap-reverse !important;
7655
+ }
7656
+
7657
+ .w3eden .flex-sm-fill {
7658
+ -ms-flex: 1 1 auto !important;
7659
+ flex: 1 1 auto !important;
7660
+ }
7661
+
7662
+ .w3eden .flex-sm-grow-0 {
7663
+ -ms-flex-positive: 0 !important;
7664
+ flex-grow: 0 !important;
7665
+ }
7666
+
7667
+ .w3eden .flex-sm-grow-1 {
7668
+ -ms-flex-positive: 1 !important;
7669
+ flex-grow: 1 !important;
7670
+ }
7671
+
7672
+ .w3eden .flex-sm-shrink-0 {
7673
+ -ms-flex-negative: 0 !important;
7674
+ flex-shrink: 0 !important;
7675
+ }
7676
+
7677
+ .w3eden .flex-sm-shrink-1 {
7678
+ -ms-flex-negative: 1 !important;
7679
+ flex-shrink: 1 !important;
7680
+ }
7681
+
7682
+ .w3eden .justify-content-sm-start {
7683
+ -ms-flex-pack: start !important;
7684
+ justify-content: flex-start !important;
7685
+ }
7686
+
7687
+ .w3eden .justify-content-sm-end {
7688
+ -ms-flex-pack: end !important;
7689
+ justify-content: flex-end !important;
7690
+ }
7691
+
7692
+ .w3eden .justify-content-sm-center {
7693
+ -ms-flex-pack: center !important;
7694
+ justify-content: center !important;
7695
+ }
7696
+
7697
+ .w3eden .justify-content-sm-between {
7698
+ -ms-flex-pack: justify !important;
7699
+ justify-content: space-between !important;
7700
+ }
7701
+
7702
+ .w3eden .justify-content-sm-around {
7703
+ -ms-flex-pack: distribute !important;
7704
+ justify-content: space-around !important;
7705
+ }
7706
+
7707
+ .w3eden .align-items-sm-start {
7708
+ -ms-flex-align: start !important;
7709
+ align-items: flex-start !important;
7710
+ }
7711
+
7712
+ .w3eden .align-items-sm-end {
7713
+ -ms-flex-align: end !important;
7714
+ align-items: flex-end !important;
7715
+ }
7716
+
7717
+ .w3eden .align-items-sm-center {
7718
+ -ms-flex-align: center !important;
7719
+ align-items: center !important;
7720
+ }
7721
+
7722
+ .w3eden .align-items-sm-baseline {
7723
+ -ms-flex-align: baseline !important;
7724
+ align-items: baseline !important;
7725
+ }
7726
+
7727
+ .w3eden .align-items-sm-stretch {
7728
+ -ms-flex-align: stretch !important;
7729
+ align-items: stretch !important;
7730
+ }
7731
+
7732
+ .w3eden .align-content-sm-start {
7733
+ -ms-flex-line-pack: start !important;
7734
+ align-content: flex-start !important;
7735
+ }
7736
+
7737
+ .w3eden .align-content-sm-end {
7738
+ -ms-flex-line-pack: end !important;
7739
+ align-content: flex-end !important;
7740
+ }
7741
+
7742
+ .w3eden .align-content-sm-center {
7743
+ -ms-flex-line-pack: center !important;
7744
+ align-content: center !important;
7745
+ }
7746
+
7747
+ .w3eden .align-content-sm-between {
7748
+ -ms-flex-line-pack: justify !important;
7749
+ align-content: space-between !important;
7750
+ }
7751
+
7752
+ .w3eden .align-content-sm-around {
7753
+ -ms-flex-line-pack: distribute !important;
7754
+ align-content: space-around !important;
7755
+ }
7756
+
7757
+ .w3eden .align-content-sm-stretch {
7758
+ -ms-flex-line-pack: stretch !important;
7759
+ align-content: stretch !important;
7760
+ }
7761
+
7762
+ .w3eden .align-self-sm-auto {
7763
+ -ms-flex-item-align: auto !important;
7764
+ align-self: auto !important;
7765
+ }
7766
+
7767
+ .w3eden .align-self-sm-start {
7768
+ -ms-flex-item-align: start !important;
7769
+ align-self: flex-start !important;
7770
+ }
7771
+
7772
+ .w3eden .align-self-sm-end {
7773
+ -ms-flex-item-align: end !important;
7774
+ align-self: flex-end !important;
7775
+ }
7776
+
7777
+ .w3eden .align-self-sm-center {
7778
+ -ms-flex-item-align: center !important;
7779
+ align-self: center !important;
7780
+ }
7781
+
7782
+ .w3eden .align-self-sm-baseline {
7783
+ -ms-flex-item-align: baseline !important;
7784
+ align-self: baseline !important;
7785
+ }
7786
+
7787
+ .w3eden .align-self-sm-stretch {
7788
+ -ms-flex-item-align: stretch !important;
7789
+ align-self: stretch !important;
7790
+ }
7791
+ }
7792
+
7793
+ @media (min-width: 768px) {
7794
+ .w3eden .flex-md-row {
7795
+ -ms-flex-direction: row !important;
7796
+ flex-direction: row !important;
7797
+ }
7798
+
7799
+ .w3eden .flex-md-column {
7800
+ -ms-flex-direction: column !important;
7801
+ flex-direction: column !important;
7802
+ }
7803
+
7804
+ .w3eden .flex-md-row-reverse {
7805
+ -ms-flex-direction: row-reverse !important;
7806
+ flex-direction: row-reverse !important;
7807
+ }
7808
+
7809
+ .w3eden .flex-md-column-reverse {
7810
+ -ms-flex-direction: column-reverse !important;
7811
+ flex-direction: column-reverse !important;
7812
+ }
7813
+
7814
+ .w3eden .flex-md-wrap {
7815
+ -ms-flex-wrap: wrap !important;
7816
+ flex-wrap: wrap !important;
7817
+ }
7818
+
7819
+ .w3eden .flex-md-nowrap {
7820
+ -ms-flex-wrap: nowrap !important;
7821
+ flex-wrap: nowrap !important;
7822
+ }
7823
+
7824
+ .w3eden .flex-md-wrap-reverse {
7825
+ -ms-flex-wrap: wrap-reverse !important;
7826
+ flex-wrap: wrap-reverse !important;
7827
+ }
7828
+
7829
+ .w3eden .flex-md-fill {
7830
+ -ms-flex: 1 1 auto !important;
7831
+ flex: 1 1 auto !important;
7832
+ }
7833
+
7834
+ .w3eden .flex-md-grow-0 {
7835
+ -ms-flex-positive: 0 !important;
7836
+ flex-grow: 0 !important;
7837
+ }
7838
+
7839
+ .w3eden .flex-md-grow-1 {
7840
+ -ms-flex-positive: 1 !important;
7841
+ flex-grow: 1 !important;
7842
+ }
7843
+
7844
+ .w3eden .flex-md-shrink-0 {
7845
+ -ms-flex-negative: 0 !important;
7846
+ flex-shrink: 0 !important;
7847
+ }
7848
+
7849
+ .w3eden .flex-md-shrink-1 {
7850
+ -ms-flex-negative: 1 !important;
7851
+ flex-shrink: 1 !important;
7852
+ }
7853
+
7854
+ .w3eden .justify-content-md-start {
7855
+ -ms-flex-pack: start !important;
7856
+ justify-content: flex-start !important;
7857
+ }
7858
+
7859
+ .w3eden .justify-content-md-end {
7860
+ -ms-flex-pack: end !important;
7861
+ justify-content: flex-end !important;
7862
+ }
7863
+
7864
+ .w3eden .justify-content-md-center {
7865
+ -ms-flex-pack: center !important;
7866
+ justify-content: center !important;
7867
+ }
7868
+
7869
+ .w3eden .justify-content-md-between {
7870
+ -ms-flex-pack: justify !important;
7871
+ justify-content: space-between !important;
7872
+ }
7873
+
7874
+ .w3eden .justify-content-md-around {
7875
+ -ms-flex-pack: distribute !important;
7876
+ justify-content: space-around !important;
7877
+ }
7878
+
7879
+ .w3eden .align-items-md-start {
7880
+ -ms-flex-align: start !important;
7881
+ align-items: flex-start !important;
7882
+ }
7883
+
7884
+ .w3eden .align-items-md-end {
7885
+ -ms-flex-align: end !important;
7886
+ align-items: flex-end !important;
7887
+ }
7888
+
7889
+ .w3eden .align-items-md-center {
7890
+ -ms-flex-align: center !important;
7891
+ align-items: center !important;
7892
+ }
7893
+
7894
+ .w3eden .align-items-md-baseline {
7895
+ -ms-flex-align: baseline !important;
7896
+ align-items: baseline !important;
7897
+ }
7898
+
7899
+ .w3eden .align-items-md-stretch {
7900
+ -ms-flex-align: stretch !important;
7901
+ align-items: stretch !important;
7902
+ }
7903
+
7904
+ .w3eden .align-content-md-start {
7905
+ -ms-flex-line-pack: start !important;
7906
+ align-content: flex-start !important;
7907
+ }
7908
+
7909
+ .w3eden .align-content-md-end {
7910
+ -ms-flex-line-pack: end !important;
7911
+ align-content: flex-end !important;
7912
+ }
7913
+
7914
+ .w3eden .align-content-md-center {
7915
+ -ms-flex-line-pack: center !important;
7916
+ align-content: center !important;
7917
+ }
7918
+
7919
+ .w3eden .align-content-md-between {
7920
+ -ms-flex-line-pack: justify !important;
7921
+ align-content: space-between !important;
7922
+ }
7923
+
7924
+ .w3eden .align-content-md-around {
7925
+ -ms-flex-line-pack: distribute !important;
7926
+ align-content: space-around !important;
7927
+ }
7928
+
7929
+ .w3eden .align-content-md-stretch {
7930
+ -ms-flex-line-pack: stretch !important;
7931
+ align-content: stretch !important;
7932
+ }
7933
+
7934
+ .w3eden .align-self-md-auto {
7935
+ -ms-flex-item-align: auto !important;
7936
+ align-self: auto !important;
7937
+ }
7938
+
7939
+ .w3eden .align-self-md-start {
7940
+ -ms-flex-item-align: start !important;
7941
+ align-self: flex-start !important;
7942
+ }
7943
+
7944
+ .w3eden .align-self-md-end {
7945
+ -ms-flex-item-align: end !important;
7946
+ align-self: flex-end !important;
7947
+ }
7948
+
7949
+ .w3eden .align-self-md-center {
7950
+ -ms-flex-item-align: center !important;
7951
+ align-self: center !important;
7952
+ }
7953
+
7954
+ .w3eden .align-self-md-baseline {
7955
+ -ms-flex-item-align: baseline !important;
7956
+ align-self: baseline !important;
7957
+ }
7958
+
7959
+ .w3eden .align-self-md-stretch {
7960
+ -ms-flex-item-align: stretch !important;
7961
+ align-self: stretch !important;
7962
+ }
7963
+ }
7964
+
7965
+ @media (min-width: 992px) {
7966
+ .w3eden .flex-lg-row {
7967
+ -ms-flex-direction: row !important;
7968
+ flex-direction: row !important;
7969
+ }
7970
+
7971
+ .w3eden .flex-lg-column {
7972
+ -ms-flex-direction: column !important;
7973
+ flex-direction: column !important;
7974
+ }
7975
+
7976
+ .w3eden .flex-lg-row-reverse {
7977
+ -ms-flex-direction: row-reverse !important;
7978
+ flex-direction: row-reverse !important;
7979
+ }
7980
+
7981
+ .w3eden .flex-lg-column-reverse {
7982
+ -ms-flex-direction: column-reverse !important;
7983
+ flex-direction: column-reverse !important;
7984
+ }
7985
+
7986
+ .w3eden .flex-lg-wrap {
7987
+ -ms-flex-wrap: wrap !important;
7988
+ flex-wrap: wrap !important;
7989
+ }
7990
+
7991
+ .w3eden .flex-lg-nowrap {
7992
+ -ms-flex-wrap: nowrap !important;
7993
+ flex-wrap: nowrap !important;
7994
+ }
7995
+
7996
+ .w3eden .flex-lg-wrap-reverse {
7997
+ -ms-flex-wrap: wrap-reverse !important;
7998
+ flex-wrap: wrap-reverse !important;
7999
+ }
8000
+
8001
+ .w3eden .flex-lg-fill {
8002
+ -ms-flex: 1 1 auto !important;
8003
+ flex: 1 1 auto !important;
8004
+ }
8005
+
8006
+ .w3eden .flex-lg-grow-0 {
8007
+ -ms-flex-positive: 0 !important;
8008
+ flex-grow: 0 !important;
8009
+ }
8010
+
8011
+ .w3eden .flex-lg-grow-1 {
8012
+ -ms-flex-positive: 1 !important;
8013
+ flex-grow: 1 !important;
8014
+ }
8015
+
8016
+ .w3eden .flex-lg-shrink-0 {
8017
+ -ms-flex-negative: 0 !important;
8018
+ flex-shrink: 0 !important;
8019
+ }
8020
+
8021
+ .w3eden .flex-lg-shrink-1 {
8022
+ -ms-flex-negative: 1 !important;
8023
+ flex-shrink: 1 !important;
8024
+ }
8025
+
8026
+ .w3eden .justify-content-lg-start {
8027
+ -ms-flex-pack: start !important;
8028
+ justify-content: flex-start !important;
8029
+ }
8030
+
8031
+ .w3eden .justify-content-lg-end {
8032
+ -ms-flex-pack: end !important;
8033
+ justify-content: flex-end !important;
8034
+ }
8035
+
8036
+ .w3eden .justify-content-lg-center {
8037
+ -ms-flex-pack: center !important;
8038
+ justify-content: center !important;
8039
+ }
8040
+
8041
+ .w3eden .justify-content-lg-between {
8042
+ -ms-flex-pack: justify !important;
8043
+ justify-content: space-between !important;
8044
+ }
8045
+
8046
+ .w3eden .justify-content-lg-around {
8047
+ -ms-flex-pack: distribute !important;
8048
+ justify-content: space-around !important;
8049
+ }
8050
+
8051
+ .w3eden .align-items-lg-start {
8052
+ -ms-flex-align: start !important;
8053
+ align-items: flex-start !important;
8054
+ }
8055
+
8056
+ .w3eden .align-items-lg-end {
8057
+ -ms-flex-align: end !important;
8058
+ align-items: flex-end !important;
8059
+ }
8060
+
8061
+ .w3eden .align-items-lg-center {
8062
+ -ms-flex-align: center !important;
8063
+ align-items: center !important;
8064
+ }
8065
+
8066
+ .w3eden .align-items-lg-baseline {
8067
+ -ms-flex-align: baseline !important;
8068
+ align-items: baseline !important;
8069
+ }
8070
+
8071
+ .w3eden .align-items-lg-stretch {
8072
+ -ms-flex-align: stretch !important;
8073
+ align-items: stretch !important;
8074
+ }
8075
+
8076
+ .w3eden .align-content-lg-start {
8077
+ -ms-flex-line-pack: start !important;
8078
+ align-content: flex-start !important;
8079
+ }
8080
+
8081
+ .w3eden .align-content-lg-end {
8082
+ -ms-flex-line-pack: end !important;
8083
+ align-content: flex-end !important;
8084
+ }
8085
+
8086
+ .w3eden .align-content-lg-center {
8087
+ -ms-flex-line-pack: center !important;
8088
+ align-content: center !important;
8089
+ }
8090
+
8091
+ .w3eden .align-content-lg-between {
8092
+ -ms-flex-line-pack: justify !important;
8093
+ align-content: space-between !important;
8094
+ }
8095
+
8096
+ .w3eden .align-content-lg-around {
8097
+ -ms-flex-line-pack: distribute !important;
8098
+ align-content: space-around !important;
8099
+ }
8100
+
8101
+ .w3eden .align-content-lg-stretch {
8102
+ -ms-flex-line-pack: stretch !important;
8103
+ align-content: stretch !important;
8104
+ }
8105
+
8106
+ .w3eden .align-self-lg-auto {
8107
+ -ms-flex-item-align: auto !important;
8108
+ align-self: auto !important;
8109
+ }
8110
+
8111
+ .w3eden .align-self-lg-start {
8112
+ -ms-flex-item-align: start !important;
8113
+ align-self: flex-start !important;
8114
+ }
8115
+
8116
+ .w3eden .align-self-lg-end {
8117
+ -ms-flex-item-align: end !important;
8118
+ align-self: flex-end !important;
8119
+ }
8120
+
8121
+ .w3eden .align-self-lg-center {
8122
+ -ms-flex-item-align: center !important;
8123
+ align-self: center !important;
8124
+ }
8125
+
8126
+ .w3eden .align-self-lg-baseline {
8127
+ -ms-flex-item-align: baseline !important;
8128
+ align-self: baseline !important;
8129
+ }
8130
+
8131
+ .w3eden .align-self-lg-stretch {
8132
+ -ms-flex-item-align: stretch !important;
8133
+ align-self: stretch !important;
8134
+ }
8135
+ }
8136
+
8137
+ @media (min-width: 1200px) {
8138
+ .w3eden .flex-xl-row {
8139
+ -ms-flex-direction: row !important;
8140
+ flex-direction: row !important;
8141
+ }
8142
+
8143
+ .w3eden .flex-xl-column {
8144
+ -ms-flex-direction: column !important;
8145
+ flex-direction: column !important;
8146
+ }
8147
+
8148
+ .w3eden .flex-xl-row-reverse {
8149
+ -ms-flex-direction: row-reverse !important;
8150
+ flex-direction: row-reverse !important;
8151
+ }
8152
+
8153
+ .w3eden .flex-xl-column-reverse {
8154
+ -ms-flex-direction: column-reverse !important;
8155
+ flex-direction: column-reverse !important;
8156
+ }
8157
+
8158
+ .w3eden .flex-xl-wrap {
8159
+ -ms-flex-wrap: wrap !important;
8160
+ flex-wrap: wrap !important;
8161
+ }
8162
+
8163
+ .w3eden .flex-xl-nowrap {
8164
+ -ms-flex-wrap: nowrap !important;
8165
+ flex-wrap: nowrap !important;
8166
+ }
8167
+
8168
+ .w3eden .flex-xl-wrap-reverse {
8169
+ -ms-flex-wrap: wrap-reverse !important;
8170
+ flex-wrap: wrap-reverse !important;
8171
+ }
8172
+
8173
+ .w3eden .flex-xl-fill {
8174
+ -ms-flex: 1 1 auto !important;
8175
+ flex: 1 1 auto !important;
8176
+ }
8177
+
8178
+ .w3eden .flex-xl-grow-0 {
8179
+ -ms-flex-positive: 0 !important;
8180
+ flex-grow: 0 !important;
8181
+ }
8182
+
8183
+ .w3eden .flex-xl-grow-1 {
8184
+ -ms-flex-positive: 1 !important;
8185
+ flex-grow: 1 !important;
8186
+ }
8187
+
8188
+ .w3eden .flex-xl-shrink-0 {
8189
+ -ms-flex-negative: 0 !important;
8190
+ flex-shrink: 0 !important;
8191
+ }
8192
+
8193
+ .w3eden .flex-xl-shrink-1 {
8194
+ -ms-flex-negative: 1 !important;
8195
+ flex-shrink: 1 !important;
8196
+ }
8197
+
8198
+ .w3eden .justify-content-xl-start {
8199
+ -ms-flex-pack: start !important;
8200
+ justify-content: flex-start !important;
8201
+ }
8202
+
8203
+ .w3eden .justify-content-xl-end {
8204
+ -ms-flex-pack: end !important;
8205
+ justify-content: flex-end !important;
8206
+ }
8207
+
8208
+ .w3eden .justify-content-xl-center {
8209
+ -ms-flex-pack: center !important;
8210
+ justify-content: center !important;
8211
+ }
8212
+
8213
+ .w3eden .justify-content-xl-between {
8214
+ -ms-flex-pack: justify !important;
8215
+ justify-content: space-between !important;
8216
+ }
8217
+
8218
+ .w3eden .justify-content-xl-around {
8219
+ -ms-flex-pack: distribute !important;
8220
+ justify-content: space-around !important;
8221
+ }
8222
+
8223
+ .w3eden .align-items-xl-start {
8224
+ -ms-flex-align: start !important;
8225
+ align-items: flex-start !important;
8226
+ }
8227
+
8228
+ .w3eden .align-items-xl-end {
8229
+ -ms-flex-align: end !important;
8230
+ align-items: flex-end !important;
8231
+ }
8232
+
8233
+ .w3eden .align-items-xl-center {
8234
+ -ms-flex-align: center !important;
8235
+ align-items: center !important;
8236
+ }
8237
+
8238
+ .w3eden .align-items-xl-baseline {
8239
+ -ms-flex-align: baseline !important;
8240
+ align-items: baseline !important;
8241
+ }
8242
+
8243
+ .w3eden .align-items-xl-stretch {
8244
+ -ms-flex-align: stretch !important;
8245
+ align-items: stretch !important;
8246
+ }
8247
+
8248
+ .w3eden .align-content-xl-start {
8249
+ -ms-flex-line-pack: start !important;
8250
+ align-content: flex-start !important;
8251
+ }
8252
+
8253
+ .w3eden .align-content-xl-end {
8254
+ -ms-flex-line-pack: end !important;
8255
+ align-content: flex-end !important;
8256
+ }
8257
+
8258
+ .w3eden .align-content-xl-center {
8259
+ -ms-flex-line-pack: center !important;
8260
+ align-content: center !important;
8261
+ }
8262
+
8263
+ .w3eden .align-content-xl-between {
8264
+ -ms-flex-line-pack: justify !important;
8265
+ align-content: space-between !important;
8266
+ }
8267
+
8268
+ .w3eden .align-content-xl-around {
8269
+ -ms-flex-line-pack: distribute !important;
8270
+ align-content: space-around !important;
8271
+ }
8272
+
8273
+ .w3eden .align-content-xl-stretch {
8274
+ -ms-flex-line-pack: stretch !important;
8275
+ align-content: stretch !important;
8276
+ }
8277
+
8278
+ .w3eden .align-self-xl-auto {
8279
+ -ms-flex-item-align: auto !important;
8280
+ align-self: auto !important;
8281
+ }
8282
+
8283
+ .w3eden .align-self-xl-start {
8284
+ -ms-flex-item-align: start !important;
8285
+ align-self: flex-start !important;
8286
+ }
8287
+
8288
+ .w3eden .align-self-xl-end {
8289
+ -ms-flex-item-align: end !important;
8290
+ align-self: flex-end !important;
8291
+ }
8292
+
8293
+ .w3eden .align-self-xl-center {
8294
+ -ms-flex-item-align: center !important;
8295
+ align-self: center !important;
8296
+ }
8297
+
8298
+ .w3eden .align-self-xl-baseline {
8299
+ -ms-flex-item-align: baseline !important;
8300
+ align-self: baseline !important;
8301
+ }
8302
+
8303
+ .w3eden .align-self-xl-stretch {
8304
+ -ms-flex-item-align: stretch !important;
8305
+ align-self: stretch !important;
8306
+ }
8307
+ }
8308
+
8309
+ .w3eden .float-left {
8310
+ float: left !important;
8311
+ }
8312
+
8313
+ .w3eden .float-right {
8314
+ float: right !important;
8315
+ }
8316
+
8317
+ .w3eden .float-none {
8318
+ float: none !important;
8319
+ }
8320
+
8321
+ @media (min-width: 576px) {
8322
+ .w3eden .float-sm-left {
8323
+ float: left !important;
8324
+ }
8325
+
8326
+ .w3eden .float-sm-right {
8327
+ float: right !important;
8328
+ }
8329
+
8330
+ .w3eden .float-sm-none {
8331
+ float: none !important;
8332
+ }
8333
+ }
8334
+
8335
+ @media (min-width: 768px) {
8336
+ .w3eden .float-md-left {
8337
+ float: left !important;
8338
+ }
8339
+
8340
+ .w3eden .float-md-right {
8341
+ float: right !important;
8342
+ }
8343
+
8344
+ .w3eden .float-md-none {
8345
+ float: none !important;
8346
+ }
8347
+ }
8348
+
8349
+ @media (min-width: 992px) {
8350
+ .w3eden .float-lg-left {
8351
+ float: left !important;
8352
+ }
8353
+
8354
+ .w3eden .float-lg-right {
8355
+ float: right !important;
8356
+ }
8357
+
8358
+ .w3eden .float-lg-none {
8359
+ float: none !important;
8360
+ }
8361
+ }
8362
+
8363
+ @media (min-width: 1200px) {
8364
+ .w3eden .float-xl-left {
8365
+ float: left !important;
8366
+ }
8367
+
8368
+ .w3eden .float-xl-right {
8369
+ float: right !important;
8370
+ }
8371
+
8372
+ .w3eden .float-xl-none {
8373
+ float: none !important;
8374
+ }
8375
+ }
8376
+
8377
+ .w3eden .overflow-auto {
8378
+ overflow: auto !important;
8379
+ }
8380
+
8381
+ .w3eden .overflow-hidden {
8382
+ overflow: hidden !important;
8383
+ }
8384
+
8385
+ .w3eden .position-static {
8386
+ position: static !important;
8387
+ }
8388
+
8389
+ .w3eden .position-relative {
8390
+ position: relative !important;
8391
+ }
8392
+
8393
+ .w3eden .position-absolute {
8394
+ position: absolute !important;
8395
+ }
8396
+
8397
+ .w3eden .position-fixed {
8398
+ position: fixed !important;
8399
+ }
8400
+
8401
+ .w3eden .position-sticky {
8402
+ position: -webkit-sticky !important;
8403
+ position: sticky !important;
8404
+ }
8405
+
8406
+ .w3eden .fixed-top {
8407
+ position: fixed;
8408
+ top: 0;
8409
+ right: 0;
8410
+ left: 0;
8411
+ z-index: 1030;
8412
+ }
8413
+
8414
+ .w3eden .fixed-bottom {
8415
+ position: fixed;
8416
+ right: 0;
8417
+ bottom: 0;
8418
+ left: 0;
8419
+ z-index: 1030;
8420
+ }
8421
+
8422
+ @supports (position: -webkit-sticky) or (position: sticky) {
8423
+ .w3eden .sticky-top {
8424
+ position: -webkit-sticky;
8425
+ position: sticky;
8426
+ top: 0;
8427
+ z-index: 1020;
8428
+ }
8429
+ }
8430
+
8431
+ .w3eden .sr-only {
8432
+ position: absolute;
8433
+ width: 1px;
8434
+ height: 1px;
8435
+ padding: 0;
8436
+ margin: -1px;
8437
+ overflow: hidden;
8438
+ clip: rect(0, 0, 0, 0);
8439
+ white-space: nowrap;
8440
+ border: 0;
8441
+ }
8442
+
8443
+ .w3eden .sr-only-focusable:active, .w3eden .sr-only-focusable:focus {
8444
+ position: static;
8445
+ width: auto;
8446
+ height: auto;
8447
+ overflow: visible;
8448
+ clip: auto;
8449
+ white-space: normal;
8450
+ }
8451
+
8452
+ .w3eden .shadow-sm {
8453
+ box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
8454
+ }
8455
+
8456
+ .w3eden .shadow {
8457
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
8458
+ }
8459
+
8460
+ .w3eden .shadow-lg {
8461
+ box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
8462
+ }
8463
+
8464
+ .w3eden .shadow-none {
8465
+ box-shadow: none !important;
8466
+ }
8467
+
8468
+ .w3eden .w-25 {
8469
+ width: 25% !important;
8470
+ }
8471
+
8472
+ .w3eden .w-50 {
8473
+ width: 50% !important;
8474
+ }
8475
+
8476
+ .w3eden .w-75 {
8477
+ width: 75% !important;
8478
+ }
8479
+
8480
+ .w3eden .w-100 {
8481
+ width: 100% !important;
8482
+ }
8483
+
8484
+ .w3eden .w-auto {
8485
+ width: auto !important;
8486
+ }
8487
+
8488
+ .w3eden .h-25 {
8489
+ height: 25% !important;
8490
+ }
8491
+
8492
+ .w3eden .h-50 {
8493
+ height: 50% !important;
8494
+ }
8495
+
8496
+ .w3eden .h-75 {
8497
+ height: 75% !important;
8498
+ }
8499
+
8500
+ .w3eden .h-100 {
8501
+ height: 100% !important;
8502
+ }
8503
+
8504
+ .w3eden .h-auto {
8505
+ height: auto !important;
8506
+ }
8507
+
8508
+ .w3eden .mw-100 {
8509
+ max-width: 100% !important;
8510
+ }
8511
+
8512
+ .w3eden .mh-100 {
8513
+ max-height: 100% !important;
8514
+ }
8515
+
8516
+ .w3eden .min-vw-100 {
8517
+ min-width: 100vw !important;
8518
+ }
8519
+
8520
+ .w3eden .min-vh-100 {
8521
+ min-height: 100vh !important;
8522
+ }
8523
+
8524
+ .w3eden .vw-100 {
8525
+ width: 100vw !important;
8526
+ }
8527
+
8528
+ .w3eden .vh-100 {
8529
+ height: 100vh !important;
8530
+ }
8531
+
8532
+ .w3eden .stretched-link::after {
8533
+ position: absolute;
8534
+ top: 0;
8535
+ right: 0;
8536
+ bottom: 0;
8537
+ left: 0;
8538
+ z-index: 1;
8539
+ pointer-events: auto;
8540
+ content: "";
8541
+ background-color: rgba(0, 0, 0, 0);
8542
+ }
8543
+
8544
+ .w3eden .m-0 {
8545
+ margin: 0 !important;
8546
+ }
8547
+
8548
+ .w3eden .mt-0,
8549
+ .w3eden .my-0 {
8550
+ margin-top: 0 !important;
8551
+ }
8552
+
8553
+ .w3eden .mr-0,
8554
+ .w3eden .mx-0 {
8555
+ margin-right: 0 !important;
8556
+ }
8557
+
8558
+ .w3eden .mb-0,
8559
+ .w3eden .my-0 {
8560
+ margin-bottom: 0 !important;
8561
+ }
8562
+
8563
+ .w3eden .ml-0,
8564
+ .w3eden .mx-0 {
8565
+ margin-left: 0 !important;
8566
+ }
8567
+
8568
+ .w3eden .m-1 {
8569
+ margin: 0.25rem !important;
8570
+ }
8571
+
8572
+ .w3eden .mt-1,
8573
+ .w3eden .my-1 {
8574
+ margin-top: 0.25rem !important;
8575
+ }
8576
+
8577
+ .w3eden .mr-1,
8578
+ .w3eden .mx-1 {
8579
+ margin-right: 0.25rem !important;
8580
+ }
8581
+
8582
+ .w3eden .mb-1,
8583
+ .w3eden .my-1 {
8584
+ margin-bottom: 0.25rem !important;
8585
+ }
8586
+
8587
+ .w3eden .ml-1,
8588
+ .w3eden .mx-1 {
8589
+ margin-left: 0.25rem !important;
8590
+ }
8591
+
8592
+ .w3eden .m-2 {
8593
+ margin: 0.5rem !important;
8594
+ }
8595
+
8596
+ .w3eden .mt-2,
8597
+ .w3eden .my-2 {
8598
+ margin-top: 0.5rem !important;
8599
+ }
8600
+
8601
+ .w3eden .mr-2,
8602
+ .w3eden .mx-2 {
8603
+ margin-right: 0.5rem !important;
8604
+ }
8605
+
8606
+ .w3eden .mb-2,
8607
+ .w3eden .my-2 {
8608
+ margin-bottom: 0.5rem !important;
8609
+ }
8610
+
8611
+ .w3eden .ml-2,
8612
+ .w3eden .mx-2 {
8613
+ margin-left: 0.5rem !important;
8614
+ }
8615
+
8616
+ .w3eden .m-3 {
8617
+ margin: 1rem !important;
8618
+ }
8619
+
8620
+ .w3eden .mt-3,
8621
+ .w3eden .my-3 {
8622
+ margin-top: 1rem !important;
8623
+ }
8624
+
8625
+ .w3eden .mr-3,
8626
+ .w3eden .mx-3 {
8627
+ margin-right: 1rem !important;
8628
+ }
8629
+
8630
+ .w3eden .mb-3,
8631
+ .w3eden .my-3 {
8632
+ margin-bottom: 1rem !important;
8633
+ }
8634
+
8635
+ .w3eden .ml-3,
8636
+ .w3eden .mx-3 {
8637
+ margin-left: 1rem !important;
8638
+ }
8639
+
8640
+ .w3eden .m-4 {
8641
+ margin: 1.5rem !important;
8642
+ }
8643
+
8644
+ .w3eden .mt-4,
8645
+ .w3eden .my-4 {
8646
+ margin-top: 1.5rem !important;
8647
+ }
8648
+
8649
+ .w3eden .mr-4,
8650
+ .w3eden .mx-4 {
8651
+ margin-right: 1.5rem !important;
8652
+ }
8653
+
8654
+ .w3eden .mb-4,
8655
+ .w3eden .my-4 {
8656
+ margin-bottom: 1.5rem !important;
8657
+ }
8658
+
8659
+ .w3eden .ml-4,
8660
+ .w3eden .mx-4 {
8661
+ margin-left: 1.5rem !important;
8662
+ }
8663
+
8664
+ .w3eden .m-5 {
8665
+ margin: 3rem !important;
8666
+ }
8667
+
8668
+ .w3eden .mt-5,
8669
+ .w3eden .my-5 {
8670
+ margin-top: 3rem !important;
8671
+ }
8672
+
8673
+ .w3eden .mr-5,
8674
+ .w3eden .mx-5 {
8675
+ margin-right: 3rem !important;
8676
+ }
8677
+
8678
+ .w3eden .mb-5,
8679
+ .w3eden .my-5 {
8680
+ margin-bottom: 3rem !important;
8681
+ }
8682
+
8683
+ .w3eden .ml-5,
8684
+ .w3eden .mx-5 {
8685
+ margin-left: 3rem !important;
8686
+ }
8687
+
8688
+ .w3eden .p-0 {
8689
+ padding: 0 !important;
8690
+ }
8691
+
8692
+ .w3eden .pt-0,
8693
+ .w3eden .py-0 {
8694
+ padding-top: 0 !important;
8695
+ }
8696
+
8697
+ .w3eden .pr-0,
8698
+ .w3eden .px-0 {
8699
+ padding-right: 0 !important;
8700
+ }
8701
+
8702
+ .w3eden .pb-0,
8703
+ .w3eden .py-0 {
8704
+ padding-bottom: 0 !important;
8705
+ }
8706
+
8707
+ .w3eden .pl-0,
8708
+ .w3eden .px-0 {
8709
+ padding-left: 0 !important;
8710
+ }
8711
+
8712
+ .w3eden .p-1 {
8713
+ padding: 0.25rem !important;
8714
+ }
8715
+
8716
+ .w3eden .pt-1,
8717
+ .w3eden .py-1 {
8718
+ padding-top: 0.25rem !important;
8719
+ }
8720
+
8721
+ .w3eden .pr-1,
8722
+ .w3eden .px-1 {
8723
+ padding-right: 0.25rem !important;
8724
+ }
8725
+
8726
+ .w3eden .pb-1,
8727
+ .w3eden .py-1 {
8728
+ padding-bottom: 0.25rem !important;
8729
+ }
8730
+
8731
+ .w3eden .pl-1,
8732
+ .w3eden .px-1 {
8733
+ padding-left: 0.25rem !important;
8734
+ }
8735
+
8736
+ .w3eden .p-2 {
8737
+ padding: 0.5rem !important;
8738
+ }
8739
+
8740
+ .w3eden .pt-2,
8741
+ .w3eden .py-2 {
8742
+ padding-top: 0.5rem !important;
8743
+ }
8744
+
8745
+ .w3eden .pr-2,
8746
+ .w3eden .px-2 {
8747
+ padding-right: 0.5rem !important;
8748
+ }
8749
+
8750
+ .w3eden .pb-2,
8751
+ .w3eden .py-2 {
8752
+ padding-bottom: 0.5rem !important;
8753
+ }
8754
+
8755
+ .w3eden .pl-2,
8756
+ .w3eden .px-2 {
8757
+ padding-left: 0.5rem !important;
8758
+ }
8759
+
8760
+ .w3eden .p-3 {
8761
+ padding: 1rem !important;
8762
+ }
8763
+
8764
+ .w3eden .pt-3,
8765
+ .w3eden .py-3 {
8766
+ padding-top: 1rem !important;
8767
+ }
8768
+
8769
+ .w3eden .pr-3,
8770
+ .w3eden .px-3 {
8771
+ padding-right: 1rem !important;
8772
+ }
8773
+
8774
+ .w3eden .pb-3,
8775
+ .w3eden .py-3 {
8776
+ padding-bottom: 1rem !important;
8777
+ }
8778
+
8779
+ .w3eden .pl-3,
8780
+ .w3eden .px-3 {
8781
+ padding-left: 1rem !important;
8782
+ }
8783
+
8784
+ .w3eden .p-4 {
8785
+ padding: 1.5rem !important;
8786
+ }
8787
+
8788
+ .w3eden .pt-4,
8789
+ .w3eden .py-4 {
8790
+ padding-top: 1.5rem !important;
8791
+ }
8792
+
8793
+ .w3eden .pr-4,
8794
+ .w3eden .px-4 {
8795
+ padding-right: 1.5rem !important;
8796
+ }
8797
+
8798
+ .w3eden .pb-4,
8799
+ .w3eden .py-4 {
8800
+ padding-bottom: 1.5rem !important;
8801
+ }
8802
+
8803
+ .w3eden .pl-4,
8804
+ .w3eden .px-4 {
8805
+ padding-left: 1.5rem !important;
8806
+ }
8807
+
8808
+ .w3eden .p-5 {
8809
+ padding: 3rem !important;
8810
+ }
8811
+
8812
+ .w3eden .pt-5,
8813
+ .w3eden .py-5 {
8814
+ padding-top: 3rem !important;
8815
+ }
8816
+
8817
+ .w3eden .pr-5,
8818
+ .w3eden .px-5 {
8819
+ padding-right: 3rem !important;
8820
+ }
8821
+
8822
+ .w3eden .pb-5,
8823
+ .w3eden .py-5 {
8824
+ padding-bottom: 3rem !important;
8825
+ }
8826
+
8827
+ .w3eden .pl-5,
8828
+ .w3eden .px-5 {
8829
+ padding-left: 3rem !important;
8830
+ }
8831
+
8832
+ .w3eden .m-n1 {
8833
+ margin: -0.25rem !important;
8834
+ }
8835
+
8836
+ .w3eden .mt-n1,
8837
+ .w3eden .my-n1 {
8838
+ margin-top: -0.25rem !important;
8839
+ }
8840
+
8841
+ .w3eden .mr-n1,
8842
+ .w3eden .mx-n1 {
8843
+ margin-right: -0.25rem !important;
8844
+ }
8845
+
8846
+ .w3eden .mb-n1,
8847
+ .w3eden .my-n1 {
8848
+ margin-bottom: -0.25rem !important;
8849
+ }
8850
+
8851
+ .w3eden .ml-n1,
8852
+ .w3eden .mx-n1 {
8853
+ margin-left: -0.25rem !important;
8854
+ }
8855
+
8856
+ .w3eden .m-n2 {
8857
+ margin: -0.5rem !important;
8858
+ }
8859
+
8860
+ .w3eden .mt-n2,
8861
+ .w3eden .my-n2 {
8862
+ margin-top: -0.5rem !important;
8863
+ }
8864
+
8865
+ .w3eden .mr-n2,
8866
+ .w3eden .mx-n2 {
8867
+ margin-right: -0.5rem !important;
8868
+ }
8869
+
8870
+ .w3eden .mb-n2,
8871
+ .w3eden .my-n2 {
8872
+ margin-bottom: -0.5rem !important;
8873
+ }
8874
+
8875
+ .w3eden .ml-n2,
8876
+ .w3eden .mx-n2 {
8877
+ margin-left: -0.5rem !important;
8878
+ }
8879
+
8880
+ .w3eden .m-n3 {
8881
+ margin: -1rem !important;
8882
+ }
8883
+
8884
+ .w3eden .mt-n3,
8885
+ .w3eden .my-n3 {
8886
+ margin-top: -1rem !important;
8887
+ }
8888
+
8889
+ .w3eden .mr-n3,
8890
+ .w3eden .mx-n3 {
8891
+ margin-right: -1rem !important;
8892
+ }
8893
+
8894
+ .w3eden .mb-n3,
8895
+ .w3eden .my-n3 {
8896
+ margin-bottom: -1rem !important;
8897
+ }
8898
+
8899
+ .w3eden .ml-n3,
8900
+ .w3eden .mx-n3 {
8901
+ margin-left: -1rem !important;
8902
+ }
8903
+
8904
+ .w3eden .m-n4 {
8905
+ margin: -1.5rem !important;
8906
+ }
8907
+
8908
+ .w3eden .mt-n4,
8909
+ .w3eden .my-n4 {
8910
+ margin-top: -1.5rem !important;
8911
+ }
8912
+
8913
+ .w3eden .mr-n4,
8914
+ .w3eden .mx-n4 {
8915
+ margin-right: -1.5rem !important;
8916
+ }
8917
+
8918
+ .w3eden .mb-n4,
8919
+ .w3eden .my-n4 {
8920
+ margin-bottom: -1.5rem !important;
8921
+ }
8922
+
8923
+ .w3eden .ml-n4,
8924
+ .w3eden .mx-n4 {
8925
+ margin-left: -1.5rem !important;
8926
+ }
8927
+
8928
+ .w3eden .m-n5 {
8929
+ margin: -3rem !important;
8930
+ }
8931
+
8932
+ .w3eden .mt-n5,
8933
+ .w3eden .my-n5 {
8934
+ margin-top: -3rem !important;
8935
+ }
8936
+
8937
+ .w3eden .mr-n5,
8938
+ .w3eden .mx-n5 {
8939
+ margin-right: -3rem !important;
8940
+ }
8941
+
8942
+ .w3eden .mb-n5,
8943
+ .w3eden .my-n5 {
8944
+ margin-bottom: -3rem !important;
8945
+ }
8946
+
8947
+ .w3eden .ml-n5,
8948
+ .w3eden .mx-n5 {
8949
+ margin-left: -3rem !important;
8950
+ }
8951
+
8952
+ .w3eden .m-auto {
8953
+ margin: auto !important;
8954
+ }
8955
+
8956
+ .w3eden .mt-auto,
8957
+ .w3eden .my-auto {
8958
+ margin-top: auto !important;
8959
+ }
8960
+
8961
+ .w3eden .mr-auto,
8962
+ .w3eden .mx-auto {
8963
+ margin-right: auto !important;
8964
+ }
8965
+
8966
+ .w3eden .mb-auto,
8967
+ .w3eden .my-auto {
8968
+ margin-bottom: auto !important;
8969
+ }
8970
+
8971
+ .w3eden .ml-auto,
8972
+ .w3eden .mx-auto {
8973
+ margin-left: auto !important;
8974
+ }
8975
+
8976
+ @media (min-width: 576px) {
8977
+ .w3eden .m-sm-0 {
8978
+ margin: 0 !important;
8979
+ }
8980
+
8981
+ .w3eden .mt-sm-0,
8982
+ .w3eden .my-sm-0 {
8983
+ margin-top: 0 !important;
8984
+ }
8985
+
8986
+ .w3eden .mr-sm-0,
8987
+ .w3eden .mx-sm-0 {
8988
+ margin-right: 0 !important;
8989
+ }
8990
+
8991
+ .w3eden .mb-sm-0,
8992
+ .w3eden .my-sm-0 {
8993
+ margin-bottom: 0 !important;
8994
+ }
8995
+
8996
+ .w3eden .ml-sm-0,
8997
+ .w3eden .mx-sm-0 {
8998
+ margin-left: 0 !important;
8999
+ }
9000
+
9001
+ .w3eden .m-sm-1 {
9002
+ margin: 0.25rem !important;
9003
+ }
9004
+
9005
+ .w3eden .mt-sm-1,
9006
+ .w3eden .my-sm-1 {
9007
+ margin-top: 0.25rem !important;
9008
+ }
9009
+
9010
+ .w3eden .mr-sm-1,
9011
+ .w3eden .mx-sm-1 {
9012
+ margin-right: 0.25rem !important;
9013
+ }
9014
+
9015
+ .w3eden .mb-sm-1,
9016
+ .w3eden .my-sm-1 {
9017
+ margin-bottom: 0.25rem !important;
9018
+ }
9019
+
9020
+ .w3eden .ml-sm-1,
9021
+ .w3eden .mx-sm-1 {
9022
+ margin-left: 0.25rem !important;
9023
+ }
9024
+
9025
+ .w3eden .m-sm-2 {
9026
+ margin: 0.5rem !important;
9027
+ }
9028
+
9029
+ .w3eden .mt-sm-2,
9030
+ .w3eden .my-sm-2 {
9031
+ margin-top: 0.5rem !important;
9032
+ }
9033
+
9034
+ .w3eden .mr-sm-2,
9035
+ .w3eden .mx-sm-2 {
9036
+ margin-right: 0.5rem !important;
9037
+ }
9038
+
9039
+ .w3eden .mb-sm-2,
9040
+ .w3eden .my-sm-2 {
9041
+ margin-bottom: 0.5rem !important;
9042
+ }
9043
+
9044
+ .w3eden .ml-sm-2,
9045
+ .w3eden .mx-sm-2 {
9046
+ margin-left: 0.5rem !important;
9047
+ }
9048
+
9049
+ .w3eden .m-sm-3 {
9050
+ margin: 1rem !important;
9051
+ }
9052
+
9053
+ .w3eden .mt-sm-3,
9054
+ .w3eden .my-sm-3 {
9055
+ margin-top: 1rem !important;
9056
+ }
9057
+
9058
+ .w3eden .mr-sm-3,
9059
+ .w3eden .mx-sm-3 {
9060
+ margin-right: 1rem !important;
9061
+ }
9062
+
9063
+ .w3eden .mb-sm-3,
9064
+ .w3eden .my-sm-3 {
9065
+ margin-bottom: 1rem !important;
9066
+ }
9067
+
9068
+ .w3eden .ml-sm-3,
9069
+ .w3eden .mx-sm-3 {
9070
+ margin-left: 1rem !important;
9071
+ }
9072
+
9073
+ .w3eden .m-sm-4 {
9074
+ margin: 1.5rem !important;
9075
+ }
9076
+
9077
+ .w3eden .mt-sm-4,
9078
+ .w3eden .my-sm-4 {
9079
+ margin-top: 1.5rem !important;
9080
+ }
9081
+
9082
+ .w3eden .mr-sm-4,
9083
+ .w3eden .mx-sm-4 {
9084
+ margin-right: 1.5rem !important;
9085
+ }
9086
+
9087
+ .w3eden .mb-sm-4,
9088
+ .w3eden .my-sm-4 {
9089
+ margin-bottom: 1.5rem !important;
9090
+ }
9091
+
9092
+ .w3eden .ml-sm-4,
9093
+ .w3eden .mx-sm-4 {
9094
+ margin-left: 1.5rem !important;
9095
+ }
9096
+
9097
+ .w3eden .m-sm-5 {
9098
+ margin: 3rem !important;
9099
+ }
9100
+
9101
+ .w3eden .mt-sm-5,
9102
+ .w3eden .my-sm-5 {
9103
+ margin-top: 3rem !important;
9104
+ }
9105
+
9106
+ .w3eden .mr-sm-5,
9107
+ .w3eden .mx-sm-5 {
9108
+ margin-right: 3rem !important;
9109
+ }
9110
+
9111
+ .w3eden .mb-sm-5,
9112
+ .w3eden .my-sm-5 {
9113
+ margin-bottom: 3rem !important;
9114
+ }
9115
+
9116
+ .w3eden .ml-sm-5,
9117
+ .w3eden .mx-sm-5 {
9118
+ margin-left: 3rem !important;
9119
+ }
9120
+
9121
+ .w3eden .p-sm-0 {
9122
+ padding: 0 !important;
9123
+ }
9124
+
9125
+ .w3eden .pt-sm-0,
9126
+ .w3eden .py-sm-0 {
9127
+ padding-top: 0 !important;
9128
+ }
9129
+
9130
+ .w3eden .pr-sm-0,
9131
+ .w3eden .px-sm-0 {
9132
+ padding-right: 0 !important;
9133
+ }
9134
+
9135
+ .w3eden .pb-sm-0,
9136
+ .w3eden .py-sm-0 {
9137
+ padding-bottom: 0 !important;
9138
+ }
9139
+
9140
+ .w3eden .pl-sm-0,
9141
+ .w3eden .px-sm-0 {
9142
+ padding-left: 0 !important;
9143
+ }
9144
+
9145
+ .w3eden .p-sm-1 {
9146
+ padding: 0.25rem !important;
9147
+ }
9148
+
9149
+ .w3eden .pt-sm-1,
9150
+ .w3eden .py-sm-1 {
9151
+ padding-top: 0.25rem !important;
9152
+ }
9153
+
9154
+ .w3eden .pr-sm-1,
9155
+ .w3eden .px-sm-1 {
9156
+ padding-right: 0.25rem !important;
9157
+ }
9158
+
9159
+ .w3eden .pb-sm-1,
9160
+ .w3eden .py-sm-1 {
9161
+ padding-bottom: 0.25rem !important;
9162
+ }
9163
+
9164
+ .w3eden .pl-sm-1,
9165
+ .w3eden .px-sm-1 {
9166
+ padding-left: 0.25rem !important;
9167
+ }
9168
+
9169
+ .w3eden .p-sm-2 {
9170
+ padding: 0.5rem !important;
9171
+ }
9172
+
9173
+ .w3eden .pt-sm-2,
9174
+ .w3eden .py-sm-2 {
9175
+ padding-top: 0.5rem !important;
9176
+ }
9177
+
9178
+ .w3eden .pr-sm-2,
9179
+ .w3eden .px-sm-2 {
9180
+ padding-right: 0.5rem !important;
9181
+ }
9182
+
9183
+ .w3eden .pb-sm-2,
9184
+ .w3eden .py-sm-2 {
9185
+ padding-bottom: 0.5rem !important;
9186
+ }
9187
+
9188
+ .w3eden .pl-sm-2,
9189
+ .w3eden .px-sm-2 {
9190
+ padding-left: 0.5rem !important;
9191
+ }
9192
+
9193
+ .w3eden .p-sm-3 {
9194
+ padding: 1rem !important;
9195
+ }
9196
+
9197
+ .w3eden .pt-sm-3,
9198
+ .w3eden .py-sm-3 {
9199
+ padding-top: 1rem !important;
9200
+ }
9201
+
9202
+ .w3eden .pr-sm-3,
9203
+ .w3eden .px-sm-3 {
9204
+ padding-right: 1rem !important;
9205
+ }
9206
+
9207
+ .w3eden .pb-sm-3,
9208
+ .w3eden .py-sm-3 {
9209
+ padding-bottom: 1rem !important;
9210
+ }
9211
+
9212
+ .w3eden .pl-sm-3,
9213
+ .w3eden .px-sm-3 {
9214
+ padding-left: 1rem !important;
9215
+ }
9216
+
9217
+ .w3eden .p-sm-4 {
9218
+ padding: 1.5rem !important;
9219
+ }
9220
+
9221
+ .w3eden .pt-sm-4,
9222
+ .w3eden .py-sm-4 {
9223
+ padding-top: 1.5rem !important;
9224
+ }
9225
+
9226
+ .w3eden .pr-sm-4,
9227
+ .w3eden .px-sm-4 {
9228
+ padding-right: 1.5rem !important;
9229
+ }
9230
+
9231
+ .w3eden .pb-sm-4,
9232
+ .w3eden .py-sm-4 {
9233
+ padding-bottom: 1.5rem !important;
9234
+ }
9235
+
9236
+ .w3eden .pl-sm-4,
9237
+ .w3eden .px-sm-4 {
9238
+ padding-left: 1.5rem !important;
9239
+ }
9240
+
9241
+ .w3eden .p-sm-5 {
9242
+ padding: 3rem !important;
9243
+ }
9244
+
9245
+ .w3eden .pt-sm-5,
9246
+ .w3eden .py-sm-5 {
9247
+ padding-top: 3rem !important;
9248
+ }
9249
+
9250
+ .w3eden .pr-sm-5,
9251
+ .w3eden .px-sm-5 {
9252
+ padding-right: 3rem !important;
9253
+ }
9254
+
9255
+ .w3eden .pb-sm-5,
9256
+ .w3eden .py-sm-5 {
9257
+ padding-bottom: 3rem !important;
9258
+ }
9259
+
9260
+ .w3eden .pl-sm-5,
9261
+ .w3eden .px-sm-5 {
9262
+ padding-left: 3rem !important;
9263
+ }
9264
+
9265
+ .w3eden .m-sm-n1 {
9266
+ margin: -0.25rem !important;
9267
+ }
9268
+
9269
+ .w3eden .mt-sm-n1,
9270
+ .w3eden .my-sm-n1 {
9271
+ margin-top: -0.25rem !important;
9272
+ }
9273
+
9274
+ .w3eden .mr-sm-n1,
9275
+ .w3eden .mx-sm-n1 {
9276
+ margin-right: -0.25rem !important;
9277
+ }
9278
+
9279
+ .w3eden .mb-sm-n1,
9280
+ .w3eden .my-sm-n1 {
9281
+ margin-bottom: -0.25rem !important;
9282
+ }
9283
+
9284
+ .w3eden .ml-sm-n1,
9285
+ .w3eden .mx-sm-n1 {
9286
+ margin-left: -0.25rem !important;
9287
+ }
9288
+
9289
+ .w3eden .m-sm-n2 {
9290
+ margin: -0.5rem !important;
9291
+ }
9292
+
9293
+ .w3eden .mt-sm-n2,
9294
+ .w3eden .my-sm-n2 {
9295
+ margin-top: -0.5rem !important;
9296
+ }
9297
+
9298
+ .w3eden .mr-sm-n2,
9299
+ .w3eden .mx-sm-n2 {
9300
+ margin-right: -0.5rem !important;
9301
+ }
9302
+
9303
+ .w3eden .mb-sm-n2,
9304
+ .w3eden .my-sm-n2 {
9305
+ margin-bottom: -0.5rem !important;
9306
+ }
9307
+
9308
+ .w3eden .ml-sm-n2,
9309
+ .w3eden .mx-sm-n2 {
9310
+ margin-left: -0.5rem !important;
9311
+ }
9312
+
9313
+ .w3eden .m-sm-n3 {
9314
+ margin: -1rem !important;
9315
+ }
9316
+
9317
+ .w3eden .mt-sm-n3,
9318
+ .w3eden .my-sm-n3 {
9319
+ margin-top: -1rem !important;
9320
+ }
9321
+
9322
+ .w3eden .mr-sm-n3,
9323
+ .w3eden .mx-sm-n3 {
9324
+ margin-right: -1rem !important;
9325
+ }
9326
+
9327
+ .w3eden .mb-sm-n3,
9328
+ .w3eden .my-sm-n3 {
9329
+ margin-bottom: -1rem !important;
9330
+ }
9331
+
9332
+ .w3eden .ml-sm-n3,
9333
+ .w3eden .mx-sm-n3 {
9334
+ margin-left: -1rem !important;
9335
+ }
9336
+
9337
+ .w3eden .m-sm-n4 {
9338
+ margin: -1.5rem !important;
9339
+ }
9340
+
9341
+ .w3eden .mt-sm-n4,
9342
+ .w3eden .my-sm-n4 {
9343
+ margin-top: -1.5rem !important;
9344
+ }
9345
+
9346
+ .w3eden .mr-sm-n4,
9347
+ .w3eden .mx-sm-n4 {
9348
+ margin-right: -1.5rem !important;
9349
+ }
9350
+
9351
+ .w3eden .mb-sm-n4,
9352
+ .w3eden .my-sm-n4 {
9353
+ margin-bottom: -1.5rem !important;
9354
+ }
9355
+
9356
+ .w3eden .ml-sm-n4,
9357
+ .w3eden .mx-sm-n4 {
9358
+ margin-left: -1.5rem !important;
9359
+ }
9360
+
9361
+ .w3eden .m-sm-n5 {
9362
+ margin: -3rem !important;
9363
+ }
9364
+
9365
+ .w3eden .mt-sm-n5,
9366
+ .w3eden .my-sm-n5 {
9367
+ margin-top: -3rem !important;
9368
+ }
9369
+
9370
+ .w3eden .mr-sm-n5,
9371
+ .w3eden .mx-sm-n5 {
9372
+ margin-right: -3rem !important;
9373
+ }
9374
+
9375
+ .w3eden .mb-sm-n5,
9376
+ .w3eden .my-sm-n5 {
9377
+ margin-bottom: -3rem !important;
9378
+ }
9379
+
9380
+ .w3eden .ml-sm-n5,
9381
+ .w3eden .mx-sm-n5 {
9382
+ margin-left: -3rem !important;
9383
+ }
9384
+
9385
+ .w3eden .m-sm-auto {
9386
+ margin: auto !important;
9387
+ }
9388
+
9389
+ .w3eden .mt-sm-auto,
9390
+ .w3eden .my-sm-auto {
9391
+ margin-top: auto !important;
9392
+ }
9393
+
9394
+ .w3eden .mr-sm-auto,
9395
+ .w3eden .mx-sm-auto {
9396
+ margin-right: auto !important;
9397
+ }
9398
+
9399
+ .w3eden .mb-sm-auto,
9400
+ .w3eden .my-sm-auto {
9401
+ margin-bottom: auto !important;
9402
+ }
9403
+
9404
+ .w3eden .ml-sm-auto,
9405
+ .w3eden .mx-sm-auto {
9406
+ margin-left: auto !important;
9407
+ }
9408
+ }
9409
+
9410
+ @media (min-width: 768px) {
9411
+ .w3eden .m-md-0 {
9412
+ margin: 0 !important;
9413
+ }
9414
+
9415
+ .w3eden .mt-md-0,
9416
+ .w3eden .my-md-0 {
9417
+ margin-top: 0 !important;
9418
+ }
9419
+
9420
+ .w3eden .mr-md-0,
9421
+ .w3eden .mx-md-0 {
9422
+ margin-right: 0 !important;
9423
+ }
9424
+
9425
+ .w3eden .mb-md-0,
9426
+ .w3eden .my-md-0 {
9427
+ margin-bottom: 0 !important;
9428
+ }
9429
+
9430
+ .w3eden .ml-md-0,
9431
+ .w3eden .mx-md-0 {
9432
+ margin-left: 0 !important;
9433
+ }
9434
+
9435
+ .w3eden .m-md-1 {
9436
+ margin: 0.25rem !important;
9437
+ }
9438
+
9439
+ .w3eden .mt-md-1,
9440
+ .w3eden .my-md-1 {
9441
+ margin-top: 0.25rem !important;
9442
+ }
9443
+
9444
+ .w3eden .mr-md-1,
9445
+ .w3eden .mx-md-1 {
9446
+ margin-right: 0.25rem !important;
9447
+ }
9448
+
9449
+ .w3eden .mb-md-1,
9450
+ .w3eden .my-md-1 {
9451
+ margin-bottom: 0.25rem !important;
9452
+ }
9453
+
9454
+ .w3eden .ml-md-1,
9455
+ .w3eden .mx-md-1 {
9456
+ margin-left: 0.25rem !important;
9457
+ }
9458
+
9459
+ .w3eden .m-md-2 {
9460
+ margin: 0.5rem !important;
9461
+ }
9462
+
9463
+ .w3eden .mt-md-2,
9464
+ .w3eden .my-md-2 {
9465
+ margin-top: 0.5rem !important;
9466
+ }
9467
+
9468
+ .w3eden .mr-md-2,
9469
+ .w3eden .mx-md-2 {
9470
+ margin-right: 0.5rem !important;
9471
+ }
9472
+
9473
+ .w3eden .mb-md-2,
9474
+ .w3eden .my-md-2 {
9475
+ margin-bottom: 0.5rem !important;
9476
+ }
9477
+
9478
+ .w3eden .ml-md-2,
9479
+ .w3eden .mx-md-2 {
9480
+ margin-left: 0.5rem !important;
9481
+ }
9482
+
9483
+ .w3eden .m-md-3 {
9484
+ margin: 1rem !important;
9485
+ }
9486
+
9487
+ .w3eden .mt-md-3,
9488
+ .w3eden .my-md-3 {
9489
+ margin-top: 1rem !important;
9490
+ }
9491
+
9492
+ .w3eden .mr-md-3,
9493
+ .w3eden .mx-md-3 {
9494
+ margin-right: 1rem !important;
9495
+ }
9496
+
9497
+ .w3eden .mb-md-3,
9498
+ .w3eden .my-md-3 {
9499
+ margin-bottom: 1rem !important;
9500
+ }
9501
+
9502
+ .w3eden .ml-md-3,
9503
+ .w3eden .mx-md-3 {
9504
+ margin-left: 1rem !important;
9505
+ }
9506
+
9507
+ .w3eden .m-md-4 {
9508
+ margin: 1.5rem !important;
9509
+ }
9510
+
9511
+ .w3eden .mt-md-4,
9512
+ .w3eden .my-md-4 {
9513
+ margin-top: 1.5rem !important;
9514
+ }
9515
+
9516
+ .w3eden .mr-md-4,
9517
+ .w3eden .mx-md-4 {
9518
+ margin-right: 1.5rem !important;
9519
+ }
9520
+
9521
+ .w3eden .mb-md-4,
9522
+ .w3eden .my-md-4 {
9523
+ margin-bottom: 1.5rem !important;
9524
+ }
9525
+
9526
+ .w3eden .ml-md-4,
9527
+ .w3eden .mx-md-4 {
9528
+ margin-left: 1.5rem !important;
9529
+ }
9530
+
9531
+ .w3eden .m-md-5 {
9532
+ margin: 3rem !important;
9533
+ }
9534
+
9535
+ .w3eden .mt-md-5,
9536
+ .w3eden .my-md-5 {
9537
+ margin-top: 3rem !important;
9538
+ }
9539
+
9540
+ .w3eden .mr-md-5,
9541
+ .w3eden .mx-md-5 {
9542
+ margin-right: 3rem !important;
9543
+ }
9544
+
9545
+ .w3eden .mb-md-5,
9546
+ .w3eden .my-md-5 {
9547
+ margin-bottom: 3rem !important;
9548
+ }
9549
+
9550
+ .w3eden .ml-md-5,
9551
+ .w3eden .mx-md-5 {
9552
+ margin-left: 3rem !important;
9553
+ }
9554
+
9555
+ .w3eden .p-md-0 {
9556
+ padding: 0 !important;
9557
+ }
9558
+
9559
+ .w3eden .pt-md-0,
9560
+ .w3eden .py-md-0 {
9561
+ padding-top: 0 !important;
9562
+ }
9563
+
9564
+ .w3eden .pr-md-0,
9565
+ .w3eden .px-md-0 {
9566
+ padding-right: 0 !important;
9567
+ }
9568
+
9569
+ .w3eden .pb-md-0,
9570
+ .w3eden .py-md-0 {
9571
+ padding-bottom: 0 !important;
9572
+ }
9573
+
9574
+ .w3eden .pl-md-0,
9575
+ .w3eden .px-md-0 {
9576
+ padding-left: 0 !important;
9577
+ }
9578
+
9579
+ .w3eden .p-md-1 {
9580
+ padding: 0.25rem !important;
9581
+ }
9582
+
9583
+ .w3eden .pt-md-1,
9584
+ .w3eden .py-md-1 {
9585
+ padding-top: 0.25rem !important;
9586
+ }
9587
+
9588
+ .w3eden .pr-md-1,
9589
+ .w3eden .px-md-1 {
9590
+ padding-right: 0.25rem !important;
9591
+ }
9592
+
9593
+ .w3eden .pb-md-1,
9594
+ .w3eden .py-md-1 {
9595
+ padding-bottom: 0.25rem !important;
9596
+ }
9597
+
9598
+ .w3eden .pl-md-1,
9599
+ .w3eden .px-md-1 {
9600
+ padding-left: 0.25rem !important;
9601
+ }
9602
+
9603
+ .w3eden .p-md-2 {
9604
+ padding: 0.5rem !important;
9605
+ }
9606
+
9607
+ .w3eden .pt-md-2,
9608
+ .w3eden .py-md-2 {
9609
+ padding-top: 0.5rem !important;
9610
+ }
9611
+
9612
+ .w3eden .pr-md-2,
9613
+ .w3eden .px-md-2 {
9614
+ padding-right: 0.5rem !important;
9615
+ }
9616
+
9617
+ .w3eden .pb-md-2,
9618
+ .w3eden .py-md-2 {
9619
+ padding-bottom: 0.5rem !important;
9620
+ }
9621
+
9622
+ .w3eden .pl-md-2,
9623
+ .w3eden .px-md-2 {
9624
+ padding-left: 0.5rem !important;
9625
+ }
9626
+
9627
+ .w3eden .p-md-3 {
9628
+ padding: 1rem !important;
9629
+ }
9630
+
9631
+ .w3eden .pt-md-3,
9632
+ .w3eden .py-md-3 {
9633
+ padding-top: 1rem !important;
9634
+ }
9635
+
9636
+ .w3eden .pr-md-3,
9637
+ .w3eden .px-md-3 {
9638
+ padding-right: 1rem !important;
9639
+ }
9640
+
9641
+ .w3eden .pb-md-3,
9642
+ .w3eden .py-md-3 {
9643
+ padding-bottom: 1rem !important;
9644
+ }
9645
+
9646
+ .w3eden .pl-md-3,
9647
+ .w3eden .px-md-3 {
9648
+ padding-left: 1rem !important;
9649
+ }
9650
+
9651
+ .w3eden .p-md-4 {
9652
+ padding: 1.5rem !important;
9653
+ }
9654
+
9655
+ .w3eden .pt-md-4,
9656
+ .w3eden .py-md-4 {
9657
+ padding-top: 1.5rem !important;
9658
+ }
9659
+
9660
+ .w3eden .pr-md-4,
9661
+ .w3eden .px-md-4 {
9662
+ padding-right: 1.5rem !important;
9663
+ }
9664
+
9665
+ .w3eden .pb-md-4,
9666
+ .w3eden .py-md-4 {
9667
+ padding-bottom: 1.5rem !important;
9668
+ }
9669
+
9670
+ .w3eden .pl-md-4,
9671
+ .w3eden .px-md-4 {
9672
+ padding-left: 1.5rem !important;
9673
+ }
9674
+
9675
+ .w3eden .p-md-5 {
9676
+ padding: 3rem !important;
9677
+ }
9678
+
9679
+ .w3eden .pt-md-5,
9680
+ .w3eden .py-md-5 {
9681
+ padding-top: 3rem !important;
9682
+ }
9683
+
9684
+ .w3eden .pr-md-5,
9685
+ .w3eden .px-md-5 {
9686
+ padding-right: 3rem !important;
9687
+ }
9688
+
9689
+ .w3eden .pb-md-5,
9690
+ .w3eden .py-md-5 {
9691
+ padding-bottom: 3rem !important;
9692
+ }
9693
+
9694
+ .w3eden .pl-md-5,
9695
+ .w3eden .px-md-5 {
9696
+ padding-left: 3rem !important;
9697
+ }
9698
+
9699
+ .w3eden .m-md-n1 {
9700
+ margin: -0.25rem !important;
9701
+ }
9702
+
9703
+ .w3eden .mt-md-n1,
9704
+ .w3eden .my-md-n1 {
9705
+ margin-top: -0.25rem !important;
9706
+ }
9707
+
9708
+ .w3eden .mr-md-n1,
9709
+ .w3eden .mx-md-n1 {
9710
+ margin-right: -0.25rem !important;
9711
+ }
9712
+
9713
+ .w3eden .mb-md-n1,
9714
+ .w3eden .my-md-n1 {
9715
+ margin-bottom: -0.25rem !important;
9716
+ }
9717
+
9718
+ .w3eden .ml-md-n1,
9719
+ .w3eden .mx-md-n1 {
9720
+ margin-left: -0.25rem !important;
9721
+ }
9722
+
9723
+ .w3eden .m-md-n2 {
9724
+ margin: -0.5rem !important;
9725
+ }
9726
+
9727
+ .w3eden .mt-md-n2,
9728
+ .w3eden .my-md-n2 {
9729
+ margin-top: -0.5rem !important;
9730
+ }
9731
+
9732
+ .w3eden .mr-md-n2,
9733
+ .w3eden .mx-md-n2 {
9734
+ margin-right: -0.5rem !important;
9735
+ }
9736
+
9737
+ .w3eden .mb-md-n2,
9738
+ .w3eden .my-md-n2 {
9739
+ margin-bottom: -0.5rem !important;
9740
+ }
9741
+
9742
+ .w3eden .ml-md-n2,
9743
+ .w3eden .mx-md-n2 {
9744
+ margin-left: -0.5rem !important;
9745
+ }
9746
+
9747
+ .w3eden .m-md-n3 {
9748
+ margin: -1rem !important;
9749
+ }
9750
+
9751
+ .w3eden .mt-md-n3,
9752
+ .w3eden .my-md-n3 {
9753
+ margin-top: -1rem !important;
9754
+ }
9755
+
9756
+ .w3eden .mr-md-n3,
9757
+ .w3eden .mx-md-n3 {
9758
+ margin-right: -1rem !important;
9759
+ }
9760
+
9761
+ .w3eden .mb-md-n3,
9762
+ .w3eden .my-md-n3 {
9763
+ margin-bottom: -1rem !important;
9764
+ }
9765
+
9766
+ .w3eden .ml-md-n3,
9767
+ .w3eden .mx-md-n3 {
9768
+ margin-left: -1rem !important;
9769
+ }
9770
+
9771
+ .w3eden .m-md-n4 {
9772
+ margin: -1.5rem !important;
9773
+ }
9774
+
9775
+ .w3eden .mt-md-n4,
9776
+ .w3eden .my-md-n4 {
9777
+ margin-top: -1.5rem !important;
9778
+ }
9779
+
9780
+ .w3eden .mr-md-n4,
9781
+ .w3eden .mx-md-n4 {
9782
+ margin-right: -1.5rem !important;
9783
+ }
9784
+
9785
+ .w3eden .mb-md-n4,
9786
+ .w3eden .my-md-n4 {
9787
+ margin-bottom: -1.5rem !important;
9788
+ }
9789
+
9790
+ .w3eden .ml-md-n4,
9791
+ .w3eden .mx-md-n4 {
9792
+ margin-left: -1.5rem !important;
9793
+ }
9794
+
9795
+ .w3eden .m-md-n5 {
9796
+ margin: -3rem !important;
9797
+ }
9798
+
9799
+ .w3eden .mt-md-n5,
9800
+ .w3eden .my-md-n5 {
9801
+ margin-top: -3rem !important;
9802
+ }
9803
+
9804
+ .w3eden .mr-md-n5,
9805
+ .w3eden .mx-md-n5 {
9806
+ margin-right: -3rem !important;
9807
+ }
9808
+
9809
+ .w3eden .mb-md-n5,
9810
+ .w3eden .my-md-n5 {
9811
+ margin-bottom: -3rem !important;
9812
+ }
9813
+
9814
+ .w3eden .ml-md-n5,
9815
+ .w3eden .mx-md-n5 {
9816
+ margin-left: -3rem !important;
9817
+ }
9818
+
9819
+ .w3eden .m-md-auto {
9820
+ margin: auto !important;
9821
+ }
9822
+
9823
+ .w3eden .mt-md-auto,
9824
+ .w3eden .my-md-auto {
9825
+ margin-top: auto !important;
9826
+ }
9827
+
9828
+ .w3eden .mr-md-auto,
9829
+ .w3eden .mx-md-auto {
9830
+ margin-right: auto !important;
9831
+ }
9832
+
9833
+ .w3eden .mb-md-auto,
9834
+ .w3eden .my-md-auto {
9835
+ margin-bottom: auto !important;
9836
+ }
9837
+
9838
+ .w3eden .ml-md-auto,
9839
+ .w3eden .mx-md-auto {
9840
+ margin-left: auto !important;
9841
+ }
9842
+ }
9843
+
9844
+ @media (min-width: 992px) {
9845
+ .w3eden .m-lg-0 {
9846
+ margin: 0 !important;
9847
+ }
9848
+
9849
+ .w3eden .mt-lg-0,
9850
+ .w3eden .my-lg-0 {
9851
+ margin-top: 0 !important;
9852
+ }
9853
+
9854
+ .w3eden .mr-lg-0,
9855
+ .w3eden .mx-lg-0 {
9856
+ margin-right: 0 !important;
9857
+ }
9858
+
9859
+ .w3eden .mb-lg-0,
9860
+ .w3eden .my-lg-0 {
9861
+ margin-bottom: 0 !important;
9862
+ }
9863
+
9864
+ .w3eden .ml-lg-0,
9865
+ .w3eden .mx-lg-0 {
9866
+ margin-left: 0 !important;
9867
+ }
9868
+
9869
+ .w3eden .m-lg-1 {
9870
+ margin: 0.25rem !important;
9871
+ }
9872
+
9873
+ .w3eden .mt-lg-1,
9874
+ .w3eden .my-lg-1 {
9875
+ margin-top: 0.25rem !important;
9876
+ }
9877
+
9878
+ .w3eden .mr-lg-1,
9879
+ .w3eden .mx-lg-1 {
9880
+ margin-right: 0.25rem !important;
9881
+ }
9882
+
9883
+ .w3eden .mb-lg-1,
9884
+ .w3eden .my-lg-1 {
9885
+ margin-bottom: 0.25rem !important;
9886
+ }
9887
+
9888
+ .w3eden .ml-lg-1,
9889
+ .w3eden .mx-lg-1 {
9890
+ margin-left: 0.25rem !important;
9891
+ }
9892
+
9893
+ .w3eden .m-lg-2 {
9894
+ margin: 0.5rem !important;
9895
+ }
9896
+
9897
+ .w3eden .mt-lg-2,
9898
+ .w3eden .my-lg-2 {
9899
+ margin-top: 0.5rem !important;
9900
+ }
9901
+
9902
+ .w3eden .mr-lg-2,
9903
+ .w3eden .mx-lg-2 {
9904
+ margin-right: 0.5rem !important;
9905
+ }
9906
+
9907
+ .w3eden .mb-lg-2,
9908
+ .w3eden .my-lg-2 {
9909
+ margin-bottom: 0.5rem !important;
9910
+ }
9911
+
9912
+ .w3eden .ml-lg-2,
9913
+ .w3eden .mx-lg-2 {
9914
+ margin-left: 0.5rem !important;
9915
+ }
9916
+
9917
+ .w3eden .m-lg-3 {
9918
+ margin: 1rem !important;
9919
+ }
9920
+
9921
+ .w3eden .mt-lg-3,
9922
+ .w3eden .my-lg-3 {
9923
+ margin-top: 1rem !important;
9924
+ }
9925
+
9926
+ .w3eden .mr-lg-3,
9927
+ .w3eden .mx-lg-3 {
9928
+ margin-right: 1rem !important;
9929
+ }
9930
+
9931
+ .w3eden .mb-lg-3,
9932
+ .w3eden .my-lg-3 {
9933
+ margin-bottom: 1rem !important;
9934
+ }
9935
+
9936
+ .w3eden .ml-lg-3,
9937
+ .w3eden .mx-lg-3 {
9938
+ margin-left: 1rem !important;
9939
+ }
9940
+
9941
+ .w3eden .m-lg-4 {
9942
+ margin: 1.5rem !important;
9943
+ }
9944
+
9945
+ .w3eden .mt-lg-4,
9946
+ .w3eden .my-lg-4 {
9947
+ margin-top: 1.5rem !important;
9948
+ }
9949
+
9950
+ .w3eden .mr-lg-4,
9951
+ .w3eden .mx-lg-4 {
9952
+ margin-right: 1.5rem !important;
9953
+ }
9954
+
9955
+ .w3eden .mb-lg-4,
9956
+ .w3eden .my-lg-4 {
9957
+ margin-bottom: 1.5rem !important;
9958
+ }
9959
+
9960
+ .w3eden .ml-lg-4,
9961
+ .w3eden .mx-lg-4 {
9962
+ margin-left: 1.5rem !important;
9963
+ }
9964
+
9965
+ .w3eden .m-lg-5 {
9966
+ margin: 3rem !important;
9967
+ }
9968
+
9969
+ .w3eden .mt-lg-5,
9970
+ .w3eden .my-lg-5 {
9971
+ margin-top: 3rem !important;
9972
+ }
9973
+
9974
+ .w3eden .mr-lg-5,
9975
+ .w3eden .mx-lg-5 {
9976
+ margin-right: 3rem !important;
9977
+ }
9978
+
9979
+ .w3eden .mb-lg-5,
9980
+ .w3eden .my-lg-5 {
9981
+ margin-bottom: 3rem !important;
9982
+ }
9983
+
9984
+ .w3eden .ml-lg-5,
9985
+ .w3eden .mx-lg-5 {
9986
+ margin-left: 3rem !important;
9987
+ }
9988
+
9989
+ .w3eden .p-lg-0 {
9990
+ padding: 0 !important;
9991
+ }
9992
+
9993
+ .w3eden .pt-lg-0,
9994
+ .w3eden .py-lg-0 {
9995
+ padding-top: 0 !important;
9996
+ }
9997
+
9998
+ .w3eden .pr-lg-0,
9999
+ .w3eden .px-lg-0 {
10000
+ padding-right: 0 !important;
10001
+ }
10002
+
10003
+ .w3eden .pb-lg-0,
10004
+ .w3eden .py-lg-0 {
10005
+ padding-bottom: 0 !important;
10006
+ }
10007
+
10008
+ .w3eden .pl-lg-0,
10009
+ .w3eden .px-lg-0 {
10010
+ padding-left: 0 !important;
10011
+ }
10012
+
10013
+ .w3eden .p-lg-1 {
10014
+ padding: 0.25rem !important;
10015
+ }
10016
+
10017
+ .w3eden .pt-lg-1,
10018
+ .w3eden .py-lg-1 {
10019
+ padding-top: 0.25rem !important;
10020
+ }
10021
+
10022
+ .w3eden .pr-lg-1,
10023
+ .w3eden .px-lg-1 {
10024
+ padding-right: 0.25rem !important;
10025
+ }
10026
+
10027
+ .w3eden .pb-lg-1,
10028
+ .w3eden .py-lg-1 {
10029
+ padding-bottom: 0.25rem !important;
10030
+ }
10031
+
10032
+ .w3eden .pl-lg-1,
10033
+ .w3eden .px-lg-1 {
10034
+ padding-left: 0.25rem !important;
10035
+ }
10036
+
10037
+ .w3eden .p-lg-2 {
10038
+ padding: 0.5rem !important;
10039
+ }
10040
+
10041
+ .w3eden .pt-lg-2,
10042
+ .w3eden .py-lg-2 {
10043
+ padding-top: 0.5rem !important;
10044
+ }
10045
+
10046
+ .w3eden .pr-lg-2,
10047
+ .w3eden .px-lg-2 {
10048
+ padding-right: 0.5rem !important;
10049
+ }
10050
+
10051
+ .w3eden .pb-lg-2,
10052
+ .w3eden .py-lg-2 {
10053
+ padding-bottom: 0.5rem !important;
10054
+ }
10055
+
10056
+ .w3eden .pl-lg-2,
10057
+ .w3eden .px-lg-2 {
10058
+ padding-left: 0.5rem !important;
10059
+ }
10060
+
10061
+ .w3eden .p-lg-3 {
10062
+ padding: 1rem !important;
10063
+ }
10064
+
10065
+ .w3eden .pt-lg-3,
10066
+ .w3eden .py-lg-3 {
10067
+ padding-top: 1rem !important;
10068
+ }
10069
+
10070
+ .w3eden .pr-lg-3,
10071
+ .w3eden .px-lg-3 {
10072
+ padding-right: 1rem !important;
10073
+ }
10074
+
10075
+ .w3eden .pb-lg-3,
10076
+ .w3eden .py-lg-3 {
10077
+ padding-bottom: 1rem !important;
10078
+ }
10079
+
10080
+ .w3eden .pl-lg-3,
10081
+ .w3eden .px-lg-3 {
10082
+ padding-left: 1rem !important;
10083
+ }
10084
+
10085
+ .w3eden .p-lg-4 {
10086
+ padding: 1.5rem !important;
10087
+ }
10088
+
10089
+ .w3eden .pt-lg-4,
10090
+ .w3eden .py-lg-4 {
10091
+ padding-top: 1.5rem !important;
10092
+ }
10093
+
10094
+ .w3eden .pr-lg-4,
10095
+ .w3eden .px-lg-4 {
10096
+ padding-right: 1.5rem !important;
10097
+ }
10098
+
10099
+ .w3eden .pb-lg-4,
10100
+ .w3eden .py-lg-4 {
10101
+ padding-bottom: 1.5rem !important;
10102
+ }
10103
+
10104
+ .w3eden .pl-lg-4,
10105
+ .w3eden .px-lg-4 {
10106
+ padding-left: 1.5rem !important;
10107
+ }
10108
+
10109
+ .w3eden .p-lg-5 {
10110
+ padding: 3rem !important;
10111
+ }
10112
+
10113
+ .w3eden .pt-lg-5,
10114
+ .w3eden .py-lg-5 {
10115
+ padding-top: 3rem !important;
10116
+ }
10117
+
10118
+ .w3eden .pr-lg-5,
10119
+ .w3eden .px-lg-5 {
10120
+ padding-right: 3rem !important;
10121
+ }
10122
+
10123
+ .w3eden .pb-lg-5,
10124
+ .w3eden .py-lg-5 {
10125
+ padding-bottom: 3rem !important;
10126
+ }
10127
+
10128
+ .w3eden .pl-lg-5,
10129
+ .w3eden .px-lg-5 {
10130
+ padding-left: 3rem !important;
10131
+ }
10132
+
10133
+ .w3eden .m-lg-n1 {
10134
+ margin: -0.25rem !important;
10135
+ }
10136
+
10137
+ .w3eden .mt-lg-n1,
10138
+ .w3eden .my-lg-n1 {
10139
+ margin-top: -0.25rem !important;
10140
+ }
10141
+
10142
+ .w3eden .mr-lg-n1,
10143
+ .w3eden .mx-lg-n1 {
10144
+ margin-right: -0.25rem !important;
10145
+ }
10146
+
10147
+ .w3eden .mb-lg-n1,
10148
+ .w3eden .my-lg-n1 {
10149
+ margin-bottom: -0.25rem !important;
10150
+ }
10151
+
10152
+ .w3eden .ml-lg-n1,
10153
+ .w3eden .mx-lg-n1 {
10154
+ margin-left: -0.25rem !important;
10155
+ }
10156
+
10157
+ .w3eden .m-lg-n2 {
10158
+ margin: -0.5rem !important;
10159
+ }
10160
+
10161
+ .w3eden .mt-lg-n2,
10162
+ .w3eden .my-lg-n2 {
10163
+ margin-top: -0.5rem !important;
10164
+ }
10165
+
10166
+ .w3eden .mr-lg-n2,
10167
+ .w3eden .mx-lg-n2 {
10168
+ margin-right: -0.5rem !important;
10169
+ }
10170
+
10171
+ .w3eden .mb-lg-n2,
10172
+ .w3eden .my-lg-n2 {
10173
+ margin-bottom: -0.5rem !important;
10174
+ }
10175
+
10176
+ .w3eden .ml-lg-n2,
10177
+ .w3eden .mx-lg-n2 {
10178
+ margin-left: -0.5rem !important;
10179
+ }
10180
+
10181
+ .w3eden .m-lg-n3 {
10182
+ margin: -1rem !important;
10183
+ }
10184
+
10185
+ .w3eden .mt-lg-n3,
10186
+ .w3eden .my-lg-n3 {
10187
+ margin-top: -1rem !important;
10188
+ }
10189
+
10190
+ .w3eden .mr-lg-n3,
10191
+ .w3eden .mx-lg-n3 {
10192
+ margin-right: -1rem !important;
10193
+ }
10194
+
10195
+ .w3eden .mb-lg-n3,
10196
+ .w3eden .my-lg-n3 {
10197
+ margin-bottom: -1rem !important;
10198
+ }
10199
+
10200
+ .w3eden .ml-lg-n3,
10201
+ .w3eden .mx-lg-n3 {
10202
+ margin-left: -1rem !important;
10203
+ }
10204
+
10205
+ .w3eden .m-lg-n4 {
10206
+ margin: -1.5rem !important;
10207
+ }
10208
+
10209
+ .w3eden .mt-lg-n4,
10210
+ .w3eden .my-lg-n4 {
10211
+ margin-top: -1.5rem !important;
10212
+ }
10213
+
10214
+ .w3eden .mr-lg-n4,
10215
+ .w3eden .mx-lg-n4 {
10216
+ margin-right: -1.5rem !important;
10217
+ }
10218
+
10219
+ .w3eden .mb-lg-n4,
10220
+ .w3eden .my-lg-n4 {
10221
+ margin-bottom: -1.5rem !important;
10222
+ }
10223
+
10224
+ .w3eden .ml-lg-n4,
10225
+ .w3eden .mx-lg-n4 {
10226
+ margin-left: -1.5rem !important;
10227
+ }
10228
+
10229
+ .w3eden .m-lg-n5 {
10230
+ margin: -3rem !important;
10231
+ }
10232
+
10233
+ .w3eden .mt-lg-n5,
10234
+ .w3eden .my-lg-n5 {
10235
+ margin-top: -3rem !important;
10236
+ }
10237
+
10238
+ .w3eden .mr-lg-n5,
10239
+ .w3eden .mx-lg-n5 {
10240
+ margin-right: -3rem !important;
10241
+ }
10242
+
10243
+ .w3eden .mb-lg-n5,
10244
+ .w3eden .my-lg-n5 {
10245
+ margin-bottom: -3rem !important;
10246
+ }
10247
+
10248
+ .w3eden .ml-lg-n5,
10249
+ .w3eden .mx-lg-n5 {
10250
+ margin-left: -3rem !important;
10251
+ }
10252
+
10253
+ .w3eden .m-lg-auto {
10254
+ margin: auto !important;
10255
+ }
10256
+
10257
+ .w3eden .mt-lg-auto,
10258
+ .w3eden .my-lg-auto {
10259
+ margin-top: auto !important;
10260
+ }
10261
+
10262
+ .w3eden .mr-lg-auto,
10263
+ .w3eden .mx-lg-auto {
10264
+ margin-right: auto !important;
10265
+ }
10266
+
10267
+ .w3eden .mb-lg-auto,
10268
+ .w3eden .my-lg-auto {
10269
+ margin-bottom: auto !important;
10270
+ }
10271
+
10272
+ .w3eden .ml-lg-auto,
10273
+ .w3eden .mx-lg-auto {
10274
+ margin-left: auto !important;
10275
+ }
10276
+ }
10277
+
10278
+ @media (min-width: 1200px) {
10279
+ .w3eden .m-xl-0 {
10280
+ margin: 0 !important;
10281
+ }
10282
+
10283
+ .w3eden .mt-xl-0,
10284
+ .w3eden .my-xl-0 {
10285
+ margin-top: 0 !important;
10286
+ }
10287
+
10288
+ .w3eden .mr-xl-0,
10289
+ .w3eden .mx-xl-0 {
10290
+ margin-right: 0 !important;
10291
+ }
10292
+
10293
+ .w3eden .mb-xl-0,
10294
+ .w3eden .my-xl-0 {
10295
+ margin-bottom: 0 !important;
10296
+ }
10297
+
10298
+ .w3eden .ml-xl-0,
10299
+ .w3eden .mx-xl-0 {
10300
+ margin-left: 0 !important;
10301
+ }
10302
+
10303
+ .w3eden .m-xl-1 {
10304
+ margin: 0.25rem !important;
10305
+ }
10306
+
10307
+ .w3eden .mt-xl-1,
10308
+ .w3eden .my-xl-1 {
10309
+ margin-top: 0.25rem !important;
10310
+ }
10311
+
10312
+ .w3eden .mr-xl-1,
10313
+ .w3eden .mx-xl-1 {
10314
+ margin-right: 0.25rem !important;
10315
+ }
10316
+
10317
+ .w3eden .mb-xl-1,
10318
+ .w3eden .my-xl-1 {
10319
+ margin-bottom: 0.25rem !important;
10320
+ }
10321
+
10322
+ .w3eden .ml-xl-1,
10323
+ .w3eden .mx-xl-1 {
10324
+ margin-left: 0.25rem !important;
10325
+ }
10326
+
10327
+ .w3eden .m-xl-2 {
10328
+ margin: 0.5rem !important;
10329
+ }
10330
+
10331
+ .w3eden .mt-xl-2,
10332
+ .w3eden .my-xl-2 {
10333
+ margin-top: 0.5rem !important;
10334
+ }
10335
+
10336
+ .w3eden .mr-xl-2,
10337
+ .w3eden .mx-xl-2 {
10338
+ margin-right: 0.5rem !important;
10339
+ }
10340
+
10341
+ .w3eden .mb-xl-2,
10342
+ .w3eden .my-xl-2 {
10343
+ margin-bottom: 0.5rem !important;
10344
+ }
10345
+
10346
+ .w3eden .ml-xl-2,
10347
+ .w3eden .mx-xl-2 {
10348
+ margin-left: 0.5rem !important;
10349
+ }
10350
+
10351
+ .w3eden .m-xl-3 {
10352
+ margin: 1rem !important;
10353
+ }
10354
+
10355
+ .w3eden .mt-xl-3,
10356
+ .w3eden .my-xl-3 {
10357
+ margin-top: 1rem !important;
10358
+ }
10359
+
10360
+ .w3eden .mr-xl-3,
10361
+ .w3eden .mx-xl-3 {
10362
+ margin-right: 1rem !important;
10363
+ }
10364
+
10365
+ .w3eden .mb-xl-3,
10366
+ .w3eden .my-xl-3 {
10367
+ margin-bottom: 1rem !important;
10368
+ }
10369
+
10370
+ .w3eden .ml-xl-3,
10371
+ .w3eden .mx-xl-3 {
10372
+ margin-left: 1rem !important;
10373
+ }
10374
+
10375
+ .w3eden .m-xl-4 {
10376
+ margin: 1.5rem !important;
10377
+ }
10378
+
10379
+ .w3eden .mt-xl-4,
10380
+ .w3eden .my-xl-4 {
10381
+ margin-top: 1.5rem !important;
10382
+ }
10383
+
10384
+ .w3eden .mr-xl-4,
10385
+ .w3eden .mx-xl-4 {
10386
+ margin-right: 1.5rem !important;
10387
+ }
10388
+
10389
+ .w3eden .mb-xl-4,
10390
+ .w3eden .my-xl-4 {
10391
+ margin-bottom: 1.5rem !important;
10392
+ }
10393
+
10394
+ .w3eden .ml-xl-4,
10395
+ .w3eden .mx-xl-4 {
10396
+ margin-left: 1.5rem !important;
10397
+ }
10398
+
10399
+ .w3eden .m-xl-5 {
10400
+ margin: 3rem !important;
10401
+ }
10402
+
10403
+ .w3eden .mt-xl-5,
10404
+ .w3eden .my-xl-5 {
10405
+ margin-top: 3rem !important;
10406
+ }
10407
+
10408
+ .w3eden .mr-xl-5,
10409
+ .w3eden .mx-xl-5 {
10410
+ margin-right: 3rem !important;
10411
+ }
10412
+
10413
+ .w3eden .mb-xl-5,
10414
+ .w3eden .my-xl-5 {
10415
+ margin-bottom: 3rem !important;
10416
+ }
10417
+
10418
+ .w3eden .ml-xl-5,
10419
+ .w3eden .mx-xl-5 {
10420
+ margin-left: 3rem !important;
10421
+ }
10422
+
10423
+ .w3eden .p-xl-0 {
10424
+ padding: 0 !important;
10425
+ }
10426
+
10427
+ .w3eden .pt-xl-0,
10428
+ .w3eden .py-xl-0 {
10429
+ padding-top: 0 !important;
10430
+ }
10431
+
10432
+ .w3eden .pr-xl-0,
10433
+ .w3eden .px-xl-0 {
10434
+ padding-right: 0 !important;
10435
+ }
10436
+
10437
+ .w3eden .pb-xl-0,
10438
+ .w3eden .py-xl-0 {
10439
+ padding-bottom: 0 !important;
10440
+ }
10441
+
10442
+ .w3eden .pl-xl-0,
10443
+ .w3eden .px-xl-0 {
10444
+ padding-left: 0 !important;
10445
+ }
10446
+
10447
+ .w3eden .p-xl-1 {
10448
+ padding: 0.25rem !important;
10449
+ }
10450
+
10451
+ .w3eden .pt-xl-1,
10452
+ .w3eden .py-xl-1 {
10453
+ padding-top: 0.25rem !important;
10454
+ }
10455
+
10456
+ .w3eden .pr-xl-1,
10457
+ .w3eden .px-xl-1 {
10458
+ padding-right: 0.25rem !important;
10459
+ }
10460
+
10461
+ .w3eden .pb-xl-1,
10462
+ .w3eden .py-xl-1 {
10463
+ padding-bottom: 0.25rem !important;
10464
+ }
10465
+
10466
+ .w3eden .pl-xl-1,
10467
+ .w3eden .px-xl-1 {
10468
+ padding-left: 0.25rem !important;
10469
+ }
10470
+
10471
+ .w3eden .p-xl-2 {
10472
+ padding: 0.5rem !important;
10473
+ }
10474
+
10475
+ .w3eden .pt-xl-2,
10476
+ .w3eden .py-xl-2 {
10477
+ padding-top: 0.5rem !important;
10478
+ }
10479
+
10480
+ .w3eden .pr-xl-2,
10481
+ .w3eden .px-xl-2 {
10482
+ padding-right: 0.5rem !important;
10483
+ }
10484
+
10485
+ .w3eden .pb-xl-2,
10486
+ .w3eden .py-xl-2 {
10487
+ padding-bottom: 0.5rem !important;
10488
+ }
10489
+
10490
+ .w3eden .pl-xl-2,
10491
+ .w3eden .px-xl-2 {
10492
+ padding-left: 0.5rem !important;
10493
+ }
10494
+
10495
+ .w3eden .p-xl-3 {
10496
+ padding: 1rem !important;
10497
+ }
10498
+
10499
+ .w3eden .pt-xl-3,
10500
+ .w3eden .py-xl-3 {
10501
+ padding-top: 1rem !important;
10502
+ }
10503
+
10504
+ .w3eden .pr-xl-3,
10505
+ .w3eden .px-xl-3 {
10506
+ padding-right: 1rem !important;
10507
+ }
10508
+
10509
+ .w3eden .pb-xl-3,
10510
+ .w3eden .py-xl-3 {
10511
+ padding-bottom: 1rem !important;
10512
+ }
10513
+
10514
+ .w3eden .pl-xl-3,
10515
+ .w3eden .px-xl-3 {
10516
+ padding-left: 1rem !important;
10517
+ }
10518
+
10519
+ .w3eden .p-xl-4 {
10520
+ padding: 1.5rem !important;
10521
+ }
10522
+
10523
+ .w3eden .pt-xl-4,
10524
+ .w3eden .py-xl-4 {
10525
+ padding-top: 1.5rem !important;
10526
+ }
10527
+
10528
+ .w3eden .pr-xl-4,
10529
+ .w3eden .px-xl-4 {
10530
+ padding-right: 1.5rem !important;
10531
+ }
10532
+
10533
+ .w3eden .pb-xl-4,
10534
+ .w3eden .py-xl-4 {
10535
+ padding-bottom: 1.5rem !important;
10536
+ }
10537
+
10538
+ .w3eden .pl-xl-4,
10539
+ .w3eden .px-xl-4 {
10540
+ padding-left: 1.5rem !important;
10541
+ }
10542
+
10543
+ .w3eden .p-xl-5 {
10544
+ padding: 3rem !important;
10545
+ }
10546
+
10547
+ .w3eden .pt-xl-5,
10548
+ .w3eden .py-xl-5 {
10549
+ padding-top: 3rem !important;
10550
+ }
10551
+
10552
+ .w3eden .pr-xl-5,
10553
+ .w3eden .px-xl-5 {
10554
+ padding-right: 3rem !important;
10555
+ }
10556
+
10557
+ .w3eden .pb-xl-5,
10558
+ .w3eden .py-xl-5 {
10559
+ padding-bottom: 3rem !important;
10560
+ }
10561
+
10562
+ .w3eden .pl-xl-5,
10563
+ .w3eden .px-xl-5 {
10564
+ padding-left: 3rem !important;
10565
+ }
10566
+
10567
+ .w3eden .m-xl-n1 {
10568
+ margin: -0.25rem !important;
10569
+ }
10570
+
10571
+ .w3eden .mt-xl-n1,
10572
+ .w3eden .my-xl-n1 {
10573
+ margin-top: -0.25rem !important;
10574
+ }
10575
+
10576
+ .w3eden .mr-xl-n1,
10577
+ .w3eden .mx-xl-n1 {
10578
+ margin-right: -0.25rem !important;
10579
+ }
10580
+
10581
+ .w3eden .mb-xl-n1,
10582
+ .w3eden .my-xl-n1 {
10583
+ margin-bottom: -0.25rem !important;
10584
+ }
10585
+
10586
+ .w3eden .ml-xl-n1,
10587
+ .w3eden .mx-xl-n1 {
10588
+ margin-left: -0.25rem !important;
10589
+ }
10590
+
10591
+ .w3eden .m-xl-n2 {
10592
+ margin: -0.5rem !important;
10593
+ }
10594
+
10595
+ .w3eden .mt-xl-n2,
10596
+ .w3eden .my-xl-n2 {
10597
+ margin-top: -0.5rem !important;
10598
+ }
10599
+
10600
+ .w3eden .mr-xl-n2,
10601
+ .w3eden .mx-xl-n2 {
10602
+ margin-right: -0.5rem !important;
10603
+ }
10604
+
10605
+ .w3eden .mb-xl-n2,
10606
+ .w3eden .my-xl-n2 {
10607
+ margin-bottom: -0.5rem !important;
10608
+ }
10609
+
10610
+ .w3eden .ml-xl-n2,
10611
+ .w3eden .mx-xl-n2 {
10612
+ margin-left: -0.5rem !important;
10613
+ }
10614
+
10615
+ .w3eden .m-xl-n3 {
10616
+ margin: -1rem !important;
10617
+ }
10618
+
10619
+ .w3eden .mt-xl-n3,
10620
+ .w3eden .my-xl-n3 {
10621
+ margin-top: -1rem !important;
10622
+ }
10623
+
10624
+ .w3eden .mr-xl-n3,
10625
+ .w3eden .mx-xl-n3 {
10626
+ margin-right: -1rem !important;
10627
+ }
10628
+
10629
+ .w3eden .mb-xl-n3,
10630
+ .w3eden .my-xl-n3 {
10631
+ margin-bottom: -1rem !important;
10632
+ }
10633
+
10634
+ .w3eden .ml-xl-n3,
10635
+ .w3eden .mx-xl-n3 {
10636
+ margin-left: -1rem !important;
10637
+ }
10638
+
10639
+ .w3eden .m-xl-n4 {
10640
+ margin: -1.5rem !important;
10641
+ }
10642
+
10643
+ .w3eden .mt-xl-n4,
10644
+ .w3eden .my-xl-n4 {
10645
+ margin-top: -1.5rem !important;
10646
+ }
10647
+
10648
+ .w3eden .mr-xl-n4,
10649
+ .w3eden .mx-xl-n4 {
10650
+ margin-right: -1.5rem !important;
10651
+ }
10652
+
10653
+ .w3eden .mb-xl-n4,
10654
+ .w3eden .my-xl-n4 {
10655
+ margin-bottom: -1.5rem !important;
10656
+ }
10657
+
10658
+ .w3eden .ml-xl-n4,
10659
+ .w3eden .mx-xl-n4 {
10660
+ margin-left: -1.5rem !important;
10661
+ }
10662
+
10663
+ .w3eden .m-xl-n5 {
10664
+ margin: -3rem !important;
10665
+ }
10666
+
10667
+ .w3eden .mt-xl-n5,
10668
+ .w3eden .my-xl-n5 {
10669
+ margin-top: -3rem !important;
10670
+ }
10671
+
10672
+ .w3eden .mr-xl-n5,
10673
+ .w3eden .mx-xl-n5 {
10674
+ margin-right: -3rem !important;
10675
+ }
10676
+
10677
+ .w3eden .mb-xl-n5,
10678
+ .w3eden .my-xl-n5 {
10679
+ margin-bottom: -3rem !important;
10680
+ }
10681
+
10682
+ .w3eden .ml-xl-n5,
10683
+ .w3eden .mx-xl-n5 {
10684
+ margin-left: -3rem !important;
10685
+ }
10686
+
10687
+ .w3eden .m-xl-auto {
10688
+ margin: auto !important;
10689
+ }
10690
+
10691
+ .w3eden .mt-xl-auto,
10692
+ .w3eden .my-xl-auto {
10693
+ margin-top: auto !important;
10694
+ }
10695
+
10696
+ .w3eden .mr-xl-auto,
10697
+ .w3eden .mx-xl-auto {
10698
+ margin-right: auto !important;
10699
+ }
10700
+
10701
+ .w3eden .mb-xl-auto,
10702
+ .w3eden .my-xl-auto {
10703
+ margin-bottom: auto !important;
10704
+ }
10705
+
10706
+ .w3eden .ml-xl-auto,
10707
+ .w3eden .mx-xl-auto {
10708
+ margin-left: auto !important;
10709
+ }
10710
+ }
10711
+
10712
+ .w3eden .text-monospace {
10713
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
10714
+ }
10715
+
10716
+ .w3eden .text-justify {
10717
+ text-align: justify !important;
10718
+ }
10719
+
10720
+ .w3eden .text-wrap {
10721
+ white-space: normal !important;
10722
+ }
10723
+
10724
+ .w3eden .text-nowrap {
10725
+ white-space: nowrap !important;
10726
+ }
10727
+
10728
+ .w3eden .text-truncate {
10729
+ overflow: hidden;
10730
+ text-overflow: ellipsis;
10731
+ white-space: nowrap;
10732
+ }
10733
+
10734
+ .w3eden .text-left {
10735
+ text-align: left !important;
10736
+ }
10737
+
10738
+ .w3eden .text-right {
10739
+ text-align: right !important;
10740
+ }
10741
+
10742
+ .w3eden .text-center {
10743
+ text-align: center !important;
10744
+ }
10745
+
10746
+ @media (min-width: 576px) {
10747
+ .w3eden .text-sm-left {
10748
+ text-align: left !important;
10749
+ }
10750
+
10751
+ .w3eden .text-sm-right {
10752
+ text-align: right !important;
10753
+ }
10754
+
10755
+ .w3eden .text-sm-center {
10756
+ text-align: center !important;
10757
+ }
10758
+ }
10759
+
10760
+ @media (min-width: 768px) {
10761
+ .w3eden .text-md-left {
10762
+ text-align: left !important;
10763
+ }
10764
+
10765
+ .w3eden .text-md-right {
10766
+ text-align: right !important;
10767
+ }
10768
+
10769
+ .w3eden .text-md-center {
10770
+ text-align: center !important;
10771
+ }
10772
+ }
10773
+
10774
+ @media (min-width: 992px) {
10775
+ .w3eden .text-lg-left {
10776
+ text-align: left !important;
10777
+ }
10778
+
10779
+ .w3eden .text-lg-right {
10780
+ text-align: right !important;
10781
+ }
10782
+
10783
+ .w3eden .text-lg-center {
10784
+ text-align: center !important;
10785
+ }
10786
+ }
10787
+
10788
+ @media (min-width: 1200px) {
10789
+ .w3eden .text-xl-left {
10790
+ text-align: left !important;
10791
+ }
10792
+
10793
+ .w3eden .text-xl-right {
10794
+ text-align: right !important;
10795
+ }
10796
+
10797
+ .w3eden .text-xl-center {
10798
+ text-align: center !important;
10799
+ }
10800
+ }
10801
+
10802
+ .w3eden .text-lowercase {
10803
+ text-transform: lowercase !important;
10804
+ }
10805
+
10806
+ .w3eden .text-uppercase {
10807
+ text-transform: uppercase !important;
10808
+ }
10809
+
10810
+ .w3eden .text-capitalize {
10811
+ text-transform: capitalize !important;
10812
+ }
10813
+
10814
+ .w3eden .font-weight-light {
10815
+ font-weight: 300 !important;
10816
+ }
10817
+
10818
+ .w3eden .font-weight-lighter {
10819
+ font-weight: lighter !important;
10820
+ }
10821
+
10822
+ .w3eden .font-weight-normal {
10823
+ font-weight: 400 !important;
10824
+ }
10825
+
10826
+ .w3eden .font-weight-bold {
10827
+ font-weight: 700 !important;
10828
+ }
10829
+
10830
+ .w3eden .font-weight-bolder {
10831
+ font-weight: bolder !important;
10832
+ }
10833
+
10834
+ .w3eden .font-italic {
10835
+ font-style: italic !important;
10836
+ }
10837
+
10838
+ .w3eden .text-white {
10839
+ color: #fff !important;
10840
+ }
10841
+
10842
+ .w3eden .text-primary {
10843
+ color: var(--color-primary) !important;
10844
+ }
10845
+
10846
+ .w3eden a.text-primary:hover, .w3eden a.text-primary:focus {
10847
+ color: #0056b3 !important;
10848
+ }
10849
+
10850
+ .w3eden .text-secondary {
10851
+ color: #6c757d !important;
10852
+ }
10853
+
10854
+ .w3eden a.text-secondary:hover, .w3eden a.text-secondary:focus {
10855
+ color: #494f54 !important;
10856
+ }
10857
+
10858
+ .w3eden .text-success {
10859
+ color: var(--color-success) !important;
10860
+ }
10861
+
10862
+ .w3eden a.text-success:hover, .w3eden a.text-success:focus {
10863
+ color: #19692c !important;
10864
+ }
10865
+
10866
+ .w3eden .text-info {
10867
+ color: var(--color-info) !important;
10868
+ }
10869
+
10870
+ .w3eden a.text-info:hover, .w3eden a.text-info:focus {
10871
+ color: #0f6674 !important;
10872
+ }
10873
+
10874
+ .w3eden .text-warning {
10875
+ color: var(--color-warning) !important;
10876
+ }
10877
+
10878
+ .w3eden a.text-warning:hover, .w3eden a.text-warning:focus {
10879
+ color: #ba8b00 !important;
10880
+ }
10881
+
10882
+ .w3eden .text-danger {
10883
+ color: var(--color-danger) !important;
10884
+ }
10885
+
10886
+ .w3eden a.text-danger:hover, .w3eden a.text-danger:focus {
10887
+ color: #a71d2a !important;
10888
+ }
10889
+
10890
+ .w3eden .text-light {
10891
+ color: #f8f9fa !important;
10892
+ }
10893
+
10894
+ .w3eden a.text-light:hover, .w3eden a.text-light:focus {
10895
+ color: #cbd3da !important;
10896
+ }
10897
+
10898
+ .w3eden .text-dark {
10899
+ color: #343a40 !important;
10900
+ }
10901
+
10902
+ .w3eden a.text-dark:hover, .w3eden a.text-dark:focus {
10903
+ color: #121416 !important;
10904
+ }
10905
+
10906
+ .w3eden .text-body {
10907
+ color: #212529 !important;
10908
+ }
10909
+
10910
+ .w3eden .text-muted {
10911
+ color: #6c757d !important;
10912
+ }
10913
+
10914
+ .w3eden .text-black-50 {
10915
+ color: rgba(0, 0, 0, 0.5) !important;
10916
+ }
10917
+
10918
+ .w3eden .text-white-50 {
10919
+ color: rgba(255, 255, 255, 0.5) !important;
10920
+ }
10921
+
10922
+ .w3eden .text-hide {
10923
+ font: 0/0 a;
10924
+ color: transparent;
10925
+ text-shadow: none;
10926
+ background-color: transparent;
10927
+ border: 0;
10928
+ }
10929
+
10930
+ .w3eden .text-decoration-none {
10931
+ text-decoration: none !important;
10932
+ }
10933
+
10934
+ .w3eden .text-break {
10935
+ word-break: break-word !important;
10936
+ overflow-wrap: break-word !important;
10937
+ }
10938
+
10939
+ .w3eden .text-reset {
10940
+ color: inherit !important;
10941
+ }
10942
+
10943
+ .w3eden .visible {
10944
+ visibility: visible !important;
10945
+ }
10946
+
10947
+ .w3eden .invisible {
10948
+ visibility: hidden !important;
10949
+ }
10950
+
10951
+ @media print {
10952
+ .w3eden *,
10953
+ .w3eden *::before,
10954
+ .w3eden *::after {
10955
+ text-shadow: none !important;
10956
+ box-shadow: none !important;
10957
+ }
10958
+
10959
+ .w3eden a:not(.btn) {
10960
+ text-decoration: underline;
10961
+ }
10962
+
10963
+ .w3eden abbr[title]::after {
10964
+ content: " (" attr(title) ")";
10965
+ }
10966
+
10967
+ .w3eden pre {
10968
+ white-space: pre-wrap !important;
10969
+ }
10970
+
10971
+ .w3eden pre,
10972
+ .w3eden blockquote {
10973
+ border: 1px solid #adb5bd;
10974
+ page-break-inside: avoid;
10975
+ }
10976
+
10977
+ .w3eden thead {
10978
+ display: table-header-group;
10979
+ }
10980
+
10981
+ .w3eden tr,
10982
+ .w3eden img {
10983
+ page-break-inside: avoid;
10984
+ }
10985
+
10986
+ .w3eden p,
10987
+ .w3eden h2,
10988
+ .w3eden h3 {
10989
+ orphans: 3;
10990
+ widows: 3;
10991
+ }
10992
+
10993
+ .w3eden h2,
10994
+ .w3eden h3 {
10995
+ page-break-after: avoid;
10996
+ }
10997
+
10998
+ @page {
10999
+
11000
+ size: a3;
11001
+ }
11002
+
11003
+ .w3eden body {
11004
+ min-width: 992px !important;
11005
+ }
11006
+
11007
+ .w3eden .container {
11008
+ min-width: 992px !important;
11009
+ }
11010
+
11011
+ .w3eden .navbar {
11012
+ display: none;
11013
+ }
11014
+
11015
+ .w3eden .badge {
11016
+ border: 1px solid #000;
11017
+ }
11018
+
11019
+ .w3eden .table {
11020
+ border-collapse: collapse !important;
11021
+ }
11022
+
11023
+ .w3eden .table td,
11024
+ .w3eden .table th {
11025
+ background-color: #fff !important;
11026
+ }
11027
+
11028
+ .w3eden .table-bordered th,
11029
+ .w3eden .table-bordered td {
11030
+ border: 1px solid #dee2e6 !important;
11031
+ }
11032
+
11033
+ .w3eden .table-dark {
11034
+ color: inherit;
11035
+ }
11036
+
11037
+ .w3eden .table-dark th,
11038
+ .w3eden .table-dark td,
11039
+ .w3eden .table-dark thead th,
11040
+ .w3eden .table-dark tbody + tbody {
11041
+ border-color: #dee2e6;
11042
+ }
11043
+
11044
+ .w3eden .table .thead-dark th {
11045
+ color: inherit;
11046
+ border-color: #dee2e6;
11047
+ }
11048
+
11049
+ }
assets/bootstrap/css/bootstrap.bu.css ADDED
@@ -0,0 +1,11048 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Bootstrap v4.4.1 (https://getbootstrap.com/)
3
+ * Copyright 2011-2019 The Bootstrap Authors
4
+ * Copyright 2011-2019 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */
7
+ /*# sourceMappingURL=bootstrap.css.map */
8
+ :root {
9
+ --blue: #007bff;
10
+ --indigo: #6610f2;
11
+ --purple: #6f42c1;
12
+ --pink: #e83e8c;
13
+ --red: #dc3545;
14
+ --orange: #fd7e14;
15
+ --yellow: #ffc107;
16
+ --green: #28a745;
17
+ --teal: #20c997;
18
+ --cyan: #17a2b8;
19
+ --white: #fff;
20
+ --gray: #6c757d;
21
+ --gray-dark: #343a40;
22
+ --primary: #007bff;
23
+ --secondary: #6c757d;
24
+ --success: #28a745;
25
+ --info: #17a2b8;
26
+ --warning: #ffc107;
27
+ --danger: #dc3545;
28
+ --light: #f8f9fa;
29
+ --dark: #343a40;
30
+ --breakpoint-xs: 0;
31
+ --breakpoint-sm: 576px;
32
+ --breakpoint-md: 768px;
33
+ --breakpoint-lg: 992px;
34
+ --breakpoint-xl: 1200px;
35
+ --font-family-sans-serif: -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";
36
+ --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
37
+ }
38
+
39
+ .w3eden *,
40
+ .w3eden *::before,
41
+ .w3eden *::after {
42
+ box-sizing: border-box;
43
+ }
44
+
45
+ .w3eden html {
46
+ font-family: sans-serif;
47
+ line-height: 1.15;
48
+ -webkit-text-size-adjust: 100%;
49
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
50
+ }
51
+
52
+ .w3eden article, .w3eden aside, .w3eden figcaption, .w3eden figure, .w3eden footer, .w3eden header, .w3eden hgroup, .w3eden main, .w3eden nav, .w3eden section {
53
+ display: block;
54
+ }
55
+
56
+ .w3eden body {
57
+ margin: 0;
58
+ font-family: -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";
59
+ font-size: 1rem;
60
+ font-weight: 400;
61
+ line-height: 1.5;
62
+ color: #212529;
63
+ text-align: left;
64
+ background-color: #fff;
65
+ }
66
+
67
+ .w3eden [tabindex="-1"]:focus:not(:focus-visible) {
68
+ outline: 0 !important;
69
+ }
70
+
71
+ .w3eden hr {
72
+ box-sizing: content-box;
73
+ height: 0;
74
+ overflow: visible;
75
+ }
76
+
77
+ .w3eden h1, .w3eden h2, .w3eden h3, .w3eden h4, .w3eden h5, .w3eden h6 {
78
+ margin-top: 0;
79
+ margin-bottom: 0.5rem;
80
+ }
81
+
82
+ .w3eden p {
83
+ margin-top: 0;
84
+ margin-bottom: 1rem;
85
+ }
86
+
87
+ .w3eden abbr[title],
88
+ .w3eden abbr[data-original-title] {
89
+ text-decoration: underline;
90
+ -webkit-text-decoration: underline dotted;
91
+ text-decoration: underline dotted;
92
+ cursor: help;
93
+ border-bottom: 0;
94
+ -webkit-text-decoration-skip-ink: none;
95
+ text-decoration-skip-ink: none;
96
+ }
97
+
98
+ .w3eden address {
99
+ margin-bottom: 1rem;
100
+ font-style: normal;
101
+ line-height: inherit;
102
+ }
103
+
104
+ .w3eden ol,
105
+ .w3eden ul,
106
+ .w3eden dl {
107
+ margin-top: 0;
108
+ margin-bottom: 1rem;
109
+ }
110
+
111
+ .w3eden ol ol,
112
+ .w3eden ul ul,
113
+ .w3eden ol ul,
114
+ .w3eden ul ol {
115
+ margin-bottom: 0;
116
+ }
117
+
118
+ .w3eden dt {
119
+ font-weight: 700;
120
+ }
121
+
122
+ .w3eden dd {
123
+ margin-bottom: .5rem;
124
+ margin-left: 0;
125
+ }
126
+
127
+ .w3eden blockquote {
128
+ margin: 0 0 1rem;
129
+ }
130
+
131
+ .w3eden b,
132
+ .w3eden strong {
133
+ font-weight: bolder;
134
+ }
135
+
136
+ .w3eden small {
137
+ font-size: 80%;
138
+ }
139
+
140
+ .w3eden sub,
141
+ .w3eden sup {
142
+ position: relative;
143
+ font-size: 75%;
144
+ line-height: 0;
145
+ vertical-align: baseline;
146
+ }
147
+
148
+ .w3eden sub {
149
+ bottom: -.25em;
150
+ }
151
+
152
+ .w3eden sup {
153
+ top: -.5em;
154
+ }
155
+
156
+ .w3eden a {
157
+ color: #007bff;
158
+ text-decoration: none;
159
+ background-color: transparent;
160
+ }
161
+
162
+ .w3eden a:hover {
163
+ color: #0056b3;
164
+ text-decoration: underline;
165
+ }
166
+
167
+ .w3eden a:not([href]) {
168
+ color: inherit;
169
+ text-decoration: none;
170
+ }
171
+
172
+ .w3eden a:not([href]):hover {
173
+ color: inherit;
174
+ text-decoration: none;
175
+ }
176
+
177
+ .w3eden pre,
178
+ .w3eden code,
179
+ .w3eden kbd,
180
+ .w3eden samp {
181
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
182
+ font-size: 1em;
183
+ }
184
+
185
+ .w3eden pre {
186
+ margin-top: 0;
187
+ margin-bottom: 1rem;
188
+ overflow: auto;
189
+ }
190
+
191
+ .w3eden figure {
192
+ margin: 0 0 1rem;
193
+ }
194
+
195
+ .w3eden img {
196
+ vertical-align: middle;
197
+ border-style: none;
198
+ }
199
+
200
+ .w3eden svg {
201
+ overflow: hidden;
202
+ vertical-align: middle;
203
+ }
204
+
205
+ .w3eden table {
206
+ border-collapse: collapse;
207
+ }
208
+
209
+ .w3eden caption {
210
+ padding-top: 0.75rem;
211
+ padding-bottom: 0.75rem;
212
+ color: #6c757d;
213
+ text-align: left;
214
+ caption-side: bottom;
215
+ }
216
+
217
+ .w3eden th {
218
+ text-align: inherit;
219
+ }
220
+
221
+ .w3eden label {
222
+ display: inline-block;
223
+ margin-bottom: 0.5rem;
224
+ }
225
+
226
+ .w3eden button {
227
+ border-radius: 0;
228
+ }
229
+
230
+ .w3eden button:focus {
231
+ outline: 1px dotted;
232
+ outline: 5px auto -webkit-focus-ring-color;
233
+ }
234
+
235
+ .w3eden input,
236
+ .w3eden button,
237
+ .w3eden select,
238
+ .w3eden optgroup,
239
+ .w3eden textarea {
240
+ margin: 0;
241
+ font-family: inherit;
242
+ font-size: inherit;
243
+ line-height: inherit;
244
+ }
245
+
246
+ .w3eden button,
247
+ .w3eden input {
248
+ overflow: visible;
249
+ }
250
+
251
+ .w3eden button,
252
+ .w3eden select {
253
+ text-transform: none;
254
+ }
255
+
256
+ .w3eden select {
257
+ word-wrap: normal;
258
+ }
259
+
260
+ .w3eden button,
261
+ .w3eden [type="button"],
262
+ .w3eden [type="reset"],
263
+ .w3eden [type="submit"] {
264
+ -webkit-appearance: button;
265
+ }
266
+
267
+ .w3eden button:not(:disabled),
268
+ .w3eden [type="button"]:not(:disabled),
269
+ .w3eden [type="reset"]:not(:disabled),
270
+ .w3eden [type="submit"]:not(:disabled) {
271
+ cursor: pointer;
272
+ }
273
+
274
+ .w3eden button::-moz-focus-inner,
275
+ .w3eden [type="button"]::-moz-focus-inner,
276
+ .w3eden [type="reset"]::-moz-focus-inner,
277
+ .w3eden [type="submit"]::-moz-focus-inner {
278
+ padding: 0;
279
+ border-style: none;
280
+ }
281
+
282
+ .w3eden input[type="radio"],
283
+ .w3eden input[type="checkbox"] {
284
+ box-sizing: border-box;
285
+ padding: 0;
286
+ }
287
+
288
+ .w3eden input[type="date"],
289
+ .w3eden input[type="time"],
290
+ .w3eden input[type="datetime-local"],
291
+ .w3eden input[type="month"] {
292
+ -webkit-appearance: listbox;
293
+ }
294
+
295
+ .w3eden textarea {
296
+ overflow: auto;
297
+ resize: vertical;
298
+ }
299
+
300
+ .w3eden fieldset {
301
+ min-width: 0;
302
+ padding: 0;
303
+ margin: 0;
304
+ border: 0;
305
+ }
306
+
307
+ .w3eden legend {
308
+ display: block;
309
+ width: 100%;
310
+ max-width: 100%;
311
+ padding: 0;
312
+ margin-bottom: .5rem;
313
+ font-size: 1.5rem;
314
+ line-height: inherit;
315
+ color: inherit;
316
+ white-space: normal;
317
+ }
318
+
319
+ .w3eden progress {
320
+ vertical-align: baseline;
321
+ }
322
+
323
+ .w3eden [type="number"]::-webkit-inner-spin-button,
324
+ .w3eden [type="number"]::-webkit-outer-spin-button {
325
+ height: auto;
326
+ }
327
+
328
+ .w3eden [type="search"] {
329
+ outline-offset: -2px;
330
+ -webkit-appearance: none;
331
+ }
332
+
333
+ .w3eden [type="search"]::-webkit-search-decoration {
334
+ -webkit-appearance: none;
335
+ }
336
+
337
+ .w3eden ::-webkit-file-upload-button {
338
+ font: inherit;
339
+ -webkit-appearance: button;
340
+ }
341
+
342
+ .w3eden output {
343
+ display: inline-block;
344
+ }
345
+
346
+ .w3eden summary {
347
+ display: list-item;
348
+ cursor: pointer;
349
+ }
350
+
351
+ .w3eden template {
352
+ display: none;
353
+ }
354
+
355
+ .w3eden [hidden] {
356
+ display: none !important;
357
+ }
358
+
359
+ .w3eden h1, .w3eden h2, .w3eden h3, .w3eden h4, .w3eden h5, .w3eden h6,
360
+ .w3eden .h1, .w3eden .h2, .w3eden .h3, .w3eden .h4, .w3eden .h5, .w3eden .h6 {
361
+ margin-bottom: 0.5rem;
362
+ font-weight: 500;
363
+ line-height: 1.2;
364
+ }
365
+
366
+ .w3eden h1, .w3eden .h1 {
367
+ font-size: 2.5rem;
368
+ }
369
+
370
+ .w3eden h2, .w3eden .h2 {
371
+ font-size: 2rem;
372
+ }
373
+
374
+ .w3eden h3, .w3eden .h3 {
375
+ font-size: 1.75rem;
376
+ }
377
+
378
+ .w3eden h4, .w3eden .h4 {
379
+ font-size: 1.5rem;
380
+ }
381
+
382
+ .w3eden h5, .w3eden .h5 {
383
+ font-size: 1.25rem;
384
+ }
385
+
386
+ .w3eden h6, .w3eden .h6 {
387
+ font-size: 1rem;
388
+ }
389
+
390
+ .w3eden .lead {
391
+ font-size: 1.25rem;
392
+ font-weight: 300;
393
+ }
394
+
395
+ .w3eden .display-1 {
396
+ font-size: 6rem;
397
+ font-weight: 300;
398
+ line-height: 1.2;
399
+ }
400
+
401
+ .w3eden .display-2 {
402
+ font-size: 5.5rem;
403
+ font-weight: 300;
404
+ line-height: 1.2;
405
+ }
406
+
407
+ .w3eden .display-3 {
408
+ font-size: 4.5rem;
409
+ font-weight: 300;
410
+ line-height: 1.2;
411
+ }
412
+
413
+ .w3eden .display-4 {
414
+ font-size: 3.5rem;
415
+ font-weight: 300;
416
+ line-height: 1.2;
417
+ }
418
+
419
+ .w3eden hr {
420
+ margin-top: 1rem;
421
+ margin-bottom: 1rem;
422
+ border: 0;
423
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
424
+ }
425
+
426
+ .w3eden small,
427
+ .w3eden .small {
428
+ font-size: 80%;
429
+ font-weight: 400;
430
+ }
431
+
432
+ .w3eden mark,
433
+ .w3eden .mark {
434
+ padding: 0.2em;
435
+ background-color: #fcf8e3;
436
+ }
437
+
438
+ .w3eden .list-unstyled {
439
+ padding-left: 0;
440
+ list-style: none;
441
+ }
442
+
443
+ .w3eden .list-inline {
444
+ padding-left: 0;
445
+ list-style: none;
446
+ }
447
+
448
+ .w3eden .list-inline-item {
449
+ display: inline-block;
450
+ }
451
+
452
+ .w3eden .list-inline-item:not(:last-child) {
453
+ margin-right: 0.5rem;
454
+ }
455
+
456
+ .w3eden .initialism {
457
+ font-size: 90%;
458
+ text-transform: uppercase;
459
+ }
460
+
461
+ .w3eden .blockquote {
462
+ margin-bottom: 1rem;
463
+ font-size: 1.25rem;
464
+ }
465
+
466
+ .w3eden .blockquote-footer {
467
+ display: block;
468
+ font-size: 80%;
469
+ color: #6c757d;
470
+ }
471
+
472
+ .w3eden .blockquote-footer::before {
473
+ content: "\2014\00A0";
474
+ }
475
+
476
+ .w3eden .img-fluid {
477
+ max-width: 100%;
478
+ height: auto;
479
+ }
480
+
481
+ .w3eden .img-thumbnail {
482
+ padding: 0.25rem;
483
+ background-color: #fff;
484
+ border: 1px solid #dee2e6;
485
+ border-radius: 0.25rem;
486
+ max-width: 100%;
487
+ height: auto;
488
+ }
489
+
490
+ .w3eden .figure {
491
+ display: inline-block;
492
+ }
493
+
494
+ .w3eden .figure-img {
495
+ margin-bottom: 0.5rem;
496
+ line-height: 1;
497
+ }
498
+
499
+ .w3eden .figure-caption {
500
+ font-size: 90%;
501
+ color: #6c757d;
502
+ }
503
+
504
+ .w3eden code {
505
+ font-size: 87.5%;
506
+ color: #e83e8c;
507
+ word-wrap: break-word;
508
+ }
509
+
510
+ .w3eden a > code {
511
+ color: inherit;
512
+ }
513
+
514
+ .w3eden kbd {
515
+ padding: 0.2rem 0.4rem;
516
+ font-size: 87.5%;
517
+ color: #fff;
518
+ background-color: #212529;
519
+ border-radius: 0.2rem;
520
+ }
521
+
522
+ .w3eden kbd kbd {
523
+ padding: 0;
524
+ font-size: 100%;
525
+ font-weight: 700;
526
+ }
527
+
528
+ .w3eden pre {
529
+ display: block;
530
+ font-size: 87.5%;
531
+ color: #212529;
532
+ }
533
+
534
+ .w3eden pre code {
535
+ font-size: inherit;
536
+ color: inherit;
537
+ word-break: normal;
538
+ }
539
+
540
+ .w3eden .pre-scrollable {
541
+ max-height: 340px;
542
+ overflow-y: scroll;
543
+ }
544
+
545
+ .w3eden .container {
546
+ width: 100%;
547
+ padding-right: 15px;
548
+ padding-left: 15px;
549
+ margin-right: auto;
550
+ margin-left: auto;
551
+ }
552
+
553
+ @media (min-width: 576px) {
554
+ .w3eden .container {
555
+ max-width: 540px;
556
+ }
557
+ }
558
+
559
+ @media (min-width: 768px) {
560
+ .w3eden .container {
561
+ max-width: 720px;
562
+ }
563
+ }
564
+
565
+ @media (min-width: 992px) {
566
+ .w3eden .container {
567
+ max-width: 960px;
568
+ }
569
+ }
570
+
571
+ @media (min-width: 1200px) {
572
+ .w3eden .container {
573
+ max-width: 1140px;
574
+ }
575
+ }
576
+
577
+ .w3eden .container-fluid, .w3eden .container-sm, .w3eden .container-md, .w3eden .container-lg, .w3eden .container-xl {
578
+ width: 100%;
579
+ padding-right: 15px;
580
+ padding-left: 15px;
581
+ margin-right: auto;
582
+ margin-left: auto;
583
+ }
584
+
585
+ @media (min-width: 576px) {
586
+ .w3eden .container, .w3eden .container-sm {
587
+ max-width: 540px;
588
+ }
589
+ }
590
+
591
+ @media (min-width: 768px) {
592
+ .w3eden .container, .w3eden .container-sm, .w3eden .container-md {
593
+ max-width: 720px;
594
+ }
595
+ }
596
+
597
+ @media (min-width: 992px) {
598
+ .w3eden .container, .w3eden .container-sm, .w3eden .container-md, .w3eden .container-lg {
599
+ max-width: 960px;
600
+ }
601
+ }
602
+
603
+ @media (min-width: 1200px) {
604
+ .w3eden .container, .w3eden .container-sm, .w3eden .container-md, .w3eden .container-lg, .w3eden .container-xl {
605
+ max-width: 1140px;
606
+ }
607
+ }
608
+
609
+ .w3eden .row {
610
+ display: -ms-flexbox;
611
+ display: flex;
612
+ -ms-flex-wrap: wrap;
613
+ flex-wrap: wrap;
614
+ margin-right: -15px;
615
+ margin-left: -15px;
616
+ }
617
+
618
+ .w3eden .no-gutters {
619
+ margin-right: 0;
620
+ margin-left: 0;
621
+ }
622
+
623
+ .w3eden .no-gutters > .col,
624
+ .w3eden .no-gutters > [class*="col-"] {
625
+ padding-right: 0;
626
+ padding-left: 0;
627
+ }
628
+
629
+ .w3eden .col-1, .w3eden .col-2, .w3eden .col-3, .w3eden .col-4, .w3eden .col-5, .w3eden .col-6, .w3eden .col-7, .w3eden .col-8, .w3eden .col-9, .w3eden .col-10, .w3eden .col-11, .w3eden .col-12, .w3eden .col,
630
+ .w3eden .col-auto, .w3eden .col-sm-1, .w3eden .col-sm-2, .w3eden .col-sm-3, .w3eden .col-sm-4, .w3eden .col-sm-5, .w3eden .col-sm-6, .w3eden .col-sm-7, .w3eden .col-sm-8, .w3eden .col-sm-9, .w3eden .col-sm-10, .w3eden .col-sm-11, .w3eden .col-sm-12, .w3eden .col-sm,
631
+ .w3eden .col-sm-auto, .w3eden .col-md-1, .w3eden .col-md-2, .w3eden .col-md-3, .w3eden .col-md-4, .w3eden .col-md-5, .w3eden .col-md-6, .w3eden .col-md-7, .w3eden .col-md-8, .w3eden .col-md-9, .w3eden .col-md-10, .w3eden .col-md-11, .w3eden .col-md-12, .w3eden .col-md,
632
+ .w3eden .col-md-auto, .w3eden .col-lg-1, .w3eden .col-lg-2, .w3eden .col-lg-3, .w3eden .col-lg-4, .w3eden .col-lg-5, .w3eden .col-lg-6, .w3eden .col-lg-7, .w3eden .col-lg-8, .w3eden .col-lg-9, .w3eden .col-lg-10, .w3eden .col-lg-11, .w3eden .col-lg-12, .w3eden .col-lg,
633
+ .w3eden .col-lg-auto, .w3eden .col-xl-1, .w3eden .col-xl-2, .w3eden .col-xl-3, .w3eden .col-xl-4, .w3eden .col-xl-5, .w3eden .col-xl-6, .w3eden .col-xl-7, .w3eden .col-xl-8, .w3eden .col-xl-9, .w3eden .col-xl-10, .w3eden .col-xl-11, .w3eden .col-xl-12, .w3eden .col-xl,
634
+ .w3eden .col-xl-auto {
635
+ position: relative;
636
+ width: 100%;
637
+ padding-right: 15px;
638
+ padding-left: 15px;
639
+ }
640
+
641
+ .w3eden .col {
642
+ -ms-flex-preferred-size: 0;
643
+ flex-basis: 0;
644
+ -ms-flex-positive: 1;
645
+ flex-grow: 1;
646
+ max-width: 100%;
647
+ }
648
+
649
+ .w3eden .row-cols-1 > * {
650
+ -ms-flex: 0 0 100%;
651
+ flex: 0 0 100%;
652
+ max-width: 100%;
653
+ }
654
+
655
+ .w3eden .row-cols-2 > * {
656
+ -ms-flex: 0 0 50%;
657
+ flex: 0 0 50%;
658
+ max-width: 50%;
659
+ }
660
+
661
+ .w3eden .row-cols-3 > * {
662
+ -ms-flex: 0 0 33.333333%;
663
+ flex: 0 0 33.333333%;
664
+ max-width: 33.333333%;
665
+ }
666
+
667
+ .w3eden .row-cols-4 > * {
668
+ -ms-flex: 0 0 25%;
669
+ flex: 0 0 25%;
670
+ max-width: 25%;
671
+ }
672
+
673
+ .w3eden .row-cols-5 > * {
674
+ -ms-flex: 0 0 20%;
675
+ flex: 0 0 20%;
676
+ max-width: 20%;
677
+ }
678
+
679
+ .w3eden .row-cols-6 > * {
680
+ -ms-flex: 0 0 16.666667%;
681
+ flex: 0 0 16.666667%;
682
+ max-width: 16.666667%;
683
+ }
684
+
685
+ .w3eden .col-auto {
686
+ -ms-flex: 0 0 auto;
687
+ flex: 0 0 auto;
688
+ width: auto;
689
+ max-width: 100%;
690
+ }
691
+
692
+ .w3eden .col-1 {
693
+ -ms-flex: 0 0 8.333333%;
694
+ flex: 0 0 8.333333%;
695
+ max-width: 8.333333%;
696
+ }
697
+
698
+ .w3eden .col-2 {
699
+ -ms-flex: 0 0 16.666667%;
700
+ flex: 0 0 16.666667%;
701
+ max-width: 16.666667%;
702
+ }
703
+
704
+ .w3eden .col-3 {
705
+ -ms-flex: 0 0 25%;
706
+ flex: 0 0 25%;
707
+ max-width: 25%;
708
+ }
709
+
710
+ .w3eden .col-4 {
711
+ -ms-flex: 0 0 33.333333%;
712
+ flex: 0 0 33.333333%;
713
+ max-width: 33.333333%;
714
+ }
715
+
716
+ .w3eden .col-5 {
717
+ -ms-flex: 0 0 41.666667%;
718
+ flex: 0 0 41.666667%;
719
+ max-width: 41.666667%;
720
+ }
721
+
722
+ .w3eden .col-6 {
723
+ -ms-flex: 0 0 50%;
724
+ flex: 0 0 50%;
725
+ max-width: 50%;
726
+ }
727
+
728
+ .w3eden .col-7 {
729
+ -ms-flex: 0 0 58.333333%;
730
+ flex: 0 0 58.333333%;
731
+ max-width: 58.333333%;
732
+ }
733
+
734
+ .w3eden .col-8 {
735
+ -ms-flex: 0 0 66.666667%;
736
+ flex: 0 0 66.666667%;
737
+ max-width: 66.666667%;
738
+ }
739
+
740
+ .w3eden .col-9 {
741
+ -ms-flex: 0 0 75%;
742
+ flex: 0 0 75%;
743
+ max-width: 75%;
744
+ }
745
+
746
+ .w3eden .col-10 {
747
+ -ms-flex: 0 0 83.333333%;
748
+ flex: 0 0 83.333333%;
749
+ max-width: 83.333333%;
750
+ }
751
+
752
+ .w3eden .col-11 {
753
+ -ms-flex: 0 0 91.666667%;
754
+ flex: 0 0 91.666667%;
755
+ max-width: 91.666667%;
756
+ }
757
+
758
+ .w3eden .col-12 {
759
+ -ms-flex: 0 0 100%;
760
+ flex: 0 0 100%;
761
+ max-width: 100%;
762
+ }
763
+
764
+ .w3eden .order-first {
765
+ -ms-flex-order: -1;
766
+ order: -1;
767
+ }
768
+
769
+ .w3eden .order-last {
770
+ -ms-flex-order: 13;
771
+ order: 13;
772
+ }
773
+
774
+ .w3eden .order-0 {
775
+ -ms-flex-order: 0;
776
+ order: 0;
777
+ }
778
+
779
+ .w3eden .order-1 {
780
+ -ms-flex-order: 1;
781
+ order: 1;
782
+ }
783
+
784
+ .w3eden .order-2 {
785
+ -ms-flex-order: 2;
786
+ order: 2;
787
+ }
788
+
789
+ .w3eden .order-3 {
790
+ -ms-flex-order: 3;
791
+ order: 3;
792
+ }
793
+
794
+ .w3eden .order-4 {
795
+ -ms-flex-order: 4;
796
+ order: 4;
797
+ }
798
+
799
+ .w3eden .order-5 {
800
+ -ms-flex-order: 5;
801
+ order: 5;
802
+ }
803
+
804
+ .w3eden .order-6 {
805
+ -ms-flex-order: 6;
806
+ order: 6;
807
+ }
808
+
809
+ .w3eden .order-7 {
810
+ -ms-flex-order: 7;
811
+ order: 7;
812
+ }
813
+
814
+ .w3eden .order-8 {
815
+ -ms-flex-order: 8;
816
+ order: 8;
817
+ }
818
+
819
+ .w3eden .order-9 {
820
+ -ms-flex-order: 9;
821
+ order: 9;
822
+ }
823
+
824
+ .w3eden .order-10 {
825
+ -ms-flex-order: 10;
826
+ order: 10;
827
+ }
828
+
829
+ .w3eden .order-11 {
830
+ -ms-flex-order: 11;
831
+ order: 11;
832
+ }
833
+
834
+ .w3eden .order-12 {
835
+ -ms-flex-order: 12;
836
+ order: 12;
837
+ }
838
+
839
+ .w3eden .offset-1 {
840
+ margin-left: 8.333333%;
841
+ }
842
+
843
+ .w3eden .offset-2 {
844
+ margin-left: 16.666667%;
845
+ }
846
+
847
+ .w3eden .offset-3 {
848
+ margin-left: 25%;
849
+ }
850
+
851
+ .w3eden .offset-4 {
852
+ margin-left: 33.333333%;
853
+ }
854
+
855
+ .w3eden .offset-5 {
856
+ margin-left: 41.666667%;
857
+ }
858
+
859
+ .w3eden .offset-6 {
860
+ margin-left: 50%;
861
+ }
862
+
863
+ .w3eden .offset-7 {
864
+ margin-left: 58.333333%;
865
+ }
866
+
867
+ .w3eden .offset-8 {
868
+ margin-left: 66.666667%;
869
+ }
870
+
871
+ .w3eden .offset-9 {
872
+ margin-left: 75%;
873
+ }
874
+
875
+ .w3eden .offset-10 {
876
+ margin-left: 83.333333%;
877
+ }
878
+
879
+ .w3eden .offset-11 {
880
+ margin-left: 91.666667%;
881
+ }
882
+
883
+ @media (min-width: 576px) {
884
+ .w3eden .col-sm {
885
+ -ms-flex-preferred-size: 0;
886
+ flex-basis: 0;
887
+ -ms-flex-positive: 1;
888
+ flex-grow: 1;
889
+ max-width: 100%;
890
+ }
891
+
892
+ .w3eden .row-cols-sm-1 > * {
893
+ -ms-flex: 0 0 100%;
894
+ flex: 0 0 100%;
895
+ max-width: 100%;
896
+ }
897
+
898
+ .w3eden .row-cols-sm-2 > * {
899
+ -ms-flex: 0 0 50%;
900
+ flex: 0 0 50%;
901
+ max-width: 50%;
902
+ }
903
+
904
+ .w3eden .row-cols-sm-3 > * {
905
+ -ms-flex: 0 0 33.333333%;
906
+ flex: 0 0 33.333333%;
907
+ max-width: 33.333333%;
908
+ }
909
+
910
+ .w3eden .row-cols-sm-4 > * {
911
+ -ms-flex: 0 0 25%;
912
+ flex: 0 0 25%;
913
+ max-width: 25%;
914
+ }
915
+
916
+ .w3eden .row-cols-sm-5 > * {
917
+ -ms-flex: 0 0 20%;
918
+ flex: 0 0 20%;
919
+ max-width: 20%;
920
+ }
921
+
922
+ .w3eden .row-cols-sm-6 > * {
923
+ -ms-flex: 0 0 16.666667%;
924
+ flex: 0 0 16.666667%;
925
+ max-width: 16.666667%;
926
+ }
927
+
928
+ .w3eden .col-sm-auto {
929
+ -ms-flex: 0 0 auto;
930
+ flex: 0 0 auto;
931
+ width: auto;
932
+ max-width: 100%;
933
+ }
934
+
935
+ .w3eden .col-sm-1 {
936
+ -ms-flex: 0 0 8.333333%;
937
+ flex: 0 0 8.333333%;
938
+ max-width: 8.333333%;
939
+ }
940
+
941
+ .w3eden .col-sm-2 {
942
+ -ms-flex: 0 0 16.666667%;
943
+ flex: 0 0 16.666667%;
944
+ max-width: 16.666667%;
945
+ }
946
+
947
+ .w3eden .col-sm-3 {
948
+ -ms-flex: 0 0 25%;
949
+ flex: 0 0 25%;
950
+ max-width: 25%;
951
+ }
952
+
953
+ .w3eden .col-sm-4 {
954
+ -ms-flex: 0 0 33.333333%;
955
+ flex: 0 0 33.333333%;
956
+ max-width: 33.333333%;
957
+ }
958
+
959
+ .w3eden .col-sm-5 {
960
+ -ms-flex: 0 0 41.666667%;
961
+ flex: 0 0 41.666667%;
962
+ max-width: 41.666667%;
963
+ }
964
+
965
+ .w3eden .col-sm-6 {
966
+ -ms-flex: 0 0 50%;
967
+ flex: 0 0 50%;
968
+ max-width: 50%;
969
+ }
970
+
971
+ .w3eden .col-sm-7 {
972
+ -ms-flex: 0 0 58.333333%;
973
+ flex: 0 0 58.333333%;
974
+ max-width: 58.333333%;
975
+ }
976
+
977
+ .w3eden .col-sm-8 {
978
+ -ms-flex: 0 0 66.666667%;
979
+ flex: 0 0 66.666667%;
980
+ max-width: 66.666667%;
981
+ }
982
+
983
+ .w3eden .col-sm-9 {
984
+ -ms-flex: 0 0 75%;
985
+ flex: 0 0 75%;
986
+ max-width: 75%;
987
+ }
988
+
989
+ .w3eden .col-sm-10 {
990
+ -ms-flex: 0 0 83.333333%;
991
+ flex: 0 0 83.333333%;
992
+ max-width: 83.333333%;
993
+ }
994
+
995
+ .w3eden .col-sm-11 {
996
+ -ms-flex: 0 0 91.666667%;
997
+ flex: 0 0 91.666667%;
998
+ max-width: 91.666667%;
999
+ }
1000
+
1001
+ .w3eden .col-sm-12 {
1002
+ -ms-flex: 0 0 100%;
1003
+ flex: 0 0 100%;
1004
+ max-width: 100%;
1005
+ }
1006
+
1007
+ .w3eden .order-sm-first {
1008
+ -ms-flex-order: -1;
1009
+ order: -1;
1010
+ }
1011
+
1012
+ .w3eden .order-sm-last {
1013
+ -ms-flex-order: 13;
1014
+ order: 13;
1015
+ }
1016
+
1017
+ .w3eden .order-sm-0 {
1018
+ -ms-flex-order: 0;
1019
+ order: 0;
1020
+ }
1021
+
1022
+ .w3eden .order-sm-1 {
1023
+ -ms-flex-order: 1;
1024
+ order: 1;
1025
+ }
1026
+
1027
+ .w3eden .order-sm-2 {
1028
+ -ms-flex-order: 2;
1029
+ order: 2;
1030
+ }
1031
+
1032
+ .w3eden .order-sm-3 {
1033
+ -ms-flex-order: 3;
1034
+ order: 3;
1035
+ }
1036
+
1037
+ .w3eden .order-sm-4 {
1038
+ -ms-flex-order: 4;
1039
+ order: 4;
1040
+ }
1041
+
1042
+ .w3eden .order-sm-5 {
1043
+ -ms-flex-order: 5;
1044
+ order: 5;
1045
+ }
1046
+
1047
+ .w3eden .order-sm-6 {
1048
+ -ms-flex-order: 6;
1049
+ order: 6;
1050
+ }
1051
+
1052
+ .w3eden .order-sm-7 {
1053
+ -ms-flex-order: 7;
1054
+ order: 7;
1055
+ }
1056
+
1057
+ .w3eden .order-sm-8 {
1058
+ -ms-flex-order: 8;
1059
+ order: 8;
1060
+ }
1061
+
1062
+ .w3eden .order-sm-9 {
1063
+ -ms-flex-order: 9;
1064
+ order: 9;
1065
+ }
1066
+
1067
+ .w3eden .order-sm-10 {
1068
+ -ms-flex-order: 10;
1069
+ order: 10;
1070
+ }
1071
+
1072
+ .w3eden .order-sm-11 {
1073
+ -ms-flex-order: 11;
1074
+ order: 11;
1075
+ }
1076
+
1077
+ .w3eden .order-sm-12 {
1078
+ -ms-flex-order: 12;
1079
+ order: 12;
1080
+ }
1081
+
1082
+ .w3eden .offset-sm-0 {
1083
+ margin-left: 0;
1084
+ }
1085
+
1086
+ .w3eden .offset-sm-1 {
1087
+ margin-left: 8.333333%;
1088
+ }
1089
+
1090
+ .w3eden .offset-sm-2 {
1091
+ margin-left: 16.666667%;
1092
+ }
1093
+
1094
+ .w3eden .offset-sm-3 {
1095
+ margin-left: 25%;
1096
+ }
1097
+
1098
+ .w3eden .offset-sm-4 {
1099
+ margin-left: 33.333333%;
1100
+ }
1101
+
1102
+ .w3eden .offset-sm-5 {
1103
+ margin-left: 41.666667%;
1104
+ }
1105
+
1106
+ .w3eden .offset-sm-6 {
1107
+ margin-left: 50%;
1108
+ }
1109
+
1110
+ .w3eden .offset-sm-7 {
1111
+ margin-left: 58.333333%;
1112
+ }
1113
+
1114
+ .w3eden .offset-sm-8 {
1115
+ margin-left: 66.666667%;
1116
+ }
1117
+
1118
+ .w3eden .offset-sm-9 {
1119
+ margin-left: 75%;
1120
+ }
1121
+
1122
+ .w3eden .offset-sm-10 {
1123
+ margin-left: 83.333333%;
1124
+ }
1125
+
1126
+ .w3eden .offset-sm-11 {
1127
+ margin-left: 91.666667%;
1128
+ }
1129
+ }
1130
+
1131
+ @media (min-width: 768px) {
1132
+ .w3eden .col-md {
1133
+ -ms-flex-preferred-size: 0;
1134
+ flex-basis: 0;
1135
+ -ms-flex-positive: 1;
1136
+ flex-grow: 1;
1137
+ max-width: 100%;
1138
+ }
1139
+
1140
+ .w3eden .row-cols-md-1 > * {
1141
+ -ms-flex: 0 0 100%;
1142
+ flex: 0 0 100%;
1143
+ max-width: 100%;
1144
+ }
1145
+
1146
+ .w3eden .row-cols-md-2 > * {
1147
+ -ms-flex: 0 0 50%;
1148
+ flex: 0 0 50%;
1149
+ max-width: 50%;
1150
+ }
1151
+
1152
+ .w3eden .row-cols-md-3 > * {
1153
+ -ms-flex: 0 0 33.333333%;
1154
+ flex: 0 0 33.333333%;
1155
+ max-width: 33.333333%;
1156
+ }
1157
+
1158
+ .w3eden .row-cols-md-4 > * {
1159
+ -ms-flex: 0 0 25%;
1160
+ flex: 0 0 25%;
1161
+ max-width: 25%;
1162
+ }
1163
+
1164
+ .w3eden .row-cols-md-5 > * {
1165
+ -ms-flex: 0 0 20%;
1166
+ flex: 0 0 20%;
1167
+ max-width: 20%;
1168
+ }
1169
+
1170
+ .w3eden .row-cols-md-6 > * {
1171
+ -ms-flex: 0 0 16.666667%;
1172
+ flex: 0 0 16.666667%;
1173
+ max-width: 16.666667%;
1174
+ }
1175
+
1176
+ .w3eden .col-md-auto {
1177
+ -ms-flex: 0 0 auto;
1178
+ flex: 0 0 auto;
1179
+ width: auto;
1180
+ max-width: 100%;
1181
+ }
1182
+
1183
+ .w3eden .col-md-1 {
1184
+ -ms-flex: 0 0 8.333333%;
1185
+ flex: 0 0 8.333333%;
1186
+ max-width: 8.333333%;
1187
+ }
1188
+
1189
+ .w3eden .col-md-2 {
1190
+ -ms-flex: 0 0 16.666667%;
1191
+ flex: 0 0 16.666667%;
1192
+ max-width: 16.666667%;
1193
+ }
1194
+
1195
+ .w3eden .col-md-3 {
1196
+ -ms-flex: 0 0 25%;
1197
+ flex: 0 0 25%;
1198
+ max-width: 25%;
1199
+ }
1200
+
1201
+ .w3eden .col-md-4 {
1202
+ -ms-flex: 0 0 33.333333%;
1203
+ flex: 0 0 33.333333%;
1204
+ max-width: 33.333333%;
1205
+ }
1206
+
1207
+ .w3eden .col-md-5 {
1208
+ -ms-flex: 0 0 41.666667%;
1209
+ flex: 0 0 41.666667%;
1210
+ max-width: 41.666667%;
1211
+ }
1212
+
1213
+ .w3eden .col-md-6 {
1214
+ -ms-flex: 0 0 50%;
1215
+ flex: 0 0 50%;
1216
+ max-width: 50%;
1217
+ }
1218
+
1219
+ .w3eden .col-md-7 {
1220
+ -ms-flex: 0 0 58.333333%;
1221
+ flex: 0 0 58.333333%;
1222
+ max-width: 58.333333%;
1223
+ }
1224
+
1225
+ .w3eden .col-md-8 {
1226
+ -ms-flex: 0 0 66.666667%;
1227
+ flex: 0 0 66.666667%;
1228
+ max-width: 66.666667%;
1229
+ }
1230
+
1231
+ .w3eden .col-md-9 {
1232
+ -ms-flex: 0 0 75%;
1233
+ flex: 0 0 75%;
1234
+ max-width: 75%;
1235
+ }
1236
+
1237
+ .w3eden .col-md-10 {
1238
+ -ms-flex: 0 0 83.333333%;
1239
+ flex: 0 0 83.333333%;
1240
+ max-width: 83.333333%;
1241
+ }
1242
+
1243
+ .w3eden .col-md-11 {
1244
+ -ms-flex: 0 0 91.666667%;
1245
+ flex: 0 0 91.666667%;
1246
+ max-width: 91.666667%;
1247
+ }
1248
+
1249
+ .w3eden .col-md-12 {
1250
+ -ms-flex: 0 0 100%;
1251
+ flex: 0 0 100%;
1252
+ max-width: 100%;
1253
+ }
1254
+
1255
+ .w3eden .order-md-first {
1256
+ -ms-flex-order: -1;
1257
+ order: -1;
1258
+ }
1259
+
1260
+ .w3eden .order-md-last {
1261
+ -ms-flex-order: 13;
1262
+ order: 13;
1263
+ }
1264
+
1265
+ .w3eden .order-md-0 {
1266
+ -ms-flex-order: 0;
1267
+ order: 0;
1268
+ }
1269
+
1270
+ .w3eden .order-md-1 {
1271
+ -ms-flex-order: 1;
1272
+ order: 1;
1273
+ }
1274
+
1275
+ .w3eden .order-md-2 {
1276
+ -ms-flex-order: 2;
1277
+ order: 2;
1278
+ }
1279
+
1280
+ .w3eden .order-md-3 {
1281
+ -ms-flex-order: 3;
1282
+ order: 3;
1283
+ }
1284
+
1285
+ .w3eden .order-md-4 {
1286
+ -ms-flex-order: 4;
1287
+ order: 4;
1288
+ }
1289
+
1290
+ .w3eden .order-md-5 {
1291
+ -ms-flex-order: 5;
1292
+ order: 5;
1293
+ }
1294
+
1295
+ .w3eden .order-md-6 {
1296
+ -ms-flex-order: 6;
1297
+ order: 6;
1298
+ }
1299
+
1300
+ .w3eden .order-md-7 {
1301
+ -ms-flex-order: 7;
1302
+ order: 7;
1303
+ }
1304
+
1305
+ .w3eden .order-md-8 {
1306
+ -ms-flex-order: 8;
1307
+ order: 8;
1308
+ }
1309
+
1310
+ .w3eden .order-md-9 {
1311
+ -ms-flex-order: 9;
1312
+ order: 9;
1313
+ }
1314
+
1315
+ .w3eden .order-md-10 {
1316
+ -ms-flex-order: 10;
1317
+ order: 10;
1318
+ }
1319
+
1320
+ .w3eden .order-md-11 {
1321
+ -ms-flex-order: 11;
1322
+ order: 11;
1323
+ }
1324
+
1325
+ .w3eden .order-md-12 {
1326
+ -ms-flex-order: 12;
1327
+ order: 12;
1328
+ }
1329
+
1330
+ .w3eden .offset-md-0 {
1331
+ margin-left: 0;
1332
+ }
1333
+
1334
+ .w3eden .offset-md-1 {
1335
+ margin-left: 8.333333%;
1336
+ }
1337
+
1338
+ .w3eden .offset-md-2 {
1339
+ margin-left: 16.666667%;
1340
+ }
1341
+
1342
+ .w3eden .offset-md-3 {
1343
+ margin-left: 25%;
1344
+ }
1345
+
1346
+ .w3eden .offset-md-4 {
1347
+ margin-left: 33.333333%;
1348
+ }
1349
+
1350
+ .w3eden .offset-md-5 {
1351
+ margin-left: 41.666667%;
1352
+ }
1353
+
1354
+ .w3eden .offset-md-6 {
1355
+ margin-left: 50%;
1356
+ }
1357
+
1358
+ .w3eden .offset-md-7 {
1359
+ margin-left: 58.333333%;
1360
+ }
1361
+
1362
+ .w3eden .offset-md-8 {
1363
+ margin-left: 66.666667%;
1364
+ }
1365
+
1366
+ .w3eden .offset-md-9 {
1367
+ margin-left: 75%;
1368
+ }
1369
+
1370
+ .w3eden .offset-md-10 {
1371
+ margin-left: 83.333333%;
1372
+ }
1373
+
1374
+ .w3eden .offset-md-11 {
1375
+ margin-left: 91.666667%;
1376
+ }
1377
+ }
1378
+
1379
+ @media (min-width: 992px) {
1380
+ .w3eden .col-lg {
1381
+ -ms-flex-preferred-size: 0;
1382
+ flex-basis: 0;
1383
+ -ms-flex-positive: 1;
1384
+ flex-grow: 1;
1385
+ max-width: 100%;
1386
+ }
1387
+
1388
+ .w3eden .row-cols-lg-1 > * {
1389
+ -ms-flex: 0 0 100%;
1390
+ flex: 0 0 100%;
1391
+ max-width: 100%;
1392
+ }
1393
+
1394
+ .w3eden .row-cols-lg-2 > * {
1395
+ -ms-flex: 0 0 50%;
1396
+ flex: 0 0 50%;
1397
+ max-width: 50%;
1398
+ }
1399
+
1400
+ .w3eden .row-cols-lg-3 > * {
1401
+ -ms-flex: 0 0 33.333333%;
1402
+ flex: 0 0 33.333333%;
1403
+ max-width: 33.333333%;
1404
+ }
1405
+
1406
+ .w3eden .row-cols-lg-4 > * {
1407
+ -ms-flex: 0 0 25%;
1408
+ flex: 0 0 25%;
1409
+ max-width: 25%;
1410
+ }
1411
+
1412
+ .w3eden .row-cols-lg-5 > * {
1413
+ -ms-flex: 0 0 20%;
1414
+ flex: 0 0 20%;
1415
+ max-width: 20%;
1416
+ }
1417
+
1418
+ .w3eden .row-cols-lg-6 > * {
1419
+ -ms-flex: 0 0 16.666667%;
1420
+ flex: 0 0 16.666667%;
1421
+ max-width: 16.666667%;
1422
+ }
1423
+
1424
+ .w3eden .col-lg-auto {
1425
+ -ms-flex: 0 0 auto;
1426
+ flex: 0 0 auto;
1427
+ width: auto;
1428
+ max-width: 100%;
1429
+ }
1430
+
1431
+ .w3eden .col-lg-1 {
1432
+ -ms-flex: 0 0 8.333333%;
1433
+ flex: 0 0 8.333333%;
1434
+ max-width: 8.333333%;
1435
+ }
1436
+
1437
+ .w3eden .col-lg-2 {
1438
+ -ms-flex: 0 0 16.666667%;
1439
+ flex: 0 0 16.666667%;
1440
+ max-width: 16.666667%;
1441
+ }
1442
+
1443
+ .w3eden .col-lg-3 {
1444
+ -ms-flex: 0 0 25%;
1445
+ flex: 0 0 25%;
1446
+ max-width: 25%;
1447
+ }
1448
+
1449
+ .w3eden .col-lg-4 {
1450
+ -ms-flex: 0 0 33.333333%;
1451
+ flex: 0 0 33.333333%;
1452
+ max-width: 33.333333%;
1453
+ }
1454
+
1455
+ .w3eden .col-lg-5 {
1456
+ -ms-flex: 0 0 41.666667%;
1457
+ flex: 0 0 41.666667%;
1458
+ max-width: 41.666667%;
1459
+ }
1460
+
1461
+ .w3eden .col-lg-6 {
1462
+ -ms-flex: 0 0 50%;
1463
+ flex: 0 0 50%;
1464
+ max-width: 50%;
1465
+ }
1466
+
1467
+ .w3eden .col-lg-7 {
1468
+ -ms-flex: 0 0 58.333333%;
1469
+ flex: 0 0 58.333333%;
1470
+ max-width: 58.333333%;
1471
+ }
1472
+
1473
+ .w3eden .col-lg-8 {
1474
+ -ms-flex: 0 0 66.666667%;
1475
+ flex: 0 0 66.666667%;
1476
+ max-width: 66.666667%;
1477
+ }
1478
+
1479
+ .w3eden .col-lg-9 {
1480
+ -ms-flex: 0 0 75%;
1481
+ flex: 0 0 75%;
1482
+ max-width: 75%;
1483
+ }
1484
+
1485
+ .w3eden .col-lg-10 {
1486
+ -ms-flex: 0 0 83.333333%;
1487
+ flex: 0 0 83.333333%;
1488
+ max-width: 83.333333%;
1489
+ }
1490
+
1491
+ .w3eden .col-lg-11 {
1492
+ -ms-flex: 0 0 91.666667%;
1493
+ flex: 0 0 91.666667%;
1494
+ max-width: 91.666667%;
1495
+ }
1496
+
1497
+ .w3eden .col-lg-12 {
1498
+ -ms-flex: 0 0 100%;
1499
+ flex: 0 0 100%;
1500
+ max-width: 100%;
1501
+ }
1502
+
1503
+ .w3eden .order-lg-first {
1504
+ -ms-flex-order: -1;
1505
+ order: -1;
1506
+ }
1507
+
1508
+ .w3eden .order-lg-last {
1509
+ -ms-flex-order: 13;
1510
+ order: 13;
1511
+ }
1512
+
1513
+ .w3eden .order-lg-0 {
1514
+ -ms-flex-order: 0;
1515
+ order: 0;
1516
+ }
1517
+
1518
+ .w3eden .order-lg-1 {
1519
+ -ms-flex-order: 1;
1520
+ order: 1;
1521
+ }
1522
+
1523
+ .w3eden .order-lg-2 {
1524
+ -ms-flex-order: 2;
1525
+ order: 2;
1526
+ }
1527
+
1528
+ .w3eden .order-lg-3 {
1529
+ -ms-flex-order: 3;
1530
+ order: 3;
1531
+ }
1532
+
1533
+ .w3eden .order-lg-4 {
1534
+ -ms-flex-order: 4;
1535
+ order: 4;
1536
+ }
1537
+
1538
+ .w3eden .order-lg-5 {
1539
+ -ms-flex-order: 5;
1540
+ order: 5;
1541
+ }
1542
+
1543
+ .w3eden .order-lg-6 {
1544
+ -ms-flex-order: 6;
1545
+ order: 6;
1546
+ }
1547
+
1548
+ .w3eden .order-lg-7 {
1549
+ -ms-flex-order: 7;
1550
+ order: 7;
1551
+ }
1552
+
1553
+ .w3eden .order-lg-8 {
1554
+ -ms-flex-order: 8;
1555
+ order: 8;
1556
+ }
1557
+
1558
+ .w3eden .order-lg-9 {
1559
+ -ms-flex-order: 9;
1560
+ order: 9;
1561
+ }
1562
+
1563
+ .w3eden .order-lg-10 {
1564
+ -ms-flex-order: 10;
1565
+ order: 10;
1566
+ }
1567
+
1568
+ .w3eden .order-lg-11 {
1569
+ -ms-flex-order: 11;
1570
+ order: 11;
1571
+ }
1572
+
1573
+ .w3eden .order-lg-12 {
1574
+ -ms-flex-order: 12;
1575
+ order: 12;
1576
+ }
1577
+
1578
+ .w3eden .offset-lg-0 {
1579
+ margin-left: 0;
1580
+ }
1581
+
1582
+ .w3eden .offset-lg-1 {
1583
+ margin-left: 8.333333%;
1584
+ }
1585
+
1586
+ .w3eden .offset-lg-2 {
1587
+ margin-left: 16.666667%;
1588
+ }
1589
+
1590
+ .w3eden .offset-lg-3 {
1591
+ margin-left: 25%;
1592
+ }
1593
+
1594
+ .w3eden .offset-lg-4 {
1595
+ margin-left: 33.333333%;
1596
+ }
1597
+
1598
+ .w3eden .offset-lg-5 {
1599
+ margin-left: 41.666667%;
1600
+ }
1601
+
1602
+ .w3eden .offset-lg-6 {
1603
+ margin-left: 50%;
1604
+ }
1605
+
1606
+ .w3eden .offset-lg-7 {
1607
+ margin-left: 58.333333%;
1608
+ }
1609
+
1610
+ .w3eden .offset-lg-8 {
1611
+ margin-left: 66.666667%;
1612
+ }
1613
+
1614
+ .w3eden .offset-lg-9 {
1615
+ margin-left: 75%;
1616
+ }
1617
+
1618
+ .w3eden .offset-lg-10 {
1619
+ margin-left: 83.333333%;
1620
+ }
1621
+
1622
+ .w3eden .offset-lg-11 {
1623
+ margin-left: 91.666667%;
1624
+ }
1625
+ }
1626
+
1627
+ @media (min-width: 1200px) {
1628
+ .w3eden .col-xl {
1629
+ -ms-flex-preferred-size: 0;
1630
+ flex-basis: 0;
1631
+ -ms-flex-positive: 1;
1632
+ flex-grow: 1;
1633
+ max-width: 100%;
1634
+ }
1635
+
1636
+ .w3eden .row-cols-xl-1 > * {
1637
+ -ms-flex: 0 0 100%;
1638
+ flex: 0 0 100%;
1639
+ max-width: 100%;
1640
+ }
1641
+
1642
+ .w3eden .row-cols-xl-2 > * {
1643
+ -ms-flex: 0 0 50%;
1644
+ flex: 0 0 50%;
1645
+ max-width: 50%;
1646
+ }
1647
+
1648
+ .w3eden .row-cols-xl-3 > * {
1649
+ -ms-flex: 0 0 33.333333%;
1650
+ flex: 0 0 33.333333%;
1651
+ max-width: 33.333333%;
1652
+ }
1653
+
1654
+ .w3eden .row-cols-xl-4 > * {
1655
+ -ms-flex: 0 0 25%;
1656
+ flex: 0 0 25%;
1657
+ max-width: 25%;
1658
+ }
1659
+
1660
+ .w3eden .row-cols-xl-5 > * {
1661
+ -ms-flex: 0 0 20%;
1662
+ flex: 0 0 20%;
1663
+ max-width: 20%;
1664
+ }
1665
+
1666
+ .w3eden .row-cols-xl-6 > * {
1667
+ -ms-flex: 0 0 16.666667%;
1668
+ flex: 0 0 16.666667%;
1669
+ max-width: 16.666667%;
1670
+ }
1671
+
1672
+ .w3eden .col-xl-auto {
1673
+ -ms-flex: 0 0 auto;
1674
+ flex: 0 0 auto;
1675
+ width: auto;
1676
+ max-width: 100%;
1677
+ }
1678
+
1679
+ .w3eden .col-xl-1 {
1680
+ -ms-flex: 0 0 8.333333%;
1681
+ flex: 0 0 8.333333%;
1682
+ max-width: 8.333333%;
1683
+ }
1684
+
1685
+ .w3eden .col-xl-2 {
1686
+ -ms-flex: 0 0 16.666667%;
1687
+ flex: 0 0 16.666667%;
1688
+ max-width: 16.666667%;
1689
+ }
1690
+
1691
+ .w3eden .col-xl-3 {
1692
+ -ms-flex: 0 0 25%;
1693
+ flex: 0 0 25%;
1694
+ max-width: 25%;
1695
+ }
1696
+
1697
+ .w3eden .col-xl-4 {
1698
+ -ms-flex: 0 0 33.333333%;
1699
+ flex: 0 0 33.333333%;
1700
+ max-width: 33.333333%;
1701
+ }
1702
+
1703
+ .w3eden .col-xl-5 {
1704
+ -ms-flex: 0 0 41.666667%;
1705
+ flex: 0 0 41.666667%;
1706
+ max-width: 41.666667%;
1707
+ }
1708
+
1709
+ .w3eden .col-xl-6 {
1710
+ -ms-flex: 0 0 50%;
1711
+ flex: 0 0 50%;
1712
+ max-width: 50%;
1713
+ }
1714
+
1715
+ .w3eden .col-xl-7 {
1716
+ -ms-flex: 0 0 58.333333%;
1717
+ flex: 0 0 58.333333%;
1718
+ max-width: 58.333333%;
1719
+ }
1720
+
1721
+ .w3eden .col-xl-8 {
1722
+ -ms-flex: 0 0 66.666667%;
1723
+ flex: 0 0 66.666667%;
1724
+ max-width: 66.666667%;
1725
+ }
1726
+
1727
+ .w3eden .col-xl-9 {
1728
+ -ms-flex: 0 0 75%;
1729
+ flex: 0 0 75%;
1730
+ max-width: 75%;
1731
+ }
1732
+
1733
+ .w3eden .col-xl-10 {
1734
+ -ms-flex: 0 0 83.333333%;
1735
+ flex: 0 0 83.333333%;
1736
+ max-width: 83.333333%;
1737
+ }
1738
+
1739
+ .w3eden .col-xl-11 {
1740
+ -ms-flex: 0 0 91.666667%;
1741
+ flex: 0 0 91.666667%;
1742
+ max-width: 91.666667%;
1743
+ }
1744
+
1745
+ .w3eden .col-xl-12 {
1746
+ -ms-flex: 0 0 100%;
1747
+ flex: 0 0 100%;
1748
+ max-width: 100%;
1749
+ }
1750
+
1751
+ .w3eden .order-xl-first {
1752
+ -ms-flex-order: -1;
1753
+ order: -1;
1754
+ }
1755
+
1756
+ .w3eden .order-xl-last {
1757
+ -ms-flex-order: 13;
1758
+ order: 13;
1759
+ }
1760
+
1761
+ .w3eden .order-xl-0 {
1762
+ -ms-flex-order: 0;
1763
+ order: 0;
1764
+ }
1765
+
1766
+ .w3eden .order-xl-1 {
1767
+ -ms-flex-order: 1;
1768
+ order: 1;
1769
+ }
1770
+
1771
+ .w3eden .order-xl-2 {
1772
+ -ms-flex-order: 2;
1773
+ order: 2;
1774
+ }
1775
+
1776
+ .w3eden .order-xl-3 {
1777
+ -ms-flex-order: 3;
1778
+ order: 3;
1779
+ }
1780
+
1781
+ .w3eden .order-xl-4 {
1782
+ -ms-flex-order: 4;
1783
+ order: 4;
1784
+ }
1785
+
1786
+ .w3eden .order-xl-5 {
1787
+ -ms-flex-order: 5;
1788
+ order: 5;
1789
+ }
1790
+
1791
+ .w3eden .order-xl-6 {
1792
+ -ms-flex-order: 6;
1793
+ order: 6;
1794
+ }
1795
+
1796
+ .w3eden .order-xl-7 {
1797
+ -ms-flex-order: 7;
1798
+ order: 7;
1799
+ }
1800
+
1801
+ .w3eden .order-xl-8 {
1802
+ -ms-flex-order: 8;
1803
+ order: 8;
1804
+ }
1805
+
1806
+ .w3eden .order-xl-9 {
1807
+ -ms-flex-order: 9;
1808
+ order: 9;
1809
+ }
1810
+
1811
+ .w3eden .order-xl-10 {
1812
+ -ms-flex-order: 10;
1813
+ order: 10;
1814
+ }
1815
+
1816
+ .w3eden .order-xl-11 {
1817
+ -ms-flex-order: 11;
1818
+ order: 11;
1819
+ }
1820
+
1821
+ .w3eden .order-xl-12 {
1822
+ -ms-flex-order: 12;
1823
+ order: 12;
1824
+ }
1825
+
1826
+ .w3eden .offset-xl-0 {
1827
+ margin-left: 0;
1828
+ }
1829
+
1830
+ .w3eden .offset-xl-1 {
1831
+ margin-left: 8.333333%;
1832
+ }
1833
+
1834
+ .w3eden .offset-xl-2 {
1835
+ margin-left: 16.666667%;
1836
+ }
1837
+
1838
+ .w3eden .offset-xl-3 {
1839
+ margin-left: 25%;
1840
+ }
1841
+
1842
+ .w3eden .offset-xl-4 {
1843
+ margin-left: 33.333333%;
1844
+ }
1845
+
1846
+ .w3eden .offset-xl-5 {
1847
+ margin-left: 41.666667%;
1848
+ }
1849
+
1850
+ .w3eden .offset-xl-6 {
1851
+ margin-left: 50%;
1852
+ }
1853
+
1854
+ .w3eden .offset-xl-7 {
1855
+ margin-left: 58.333333%;
1856
+ }
1857
+
1858
+ .w3eden .offset-xl-8 {
1859
+ margin-left: 66.666667%;
1860
+ }
1861
+
1862
+ .w3eden .offset-xl-9 {
1863
+ margin-left: 75%;
1864
+ }
1865
+
1866
+ .w3eden .offset-xl-10 {
1867
+ margin-left: 83.333333%;
1868
+ }
1869
+
1870
+ .w3eden .offset-xl-11 {
1871
+ margin-left: 91.666667%;
1872
+ }
1873
+ }
1874
+
1875
+ .w3eden .table {
1876
+ width: 100%;
1877
+ margin-bottom: 1rem;
1878
+ color: #212529;
1879
+ }
1880
+
1881
+ .w3eden .table th,
1882
+ .w3eden .table td {
1883
+ padding: 0.75rem;
1884
+ vertical-align: top;
1885
+ border-top: 1px solid #dee2e6;
1886
+ }
1887
+
1888
+ .w3eden .table thead th {
1889
+ vertical-align: bottom;
1890
+ border-bottom: 2px solid #dee2e6;
1891
+ }
1892
+
1893
+ .w3eden .table tbody + tbody {
1894
+ border-top: 2px solid #dee2e6;
1895
+ }
1896
+
1897
+ .w3eden .table-sm th,
1898
+ .w3eden .table-sm td {
1899
+ padding: 0.3rem;
1900
+ }
1901
+
1902
+ .w3eden .table-bordered {
1903
+ border: 1px solid #dee2e6;
1904
+ }
1905
+
1906
+ .w3eden .table-bordered th,
1907
+ .w3eden .table-bordered td {
1908
+ border: 1px solid #dee2e6;
1909
+ }
1910
+
1911
+ .w3eden .table-bordered thead th,
1912
+ .w3eden .table-bordered thead td {
1913
+ border-bottom-width: 2px;
1914
+ }
1915
+
1916
+ .w3eden .table-borderless th,
1917
+ .w3eden .table-borderless td,
1918
+ .w3eden .table-borderless thead th,
1919
+ .w3eden .table-borderless tbody + tbody {
1920
+ border: 0;
1921
+ }
1922
+
1923
+ .w3eden .table-striped tbody tr:nth-of-type(odd) {
1924
+ background-color: rgba(0, 0, 0, 0.05);
1925
+ }
1926
+
1927
+ .w3eden .table-hover tbody tr:hover {
1928
+ color: #212529;
1929
+ background-color: rgba(0, 0, 0, 0.075);
1930
+ }
1931
+
1932
+ .w3eden .table-primary,
1933
+ .w3eden .table-primary > th,
1934
+ .w3eden .table-primary > td {
1935
+ background-color: #b8daff;
1936
+ }
1937
+
1938
+ .w3eden .table-primary th,
1939
+ .w3eden .table-primary td,
1940
+ .w3eden .table-primary thead th,
1941
+ .w3eden .table-primary tbody + tbody {
1942
+ border-color: #7abaff;
1943
+ }
1944
+
1945
+ .w3eden .table-hover .table-primary:hover {
1946
+ background-color: #9fcdff;
1947
+ }
1948
+
1949
+ .w3eden .table-hover .table-primary:hover > td,
1950
+ .w3eden .table-hover .table-primary:hover > th {
1951
+ background-color: #9fcdff;
1952
+ }
1953
+
1954
+ .w3eden .table-secondary,
1955
+ .w3eden .table-secondary > th,
1956
+ .w3eden .table-secondary > td {
1957
+ background-color: #d6d8db;
1958
+ }
1959
+
1960
+ .w3eden .table-secondary th,
1961
+ .w3eden .table-secondary td,
1962
+ .w3eden .table-secondary thead th,
1963
+ .w3eden .table-secondary tbody + tbody {
1964
+ border-color: #b3b7bb;
1965
+ }
1966
+
1967
+ .w3eden .table-hover .table-secondary:hover {
1968
+ background-color: #c8cbcf;
1969
+ }
1970
+
1971
+ .w3eden .table-hover .table-secondary:hover > td,
1972
+ .w3eden .table-hover .table-secondary:hover > th {
1973
+ background-color: #c8cbcf;
1974
+ }
1975
+
1976
+ .w3eden .table-success,
1977
+ .w3eden .table-success > th,
1978
+ .w3eden .table-success > td {
1979
+ background-color: #c3e6cb;
1980
+ }
1981
+
1982
+ .w3eden .table-success th,
1983
+ .w3eden .table-success td,
1984
+ .w3eden .table-success thead th,
1985
+ .w3eden .table-success tbody + tbody {
1986
+ border-color: #8fd19e;
1987
+ }
1988
+
1989
+ .w3eden .table-hover .table-success:hover {
1990
+ background-color: #b1dfbb;
1991
+ }
1992
+
1993
+ .w3eden .table-hover .table-success:hover > td,
1994
+ .w3eden .table-hover .table-success:hover > th {
1995
+ background-color: #b1dfbb;
1996
+ }
1997
+
1998
+ .w3eden .table-info,
1999
+ .w3eden .table-info > th,
2000
+ .w3eden .table-info > td {
2001
+ background-color: #bee5eb;
2002
+ }
2003
+
2004
+ .w3eden .table-info th,
2005
+ .w3eden .table-info td,
2006
+ .w3eden .table-info thead th,
2007
+ .w3eden .table-info tbody + tbody {
2008
+ border-color: #86cfda;
2009
+ }
2010
+
2011
+ .w3eden .table-hover .table-info:hover {
2012
+ background-color: #abdde5;
2013
+ }
2014
+
2015
+ .w3eden .table-hover .table-info:hover > td,
2016
+ .w3eden .table-hover .table-info:hover > th {
2017
+ background-color: #abdde5;
2018
+ }
2019
+
2020
+ .w3eden .table-warning,
2021
+ .w3eden .table-warning > th,
2022
+ .w3eden .table-warning > td {
2023
+ background-color: #ffeeba;
2024
+ }
2025
+
2026
+ .w3eden .table-warning th,
2027
+ .w3eden .table-warning td,
2028
+ .w3eden .table-warning thead th,
2029
+ .w3eden .table-warning tbody + tbody {
2030
+ border-color: #ffdf7e;
2031
+ }
2032
+
2033
+ .w3eden .table-hover .table-warning:hover {
2034
+ background-color: #ffe8a1;
2035
+ }
2036
+
2037
+ .w3eden .table-hover .table-warning:hover > td,
2038
+ .w3eden .table-hover .table-warning:hover > th {
2039
+ background-color: #ffe8a1;
2040
+ }
2041
+
2042
+ .w3eden .table-danger,
2043
+ .w3eden .table-danger > th,
2044
+ .w3eden .table-danger > td {
2045
+ background-color: #f5c6cb;
2046
+ }
2047
+
2048
+ .w3eden .table-danger th,
2049
+ .w3eden .table-danger td,
2050
+ .w3eden .table-danger thead th,
2051
+ .w3eden .table-danger tbody + tbody {
2052
+ border-color: #ed969e;
2053
+ }
2054
+
2055
+ .w3eden .table-hover .table-danger:hover {
2056
+ background-color: #f1b0b7;
2057
+ }
2058
+
2059
+ .w3eden .table-hover .table-danger:hover > td,
2060
+ .w3eden .table-hover .table-danger:hover > th {
2061
+ background-color: #f1b0b7;
2062
+ }
2063
+
2064
+ .w3eden .table-light,
2065
+ .w3eden .table-light > th,
2066
+ .w3eden .table-light > td {
2067
+ background-color: #fdfdfe;
2068
+ }
2069
+
2070
+ .w3eden .table-light th,
2071
+ .w3eden .table-light td,
2072
+ .w3eden .table-light thead th,
2073
+ .w3eden .table-light tbody + tbody {
2074
+ border-color: #fbfcfc;
2075
+ }
2076
+
2077
+ .w3eden .table-hover .table-light:hover {
2078
+ background-color: #ececf6;
2079
+ }
2080
+
2081
+ .w3eden .table-hover .table-light:hover > td,
2082
+ .w3eden .table-hover .table-light:hover > th {
2083
+ background-color: #ececf6;
2084
+ }
2085
+
2086
+ .w3eden .table-dark,
2087
+ .w3eden .table-dark > th,
2088
+ .w3eden .table-dark > td {
2089
+ background-color: #c6c8ca;
2090
+ }
2091
+
2092
+ .w3eden .table-dark th,
2093
+ .w3eden .table-dark td,
2094
+ .w3eden .table-dark thead th,
2095
+ .w3eden .table-dark tbody + tbody {
2096
+ border-color: #95999c;
2097
+ }
2098
+
2099
+ .w3eden .table-hover .table-dark:hover {
2100
+ background-color: #b9bbbe;
2101
+ }
2102
+
2103
+ .w3eden .table-hover .table-dark:hover > td,
2104
+ .w3eden .table-hover .table-dark:hover > th {
2105
+ background-color: #b9bbbe;
2106
+ }
2107
+
2108
+ .w3eden .table-active,
2109
+ .w3eden .table-active > th,
2110
+ .w3eden .table-active > td {
2111
+ background-color: rgba(0, 0, 0, 0.075);
2112
+ }
2113
+
2114
+ .w3eden .table-hover .table-active:hover {
2115
+ background-color: rgba(0, 0, 0, 0.075);
2116
+ }
2117
+
2118
+ .w3eden .table-hover .table-active:hover > td,
2119
+ .w3eden .table-hover .table-active:hover > th {
2120
+ background-color: rgba(0, 0, 0, 0.075);
2121
+ }
2122
+
2123
+ .w3eden .table .thead-dark th {
2124
+ color: #fff;
2125
+ background-color: #343a40;
2126
+ border-color: #454d55;
2127
+ }
2128
+
2129
+ .w3eden .table .thead-light th {
2130
+ color: #495057;
2131
+ background-color: #e9ecef;
2132
+ border-color: #dee2e6;
2133
+ }
2134
+
2135
+ .w3eden .table-dark {
2136
+ color: #fff;
2137
+ background-color: #343a40;
2138
+ }
2139
+
2140
+ .w3eden .table-dark th,
2141
+ .w3eden .table-dark td,
2142
+ .w3eden .table-dark thead th {
2143
+ border-color: #454d55;
2144
+ }
2145
+
2146
+ .w3eden .table-dark.table-bordered {
2147
+ border: 0;
2148
+ }
2149
+
2150
+ .w3eden .table-dark.table-striped tbody tr:nth-of-type(odd) {
2151
+ background-color: rgba(255, 255, 255, 0.05);
2152
+ }
2153
+
2154
+ .w3eden .table-dark.table-hover tbody tr:hover {
2155
+ color: #fff;
2156
+ background-color: rgba(255, 255, 255, 0.075);
2157
+ }
2158
+
2159
+ @media (max-width: 575.98px) {
2160
+ .w3eden .table-responsive-sm {
2161
+ display: block;
2162
+ width: 100%;
2163
+ overflow-x: auto;
2164
+ -webkit-overflow-scrolling: touch;
2165
+ }
2166
+
2167
+ .w3eden .table-responsive-sm > .table-bordered {
2168
+ border: 0;
2169
+ }
2170
+ }
2171
+
2172
+ @media (max-width: 767.98px) {
2173
+ .w3eden .table-responsive-md {
2174
+ display: block;
2175
+ width: 100%;
2176
+ overflow-x: auto;
2177
+ -webkit-overflow-scrolling: touch;
2178
+ }
2179
+
2180
+ .w3eden .table-responsive-md > .table-bordered {
2181
+ border: 0;
2182
+ }
2183
+ }
2184
+
2185
+ @media (max-width: 991.98px) {
2186
+ .w3eden .table-responsive-lg {
2187
+ display: block;
2188
+ width: 100%;
2189
+ overflow-x: auto;
2190
+ -webkit-overflow-scrolling: touch;
2191
+ }
2192
+
2193
+ .w3eden .table-responsive-lg > .table-bordered {
2194
+ border: 0;
2195
+ }
2196
+ }
2197
+
2198
+ @media (max-width: 1199.98px) {
2199
+ .w3eden .table-responsive-xl {
2200
+ display: block;
2201
+ width: 100%;
2202
+ overflow-x: auto;
2203
+ -webkit-overflow-scrolling: touch;
2204
+ }
2205
+
2206
+ .w3eden .table-responsive-xl > .table-bordered {
2207
+ border: 0;
2208
+ }
2209
+ }
2210
+
2211
+ .w3eden .table-responsive {
2212
+ display: block;
2213
+ width: 100%;
2214
+ overflow-x: auto;
2215
+ -webkit-overflow-scrolling: touch;
2216
+ }
2217
+
2218
+ .w3eden .table-responsive > .table-bordered {
2219
+ border: 0;
2220
+ }
2221
+
2222
+ .w3eden .form-control {
2223
+ display: block;
2224
+ width: 100%;
2225
+ height: calc(1.5em + 0.75rem + 2px);
2226
+ padding: 0.375rem 0.75rem;
2227
+ font-size: 1rem;
2228
+ font-weight: 400;
2229
+ line-height: 1.5;
2230
+ color: #495057;
2231
+ background-color: #fff;
2232
+ background-clip: padding-box;
2233
+ border: 1px solid #ced4da;
2234
+ border-radius: 0.25rem;
2235
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2236
+ }
2237
+
2238
+ @media (prefers-reduced-motion: reduce) {
2239
+ .w3eden .form-control {
2240
+ transition: none;
2241
+ }
2242
+ }
2243
+
2244
+ .w3eden .form-control::-ms-expand {
2245
+ background-color: transparent;
2246
+ border: 0;
2247
+ }
2248
+
2249
+ .w3eden .form-control:-moz-focusring {
2250
+ color: transparent;
2251
+ text-shadow: 0 0 0 #495057;
2252
+ }
2253
+
2254
+ .w3eden .form-control:focus {
2255
+ color: #495057;
2256
+ background-color: #fff;
2257
+ border-color: #80bdff;
2258
+ outline: 0;
2259
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
2260
+ }
2261
+
2262
+ .w3eden .form-control::-webkit-input-placeholder {
2263
+ color: #6c757d;
2264
+ opacity: 1;
2265
+ }
2266
+
2267
+ .w3eden .form-control::-moz-placeholder {
2268
+ color: #6c757d;
2269
+ opacity: 1;
2270
+ }
2271
+
2272
+ .w3eden .form-control:-ms-input-placeholder {
2273
+ color: #6c757d;
2274
+ opacity: 1;
2275
+ }
2276
+
2277
+ .w3eden .form-control::-ms-input-placeholder {
2278
+ color: #6c757d;
2279
+ opacity: 1;
2280
+ }
2281
+
2282
+ .w3eden .form-control::placeholder {
2283
+ color: #6c757d;
2284
+ opacity: 1;
2285
+ }
2286
+
2287
+ .w3eden .form-control:disabled, .w3eden .form-control[readonly] {
2288
+ background-color: #e9ecef;
2289
+ opacity: 1;
2290
+ }
2291
+
2292
+ .w3eden select.form-control:focus::-ms-value {
2293
+ color: #495057;
2294
+ background-color: #fff;
2295
+ }
2296
+
2297
+ .w3eden .form-control-file,
2298
+ .w3eden .form-control-range {
2299
+ display: block;
2300
+ width: 100%;
2301
+ }
2302
+
2303
+ .w3eden .col-form-label {
2304
+ padding-top: calc(0.375rem + 1px);
2305
+ padding-bottom: calc(0.375rem + 1px);
2306
+ margin-bottom: 0;
2307
+ font-size: inherit;
2308
+ line-height: 1.5;
2309
+ }
2310
+
2311
+ .w3eden .col-form-label-lg {
2312
+ padding-top: calc(0.5rem + 1px);
2313
+ padding-bottom: calc(0.5rem + 1px);
2314
+ font-size: 1.25rem;
2315
+ line-height: 1.5;
2316
+ }
2317
+
2318
+ .w3eden .col-form-label-sm {
2319
+ padding-top: calc(0.25rem + 1px);
2320
+ padding-bottom: calc(0.25rem + 1px);
2321
+ font-size: 0.875rem;
2322
+ line-height: 1.5;
2323
+ }
2324
+
2325
+ .w3eden .form-control-plaintext {
2326
+ display: block;
2327
+ width: 100%;
2328
+ padding: 0.375rem 0;
2329
+ margin-bottom: 0;
2330
+ font-size: 1rem;
2331
+ line-height: 1.5;
2332
+ color: #212529;
2333
+ background-color: transparent;
2334
+ border: solid transparent;
2335
+ border-width: 1px 0;
2336
+ }
2337
+
2338
+ .w3eden .form-control-plaintext.form-control-sm, .w3eden .form-control-plaintext.form-control-lg {
2339
+ padding-right: 0;
2340
+ padding-left: 0;
2341
+ }
2342
+
2343
+ .w3eden .form-control-sm {
2344
+ height: calc(1.5em + 0.5rem + 2px);
2345
+ padding: 0.25rem 0.5rem;
2346
+ font-size: 0.875rem;
2347
+ line-height: 1.5;
2348
+ border-radius: 0.2rem;
2349
+ }
2350
+
2351
+ .w3eden .form-control-lg {
2352
+ height: calc(1.5em + 1rem + 2px);
2353
+ padding: 0.5rem 1rem;
2354
+ font-size: 1.25rem;
2355
+ line-height: 1.5;
2356
+ border-radius: 0.3rem;
2357
+ }
2358
+
2359
+ .w3eden select.form-control[size], .w3eden select.form-control[multiple] {
2360
+ height: auto;
2361
+ }
2362
+
2363
+ .w3eden textarea.form-control {
2364
+ height: auto;
2365
+ }
2366
+
2367
+ .w3eden .form-group {
2368
+ margin-bottom: 1rem;
2369
+ }
2370
+
2371
+ .w3eden .form-text {
2372
+ display: block;
2373
+ margin-top: 0.25rem;
2374
+ }
2375
+
2376
+ .w3eden .form-row {
2377
+ display: -ms-flexbox;
2378
+ display: flex;
2379
+ -ms-flex-wrap: wrap;
2380
+ flex-wrap: wrap;
2381
+ margin-right: -5px;
2382
+ margin-left: -5px;
2383
+ }
2384
+
2385
+ .w3eden .form-row > .col,
2386
+ .w3eden .form-row > [class*="col-"] {
2387
+ padding-right: 5px;
2388
+ padding-left: 5px;
2389
+ }
2390
+
2391
+ .w3eden .form-check {
2392
+ position: relative;
2393
+ display: block;
2394
+ padding-left: 1.25rem;
2395
+ }
2396
+
2397
+ .w3eden .form-check-input {
2398
+ position: absolute;
2399
+ margin-top: 0.3rem;
2400
+ margin-left: -1.25rem;
2401
+ }
2402
+
2403
+ .w3eden .form-check-input[disabled] ~ .form-check-label,
2404
+ .w3eden .form-check-input:disabled ~ .form-check-label {
2405
+ color: #6c757d;
2406
+ }
2407
+
2408
+ .w3eden .form-check-label {
2409
+ margin-bottom: 0;
2410
+ }
2411
+
2412
+ .w3eden .form-check-inline {
2413
+ display: -ms-inline-flexbox;
2414
+ display: inline-flex;
2415
+ -ms-flex-align: center;
2416
+ align-items: center;
2417
+ padding-left: 0;
2418
+ margin-right: 0.75rem;
2419
+ }
2420
+
2421
+ .w3eden .form-check-inline .form-check-input {
2422
+ position: static;
2423
+ margin-top: 0;
2424
+ margin-right: 0.3125rem;
2425
+ margin-left: 0;
2426
+ }
2427
+
2428
+ .w3eden .valid-feedback {
2429
+ display: none;
2430
+ width: 100%;
2431
+ margin-top: 0.25rem;
2432
+ font-size: 80%;
2433
+ color: #28a745;
2434
+ }
2435
+
2436
+ .w3eden .valid-tooltip {
2437
+ position: absolute;
2438
+ top: 100%;
2439
+ z-index: 5;
2440
+ display: none;
2441
+ max-width: 100%;
2442
+ padding: 0.25rem 0.5rem;
2443
+ margin-top: .1rem;
2444
+ font-size: 0.875rem;
2445
+ line-height: 1.5;
2446
+ color: #fff;
2447
+ background-color: rgba(40, 167, 69, 0.9);
2448
+ border-radius: 0.25rem;
2449
+ }
2450
+
2451
+ .w3eden .was-validated :valid ~ .valid-feedback,
2452
+ .w3eden .was-validated :valid ~ .valid-tooltip,
2453
+ .w3eden .is-valid ~ .valid-feedback,
2454
+ .w3eden .is-valid ~ .valid-tooltip {
2455
+ display: block;
2456
+ }
2457
+
2458
+ .w3eden .was-validated .form-control:valid, .w3eden .form-control.is-valid {
2459
+ border-color: #28a745;
2460
+ padding-right: calc(1.5em + 0.75rem);
2461
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
2462
+ background-repeat: no-repeat;
2463
+ background-position: right calc(0.375em + 0.1875rem) center;
2464
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2465
+ }
2466
+
2467
+ .w3eden .was-validated .form-control:valid:focus, .w3eden .form-control.is-valid:focus {
2468
+ border-color: #28a745;
2469
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2470
+ }
2471
+
2472
+ .w3eden .was-validated textarea.form-control:valid, .w3eden textarea.form-control.is-valid {
2473
+ padding-right: calc(1.5em + 0.75rem);
2474
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
2475
+ }
2476
+
2477
+ .w3eden .was-validated .custom-select:valid, .w3eden .custom-select.is-valid {
2478
+ border-color: #28a745;
2479
+ padding-right: calc(0.75em + 2.3125rem);
2480
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2481
+ }
2482
+
2483
+ .w3eden .was-validated .custom-select:valid:focus, .w3eden .custom-select.is-valid:focus {
2484
+ border-color: #28a745;
2485
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2486
+ }
2487
+
2488
+ .w3eden .was-validated .form-check-input:valid ~ .form-check-label, .w3eden .form-check-input.is-valid ~ .form-check-label {
2489
+ color: #28a745;
2490
+ }
2491
+
2492
+ .w3eden .was-validated .form-check-input:valid ~ .valid-feedback,
2493
+ .w3eden .was-validated .form-check-input:valid ~ .valid-tooltip, .w3eden .form-check-input.is-valid ~ .valid-feedback,
2494
+ .w3eden .form-check-input.is-valid ~ .valid-tooltip {
2495
+ display: block;
2496
+ }
2497
+
2498
+ .w3eden .was-validated .custom-control-input:valid ~ .custom-control-label, .w3eden .custom-control-input.is-valid ~ .custom-control-label {
2499
+ color: #28a745;
2500
+ }
2501
+
2502
+ .w3eden .was-validated .custom-control-input:valid ~ .custom-control-label::before, .w3eden .custom-control-input.is-valid ~ .custom-control-label::before {
2503
+ border-color: #28a745;
2504
+ }
2505
+
2506
+ .w3eden .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .w3eden .custom-control-input.is-valid:checked ~ .custom-control-label::before {
2507
+ border-color: #34ce57;
2508
+ background-color: #34ce57;
2509
+ }
2510
+
2511
+ .w3eden .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .w3eden .custom-control-input.is-valid:focus ~ .custom-control-label::before {
2512
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2513
+ }
2514
+
2515
+ .w3eden .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .w3eden .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
2516
+ border-color: #28a745;
2517
+ }
2518
+
2519
+ .w3eden .was-validated .custom-file-input:valid ~ .custom-file-label, .w3eden .custom-file-input.is-valid ~ .custom-file-label {
2520
+ border-color: #28a745;
2521
+ }
2522
+
2523
+ .w3eden .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .w3eden .custom-file-input.is-valid:focus ~ .custom-file-label {
2524
+ border-color: #28a745;
2525
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
2526
+ }
2527
+
2528
+ .w3eden .invalid-feedback {
2529
+ display: none;
2530
+ width: 100%;
2531
+ margin-top: 0.25rem;
2532
+ font-size: 80%;
2533
+ color: #dc3545;
2534
+ }
2535
+
2536
+ .w3eden .invalid-tooltip {
2537
+ position: absolute;
2538
+ top: 100%;
2539
+ z-index: 5;
2540
+ display: none;
2541
+ max-width: 100%;
2542
+ padding: 0.25rem 0.5rem;
2543
+ margin-top: .1rem;
2544
+ font-size: 0.875rem;
2545
+ line-height: 1.5;
2546
+ color: #fff;
2547
+ background-color: rgba(220, 53, 69, 0.9);
2548
+ border-radius: 0.25rem;
2549
+ }
2550
+
2551
+ .w3eden .was-validated :invalid ~ .invalid-feedback,
2552
+ .w3eden .was-validated :invalid ~ .invalid-tooltip,
2553
+ .w3eden .is-invalid ~ .invalid-feedback,
2554
+ .w3eden .is-invalid ~ .invalid-tooltip {
2555
+ display: block;
2556
+ }
2557
+
2558
+ .w3eden .was-validated .form-control:invalid, .w3eden .form-control.is-invalid {
2559
+ border-color: #dc3545;
2560
+ padding-right: calc(1.5em + 0.75rem);
2561
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
2562
+ background-repeat: no-repeat;
2563
+ background-position: right calc(0.375em + 0.1875rem) center;
2564
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2565
+ }
2566
+
2567
+ .w3eden .was-validated .form-control:invalid:focus, .w3eden .form-control.is-invalid:focus {
2568
+ border-color: #dc3545;
2569
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2570
+ }
2571
+
2572
+ .w3eden .was-validated textarea.form-control:invalid, .w3eden textarea.form-control.is-invalid {
2573
+ padding-right: calc(1.5em + 0.75rem);
2574
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
2575
+ }
2576
+
2577
+ .w3eden .was-validated .custom-select:invalid, .w3eden .custom-select.is-invalid {
2578
+ border-color: #dc3545;
2579
+ padding-right: calc(0.75em + 2.3125rem);
2580
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
2581
+ }
2582
+
2583
+ .w3eden .was-validated .custom-select:invalid:focus, .w3eden .custom-select.is-invalid:focus {
2584
+ border-color: #dc3545;
2585
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2586
+ }
2587
+
2588
+ .w3eden .was-validated .form-check-input:invalid ~ .form-check-label, .w3eden .form-check-input.is-invalid ~ .form-check-label {
2589
+ color: #dc3545;
2590
+ }
2591
+
2592
+ .w3eden .was-validated .form-check-input:invalid ~ .invalid-feedback,
2593
+ .w3eden .was-validated .form-check-input:invalid ~ .invalid-tooltip, .w3eden .form-check-input.is-invalid ~ .invalid-feedback,
2594
+ .w3eden .form-check-input.is-invalid ~ .invalid-tooltip {
2595
+ display: block;
2596
+ }
2597
+
2598
+ .w3eden .was-validated .custom-control-input:invalid ~ .custom-control-label, .w3eden .custom-control-input.is-invalid ~ .custom-control-label {
2599
+ color: #dc3545;
2600
+ }
2601
+
2602
+ .w3eden .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .w3eden .custom-control-input.is-invalid ~ .custom-control-label::before {
2603
+ border-color: #dc3545;
2604
+ }
2605
+
2606
+ .w3eden .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .w3eden .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
2607
+ border-color: #e4606d;
2608
+ background-color: #e4606d;
2609
+ }
2610
+
2611
+ .w3eden .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .w3eden .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
2612
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2613
+ }
2614
+
2615
+ .w3eden .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .w3eden .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
2616
+ border-color: #dc3545;
2617
+ }
2618
+
2619
+ .w3eden .was-validated .custom-file-input:invalid ~ .custom-file-label, .w3eden .custom-file-input.is-invalid ~ .custom-file-label {
2620
+ border-color: #dc3545;
2621
+ }
2622
+
2623
+ .w3eden .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .w3eden .custom-file-input.is-invalid:focus ~ .custom-file-label {
2624
+ border-color: #dc3545;
2625
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
2626
+ }
2627
+
2628
+ .w3eden .form-inline {
2629
+ display: -ms-flexbox;
2630
+ display: flex;
2631
+ -ms-flex-flow: row wrap;
2632
+ flex-flow: row wrap;
2633
+ -ms-flex-align: center;
2634
+ align-items: center;
2635
+ }
2636
+
2637
+ .w3eden .form-inline .form-check {
2638
+ width: 100%;
2639
+ }
2640
+
2641
+ @media (min-width: 576px) {
2642
+ .w3eden .form-inline label {
2643
+ display: -ms-flexbox;
2644
+ display: flex;
2645
+ -ms-flex-align: center;
2646
+ align-items: center;
2647
+ -ms-flex-pack: center;
2648
+ justify-content: center;
2649
+ margin-bottom: 0;
2650
+ }
2651
+
2652
+ .w3eden .form-inline .form-group {
2653
+ display: -ms-flexbox;
2654
+ display: flex;
2655
+ -ms-flex: 0 0 auto;
2656
+ flex: 0 0 auto;
2657
+ -ms-flex-flow: row wrap;
2658
+ flex-flow: row wrap;
2659
+ -ms-flex-align: center;
2660
+ align-items: center;
2661
+ margin-bottom: 0;
2662
+ }
2663
+
2664
+ .w3eden .form-inline .form-control {
2665
+ display: inline-block;
2666
+ width: auto;
2667
+ vertical-align: middle;
2668
+ }
2669
+
2670
+ .w3eden .form-inline .form-control-plaintext {
2671
+ display: inline-block;
2672
+ }
2673
+
2674
+ .w3eden .form-inline .input-group,
2675
+ .w3eden .form-inline .custom-select {
2676
+ width: auto;
2677
+ }
2678
+
2679
+ .w3eden .form-inline .form-check {
2680
+ display: -ms-flexbox;
2681
+ display: flex;
2682
+ -ms-flex-align: center;
2683
+ align-items: center;
2684
+ -ms-flex-pack: center;
2685
+ justify-content: center;
2686
+ width: auto;
2687
+ padding-left: 0;
2688
+ }
2689
+
2690
+ .w3eden .form-inline .form-check-input {
2691
+ position: relative;
2692
+ -ms-flex-negative: 0;
2693
+ flex-shrink: 0;
2694
+ margin-top: 0;
2695
+ margin-right: 0.25rem;
2696
+ margin-left: 0;
2697
+ }
2698
+
2699
+ .w3eden .form-inline .custom-control {
2700
+ -ms-flex-align: center;
2701
+ align-items: center;
2702
+ -ms-flex-pack: center;
2703
+ justify-content: center;
2704
+ }
2705
+
2706
+ .w3eden .form-inline .custom-control-label {
2707
+ margin-bottom: 0;
2708
+ }
2709
+ }
2710
+
2711
+ .w3eden .btn {
2712
+ display: inline-block;
2713
+ font-weight: 400;
2714
+ color: #212529;
2715
+ text-align: center;
2716
+ vertical-align: middle;
2717
+ cursor: pointer;
2718
+ -webkit-user-select: none;
2719
+ -moz-user-select: none;
2720
+ -ms-user-select: none;
2721
+ user-select: none;
2722
+ background-color: transparent;
2723
+ border: 1px solid transparent;
2724
+ padding: 0.375rem 0.75rem;
2725
+ font-size: 1rem;
2726
+ line-height: 1.5;
2727
+ border-radius: 0.25rem;
2728
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2729
+ }
2730
+
2731
+ @media (prefers-reduced-motion: reduce) {
2732
+ .w3eden .btn {
2733
+ transition: none;
2734
+ }
2735
+ }
2736
+
2737
+ .w3eden .btn:hover {
2738
+ color: #212529;
2739
+ text-decoration: none;
2740
+ }
2741
+
2742
+ .w3eden .btn:focus, .w3eden .btn.focus {
2743
+ outline: 0;
2744
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
2745
+ }
2746
+
2747
+ .w3eden .btn.disabled, .w3eden .btn:disabled {
2748
+ opacity: 0.65;
2749
+ }
2750
+
2751
+ .w3eden a.btn.disabled,
2752
+ .w3eden fieldset:disabled a.btn {
2753
+ pointer-events: none;
2754
+ }
2755
+
2756
+ .w3eden .btn-primary {
2757
+ color: #fff;
2758
+ background-color: #007bff;
2759
+ border-color: #007bff;
2760
+ }
2761
+
2762
+ .w3eden .btn-primary:hover {
2763
+ color: #fff;
2764
+ background-color: #0069d9;
2765
+ border-color: #0062cc;
2766
+ }
2767
+
2768
+ .w3eden .btn-primary:focus, .w3eden .btn-primary.focus {
2769
+ color: #fff;
2770
+ background-color: #0069d9;
2771
+ border-color: #0062cc;
2772
+ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
2773
+ }
2774
+
2775
+ .w3eden .btn-primary.disabled, .w3eden .btn-primary:disabled {
2776
+ color: #fff;
2777
+ background-color: #007bff;
2778
+ border-color: #007bff;
2779
+ }
2780
+
2781
+ .w3eden .btn-primary:not(:disabled):not(.disabled):active, .w3eden .btn-primary:not(:disabled):not(.disabled).active,
2782
+ .w3eden .show > .btn-primary.dropdown-toggle {
2783
+ color: #fff;
2784
+ background-color: #0062cc;
2785
+ border-color: #005cbf;
2786
+ }
2787
+
2788
+ .w3eden .btn-primary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-primary:not(:disabled):not(.disabled).active:focus,
2789
+ .w3eden .show > .btn-primary.dropdown-toggle:focus {
2790
+ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
2791
+ }
2792
+
2793
+ .w3eden .btn-secondary {
2794
+ color: #fff;
2795
+ background-color: #6c757d;
2796
+ border-color: #6c757d;
2797
+ }
2798
+
2799
+ .w3eden .btn-secondary:hover {
2800
+ color: #fff;
2801
+ background-color: #5a6268;
2802
+ border-color: #545b62;
2803
+ }
2804
+
2805
+ .w3eden .btn-secondary:focus, .w3eden .btn-secondary.focus {
2806
+ color: #fff;
2807
+ background-color: #5a6268;
2808
+ border-color: #545b62;
2809
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
2810
+ }
2811
+
2812
+ .w3eden .btn-secondary.disabled, .w3eden .btn-secondary:disabled {
2813
+ color: #fff;
2814
+ background-color: #6c757d;
2815
+ border-color: #6c757d;
2816
+ }
2817
+
2818
+ .w3eden .btn-secondary:not(:disabled):not(.disabled):active, .w3eden .btn-secondary:not(:disabled):not(.disabled).active,
2819
+ .w3eden .show > .btn-secondary.dropdown-toggle {
2820
+ color: #fff;
2821
+ background-color: #545b62;
2822
+ border-color: #4e555b;
2823
+ }
2824
+
2825
+ .w3eden .btn-secondary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-secondary:not(:disabled):not(.disabled).active:focus,
2826
+ .w3eden .show > .btn-secondary.dropdown-toggle:focus {
2827
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
2828
+ }
2829
+
2830
+ .w3eden .btn-success {
2831
+ color: #fff;
2832
+ background-color: #28a745;
2833
+ border-color: #28a745;
2834
+ }
2835
+
2836
+ .w3eden .btn-success:hover {
2837
+ color: #fff;
2838
+ background-color: #218838;
2839
+ border-color: #1e7e34;
2840
+ }
2841
+
2842
+ .w3eden .btn-success:focus, .w3eden .btn-success.focus {
2843
+ color: #fff;
2844
+ background-color: #218838;
2845
+ border-color: #1e7e34;
2846
+ box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
2847
+ }
2848
+
2849
+ .w3eden .btn-success.disabled, .w3eden .btn-success:disabled {
2850
+ color: #fff;
2851
+ background-color: #28a745;
2852
+ border-color: #28a745;
2853
+ }
2854
+
2855
+ .w3eden .btn-success:not(:disabled):not(.disabled):active, .w3eden .btn-success:not(:disabled):not(.disabled).active,
2856
+ .w3eden .show > .btn-success.dropdown-toggle {
2857
+ color: #fff;
2858
+ background-color: #1e7e34;
2859
+ border-color: #1c7430;
2860
+ }
2861
+
2862
+ .w3eden .btn-success:not(:disabled):not(.disabled):active:focus, .w3eden .btn-success:not(:disabled):not(.disabled).active:focus,
2863
+ .w3eden .show > .btn-success.dropdown-toggle:focus {
2864
+ box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
2865
+ }
2866
+
2867
+ .w3eden .btn-info {
2868
+ color: #fff;
2869
+ background-color: #17a2b8;
2870
+ border-color: #17a2b8;
2871
+ }
2872
+
2873
+ .w3eden .btn-info:hover {
2874
+ color: #fff;
2875
+ background-color: #138496;
2876
+ border-color: #117a8b;
2877
+ }
2878
+
2879
+ .w3eden .btn-info:focus, .w3eden .btn-info.focus {
2880
+ color: #fff;
2881
+ background-color: #138496;
2882
+ border-color: #117a8b;
2883
+ box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
2884
+ }
2885
+
2886
+ .w3eden .btn-info.disabled, .w3eden .btn-info:disabled {
2887
+ color: #fff;
2888
+ background-color: #17a2b8;
2889
+ border-color: #17a2b8;
2890
+ }
2891
+
2892
+ .w3eden .btn-info:not(:disabled):not(.disabled):active, .w3eden .btn-info:not(:disabled):not(.disabled).active,
2893
+ .w3eden .show > .btn-info.dropdown-toggle {
2894
+ color: #fff;
2895
+ background-color: #117a8b;
2896
+ border-color: #10707f;
2897
+ }
2898
+
2899
+ .w3eden .btn-info:not(:disabled):not(.disabled):active:focus, .w3eden .btn-info:not(:disabled):not(.disabled).active:focus,
2900
+ .w3eden .show > .btn-info.dropdown-toggle:focus {
2901
+ box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
2902
+ }
2903
+
2904
+ .w3eden .btn-warning {
2905
+ color: #212529;
2906
+ background-color: #ffc107;
2907
+ border-color: #ffc107;
2908
+ }
2909
+
2910
+ .w3eden .btn-warning:hover {
2911
+ color: #212529;
2912
+ background-color: #e0a800;
2913
+ border-color: #d39e00;
2914
+ }
2915
+
2916
+ .w3eden .btn-warning:focus, .w3eden .btn-warning.focus {
2917
+ color: #212529;
2918
+ background-color: #e0a800;
2919
+ border-color: #d39e00;
2920
+ box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
2921
+ }
2922
+
2923
+ .w3eden .btn-warning.disabled, .w3eden .btn-warning:disabled {
2924
+ color: #212529;
2925
+ background-color: #ffc107;
2926
+ border-color: #ffc107;
2927
+ }
2928
+
2929
+ .w3eden .btn-warning:not(:disabled):not(.disabled):active, .w3eden .btn-warning:not(:disabled):not(.disabled).active,
2930
+ .w3eden .show > .btn-warning.dropdown-toggle {
2931
+ color: #212529;
2932
+ background-color: #d39e00;
2933
+ border-color: #c69500;
2934
+ }
2935
+
2936
+ .w3eden .btn-warning:not(:disabled):not(.disabled):active:focus, .w3eden .btn-warning:not(:disabled):not(.disabled).active:focus,
2937
+ .w3eden .show > .btn-warning.dropdown-toggle:focus {
2938
+ box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
2939
+ }
2940
+
2941
+ .w3eden .btn-danger {
2942
+ color: #fff;
2943
+ background-color: #dc3545;
2944
+ border-color: #dc3545;
2945
+ }
2946
+
2947
+ .w3eden .btn-danger:hover {
2948
+ color: #fff;
2949
+ background-color: #c82333;
2950
+ border-color: #bd2130;
2951
+ }
2952
+
2953
+ .w3eden .btn-danger:focus, .w3eden .btn-danger.focus {
2954
+ color: #fff;
2955
+ background-color: #c82333;
2956
+ border-color: #bd2130;
2957
+ box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
2958
+ }
2959
+
2960
+ .w3eden .btn-danger.disabled, .w3eden .btn-danger:disabled {
2961
+ color: #fff;
2962
+ background-color: #dc3545;
2963
+ border-color: #dc3545;
2964
+ }
2965
+
2966
+ .w3eden .btn-danger:not(:disabled):not(.disabled):active, .w3eden .btn-danger:not(:disabled):not(.disabled).active,
2967
+ .w3eden .show > .btn-danger.dropdown-toggle {
2968
+ color: #fff;
2969
+ background-color: #bd2130;
2970
+ border-color: #b21f2d;
2971
+ }
2972
+
2973
+ .w3eden .btn-danger:not(:disabled):not(.disabled):active:focus, .w3eden .btn-danger:not(:disabled):not(.disabled).active:focus,
2974
+ .w3eden .show > .btn-danger.dropdown-toggle:focus {
2975
+ box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
2976
+ }
2977
+
2978
+ .w3eden .btn-light {
2979
+ color: #212529;
2980
+ background-color: #f8f9fa;
2981
+ border-color: #f8f9fa;
2982
+ }
2983
+
2984
+ .w3eden .btn-light:hover {
2985
+ color: #212529;
2986
+ background-color: #e2e6ea;
2987
+ border-color: #dae0e5;
2988
+ }
2989
+
2990
+ .w3eden .btn-light:focus, .w3eden .btn-light.focus {
2991
+ color: #212529;
2992
+ background-color: #e2e6ea;
2993
+ border-color: #dae0e5;
2994
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
2995
+ }
2996
+
2997
+ .w3eden .btn-light.disabled, .w3eden .btn-light:disabled {
2998
+ color: #212529;
2999
+ background-color: #f8f9fa;
3000
+ border-color: #f8f9fa;
3001
+ }
3002
+
3003
+ .w3eden .btn-light:not(:disabled):not(.disabled):active, .w3eden .btn-light:not(:disabled):not(.disabled).active,
3004
+ .w3eden .show > .btn-light.dropdown-toggle {
3005
+ color: #212529;
3006
+ background-color: #dae0e5;
3007
+ border-color: #d3d9df;
3008
+ }
3009
+
3010
+ .w3eden .btn-light:not(:disabled):not(.disabled):active:focus, .w3eden .btn-light:not(:disabled):not(.disabled).active:focus,
3011
+ .w3eden .show > .btn-light.dropdown-toggle:focus {
3012
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
3013
+ }
3014
+
3015
+ .w3eden .btn-dark {
3016
+ color: #fff;
3017
+ background-color: #343a40;
3018
+ border-color: #343a40;
3019
+ }
3020
+
3021
+ .w3eden .btn-dark:hover {
3022
+ color: #fff;
3023
+ background-color: #23272b;
3024
+ border-color: #1d2124;
3025
+ }
3026
+
3027
+ .w3eden .btn-dark:focus, .w3eden .btn-dark.focus {
3028
+ color: #fff;
3029
+ background-color: #23272b;
3030
+ border-color: #1d2124;
3031
+ box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
3032
+ }
3033
+
3034
+ .w3eden .btn-dark.disabled, .w3eden .btn-dark:disabled {
3035
+ color: #fff;
3036
+ background-color: #343a40;
3037
+ border-color: #343a40;
3038
+ }
3039
+
3040
+ .w3eden .btn-dark:not(:disabled):not(.disabled):active, .w3eden .btn-dark:not(:disabled):not(.disabled).active,
3041
+ .w3eden .show > .btn-dark.dropdown-toggle {
3042
+ color: #fff;
3043
+ background-color: #1d2124;
3044
+ border-color: #171a1d;
3045
+ }
3046
+
3047
+ .w3eden .btn-dark:not(:disabled):not(.disabled):active:focus, .w3eden .btn-dark:not(:disabled):not(.disabled).active:focus,
3048
+ .w3eden .show > .btn-dark.dropdown-toggle:focus {
3049
+ box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
3050
+ }
3051
+
3052
+ .w3eden .btn-outline-primary {
3053
+ color: #007bff;
3054
+ border-color: #007bff;
3055
+ }
3056
+
3057
+ .w3eden .btn-outline-primary:hover {
3058
+ color: #fff;
3059
+ background-color: #007bff;
3060
+ border-color: #007bff;
3061
+ }
3062
+
3063
+ .w3eden .btn-outline-primary:focus, .w3eden .btn-outline-primary.focus {
3064
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
3065
+ }
3066
+
3067
+ .w3eden .btn-outline-primary.disabled, .w3eden .btn-outline-primary:disabled {
3068
+ color: #007bff;
3069
+ background-color: transparent;
3070
+ }
3071
+
3072
+ .w3eden .btn-outline-primary:not(:disabled):not(.disabled):active, .w3eden .btn-outline-primary:not(:disabled):not(.disabled).active,
3073
+ .w3eden .show > .btn-outline-primary.dropdown-toggle {
3074
+ color: #fff;
3075
+ background-color: #007bff;
3076
+ border-color: #007bff;
3077
+ }
3078
+
3079
+ .w3eden .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
3080
+ .w3eden .show > .btn-outline-primary.dropdown-toggle:focus {
3081
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
3082
+ }
3083
+
3084
+ .w3eden .btn-outline-secondary {
3085
+ color: #6c757d;
3086
+ border-color: #6c757d;
3087
+ }
3088
+
3089
+ .w3eden .btn-outline-secondary:hover {
3090
+ color: #fff;
3091
+ background-color: #6c757d;
3092
+ border-color: #6c757d;
3093
+ }
3094
+
3095
+ .w3eden .btn-outline-secondary:focus, .w3eden .btn-outline-secondary.focus {
3096
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
3097
+ }
3098
+
3099
+ .w3eden .btn-outline-secondary.disabled, .w3eden .btn-outline-secondary:disabled {
3100
+ color: #6c757d;
3101
+ background-color: transparent;
3102
+ }
3103
+
3104
+ .w3eden .btn-outline-secondary:not(:disabled):not(.disabled):active, .w3eden .btn-outline-secondary:not(:disabled):not(.disabled).active,
3105
+ .w3eden .show > .btn-outline-secondary.dropdown-toggle {
3106
+ color: #fff;
3107
+ background-color: #6c757d;
3108
+ border-color: #6c757d;
3109
+ }
3110
+
3111
+ .w3eden .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
3112
+ .w3eden .show > .btn-outline-secondary.dropdown-toggle:focus {
3113
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
3114
+ }
3115
+
3116
+ .w3eden .btn-outline-success {
3117
+ color: #28a745;
3118
+ border-color: #28a745;
3119
+ }
3120
+
3121
+ .w3eden .btn-outline-success:hover {
3122
+ color: #fff;
3123
+ background-color: #28a745;
3124
+ border-color: #28a745;
3125
+ }
3126
+
3127
+ .w3eden .btn-outline-success:focus, .w3eden .btn-outline-success.focus {
3128
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
3129
+ }
3130
+
3131
+ .w3eden .btn-outline-success.disabled, .w3eden .btn-outline-success:disabled {
3132
+ color: #28a745;
3133
+ background-color: transparent;
3134
+ }
3135
+
3136
+ .w3eden .btn-outline-success:not(:disabled):not(.disabled):active, .w3eden .btn-outline-success:not(:disabled):not(.disabled).active,
3137
+ .w3eden .show > .btn-outline-success.dropdown-toggle {
3138
+ color: #fff;
3139
+ background-color: #28a745;
3140
+ border-color: #28a745;
3141
+ }
3142
+
3143
+ .w3eden .btn-outline-success:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-success:not(:disabled):not(.disabled).active:focus,
3144
+ .w3eden .show > .btn-outline-success.dropdown-toggle:focus {
3145
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
3146
+ }
3147
+
3148
+ .w3eden .btn-outline-info {
3149
+ color: #17a2b8;
3150
+ border-color: #17a2b8;
3151
+ }
3152
+
3153
+ .w3eden .btn-outline-info:hover {
3154
+ color: #fff;
3155
+ background-color: #17a2b8;
3156
+ border-color: #17a2b8;
3157
+ }
3158
+
3159
+ .w3eden .btn-outline-info:focus, .w3eden .btn-outline-info.focus {
3160
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
3161
+ }
3162
+
3163
+ .w3eden .btn-outline-info.disabled, .w3eden .btn-outline-info:disabled {
3164
+ color: #17a2b8;
3165
+ background-color: transparent;
3166
+ }
3167
+
3168
+ .w3eden .btn-outline-info:not(:disabled):not(.disabled):active, .w3eden .btn-outline-info:not(:disabled):not(.disabled).active,
3169
+ .w3eden .show > .btn-outline-info.dropdown-toggle {
3170
+ color: #fff;
3171
+ background-color: #17a2b8;
3172
+ border-color: #17a2b8;
3173
+ }
3174
+
3175
+ .w3eden .btn-outline-info:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-info:not(:disabled):not(.disabled).active:focus,
3176
+ .w3eden .show > .btn-outline-info.dropdown-toggle:focus {
3177
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
3178
+ }
3179
+
3180
+ .w3eden .btn-outline-warning {
3181
+ color: #ffc107;
3182
+ border-color: #ffc107;
3183
+ }
3184
+
3185
+ .w3eden .btn-outline-warning:hover {
3186
+ color: #212529;
3187
+ background-color: #ffc107;
3188
+ border-color: #ffc107;
3189
+ }
3190
+
3191
+ .w3eden .btn-outline-warning:focus, .w3eden .btn-outline-warning.focus {
3192
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
3193
+ }
3194
+
3195
+ .w3eden .btn-outline-warning.disabled, .w3eden .btn-outline-warning:disabled {
3196
+ color: #ffc107;
3197
+ background-color: transparent;
3198
+ }
3199
+
3200
+ .w3eden .btn-outline-warning:not(:disabled):not(.disabled):active, .w3eden .btn-outline-warning:not(:disabled):not(.disabled).active,
3201
+ .w3eden .show > .btn-outline-warning.dropdown-toggle {
3202
+ color: #212529;
3203
+ background-color: #ffc107;
3204
+ border-color: #ffc107;
3205
+ }
3206
+
3207
+ .w3eden .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
3208
+ .w3eden .show > .btn-outline-warning.dropdown-toggle:focus {
3209
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
3210
+ }
3211
+
3212
+ .w3eden .btn-outline-danger {
3213
+ color: #dc3545;
3214
+ border-color: #dc3545;
3215
+ }
3216
+
3217
+ .w3eden .btn-outline-danger:hover {
3218
+ color: #fff;
3219
+ background-color: #dc3545;
3220
+ border-color: #dc3545;
3221
+ }
3222
+
3223
+ .w3eden .btn-outline-danger:focus, .w3eden .btn-outline-danger.focus {
3224
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
3225
+ }
3226
+
3227
+ .w3eden .btn-outline-danger.disabled, .w3eden .btn-outline-danger:disabled {
3228
+ color: #dc3545;
3229
+ background-color: transparent;
3230
+ }
3231
+
3232
+ .w3eden .btn-outline-danger:not(:disabled):not(.disabled):active, .w3eden .btn-outline-danger:not(:disabled):not(.disabled).active,
3233
+ .w3eden .show > .btn-outline-danger.dropdown-toggle {
3234
+ color: #fff;
3235
+ background-color: #dc3545;
3236
+ border-color: #dc3545;
3237
+ }
3238
+
3239
+ .w3eden .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
3240
+ .w3eden .show > .btn-outline-danger.dropdown-toggle:focus {
3241
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
3242
+ }
3243
+
3244
+ .w3eden .btn-outline-light {
3245
+ color: #f8f9fa;
3246
+ border-color: #f8f9fa;
3247
+ }
3248
+
3249
+ .w3eden .btn-outline-light:hover {
3250
+ color: #212529;
3251
+ background-color: #f8f9fa;
3252
+ border-color: #f8f9fa;
3253
+ }
3254
+
3255
+ .w3eden .btn-outline-light:focus, .w3eden .btn-outline-light.focus {
3256
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
3257
+ }
3258
+
3259
+ .w3eden .btn-outline-light.disabled, .w3eden .btn-outline-light:disabled {
3260
+ color: #f8f9fa;
3261
+ background-color: transparent;
3262
+ }
3263
+
3264
+ .w3eden .btn-outline-light:not(:disabled):not(.disabled):active, .w3eden .btn-outline-light:not(:disabled):not(.disabled).active,
3265
+ .w3eden .show > .btn-outline-light.dropdown-toggle {
3266
+ color: #212529;
3267
+ background-color: #f8f9fa;
3268
+ border-color: #f8f9fa;
3269
+ }
3270
+
3271
+ .w3eden .btn-outline-light:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-light:not(:disabled):not(.disabled).active:focus,
3272
+ .w3eden .show > .btn-outline-light.dropdown-toggle:focus {
3273
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
3274
+ }
3275
+
3276
+ .w3eden .btn-outline-dark {
3277
+ color: #343a40;
3278
+ border-color: #343a40;
3279
+ }
3280
+
3281
+ .w3eden .btn-outline-dark:hover {
3282
+ color: #fff;
3283
+ background-color: #343a40;
3284
+ border-color: #343a40;
3285
+ }
3286
+
3287
+ .w3eden .btn-outline-dark:focus, .w3eden .btn-outline-dark.focus {
3288
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
3289
+ }
3290
+
3291
+ .w3eden .btn-outline-dark.disabled, .w3eden .btn-outline-dark:disabled {
3292
+ color: #343a40;
3293
+ background-color: transparent;
3294
+ }
3295
+
3296
+ .w3eden .btn-outline-dark:not(:disabled):not(.disabled):active, .w3eden .btn-outline-dark:not(:disabled):not(.disabled).active,
3297
+ .w3eden .show > .btn-outline-dark.dropdown-toggle {
3298
+ color: #fff;
3299
+ background-color: #343a40;
3300
+ border-color: #343a40;
3301
+ }
3302
+
3303
+ .w3eden .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .w3eden .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
3304
+ .w3eden .show > .btn-outline-dark.dropdown-toggle:focus {
3305
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
3306
+ }
3307
+
3308
+ .w3eden .btn-link {
3309
+ font-weight: 400;
3310
+ color: #007bff;
3311
+ text-decoration: none;
3312
+ }
3313
+
3314
+ .w3eden .btn-link:hover {
3315
+ color: #0056b3;
3316
+ text-decoration: underline;
3317
+ }
3318
+
3319
+ .w3eden .btn-link:focus, .w3eden .btn-link.focus {
3320
+ text-decoration: underline;
3321
+ box-shadow: none;
3322
+ }
3323
+
3324
+ .w3eden .btn-link:disabled, .w3eden .btn-link.disabled {
3325
+ color: #6c757d;
3326
+ pointer-events: none;
3327
+ }
3328
+
3329
+ .w3eden .btn-lg, .w3eden .btn-group-lg > .btn {
3330
+ padding: 0.5rem 1rem;
3331
+ font-size: 1.25rem;
3332
+ line-height: 1.5;
3333
+ border-radius: 0.3rem;
3334
+ }
3335
+
3336
+ .w3eden .btn-sm, .w3eden .btn-group-sm > .btn {
3337
+ padding: 0.25rem 0.5rem;
3338
+ font-size: 0.875rem;
3339
+ line-height: 1.5;
3340
+ border-radius: 0.2rem;
3341
+ }
3342
+
3343
+ .w3eden .btn-block {
3344
+ display: block;
3345
+ width: 100%;
3346
+ }
3347
+
3348
+ .w3eden .btn-block + .btn-block {
3349
+ margin-top: 0.5rem;
3350
+ }
3351
+
3352
+ .w3eden input[type="submit"].btn-block,
3353
+ .w3eden input[type="reset"].btn-block,
3354
+ .w3eden input[type="button"].btn-block {
3355
+ width: 100%;
3356
+ }
3357
+
3358
+ .w3eden .fade {
3359
+ transition: opacity 0.15s linear;
3360
+ }
3361
+
3362
+ @media (prefers-reduced-motion: reduce) {
3363
+ .w3eden .fade {
3364
+ transition: none;
3365
+ }
3366
+ }
3367
+
3368
+ .w3eden .fade:not(.show) {
3369
+ opacity: 0;
3370
+ }
3371
+
3372
+ .w3eden .collapse:not(.show) {
3373
+ display: none;
3374
+ }
3375
+
3376
+ .w3eden .collapsing {
3377
+ position: relative;
3378
+ height: 0;
3379
+ overflow: hidden;
3380
+ transition: height 0.35s ease;
3381
+ }
3382
+
3383
+ @media (prefers-reduced-motion: reduce) {
3384
+ .w3eden .collapsing {
3385
+ transition: none;
3386
+ }
3387
+ }
3388
+
3389
+ .w3eden .dropup,
3390
+ .w3eden .dropright,
3391
+ .w3eden .dropdown,
3392
+ .w3eden .dropleft {
3393
+ position: relative;
3394
+ }
3395
+
3396
+ .w3eden .dropdown-toggle {
3397
+ white-space: nowrap;
3398
+ }
3399
+
3400
+ .w3eden .dropdown-toggle::after {
3401
+ display: inline-block;
3402
+ margin-left: 0.255em;
3403
+ vertical-align: 0.255em;
3404
+ content: "";
3405
+ border-top: 0.3em solid;
3406
+ border-right: 0.3em solid transparent;
3407
+ border-bottom: 0;
3408
+ border-left: 0.3em solid transparent;
3409
+ }
3410
+
3411
+ .w3eden .dropdown-toggle:empty::after {
3412
+ margin-left: 0;
3413
+ }
3414
+
3415
+ .w3eden .dropdown-menu {
3416
+ position: absolute;
3417
+ top: 100%;
3418
+ left: 0;
3419
+ z-index: 1000;
3420
+ display: none;
3421
+ float: left;
3422
+ min-width: 10rem;
3423
+ padding: 0.5rem 0;
3424
+ margin: 0.125rem 0 0;
3425
+ font-size: 1rem;
3426
+ color: #212529;
3427
+ text-align: left;
3428
+ list-style: none;
3429
+ background-color: #fff;
3430
+ background-clip: padding-box;
3431
+ border: 1px solid rgba(0, 0, 0, 0.15);
3432
+ border-radius: 0.25rem;
3433
+ }
3434
+
3435
+ .w3eden .dropdown-menu-left {
3436
+ right: auto;
3437
+ left: 0;
3438
+ }
3439
+
3440
+ .w3eden .dropdown-menu-right {
3441
+ right: 0;
3442
+ left: auto;
3443
+ }
3444
+
3445
+ @media (min-width: 576px) {
3446
+ .w3eden .dropdown-menu-sm-left {
3447
+ right: auto;
3448
+ left: 0;
3449
+ }
3450
+
3451
+ .w3eden .dropdown-menu-sm-right {
3452
+ right: 0;
3453
+ left: auto;
3454
+ }
3455
+ }
3456
+
3457
+ @media (min-width: 768px) {
3458
+ .w3eden .dropdown-menu-md-left {
3459
+ right: auto;
3460
+ left: 0;
3461
+ }
3462
+
3463
+ .w3eden .dropdown-menu-md-right {
3464
+ right: 0;
3465
+ left: auto;
3466
+ }
3467
+ }
3468
+
3469
+ @media (min-width: 992px) {
3470
+ .w3eden .dropdown-menu-lg-left {
3471
+ right: auto;
3472
+ left: 0;
3473
+ }
3474
+
3475
+ .w3eden .dropdown-menu-lg-right {
3476
+ right: 0;
3477
+ left: auto;
3478
+ }
3479
+ }
3480
+
3481
+ @media (min-width: 1200px) {
3482
+ .w3eden .dropdown-menu-xl-left {
3483
+ right: auto;
3484
+ left: 0;
3485
+ }
3486
+
3487
+ .w3eden .dropdown-menu-xl-right {
3488
+ right: 0;
3489
+ left: auto;
3490
+ }
3491
+ }
3492
+
3493
+ .w3eden .dropup .dropdown-menu {
3494
+ top: auto;
3495
+ bottom: 100%;
3496
+ margin-top: 0;
3497
+ margin-bottom: 0.125rem;
3498
+ }
3499
+
3500
+ .w3eden .dropup .dropdown-toggle::after {
3501
+ display: inline-block;
3502
+ margin-left: 0.255em;
3503
+ vertical-align: 0.255em;
3504
+ content: "";
3505
+ border-top: 0;
3506
+ border-right: 0.3em solid transparent;
3507
+ border-bottom: 0.3em solid;
3508
+ border-left: 0.3em solid transparent;
3509
+ }
3510
+
3511
+ .w3eden .dropup .dropdown-toggle:empty::after {
3512
+ margin-left: 0;
3513
+ }
3514
+
3515
+ .w3eden .dropright .dropdown-menu {
3516
+ top: 0;
3517
+ right: auto;
3518
+ left: 100%;
3519
+ margin-top: 0;
3520
+ margin-left: 0.125rem;
3521
+ }
3522
+
3523
+ .w3eden .dropright .dropdown-toggle::after {
3524
+ display: inline-block;
3525
+ margin-left: 0.255em;
3526
+ vertical-align: 0.255em;
3527
+ content: "";
3528
+ border-top: 0.3em solid transparent;
3529
+ border-right: 0;
3530
+ border-bottom: 0.3em solid transparent;
3531
+ border-left: 0.3em solid;
3532
+ }
3533
+
3534
+ .w3eden .dropright .dropdown-toggle:empty::after {
3535
+ margin-left: 0;
3536
+ }
3537
+
3538
+ .w3eden .dropright .dropdown-toggle::after {
3539
+ vertical-align: 0;
3540
+ }
3541
+
3542
+ .w3eden .dropleft .dropdown-menu {
3543
+ top: 0;
3544
+ right: 100%;
3545
+ left: auto;
3546
+ margin-top: 0;
3547
+ margin-right: 0.125rem;
3548
+ }
3549
+
3550
+ .w3eden .dropleft .dropdown-toggle::after {
3551
+ display: inline-block;
3552
+ margin-left: 0.255em;
3553
+ vertical-align: 0.255em;
3554
+ content: "";
3555
+ }
3556
+
3557
+ .w3eden .dropleft .dropdown-toggle::after {
3558
+ display: none;
3559
+ }
3560
+
3561
+ .w3eden .dropleft .dropdown-toggle::before {
3562
+ display: inline-block;
3563
+ margin-right: 0.255em;
3564
+ vertical-align: 0.255em;
3565
+ content: "";
3566
+ border-top: 0.3em solid transparent;
3567
+ border-right: 0.3em solid;
3568
+ border-bottom: 0.3em solid transparent;
3569
+ }
3570
+
3571
+ .w3eden .dropleft .dropdown-toggle:empty::after {
3572
+ margin-left: 0;
3573
+ }
3574
+
3575
+ .w3eden .dropleft .dropdown-toggle::before {
3576
+ vertical-align: 0;
3577
+ }
3578
+
3579
+ .w3eden .dropdown-menu[x-placement^="top"], .w3eden .dropdown-menu[x-placement^="right"], .w3eden .dropdown-menu[x-placement^="bottom"], .w3eden .dropdown-menu[x-placement^="left"] {
3580
+ right: auto;
3581
+ bottom: auto;
3582
+ }
3583
+
3584
+ .w3eden .dropdown-divider {
3585
+ height: 0;
3586
+ margin: 0.5rem 0;
3587
+ overflow: hidden;
3588
+ border-top: 1px solid #e9ecef;
3589
+ }
3590
+
3591
+ .w3eden .dropdown-item {
3592
+ display: block;
3593
+ width: 100%;
3594
+ padding: 0.25rem 1.5rem;
3595
+ clear: both;
3596
+ font-weight: 400;
3597
+ color: #212529;
3598
+ text-align: inherit;
3599
+ white-space: nowrap;
3600
+ background-color: transparent;
3601
+ border: 0;
3602
+ }
3603
+
3604
+ .w3eden .dropdown-item:hover, .w3eden .dropdown-item:focus {
3605
+ color: #16181b;
3606
+ text-decoration: none;
3607
+ background-color: #f8f9fa;
3608
+ }
3609
+
3610
+ .w3eden .dropdown-item.active, .w3eden .dropdown-item:active {
3611
+ color: #fff;
3612
+ text-decoration: none;
3613
+ background-color: #007bff;
3614
+ }
3615
+
3616
+ .w3eden .dropdown-item.disabled, .w3eden .dropdown-item:disabled {
3617
+ color: #6c757d;
3618
+ pointer-events: none;
3619
+ background-color: transparent;
3620
+ }
3621
+
3622
+ .w3eden .dropdown-menu.show {
3623
+ display: block;
3624
+ }
3625
+
3626
+ .w3eden .dropdown-header {
3627
+ display: block;
3628
+ padding: 0.5rem 1.5rem;
3629
+ margin-bottom: 0;
3630
+ font-size: 0.875rem;
3631
+ color: #6c757d;
3632
+ white-space: nowrap;
3633
+ }
3634
+
3635
+ .w3eden .dropdown-item-text {
3636
+ display: block;
3637
+ padding: 0.25rem 1.5rem;
3638
+ color: #212529;
3639
+ }
3640
+
3641
+ .w3eden .btn-group,
3642
+ .w3eden .btn-group-vertical {
3643
+ position: relative;
3644
+ display: -ms-inline-flexbox;
3645
+ display: inline-flex;
3646
+ vertical-align: middle;
3647
+ }
3648
+
3649
+ .w3eden .btn-group > .btn,
3650
+ .w3eden .btn-group-vertical > .btn {
3651
+ position: relative;
3652
+ -ms-flex: 1 1 auto;
3653
+ flex: 1 1 auto;
3654
+ }
3655
+
3656
+ .w3eden .btn-group > .btn:hover,
3657
+ .w3eden .btn-group-vertical > .btn:hover {
3658
+ z-index: 1;
3659
+ }
3660
+
3661
+ .w3eden .btn-group > .btn:focus, .w3eden .btn-group > .btn:active, .w3eden .btn-group > .btn.active,
3662
+ .w3eden .btn-group-vertical > .btn:focus,
3663
+ .w3eden .btn-group-vertical > .btn:active,
3664
+ .w3eden .btn-group-vertical > .btn.active {
3665
+ z-index: 1;
3666
+ }
3667
+
3668
+ .w3eden .btn-toolbar {
3669
+ display: -ms-flexbox;
3670
+ display: flex;
3671
+ -ms-flex-wrap: wrap;
3672
+ flex-wrap: wrap;
3673
+ -ms-flex-pack: start;
3674
+ justify-content: flex-start;
3675
+ }
3676
+
3677
+ .w3eden .btn-toolbar .input-group {
3678
+ width: auto;
3679
+ }
3680
+
3681
+ .w3eden .btn-group > .btn:not(:first-child),
3682
+ .w3eden .btn-group > .btn-group:not(:first-child) {
3683
+ margin-left: -1px;
3684
+ }
3685
+
3686
+ .w3eden .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
3687
+ .w3eden .btn-group > .btn-group:not(:last-child) > .btn {
3688
+ border-top-right-radius: 0;
3689
+ border-bottom-right-radius: 0;
3690
+ }
3691
+
3692
+ .w3eden .btn-group > .btn:not(:first-child),
3693
+ .w3eden .btn-group > .btn-group:not(:first-child) > .btn {
3694
+ border-top-left-radius: 0;
3695
+ border-bottom-left-radius: 0;
3696
+ }
3697
+
3698
+ .w3eden .dropdown-toggle-split {
3699
+ padding-right: 0.5625rem;
3700
+ padding-left: 0.5625rem;
3701
+ }
3702
+
3703
+ .w3eden .dropdown-toggle-split::after,
3704
+ .w3eden .dropup .dropdown-toggle-split::after,
3705
+ .w3eden .dropright .dropdown-toggle-split::after {
3706
+ margin-left: 0;
3707
+ }
3708
+
3709
+ .w3eden .dropleft .dropdown-toggle-split::before {
3710
+ margin-right: 0;
3711
+ }
3712
+
3713
+ .w3eden .btn-sm + .dropdown-toggle-split, .w3eden .btn-group-sm > .btn + .dropdown-toggle-split {
3714
+ padding-right: 0.375rem;
3715
+ padding-left: 0.375rem;
3716
+ }
3717
+
3718
+ .w3eden .btn-lg + .dropdown-toggle-split, .w3eden .btn-group-lg > .btn + .dropdown-toggle-split {
3719
+ padding-right: 0.75rem;
3720
+ padding-left: 0.75rem;
3721
+ }
3722
+
3723
+ .w3eden .btn-group-vertical {
3724
+ -ms-flex-direction: column;
3725
+ flex-direction: column;
3726
+ -ms-flex-align: start;
3727
+ align-items: flex-start;
3728
+ -ms-flex-pack: center;
3729
+ justify-content: center;
3730
+ }
3731
+
3732
+ .w3eden .btn-group-vertical > .btn,
3733
+ .w3eden .btn-group-vertical > .btn-group {
3734
+ width: 100%;
3735
+ }
3736
+
3737
+ .w3eden .btn-group-vertical > .btn:not(:first-child),
3738
+ .w3eden .btn-group-vertical > .btn-group:not(:first-child) {
3739
+ margin-top: -1px;
3740
+ }
3741
+
3742
+ .w3eden .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
3743
+ .w3eden .btn-group-vertical > .btn-group:not(:last-child) > .btn {
3744
+ border-bottom-right-radius: 0;
3745
+ border-bottom-left-radius: 0;
3746
+ }
3747
+
3748
+ .w3eden .btn-group-vertical > .btn:not(:first-child),
3749
+ .w3eden .btn-group-vertical > .btn-group:not(:first-child) > .btn {
3750
+ border-top-left-radius: 0;
3751
+ border-top-right-radius: 0;
3752
+ }
3753
+
3754
+ .w3eden .btn-group-toggle > .btn,
3755
+ .w3eden .btn-group-toggle > .btn-group > .btn {
3756
+ margin-bottom: 0;
3757
+ }
3758
+
3759
+ .w3eden .btn-group-toggle > .btn input[type="radio"],
3760
+ .w3eden .btn-group-toggle > .btn input[type="checkbox"],
3761
+ .w3eden .btn-group-toggle > .btn-group > .btn input[type="radio"],
3762
+ .w3eden .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
3763
+ position: absolute;
3764
+ clip: rect(0, 0, 0, 0);
3765
+ pointer-events: none;
3766
+ }
3767
+
3768
+ .w3eden .input-group {
3769
+ position: relative;
3770
+ display: -ms-flexbox;
3771
+ display: flex;
3772
+ -ms-flex-wrap: wrap;
3773
+ flex-wrap: wrap;
3774
+ -ms-flex-align: stretch;
3775
+ align-items: stretch;
3776
+ width: 100%;
3777
+ }
3778
+
3779
+ .w3eden .input-group > .form-control,
3780
+ .w3eden .input-group > .form-control-plaintext,
3781
+ .w3eden .input-group > .custom-select,
3782
+ .w3eden .input-group > .custom-file {
3783
+ position: relative;
3784
+ -ms-flex: 1 1 0%;
3785
+ flex: 1 1 0%;
3786
+ min-width: 0;
3787
+ margin-bottom: 0;
3788
+ }
3789
+
3790
+ .w3eden .input-group > .form-control + .form-control,
3791
+ .w3eden .input-group > .form-control + .custom-select,
3792
+ .w3eden .input-group > .form-control + .custom-file,
3793
+ .w3eden .input-group > .form-control-plaintext + .form-control,
3794
+ .w3eden .input-group > .form-control-plaintext + .custom-select,
3795
+ .w3eden .input-group > .form-control-plaintext + .custom-file,
3796
+ .w3eden .input-group > .custom-select + .form-control,
3797
+ .w3eden .input-group > .custom-select + .custom-select,
3798
+ .w3eden .input-group > .custom-select + .custom-file,
3799
+ .w3eden .input-group > .custom-file + .form-control,
3800
+ .w3eden .input-group > .custom-file + .custom-select,
3801
+ .w3eden .input-group > .custom-file + .custom-file {
3802
+ margin-left: -1px;
3803
+ }
3804
+
3805
+ .w3eden .input-group > .form-control:focus,
3806
+ .w3eden .input-group > .custom-select:focus,
3807
+ .w3eden .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
3808
+ z-index: 3;
3809
+ }
3810
+
3811
+ .w3eden .input-group > .custom-file .custom-file-input:focus {
3812
+ z-index: 4;
3813
+ }
3814
+
3815
+ .w3eden .input-group > .form-control:not(:last-child),
3816
+ .w3eden .input-group > .custom-select:not(:last-child) {
3817
+ border-top-right-radius: 0;
3818
+ border-bottom-right-radius: 0;
3819
+ }
3820
+
3821
+ .w3eden .input-group > .form-control:not(:first-child),
3822
+ .w3eden .input-group > .custom-select:not(:first-child) {
3823
+ border-top-left-radius: 0;
3824
+ border-bottom-left-radius: 0;
3825
+ }
3826
+
3827
+ .w3eden .input-group > .custom-file {
3828
+ display: -ms-flexbox;
3829
+ display: flex;
3830
+ -ms-flex-align: center;
3831
+ align-items: center;
3832
+ }
3833
+
3834
+ .w3eden .input-group > .custom-file:not(:last-child) .custom-file-label,
3835
+ .w3eden .input-group > .custom-file:not(:last-child) .custom-file-label::after {
3836
+ border-top-right-radius: 0;
3837
+ border-bottom-right-radius: 0;
3838
+ }
3839
+
3840
+ .w3eden .input-group > .custom-file:not(:first-child) .custom-file-label {
3841
+ border-top-left-radius: 0;
3842
+ border-bottom-left-radius: 0;
3843
+ }
3844
+
3845
+ .w3eden .input-group-prepend,
3846
+ .w3eden .input-group-append {
3847
+ display: -ms-flexbox;
3848
+ display: flex;
3849
+ }
3850
+
3851
+ .w3eden .input-group-prepend .btn,
3852
+ .w3eden .input-group-append .btn {
3853
+ position: relative;
3854
+ z-index: 2;
3855
+ }
3856
+
3857
+ .w3eden .input-group-prepend .btn:focus,
3858
+ .w3eden .input-group-append .btn:focus {
3859
+ z-index: 3;
3860
+ }
3861
+
3862
+ .w3eden .input-group-prepend .btn + .btn,
3863
+ .w3eden .input-group-prepend .btn + .input-group-text,
3864
+ .w3eden .input-group-prepend .input-group-text + .input-group-text,
3865
+ .w3eden .input-group-prepend .input-group-text + .btn,
3866
+ .w3eden .input-group-append .btn + .btn,
3867
+ .w3eden .input-group-append .btn + .input-group-text,
3868
+ .w3eden .input-group-append .input-group-text + .input-group-text,
3869
+ .w3eden .input-group-append .input-group-text + .btn {
3870
+ margin-left: -1px;
3871
+ }
3872
+
3873
+ .w3eden .input-group-prepend {
3874
+ margin-right: -1px;
3875
+ }
3876
+
3877
+ .w3eden .input-group-append {
3878
+ margin-left: -1px;
3879
+ }
3880
+
3881
+ .w3eden .input-group-text {
3882
+ display: -ms-flexbox;
3883
+ display: flex;
3884
+ -ms-flex-align: center;
3885
+ align-items: center;
3886
+ padding: 0.375rem 0.75rem;
3887
+ margin-bottom: 0;
3888
+ font-size: 1rem;
3889
+ font-weight: 400;
3890
+ line-height: 1.5;
3891
+ color: #495057;
3892
+ text-align: center;
3893
+ white-space: nowrap;
3894
+ background-color: #e9ecef;
3895
+ border: 1px solid #ced4da;
3896
+ border-radius: 0.25rem;
3897
+ }
3898
+
3899
+ .w3eden .input-group-text input[type="radio"],
3900
+ .w3eden .input-group-text input[type="checkbox"] {
3901
+ margin-top: 0;
3902
+ }
3903
+
3904
+ .w3eden .input-group-lg > .form-control:not(textarea),
3905
+ .w3eden .input-group-lg > .custom-select {
3906
+ height: calc(1.5em + 1rem + 2px);
3907
+ }
3908
+
3909
+ .w3eden .input-group-lg > .form-control,
3910
+ .w3eden .input-group-lg > .custom-select,
3911
+ .w3eden .input-group-lg > .input-group-prepend > .input-group-text,
3912
+ .w3eden .input-group-lg > .input-group-append > .input-group-text,
3913
+ .w3eden .input-group-lg > .input-group-prepend > .btn,
3914
+ .w3eden .input-group-lg > .input-group-append > .btn {
3915
+ padding: 0.5rem 1rem;
3916
+ font-size: 1.25rem;
3917
+ line-height: 1.5;
3918
+ border-radius: 0.3rem;
3919
+ }
3920
+
3921
+ .w3eden .input-group-sm > .form-control:not(textarea),
3922
+ .w3eden .input-group-sm > .custom-select {
3923
+ height: calc(1.5em + 0.5rem + 2px);
3924
+ }
3925
+
3926
+ .w3eden .input-group-sm > .form-control,
3927
+ .w3eden .input-group-sm > .custom-select,
3928
+ .w3eden .input-group-sm > .input-group-prepend > .input-group-text,
3929
+ .w3eden .input-group-sm > .input-group-append > .input-group-text,
3930
+ .w3eden .input-group-sm > .input-group-prepend > .btn,
3931
+ .w3eden .input-group-sm > .input-group-append > .btn {
3932
+ padding: 0.25rem 0.5rem;
3933
+ font-size: 0.875rem;
3934
+ line-height: 1.5;
3935
+ border-radius: 0.2rem;
3936
+ }
3937
+
3938
+ .w3eden .input-group-lg > .custom-select,
3939
+ .w3eden .input-group-sm > .custom-select {
3940
+ padding-right: 1.75rem;
3941
+ }
3942
+
3943
+ .w3eden .input-group > .input-group-prepend > .btn,
3944
+ .w3eden .input-group > .input-group-prepend > .input-group-text,
3945
+ .w3eden .input-group > .input-group-append:not(:last-child) > .btn,
3946
+ .w3eden .input-group > .input-group-append:not(:last-child) > .input-group-text,
3947
+ .w3eden .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3948
+ .w3eden .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
3949
+ border-top-right-radius: 0;
3950
+ border-bottom-right-radius: 0;
3951
+ }
3952
+
3953
+ .w3eden .input-group > .input-group-append > .btn,
3954
+ .w3eden .input-group > .input-group-append > .input-group-text,
3955
+ .w3eden .input-group > .input-group-prepend:not(:first-child) > .btn,
3956
+ .w3eden .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
3957
+ .w3eden .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
3958
+ .w3eden .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
3959
+ border-top-left-radius: 0;
3960
+ border-bottom-left-radius: 0;
3961
+ }
3962
+
3963
+ .w3eden .custom-control {
3964
+ position: relative;
3965
+ display: block;
3966
+ min-height: 1.5rem;
3967
+ padding-left: 1.5rem;
3968
+ }
3969
+
3970
+ .w3eden .custom-control-inline {
3971
+ display: -ms-inline-flexbox;
3972
+ display: inline-flex;
3973
+ margin-right: 1rem;
3974
+ }
3975
+
3976
+ .w3eden .custom-control-input {
3977
+ position: absolute;
3978
+ left: 0;
3979
+ z-index: -1;
3980
+ width: 1rem;
3981
+ height: 1.25rem;
3982
+ opacity: 0;
3983
+ }
3984
+
3985
+ .w3eden .custom-control-input:checked ~ .custom-control-label::before {
3986
+ color: #fff;
3987
+ border-color: #007bff;
3988
+ background-color: #007bff;
3989
+ }
3990
+
3991
+ .w3eden .custom-control-input:focus ~ .custom-control-label::before {
3992
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
3993
+ }
3994
+
3995
+ .w3eden .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
3996
+ border-color: #80bdff;
3997
+ }
3998
+
3999
+ .w3eden .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
4000
+ color: #fff;
4001
+ background-color: #b3d7ff;
4002
+ border-color: #b3d7ff;
4003
+ }
4004
+
4005
+ .w3eden .custom-control-input[disabled] ~ .custom-control-label, .w3eden .custom-control-input:disabled ~ .custom-control-label {
4006
+ color: #6c757d;
4007
+ }
4008
+
4009
+ .w3eden .custom-control-input[disabled] ~ .custom-control-label::before, .w3eden .custom-control-input:disabled ~ .custom-control-label::before {
4010
+ background-color: #e9ecef;
4011
+ }
4012
+
4013
+ .w3eden .custom-control-label {
4014
+ position: relative;
4015
+ margin-bottom: 0;
4016
+ vertical-align: top;
4017
+ }
4018
+
4019
+ .w3eden .custom-control-label::before {
4020
+ position: absolute;
4021
+ top: 0.25rem;
4022
+ left: -1.5rem;
4023
+ display: block;
4024
+ width: 1rem;
4025
+ height: 1rem;
4026
+ pointer-events: none;
4027
+ content: "";
4028
+ background-color: #fff;
4029
+ border: #adb5bd solid 1px;
4030
+ }
4031
+
4032
+ .w3eden .custom-control-label::after {
4033
+ position: absolute;
4034
+ top: 0.25rem;
4035
+ left: -1.5rem;
4036
+ display: block;
4037
+ width: 1rem;
4038
+ height: 1rem;
4039
+ content: "";
4040
+ background: no-repeat 50% / 50% 50%;
4041
+ }
4042
+
4043
+ .w3eden .custom-checkbox .custom-control-label::before {
4044
+ border-radius: 0.25rem;
4045
+ }
4046
+
4047
+ .w3eden .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
4048
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
4049
+ }
4050
+
4051
+ .w3eden .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
4052
+ border-color: #007bff;
4053
+ background-color: #007bff;
4054
+ }
4055
+
4056
+ .w3eden .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
4057
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
4058
+ }
4059
+
4060
+ .w3eden .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
4061
+ background-color: rgba(0, 123, 255, 0.5);
4062
+ }
4063
+
4064
+ .w3eden .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
4065
+ background-color: rgba(0, 123, 255, 0.5);
4066
+ }
4067
+
4068
+ .w3eden .custom-radio .custom-control-label::before {
4069
+ border-radius: 50%;
4070
+ }
4071
+
4072
+ .w3eden .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
4073
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
4074
+ }
4075
+
4076
+ .w3eden .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
4077
+ background-color: rgba(0, 123, 255, 0.5);
4078
+ }
4079
+
4080
+ .w3eden .custom-switch {
4081
+ padding-left: 2.25rem;
4082
+ }
4083
+
4084
+ .w3eden .custom-switch .custom-control-label::before {
4085
+ left: -2.25rem;
4086
+ width: 1.75rem;
4087
+ pointer-events: all;
4088
+ border-radius: 0.5rem;
4089
+ }
4090
+
4091
+ .w3eden .custom-switch .custom-control-label::after {
4092
+ top: calc(0.25rem + 2px);
4093
+ left: calc(-2.25rem + 2px);
4094
+ width: calc(1rem - 4px);
4095
+ height: calc(1rem - 4px);
4096
+ background-color: #adb5bd;
4097
+ border-radius: 0.5rem;
4098
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
4099
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4100
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
4101
+ }
4102
+
4103
+ @media (prefers-reduced-motion: reduce) {
4104
+ .w3eden .custom-switch .custom-control-label::after {
4105
+ transition: none;
4106
+ }
4107
+ }
4108
+
4109
+ .w3eden .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
4110
+ background-color: #fff;
4111
+ -webkit-transform: translateX(0.75rem);
4112
+ transform: translateX(0.75rem);
4113
+ }
4114
+
4115
+ .w3eden .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
4116
+ background-color: rgba(0, 123, 255, 0.5);
4117
+ }
4118
+
4119
+ .w3eden .custom-select {
4120
+ display: inline-block;
4121
+ width: 100%;
4122
+ height: calc(1.5em + 0.75rem + 2px);
4123
+ padding: 0.375rem 1.75rem 0.375rem 0.75rem;
4124
+ font-size: 1rem;
4125
+ font-weight: 400;
4126
+ line-height: 1.5;
4127
+ color: #495057;
4128
+ vertical-align: middle;
4129
+ background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
4130
+ border: 1px solid #ced4da;
4131
+ border-radius: 0.25rem;
4132
+ -webkit-appearance: none;
4133
+ -moz-appearance: none;
4134
+ appearance: none;
4135
+ }
4136
+
4137
+ .w3eden .custom-select:focus {
4138
+ border-color: #80bdff;
4139
+ outline: 0;
4140
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4141
+ }
4142
+
4143
+ .w3eden .custom-select:focus::-ms-value {
4144
+ color: #495057;
4145
+ background-color: #fff;
4146
+ }
4147
+
4148
+ .w3eden .custom-select[multiple], .w3eden .custom-select[size]:not([size="1"]) {
4149
+ height: auto;
4150
+ padding-right: 0.75rem;
4151
+ background-image: none;
4152
+ }
4153
+
4154
+ .w3eden .custom-select:disabled {
4155
+ color: #6c757d;
4156
+ background-color: #e9ecef;
4157
+ }
4158
+
4159
+ .w3eden .custom-select::-ms-expand {
4160
+ display: none;
4161
+ }
4162
+
4163
+ .w3eden .custom-select:-moz-focusring {
4164
+ color: transparent;
4165
+ text-shadow: 0 0 0 #495057;
4166
+ }
4167
+
4168
+ .w3eden .custom-select-sm {
4169
+ height: calc(1.5em + 0.5rem + 2px);
4170
+ padding-top: 0.25rem;
4171
+ padding-bottom: 0.25rem;
4172
+ padding-left: 0.5rem;
4173
+ font-size: 0.875rem;
4174
+ }
4175
+
4176
+ .w3eden .custom-select-lg {
4177
+ height: calc(1.5em + 1rem + 2px);
4178
+ padding-top: 0.5rem;
4179
+ padding-bottom: 0.5rem;
4180
+ padding-left: 1rem;
4181
+ font-size: 1.25rem;
4182
+ }
4183
+
4184
+ .w3eden .custom-file {
4185
+ position: relative;
4186
+ display: inline-block;
4187
+ width: 100%;
4188
+ height: calc(1.5em + 0.75rem + 2px);
4189
+ margin-bottom: 0;
4190
+ }
4191
+
4192
+ .w3eden .custom-file-input {
4193
+ position: relative;
4194
+ z-index: 2;
4195
+ width: 100%;
4196
+ height: calc(1.5em + 0.75rem + 2px);
4197
+ margin: 0;
4198
+ opacity: 0;
4199
+ }
4200
+
4201
+ .w3eden .custom-file-input:focus ~ .custom-file-label {
4202
+ border-color: #80bdff;
4203
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4204
+ }
4205
+
4206
+ .w3eden .custom-file-input[disabled] ~ .custom-file-label,
4207
+ .w3eden .custom-file-input:disabled ~ .custom-file-label {
4208
+ background-color: #e9ecef;
4209
+ }
4210
+
4211
+ .w3eden .custom-file-input:lang(en) ~ .custom-file-label::after {
4212
+ content: "Browse";
4213
+ }
4214
+
4215
+ .w3eden .custom-file-input ~ .custom-file-label[data-browse]::after {
4216
+ content: attr(data-browse);
4217
+ }
4218
+
4219
+ .w3eden .custom-file-label {
4220
+ position: absolute;
4221
+ top: 0;
4222
+ right: 0;
4223
+ left: 0;
4224
+ z-index: 1;
4225
+ height: calc(1.5em + 0.75rem + 2px);
4226
+ padding: 0.375rem 0.75rem;
4227
+ font-weight: 400;
4228
+ line-height: 1.5;
4229
+ color: #495057;
4230
+ background-color: #fff;
4231
+ border: 1px solid #ced4da;
4232
+ border-radius: 0.25rem;
4233
+ }
4234
+
4235
+ .w3eden .custom-file-label::after {
4236
+ position: absolute;
4237
+ top: 0;
4238
+ right: 0;
4239
+ bottom: 0;
4240
+ z-index: 3;
4241
+ display: block;
4242
+ height: calc(1.5em + 0.75rem);
4243
+ padding: 0.375rem 0.75rem;
4244
+ line-height: 1.5;
4245
+ color: #495057;
4246
+ content: "Browse";
4247
+ background-color: #e9ecef;
4248
+ border-left: inherit;
4249
+ border-radius: 0 0.25rem 0.25rem 0;
4250
+ }
4251
+
4252
+ .w3eden .custom-range {
4253
+ width: 100%;
4254
+ height: 1.4rem;
4255
+ padding: 0;
4256
+ background-color: transparent;
4257
+ -webkit-appearance: none;
4258
+ -moz-appearance: none;
4259
+ appearance: none;
4260
+ }
4261
+
4262
+ .w3eden .custom-range:focus {
4263
+ outline: none;
4264
+ }
4265
+
4266
+ .w3eden .custom-range:focus::-webkit-slider-thumb {
4267
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4268
+ }
4269
+
4270
+ .w3eden .custom-range:focus::-moz-range-thumb {
4271
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4272
+ }
4273
+
4274
+ .w3eden .custom-range:focus::-ms-thumb {
4275
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4276
+ }
4277
+
4278
+ .w3eden .custom-range::-moz-focus-outer {
4279
+ border: 0;
4280
+ }
4281
+
4282
+ .w3eden .custom-range::-webkit-slider-thumb {
4283
+ width: 1rem;
4284
+ height: 1rem;
4285
+ margin-top: -0.25rem;
4286
+ background-color: #007bff;
4287
+ border: 0;
4288
+ border-radius: 1rem;
4289
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4290
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4291
+ -webkit-appearance: none;
4292
+ appearance: none;
4293
+ }
4294
+
4295
+ @media (prefers-reduced-motion: reduce) {
4296
+ .w3eden .custom-range::-webkit-slider-thumb {
4297
+ -webkit-transition: none;
4298
+ transition: none;
4299
+ }
4300
+ }
4301
+
4302
+ .w3eden .custom-range::-webkit-slider-thumb:active {
4303
+ background-color: #b3d7ff;
4304
+ }
4305
+
4306
+ .w3eden .custom-range::-webkit-slider-runnable-track {
4307
+ width: 100%;
4308
+ height: 0.5rem;
4309
+ color: transparent;
4310
+ cursor: pointer;
4311
+ background-color: #dee2e6;
4312
+ border-color: transparent;
4313
+ border-radius: 1rem;
4314
+ }
4315
+
4316
+ .w3eden .custom-range::-moz-range-thumb {
4317
+ width: 1rem;
4318
+ height: 1rem;
4319
+ background-color: #007bff;
4320
+ border: 0;
4321
+ border-radius: 1rem;
4322
+ -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4323
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4324
+ -moz-appearance: none;
4325
+ appearance: none;
4326
+ }
4327
+
4328
+ @media (prefers-reduced-motion: reduce) {
4329
+ .w3eden .custom-range::-moz-range-thumb {
4330
+ -moz-transition: none;
4331
+ transition: none;
4332
+ }
4333
+ }
4334
+
4335
+ .w3eden .custom-range::-moz-range-thumb:active {
4336
+ background-color: #b3d7ff;
4337
+ }
4338
+
4339
+ .w3eden .custom-range::-moz-range-track {
4340
+ width: 100%;
4341
+ height: 0.5rem;
4342
+ color: transparent;
4343
+ cursor: pointer;
4344
+ background-color: #dee2e6;
4345
+ border-color: transparent;
4346
+ border-radius: 1rem;
4347
+ }
4348
+
4349
+ .w3eden .custom-range::-ms-thumb {
4350
+ width: 1rem;
4351
+ height: 1rem;
4352
+ margin-top: 0;
4353
+ margin-right: 0.2rem;
4354
+ margin-left: 0.2rem;
4355
+ background-color: #007bff;
4356
+ border: 0;
4357
+ border-radius: 1rem;
4358
+ -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4359
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4360
+ appearance: none;
4361
+ }
4362
+
4363
+ @media (prefers-reduced-motion: reduce) {
4364
+ .w3eden .custom-range::-ms-thumb {
4365
+ -ms-transition: none;
4366
+ transition: none;
4367
+ }
4368
+ }
4369
+
4370
+ .w3eden .custom-range::-ms-thumb:active {
4371
+ background-color: #b3d7ff;
4372
+ }
4373
+
4374
+ .w3eden .custom-range::-ms-track {
4375
+ width: 100%;
4376
+ height: 0.5rem;
4377
+ color: transparent;
4378
+ cursor: pointer;
4379
+ background-color: transparent;
4380
+ border-color: transparent;
4381
+ border-width: 0.5rem;
4382
+ }
4383
+
4384
+ .w3eden .custom-range::-ms-fill-lower {
4385
+ background-color: #dee2e6;
4386
+ border-radius: 1rem;
4387
+ }
4388
+
4389
+ .w3eden .custom-range::-ms-fill-upper {
4390
+ margin-right: 15px;
4391
+ background-color: #dee2e6;
4392
+ border-radius: 1rem;
4393
+ }
4394
+
4395
+ .w3eden .custom-range:disabled::-webkit-slider-thumb {
4396
+ background-color: #adb5bd;
4397
+ }
4398
+
4399
+ .w3eden .custom-range:disabled::-webkit-slider-runnable-track {
4400
+ cursor: default;
4401
+ }
4402
+
4403
+ .w3eden .custom-range:disabled::-moz-range-thumb {
4404
+ background-color: #adb5bd;
4405
+ }
4406
+
4407
+ .w3eden .custom-range:disabled::-moz-range-track {
4408
+ cursor: default;
4409
+ }
4410
+
4411
+ .w3eden .custom-range:disabled::-ms-thumb {
4412
+ background-color: #adb5bd;
4413
+ }
4414
+
4415
+ .w3eden .custom-control-label::before,
4416
+ .w3eden .custom-file-label,
4417
+ .w3eden .custom-select {
4418
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
4419
+ }
4420
+
4421
+ @media (prefers-reduced-motion: reduce) {
4422
+ .w3eden .custom-control-label::before,
4423
+ .w3eden .custom-file-label,
4424
+ .w3eden .custom-select {
4425
+ transition: none;
4426
+ }
4427
+ }
4428
+
4429
+ .w3eden .nav {
4430
+ display: -ms-flexbox;
4431
+ display: flex;
4432
+ -ms-flex-wrap: wrap;
4433
+ flex-wrap: wrap;
4434
+ padding-left: 0;
4435
+ margin-bottom: 0;
4436
+ list-style: none;
4437
+ }
4438
+
4439
+ .w3eden .nav-link {
4440
+ display: block;
4441
+ padding: 0.5rem 1rem;
4442
+ }
4443
+
4444
+ .w3eden .nav-link:hover, .w3eden .nav-link:focus {
4445
+ text-decoration: none;
4446
+ }
4447
+
4448
+ .w3eden .nav-link.disabled {
4449
+ color: #6c757d;
4450
+ pointer-events: none;
4451
+ cursor: default;
4452
+ }
4453
+
4454
+ .w3eden .nav-tabs {
4455
+ border-bottom: 1px solid #dee2e6;
4456
+ }
4457
+
4458
+ .w3eden .nav-tabs .nav-item {
4459
+ margin-bottom: -1px;
4460
+ }
4461
+
4462
+ .w3eden .nav-tabs .nav-link {
4463
+ border: 1px solid transparent;
4464
+ border-top-left-radius: 0.25rem;
4465
+ border-top-right-radius: 0.25rem;
4466
+ }
4467
+
4468
+ .w3eden .nav-tabs .nav-link:hover, .w3eden .nav-tabs .nav-link:focus {
4469
+ border-color: #e9ecef #e9ecef #dee2e6;
4470
+ }
4471
+
4472
+ .w3eden .nav-tabs .nav-link.disabled {
4473
+ color: #6c757d;
4474
+ background-color: transparent;
4475
+ border-color: transparent;
4476
+ }
4477
+
4478
+ .w3eden .nav-tabs .nav-link.active,
4479
+ .w3eden .nav-tabs .nav-item.show .nav-link {
4480
+ color: #495057;
4481
+ background-color: #fff;
4482
+ border-color: #dee2e6 #dee2e6 #fff;
4483
+ }
4484
+
4485
+ .w3eden .nav-tabs .dropdown-menu {
4486
+ margin-top: -1px;
4487
+ border-top-left-radius: 0;
4488
+ border-top-right-radius: 0;
4489
+ }
4490
+
4491
+ .w3eden .nav-pills .nav-link {
4492
+ border-radius: 0.25rem;
4493
+ }
4494
+
4495
+ .w3eden .nav-pills .nav-link.active,
4496
+ .w3eden .nav-pills .show > .nav-link {
4497
+ color: #fff;
4498
+ background-color: #007bff;
4499
+ }
4500
+
4501
+ .w3eden .nav-fill .nav-item {
4502
+ -ms-flex: 1 1 auto;
4503
+ flex: 1 1 auto;
4504
+ text-align: center;
4505
+ }
4506
+
4507
+ .w3eden .nav-justified .nav-item {
4508
+ -ms-flex-preferred-size: 0;
4509
+ flex-basis: 0;
4510
+ -ms-flex-positive: 1;
4511
+ flex-grow: 1;
4512
+ text-align: center;
4513
+ }
4514
+
4515
+ .w3eden .tab-content > .tab-pane {
4516
+ display: none;
4517
+ }
4518
+
4519
+ .w3eden .tab-content > .active {
4520
+ display: block;
4521
+ }
4522
+
4523
+ .w3eden .navbar {
4524
+ position: relative;
4525
+ display: -ms-flexbox;
4526
+ display: flex;
4527
+ -ms-flex-wrap: wrap;
4528
+ flex-wrap: wrap;
4529
+ -ms-flex-align: center;
4530
+ align-items: center;
4531
+ -ms-flex-pack: justify;
4532
+ justify-content: space-between;
4533
+ padding: 0.5rem 1rem;
4534
+ }
4535
+
4536
+ .w3eden .navbar .container,
4537
+ .w3eden .navbar .container-fluid, .w3eden .navbar .container-sm, .w3eden .navbar .container-md, .w3eden .navbar .container-lg, .w3eden .navbar .container-xl {
4538
+ display: -ms-flexbox;
4539
+ display: flex;
4540
+ -ms-flex-wrap: wrap;
4541
+ flex-wrap: wrap;
4542
+ -ms-flex-align: center;
4543
+ align-items: center;
4544
+ -ms-flex-pack: justify;
4545
+ justify-content: space-between;
4546
+ }
4547
+
4548
+ .w3eden .navbar-brand {
4549
+ display: inline-block;
4550
+ padding-top: 0.3125rem;
4551
+ padding-bottom: 0.3125rem;
4552
+ margin-right: 1rem;
4553
+ font-size: 1.25rem;
4554
+ line-height: inherit;
4555
+ white-space: nowrap;
4556
+ }
4557
+
4558
+ .w3eden .navbar-brand:hover, .w3eden .navbar-brand:focus {
4559
+ text-decoration: none;
4560
+ }
4561
+
4562
+ .w3eden .navbar-nav {
4563
+ display: -ms-flexbox;
4564
+ display: flex;
4565
+ -ms-flex-direction: column;
4566
+ flex-direction: column;
4567
+ padding-left: 0;
4568
+ margin-bottom: 0;
4569
+ list-style: none;
4570
+ }
4571
+
4572
+ .w3eden .navbar-nav .nav-link {
4573
+ padding-right: 0;
4574
+ padding-left: 0;
4575
+ }
4576
+
4577
+ .w3eden .navbar-nav .dropdown-menu {
4578
+ position: static;
4579
+ float: none;
4580
+ }
4581
+
4582
+ .w3eden .navbar-text {
4583
+ display: inline-block;
4584
+ padding-top: 0.5rem;
4585
+ padding-bottom: 0.5rem;
4586
+ }
4587
+
4588
+ .w3eden .navbar-collapse {
4589
+ -ms-flex-preferred-size: 100%;
4590
+ flex-basis: 100%;
4591
+ -ms-flex-positive: 1;
4592
+ flex-grow: 1;
4593
+ -ms-flex-align: center;
4594
+ align-items: center;
4595
+ }
4596
+
4597
+ .w3eden .navbar-toggler {
4598
+ padding: 0.25rem 0.75rem;
4599
+ font-size: 1.25rem;
4600
+ line-height: 1;
4601
+ background-color: transparent;
4602
+ border: 1px solid transparent;
4603
+ border-radius: 0.25rem;
4604
+ }
4605
+
4606
+ .w3eden .navbar-toggler:hover, .w3eden .navbar-toggler:focus {
4607
+ text-decoration: none;
4608
+ }
4609
+
4610
+ .w3eden .navbar-toggler-icon {
4611
+ display: inline-block;
4612
+ width: 1.5em;
4613
+ height: 1.5em;
4614
+ vertical-align: middle;
4615
+ content: "";
4616
+ background: no-repeat center center;
4617
+ background-size: 100% 100%;
4618
+ }
4619
+
4620
+ @media (max-width: 575.98px) {
4621
+ .w3eden .navbar-expand-sm > .container,
4622
+ .w3eden .navbar-expand-sm > .container-fluid, .w3eden .navbar-expand-sm > .container-sm, .w3eden .navbar-expand-sm > .container-md, .w3eden .navbar-expand-sm > .container-lg, .w3eden .navbar-expand-sm > .container-xl {
4623
+ padding-right: 0;
4624
+ padding-left: 0;
4625
+ }
4626
+ }
4627
+
4628
+ @media (min-width: 576px) {
4629
+ .w3eden .navbar-expand-sm {
4630
+ -ms-flex-flow: row nowrap;
4631
+ flex-flow: row nowrap;
4632
+ -ms-flex-pack: start;
4633
+ justify-content: flex-start;
4634
+ }
4635
+
4636
+ .w3eden .navbar-expand-sm .navbar-nav {
4637
+ -ms-flex-direction: row;
4638
+ flex-direction: row;
4639
+ }
4640
+
4641
+ .w3eden .navbar-expand-sm .navbar-nav .dropdown-menu {
4642
+ position: absolute;
4643
+ }
4644
+
4645
+ .w3eden .navbar-expand-sm .navbar-nav .nav-link {
4646
+ padding-right: 0.5rem;
4647
+ padding-left: 0.5rem;
4648
+ }
4649
+
4650
+ .w3eden .navbar-expand-sm > .container,
4651
+ .w3eden .navbar-expand-sm > .container-fluid, .w3eden .navbar-expand-sm > .container-sm, .w3eden .navbar-expand-sm > .container-md, .w3eden .navbar-expand-sm > .container-lg, .w3eden .navbar-expand-sm > .container-xl {
4652
+ -ms-flex-wrap: nowrap;
4653
+ flex-wrap: nowrap;
4654
+ }
4655
+
4656
+ .w3eden .navbar-expand-sm .navbar-collapse {
4657
+ display: -ms-flexbox !important;
4658
+ display: flex !important;
4659
+ -ms-flex-preferred-size: auto;
4660
+ flex-basis: auto;
4661
+ }
4662
+
4663
+ .w3eden .navbar-expand-sm .navbar-toggler {
4664
+ display: none;
4665
+ }
4666
+ }
4667
+
4668
+ @media (max-width: 767.98px) {
4669
+ .w3eden .navbar-expand-md > .container,
4670
+ .w3eden .navbar-expand-md > .container-fluid, .w3eden .navbar-expand-md > .container-sm, .w3eden .navbar-expand-md > .container-md, .w3eden .navbar-expand-md > .container-lg, .w3eden .navbar-expand-md > .container-xl {
4671
+ padding-right: 0;
4672
+ padding-left: 0;
4673
+ }
4674
+ }
4675
+
4676
+ @media (min-width: 768px) {
4677
+ .w3eden .navbar-expand-md {
4678
+ -ms-flex-flow: row nowrap;
4679
+ flex-flow: row nowrap;
4680
+ -ms-flex-pack: start;
4681
+ justify-content: flex-start;
4682
+ }
4683
+
4684
+ .w3eden .navbar-expand-md .navbar-nav {
4685
+ -ms-flex-direction: row;
4686
+ flex-direction: row;
4687
+ }
4688
+
4689
+ .w3eden .navbar-expand-md .navbar-nav .dropdown-menu {
4690
+ position: absolute;
4691
+ }
4692
+
4693
+ .w3eden .navbar-expand-md .navbar-nav .nav-link {
4694
+ padding-right: 0.5rem;
4695
+ padding-left: 0.5rem;
4696
+ }
4697
+
4698
+ .w3eden .navbar-expand-md > .container,
4699
+ .w3eden .navbar-expand-md > .container-fluid, .w3eden .navbar-expand-md > .container-sm, .w3eden .navbar-expand-md > .container-md, .w3eden .navbar-expand-md > .container-lg, .w3eden .navbar-expand-md > .container-xl {
4700
+ -ms-flex-wrap: nowrap;
4701
+ flex-wrap: nowrap;
4702
+ }
4703
+
4704
+ .w3eden .navbar-expand-md .navbar-collapse {
4705
+ display: -ms-flexbox !important;
4706
+ display: flex !important;
4707
+ -ms-flex-preferred-size: auto;
4708
+ flex-basis: auto;
4709
+ }
4710
+
4711
+ .w3eden .navbar-expand-md .navbar-toggler {
4712
+ display: none;
4713
+ }
4714
+ }
4715
+
4716
+ @media (max-width: 991.98px) {
4717
+ .w3eden .navbar-expand-lg > .container,
4718
+ .w3eden .navbar-expand-lg > .container-fluid, .w3eden .navbar-expand-lg > .container-sm, .w3eden .navbar-expand-lg > .container-md, .w3eden .navbar-expand-lg > .container-lg, .w3eden .navbar-expand-lg > .container-xl {
4719
+ padding-right: 0;
4720
+ padding-left: 0;
4721
+ }
4722
+ }
4723
+
4724
+ @media (min-width: 992px) {
4725
+ .w3eden .navbar-expand-lg {
4726
+ -ms-flex-flow: row nowrap;
4727
+ flex-flow: row nowrap;
4728
+ -ms-flex-pack: start;
4729
+ justify-content: flex-start;
4730
+ }
4731
+
4732
+ .w3eden .navbar-expand-lg .navbar-nav {
4733
+ -ms-flex-direction: row;
4734
+ flex-direction: row;
4735
+ }
4736
+
4737
+ .w3eden .navbar-expand-lg .navbar-nav .dropdown-menu {
4738
+ position: absolute;
4739
+ }
4740
+
4741
+ .w3eden .navbar-expand-lg .navbar-nav .nav-link {
4742
+ padding-right: 0.5rem;
4743
+ padding-left: 0.5rem;
4744
+ }
4745
+
4746
+ .w3eden .navbar-expand-lg > .container,
4747
+ .w3eden .navbar-expand-lg > .container-fluid, .w3eden .navbar-expand-lg > .container-sm, .w3eden .navbar-expand-lg > .container-md, .w3eden .navbar-expand-lg > .container-lg, .w3eden .navbar-expand-lg > .container-xl {
4748
+ -ms-flex-wrap: nowrap;
4749
+ flex-wrap: nowrap;
4750
+ }
4751
+
4752
+ .w3eden .navbar-expand-lg .navbar-collapse {
4753
+ display: -ms-flexbox !important;
4754
+ display: flex !important;
4755
+ -ms-flex-preferred-size: auto;
4756
+ flex-basis: auto;
4757
+ }
4758
+
4759
+ .w3eden .navbar-expand-lg .navbar-toggler {
4760
+ display: none;
4761
+ }
4762
+ }
4763
+
4764
+ @media (max-width: 1199.98px) {
4765
+ .w3eden .navbar-expand-xl > .container,
4766
+ .w3eden .navbar-expand-xl > .container-fluid, .w3eden .navbar-expand-xl > .container-sm, .w3eden .navbar-expand-xl > .container-md, .w3eden .navbar-expand-xl > .container-lg, .w3eden .navbar-expand-xl > .container-xl {
4767
+ padding-right: 0;
4768
+ padding-left: 0;
4769
+ }
4770
+ }
4771
+
4772
+ @media (min-width: 1200px) {
4773
+ .w3eden .navbar-expand-xl {
4774
+ -ms-flex-flow: row nowrap;
4775
+ flex-flow: row nowrap;
4776
+ -ms-flex-pack: start;
4777
+ justify-content: flex-start;
4778
+ }
4779
+
4780
+ .w3eden .navbar-expand-xl .navbar-nav {
4781
+ -ms-flex-direction: row;
4782
+ flex-direction: row;
4783
+ }
4784
+
4785
+ .w3eden .navbar-expand-xl .navbar-nav .dropdown-menu {
4786
+ position: absolute;
4787
+ }
4788
+
4789
+ .w3eden .navbar-expand-xl .navbar-nav .nav-link {
4790
+ padding-right: 0.5rem;
4791
+ padding-left: 0.5rem;
4792
+ }
4793
+
4794
+ .w3eden .navbar-expand-xl > .container,
4795
+ .w3eden .navbar-expand-xl > .container-fluid, .w3eden .navbar-expand-xl > .container-sm, .w3eden .navbar-expand-xl > .container-md, .w3eden .navbar-expand-xl > .container-lg, .w3eden .navbar-expand-xl > .container-xl {
4796
+ -ms-flex-wrap: nowrap;
4797
+ flex-wrap: nowrap;
4798
+ }
4799
+
4800
+ .w3eden .navbar-expand-xl .navbar-collapse {
4801
+ display: -ms-flexbox !important;
4802
+ display: flex !important;
4803
+ -ms-flex-preferred-size: auto;
4804
+ flex-basis: auto;
4805
+ }
4806
+
4807
+ .w3eden .navbar-expand-xl .navbar-toggler {
4808
+ display: none;
4809
+ }
4810
+ }
4811
+
4812
+ .w3eden .navbar-expand {
4813
+ -ms-flex-flow: row nowrap;
4814
+ flex-flow: row nowrap;
4815
+ -ms-flex-pack: start;
4816
+ justify-content: flex-start;
4817
+ }
4818
+
4819
+ .w3eden .navbar-expand > .container,
4820
+ .w3eden .navbar-expand > .container-fluid, .w3eden .navbar-expand > .container-sm, .w3eden .navbar-expand > .container-md, .w3eden .navbar-expand > .container-lg, .w3eden .navbar-expand > .container-xl {
4821
+ padding-right: 0;
4822
+ padding-left: 0;
4823
+ }
4824
+
4825
+ .w3eden .navbar-expand .navbar-nav {
4826
+ -ms-flex-direction: row;
4827
+ flex-direction: row;
4828
+ }
4829
+
4830
+ .w3eden .navbar-expand .navbar-nav .dropdown-menu {
4831
+ position: absolute;
4832
+ }
4833
+
4834
+ .w3eden .navbar-expand .navbar-nav .nav-link {
4835
+ padding-right: 0.5rem;
4836
+ padding-left: 0.5rem;
4837
+ }
4838
+
4839
+ .w3eden .navbar-expand > .container,
4840
+ .w3eden .navbar-expand > .container-fluid, .w3eden .navbar-expand > .container-sm, .w3eden .navbar-expand > .container-md, .w3eden .navbar-expand > .container-lg, .w3eden .navbar-expand > .container-xl {
4841
+ -ms-flex-wrap: nowrap;
4842
+ flex-wrap: nowrap;
4843
+ }
4844
+
4845
+ .w3eden .navbar-expand .navbar-collapse {
4846
+ display: -ms-flexbox !important;
4847
+ display: flex !important;
4848
+ -ms-flex-preferred-size: auto;
4849
+ flex-basis: auto;
4850
+ }
4851
+
4852
+ .w3eden .navbar-expand .navbar-toggler {
4853
+ display: none;
4854
+ }
4855
+
4856
+ .w3eden .navbar-light .navbar-brand {
4857
+ color: rgba(0, 0, 0, 0.9);
4858
+ }
4859
+
4860
+ .w3eden .navbar-light .navbar-brand:hover, .w3eden .navbar-light .navbar-brand:focus {
4861
+ color: rgba(0, 0, 0, 0.9);
4862
+ }
4863
+
4864
+ .w3eden .navbar-light .navbar-nav .nav-link {
4865
+ color: rgba(0, 0, 0, 0.5);
4866
+ }
4867
+
4868
+ .w3eden .navbar-light .navbar-nav .nav-link:hover, .w3eden .navbar-light .navbar-nav .nav-link:focus {
4869
+ color: rgba(0, 0, 0, 0.7);
4870
+ }
4871
+
4872
+ .w3eden .navbar-light .navbar-nav .nav-link.disabled {
4873
+ color: rgba(0, 0, 0, 0.3);
4874
+ }
4875
+
4876
+ .w3eden .navbar-light .navbar-nav .show > .nav-link,
4877
+ .w3eden .navbar-light .navbar-nav .active > .nav-link,
4878
+ .w3eden .navbar-light .navbar-nav .nav-link.show,
4879
+ .w3eden .navbar-light .navbar-nav .nav-link.active {
4880
+ color: rgba(0, 0, 0, 0.9);
4881
+ }
4882
+
4883
+ .w3eden .navbar-light .navbar-toggler {
4884
+ color: rgba(0, 0, 0, 0.5);
4885
+ border-color: rgba(0, 0, 0, 0.1);
4886
+ }
4887
+
4888
+ .w3eden .navbar-light .navbar-toggler-icon {
4889
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
4890
+ }
4891
+
4892
+ .w3eden .navbar-light .navbar-text {
4893
+ color: rgba(0, 0, 0, 0.5);
4894
+ }
4895
+
4896
+ .w3eden .navbar-light .navbar-text a {
4897
+ color: rgba(0, 0, 0, 0.9);
4898
+ }
4899
+
4900
+ .w3eden .navbar-light .navbar-text a:hover, .w3eden .navbar-light .navbar-text a:focus {
4901
+ color: rgba(0, 0, 0, 0.9);
4902
+ }
4903
+
4904
+ .w3eden .navbar-dark .navbar-brand {
4905
+ color: #fff;
4906
+ }
4907
+
4908
+ .w3eden .navbar-dark .navbar-brand:hover, .w3eden .navbar-dark .navbar-brand:focus {
4909
+ color: #fff;
4910
+ }
4911
+
4912
+ .w3eden .navbar-dark .navbar-nav .nav-link {
4913
+ color: rgba(255, 255, 255, 0.5);
4914
+ }
4915
+
4916
+ .w3eden .navbar-dark .navbar-nav .nav-link:hover, .w3eden .navbar-dark .navbar-nav .nav-link:focus {
4917
+ color: rgba(255, 255, 255, 0.75);
4918
+ }
4919
+
4920
+ .w3eden .navbar-dark .navbar-nav .nav-link.disabled {
4921
+ color: rgba(255, 255, 255, 0.25);
4922
+ }
4923
+
4924
+ .w3eden .navbar-dark .navbar-nav .show > .nav-link,
4925
+ .w3eden .navbar-dark .navbar-nav .active > .nav-link,
4926
+ .w3eden .navbar-dark .navbar-nav .nav-link.show,
4927
+ .w3eden .navbar-dark .navbar-nav .nav-link.active {
4928
+ color: #fff;
4929
+ }
4930
+
4931
+ .w3eden .navbar-dark .navbar-toggler {
4932
+ color: rgba(255, 255, 255, 0.5);
4933
+ border-color: rgba(255, 255, 255, 0.1);
4934
+ }
4935
+
4936
+ .w3eden .navbar-dark .navbar-toggler-icon {
4937
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
4938
+ }
4939
+
4940
+ .w3eden .navbar-dark .navbar-text {
4941
+ color: rgba(255, 255, 255, 0.5);
4942
+ }
4943
+
4944
+ .w3eden .navbar-dark .navbar-text a {
4945
+ color: #fff;
4946
+ }
4947
+
4948
+ .w3eden .navbar-dark .navbar-text a:hover, .w3eden .navbar-dark .navbar-text a:focus {
4949
+ color: #fff;
4950
+ }
4951
+
4952
+ .w3eden .card {
4953
+ position: relative;
4954
+ display: -ms-flexbox;
4955
+ display: flex;
4956
+ -ms-flex-direction: column;
4957
+ flex-direction: column;
4958
+ min-width: 0;
4959
+ word-wrap: break-word;
4960
+ background-color: #fff;
4961
+ background-clip: border-box;
4962
+ border: 1px solid rgba(0, 0, 0, 0.125);
4963
+ border-radius: 0.25rem;
4964
+ }
4965
+
4966
+ .w3eden .card > hr {
4967
+ margin-right: 0;
4968
+ margin-left: 0;
4969
+ }
4970
+
4971
+ .w3eden .card > .list-group:first-child .list-group-item:first-child {
4972
+ border-top-left-radius: 0.25rem;
4973
+ border-top-right-radius: 0.25rem;
4974
+ }
4975
+
4976
+ .w3eden .card > .list-group:last-child .list-group-item:last-child {
4977
+ border-bottom-right-radius: 0.25rem;
4978
+ border-bottom-left-radius: 0.25rem;
4979
+ }
4980
+
4981
+ .w3eden .card-body {
4982
+ -ms-flex: 1 1 auto;
4983
+ flex: 1 1 auto;
4984
+ min-height: 1px;
4985
+ padding: 1.25rem;
4986
+ }
4987
+
4988
+ .w3eden .card-title {
4989
+ margin-bottom: 0.75rem;
4990
+ }
4991
+
4992
+ .w3eden .card-subtitle {
4993
+ margin-top: -0.375rem;
4994
+ margin-bottom: 0;
4995
+ }
4996
+
4997
+ .w3eden .card-text:last-child {
4998
+ margin-bottom: 0;
4999
+ }
5000
+
5001
+ .w3eden .card-link:hover {
5002
+ text-decoration: none;
5003
+ }
5004
+
5005
+ .w3eden .card-link + .card-link {
5006
+ margin-left: 1.25rem;
5007
+ }
5008
+
5009
+ .w3eden .card-header {
5010
+ padding: 0.75rem 1.25rem;
5011
+ margin-bottom: 0;
5012
+ background-color: rgba(0, 0, 0, 0.03);
5013
+ border-bottom: 1px solid rgba(0, 0, 0, 0.125);
5014
+ }
5015
+
5016
+ .w3eden .card-header:first-child {
5017
+ border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
5018
+ }
5019
+
5020
+ .w3eden .card-header + .list-group .list-group-item:first-child {
5021
+ border-top: 0;
5022
+ }
5023
+
5024
+ .w3eden .card-footer {
5025
+ padding: 0.75rem 1.25rem;
5026
+ background-color: rgba(0, 0, 0, 0.03);
5027
+ border-top: 1px solid rgba(0, 0, 0, 0.125);
5028
+ }
5029
+
5030
+ .w3eden .card-footer:last-child {
5031
+ border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
5032
+ }
5033
+
5034
+ .w3eden .card-header-tabs {
5035
+ margin-right: -0.625rem;
5036
+ margin-bottom: -0.75rem;
5037
+ margin-left: -0.625rem;
5038
+ border-bottom: 0;
5039
+ }
5040
+
5041
+ .w3eden .card-header-pills {
5042
+ margin-right: -0.625rem;
5043
+ margin-left: -0.625rem;
5044
+ }
5045
+
5046
+ .w3eden .card-img-overlay {
5047
+ position: absolute;
5048
+ top: 0;
5049
+ right: 0;
5050
+ bottom: 0;
5051
+ left: 0;
5052
+ padding: 1.25rem;
5053
+ }
5054
+
5055
+ .w3eden .card-img,
5056
+ .w3eden .card-img-top,
5057
+ .w3eden .card-img-bottom {
5058
+ -ms-flex-negative: 0;
5059
+ flex-shrink: 0;
5060
+ width: 100%;
5061
+ }
5062
+
5063
+ .w3eden .card-img,
5064
+ .w3eden .card-img-top {
5065
+ border-top-left-radius: calc(0.25rem - 1px);
5066
+ border-top-right-radius: calc(0.25rem - 1px);
5067
+ }
5068
+
5069
+ .w3eden .card-img,
5070
+ .w3eden .card-img-bottom {
5071
+ border-bottom-right-radius: calc(0.25rem - 1px);
5072
+ border-bottom-left-radius: calc(0.25rem - 1px);
5073
+ }
5074
+
5075
+ .w3eden .card-deck .card {
5076
+ margin-bottom: 15px;
5077
+ }
5078
+
5079
+ @media (min-width: 576px) {
5080
+ .w3eden .card-deck {
5081
+ display: -ms-flexbox;
5082
+ display: flex;
5083
+ -ms-flex-flow: row wrap;
5084
+ flex-flow: row wrap;
5085
+ margin-right: -15px;
5086
+ margin-left: -15px;
5087
+ }
5088
+
5089
+ .w3eden .card-deck .card {
5090
+ -ms-flex: 1 0 0%;
5091
+ flex: 1 0 0%;
5092
+ margin-right: 15px;
5093
+ margin-bottom: 0;
5094
+ margin-left: 15px;
5095
+ }
5096
+ }
5097
+
5098
+ .w3eden .card-group > .card {
5099
+ margin-bottom: 15px;
5100
+ }
5101
+
5102
+ @media (min-width: 576px) {
5103
+ .w3eden .card-group {
5104
+ display: -ms-flexbox;
5105
+ display: flex;
5106
+ -ms-flex-flow: row wrap;
5107
+ flex-flow: row wrap;
5108
+ }
5109
+
5110
+ .w3eden .card-group > .card {
5111
+ -ms-flex: 1 0 0%;
5112
+ flex: 1 0 0%;
5113
+ margin-bottom: 0;
5114
+ }
5115
+
5116
+ .w3eden .card-group > .card + .card {
5117
+ margin-left: 0;
5118
+ border-left: 0;
5119
+ }
5120
+
5121
+ .w3eden .card-group > .card:not(:last-child) {
5122
+ border-top-right-radius: 0;
5123
+ border-bottom-right-radius: 0;
5124
+ }
5125
+
5126
+ .w3eden .card-group > .card:not(:last-child) .card-img-top,
5127
+ .w3eden .card-group > .card:not(:last-child) .card-header {
5128
+ border-top-right-radius: 0;
5129
+ }
5130
+
5131
+ .w3eden .card-group > .card:not(:last-child) .card-img-bottom,
5132
+ .w3eden .card-group > .card:not(:last-child) .card-footer {
5133
+ border-bottom-right-radius: 0;
5134
+ }
5135
+
5136
+ .w3eden .card-group > .card:not(:first-child) {
5137
+ border-top-left-radius: 0;
5138
+ border-bottom-left-radius: 0;
5139
+ }
5140
+
5141
+ .w3eden .card-group > .card:not(:first-child) .card-img-top,
5142
+ .w3eden .card-group > .card:not(:first-child) .card-header {
5143
+ border-top-left-radius: 0;
5144
+ }
5145
+
5146
+ .w3eden .card-group > .card:not(:first-child) .card-img-bottom,
5147
+ .w3eden .card-group > .card:not(:first-child) .card-footer {
5148
+ border-bottom-left-radius: 0;
5149
+ }
5150
+ }
5151
+
5152
+ .w3eden .card-columns .card {
5153
+ margin-bottom: 0.75rem;
5154
+ }
5155
+
5156
+ @media (min-width: 576px) {
5157
+ .w3eden .card-columns {
5158
+ -webkit-column-count: 3;
5159
+ -moz-column-count: 3;
5160
+ column-count: 3;
5161
+ -webkit-column-gap: 1.25rem;
5162
+ -moz-column-gap: 1.25rem;
5163
+ column-gap: 1.25rem;
5164
+ orphans: 1;
5165
+ widows: 1;
5166
+ }
5167
+
5168
+ .w3eden .card-columns .card {
5169
+ display: inline-block;
5170
+ width: 100%;
5171
+ }
5172
+ }
5173
+
5174
+ .w3eden .accordion > .card {
5175
+ overflow: hidden;
5176
+ }
5177
+
5178
+ .w3eden .accordion > .card:not(:last-of-type) {
5179
+ border-bottom: 0;
5180
+ border-bottom-right-radius: 0;
5181
+ border-bottom-left-radius: 0;
5182
+ }
5183
+
5184
+ .w3eden .accordion > .card:not(:first-of-type) {
5185
+ border-top-left-radius: 0;
5186
+ border-top-right-radius: 0;
5187
+ }
5188
+
5189
+ .w3eden .accordion > .card > .card-header {
5190
+ border-radius: 0;
5191
+ margin-bottom: -1px;
5192
+ }
5193
+
5194
+ .w3eden .breadcrumb {
5195
+ display: -ms-flexbox;
5196
+ display: flex;
5197
+ -ms-flex-wrap: wrap;
5198
+ flex-wrap: wrap;
5199
+ padding: 0.75rem 1rem;
5200
+ margin-bottom: 1rem;
5201
+ list-style: none;
5202
+ background-color: #e9ecef;
5203
+ border-radius: 0.25rem;
5204
+ }
5205
+
5206
+ .w3eden .breadcrumb-item + .breadcrumb-item {
5207
+ padding-left: 0.5rem;
5208
+ }
5209
+
5210
+ .w3eden .breadcrumb-item + .breadcrumb-item::before {
5211
+ display: inline-block;
5212
+ padding-right: 0.5rem;
5213
+ color: #6c757d;
5214
+ content: "/";
5215
+ }
5216
+
5217
+ .w3eden .breadcrumb-item + .breadcrumb-item:hover::before {
5218
+ text-decoration: underline;
5219
+ }
5220
+
5221
+ .w3eden .breadcrumb-item + .breadcrumb-item:hover::before {
5222
+ text-decoration: none;
5223
+ }
5224
+
5225
+ .w3eden .breadcrumb-item.active {
5226
+ color: #6c757d;
5227
+ }
5228
+
5229
+ .w3eden .pagination {
5230
+ display: -ms-flexbox;
5231
+ display: flex;
5232
+ padding-left: 0;
5233
+ list-style: none;
5234
+ border-radius: 0.25rem;
5235
+ }
5236
+
5237
+ .w3eden .page-link {
5238
+ position: relative;
5239
+ display: block;
5240
+ padding: 0.5rem 0.75rem;
5241
+ margin-left: -1px;
5242
+ line-height: 1.25;
5243
+ color: #007bff;
5244
+ background-color: #fff;
5245
+ border: 1px solid #dee2e6;
5246
+ }
5247
+
5248
+ .w3eden .page-link:hover {
5249
+ z-index: 2;
5250
+ color: #0056b3;
5251
+ text-decoration: none;
5252
+ background-color: #e9ecef;
5253
+ border-color: #dee2e6;
5254
+ }
5255
+
5256
+ .w3eden .page-link:focus {
5257
+ z-index: 3;
5258
+ outline: 0;
5259
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
5260
+ }
5261
+
5262
+ .w3eden .page-item:first-child .page-link {
5263
+ margin-left: 0;
5264
+ border-top-left-radius: 0.25rem;
5265
+ border-bottom-left-radius: 0.25rem;
5266
+ }
5267
+
5268
+ .w3eden .page-item:last-child .page-link {
5269
+ border-top-right-radius: 0.25rem;
5270
+ border-bottom-right-radius: 0.25rem;
5271
+ }
5272
+
5273
+ .w3eden .page-item.active .page-link {
5274
+ z-index: 3;
5275
+ color: #fff;
5276
+ background-color: #007bff;
5277
+ border-color: #007bff;
5278
+ }
5279
+
5280
+ .w3eden .page-item.disabled .page-link {
5281
+ color: #6c757d;
5282
+ pointer-events: none;
5283
+ cursor: auto;
5284
+ background-color: #fff;
5285
+ border-color: #dee2e6;
5286
+ }
5287
+
5288
+ .w3eden .pagination-lg .page-link {
5289
+ padding: 0.75rem 1.5rem;
5290
+ font-size: 1.25rem;
5291
+ line-height: 1.5;
5292
+ }
5293
+
5294
+ .w3eden .pagination-lg .page-item:first-child .page-link {
5295
+ border-top-left-radius: 0.3rem;
5296
+ border-bottom-left-radius: 0.3rem;
5297
+ }
5298
+
5299
+ .w3eden .pagination-lg .page-item:last-child .page-link {
5300
+ border-top-right-radius: 0.3rem;
5301
+ border-bottom-right-radius: 0.3rem;
5302
+ }
5303
+
5304
+ .w3eden .pagination-sm .page-link {
5305
+ padding: 0.25rem 0.5rem;
5306
+ font-size: 0.875rem;
5307
+ line-height: 1.5;
5308
+ }
5309
+
5310
+ .w3eden .pagination-sm .page-item:first-child .page-link {
5311
+ border-top-left-radius: 0.2rem;
5312
+ border-bottom-left-radius: 0.2rem;
5313
+ }
5314
+
5315
+ .w3eden .pagination-sm .page-item:last-child .page-link {
5316
+ border-top-right-radius: 0.2rem;
5317
+ border-bottom-right-radius: 0.2rem;
5318
+ }
5319
+
5320
+ .w3eden .badge {
5321
+ display: inline-block;
5322
+ padding: 0.25em 0.4em;
5323
+ font-size: 75%;
5324
+ font-weight: 700;
5325
+ line-height: 1;
5326
+ text-align: center;
5327
+ white-space: nowrap;
5328
+ vertical-align: baseline;
5329
+ border-radius: 0.25rem;
5330
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
5331
+ }
5332
+
5333
+ @media (prefers-reduced-motion: reduce) {
5334
+ .w3eden .badge {
5335
+ transition: none;
5336
+ }
5337
+ }
5338
+
5339
+ .w3eden a.badge:hover, .w3eden a.badge:focus {
5340
+ text-decoration: none;
5341
+ }
5342
+
5343
+ .w3eden .badge:empty {
5344
+ display: none;
5345
+ }
5346
+
5347
+ .w3eden .btn .badge {
5348
+ position: relative;
5349
+ top: -1px;
5350
+ }
5351
+
5352
+ .w3eden .badge-pill {
5353
+ padding-right: 0.6em;
5354
+ padding-left: 0.6em;
5355
+ border-radius: 10rem;
5356
+ }
5357
+
5358
+ .w3eden .badge-primary {
5359
+ color: #fff;
5360
+ background-color: #007bff;
5361
+ }
5362
+
5363
+ .w3eden a.badge-primary:hover, .w3eden a.badge-primary:focus {
5364
+ color: #fff;
5365
+ background-color: #0062cc;
5366
+ }
5367
+
5368
+ .w3eden a.badge-primary:focus, .w3eden a.badge-primary.focus {
5369
+ outline: 0;
5370
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
5371
+ }
5372
+
5373
+ .w3eden .badge-secondary {
5374
+ color: #fff;
5375
+ background-color: #6c757d;
5376
+ }
5377
+
5378
+ .w3eden a.badge-secondary:hover, .w3eden a.badge-secondary:focus {
5379
+ color: #fff;
5380
+ background-color: #545b62;
5381
+ }
5382
+
5383
+ .w3eden a.badge-secondary:focus, .w3eden a.badge-secondary.focus {
5384
+ outline: 0;
5385
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
5386
+ }
5387
+
5388
+ .w3eden .badge-success {
5389
+ color: #fff;
5390
+ background-color: #28a745;
5391
+ }
5392
+
5393
+ .w3eden a.badge-success:hover, .w3eden a.badge-success:focus {
5394
+ color: #fff;
5395
+ background-color: #1e7e34;
5396
+ }
5397
+
5398
+ .w3eden a.badge-success:focus, .w3eden a.badge-success.focus {
5399
+ outline: 0;
5400
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
5401
+ }
5402
+
5403
+ .w3eden .badge-info {
5404
+ color: #fff;
5405
+ background-color: #17a2b8;
5406
+ }
5407
+
5408
+ .w3eden a.badge-info:hover, .w3eden a.badge-info:focus {
5409
+ color: #fff;
5410
+ background-color: #117a8b;
5411
+ }
5412
+
5413
+ .w3eden a.badge-info:focus, .w3eden a.badge-info.focus {
5414
+ outline: 0;
5415
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
5416
+ }
5417
+
5418
+ .w3eden .badge-warning {
5419
+ color: #212529;
5420
+ background-color: #ffc107;
5421
+ }
5422
+
5423
+ .w3eden a.badge-warning:hover, .w3eden a.badge-warning:focus {
5424
+ color: #212529;
5425
+ background-color: #d39e00;
5426
+ }
5427
+
5428
+ .w3eden a.badge-warning:focus, .w3eden a.badge-warning.focus {
5429
+ outline: 0;
5430
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
5431
+ }
5432
+
5433
+ .w3eden .badge-danger {
5434
+ color: #fff;
5435
+ background-color: #dc3545;
5436
+ }
5437
+
5438
+ .w3eden a.badge-danger:hover, .w3eden a.badge-danger:focus {
5439
+ color: #fff;
5440
+ background-color: #bd2130;
5441
+ }
5442
+
5443
+ .w3eden a.badge-danger:focus, .w3eden a.badge-danger.focus {
5444
+ outline: 0;
5445
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
5446
+ }
5447
+
5448
+ .w3eden .badge-light {
5449
+ color: #212529;
5450
+ background-color: #f8f9fa;
5451
+ }
5452
+
5453
+ .w3eden a.badge-light:hover, .w3eden a.badge-light:focus {
5454
+ color: #212529;
5455
+ background-color: #dae0e5;
5456
+ }
5457
+
5458
+ .w3eden a.badge-light:focus, .w3eden a.badge-light.focus {
5459
+ outline: 0;
5460
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
5461
+ }
5462
+
5463
+ .w3eden .badge-dark {
5464
+ color: #fff;
5465
+ background-color: #343a40;
5466
+ }
5467
+
5468
+ .w3eden a.badge-dark:hover, .w3eden a.badge-dark:focus {
5469
+ color: #fff;
5470
+ background-color: #1d2124;
5471
+ }
5472
+
5473
+ .w3eden a.badge-dark:focus, .w3eden a.badge-dark.focus {
5474
+ outline: 0;
5475
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
5476
+ }
5477
+
5478
+ .w3eden .jumbotron {
5479
+ padding: 2rem 1rem;
5480
+ margin-bottom: 2rem;
5481
+ background-color: #e9ecef;
5482
+ border-radius: 0.3rem;
5483
+ }
5484
+
5485
+ @media (min-width: 576px) {
5486
+ .w3eden .jumbotron {
5487
+ padding: 4rem 2rem;
5488
+ }
5489
+ }
5490
+
5491
+ .w3eden .jumbotron-fluid {
5492
+ padding-right: 0;
5493
+ padding-left: 0;
5494
+ border-radius: 0;
5495
+ }
5496
+
5497
+ .w3eden .alert {
5498
+ position: relative;
5499
+ padding: 0.75rem 1.25rem;
5500
+ margin-bottom: 1rem;
5501
+ border: 1px solid transparent;
5502
+ border-radius: 0.25rem;
5503
+ }
5504
+
5505
+ .w3eden .alert-heading {
5506
+ color: inherit;
5507
+ }
5508
+
5509
+ .w3eden .alert-link {
5510
+ font-weight: 700;
5511
+ }
5512
+
5513
+ .w3eden .alert-dismissible {
5514
+ padding-right: 4rem;
5515
+ }
5516
+
5517
+ .w3eden .alert-dismissible .close {
5518
+ position: absolute;
5519
+ top: 0;
5520
+ right: 0;
5521
+ padding: 0.75rem 1.25rem;
5522
+ color: inherit;
5523
+ }
5524
+
5525
+ .w3eden .alert-primary {
5526
+ color: #004085;
5527
+ background-color: #cce5ff;
5528
+ border-color: #b8daff;
5529
+ }
5530
+
5531
+ .w3eden .alert-primary hr {
5532
+ border-top-color: #9fcdff;
5533
+ }
5534
+
5535
+ .w3eden .alert-primary .alert-link {
5536
+ color: #002752;
5537
+ }
5538
+
5539
+ .w3eden .alert-secondary {
5540
+ color: #383d41;
5541
+ background-color: #e2e3e5;
5542
+ border-color: #d6d8db;
5543
+ }
5544
+
5545
+ .w3eden .alert-secondary hr {
5546
+ border-top-color: #c8cbcf;
5547
+ }
5548
+
5549
+ .w3eden .alert-secondary .alert-link {
5550
+ color: #202326;
5551
+ }
5552
+
5553
+ .w3eden .alert-success {
5554
+ color: #155724;
5555
+ background-color: #d4edda;
5556
+ border-color: #c3e6cb;
5557
+ }
5558
+
5559
+ .w3eden .alert-success hr {
5560
+ border-top-color: #b1dfbb;
5561
+ }
5562
+
5563
+ .w3eden .alert-success .alert-link {
5564
+ color: #0b2e13;
5565
+ }
5566
+
5567
+ .w3eden .alert-info {
5568
+ color: #0c5460;
5569
+ background-color: #d1ecf1;
5570
+ border-color: #bee5eb;
5571
+ }
5572
+
5573
+ .w3eden .alert-info hr {
5574
+ border-top-color: #abdde5;
5575
+ }
5576
+
5577
+ .w3eden .alert-info .alert-link {
5578
+ color: #062c33;
5579
+ }
5580
+
5581
+ .w3eden .alert-warning {
5582
+ color: #856404;
5583
+ background-color: #fff3cd;
5584
+ border-color: #ffeeba;
5585
+ }
5586
+
5587
+ .w3eden .alert-warning hr {
5588
+ border-top-color: #ffe8a1;
5589
+ }
5590
+
5591
+ .w3eden .alert-warning .alert-link {
5592
+ color: #533f03;
5593
+ }
5594
+
5595
+ .w3eden .alert-danger {
5596
+ color: #721c24;
5597
+ background-color: #f8d7da;
5598
+ border-color: #f5c6cb;
5599
+ }
5600
+
5601
+ .w3eden .alert-danger hr {
5602
+ border-top-color: #f1b0b7;
5603
+ }
5604
+
5605
+ .w3eden .alert-danger .alert-link {
5606
+ color: #491217;
5607
+ }
5608
+
5609
+ .w3eden .alert-light {
5610
+ color: #818182;
5611
+ background-color: #fefefe;
5612
+ border-color: #fdfdfe;
5613
+ }
5614
+
5615
+ .w3eden .alert-light hr {
5616
+ border-top-color: #ececf6;
5617
+ }
5618
+
5619
+ .w3eden .alert-light .alert-link {
5620
+ color: #686868;
5621
+ }
5622
+
5623
+ .w3eden .alert-dark {
5624
+ color: #1b1e21;
5625
+ background-color: #d6d8d9;
5626
+ border-color: #c6c8ca;
5627
+ }
5628
+
5629
+ .w3eden .alert-dark hr {
5630
+ border-top-color: #b9bbbe;
5631
+ }
5632
+
5633
+ .w3eden .alert-dark .alert-link {
5634
+ color: #040505;
5635
+ }
5636
+
5637
+ @-webkit-keyframes progress-bar-stripes {
5638
+ from {
5639
+ background-position: 1rem 0;
5640
+ }
5641
+ to {
5642
+ background-position: 0 0;
5643
+ }
5644
+ }
5645
+
5646
+ @keyframes progress-bar-stripes {
5647
+ from {
5648
+ background-position: 1rem 0;
5649
+ }
5650
+ to {
5651
+ background-position: 0 0;
5652
+ }
5653
+ }
5654
+
5655
+ .w3eden .progress {
5656
+ display: -ms-flexbox;
5657
+ display: flex;
5658
+ height: 1rem;
5659
+ overflow: hidden;
5660
+ font-size: 0.75rem;
5661
+ background-color: #e9ecef;
5662
+ border-radius: 0.25rem;
5663
+ }
5664
+
5665
+ .w3eden .progress-bar {
5666
+ display: -ms-flexbox;
5667
+ display: flex;
5668
+ -ms-flex-direction: column;
5669
+ flex-direction: column;
5670
+ -ms-flex-pack: center;
5671
+ justify-content: center;
5672
+ overflow: hidden;
5673
+ color: #fff;
5674
+ text-align: center;
5675
+ white-space: nowrap;
5676
+ background-color: #007bff;
5677
+ transition: width 0.6s ease;
5678
+ }
5679
+
5680
+ @media (prefers-reduced-motion: reduce) {
5681
+ .w3eden .progress-bar {
5682
+ transition: none;
5683
+ }
5684
+ }
5685
+
5686
+ .w3eden .progress-bar-striped {
5687
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5688
+ background-size: 1rem 1rem;
5689
+ }
5690
+
5691
+ .w3eden .progress-bar-animated {
5692
+ -webkit-animation: progress-bar-stripes 1s linear infinite;
5693
+ animation: progress-bar-stripes 1s linear infinite;
5694
+ }
5695
+
5696
+ @media (prefers-reduced-motion: reduce) {
5697
+ .w3eden .progress-bar-animated {
5698
+ -webkit-animation: none;
5699
+ animation: none;
5700
+ }
5701
+ }
5702
+
5703
+ .w3eden .media {
5704
+ display: -ms-flexbox;
5705
+ display: flex;
5706
+ -ms-flex-align: start;
5707
+ align-items: flex-start;
5708
+ }
5709
+
5710
+ .w3eden .media-body {
5711
+ -ms-flex: 1;
5712
+ flex: 1;
5713
+ }
5714
+
5715
+ .w3eden .list-group {
5716
+ display: -ms-flexbox;
5717
+ display: flex;
5718
+ -ms-flex-direction: column;
5719
+ flex-direction: column;
5720
+ padding-left: 0;
5721
+ margin-bottom: 0;
5722
+ }
5723
+
5724
+ .w3eden .list-group-item-action {
5725
+ width: 100%;
5726
+ color: #495057;
5727
+ text-align: inherit;
5728
+ }
5729
+
5730
+ .w3eden .list-group-item-action:hover, .w3eden .list-group-item-action:focus {
5731
+ z-index: 1;
5732
+ color: #495057;
5733
+ text-decoration: none;
5734
+ background-color: #f8f9fa;
5735
+ }
5736
+
5737
+ .w3eden .list-group-item-action:active {
5738
+ color: #212529;
5739
+ background-color: #e9ecef;
5740
+ }
5741
+
5742
+ .w3eden .list-group-item {
5743
+ position: relative;
5744
+ display: block;
5745
+ padding: 0.75rem 1.25rem;
5746
+ background-color: #fff;
5747
+ border: 1px solid rgba(0, 0, 0, 0.125);
5748
+ }
5749
+
5750
+ .w3eden .list-group-item:first-child {
5751
+ border-top-left-radius: 0.25rem;
5752
+ border-top-right-radius: 0.25rem;
5753
+ }
5754
+
5755
+ .w3eden .list-group-item:last-child {
5756
+ border-bottom-right-radius: 0.25rem;
5757
+ border-bottom-left-radius: 0.25rem;
5758
+ }
5759
+
5760
+ .w3eden .list-group-item.disabled, .w3eden .list-group-item:disabled {
5761
+ color: #6c757d;
5762
+ pointer-events: none;
5763
+ background-color: #fff;
5764
+ }
5765
+
5766
+ .w3eden .list-group-item.active {
5767
+ z-index: 2;
5768
+ color: #fff;
5769
+ background-color: #007bff;
5770
+ border-color: #007bff;
5771
+ }
5772
+
5773
+ .w3eden .list-group-item + .list-group-item {
5774
+ border-top-width: 0;
5775
+ }
5776
+
5777
+ .w3eden .list-group-item + .list-group-item.active {
5778
+ margin-top: -1px;
5779
+ border-top-width: 1px;
5780
+ }
5781
+
5782
+ .w3eden .list-group-horizontal {
5783
+ -ms-flex-direction: row;
5784
+ flex-direction: row;
5785
+ }
5786
+
5787
+ .w3eden .list-group-horizontal .list-group-item:first-child {
5788
+ border-bottom-left-radius: 0.25rem;
5789
+ border-top-right-radius: 0;
5790
+ }
5791
+
5792
+ .w3eden .list-group-horizontal .list-group-item:last-child {
5793
+ border-top-right-radius: 0.25rem;
5794
+ border-bottom-left-radius: 0;
5795
+ }
5796
+
5797
+ .w3eden .list-group-horizontal .list-group-item.active {
5798
+ margin-top: 0;
5799
+ }
5800
+
5801
+ .w3eden .list-group-horizontal .list-group-item + .list-group-item {
5802
+ border-top-width: 1px;
5803
+ border-left-width: 0;
5804
+ }
5805
+
5806
+ .w3eden .list-group-horizontal .list-group-item + .list-group-item.active {
5807
+ margin-left: -1px;
5808
+ border-left-width: 1px;
5809
+ }
5810
+
5811
+ @media (min-width: 576px) {
5812
+ .w3eden .list-group-horizontal-sm {
5813
+ -ms-flex-direction: row;
5814
+ flex-direction: row;
5815
+ }
5816
+
5817
+ .w3eden .list-group-horizontal-sm .list-group-item:first-child {
5818
+ border-bottom-left-radius: 0.25rem;
5819
+ border-top-right-radius: 0;
5820
+ }
5821
+
5822
+ .w3eden .list-group-horizontal-sm .list-group-item:last-child {
5823
+ border-top-right-radius: 0.25rem;
5824
+ border-bottom-left-radius: 0;
5825
+ }
5826
+
5827
+ .w3eden .list-group-horizontal-sm .list-group-item.active {
5828
+ margin-top: 0;
5829
+ }
5830
+
5831
+ .w3eden .list-group-horizontal-sm .list-group-item + .list-group-item {
5832
+ border-top-width: 1px;
5833
+ border-left-width: 0;
5834
+ }
5835
+
5836
+ .w3eden .list-group-horizontal-sm .list-group-item + .list-group-item.active {
5837
+ margin-left: -1px;
5838
+ border-left-width: 1px;
5839
+ }
5840
+ }
5841
+
5842
+ @media (min-width: 768px) {
5843
+ .w3eden .list-group-horizontal-md {
5844
+ -ms-flex-direction: row;
5845
+ flex-direction: row;
5846
+ }
5847
+
5848
+ .w3eden .list-group-horizontal-md .list-group-item:first-child {
5849
+ border-bottom-left-radius: 0.25rem;
5850
+ border-top-right-radius: 0;
5851
+ }
5852
+
5853
+ .w3eden .list-group-horizontal-md .list-group-item:last-child {
5854
+ border-top-right-radius: 0.25rem;
5855
+ border-bottom-left-radius: 0;
5856
+ }
5857
+
5858
+ .w3eden .list-group-horizontal-md .list-group-item.active {
5859
+ margin-top: 0;
5860
+ }
5861
+
5862
+ .w3eden .list-group-horizontal-md .list-group-item + .list-group-item {
5863
+ border-top-width: 1px;
5864
+ border-left-width: 0;
5865
+ }
5866
+
5867
+ .w3eden .list-group-horizontal-md .list-group-item + .list-group-item.active {
5868
+ margin-left: -1px;
5869
+ border-left-width: 1px;
5870
+ }
5871
+ }
5872
+
5873
+ @media (min-width: 992px) {
5874
+ .w3eden .list-group-horizontal-lg {
5875
+ -ms-flex-direction: row;
5876
+ flex-direction: row;
5877
+ }
5878
+
5879
+ .w3eden .list-group-horizontal-lg .list-group-item:first-child {
5880
+ border-bottom-left-radius: 0.25rem;
5881
+ border-top-right-radius: 0;
5882
+ }
5883
+
5884
+ .w3eden .list-group-horizontal-lg .list-group-item:last-child {
5885
+ border-top-right-radius: 0.25rem;
5886
+ border-bottom-left-radius: 0;
5887
+ }
5888
+
5889
+ .w3eden .list-group-horizontal-lg .list-group-item.active {
5890
+ margin-top: 0;
5891
+ }
5892
+
5893
+ .w3eden .list-group-horizontal-lg .list-group-item + .list-group-item {
5894
+ border-top-width: 1px;
5895
+ border-left-width: 0;
5896
+ }
5897
+
5898
+ .w3eden .list-group-horizontal-lg .list-group-item + .list-group-item.active {
5899
+ margin-left: -1px;
5900
+ border-left-width: 1px;
5901
+ }
5902
+ }
5903
+
5904
+ @media (min-width: 1200px) {
5905
+ .w3eden .list-group-horizontal-xl {
5906
+ -ms-flex-direction: row;
5907
+ flex-direction: row;
5908
+ }
5909
+
5910
+ .w3eden .list-group-horizontal-xl .list-group-item:first-child {
5911
+ border-bottom-left-radius: 0.25rem;
5912
+ border-top-right-radius: 0;
5913
+ }
5914
+
5915
+ .w3eden .list-group-horizontal-xl .list-group-item:last-child {
5916
+ border-top-right-radius: 0.25rem;
5917
+ border-bottom-left-radius: 0;
5918
+ }
5919
+
5920
+ .w3eden .list-group-horizontal-xl .list-group-item.active {
5921
+ margin-top: 0;
5922
+ }
5923
+
5924
+ .w3eden .list-group-horizontal-xl .list-group-item + .list-group-item {
5925
+ border-top-width: 1px;
5926
+ border-left-width: 0;
5927
+ }
5928
+
5929
+ .w3eden .list-group-horizontal-xl .list-group-item + .list-group-item.active {
5930
+ margin-left: -1px;
5931
+ border-left-width: 1px;
5932
+ }
5933
+ }
5934
+
5935
+ .w3eden .list-group-flush .list-group-item {
5936
+ border-right-width: 0;
5937
+ border-left-width: 0;
5938
+ border-radius: 0;
5939
+ }
5940
+
5941
+ .w3eden .list-group-flush .list-group-item:first-child {
5942
+ border-top-width: 0;
5943
+ }
5944
+
5945
+ .w3eden .list-group-flush:last-child .list-group-item:last-child {
5946
+ border-bottom-width: 0;
5947
+ }
5948
+
5949
+ .w3eden .list-group-item-primary {
5950
+ color: #004085;
5951
+ background-color: #b8daff;
5952
+ }
5953
+
5954
+ .w3eden .list-group-item-primary.list-group-item-action:hover, .w3eden .list-group-item-primary.list-group-item-action:focus {
5955
+ color: #004085;
5956
+ background-color: #9fcdff;
5957
+ }
5958
+
5959
+ .w3eden .list-group-item-primary.list-group-item-action.active {
5960
+ color: #fff;
5961
+ background-color: #004085;
5962
+ border-color: #004085;
5963
+ }
5964
+
5965
+ .w3eden .list-group-item-secondary {
5966
+ color: #383d41;
5967
+ background-color: #d6d8db;
5968
+ }
5969
+
5970
+ .w3eden .list-group-item-secondary.list-group-item-action:hover, .w3eden .list-group-item-secondary.list-group-item-action:focus {
5971
+ color: #383d41;
5972
+ background-color: #c8cbcf;
5973
+ }
5974
+
5975
+ .w3eden .list-group-item-secondary.list-group-item-action.active {
5976
+ color: #fff;
5977
+ background-color: #383d41;
5978
+ border-color: #383d41;
5979
+ }
5980
+
5981
+ .w3eden .list-group-item-success {
5982
+ color: #155724;
5983
+ background-color: #c3e6cb;
5984
+ }
5985
+
5986
+ .w3eden .list-group-item-success.list-group-item-action:hover, .w3eden .list-group-item-success.list-group-item-action:focus {
5987
+ color: #155724;
5988
+ background-color: #b1dfbb;
5989
+ }
5990
+
5991
+ .w3eden .list-group-item-success.list-group-item-action.active {
5992
+ color: #fff;
5993
+ background-color: #155724;
5994
+ border-color: #155724;
5995
+ }
5996
+
5997
+ .w3eden .list-group-item-info {
5998
+ color: #0c5460;
5999
+ background-color: #bee5eb;
6000
+ }
6001
+
6002
+ .w3eden .list-group-item-info.list-group-item-action:hover, .w3eden .list-group-item-info.list-group-item-action:focus {
6003
+ color: #0c5460;
6004
+ background-color: #abdde5;
6005
+ }
6006
+
6007
+ .w3eden .list-group-item-info.list-group-item-action.active {
6008
+ color: #fff;
6009
+ background-color: #0c5460;
6010
+ border-color: #0c5460;
6011
+ }
6012
+
6013
+ .w3eden .list-group-item-warning {
6014
+ color: #856404;
6015
+ background-color: #ffeeba;
6016
+ }
6017
+
6018
+ .w3eden .list-group-item-warning.list-group-item-action:hover, .w3eden .list-group-item-warning.list-group-item-action:focus {
6019
+ color: #856404;
6020
+ background-color: #ffe8a1;
6021
+ }
6022
+
6023
+ .w3eden .list-group-item-warning.list-group-item-action.active {
6024
+ color: #fff;
6025
+ background-color: #856404;
6026
+ border-color: #856404;
6027
+ }
6028
+
6029
+ .w3eden .list-group-item-danger {
6030
+ color: #721c24;
6031
+ background-color: #f5c6cb;
6032
+ }
6033
+
6034
+ .w3eden .list-group-item-danger.list-group-item-action:hover, .w3eden .list-group-item-danger.list-group-item-action:focus {
6035
+ color: #721c24;
6036
+ background-color: #f1b0b7;
6037
+ }
6038
+
6039
+ .w3eden .list-group-item-danger.list-group-item-action.active {
6040
+ color: #fff;
6041
+ background-color: #721c24;
6042
+ border-color: #721c24;
6043
+ }
6044
+
6045
+ .w3eden .list-group-item-light {
6046
+ color: #818182;
6047
+ background-color: #fdfdfe;
6048
+ }
6049
+
6050
+ .w3eden .list-group-item-light.list-group-item-action:hover, .w3eden .list-group-item-light.list-group-item-action:focus {
6051
+ color: #818182;
6052
+ background-color: #ececf6;
6053
+ }
6054
+
6055
+ .w3eden .list-group-item-light.list-group-item-action.active {
6056
+ color: #fff;
6057
+ background-color: #818182;
6058
+ border-color: #818182;
6059
+ }
6060
+
6061
+ .w3eden .list-group-item-dark {
6062
+ color: #1b1e21;
6063
+ background-color: #c6c8ca;
6064
+ }
6065
+
6066
+ .w3eden .list-group-item-dark.list-group-item-action:hover, .w3eden .list-group-item-dark.list-group-item-action:focus {
6067
+ color: #1b1e21;
6068
+ background-color: #b9bbbe;
6069
+ }
6070
+
6071
+ .w3eden .list-group-item-dark.list-group-item-action.active {
6072
+ color: #fff;
6073
+ background-color: #1b1e21;
6074
+ border-color: #1b1e21;
6075
+ }
6076
+
6077
+ .w3eden .close {
6078
+ float: right;
6079
+ font-size: 1.5rem;
6080
+ font-weight: 700;
6081
+ line-height: 1;
6082
+ color: #000;
6083
+ text-shadow: 0 1px 0 #fff;
6084
+ opacity: .5;
6085
+ }
6086
+
6087
+ .w3eden .close:hover {
6088
+ color: #000;
6089
+ text-decoration: none;
6090
+ }
6091
+
6092
+ .w3eden .close:not(:disabled):not(.disabled):hover, .w3eden .close:not(:disabled):not(.disabled):focus {
6093
+ opacity: .75;
6094
+ }
6095
+
6096
+ .w3eden button.close {
6097
+ padding: 0;
6098
+ background-color: transparent;
6099
+ border: 0;
6100
+ -webkit-appearance: none;
6101
+ -moz-appearance: none;
6102
+ appearance: none;
6103
+ }
6104
+
6105
+ .w3eden a.close.disabled {
6106
+ pointer-events: none;
6107
+ }
6108
+
6109
+ .w3eden .toast {
6110
+ max-width: 350px;
6111
+ overflow: hidden;
6112
+ font-size: 0.875rem;
6113
+ background-color: rgba(255, 255, 255, 0.85);
6114
+ background-clip: padding-box;
6115
+ border: 1px solid rgba(0, 0, 0, 0.1);
6116
+ box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
6117
+ -webkit-backdrop-filter: blur(10px);
6118
+ backdrop-filter: blur(10px);
6119
+ opacity: 0;
6120
+ border-radius: 0.25rem;
6121
+ }
6122
+
6123
+ .w3eden .toast:not(:last-child) {
6124
+ margin-bottom: 0.75rem;
6125
+ }
6126
+
6127
+ .w3eden .toast.showing {
6128
+ opacity: 1;
6129
+ }
6130
+
6131
+ .w3eden .toast.show {
6132
+ display: block;
6133
+ opacity: 1;
6134
+ }
6135
+
6136
+ .w3eden .toast.hide {
6137
+ display: none;
6138
+ }
6139
+
6140
+ .w3eden .toast-header {
6141
+ display: -ms-flexbox;
6142
+ display: flex;
6143
+ -ms-flex-align: center;
6144
+ align-items: center;
6145
+ padding: 0.25rem 0.75rem;
6146
+ color: #6c757d;
6147
+ background-color: rgba(255, 255, 255, 0.85);
6148
+ background-clip: padding-box;
6149
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
6150
+ }
6151
+
6152
+ .w3eden .toast-body {
6153
+ padding: 0.75rem;
6154
+ }
6155
+
6156
+ .w3eden .modal-open {
6157
+ overflow: hidden;
6158
+ }
6159
+
6160
+ .w3eden .modal-open .modal {
6161
+ overflow-x: hidden;
6162
+ overflow-y: auto;
6163
+ }
6164
+
6165
+ .w3eden .modal {
6166
+ position: fixed;
6167
+ top: 0;
6168
+ left: 0;
6169
+ z-index: 1050;
6170
+ display: none;
6171
+ width: 100%;
6172
+ height: 100%;
6173
+ overflow: hidden;
6174
+ outline: 0;
6175
+ }
6176
+
6177
+ .w3eden .modal-dialog {
6178
+ position: relative;
6179
+ width: auto;
6180
+ margin: 0.5rem;
6181
+ pointer-events: none;
6182
+ }
6183
+
6184
+ .w3eden .modal.fade .modal-dialog {
6185
+ transition: -webkit-transform 0.3s ease-out;
6186
+ transition: transform 0.3s ease-out;
6187
+ transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
6188
+ -webkit-transform: translate(0, -50px);
6189
+ transform: translate(0, -50px);
6190
+ }
6191
+
6192
+ @media (prefers-reduced-motion: reduce) {
6193
+ .w3eden .modal.fade .modal-dialog {
6194
+ transition: none;
6195
+ }
6196
+ }
6197
+
6198
+ .w3eden .modal.show .modal-dialog {
6199
+ -webkit-transform: none;
6200
+ transform: none;
6201
+ }
6202
+
6203
+ .w3eden .modal.modal-static .modal-dialog {
6204
+ -webkit-transform: scale(1.02);
6205
+ transform: scale(1.02);
6206
+ }
6207
+
6208
+ .w3eden .modal-dialog-scrollable {
6209
+ display: -ms-flexbox;
6210
+ display: flex;
6211
+ max-height: calc(100% - 1rem);
6212
+ }
6213
+
6214
+ .w3eden .modal-dialog-scrollable .modal-content {
6215
+ max-height: calc(100vh - 1rem);
6216
+ overflow: hidden;
6217
+ }
6218
+
6219
+ .w3eden .modal-dialog-scrollable .modal-header,
6220
+ .w3eden .modal-dialog-scrollable .modal-footer {
6221
+ -ms-flex-negative: 0;
6222
+ flex-shrink: 0;
6223
+ }
6224
+
6225
+ .w3eden .modal-dialog-scrollable .modal-body {
6226
+ overflow-y: auto;
6227
+ }
6228
+
6229
+ .w3eden .modal-dialog-centered {
6230
+ display: -ms-flexbox;
6231
+ display: flex;
6232
+ -ms-flex-align: center;
6233
+ align-items: center;
6234
+ min-height: calc(100% - 1rem);
6235
+ }
6236
+
6237
+ .w3eden .modal-dialog-centered::before {
6238
+ display: block;
6239
+ height: calc(100vh - 1rem);
6240
+ content: "";
6241
+ }
6242
+
6243
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable {
6244
+ -ms-flex-direction: column;
6245
+ flex-direction: column;
6246
+ -ms-flex-pack: center;
6247
+ justify-content: center;
6248
+ height: 100%;
6249
+ }
6250
+
6251
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable .modal-content {
6252
+ max-height: none;
6253
+ }
6254
+
6255
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable::before {
6256
+ content: none;
6257
+ }
6258
+
6259
+ .w3eden .modal-content {
6260
+ position: relative;
6261
+ display: -ms-flexbox;
6262
+ display: flex;
6263
+ -ms-flex-direction: column;
6264
+ flex-direction: column;
6265
+ width: 100%;
6266
+ pointer-events: auto;
6267
+ background-color: #fff;
6268
+ background-clip: padding-box;
6269
+ border: 1px solid rgba(0, 0, 0, 0.2);
6270
+ border-radius: 0.3rem;
6271
+ outline: 0;
6272
+ }
6273
+
6274
+ .modal-backdrop {
6275
+ position: fixed;
6276
+ top: 0;
6277
+ left: 0;
6278
+ z-index: 1040;
6279
+ width: 100vw;
6280
+ height: 100vh;
6281
+ background-color: #000;
6282
+ }
6283
+
6284
+ .modal-backdrop.fade {
6285
+ opacity: 0;
6286
+ }
6287
+
6288
+ .modal-backdrop.show {
6289
+ opacity: 0.5;
6290
+ }
6291
+
6292
+ .w3eden .modal-header {
6293
+ display: -ms-flexbox;
6294
+ display: flex;
6295
+ -ms-flex-align: start;
6296
+ align-items: flex-start;
6297
+ -ms-flex-pack: justify;
6298
+ justify-content: space-between;
6299
+ padding: 1rem 1rem;
6300
+ border-bottom: 1px solid #dee2e6;
6301
+ border-top-left-radius: calc(0.3rem - 1px);
6302
+ border-top-right-radius: calc(0.3rem - 1px);
6303
+ }
6304
+
6305
+ .w3eden .modal-header .close {
6306
+ padding: 1rem 1rem;
6307
+ margin: -1rem -1rem -1rem auto;
6308
+ }
6309
+
6310
+ .w3eden .modal-title {
6311
+ margin-bottom: 0;
6312
+ line-height: 1.5;
6313
+ }
6314
+
6315
+ .w3eden .modal-body {
6316
+ position: relative;
6317
+ -ms-flex: 1 1 auto;
6318
+ flex: 1 1 auto;
6319
+ padding: 1rem;
6320
+ }
6321
+
6322
+ .w3eden .modal-footer {
6323
+ display: -ms-flexbox;
6324
+ display: flex;
6325
+ -ms-flex-wrap: wrap;
6326
+ flex-wrap: wrap;
6327
+ -ms-flex-align: center;
6328
+ align-items: center;
6329
+ -ms-flex-pack: end;
6330
+ justify-content: flex-end;
6331
+ padding: 0.75rem;
6332
+ border-top: 1px solid #dee2e6;
6333
+ border-bottom-right-radius: calc(0.3rem - 1px);
6334
+ border-bottom-left-radius: calc(0.3rem - 1px);
6335
+ }
6336
+
6337
+ .w3eden .modal-footer > * {
6338
+ margin: 0.25rem;
6339
+ }
6340
+
6341
+ .w3eden .modal-scrollbar-measure {
6342
+ position: absolute;
6343
+ top: -9999px;
6344
+ width: 50px;
6345
+ height: 50px;
6346
+ overflow: scroll;
6347
+ }
6348
+
6349
+ @media (min-width: 576px) {
6350
+ .w3eden .modal-dialog {
6351
+ max-width: 500px;
6352
+ margin: 1.75rem auto;
6353
+ }
6354
+
6355
+ .w3eden .modal-dialog-scrollable {
6356
+ max-height: calc(100% - 3.5rem);
6357
+ }
6358
+
6359
+ .w3eden .modal-dialog-scrollable .modal-content {
6360
+ max-height: calc(100vh - 3.5rem);
6361
+ }
6362
+
6363
+ .w3eden .modal-dialog-centered {
6364
+ min-height: calc(100% - 3.5rem);
6365
+ }
6366
+
6367
+ .w3eden .modal-dialog-centered::before {
6368
+ height: calc(100vh - 3.5rem);
6369
+ }
6370
+
6371
+ .w3eden .modal-sm {
6372
+ max-width: 300px;
6373
+ }
6374
+ }
6375
+
6376
+ @media (min-width: 992px) {
6377
+ .w3eden .modal-lg,
6378
+ .w3eden .modal-xl {
6379
+ max-width: 800px;
6380
+ }
6381
+ }
6382
+
6383
+ @media (min-width: 1200px) {
6384
+ .w3eden .modal-xl {
6385
+ max-width: 1140px;
6386
+ }
6387
+ }
6388
+
6389
+ .w3eden .tooltip {
6390
+ position: absolute;
6391
+ z-index: 1070;
6392
+ display: block;
6393
+ margin: 0;
6394
+ font-family: -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";
6395
+ font-style: normal;
6396
+ font-weight: 400;
6397
+ line-height: 1.5;
6398
+ text-align: left;
6399
+ text-align: start;
6400
+ text-decoration: none;
6401
+ text-shadow: none;
6402
+ text-transform: none;
6403
+ letter-spacing: normal;
6404
+ word-break: normal;
6405
+ word-spacing: normal;
6406
+ white-space: normal;
6407
+ line-break: auto;
6408
+ font-size: 0.875rem;
6409
+ word-wrap: break-word;
6410
+ opacity: 0;
6411
+ }
6412
+
6413
+ .w3eden .tooltip.show {
6414
+ opacity: 0.9;
6415
+ }
6416
+
6417
+ .w3eden .tooltip .arrow {
6418
+ position: absolute;
6419
+ display: block;
6420
+ width: 0.8rem;
6421
+ height: 0.4rem;
6422
+ }
6423
+
6424
+ .w3eden .tooltip .arrow::before {
6425
+ position: absolute;
6426
+ content: "";
6427
+ border-color: transparent;
6428
+ border-style: solid;
6429
+ }
6430
+
6431
+ .w3eden .bs-tooltip-top, .w3eden .bs-tooltip-auto[x-placement^="top"] {
6432
+ padding: 0.4rem 0;
6433
+ }
6434
+
6435
+ .w3eden .bs-tooltip-top .arrow, .w3eden .bs-tooltip-auto[x-placement^="top"] .arrow {
6436
+ bottom: 0;
6437
+ }
6438
+
6439
+ .w3eden .bs-tooltip-top .arrow::before, .w3eden .bs-tooltip-auto[x-placement^="top"] .arrow::before {
6440
+ top: 0;
6441
+ border-width: 0.4rem 0.4rem 0;
6442
+ border-top-color: #000;
6443
+ }
6444
+
6445
+ .w3eden .bs-tooltip-right, .w3eden .bs-tooltip-auto[x-placement^="right"] {
6446
+ padding: 0 0.4rem;
6447
+ }
6448
+
6449
+ .w3eden .bs-tooltip-right .arrow, .w3eden .bs-tooltip-auto[x-placement^="right"] .arrow {
6450
+ left: 0;
6451
+ width: 0.4rem;
6452
+ height: 0.8rem;
6453
+ }
6454
+
6455
+ .w3eden .bs-tooltip-right .arrow::before, .w3eden .bs-tooltip-auto[x-placement^="right"] .arrow::before {
6456
+ right: 0;
6457
+ border-width: 0.4rem 0.4rem 0.4rem 0;
6458
+ border-right-color: #000;
6459
+ }
6460
+
6461
+ .w3eden .bs-tooltip-bottom, .w3eden .bs-tooltip-auto[x-placement^="bottom"] {
6462
+ padding: 0.4rem 0;
6463
+ }
6464
+
6465
+ .w3eden .bs-tooltip-bottom .arrow, .w3eden .bs-tooltip-auto[x-placement^="bottom"] .arrow {
6466
+ top: 0;
6467
+ }
6468
+
6469
+ .w3eden .bs-tooltip-bottom .arrow::before, .w3eden .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
6470
+ bottom: 0;
6471
+ border-width: 0 0.4rem 0.4rem;
6472
+ border-bottom-color: #000;
6473
+ }
6474
+
6475
+ .w3eden .bs-tooltip-left, .w3eden .bs-tooltip-auto[x-placement^="left"] {
6476
+ padding: 0 0.4rem;
6477
+ }
6478
+
6479
+ .w3eden .bs-tooltip-left .arrow, .w3eden .bs-tooltip-auto[x-placement^="left"] .arrow {
6480
+ right: 0;
6481
+ width: 0.4rem;
6482
+ height: 0.8rem;
6483
+ }
6484
+
6485
+ .w3eden .bs-tooltip-left .arrow::before, .w3eden .bs-tooltip-auto[x-placement^="left"] .arrow::before {
6486
+ left: 0;
6487
+ border-width: 0.4rem 0 0.4rem 0.4rem;
6488
+ border-left-color: #000;
6489
+ }
6490
+
6491
+ .w3eden .tooltip-inner {
6492
+ max-width: 200px;
6493
+ padding: 0.25rem 0.5rem;
6494
+ color: #fff;
6495
+ text-align: center;
6496
+ background-color: #000;
6497
+ border-radius: 0.25rem;
6498
+ }
6499
+
6500
+ .w3eden .popover {
6501
+ position: absolute;
6502
+ top: 0;
6503
+ left: 0;
6504
+ z-index: 1060;
6505
+ display: block;
6506
+ max-width: 276px;
6507
+ font-family: -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";
6508
+ font-style: normal;
6509
+ font-weight: 400;
6510
+ line-height: 1.5;
6511
+ text-align: left;
6512
+ text-align: start;
6513
+ text-decoration: none;
6514
+ text-shadow: none;
6515
+ text-transform: none;
6516
+ letter-spacing: normal;
6517
+ word-break: normal;
6518
+ word-spacing: normal;
6519
+ white-space: normal;
6520
+ line-break: auto;
6521
+ font-size: 0.875rem;
6522
+ word-wrap: break-word;
6523
+ background-color: #fff;
6524
+ background-clip: padding-box;
6525
+ border: 1px solid rgba(0, 0, 0, 0.2);
6526
+ border-radius: 0.3rem;
6527
+ }
6528
+
6529
+ .w3eden .popover .arrow {
6530
+ position: absolute;
6531
+ display: block;
6532
+ width: 1rem;
6533
+ height: 0.5rem;
6534
+ margin: 0 0.3rem;
6535
+ }
6536
+
6537
+ .w3eden .popover .arrow::before, .w3eden .popover .arrow::after {
6538
+ position: absolute;
6539
+ display: block;
6540
+ content: "";
6541
+ border-color: transparent;
6542
+ border-style: solid;
6543
+ }
6544
+
6545
+ .w3eden .bs-popover-top, .w3eden .bs-popover-auto[x-placement^="top"] {
6546
+ margin-bottom: 0.5rem;
6547
+ }
6548
+
6549
+ .w3eden .bs-popover-top > .arrow, .w3eden .bs-popover-auto[x-placement^="top"] > .arrow {
6550
+ bottom: calc(-0.5rem - 1px);
6551
+ }
6552
+
6553
+ .w3eden .bs-popover-top > .arrow::before, .w3eden .bs-popover-auto[x-placement^="top"] > .arrow::before {
6554
+ bottom: 0;
6555
+ border-width: 0.5rem 0.5rem 0;
6556
+ border-top-color: rgba(0, 0, 0, 0.25);
6557
+ }
6558
+
6559
+ .w3eden .bs-popover-top > .arrow::after, .w3eden .bs-popover-auto[x-placement^="top"] > .arrow::after {
6560
+ bottom: 1px;
6561
+ border-width: 0.5rem 0.5rem 0;
6562
+ border-top-color: #fff;
6563
+ }
6564
+
6565
+ .w3eden .bs-popover-right, .w3eden .bs-popover-auto[x-placement^="right"] {
6566
+ margin-left: 0.5rem;
6567
+ }
6568
+
6569
+ .w3eden .bs-popover-right > .arrow, .w3eden .bs-popover-auto[x-placement^="right"] > .arrow {
6570
+ left: calc(-0.5rem - 1px);
6571
+ width: 0.5rem;
6572
+ height: 1rem;
6573
+ margin: 0.3rem 0;
6574
+ }
6575
+
6576
+ .w3eden .bs-popover-right > .arrow::before, .w3eden .bs-popover-auto[x-placement^="right"] > .arrow::before {
6577
+ left: 0;
6578
+ border-width: 0.5rem 0.5rem 0.5rem 0;
6579
+ border-right-color: rgba(0, 0, 0, 0.25);
6580
+ }
6581
+
6582
+ .w3eden .bs-popover-right > .arrow::after, .w3eden .bs-popover-auto[x-placement^="right"] > .arrow::after {
6583
+ left: 1px;
6584
+ border-width: 0.5rem 0.5rem 0.5rem 0;
6585
+ border-right-color: #fff;
6586
+ }
6587
+
6588
+ .w3eden .bs-popover-bottom, .w3eden .bs-popover-auto[x-placement^="bottom"] {
6589
+ margin-top: 0.5rem;
6590
+ }
6591
+
6592
+ .w3eden .bs-popover-bottom > .arrow, .w3eden .bs-popover-auto[x-placement^="bottom"] > .arrow {
6593
+ top: calc(-0.5rem - 1px);
6594
+ }
6595
+
6596
+ .w3eden .bs-popover-bottom > .arrow::before, .w3eden .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
6597
+ top: 0;
6598
+ border-width: 0 0.5rem 0.5rem 0.5rem;
6599
+ border-bottom-color: rgba(0, 0, 0, 0.25);
6600
+ }
6601
+
6602
+ .w3eden .bs-popover-bottom > .arrow::after, .w3eden .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
6603
+ top: 1px;
6604
+ border-width: 0 0.5rem 0.5rem 0.5rem;
6605
+ border-bottom-color: #fff;
6606
+ }
6607
+
6608
+ .w3eden .bs-popover-bottom .popover-header::before, .w3eden .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
6609
+ position: absolute;
6610
+ top: 0;
6611
+ left: 50%;
6612
+ display: block;
6613
+ width: 1rem;
6614
+ margin-left: -0.5rem;
6615
+ content: "";
6616
+ border-bottom: 1px solid #f7f7f7;
6617
+ }
6618
+
6619
+ .w3eden .bs-popover-left, .w3eden .bs-popover-auto[x-placement^="left"] {
6620
+ margin-right: 0.5rem;
6621
+ }
6622
+
6623
+ .w3eden .bs-popover-left > .arrow, .w3eden .bs-popover-auto[x-placement^="left"] > .arrow {
6624
+ right: calc(-0.5rem - 1px);
6625
+ width: 0.5rem;
6626
+ height: 1rem;
6627
+ margin: 0.3rem 0;
6628
+ }
6629
+
6630
+ .w3eden .bs-popover-left > .arrow::before, .w3eden .bs-popover-auto[x-placement^="left"] > .arrow::before {
6631
+ right: 0;
6632
+ border-width: 0.5rem 0 0.5rem 0.5rem;
6633
+ border-left-color: rgba(0, 0, 0, 0.25);
6634
+ }
6635
+
6636
+ .w3eden .bs-popover-left > .arrow::after, .w3eden .bs-popover-auto[x-placement^="left"] > .arrow::after {
6637
+ right: 1px;
6638
+ border-width: 0.5rem 0 0.5rem 0.5rem;
6639
+ border-left-color: #fff;
6640
+ }
6641
+
6642
+ .w3eden .popover-header {
6643
+ padding: 0.5rem 0.75rem;
6644
+ margin-bottom: 0;
6645
+ font-size: 1rem;
6646
+ background-color: #f7f7f7;
6647
+ border-bottom: 1px solid #ebebeb;
6648
+ border-top-left-radius: calc(0.3rem - 1px);
6649
+ border-top-right-radius: calc(0.3rem - 1px);
6650
+ }
6651
+
6652
+ .w3eden .popover-header:empty {
6653
+ display: none;
6654
+ }
6655
+
6656
+ .w3eden .popover-body {
6657
+ padding: 0.5rem 0.75rem;
6658
+ color: #212529;
6659
+ }
6660
+
6661
+ .w3eden .carousel {
6662
+ position: relative;
6663
+ }
6664
+
6665
+ .w3eden .carousel.pointer-event {
6666
+ -ms-touch-action: pan-y;
6667
+ touch-action: pan-y;
6668
+ }
6669
+
6670
+ .w3eden .carousel-inner {
6671
+ position: relative;
6672
+ width: 100%;
6673
+ overflow: hidden;
6674
+ }
6675
+
6676
+ .w3eden .carousel-inner::after {
6677
+ display: block;
6678
+ clear: both;
6679
+ content: "";
6680
+ }
6681
+
6682
+ .w3eden .carousel-item {
6683
+ position: relative;
6684
+ display: none;
6685
+ float: left;
6686
+ width: 100%;
6687
+ margin-right: -100%;
6688
+ -webkit-backface-visibility: hidden;
6689
+ backface-visibility: hidden;
6690
+ transition: -webkit-transform 0.6s ease-in-out;
6691
+ transition: transform 0.6s ease-in-out;
6692
+ transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
6693
+ }
6694
+
6695
+ @media (prefers-reduced-motion: reduce) {
6696
+ .w3eden .carousel-item {
6697
+ transition: none;
6698
+ }
6699
+ }
6700
+
6701
+ .w3eden .carousel-item.active,
6702
+ .w3eden .carousel-item-next,
6703
+ .w3eden .carousel-item-prev {
6704
+ display: block;
6705
+ }
6706
+
6707
+ .w3eden .carousel-item-next:not(.carousel-item-left),
6708
+ .w3eden .active.carousel-item-right {
6709
+ -webkit-transform: translateX(100%);
6710
+ transform: translateX(100%);
6711
+ }
6712
+
6713
+ .w3eden .carousel-item-prev:not(.carousel-item-right),
6714
+ .w3eden .active.carousel-item-left {
6715
+ -webkit-transform: translateX(-100%);
6716
+ transform: translateX(-100%);
6717
+ }
6718
+
6719
+ .w3eden .carousel-fade .carousel-item {
6720
+ opacity: 0;
6721
+ transition-property: opacity;
6722
+ -webkit-transform: none;
6723
+ transform: none;
6724
+ }
6725
+
6726
+ .w3eden .carousel-fade .carousel-item.active,
6727
+ .w3eden .carousel-fade .carousel-item-next.carousel-item-left,
6728
+ .w3eden .carousel-fade .carousel-item-prev.carousel-item-right {
6729
+ z-index: 1;
6730
+ opacity: 1;
6731
+ }
6732
+
6733
+ .w3eden .carousel-fade .active.carousel-item-left,
6734
+ .w3eden .carousel-fade .active.carousel-item-right {
6735
+ z-index: 0;
6736
+ opacity: 0;
6737
+ transition: opacity 0s 0.6s;
6738
+ }
6739
+
6740
+ @media (prefers-reduced-motion: reduce) {
6741
+ .w3eden .carousel-fade .active.carousel-item-left,
6742
+ .w3eden .carousel-fade .active.carousel-item-right {
6743
+ transition: none;
6744
+ }
6745
+ }
6746
+
6747
+ .w3eden .carousel-control-prev,
6748
+ .w3eden .carousel-control-next {
6749
+ position: absolute;
6750
+ top: 0;
6751
+ bottom: 0;
6752
+ z-index: 1;
6753
+ display: -ms-flexbox;
6754
+ display: flex;
6755
+ -ms-flex-align: center;
6756
+ align-items: center;
6757
+ -ms-flex-pack: center;
6758
+ justify-content: center;
6759
+ width: 15%;
6760
+ color: #fff;
6761
+ text-align: center;
6762
+ opacity: 0.5;
6763
+ transition: opacity 0.15s ease;
6764
+ }
6765
+
6766
+ @media (prefers-reduced-motion: reduce) {
6767
+ .w3eden .carousel-control-prev,
6768
+ .w3eden .carousel-control-next {
6769
+ transition: none;
6770
+ }
6771
+ }
6772
+
6773
+ .w3eden .carousel-control-prev:hover, .w3eden .carousel-control-prev:focus,
6774
+ .w3eden .carousel-control-next:hover,
6775
+ .w3eden .carousel-control-next:focus {
6776
+ color: #fff;
6777
+ text-decoration: none;
6778
+ outline: 0;
6779
+ opacity: 0.9;
6780
+ }
6781
+
6782
+ .w3eden .carousel-control-prev {
6783
+ left: 0;
6784
+ }
6785
+
6786
+ .w3eden .carousel-control-next {
6787
+ right: 0;
6788
+ }
6789
+
6790
+ .w3eden .carousel-control-prev-icon,
6791
+ .w3eden .carousel-control-next-icon {
6792
+ display: inline-block;
6793
+ width: 20px;
6794
+ height: 20px;
6795
+ background: no-repeat 50% / 100% 100%;
6796
+ }
6797
+
6798
+ .w3eden .carousel-control-prev-icon {
6799
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
6800
+ }
6801
+
6802
+ .w3eden .carousel-control-next-icon {
6803
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
6804
+ }
6805
+
6806
+ .w3eden .carousel-indicators {
6807
+ position: absolute;
6808
+ right: 0;
6809
+ bottom: 0;
6810
+ left: 0;
6811
+ z-index: 15;
6812
+ display: -ms-flexbox;
6813
+ display: flex;
6814
+ -ms-flex-pack: center;
6815
+ justify-content: center;
6816
+ padding-left: 0;
6817
+ margin-right: 15%;
6818
+ margin-left: 15%;
6819
+ list-style: none;
6820
+ }
6821
+
6822
+ .w3eden .carousel-indicators li {
6823
+ box-sizing: content-box;
6824
+ -ms-flex: 0 1 auto;
6825
+ flex: 0 1 auto;
6826
+ width: 30px;
6827
+ height: 3px;
6828
+ margin-right: 3px;
6829
+ margin-left: 3px;
6830
+ text-indent: -999px;
6831
+ cursor: pointer;
6832
+ background-color: #fff;
6833
+ background-clip: padding-box;
6834
+ border-top: 10px solid transparent;
6835
+ border-bottom: 10px solid transparent;
6836
+ opacity: .5;
6837
+ transition: opacity 0.6s ease;
6838
+ }
6839
+
6840
+ @media (prefers-reduced-motion: reduce) {
6841
+ .w3eden .carousel-indicators li {
6842
+ transition: none;
6843
+ }
6844
+ }
6845
+
6846
+ .w3eden .carousel-indicators .active {
6847
+ opacity: 1;
6848
+ }
6849
+
6850
+ .w3eden .carousel-caption {
6851
+ position: absolute;
6852
+ right: 15%;
6853
+ bottom: 20px;
6854
+ left: 15%;
6855
+ z-index: 10;
6856
+ padding-top: 20px;
6857
+ padding-bottom: 20px;
6858
+ color: #fff;
6859
+ text-align: center;
6860
+ }
6861
+
6862
+ @-webkit-keyframes spinner-border {
6863
+ to {
6864
+ -webkit-transform: rotate(360deg);
6865
+ transform: rotate(360deg);
6866
+ }
6867
+ }
6868
+
6869
+ @keyframes spinner-border {
6870
+ to {
6871
+ -webkit-transform: rotate(360deg);
6872
+ transform: rotate(360deg);
6873
+ }
6874
+ }
6875
+
6876
+ .w3eden .spinner-border {
6877
+ display: inline-block;
6878
+ width: 2rem;
6879
+ height: 2rem;
6880
+ vertical-align: text-bottom;
6881
+ border: 0.25em solid currentColor;
6882
+ border-right-color: transparent;
6883
+ border-radius: 50%;
6884
+ -webkit-animation: spinner-border .75s linear infinite;
6885
+ animation: spinner-border .75s linear infinite;
6886
+ }
6887
+
6888
+ .w3eden .spinner-border-sm {
6889
+ width: 1rem;
6890
+ height: 1rem;
6891
+ border-width: 0.2em;
6892
+ }
6893
+
6894
+ @-webkit-keyframes spinner-grow {
6895
+ 0% {
6896
+ -webkit-transform: scale(0);
6897
+ transform: scale(0);
6898
+ }
6899
+ 50% {
6900
+ opacity: 1;
6901
+ }
6902
+ }
6903
+
6904
+ @keyframes spinner-grow {
6905
+ 0% {
6906
+ -webkit-transform: scale(0);
6907
+ transform: scale(0);
6908
+ }
6909
+ 50% {
6910
+ opacity: 1;
6911
+ }
6912
+ }
6913
+
6914
+ .w3eden .spinner-grow {
6915
+ display: inline-block;
6916
+ width: 2rem;
6917
+ height: 2rem;
6918
+ vertical-align: text-bottom;
6919
+ background-color: currentColor;
6920
+ border-radius: 50%;
6921
+ opacity: 0;
6922
+ -webkit-animation: spinner-grow .75s linear infinite;
6923
+ animation: spinner-grow .75s linear infinite;
6924
+ }
6925
+
6926
+ .w3eden .spinner-grow-sm {
6927
+ width: 1rem;
6928
+ height: 1rem;
6929
+ }
6930
+
6931
+ .w3eden .align-baseline {
6932
+ vertical-align: baseline !important;
6933
+ }
6934
+
6935
+ .w3eden .align-top {
6936
+ vertical-align: top !important;
6937
+ }
6938
+
6939
+ .w3eden .align-middle {
6940
+ vertical-align: middle !important;
6941
+ }
6942
+
6943
+ .w3eden .align-bottom {
6944
+ vertical-align: bottom !important;
6945
+ }
6946
+
6947
+ .w3eden .align-text-bottom {
6948
+ vertical-align: text-bottom !important;
6949
+ }
6950
+
6951
+ .w3eden .align-text-top {
6952
+ vertical-align: text-top !important;
6953
+ }
6954
+
6955
+ .w3eden .bg-primary {
6956
+ background-color: #007bff !important;
6957
+ }
6958
+
6959
+ .w3eden a.bg-primary:hover, .w3eden a.bg-primary:focus,
6960
+ .w3eden button.bg-primary:hover,
6961
+ .w3eden button.bg-primary:focus {
6962
+ background-color: #0062cc !important;
6963
+ }
6964
+
6965
+ .w3eden .bg-secondary {
6966
+ background-color: #6c757d !important;
6967
+ }
6968
+
6969
+ .w3eden a.bg-secondary:hover, .w3eden a.bg-secondary:focus,
6970
+ .w3eden button.bg-secondary:hover,
6971
+ .w3eden button.bg-secondary:focus {
6972
+ background-color: #545b62 !important;
6973
+ }
6974
+
6975
+ .w3eden .bg-success {
6976
+ background-color: #28a745 !important;
6977
+ }
6978
+
6979
+ .w3eden a.bg-success:hover, .w3eden a.bg-success:focus,
6980
+ .w3eden button.bg-success:hover,
6981
+ .w3eden button.bg-success:focus {
6982
+ background-color: #1e7e34 !important;
6983
+ }
6984
+
6985
+ .w3eden .bg-info {
6986
+ background-color: #17a2b8 !important;
6987
+ }
6988
+
6989
+ .w3eden a.bg-info:hover, .w3eden a.bg-info:focus,
6990
+ .w3eden button.bg-info:hover,
6991
+ .w3eden button.bg-info:focus {
6992
+ background-color: #117a8b !important;
6993
+ }
6994
+
6995
+ .w3eden .bg-warning {
6996
+ background-color: #ffc107 !important;
6997
+ }
6998
+
6999
+ .w3eden a.bg-warning:hover, .w3eden a.bg-warning:focus,
7000
+ .w3eden button.bg-warning:hover,
7001
+ .w3eden button.bg-warning:focus {
7002
+ background-color: #d39e00 !important;
7003
+ }
7004
+
7005
+ .w3eden .bg-danger {
7006
+ background-color: #dc3545 !important;
7007
+ }
7008
+
7009
+ .w3eden a.bg-danger:hover, .w3eden a.bg-danger:focus,
7010
+ .w3eden button.bg-danger:hover,
7011
+ .w3eden button.bg-danger:focus {
7012
+ background-color: #bd2130 !important;
7013
+ }
7014
+
7015
+ .w3eden .bg-light {
7016
+ background-color: #f8f9fa !important;
7017
+ }
7018
+
7019
+ .w3eden a.bg-light:hover, .w3eden a.bg-light:focus,
7020
+ .w3eden button.bg-light:hover,
7021
+ .w3eden button.bg-light:focus {
7022
+ background-color: #dae0e5 !important;
7023
+ }
7024
+
7025
+ .w3eden .bg-dark {
7026
+ background-color: #343a40 !important;
7027
+ }
7028
+
7029
+ .w3eden a.bg-dark:hover, .w3eden a.bg-dark:focus,
7030
+ .w3eden button.bg-dark:hover,
7031
+ .w3eden button.bg-dark:focus {
7032
+ background-color: #1d2124 !important;
7033
+ }
7034
+
7035
+ .w3eden .bg-white {
7036
+ background-color: #fff !important;
7037
+ }
7038
+
7039
+ .w3eden .bg-transparent {
7040
+ background-color: transparent !important;
7041
+ }
7042
+
7043
+ .w3eden .border {
7044
+ border: 1px solid #dee2e6 !important;
7045
+ }
7046
+
7047
+ .w3eden .border-top {
7048
+ border-top: 1px solid #dee2e6 !important;
7049
+ }
7050
+
7051
+ .w3eden .border-right {
7052
+ border-right: 1px solid #dee2e6 !important;
7053
+ }
7054
+
7055
+ .w3eden .border-bottom {
7056
+ border-bottom: 1px solid #dee2e6 !important;
7057
+ }
7058
+
7059
+ .w3eden .border-left {
7060
+ border-left: 1px solid #dee2e6 !important;
7061
+ }
7062
+
7063
+ .w3eden .border-0 {
7064
+ border: 0 !important;
7065
+ }
7066
+
7067
+ .w3eden .border-top-0 {
7068
+ border-top: 0 !important;
7069
+ }
7070
+
7071
+ .w3eden .border-right-0 {
7072
+ border-right: 0 !important;
7073
+ }
7074
+
7075
+ .w3eden .border-bottom-0 {
7076
+ border-bottom: 0 !important;
7077
+ }
7078
+
7079
+ .w3eden .border-left-0 {
7080
+ border-left: 0 !important;
7081
+ }
7082
+
7083
+ .w3eden .border-primary {
7084
+ border-color: #007bff !important;
7085
+ }
7086
+
7087
+ .w3eden .border-secondary {
7088
+ border-color: #6c757d !important;
7089
+ }
7090
+
7091
+ .w3eden .border-success {
7092
+ border-color: #28a745 !important;
7093
+ }
7094
+
7095
+ .w3eden .border-info {
7096
+ border-color: #17a2b8 !important;
7097
+ }
7098
+
7099
+ .w3eden .border-warning {
7100
+ border-color: #ffc107 !important;
7101
+ }
7102
+
7103
+ .w3eden .border-danger {
7104
+ border-color: #dc3545 !important;
7105
+ }
7106
+
7107
+ .w3eden .border-light {
7108
+ border-color: #f8f9fa !important;
7109
+ }
7110
+
7111
+ .w3eden .border-dark {
7112
+ border-color: #343a40 !important;
7113
+ }
7114
+
7115
+ .w3eden .border-white {
7116
+ border-color: #fff !important;
7117
+ }
7118
+
7119
+ .w3eden .rounded-sm {
7120
+ border-radius: 0.2rem !important;
7121
+ }
7122
+
7123
+ .w3eden .rounded {
7124
+ border-radius: 0.25rem !important;
7125
+ }
7126
+
7127
+ .w3eden .rounded-top {
7128
+ border-top-left-radius: 0.25rem !important;
7129
+ border-top-right-radius: 0.25rem !important;
7130
+ }
7131
+
7132
+ .w3eden .rounded-right {
7133
+ border-top-right-radius: 0.25rem !important;
7134
+ border-bottom-right-radius: 0.25rem !important;
7135
+ }
7136
+
7137
+ .w3eden .rounded-bottom {
7138
+ border-bottom-right-radius: 0.25rem !important;
7139
+ border-bottom-left-radius: 0.25rem !important;
7140
+ }
7141
+
7142
+ .w3eden .rounded-left {
7143
+ border-top-left-radius: 0.25rem !important;
7144
+ border-bottom-left-radius: 0.25rem !important;
7145
+ }
7146
+
7147
+ .w3eden .rounded-lg {
7148
+ border-radius: 0.3rem !important;
7149
+ }
7150
+
7151
+ .w3eden .rounded-circle {
7152
+ border-radius: 50% !important;
7153
+ }
7154
+
7155
+ .w3eden .rounded-pill {
7156
+ border-radius: 50rem !important;
7157
+ }
7158
+
7159
+ .w3eden .rounded-0 {
7160
+ border-radius: 0 !important;
7161
+ }
7162
+
7163
+ .w3eden .clearfix::after {
7164
+ display: block;
7165
+ clear: both;
7166
+ content: "";
7167
+ }
7168
+
7169
+ .w3eden .d-none {
7170
+ display: none !important;
7171
+ }
7172
+
7173
+ .w3eden .d-inline {
7174
+ display: inline !important;
7175
+ }
7176
+
7177
+ .w3eden .d-inline-block {
7178
+ display: inline-block !important;
7179
+ }
7180
+
7181
+ .w3eden .d-block {
7182
+ display: block !important;
7183
+ }
7184
+
7185
+ .w3eden .d-table {
7186
+ display: table !important;
7187
+ }
7188
+
7189
+ .w3eden .d-table-row {
7190
+ display: table-row !important;
7191
+ }
7192
+
7193
+ .w3eden .d-table-cell {
7194
+ display: table-cell !important;
7195
+ }
7196
+
7197
+ .w3eden .d-flex {
7198
+ display: -ms-flexbox !important;
7199
+ display: flex !important;
7200
+ }
7201
+
7202
+ .w3eden .d-inline-flex {
7203
+ display: -ms-inline-flexbox !important;
7204
+ display: inline-flex !important;
7205
+ }
7206
+
7207
+ @media (min-width: 576px) {
7208
+ .w3eden .d-sm-none {
7209
+ display: none !important;
7210
+ }
7211
+
7212
+ .w3eden .d-sm-inline {
7213
+ display: inline !important;
7214
+ }
7215
+
7216
+ .w3eden .d-sm-inline-block {
7217
+ display: inline-block !important;
7218
+ }
7219
+
7220
+ .w3eden .d-sm-block {
7221
+ display: block !important;
7222
+ }
7223
+
7224
+ .w3eden .d-sm-table {
7225
+ display: table !important;
7226
+ }
7227
+
7228
+ .w3eden .d-sm-table-row {
7229
+ display: table-row !important;
7230
+ }
7231
+
7232
+ .w3eden .d-sm-table-cell {
7233
+ display: table-cell !important;
7234
+ }
7235
+
7236
+ .w3eden .d-sm-flex {
7237
+ display: -ms-flexbox !important;
7238
+ display: flex !important;
7239
+ }
7240
+
7241
+ .w3eden .d-sm-inline-flex {
7242
+ display: -ms-inline-flexbox !important;
7243
+ display: inline-flex !important;
7244
+ }
7245
+ }
7246
+
7247
+ @media (min-width: 768px) {
7248
+ .w3eden .d-md-none {
7249
+ display: none !important;
7250
+ }
7251
+
7252
+ .w3eden .d-md-inline {
7253
+ display: inline !important;
7254
+ }
7255
+
7256
+ .w3eden .d-md-inline-block {
7257
+ display: inline-block !important;
7258
+ }
7259
+
7260
+ .w3eden .d-md-block {
7261
+ display: block !important;
7262
+ }
7263
+
7264
+ .w3eden .d-md-table {
7265
+ display: table !important;
7266
+ }
7267
+
7268
+ .w3eden .d-md-table-row {
7269
+ display: table-row !important;
7270
+ }
7271
+
7272
+ .w3eden .d-md-table-cell {
7273
+ display: table-cell !important;
7274
+ }
7275
+
7276
+ .w3eden .d-md-flex {
7277
+ display: -ms-flexbox !important;
7278
+ display: flex !important;
7279
+ }
7280
+
7281
+ .w3eden .d-md-inline-flex {
7282
+ display: -ms-inline-flexbox !important;
7283
+ display: inline-flex !important;
7284
+ }
7285
+ }
7286
+
7287
+ @media (min-width: 992px) {
7288
+ .w3eden .d-lg-none {
7289
+ display: none !important;
7290
+ }
7291
+
7292
+ .w3eden .d-lg-inline {
7293
+ display: inline !important;
7294
+ }
7295
+
7296
+ .w3eden .d-lg-inline-block {
7297
+ display: inline-block !important;
7298
+ }
7299
+
7300
+ .w3eden .d-lg-block {
7301
+ display: block !important;
7302
+ }
7303
+
7304
+ .w3eden .d-lg-table {
7305
+ display: table !important;
7306
+ }
7307
+
7308
+ .w3eden .d-lg-table-row {
7309
+ display: table-row !important;
7310
+ }
7311
+
7312
+ .w3eden .d-lg-table-cell {
7313
+ display: table-cell !important;
7314
+ }
7315
+
7316
+ .w3eden .d-lg-flex {
7317
+ display: -ms-flexbox !important;
7318
+ display: flex !important;
7319
+ }
7320
+
7321
+ .w3eden .d-lg-inline-flex {
7322
+ display: -ms-inline-flexbox !important;
7323
+ display: inline-flex !important;
7324
+ }
7325
+ }
7326
+
7327
+ @media (min-width: 1200px) {
7328
+ .w3eden .d-xl-none {
7329
+ display: none !important;
7330
+ }
7331
+
7332
+ .w3eden .d-xl-inline {
7333
+ display: inline !important;
7334
+ }
7335
+
7336
+ .w3eden .d-xl-inline-block {
7337
+ display: inline-block !important;
7338
+ }
7339
+
7340
+ .w3eden .d-xl-block {
7341
+ display: block !important;
7342
+ }
7343
+
7344
+ .w3eden .d-xl-table {
7345
+ display: table !important;
7346
+ }
7347
+
7348
+ .w3eden .d-xl-table-row {
7349
+ display: table-row !important;
7350
+ }
7351
+
7352
+ .w3eden .d-xl-table-cell {
7353
+ display: table-cell !important;
7354
+ }
7355
+
7356
+ .w3eden .d-xl-flex {
7357
+ display: -ms-flexbox !important;
7358
+ display: flex !important;
7359
+ }
7360
+
7361
+ .w3eden .d-xl-inline-flex {
7362
+ display: -ms-inline-flexbox !important;
7363
+ display: inline-flex !important;
7364
+ }
7365
+ }
7366
+
7367
+ @media print {
7368
+ .w3eden .d-print-none {
7369
+ display: none !important;
7370
+ }
7371
+
7372
+ .w3eden .d-print-inline {
7373
+ display: inline !important;
7374
+ }
7375
+
7376
+ .w3eden .d-print-inline-block {
7377
+ display: inline-block !important;
7378
+ }
7379
+
7380
+ .w3eden .d-print-block {
7381
+ display: block !important;
7382
+ }
7383
+
7384
+ .w3eden .d-print-table {
7385
+ display: table !important;
7386
+ }
7387
+
7388
+ .w3eden .d-print-table-row {
7389
+ display: table-row !important;
7390
+ }
7391
+
7392
+ .w3eden .d-print-table-cell {
7393
+ display: table-cell !important;
7394
+ }
7395
+
7396
+ .w3eden .d-print-flex {
7397
+ display: -ms-flexbox !important;
7398
+ display: flex !important;
7399
+ }
7400
+
7401
+ .w3eden .d-print-inline-flex {
7402
+ display: -ms-inline-flexbox !important;
7403
+ display: inline-flex !important;
7404
+ }
7405
+ }
7406
+
7407
+ .w3eden .embed-responsive {
7408
+ position: relative;
7409
+ display: block;
7410
+ width: 100%;
7411
+ padding: 0;
7412
+ overflow: hidden;
7413
+ }
7414
+
7415
+ .w3eden .embed-responsive::before {
7416
+ display: block;
7417
+ content: "";
7418
+ }
7419
+
7420
+ .w3eden .embed-responsive .embed-responsive-item,
7421
+ .w3eden .embed-responsive iframe,
7422
+ .w3eden .embed-responsive embed,
7423
+ .w3eden .embed-responsive object,
7424
+ .w3eden .embed-responsive video {
7425
+ position: absolute;
7426
+ top: 0;
7427
+ bottom: 0;
7428
+ left: 0;
7429
+ width: 100%;
7430
+ height: 100%;
7431
+ border: 0;
7432
+ }
7433
+
7434
+ .w3eden .embed-responsive-21by9::before {
7435
+ padding-top: 42.857143%;
7436
+ }
7437
+
7438
+ .w3eden .embed-responsive-16by9::before {
7439
+ padding-top: 56.25%;
7440
+ }
7441
+
7442
+ .w3eden .embed-responsive-4by3::before {
7443
+ padding-top: 75%;
7444
+ }
7445
+
7446
+ .w3eden .embed-responsive-1by1::before {
7447
+ padding-top: 100%;
7448
+ }
7449
+
7450
+ .w3eden .flex-row {
7451
+ -ms-flex-direction: row !important;
7452
+ flex-direction: row !important;
7453
+ }
7454
+
7455
+ .w3eden .flex-column {
7456
+ -ms-flex-direction: column !important;
7457
+ flex-direction: column !important;
7458
+ }
7459
+
7460
+ .w3eden .flex-row-reverse {
7461
+ -ms-flex-direction: row-reverse !important;
7462
+ flex-direction: row-reverse !important;
7463
+ }
7464
+
7465
+ .w3eden .flex-column-reverse {
7466
+ -ms-flex-direction: column-reverse !important;
7467
+ flex-direction: column-reverse !important;
7468
+ }
7469
+
7470
+ .w3eden .flex-wrap {
7471
+ -ms-flex-wrap: wrap !important;
7472
+ flex-wrap: wrap !important;
7473
+ }
7474
+
7475
+ .w3eden .flex-nowrap {
7476
+ -ms-flex-wrap: nowrap !important;
7477
+ flex-wrap: nowrap !important;
7478
+ }
7479
+
7480
+ .w3eden .flex-wrap-reverse {
7481
+ -ms-flex-wrap: wrap-reverse !important;
7482
+ flex-wrap: wrap-reverse !important;
7483
+ }
7484
+
7485
+ .w3eden .flex-fill {
7486
+ -ms-flex: 1 1 auto !important;
7487
+ flex: 1 1 auto !important;
7488
+ }
7489
+
7490
+ .w3eden .flex-grow-0 {
7491
+ -ms-flex-positive: 0 !important;
7492
+ flex-grow: 0 !important;
7493
+ }
7494
+
7495
+ .w3eden .flex-grow-1 {
7496
+ -ms-flex-positive: 1 !important;
7497
+ flex-grow: 1 !important;
7498
+ }
7499
+
7500
+ .w3eden .flex-shrink-0 {
7501
+ -ms-flex-negative: 0 !important;
7502
+ flex-shrink: 0 !important;
7503
+ }
7504
+
7505
+ .w3eden .flex-shrink-1 {
7506
+ -ms-flex-negative: 1 !important;
7507
+ flex-shrink: 1 !important;
7508
+ }
7509
+
7510
+ .w3eden .justify-content-start {
7511
+ -ms-flex-pack: start !important;
7512
+ justify-content: flex-start !important;
7513
+ }
7514
+
7515
+ .w3eden .justify-content-end {
7516
+ -ms-flex-pack: end !important;
7517
+ justify-content: flex-end !important;
7518
+ }
7519
+
7520
+ .w3eden .justify-content-center {
7521
+ -ms-flex-pack: center !important;
7522
+ justify-content: center !important;
7523
+ }
7524
+
7525
+ .w3eden .justify-content-between {
7526
+ -ms-flex-pack: justify !important;
7527
+ justify-content: space-between !important;
7528
+ }
7529
+
7530
+ .w3eden .justify-content-around {
7531
+ -ms-flex-pack: distribute !important;
7532
+ justify-content: space-around !important;
7533
+ }
7534
+
7535
+ .w3eden .align-items-start {
7536
+ -ms-flex-align: start !important;
7537
+ align-items: flex-start !important;
7538
+ }
7539
+
7540
+ .w3eden .align-items-end {
7541
+ -ms-flex-align: end !important;
7542
+ align-items: flex-end !important;
7543
+ }
7544
+
7545
+ .w3eden .align-items-center {
7546
+ -ms-flex-align: center !important;
7547
+ align-items: center !important;
7548
+ }
7549
+
7550
+ .w3eden .align-items-baseline {
7551
+ -ms-flex-align: baseline !important;
7552
+ align-items: baseline !important;
7553
+ }
7554
+
7555
+ .w3eden .align-items-stretch {
7556
+ -ms-flex-align: stretch !important;
7557
+ align-items: stretch !important;
7558
+ }
7559
+
7560
+ .w3eden .align-content-start {
7561
+ -ms-flex-line-pack: start !important;
7562
+ align-content: flex-start !important;
7563
+ }
7564
+
7565
+ .w3eden .align-content-end {
7566
+ -ms-flex-line-pack: end !important;
7567
+ align-content: flex-end !important;
7568
+ }
7569
+
7570
+ .w3eden .align-content-center {
7571
+ -ms-flex-line-pack: center !important;
7572
+ align-content: center !important;
7573
+ }
7574
+
7575
+ .w3eden .align-content-between {
7576
+ -ms-flex-line-pack: justify !important;
7577
+ align-content: space-between !important;
7578
+ }
7579
+
7580
+ .w3eden .align-content-around {
7581
+ -ms-flex-line-pack: distribute !important;
7582
+ align-content: space-around !important;
7583
+ }
7584
+
7585
+ .w3eden .align-content-stretch {
7586
+ -ms-flex-line-pack: stretch !important;
7587
+ align-content: stretch !important;
7588
+ }
7589
+
7590
+ .w3eden .align-self-auto {
7591
+ -ms-flex-item-align: auto !important;
7592
+ align-self: auto !important;
7593
+ }
7594
+
7595
+ .w3eden .align-self-start {
7596
+ -ms-flex-item-align: start !important;
7597
+ align-self: flex-start !important;
7598
+ }
7599
+
7600
+ .w3eden .align-self-end {
7601
+ -ms-flex-item-align: end !important;
7602
+ align-self: flex-end !important;
7603
+ }
7604
+
7605
+ .w3eden .align-self-center {
7606
+ -ms-flex-item-align: center !important;
7607
+ align-self: center !important;
7608
+ }
7609
+
7610
+ .w3eden .align-self-baseline {
7611
+ -ms-flex-item-align: baseline !important;
7612
+ align-self: baseline !important;
7613
+ }
7614
+
7615
+ .w3eden .align-self-stretch {
7616
+ -ms-flex-item-align: stretch !important;
7617
+ align-self: stretch !important;
7618
+ }
7619
+
7620
+ @media (min-width: 576px) {
7621
+ .w3eden .flex-sm-row {
7622
+ -ms-flex-direction: row !important;
7623
+ flex-direction: row !important;
7624
+ }
7625
+
7626
+ .w3eden .flex-sm-column {
7627
+ -ms-flex-direction: column !important;
7628
+ flex-direction: column !important;
7629
+ }
7630
+
7631
+ .w3eden .flex-sm-row-reverse {
7632
+ -ms-flex-direction: row-reverse !important;
7633
+ flex-direction: row-reverse !important;
7634
+ }
7635
+
7636
+ .w3eden .flex-sm-column-reverse {
7637
+ -ms-flex-direction: column-reverse !important;
7638
+ flex-direction: column-reverse !important;
7639
+ }
7640
+
7641
+ .w3eden .flex-sm-wrap {
7642
+ -ms-flex-wrap: wrap !important;
7643
+ flex-wrap: wrap !important;
7644
+ }
7645
+
7646
+ .w3eden .flex-sm-nowrap {
7647
+ -ms-flex-wrap: nowrap !important;
7648
+ flex-wrap: nowrap !important;
7649
+ }
7650
+
7651
+ .w3eden .flex-sm-wrap-reverse {
7652
+ -ms-flex-wrap: wrap-reverse !important;
7653
+ flex-wrap: wrap-reverse !important;
7654
+ }
7655
+
7656
+ .w3eden .flex-sm-fill {
7657
+ -ms-flex: 1 1 auto !important;
7658
+ flex: 1 1 auto !important;
7659
+ }
7660
+
7661
+ .w3eden .flex-sm-grow-0 {
7662
+ -ms-flex-positive: 0 !important;
7663
+ flex-grow: 0 !important;
7664
+ }
7665
+
7666
+ .w3eden .flex-sm-grow-1 {
7667
+ -ms-flex-positive: 1 !important;
7668
+ flex-grow: 1 !important;
7669
+ }
7670
+
7671
+ .w3eden .flex-sm-shrink-0 {
7672
+ -ms-flex-negative: 0 !important;
7673
+ flex-shrink: 0 !important;
7674
+ }
7675
+
7676
+ .w3eden .flex-sm-shrink-1 {
7677
+ -ms-flex-negative: 1 !important;
7678
+ flex-shrink: 1 !important;
7679
+ }
7680
+
7681
+ .w3eden .justify-content-sm-start {
7682
+ -ms-flex-pack: start !important;
7683
+ justify-content: flex-start !important;
7684
+ }
7685
+
7686
+ .w3eden .justify-content-sm-end {
7687
+ -ms-flex-pack: end !important;
7688
+ justify-content: flex-end !important;
7689
+ }
7690
+
7691
+ .w3eden .justify-content-sm-center {
7692
+ -ms-flex-pack: center !important;
7693
+ justify-content: center !important;
7694
+ }
7695
+
7696
+ .w3eden .justify-content-sm-between {
7697
+ -ms-flex-pack: justify !important;
7698
+ justify-content: space-between !important;
7699
+ }
7700
+
7701
+ .w3eden .justify-content-sm-around {
7702
+ -ms-flex-pack: distribute !important;
7703
+ justify-content: space-around !important;
7704
+ }
7705
+
7706
+ .w3eden .align-items-sm-start {
7707
+ -ms-flex-align: start !important;
7708
+ align-items: flex-start !important;
7709
+ }
7710
+
7711
+ .w3eden .align-items-sm-end {
7712
+ -ms-flex-align: end !important;
7713
+ align-items: flex-end !important;
7714
+ }
7715
+
7716
+ .w3eden .align-items-sm-center {
7717
+ -ms-flex-align: center !important;
7718
+ align-items: center !important;
7719
+ }
7720
+
7721
+ .w3eden .align-items-sm-baseline {
7722
+ -ms-flex-align: baseline !important;
7723
+ align-items: baseline !important;
7724
+ }
7725
+
7726
+ .w3eden .align-items-sm-stretch {
7727
+ -ms-flex-align: stretch !important;
7728
+ align-items: stretch !important;
7729
+ }
7730
+
7731
+ .w3eden .align-content-sm-start {
7732
+ -ms-flex-line-pack: start !important;
7733
+ align-content: flex-start !important;
7734
+ }
7735
+
7736
+ .w3eden .align-content-sm-end {
7737
+ -ms-flex-line-pack: end !important;
7738
+ align-content: flex-end !important;
7739
+ }
7740
+
7741
+ .w3eden .align-content-sm-center {
7742
+ -ms-flex-line-pack: center !important;
7743
+ align-content: center !important;
7744
+ }
7745
+
7746
+ .w3eden .align-content-sm-between {
7747
+ -ms-flex-line-pack: justify !important;
7748
+ align-content: space-between !important;
7749
+ }
7750
+
7751
+ .w3eden .align-content-sm-around {
7752
+ -ms-flex-line-pack: distribute !important;
7753
+ align-content: space-around !important;
7754
+ }
7755
+
7756
+ .w3eden .align-content-sm-stretch {
7757
+ -ms-flex-line-pack: stretch !important;
7758
+ align-content: stretch !important;
7759
+ }
7760
+
7761
+ .w3eden .align-self-sm-auto {
7762
+ -ms-flex-item-align: auto !important;
7763
+ align-self: auto !important;
7764
+ }
7765
+
7766
+ .w3eden .align-self-sm-start {
7767
+ -ms-flex-item-align: start !important;
7768
+ align-self: flex-start !important;
7769
+ }
7770
+
7771
+ .w3eden .align-self-sm-end {
7772
+ -ms-flex-item-align: end !important;
7773
+ align-self: flex-end !important;
7774
+ }
7775
+
7776
+ .w3eden .align-self-sm-center {
7777
+ -ms-flex-item-align: center !important;
7778
+ align-self: center !important;
7779
+ }
7780
+
7781
+ .w3eden .align-self-sm-baseline {
7782
+ -ms-flex-item-align: baseline !important;
7783
+ align-self: baseline !important;
7784
+ }
7785
+
7786
+ .w3eden .align-self-sm-stretch {
7787
+ -ms-flex-item-align: stretch !important;
7788
+ align-self: stretch !important;
7789
+ }
7790
+ }
7791
+
7792
+ @media (min-width: 768px) {
7793
+ .w3eden .flex-md-row {
7794
+ -ms-flex-direction: row !important;
7795
+ flex-direction: row !important;
7796
+ }
7797
+
7798
+ .w3eden .flex-md-column {
7799
+ -ms-flex-direction: column !important;
7800
+ flex-direction: column !important;
7801
+ }
7802
+
7803
+ .w3eden .flex-md-row-reverse {
7804
+ -ms-flex-direction: row-reverse !important;
7805
+ flex-direction: row-reverse !important;
7806
+ }
7807
+
7808
+ .w3eden .flex-md-column-reverse {
7809
+ -ms-flex-direction: column-reverse !important;
7810
+ flex-direction: column-reverse !important;
7811
+ }
7812
+
7813
+ .w3eden .flex-md-wrap {
7814
+ -ms-flex-wrap: wrap !important;
7815
+ flex-wrap: wrap !important;
7816
+ }
7817
+
7818
+ .w3eden .flex-md-nowrap {
7819
+ -ms-flex-wrap: nowrap !important;
7820
+ flex-wrap: nowrap !important;
7821
+ }
7822
+
7823
+ .w3eden .flex-md-wrap-reverse {
7824
+ -ms-flex-wrap: wrap-reverse !important;
7825
+ flex-wrap: wrap-reverse !important;
7826
+ }
7827
+
7828
+ .w3eden .flex-md-fill {
7829
+ -ms-flex: 1 1 auto !important;
7830
+ flex: 1 1 auto !important;
7831
+ }
7832
+
7833
+ .w3eden .flex-md-grow-0 {
7834
+ -ms-flex-positive: 0 !important;
7835
+ flex-grow: 0 !important;
7836
+ }
7837
+
7838
+ .w3eden .flex-md-grow-1 {
7839
+ -ms-flex-positive: 1 !important;
7840
+ flex-grow: 1 !important;
7841
+ }
7842
+
7843
+ .w3eden .flex-md-shrink-0 {
7844
+ -ms-flex-negative: 0 !important;
7845
+ flex-shrink: 0 !important;
7846
+ }
7847
+
7848
+ .w3eden .flex-md-shrink-1 {
7849
+ -ms-flex-negative: 1 !important;
7850
+ flex-shrink: 1 !important;
7851
+ }
7852
+
7853
+ .w3eden .justify-content-md-start {
7854
+ -ms-flex-pack: start !important;
7855
+ justify-content: flex-start !important;
7856
+ }
7857
+
7858
+ .w3eden .justify-content-md-end {
7859
+ -ms-flex-pack: end !important;
7860
+ justify-content: flex-end !important;
7861
+ }
7862
+
7863
+ .w3eden .justify-content-md-center {
7864
+ -ms-flex-pack: center !important;
7865
+ justify-content: center !important;
7866
+ }
7867
+
7868
+ .w3eden .justify-content-md-between {
7869
+ -ms-flex-pack: justify !important;
7870
+ justify-content: space-between !important;
7871
+ }
7872
+
7873
+ .w3eden .justify-content-md-around {
7874
+ -ms-flex-pack: distribute !important;
7875
+ justify-content: space-around !important;
7876
+ }
7877
+
7878
+ .w3eden .align-items-md-start {
7879
+ -ms-flex-align: start !important;
7880
+ align-items: flex-start !important;
7881
+ }
7882
+
7883
+ .w3eden .align-items-md-end {
7884
+ -ms-flex-align: end !important;
7885
+ align-items: flex-end !important;
7886
+ }
7887
+
7888
+ .w3eden .align-items-md-center {
7889
+ -ms-flex-align: center !important;
7890
+ align-items: center !important;
7891
+ }
7892
+
7893
+ .w3eden .align-items-md-baseline {
7894
+ -ms-flex-align: baseline !important;
7895
+ align-items: baseline !important;
7896
+ }
7897
+
7898
+ .w3eden .align-items-md-stretch {
7899
+ -ms-flex-align: stretch !important;
7900
+ align-items: stretch !important;
7901
+ }
7902
+
7903
+ .w3eden .align-content-md-start {
7904
+ -ms-flex-line-pack: start !important;
7905
+ align-content: flex-start !important;
7906
+ }
7907
+
7908
+ .w3eden .align-content-md-end {
7909
+ -ms-flex-line-pack: end !important;
7910
+ align-content: flex-end !important;
7911
+ }
7912
+
7913
+ .w3eden .align-content-md-center {
7914
+ -ms-flex-line-pack: center !important;
7915
+ align-content: center !important;
7916
+ }
7917
+
7918
+ .w3eden .align-content-md-between {
7919
+ -ms-flex-line-pack: justify !important;
7920
+ align-content: space-between !important;
7921
+ }
7922
+
7923
+ .w3eden .align-content-md-around {
7924
+ -ms-flex-line-pack: distribute !important;
7925
+ align-content: space-around !important;
7926
+ }
7927
+
7928
+ .w3eden .align-content-md-stretch {
7929
+ -ms-flex-line-pack: stretch !important;
7930
+ align-content: stretch !important;
7931
+ }
7932
+
7933
+ .w3eden .align-self-md-auto {
7934
+ -ms-flex-item-align: auto !important;
7935
+ align-self: auto !important;
7936
+ }
7937
+
7938
+ .w3eden .align-self-md-start {
7939
+ -ms-flex-item-align: start !important;
7940
+ align-self: flex-start !important;
7941
+ }
7942
+
7943
+ .w3eden .align-self-md-end {
7944
+ -ms-flex-item-align: end !important;
7945
+ align-self: flex-end !important;
7946
+ }
7947
+
7948
+ .w3eden .align-self-md-center {
7949
+ -ms-flex-item-align: center !important;
7950
+ align-self: center !important;
7951
+ }
7952
+
7953
+ .w3eden .align-self-md-baseline {
7954
+ -ms-flex-item-align: baseline !important;
7955
+ align-self: baseline !important;
7956
+ }
7957
+
7958
+ .w3eden .align-self-md-stretch {
7959
+ -ms-flex-item-align: stretch !important;
7960
+ align-self: stretch !important;
7961
+ }
7962
+ }
7963
+
7964
+ @media (min-width: 992px) {
7965
+ .w3eden .flex-lg-row {
7966
+ -ms-flex-direction: row !important;
7967
+ flex-direction: row !important;
7968
+ }
7969
+
7970
+ .w3eden .flex-lg-column {
7971
+ -ms-flex-direction: column !important;
7972
+ flex-direction: column !important;
7973
+ }
7974
+
7975
+ .w3eden .flex-lg-row-reverse {
7976
+ -ms-flex-direction: row-reverse !important;
7977
+ flex-direction: row-reverse !important;
7978
+ }
7979
+
7980
+ .w3eden .flex-lg-column-reverse {
7981
+ -ms-flex-direction: column-reverse !important;
7982
+ flex-direction: column-reverse !important;
7983
+ }
7984
+
7985
+ .w3eden .flex-lg-wrap {
7986
+ -ms-flex-wrap: wrap !important;
7987
+ flex-wrap: wrap !important;
7988
+ }
7989
+
7990
+ .w3eden .flex-lg-nowrap {
7991
+ -ms-flex-wrap: nowrap !important;
7992
+ flex-wrap: nowrap !important;
7993
+ }
7994
+
7995
+ .w3eden .flex-lg-wrap-reverse {
7996
+ -ms-flex-wrap: wrap-reverse !important;
7997
+ flex-wrap: wrap-reverse !important;
7998
+ }
7999
+
8000
+ .w3eden .flex-lg-fill {
8001
+ -ms-flex: 1 1 auto !important;
8002
+ flex: 1 1 auto !important;
8003
+ }
8004
+
8005
+ .w3eden .flex-lg-grow-0 {
8006
+ -ms-flex-positive: 0 !important;
8007
+ flex-grow: 0 !important;
8008
+ }
8009
+
8010
+ .w3eden .flex-lg-grow-1 {
8011
+ -ms-flex-positive: 1 !important;
8012
+ flex-grow: 1 !important;
8013
+ }
8014
+
8015
+ .w3eden .flex-lg-shrink-0 {
8016
+ -ms-flex-negative: 0 !important;
8017
+ flex-shrink: 0 !important;
8018
+ }
8019
+
8020
+ .w3eden .flex-lg-shrink-1 {
8021
+ -ms-flex-negative: 1 !important;
8022
+ flex-shrink: 1 !important;
8023
+ }
8024
+
8025
+ .w3eden .justify-content-lg-start {
8026
+ -ms-flex-pack: start !important;
8027
+ justify-content: flex-start !important;
8028
+ }
8029
+
8030
+ .w3eden .justify-content-lg-end {
8031
+ -ms-flex-pack: end !important;
8032
+ justify-content: flex-end !important;
8033
+ }
8034
+
8035
+ .w3eden .justify-content-lg-center {
8036
+ -ms-flex-pack: center !important;
8037
+ justify-content: center !important;
8038
+ }
8039
+
8040
+ .w3eden .justify-content-lg-between {
8041
+ -ms-flex-pack: justify !important;
8042
+ justify-content: space-between !important;
8043
+ }
8044
+
8045
+ .w3eden .justify-content-lg-around {
8046
+ -ms-flex-pack: distribute !important;
8047
+ justify-content: space-around !important;
8048
+ }
8049
+
8050
+ .w3eden .align-items-lg-start {
8051
+ -ms-flex-align: start !important;
8052
+ align-items: flex-start !important;
8053
+ }
8054
+
8055
+ .w3eden .align-items-lg-end {
8056
+ -ms-flex-align: end !important;
8057
+ align-items: flex-end !important;
8058
+ }
8059
+
8060
+ .w3eden .align-items-lg-center {
8061
+ -ms-flex-align: center !important;
8062
+ align-items: center !important;
8063
+ }
8064
+
8065
+ .w3eden .align-items-lg-baseline {
8066
+ -ms-flex-align: baseline !important;
8067
+ align-items: baseline !important;
8068
+ }
8069
+
8070
+ .w3eden .align-items-lg-stretch {
8071
+ -ms-flex-align: stretch !important;
8072
+ align-items: stretch !important;
8073
+ }
8074
+
8075
+ .w3eden .align-content-lg-start {
8076
+ -ms-flex-line-pack: start !important;
8077
+ align-content: flex-start !important;
8078
+ }
8079
+
8080
+ .w3eden .align-content-lg-end {
8081
+ -ms-flex-line-pack: end !important;
8082
+ align-content: flex-end !important;
8083
+ }
8084
+
8085
+ .w3eden .align-content-lg-center {
8086
+ -ms-flex-line-pack: center !important;
8087
+ align-content: center !important;
8088
+ }
8089
+
8090
+ .w3eden .align-content-lg-between {
8091
+ -ms-flex-line-pack: justify !important;
8092
+ align-content: space-between !important;
8093
+ }
8094
+
8095
+ .w3eden .align-content-lg-around {
8096
+ -ms-flex-line-pack: distribute !important;
8097
+ align-content: space-around !important;
8098
+ }
8099
+
8100
+ .w3eden .align-content-lg-stretch {
8101
+ -ms-flex-line-pack: stretch !important;
8102
+ align-content: stretch !important;
8103
+ }
8104
+
8105
+ .w3eden .align-self-lg-auto {
8106
+ -ms-flex-item-align: auto !important;
8107
+ align-self: auto !important;
8108
+ }
8109
+
8110
+ .w3eden .align-self-lg-start {
8111
+ -ms-flex-item-align: start !important;
8112
+ align-self: flex-start !important;
8113
+ }
8114
+
8115
+ .w3eden .align-self-lg-end {
8116
+ -ms-flex-item-align: end !important;
8117
+ align-self: flex-end !important;
8118
+ }
8119
+
8120
+ .w3eden .align-self-lg-center {
8121
+ -ms-flex-item-align: center !important;
8122
+ align-self: center !important;
8123
+ }
8124
+
8125
+ .w3eden .align-self-lg-baseline {
8126
+ -ms-flex-item-align: baseline !important;
8127
+ align-self: baseline !important;
8128
+ }
8129
+
8130
+ .w3eden .align-self-lg-stretch {
8131
+ -ms-flex-item-align: stretch !important;
8132
+ align-self: stretch !important;
8133
+ }
8134
+ }
8135
+
8136
+ @media (min-width: 1200px) {
8137
+ .w3eden .flex-xl-row {
8138
+ -ms-flex-direction: row !important;
8139
+ flex-direction: row !important;
8140
+ }
8141
+
8142
+ .w3eden .flex-xl-column {
8143
+ -ms-flex-direction: column !important;
8144
+ flex-direction: column !important;
8145
+ }
8146
+
8147
+ .w3eden .flex-xl-row-reverse {
8148
+ -ms-flex-direction: row-reverse !important;
8149
+ flex-direction: row-reverse !important;
8150
+ }
8151
+
8152
+ .w3eden .flex-xl-column-reverse {
8153
+ -ms-flex-direction: column-reverse !important;
8154
+ flex-direction: column-reverse !important;
8155
+ }
8156
+
8157
+ .w3eden .flex-xl-wrap {
8158
+ -ms-flex-wrap: wrap !important;
8159
+ flex-wrap: wrap !important;
8160
+ }
8161
+
8162
+ .w3eden .flex-xl-nowrap {
8163
+ -ms-flex-wrap: nowrap !important;
8164
+ flex-wrap: nowrap !important;
8165
+ }
8166
+
8167
+ .w3eden .flex-xl-wrap-reverse {
8168
+ -ms-flex-wrap: wrap-reverse !important;
8169
+ flex-wrap: wrap-reverse !important;
8170
+ }
8171
+
8172
+ .w3eden .flex-xl-fill {
8173
+ -ms-flex: 1 1 auto !important;
8174
+ flex: 1 1 auto !important;
8175
+ }
8176
+
8177
+ .w3eden .flex-xl-grow-0 {
8178
+ -ms-flex-positive: 0 !important;
8179
+ flex-grow: 0 !important;
8180
+ }
8181
+
8182
+ .w3eden .flex-xl-grow-1 {
8183
+ -ms-flex-positive: 1 !important;
8184
+ flex-grow: 1 !important;
8185
+ }
8186
+
8187
+ .w3eden .flex-xl-shrink-0 {
8188
+ -ms-flex-negative: 0 !important;
8189
+ flex-shrink: 0 !important;
8190
+ }
8191
+
8192
+ .w3eden .flex-xl-shrink-1 {
8193
+ -ms-flex-negative: 1 !important;
8194
+ flex-shrink: 1 !important;
8195
+ }
8196
+
8197
+ .w3eden .justify-content-xl-start {
8198
+ -ms-flex-pack: start !important;
8199
+ justify-content: flex-start !important;
8200
+ }
8201
+
8202
+ .w3eden .justify-content-xl-end {
8203
+ -ms-flex-pack: end !important;
8204
+ justify-content: flex-end !important;
8205
+ }
8206
+
8207
+ .w3eden .justify-content-xl-center {
8208
+ -ms-flex-pack: center !important;
8209
+ justify-content: center !important;
8210
+ }
8211
+
8212
+ .w3eden .justify-content-xl-between {
8213
+ -ms-flex-pack: justify !important;
8214
+ justify-content: space-between !important;
8215
+ }
8216
+
8217
+ .w3eden .justify-content-xl-around {
8218
+ -ms-flex-pack: distribute !important;
8219
+ justify-content: space-around !important;
8220
+ }
8221
+
8222
+ .w3eden .align-items-xl-start {
8223
+ -ms-flex-align: start !important;
8224
+ align-items: flex-start !important;
8225
+ }
8226
+
8227
+ .w3eden .align-items-xl-end {
8228
+ -ms-flex-align: end !important;
8229
+ align-items: flex-end !important;
8230
+ }
8231
+
8232
+ .w3eden .align-items-xl-center {
8233
+ -ms-flex-align: center !important;
8234
+ align-items: center !important;
8235
+ }
8236
+
8237
+ .w3eden .align-items-xl-baseline {
8238
+ -ms-flex-align: baseline !important;
8239
+ align-items: baseline !important;
8240
+ }
8241
+
8242
+ .w3eden .align-items-xl-stretch {
8243
+ -ms-flex-align: stretch !important;
8244
+ align-items: stretch !important;
8245
+ }
8246
+
8247
+ .w3eden .align-content-xl-start {
8248
+ -ms-flex-line-pack: start !important;
8249
+ align-content: flex-start !important;
8250
+ }
8251
+
8252
+ .w3eden .align-content-xl-end {
8253
+ -ms-flex-line-pack: end !important;
8254
+ align-content: flex-end !important;
8255
+ }
8256
+
8257
+ .w3eden .align-content-xl-center {
8258
+ -ms-flex-line-pack: center !important;
8259
+ align-content: center !important;
8260
+ }
8261
+
8262
+ .w3eden .align-content-xl-between {
8263
+ -ms-flex-line-pack: justify !important;
8264
+ align-content: space-between !important;
8265
+ }
8266
+
8267
+ .w3eden .align-content-xl-around {
8268
+ -ms-flex-line-pack: distribute !important;
8269
+ align-content: space-around !important;
8270
+ }
8271
+
8272
+ .w3eden .align-content-xl-stretch {
8273
+ -ms-flex-line-pack: stretch !important;
8274
+ align-content: stretch !important;
8275
+ }
8276
+
8277
+ .w3eden .align-self-xl-auto {
8278
+ -ms-flex-item-align: auto !important;
8279
+ align-self: auto !important;
8280
+ }
8281
+
8282
+ .w3eden .align-self-xl-start {
8283
+ -ms-flex-item-align: start !important;
8284
+ align-self: flex-start !important;
8285
+ }
8286
+
8287
+ .w3eden .align-self-xl-end {
8288
+ -ms-flex-item-align: end !important;
8289
+ align-self: flex-end !important;
8290
+ }
8291
+
8292
+ .w3eden .align-self-xl-center {
8293
+ -ms-flex-item-align: center !important;
8294
+ align-self: center !important;
8295
+ }
8296
+
8297
+ .w3eden .align-self-xl-baseline {
8298
+ -ms-flex-item-align: baseline !important;
8299
+ align-self: baseline !important;
8300
+ }
8301
+
8302
+ .w3eden .align-self-xl-stretch {
8303
+ -ms-flex-item-align: stretch !important;
8304
+ align-self: stretch !important;
8305
+ }
8306
+ }
8307
+
8308
+ .w3eden .float-left {
8309
+ float: left !important;
8310
+ }
8311
+
8312
+ .w3eden .float-right {
8313
+ float: right !important;
8314
+ }
8315
+
8316
+ .w3eden .float-none {
8317
+ float: none !important;
8318
+ }
8319
+
8320
+ @media (min-width: 576px) {
8321
+ .w3eden .float-sm-left {
8322
+ float: left !important;
8323
+ }
8324
+
8325
+ .w3eden .float-sm-right {
8326
+ float: right !important;
8327
+ }
8328
+
8329
+ .w3eden .float-sm-none {
8330
+ float: none !important;
8331
+ }
8332
+ }
8333
+
8334
+ @media (min-width: 768px) {
8335
+ .w3eden .float-md-left {
8336
+ float: left !important;
8337
+ }
8338
+
8339
+ .w3eden .float-md-right {
8340
+ float: right !important;
8341
+ }
8342
+
8343
+ .w3eden .float-md-none {
8344
+ float: none !important;
8345
+ }
8346
+ }
8347
+
8348
+ @media (min-width: 992px) {
8349
+ .w3eden .float-lg-left {
8350
+ float: left !important;
8351
+ }
8352
+
8353
+ .w3eden .float-lg-right {
8354
+ float: right !important;
8355
+ }
8356
+
8357
+ .w3eden .float-lg-none {
8358
+ float: none !important;
8359
+ }
8360
+ }
8361
+
8362
+ @media (min-width: 1200px) {
8363
+ .w3eden .float-xl-left {
8364
+ float: left !important;
8365
+ }
8366
+
8367
+ .w3eden .float-xl-right {
8368
+ float: right !important;
8369
+ }
8370
+
8371
+ .w3eden .float-xl-none {
8372
+ float: none !important;
8373
+ }
8374
+ }
8375
+
8376
+ .w3eden .overflow-auto {
8377
+ overflow: auto !important;
8378
+ }
8379
+
8380
+ .w3eden .overflow-hidden {
8381
+ overflow: hidden !important;
8382
+ }
8383
+
8384
+ .w3eden .position-static {
8385
+ position: static !important;
8386
+ }
8387
+
8388
+ .w3eden .position-relative {
8389
+ position: relative !important;
8390
+ }
8391
+
8392
+ .w3eden .position-absolute {
8393
+ position: absolute !important;
8394
+ }
8395
+
8396
+ .w3eden .position-fixed {
8397
+ position: fixed !important;
8398
+ }
8399
+
8400
+ .w3eden .position-sticky {
8401
+ position: -webkit-sticky !important;
8402
+ position: sticky !important;
8403
+ }
8404
+
8405
+ .w3eden .fixed-top {
8406
+ position: fixed;
8407
+ top: 0;
8408
+ right: 0;
8409
+ left: 0;
8410
+ z-index: 1030;
8411
+ }
8412
+
8413
+ .w3eden .fixed-bottom {
8414
+ position: fixed;
8415
+ right: 0;
8416
+ bottom: 0;
8417
+ left: 0;
8418
+ z-index: 1030;
8419
+ }
8420
+
8421
+ @supports (position: -webkit-sticky) or (position: sticky) {
8422
+ .w3eden .sticky-top {
8423
+ position: -webkit-sticky;
8424
+ position: sticky;
8425
+ top: 0;
8426
+ z-index: 1020;
8427
+ }
8428
+ }
8429
+
8430
+ .w3eden .sr-only {
8431
+ position: absolute;
8432
+ width: 1px;
8433
+ height: 1px;
8434
+ padding: 0;
8435
+ margin: -1px;
8436
+ overflow: hidden;
8437
+ clip: rect(0, 0, 0, 0);
8438
+ white-space: nowrap;
8439
+ border: 0;
8440
+ }
8441
+
8442
+ .w3eden .sr-only-focusable:active, .w3eden .sr-only-focusable:focus {
8443
+ position: static;
8444
+ width: auto;
8445
+ height: auto;
8446
+ overflow: visible;
8447
+ clip: auto;
8448
+ white-space: normal;
8449
+ }
8450
+
8451
+ .w3eden .shadow-sm {
8452
+ box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
8453
+ }
8454
+
8455
+ .w3eden .shadow {
8456
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
8457
+ }
8458
+
8459
+ .w3eden .shadow-lg {
8460
+ box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
8461
+ }
8462
+
8463
+ .w3eden .shadow-none {
8464
+ box-shadow: none !important;
8465
+ }
8466
+
8467
+ .w3eden .w-25 {
8468
+ width: 25% !important;
8469
+ }
8470
+
8471
+ .w3eden .w-50 {
8472
+ width: 50% !important;
8473
+ }
8474
+
8475
+ .w3eden .w-75 {
8476
+ width: 75% !important;
8477
+ }
8478
+
8479
+ .w3eden .w-100 {
8480
+ width: 100% !important;
8481
+ }
8482
+
8483
+ .w3eden .w-auto {
8484
+ width: auto !important;
8485
+ }
8486
+
8487
+ .w3eden .h-25 {
8488
+ height: 25% !important;
8489
+ }
8490
+
8491
+ .w3eden .h-50 {
8492
+ height: 50% !important;
8493
+ }
8494
+
8495
+ .w3eden .h-75 {
8496
+ height: 75% !important;
8497
+ }
8498
+
8499
+ .w3eden .h-100 {
8500
+ height: 100% !important;
8501
+ }
8502
+
8503
+ .w3eden .h-auto {
8504
+ height: auto !important;
8505
+ }
8506
+
8507
+ .w3eden .mw-100 {
8508
+ max-width: 100% !important;
8509
+ }
8510
+
8511
+ .w3eden .mh-100 {
8512
+ max-height: 100% !important;
8513
+ }
8514
+
8515
+ .w3eden .min-vw-100 {
8516
+ min-width: 100vw !important;
8517
+ }
8518
+
8519
+ .w3eden .min-vh-100 {
8520
+ min-height: 100vh !important;
8521
+ }
8522
+
8523
+ .w3eden .vw-100 {
8524
+ width: 100vw !important;
8525
+ }
8526
+
8527
+ .w3eden .vh-100 {
8528
+ height: 100vh !important;
8529
+ }
8530
+
8531
+ .w3eden .stretched-link::after {
8532
+ position: absolute;
8533
+ top: 0;
8534
+ right: 0;
8535
+ bottom: 0;
8536
+ left: 0;
8537
+ z-index: 1;
8538
+ pointer-events: auto;
8539
+ content: "";
8540
+ background-color: rgba(0, 0, 0, 0);
8541
+ }
8542
+
8543
+ .w3eden .m-0 {
8544
+ margin: 0 !important;
8545
+ }
8546
+
8547
+ .w3eden .mt-0,
8548
+ .w3eden .my-0 {
8549
+ margin-top: 0 !important;
8550
+ }
8551
+
8552
+ .w3eden .mr-0,
8553
+ .w3eden .mx-0 {
8554
+ margin-right: 0 !important;
8555
+ }
8556
+
8557
+ .w3eden .mb-0,
8558
+ .w3eden .my-0 {
8559
+ margin-bottom: 0 !important;
8560
+ }
8561
+
8562
+ .w3eden .ml-0,
8563
+ .w3eden .mx-0 {
8564
+ margin-left: 0 !important;
8565
+ }
8566
+
8567
+ .w3eden .m-1 {
8568
+ margin: 0.25rem !important;
8569
+ }
8570
+
8571
+ .w3eden .mt-1,
8572
+ .w3eden .my-1 {
8573
+ margin-top: 0.25rem !important;
8574
+ }
8575
+
8576
+ .w3eden .mr-1,
8577
+ .w3eden .mx-1 {
8578
+ margin-right: 0.25rem !important;
8579
+ }
8580
+
8581
+ .w3eden .mb-1,
8582
+ .w3eden .my-1 {
8583
+ margin-bottom: 0.25rem !important;
8584
+ }
8585
+
8586
+ .w3eden .ml-1,
8587
+ .w3eden .mx-1 {
8588
+ margin-left: 0.25rem !important;
8589
+ }
8590
+
8591
+ .w3eden .m-2 {
8592
+ margin: 0.5rem !important;
8593
+ }
8594
+
8595
+ .w3eden .mt-2,
8596
+ .w3eden .my-2 {
8597
+ margin-top: 0.5rem !important;
8598
+ }
8599
+
8600
+ .w3eden .mr-2,
8601
+ .w3eden .mx-2 {
8602
+ margin-right: 0.5rem !important;
8603
+ }
8604
+
8605
+ .w3eden .mb-2,
8606
+ .w3eden .my-2 {
8607
+ margin-bottom: 0.5rem !important;
8608
+ }
8609
+
8610
+ .w3eden .ml-2,
8611
+ .w3eden .mx-2 {
8612
+ margin-left: 0.5rem !important;
8613
+ }
8614
+
8615
+ .w3eden .m-3 {
8616
+ margin: 1rem !important;
8617
+ }
8618
+
8619
+ .w3eden .mt-3,
8620
+ .w3eden .my-3 {
8621
+ margin-top: 1rem !important;
8622
+ }
8623
+
8624
+ .w3eden .mr-3,
8625
+ .w3eden .mx-3 {
8626
+ margin-right: 1rem !important;
8627
+ }
8628
+
8629
+ .w3eden .mb-3,
8630
+ .w3eden .my-3 {
8631
+ margin-bottom: 1rem !important;
8632
+ }
8633
+
8634
+ .w3eden .ml-3,
8635
+ .w3eden .mx-3 {
8636
+ margin-left: 1rem !important;
8637
+ }
8638
+
8639
+ .w3eden .m-4 {
8640
+ margin: 1.5rem !important;
8641
+ }
8642
+
8643
+ .w3eden .mt-4,
8644
+ .w3eden .my-4 {
8645
+ margin-top: 1.5rem !important;
8646
+ }
8647
+
8648
+ .w3eden .mr-4,
8649
+ .w3eden .mx-4 {
8650
+ margin-right: 1.5rem !important;
8651
+ }
8652
+
8653
+ .w3eden .mb-4,
8654
+ .w3eden .my-4 {
8655
+ margin-bottom: 1.5rem !important;
8656
+ }
8657
+
8658
+ .w3eden .ml-4,
8659
+ .w3eden .mx-4 {
8660
+ margin-left: 1.5rem !important;
8661
+ }
8662
+
8663
+ .w3eden .m-5 {
8664
+ margin: 3rem !important;
8665
+ }
8666
+
8667
+ .w3eden .mt-5,
8668
+ .w3eden .my-5 {
8669
+ margin-top: 3rem !important;
8670
+ }
8671
+
8672
+ .w3eden .mr-5,
8673
+ .w3eden .mx-5 {
8674
+ margin-right: 3rem !important;
8675
+ }
8676
+
8677
+ .w3eden .mb-5,
8678
+ .w3eden .my-5 {
8679
+ margin-bottom: 3rem !important;
8680
+ }
8681
+
8682
+ .w3eden .ml-5,
8683
+ .w3eden .mx-5 {
8684
+ margin-left: 3rem !important;
8685
+ }
8686
+
8687
+ .w3eden .p-0 {
8688
+ padding: 0 !important;
8689
+ }
8690
+
8691
+ .w3eden .pt-0,
8692
+ .w3eden .py-0 {
8693
+ padding-top: 0 !important;
8694
+ }
8695
+
8696
+ .w3eden .pr-0,
8697
+ .w3eden .px-0 {
8698
+ padding-right: 0 !important;
8699
+ }
8700
+
8701
+ .w3eden .pb-0,
8702
+ .w3eden .py-0 {
8703
+ padding-bottom: 0 !important;
8704
+ }
8705
+
8706
+ .w3eden .pl-0,
8707
+ .w3eden .px-0 {
8708
+ padding-left: 0 !important;
8709
+ }
8710
+
8711
+ .w3eden .p-1 {
8712
+ padding: 0.25rem !important;
8713
+ }
8714
+
8715
+ .w3eden .pt-1,
8716
+ .w3eden .py-1 {
8717
+ padding-top: 0.25rem !important;
8718
+ }
8719
+
8720
+ .w3eden .pr-1,
8721
+ .w3eden .px-1 {
8722
+ padding-right: 0.25rem !important;
8723
+ }
8724
+
8725
+ .w3eden .pb-1,
8726
+ .w3eden .py-1 {
8727
+ padding-bottom: 0.25rem !important;
8728
+ }
8729
+
8730
+ .w3eden .pl-1,
8731
+ .w3eden .px-1 {
8732
+ padding-left: 0.25rem !important;
8733
+ }
8734
+
8735
+ .w3eden .p-2 {
8736
+ padding: 0.5rem !important;
8737
+ }
8738
+
8739
+ .w3eden .pt-2,
8740
+ .w3eden .py-2 {
8741
+ padding-top: 0.5rem !important;
8742
+ }
8743
+
8744
+ .w3eden .pr-2,
8745
+ .w3eden .px-2 {
8746
+ padding-right: 0.5rem !important;
8747
+ }
8748
+
8749
+ .w3eden .pb-2,
8750
+ .w3eden .py-2 {
8751
+ padding-bottom: 0.5rem !important;
8752
+ }
8753
+
8754
+ .w3eden .pl-2,
8755
+ .w3eden .px-2 {
8756
+ padding-left: 0.5rem !important;
8757
+ }
8758
+
8759
+ .w3eden .p-3 {
8760
+ padding: 1rem !important;
8761
+ }
8762
+
8763
+ .w3eden .pt-3,
8764
+ .w3eden .py-3 {
8765
+ padding-top: 1rem !important;
8766
+ }
8767
+
8768
+ .w3eden .pr-3,
8769
+ .w3eden .px-3 {
8770
+ padding-right: 1rem !important;
8771
+ }
8772
+
8773
+ .w3eden .pb-3,
8774
+ .w3eden .py-3 {
8775
+ padding-bottom: 1rem !important;
8776
+ }
8777
+
8778
+ .w3eden .pl-3,
8779
+ .w3eden .px-3 {
8780
+ padding-left: 1rem !important;
8781
+ }
8782
+
8783
+ .w3eden .p-4 {
8784
+ padding: 1.5rem !important;
8785
+ }
8786
+
8787
+ .w3eden .pt-4,
8788
+ .w3eden .py-4 {
8789
+ padding-top: 1.5rem !important;
8790
+ }
8791
+
8792
+ .w3eden .pr-4,
8793
+ .w3eden .px-4 {
8794
+ padding-right: 1.5rem !important;
8795
+ }
8796
+
8797
+ .w3eden .pb-4,
8798
+ .w3eden .py-4 {
8799
+ padding-bottom: 1.5rem !important;
8800
+ }
8801
+
8802
+ .w3eden .pl-4,
8803
+ .w3eden .px-4 {
8804
+ padding-left: 1.5rem !important;
8805
+ }
8806
+
8807
+ .w3eden .p-5 {
8808
+ padding: 3rem !important;
8809
+ }
8810
+
8811
+ .w3eden .pt-5,
8812
+ .w3eden .py-5 {
8813
+ padding-top: 3rem !important;
8814
+ }
8815
+
8816
+ .w3eden .pr-5,
8817
+ .w3eden .px-5 {
8818
+ padding-right: 3rem !important;
8819
+ }
8820
+
8821
+ .w3eden .pb-5,
8822
+ .w3eden .py-5 {
8823
+ padding-bottom: 3rem !important;
8824
+ }
8825
+
8826
+ .w3eden .pl-5,
8827
+ .w3eden .px-5 {
8828
+ padding-left: 3rem !important;
8829
+ }
8830
+
8831
+ .w3eden .m-n1 {
8832
+ margin: -0.25rem !important;
8833
+ }
8834
+
8835
+ .w3eden .mt-n1,
8836
+ .w3eden .my-n1 {
8837
+ margin-top: -0.25rem !important;
8838
+ }
8839
+
8840
+ .w3eden .mr-n1,
8841
+ .w3eden .mx-n1 {
8842
+ margin-right: -0.25rem !important;
8843
+ }
8844
+
8845
+ .w3eden .mb-n1,
8846
+ .w3eden .my-n1 {
8847
+ margin-bottom: -0.25rem !important;
8848
+ }
8849
+
8850
+ .w3eden .ml-n1,
8851
+ .w3eden .mx-n1 {
8852
+ margin-left: -0.25rem !important;
8853
+ }
8854
+
8855
+ .w3eden .m-n2 {
8856
+ margin: -0.5rem !important;
8857
+ }
8858
+
8859
+ .w3eden .mt-n2,
8860
+ .w3eden .my-n2 {
8861
+ margin-top: -0.5rem !important;
8862
+ }
8863
+
8864
+ .w3eden .mr-n2,
8865
+ .w3eden .mx-n2 {
8866
+ margin-right: -0.5rem !important;
8867
+ }
8868
+
8869
+ .w3eden .mb-n2,
8870
+ .w3eden .my-n2 {
8871
+ margin-bottom: -0.5rem !important;
8872
+ }
8873
+
8874
+ .w3eden .ml-n2,
8875
+ .w3eden .mx-n2 {
8876
+ margin-left: -0.5rem !important;
8877
+ }
8878
+
8879
+ .w3eden .m-n3 {
8880
+ margin: -1rem !important;
8881
+ }
8882
+
8883
+ .w3eden .mt-n3,
8884
+ .w3eden .my-n3 {
8885
+ margin-top: -1rem !important;
8886
+ }
8887
+
8888
+ .w3eden .mr-n3,
8889
+ .w3eden .mx-n3 {
8890
+ margin-right: -1rem !important;
8891
+ }
8892
+
8893
+ .w3eden .mb-n3,
8894
+ .w3eden .my-n3 {
8895
+ margin-bottom: -1rem !important;
8896
+ }
8897
+
8898
+ .w3eden .ml-n3,
8899
+ .w3eden .mx-n3 {
8900
+ margin-left: -1rem !important;
8901
+ }
8902
+
8903
+ .w3eden .m-n4 {
8904
+ margin: -1.5rem !important;
8905
+ }
8906
+
8907
+ .w3eden .mt-n4,
8908
+ .w3eden .my-n4 {
8909
+ margin-top: -1.5rem !important;
8910
+ }
8911
+
8912
+ .w3eden .mr-n4,
8913
+ .w3eden .mx-n4 {
8914
+ margin-right: -1.5rem !important;
8915
+ }
8916
+
8917
+ .w3eden .mb-n4,
8918
+ .w3eden .my-n4 {
8919
+ margin-bottom: -1.5rem !important;
8920
+ }
8921
+
8922
+ .w3eden .ml-n4,
8923
+ .w3eden .mx-n4 {
8924
+ margin-left: -1.5rem !important;
8925
+ }
8926
+
8927
+ .w3eden .m-n5 {
8928
+ margin: -3rem !important;
8929
+ }
8930
+
8931
+ .w3eden .mt-n5,
8932
+ .w3eden .my-n5 {
8933
+ margin-top: -3rem !important;
8934
+ }
8935
+
8936
+ .w3eden .mr-n5,
8937
+ .w3eden .mx-n5 {
8938
+ margin-right: -3rem !important;
8939
+ }
8940
+
8941
+ .w3eden .mb-n5,
8942
+ .w3eden .my-n5 {
8943
+ margin-bottom: -3rem !important;
8944
+ }
8945
+
8946
+ .w3eden .ml-n5,
8947
+ .w3eden .mx-n5 {
8948
+ margin-left: -3rem !important;
8949
+ }
8950
+
8951
+ .w3eden .m-auto {
8952
+ margin: auto !important;
8953
+ }
8954
+
8955
+ .w3eden .mt-auto,
8956
+ .w3eden .my-auto {
8957
+ margin-top: auto !important;
8958
+ }
8959
+
8960
+ .w3eden .mr-auto,
8961
+ .w3eden .mx-auto {
8962
+ margin-right: auto !important;
8963
+ }
8964
+
8965
+ .w3eden .mb-auto,
8966
+ .w3eden .my-auto {
8967
+ margin-bottom: auto !important;
8968
+ }
8969
+
8970
+ .w3eden .ml-auto,
8971
+ .w3eden .mx-auto {
8972
+ margin-left: auto !important;
8973
+ }
8974
+
8975
+ @media (min-width: 576px) {
8976
+ .w3eden .m-sm-0 {
8977
+ margin: 0 !important;
8978
+ }
8979
+
8980
+ .w3eden .mt-sm-0,
8981
+ .w3eden .my-sm-0 {
8982
+ margin-top: 0 !important;
8983
+ }
8984
+
8985
+ .w3eden .mr-sm-0,
8986
+ .w3eden .mx-sm-0 {
8987
+ margin-right: 0 !important;
8988
+ }
8989
+
8990
+ .w3eden .mb-sm-0,
8991
+ .w3eden .my-sm-0 {
8992
+ margin-bottom: 0 !important;
8993
+ }
8994
+
8995
+ .w3eden .ml-sm-0,
8996
+ .w3eden .mx-sm-0 {
8997
+ margin-left: 0 !important;
8998
+ }
8999
+
9000
+ .w3eden .m-sm-1 {
9001
+ margin: 0.25rem !important;
9002
+ }
9003
+
9004
+ .w3eden .mt-sm-1,
9005
+ .w3eden .my-sm-1 {
9006
+ margin-top: 0.25rem !important;
9007
+ }
9008
+
9009
+ .w3eden .mr-sm-1,
9010
+ .w3eden .mx-sm-1 {
9011
+ margin-right: 0.25rem !important;
9012
+ }
9013
+
9014
+ .w3eden .mb-sm-1,
9015
+ .w3eden .my-sm-1 {
9016
+ margin-bottom: 0.25rem !important;
9017
+ }
9018
+
9019
+ .w3eden .ml-sm-1,
9020
+ .w3eden .mx-sm-1 {
9021
+ margin-left: 0.25rem !important;
9022
+ }
9023
+
9024
+ .w3eden .m-sm-2 {
9025
+ margin: 0.5rem !important;
9026
+ }
9027
+
9028
+ .w3eden .mt-sm-2,
9029
+ .w3eden .my-sm-2 {
9030
+ margin-top: 0.5rem !important;
9031
+ }
9032
+
9033
+ .w3eden .mr-sm-2,
9034
+ .w3eden .mx-sm-2 {
9035
+ margin-right: 0.5rem !important;
9036
+ }
9037
+
9038
+ .w3eden .mb-sm-2,
9039
+ .w3eden .my-sm-2 {
9040
+ margin-bottom: 0.5rem !important;
9041
+ }
9042
+
9043
+ .w3eden .ml-sm-2,
9044
+ .w3eden .mx-sm-2 {
9045
+ margin-left: 0.5rem !important;
9046
+ }
9047
+
9048
+ .w3eden .m-sm-3 {
9049
+ margin: 1rem !important;
9050
+ }
9051
+
9052
+ .w3eden .mt-sm-3,
9053
+ .w3eden .my-sm-3 {
9054
+ margin-top: 1rem !important;
9055
+ }
9056
+
9057
+ .w3eden .mr-sm-3,
9058
+ .w3eden .mx-sm-3 {
9059
+ margin-right: 1rem !important;
9060
+ }
9061
+
9062
+ .w3eden .mb-sm-3,
9063
+ .w3eden .my-sm-3 {
9064
+ margin-bottom: 1rem !important;
9065
+ }
9066
+
9067
+ .w3eden .ml-sm-3,
9068
+ .w3eden .mx-sm-3 {
9069
+ margin-left: 1rem !important;
9070
+ }
9071
+
9072
+ .w3eden .m-sm-4 {
9073
+ margin: 1.5rem !important;
9074
+ }
9075
+
9076
+ .w3eden .mt-sm-4,
9077
+ .w3eden .my-sm-4 {
9078
+ margin-top: 1.5rem !important;
9079
+ }
9080
+
9081
+ .w3eden .mr-sm-4,
9082
+ .w3eden .mx-sm-4 {
9083
+ margin-right: 1.5rem !important;
9084
+ }
9085
+
9086
+ .w3eden .mb-sm-4,
9087
+ .w3eden .my-sm-4 {
9088
+ margin-bottom: 1.5rem !important;
9089
+ }
9090
+
9091
+ .w3eden .ml-sm-4,
9092
+ .w3eden .mx-sm-4 {
9093
+ margin-left: 1.5rem !important;
9094
+ }
9095
+
9096
+ .w3eden .m-sm-5 {
9097
+ margin: 3rem !important;
9098
+ }
9099
+
9100
+ .w3eden .mt-sm-5,
9101
+ .w3eden .my-sm-5 {
9102
+ margin-top: 3rem !important;
9103
+ }
9104
+
9105
+ .w3eden .mr-sm-5,
9106
+ .w3eden .mx-sm-5 {
9107
+ margin-right: 3rem !important;
9108
+ }
9109
+
9110
+ .w3eden .mb-sm-5,
9111
+ .w3eden .my-sm-5 {
9112
+ margin-bottom: 3rem !important;
9113
+ }
9114
+
9115
+ .w3eden .ml-sm-5,
9116
+ .w3eden .mx-sm-5 {
9117
+ margin-left: 3rem !important;
9118
+ }
9119
+
9120
+ .w3eden .p-sm-0 {
9121
+ padding: 0 !important;
9122
+ }
9123
+
9124
+ .w3eden .pt-sm-0,
9125
+ .w3eden .py-sm-0 {
9126
+ padding-top: 0 !important;
9127
+ }
9128
+
9129
+ .w3eden .pr-sm-0,
9130
+ .w3eden .px-sm-0 {
9131
+ padding-right: 0 !important;
9132
+ }
9133
+
9134
+ .w3eden .pb-sm-0,
9135
+ .w3eden .py-sm-0 {
9136
+ padding-bottom: 0 !important;
9137
+ }
9138
+
9139
+ .w3eden .pl-sm-0,
9140
+ .w3eden .px-sm-0 {
9141
+ padding-left: 0 !important;
9142
+ }
9143
+
9144
+ .w3eden .p-sm-1 {
9145
+ padding: 0.25rem !important;
9146
+ }
9147
+
9148
+ .w3eden .pt-sm-1,
9149
+ .w3eden .py-sm-1 {
9150
+ padding-top: 0.25rem !important;
9151
+ }
9152
+
9153
+ .w3eden .pr-sm-1,
9154
+ .w3eden .px-sm-1 {
9155
+ padding-right: 0.25rem !important;
9156
+ }
9157
+
9158
+ .w3eden .pb-sm-1,
9159
+ .w3eden .py-sm-1 {
9160
+ padding-bottom: 0.25rem !important;
9161
+ }
9162
+
9163
+ .w3eden .pl-sm-1,
9164
+ .w3eden .px-sm-1 {
9165
+ padding-left: 0.25rem !important;
9166
+ }
9167
+
9168
+ .w3eden .p-sm-2 {
9169
+ padding: 0.5rem !important;
9170
+ }
9171
+
9172
+ .w3eden .pt-sm-2,
9173
+ .w3eden .py-sm-2 {
9174
+ padding-top: 0.5rem !important;
9175
+ }
9176
+
9177
+ .w3eden .pr-sm-2,
9178
+ .w3eden .px-sm-2 {
9179
+ padding-right: 0.5rem !important;
9180
+ }
9181
+
9182
+ .w3eden .pb-sm-2,
9183
+ .w3eden .py-sm-2 {
9184
+ padding-bottom: 0.5rem !important;
9185
+ }
9186
+
9187
+ .w3eden .pl-sm-2,
9188
+ .w3eden .px-sm-2 {
9189
+ padding-left: 0.5rem !important;
9190
+ }
9191
+
9192
+ .w3eden .p-sm-3 {
9193
+ padding: 1rem !important;
9194
+ }
9195
+
9196
+ .w3eden .pt-sm-3,
9197
+ .w3eden .py-sm-3 {
9198
+ padding-top: 1rem !important;
9199
+ }
9200
+
9201
+ .w3eden .pr-sm-3,
9202
+ .w3eden .px-sm-3 {
9203
+ padding-right: 1rem !important;
9204
+ }
9205
+
9206
+ .w3eden .pb-sm-3,
9207
+ .w3eden .py-sm-3 {
9208
+ padding-bottom: 1rem !important;
9209
+ }
9210
+
9211
+ .w3eden .pl-sm-3,
9212
+ .w3eden .px-sm-3 {
9213
+ padding-left: 1rem !important;
9214
+ }
9215
+
9216
+ .w3eden .p-sm-4 {
9217
+ padding: 1.5rem !important;
9218
+ }
9219
+
9220
+ .w3eden .pt-sm-4,
9221
+ .w3eden .py-sm-4 {
9222
+ padding-top: 1.5rem !important;
9223
+ }
9224
+
9225
+ .w3eden .pr-sm-4,
9226
+ .w3eden .px-sm-4 {
9227
+ padding-right: 1.5rem !important;
9228
+ }
9229
+
9230
+ .w3eden .pb-sm-4,
9231
+ .w3eden .py-sm-4 {
9232
+ padding-bottom: 1.5rem !important;
9233
+ }
9234
+
9235
+ .w3eden .pl-sm-4,
9236
+ .w3eden .px-sm-4 {
9237
+ padding-left: 1.5rem !important;
9238
+ }
9239
+
9240
+ .w3eden .p-sm-5 {
9241
+ padding: 3rem !important;
9242
+ }
9243
+
9244
+ .w3eden .pt-sm-5,
9245
+ .w3eden .py-sm-5 {
9246
+ padding-top: 3rem !important;
9247
+ }
9248
+
9249
+ .w3eden .pr-sm-5,
9250
+ .w3eden .px-sm-5 {
9251
+ padding-right: 3rem !important;
9252
+ }
9253
+
9254
+ .w3eden .pb-sm-5,
9255
+ .w3eden .py-sm-5 {
9256
+ padding-bottom: 3rem !important;
9257
+ }
9258
+
9259
+ .w3eden .pl-sm-5,
9260
+ .w3eden .px-sm-5 {
9261
+ padding-left: 3rem !important;
9262
+ }
9263
+
9264
+ .w3eden .m-sm-n1 {
9265
+ margin: -0.25rem !important;
9266
+ }
9267
+
9268
+ .w3eden .mt-sm-n1,
9269
+ .w3eden .my-sm-n1 {
9270
+ margin-top: -0.25rem !important;
9271
+ }
9272
+
9273
+ .w3eden .mr-sm-n1,
9274
+ .w3eden .mx-sm-n1 {
9275
+ margin-right: -0.25rem !important;
9276
+ }
9277
+
9278
+ .w3eden .mb-sm-n1,
9279
+ .w3eden .my-sm-n1 {
9280
+ margin-bottom: -0.25rem !important;
9281
+ }
9282
+
9283
+ .w3eden .ml-sm-n1,
9284
+ .w3eden .mx-sm-n1 {
9285
+ margin-left: -0.25rem !important;
9286
+ }
9287
+
9288
+ .w3eden .m-sm-n2 {
9289
+ margin: -0.5rem !important;
9290
+ }
9291
+
9292
+ .w3eden .mt-sm-n2,
9293
+ .w3eden .my-sm-n2 {
9294
+ margin-top: -0.5rem !important;
9295
+ }
9296
+
9297
+ .w3eden .mr-sm-n2,
9298
+ .w3eden .mx-sm-n2 {
9299
+ margin-right: -0.5rem !important;
9300
+ }
9301
+
9302
+ .w3eden .mb-sm-n2,
9303
+ .w3eden .my-sm-n2 {
9304
+ margin-bottom: -0.5rem !important;
9305
+ }
9306
+
9307
+ .w3eden .ml-sm-n2,
9308
+ .w3eden .mx-sm-n2 {
9309
+ margin-left: -0.5rem !important;
9310
+ }
9311
+
9312
+ .w3eden .m-sm-n3 {
9313
+ margin: -1rem !important;
9314
+ }
9315
+
9316
+ .w3eden .mt-sm-n3,
9317
+ .w3eden .my-sm-n3 {
9318
+ margin-top: -1rem !important;
9319
+ }
9320
+
9321
+ .w3eden .mr-sm-n3,
9322
+ .w3eden .mx-sm-n3 {
9323
+ margin-right: -1rem !important;
9324
+ }
9325
+
9326
+ .w3eden .mb-sm-n3,
9327
+ .w3eden .my-sm-n3 {
9328
+ margin-bottom: -1rem !important;
9329
+ }
9330
+
9331
+ .w3eden .ml-sm-n3,
9332
+ .w3eden .mx-sm-n3 {
9333
+ margin-left: -1rem !important;
9334
+ }
9335
+
9336
+ .w3eden .m-sm-n4 {
9337
+ margin: -1.5rem !important;
9338
+ }
9339
+
9340
+ .w3eden .mt-sm-n4,
9341
+ .w3eden .my-sm-n4 {
9342
+ margin-top: -1.5rem !important;
9343
+ }
9344
+
9345
+ .w3eden .mr-sm-n4,
9346
+ .w3eden .mx-sm-n4 {
9347
+ margin-right: -1.5rem !important;
9348
+ }
9349
+
9350
+ .w3eden .mb-sm-n4,
9351
+ .w3eden .my-sm-n4 {
9352
+ margin-bottom: -1.5rem !important;
9353
+ }
9354
+
9355
+ .w3eden .ml-sm-n4,
9356
+ .w3eden .mx-sm-n4 {
9357
+ margin-left: -1.5rem !important;
9358
+ }
9359
+
9360
+ .w3eden .m-sm-n5 {
9361
+ margin: -3rem !important;
9362
+ }
9363
+
9364
+ .w3eden .mt-sm-n5,
9365
+ .w3eden .my-sm-n5 {
9366
+ margin-top: -3rem !important;
9367
+ }
9368
+
9369
+ .w3eden .mr-sm-n5,
9370
+ .w3eden .mx-sm-n5 {
9371
+ margin-right: -3rem !important;
9372
+ }
9373
+
9374
+ .w3eden .mb-sm-n5,
9375
+ .w3eden .my-sm-n5 {
9376
+ margin-bottom: -3rem !important;
9377
+ }
9378
+
9379
+ .w3eden .ml-sm-n5,
9380
+ .w3eden .mx-sm-n5 {
9381
+ margin-left: -3rem !important;
9382
+ }
9383
+
9384
+ .w3eden .m-sm-auto {
9385
+ margin: auto !important;
9386
+ }
9387
+
9388
+ .w3eden .mt-sm-auto,
9389
+ .w3eden .my-sm-auto {
9390
+ margin-top: auto !important;
9391
+ }
9392
+
9393
+ .w3eden .mr-sm-auto,
9394
+ .w3eden .mx-sm-auto {
9395
+ margin-right: auto !important;
9396
+ }
9397
+
9398
+ .w3eden .mb-sm-auto,
9399
+ .w3eden .my-sm-auto {
9400
+ margin-bottom: auto !important;
9401
+ }
9402
+
9403
+ .w3eden .ml-sm-auto,
9404
+ .w3eden .mx-sm-auto {
9405
+ margin-left: auto !important;
9406
+ }
9407
+ }
9408
+
9409
+ @media (min-width: 768px) {
9410
+ .w3eden .m-md-0 {
9411
+ margin: 0 !important;
9412
+ }
9413
+
9414
+ .w3eden .mt-md-0,
9415
+ .w3eden .my-md-0 {
9416
+ margin-top: 0 !important;
9417
+ }
9418
+
9419
+ .w3eden .mr-md-0,
9420
+ .w3eden .mx-md-0 {
9421
+ margin-right: 0 !important;
9422
+ }
9423
+
9424
+ .w3eden .mb-md-0,
9425
+ .w3eden .my-md-0 {
9426
+ margin-bottom: 0 !important;
9427
+ }
9428
+
9429
+ .w3eden .ml-md-0,
9430
+ .w3eden .mx-md-0 {
9431
+ margin-left: 0 !important;
9432
+ }
9433
+
9434
+ .w3eden .m-md-1 {
9435
+ margin: 0.25rem !important;
9436
+ }
9437
+
9438
+ .w3eden .mt-md-1,
9439
+ .w3eden .my-md-1 {
9440
+ margin-top: 0.25rem !important;
9441
+ }
9442
+
9443
+ .w3eden .mr-md-1,
9444
+ .w3eden .mx-md-1 {
9445
+ margin-right: 0.25rem !important;
9446
+ }
9447
+
9448
+ .w3eden .mb-md-1,
9449
+ .w3eden .my-md-1 {
9450
+ margin-bottom: 0.25rem !important;
9451
+ }
9452
+
9453
+ .w3eden .ml-md-1,
9454
+ .w3eden .mx-md-1 {
9455
+ margin-left: 0.25rem !important;
9456
+ }
9457
+
9458
+ .w3eden .m-md-2 {
9459
+ margin: 0.5rem !important;
9460
+ }
9461
+
9462
+ .w3eden .mt-md-2,
9463
+ .w3eden .my-md-2 {
9464
+ margin-top: 0.5rem !important;
9465
+ }
9466
+
9467
+ .w3eden .mr-md-2,
9468
+ .w3eden .mx-md-2 {
9469
+ margin-right: 0.5rem !important;
9470
+ }
9471
+
9472
+ .w3eden .mb-md-2,
9473
+ .w3eden .my-md-2 {
9474
+ margin-bottom: 0.5rem !important;
9475
+ }
9476
+
9477
+ .w3eden .ml-md-2,
9478
+ .w3eden .mx-md-2 {
9479
+ margin-left: 0.5rem !important;
9480
+ }
9481
+
9482
+ .w3eden .m-md-3 {
9483
+ margin: 1rem !important;
9484
+ }
9485
+
9486
+ .w3eden .mt-md-3,
9487
+ .w3eden .my-md-3 {
9488
+ margin-top: 1rem !important;
9489
+ }
9490
+
9491
+ .w3eden .mr-md-3,
9492
+ .w3eden .mx-md-3 {
9493
+ margin-right: 1rem !important;
9494
+ }
9495
+
9496
+ .w3eden .mb-md-3,
9497
+ .w3eden .my-md-3 {
9498
+ margin-bottom: 1rem !important;
9499
+ }
9500
+
9501
+ .w3eden .ml-md-3,
9502
+ .w3eden .mx-md-3 {
9503
+ margin-left: 1rem !important;
9504
+ }
9505
+
9506
+ .w3eden .m-md-4 {
9507
+ margin: 1.5rem !important;
9508
+ }
9509
+
9510
+ .w3eden .mt-md-4,
9511
+ .w3eden .my-md-4 {
9512
+ margin-top: 1.5rem !important;
9513
+ }
9514
+
9515
+ .w3eden .mr-md-4,
9516
+ .w3eden .mx-md-4 {
9517
+ margin-right: 1.5rem !important;
9518
+ }
9519
+
9520
+ .w3eden .mb-md-4,
9521
+ .w3eden .my-md-4 {
9522
+ margin-bottom: 1.5rem !important;
9523
+ }
9524
+
9525
+ .w3eden .ml-md-4,
9526
+ .w3eden .mx-md-4 {
9527
+ margin-left: 1.5rem !important;
9528
+ }
9529
+
9530
+ .w3eden .m-md-5 {
9531
+ margin: 3rem !important;
9532
+ }
9533
+
9534
+ .w3eden .mt-md-5,
9535
+ .w3eden .my-md-5 {
9536
+ margin-top: 3rem !important;
9537
+ }
9538
+
9539
+ .w3eden .mr-md-5,
9540
+ .w3eden .mx-md-5 {
9541
+ margin-right: 3rem !important;
9542
+ }
9543
+
9544
+ .w3eden .mb-md-5,
9545
+ .w3eden .my-md-5 {
9546
+ margin-bottom: 3rem !important;
9547
+ }
9548
+
9549
+ .w3eden .ml-md-5,
9550
+ .w3eden .mx-md-5 {
9551
+ margin-left: 3rem !important;
9552
+ }
9553
+
9554
+ .w3eden .p-md-0 {
9555
+ padding: 0 !important;
9556
+ }
9557
+
9558
+ .w3eden .pt-md-0,
9559
+ .w3eden .py-md-0 {
9560
+ padding-top: 0 !important;
9561
+ }
9562
+
9563
+ .w3eden .pr-md-0,
9564
+ .w3eden .px-md-0 {
9565
+ padding-right: 0 !important;
9566
+ }
9567
+
9568
+ .w3eden .pb-md-0,
9569
+ .w3eden .py-md-0 {
9570
+ padding-bottom: 0 !important;
9571
+ }
9572
+
9573
+ .w3eden .pl-md-0,
9574
+ .w3eden .px-md-0 {
9575
+ padding-left: 0 !important;
9576
+ }
9577
+
9578
+ .w3eden .p-md-1 {
9579
+ padding: 0.25rem !important;
9580
+ }
9581
+
9582
+ .w3eden .pt-md-1,
9583
+ .w3eden .py-md-1 {
9584
+ padding-top: 0.25rem !important;
9585
+ }
9586
+
9587
+ .w3eden .pr-md-1,
9588
+ .w3eden .px-md-1 {
9589
+ padding-right: 0.25rem !important;
9590
+ }
9591
+
9592
+ .w3eden .pb-md-1,
9593
+ .w3eden .py-md-1 {
9594
+ padding-bottom: 0.25rem !important;
9595
+ }
9596
+
9597
+ .w3eden .pl-md-1,
9598
+ .w3eden .px-md-1 {
9599
+ padding-left: 0.25rem !important;
9600
+ }
9601
+
9602
+ .w3eden .p-md-2 {
9603
+ padding: 0.5rem !important;
9604
+ }
9605
+
9606
+ .w3eden .pt-md-2,
9607
+ .w3eden .py-md-2 {
9608
+ padding-top: 0.5rem !important;
9609
+ }
9610
+
9611
+ .w3eden .pr-md-2,
9612
+ .w3eden .px-md-2 {
9613
+ padding-right: 0.5rem !important;
9614
+ }
9615
+
9616
+ .w3eden .pb-md-2,
9617
+ .w3eden .py-md-2 {
9618
+ padding-bottom: 0.5rem !important;
9619
+ }
9620
+
9621
+ .w3eden .pl-md-2,
9622
+ .w3eden .px-md-2 {
9623
+ padding-left: 0.5rem !important;
9624
+ }
9625
+
9626
+ .w3eden .p-md-3 {
9627
+ padding: 1rem !important;
9628
+ }
9629
+
9630
+ .w3eden .pt-md-3,
9631
+ .w3eden .py-md-3 {
9632
+ padding-top: 1rem !important;
9633
+ }
9634
+
9635
+ .w3eden .pr-md-3,
9636
+ .w3eden .px-md-3 {
9637
+ padding-right: 1rem !important;
9638
+ }
9639
+
9640
+ .w3eden .pb-md-3,
9641
+ .w3eden .py-md-3 {
9642
+ padding-bottom: 1rem !important;
9643
+ }
9644
+
9645
+ .w3eden .pl-md-3,
9646
+ .w3eden .px-md-3 {
9647
+ padding-left: 1rem !important;
9648
+ }
9649
+
9650
+ .w3eden .p-md-4 {
9651
+ padding: 1.5rem !important;
9652
+ }
9653
+
9654
+ .w3eden .pt-md-4,
9655
+ .w3eden .py-md-4 {
9656
+ padding-top: 1.5rem !important;
9657
+ }
9658
+
9659
+ .w3eden .pr-md-4,
9660
+ .w3eden .px-md-4 {
9661
+ padding-right: 1.5rem !important;
9662
+ }
9663
+
9664
+ .w3eden .pb-md-4,
9665
+ .w3eden .py-md-4 {
9666
+ padding-bottom: 1.5rem !important;
9667
+ }
9668
+
9669
+ .w3eden .pl-md-4,
9670
+ .w3eden .px-md-4 {
9671
+ padding-left: 1.5rem !important;
9672
+ }
9673
+
9674
+ .w3eden .p-md-5 {
9675
+ padding: 3rem !important;
9676
+ }
9677
+
9678
+ .w3eden .pt-md-5,
9679
+ .w3eden .py-md-5 {
9680
+ padding-top: 3rem !important;
9681
+ }
9682
+
9683
+ .w3eden .pr-md-5,
9684
+ .w3eden .px-md-5 {
9685
+ padding-right: 3rem !important;
9686
+ }
9687
+
9688
+ .w3eden .pb-md-5,
9689
+ .w3eden .py-md-5 {
9690
+ padding-bottom: 3rem !important;
9691
+ }
9692
+
9693
+ .w3eden .pl-md-5,
9694
+ .w3eden .px-md-5 {
9695
+ padding-left: 3rem !important;
9696
+ }
9697
+
9698
+ .w3eden .m-md-n1 {
9699
+ margin: -0.25rem !important;
9700
+ }
9701
+
9702
+ .w3eden .mt-md-n1,
9703
+ .w3eden .my-md-n1 {
9704
+ margin-top: -0.25rem !important;
9705
+ }
9706
+
9707
+ .w3eden .mr-md-n1,
9708
+ .w3eden .mx-md-n1 {
9709
+ margin-right: -0.25rem !important;
9710
+ }
9711
+
9712
+ .w3eden .mb-md-n1,
9713
+ .w3eden .my-md-n1 {
9714
+ margin-bottom: -0.25rem !important;
9715
+ }
9716
+
9717
+ .w3eden .ml-md-n1,
9718
+ .w3eden .mx-md-n1 {
9719
+ margin-left: -0.25rem !important;
9720
+ }
9721
+
9722
+ .w3eden .m-md-n2 {
9723
+ margin: -0.5rem !important;
9724
+ }
9725
+
9726
+ .w3eden .mt-md-n2,
9727
+ .w3eden .my-md-n2 {
9728
+ margin-top: -0.5rem !important;
9729
+ }
9730
+
9731
+ .w3eden .mr-md-n2,
9732
+ .w3eden .mx-md-n2 {
9733
+ margin-right: -0.5rem !important;
9734
+ }
9735
+
9736
+ .w3eden .mb-md-n2,
9737
+ .w3eden .my-md-n2 {
9738
+ margin-bottom: -0.5rem !important;
9739
+ }
9740
+
9741
+ .w3eden .ml-md-n2,
9742
+ .w3eden .mx-md-n2 {
9743
+ margin-left: -0.5rem !important;
9744
+ }
9745
+
9746
+ .w3eden .m-md-n3 {
9747
+ margin: -1rem !important;
9748
+ }
9749
+
9750
+ .w3eden .mt-md-n3,
9751
+ .w3eden .my-md-n3 {
9752
+ margin-top: -1rem !important;
9753
+ }
9754
+
9755
+ .w3eden .mr-md-n3,
9756
+ .w3eden .mx-md-n3 {
9757
+ margin-right: -1rem !important;
9758
+ }
9759
+
9760
+ .w3eden .mb-md-n3,
9761
+ .w3eden .my-md-n3 {
9762
+ margin-bottom: -1rem !important;
9763
+ }
9764
+
9765
+ .w3eden .ml-md-n3,
9766
+ .w3eden .mx-md-n3 {
9767
+ margin-left: -1rem !important;
9768
+ }
9769
+
9770
+ .w3eden .m-md-n4 {
9771
+ margin: -1.5rem !important;
9772
+ }
9773
+
9774
+ .w3eden .mt-md-n4,
9775
+ .w3eden .my-md-n4 {
9776
+ margin-top: -1.5rem !important;
9777
+ }
9778
+
9779
+ .w3eden .mr-md-n4,
9780
+ .w3eden .mx-md-n4 {
9781
+ margin-right: -1.5rem !important;
9782
+ }
9783
+
9784
+ .w3eden .mb-md-n4,
9785
+ .w3eden .my-md-n4 {
9786
+ margin-bottom: -1.5rem !important;
9787
+ }
9788
+
9789
+ .w3eden .ml-md-n4,
9790
+ .w3eden .mx-md-n4 {
9791
+ margin-left: -1.5rem !important;
9792
+ }
9793
+
9794
+ .w3eden .m-md-n5 {
9795
+ margin: -3rem !important;
9796
+ }
9797
+
9798
+ .w3eden .mt-md-n5,
9799
+ .w3eden .my-md-n5 {
9800
+ margin-top: -3rem !important;
9801
+ }
9802
+
9803
+ .w3eden .mr-md-n5,
9804
+ .w3eden .mx-md-n5 {
9805
+ margin-right: -3rem !important;
9806
+ }
9807
+
9808
+ .w3eden .mb-md-n5,
9809
+ .w3eden .my-md-n5 {
9810
+ margin-bottom: -3rem !important;
9811
+ }
9812
+
9813
+ .w3eden .ml-md-n5,
9814
+ .w3eden .mx-md-n5 {
9815
+ margin-left: -3rem !important;
9816
+ }
9817
+
9818
+ .w3eden .m-md-auto {
9819
+ margin: auto !important;
9820
+ }
9821
+
9822
+ .w3eden .mt-md-auto,
9823
+ .w3eden .my-md-auto {
9824
+ margin-top: auto !important;
9825
+ }
9826
+
9827
+ .w3eden .mr-md-auto,
9828
+ .w3eden .mx-md-auto {
9829
+ margin-right: auto !important;
9830
+ }
9831
+
9832
+ .w3eden .mb-md-auto,
9833
+ .w3eden .my-md-auto {
9834
+ margin-bottom: auto !important;
9835
+ }
9836
+
9837
+ .w3eden .ml-md-auto,
9838
+ .w3eden .mx-md-auto {
9839
+ margin-left: auto !important;
9840
+ }
9841
+ }
9842
+
9843
+ @media (min-width: 992px) {
9844
+ .w3eden .m-lg-0 {
9845
+ margin: 0 !important;
9846
+ }
9847
+
9848
+ .w3eden .mt-lg-0,
9849
+ .w3eden .my-lg-0 {
9850
+ margin-top: 0 !important;
9851
+ }
9852
+
9853
+ .w3eden .mr-lg-0,
9854
+ .w3eden .mx-lg-0 {
9855
+ margin-right: 0 !important;
9856
+ }
9857
+
9858
+ .w3eden .mb-lg-0,
9859
+ .w3eden .my-lg-0 {
9860
+ margin-bottom: 0 !important;
9861
+ }
9862
+
9863
+ .w3eden .ml-lg-0,
9864
+ .w3eden .mx-lg-0 {
9865
+ margin-left: 0 !important;
9866
+ }
9867
+
9868
+ .w3eden .m-lg-1 {
9869
+ margin: 0.25rem !important;
9870
+ }
9871
+
9872
+ .w3eden .mt-lg-1,
9873
+ .w3eden .my-lg-1 {
9874
+ margin-top: 0.25rem !important;
9875
+ }
9876
+
9877
+ .w3eden .mr-lg-1,
9878
+ .w3eden .mx-lg-1 {
9879
+ margin-right: 0.25rem !important;
9880
+ }
9881
+
9882
+ .w3eden .mb-lg-1,
9883
+ .w3eden .my-lg-1 {
9884
+ margin-bottom: 0.25rem !important;
9885
+ }
9886
+
9887
+ .w3eden .ml-lg-1,
9888
+ .w3eden .mx-lg-1 {
9889
+ margin-left: 0.25rem !important;
9890
+ }
9891
+
9892
+ .w3eden .m-lg-2 {
9893
+ margin: 0.5rem !important;
9894
+ }
9895
+
9896
+ .w3eden .mt-lg-2,
9897
+ .w3eden .my-lg-2 {
9898
+ margin-top: 0.5rem !important;
9899
+ }
9900
+
9901
+ .w3eden .mr-lg-2,
9902
+ .w3eden .mx-lg-2 {
9903
+ margin-right: 0.5rem !important;
9904
+ }
9905
+
9906
+ .w3eden .mb-lg-2,
9907
+ .w3eden .my-lg-2 {
9908
+ margin-bottom: 0.5rem !important;
9909
+ }
9910
+
9911
+ .w3eden .ml-lg-2,
9912
+ .w3eden .mx-lg-2 {
9913
+ margin-left: 0.5rem !important;
9914
+ }
9915
+
9916
+ .w3eden .m-lg-3 {
9917
+ margin: 1rem !important;
9918
+ }
9919
+
9920
+ .w3eden .mt-lg-3,
9921
+ .w3eden .my-lg-3 {
9922
+ margin-top: 1rem !important;
9923
+ }
9924
+
9925
+ .w3eden .mr-lg-3,
9926
+ .w3eden .mx-lg-3 {
9927
+ margin-right: 1rem !important;
9928
+ }
9929
+
9930
+ .w3eden .mb-lg-3,
9931
+ .w3eden .my-lg-3 {
9932
+ margin-bottom: 1rem !important;
9933
+ }
9934
+
9935
+ .w3eden .ml-lg-3,
9936
+ .w3eden .mx-lg-3 {
9937
+ margin-left: 1rem !important;
9938
+ }
9939
+
9940
+ .w3eden .m-lg-4 {
9941
+ margin: 1.5rem !important;
9942
+ }
9943
+
9944
+ .w3eden .mt-lg-4,
9945
+ .w3eden .my-lg-4 {
9946
+ margin-top: 1.5rem !important;
9947
+ }
9948
+
9949
+ .w3eden .mr-lg-4,
9950
+ .w3eden .mx-lg-4 {
9951
+ margin-right: 1.5rem !important;
9952
+ }
9953
+
9954
+ .w3eden .mb-lg-4,
9955
+ .w3eden .my-lg-4 {
9956
+ margin-bottom: 1.5rem !important;
9957
+ }
9958
+
9959
+ .w3eden .ml-lg-4,
9960
+ .w3eden .mx-lg-4 {
9961
+ margin-left: 1.5rem !important;
9962
+ }
9963
+
9964
+ .w3eden .m-lg-5 {
9965
+ margin: 3rem !important;
9966
+ }
9967
+
9968
+ .w3eden .mt-lg-5,
9969
+ .w3eden .my-lg-5 {
9970
+ margin-top: 3rem !important;
9971
+ }
9972
+
9973
+ .w3eden .mr-lg-5,
9974
+ .w3eden .mx-lg-5 {
9975
+ margin-right: 3rem !important;
9976
+ }
9977
+
9978
+ .w3eden .mb-lg-5,
9979
+ .w3eden .my-lg-5 {
9980
+ margin-bottom: 3rem !important;
9981
+ }
9982
+
9983
+ .w3eden .ml-lg-5,
9984
+ .w3eden .mx-lg-5 {
9985
+ margin-left: 3rem !important;
9986
+ }
9987
+
9988
+ .w3eden .p-lg-0 {
9989
+ padding: 0 !important;
9990
+ }
9991
+
9992
+ .w3eden .pt-lg-0,
9993
+ .w3eden .py-lg-0 {
9994
+ padding-top: 0 !important;
9995
+ }
9996
+
9997
+ .w3eden .pr-lg-0,
9998
+ .w3eden .px-lg-0 {
9999
+ padding-right: 0 !important;
10000
+ }
10001
+
10002
+ .w3eden .pb-lg-0,
10003
+ .w3eden .py-lg-0 {
10004
+ padding-bottom: 0 !important;
10005
+ }
10006
+
10007
+ .w3eden .pl-lg-0,
10008
+ .w3eden .px-lg-0 {
10009
+ padding-left: 0 !important;
10010
+ }
10011
+
10012
+ .w3eden .p-lg-1 {
10013
+ padding: 0.25rem !important;
10014
+ }
10015
+
10016
+ .w3eden .pt-lg-1,
10017
+ .w3eden .py-lg-1 {
10018
+ padding-top: 0.25rem !important;
10019
+ }
10020
+
10021
+ .w3eden .pr-lg-1,
10022
+ .w3eden .px-lg-1 {
10023
+ padding-right: 0.25rem !important;
10024
+ }
10025
+
10026
+ .w3eden .pb-lg-1,
10027
+ .w3eden .py-lg-1 {
10028
+ padding-bottom: 0.25rem !important;
10029
+ }
10030
+
10031
+ .w3eden .pl-lg-1,
10032
+ .w3eden .px-lg-1 {
10033
+ padding-left: 0.25rem !important;
10034
+ }
10035
+
10036
+ .w3eden .p-lg-2 {
10037
+ padding: 0.5rem !important;
10038
+ }
10039
+
10040
+ .w3eden .pt-lg-2,
10041
+ .w3eden .py-lg-2 {
10042
+ padding-top: 0.5rem !important;
10043
+ }
10044
+
10045
+ .w3eden .pr-lg-2,
10046
+ .w3eden .px-lg-2 {
10047
+ padding-right: 0.5rem !important;
10048
+ }
10049
+
10050
+ .w3eden .pb-lg-2,
10051
+ .w3eden .py-lg-2 {
10052
+ padding-bottom: 0.5rem !important;
10053
+ }
10054
+
10055
+ .w3eden .pl-lg-2,
10056
+ .w3eden .px-lg-2 {
10057
+ padding-left: 0.5rem !important;
10058
+ }
10059
+
10060
+ .w3eden .p-lg-3 {
10061
+ padding: 1rem !important;
10062
+ }
10063
+
10064
+ .w3eden .pt-lg-3,
10065
+ .w3eden .py-lg-3 {
10066
+ padding-top: 1rem !important;
10067
+ }
10068
+
10069
+ .w3eden .pr-lg-3,
10070
+ .w3eden .px-lg-3 {
10071
+ padding-right: 1rem !important;
10072
+ }
10073
+
10074
+ .w3eden .pb-lg-3,
10075
+ .w3eden .py-lg-3 {
10076
+ padding-bottom: 1rem !important;
10077
+ }
10078
+
10079
+ .w3eden .pl-lg-3,
10080
+ .w3eden .px-lg-3 {
10081
+ padding-left: 1rem !important;
10082
+ }
10083
+
10084
+ .w3eden .p-lg-4 {
10085
+ padding: 1.5rem !important;
10086
+ }
10087
+
10088
+ .w3eden .pt-lg-4,
10089
+ .w3eden .py-lg-4 {
10090
+ padding-top: 1.5rem !important;
10091
+ }
10092
+
10093
+ .w3eden .pr-lg-4,
10094
+ .w3eden .px-lg-4 {
10095
+ padding-right: 1.5rem !important;
10096
+ }
10097
+
10098
+ .w3eden .pb-lg-4,
10099
+ .w3eden .py-lg-4 {
10100
+ padding-bottom: 1.5rem !important;
10101
+ }
10102
+
10103
+ .w3eden .pl-lg-4,
10104
+ .w3eden .px-lg-4 {
10105
+ padding-left: 1.5rem !important;
10106
+ }
10107
+
10108
+ .w3eden .p-lg-5 {
10109
+ padding: 3rem !important;
10110
+ }
10111
+
10112
+ .w3eden .pt-lg-5,
10113
+ .w3eden .py-lg-5 {
10114
+ padding-top: 3rem !important;
10115
+ }
10116
+
10117
+ .w3eden .pr-lg-5,
10118
+ .w3eden .px-lg-5 {
10119
+ padding-right: 3rem !important;
10120
+ }
10121
+
10122
+ .w3eden .pb-lg-5,
10123
+ .w3eden .py-lg-5 {
10124
+ padding-bottom: 3rem !important;
10125
+ }
10126
+
10127
+ .w3eden .pl-lg-5,
10128
+ .w3eden .px-lg-5 {
10129
+ padding-left: 3rem !important;
10130
+ }
10131
+
10132
+ .w3eden .m-lg-n1 {
10133
+ margin: -0.25rem !important;
10134
+ }
10135
+
10136
+ .w3eden .mt-lg-n1,
10137
+ .w3eden .my-lg-n1 {
10138
+ margin-top: -0.25rem !important;
10139
+ }
10140
+
10141
+ .w3eden .mr-lg-n1,
10142
+ .w3eden .mx-lg-n1 {
10143
+ margin-right: -0.25rem !important;
10144
+ }
10145
+
10146
+ .w3eden .mb-lg-n1,
10147
+ .w3eden .my-lg-n1 {
10148
+ margin-bottom: -0.25rem !important;
10149
+ }
10150
+
10151
+ .w3eden .ml-lg-n1,
10152
+ .w3eden .mx-lg-n1 {
10153
+ margin-left: -0.25rem !important;
10154
+ }
10155
+
10156
+ .w3eden .m-lg-n2 {
10157
+ margin: -0.5rem !important;
10158
+ }
10159
+
10160
+ .w3eden .mt-lg-n2,
10161
+ .w3eden .my-lg-n2 {
10162
+ margin-top: -0.5rem !important;
10163
+ }
10164
+
10165
+ .w3eden .mr-lg-n2,
10166
+ .w3eden .mx-lg-n2 {
10167
+ margin-right: -0.5rem !important;
10168
+ }
10169
+
10170
+ .w3eden .mb-lg-n2,
10171
+ .w3eden .my-lg-n2 {
10172
+ margin-bottom: -0.5rem !important;
10173
+ }
10174
+
10175
+ .w3eden .ml-lg-n2,
10176
+ .w3eden .mx-lg-n2 {
10177
+ margin-left: -0.5rem !important;
10178
+ }
10179
+
10180
+ .w3eden .m-lg-n3 {
10181
+ margin: -1rem !important;
10182
+ }
10183
+
10184
+ .w3eden .mt-lg-n3,
10185
+ .w3eden .my-lg-n3 {
10186
+ margin-top: -1rem !important;
10187
+ }
10188
+
10189
+ .w3eden .mr-lg-n3,
10190
+ .w3eden .mx-lg-n3 {
10191
+ margin-right: -1rem !important;
10192
+ }
10193
+
10194
+ .w3eden .mb-lg-n3,
10195
+ .w3eden .my-lg-n3 {
10196
+ margin-bottom: -1rem !important;
10197
+ }
10198
+
10199
+ .w3eden .ml-lg-n3,
10200
+ .w3eden .mx-lg-n3 {
10201
+ margin-left: -1rem !important;
10202
+ }
10203
+
10204
+ .w3eden .m-lg-n4 {
10205
+ margin: -1.5rem !important;
10206
+ }
10207
+
10208
+ .w3eden .mt-lg-n4,
10209
+ .w3eden .my-lg-n4 {
10210
+ margin-top: -1.5rem !important;
10211
+ }
10212
+
10213
+ .w3eden .mr-lg-n4,
10214
+ .w3eden .mx-lg-n4 {
10215
+ margin-right: -1.5rem !important;
10216
+ }
10217
+
10218
+ .w3eden .mb-lg-n4,
10219
+ .w3eden .my-lg-n4 {
10220
+ margin-bottom: -1.5rem !important;
10221
+ }
10222
+
10223
+ .w3eden .ml-lg-n4,
10224
+ .w3eden .mx-lg-n4 {
10225
+ margin-left: -1.5rem !important;
10226
+ }
10227
+
10228
+ .w3eden .m-lg-n5 {
10229
+ margin: -3rem !important;
10230
+ }
10231
+
10232
+ .w3eden .mt-lg-n5,
10233
+ .w3eden .my-lg-n5 {
10234
+ margin-top: -3rem !important;
10235
+ }
10236
+
10237
+ .w3eden .mr-lg-n5,
10238
+ .w3eden .mx-lg-n5 {
10239
+ margin-right: -3rem !important;
10240
+ }
10241
+
10242
+ .w3eden .mb-lg-n5,
10243
+ .w3eden .my-lg-n5 {
10244
+ margin-bottom: -3rem !important;
10245
+ }
10246
+
10247
+ .w3eden .ml-lg-n5,
10248
+ .w3eden .mx-lg-n5 {
10249
+ margin-left: -3rem !important;
10250
+ }
10251
+
10252
+ .w3eden .m-lg-auto {
10253
+ margin: auto !important;
10254
+ }
10255
+
10256
+ .w3eden .mt-lg-auto,
10257
+ .w3eden .my-lg-auto {
10258
+ margin-top: auto !important;
10259
+ }
10260
+
10261
+ .w3eden .mr-lg-auto,
10262
+ .w3eden .mx-lg-auto {
10263
+ margin-right: auto !important;
10264
+ }
10265
+
10266
+ .w3eden .mb-lg-auto,
10267
+ .w3eden .my-lg-auto {
10268
+ margin-bottom: auto !important;
10269
+ }
10270
+
10271
+ .w3eden .ml-lg-auto,
10272
+ .w3eden .mx-lg-auto {
10273
+ margin-left: auto !important;
10274
+ }
10275
+ }
10276
+
10277
+ @media (min-width: 1200px) {
10278
+ .w3eden .m-xl-0 {
10279
+ margin: 0 !important;
10280
+ }
10281
+
10282
+ .w3eden .mt-xl-0,
10283
+ .w3eden .my-xl-0 {
10284
+ margin-top: 0 !important;
10285
+ }
10286
+
10287
+ .w3eden .mr-xl-0,
10288
+ .w3eden .mx-xl-0 {
10289
+ margin-right: 0 !important;
10290
+ }
10291
+
10292
+ .w3eden .mb-xl-0,
10293
+ .w3eden .my-xl-0 {
10294
+ margin-bottom: 0 !important;
10295
+ }
10296
+
10297
+ .w3eden .ml-xl-0,
10298
+ .w3eden .mx-xl-0 {
10299
+ margin-left: 0 !important;
10300
+ }
10301
+
10302
+ .w3eden .m-xl-1 {
10303
+ margin: 0.25rem !important;
10304
+ }
10305
+
10306
+ .w3eden .mt-xl-1,
10307
+ .w3eden .my-xl-1 {
10308
+ margin-top: 0.25rem !important;
10309
+ }
10310
+
10311
+ .w3eden .mr-xl-1,
10312
+ .w3eden .mx-xl-1 {
10313
+ margin-right: 0.25rem !important;
10314
+ }
10315
+
10316
+ .w3eden .mb-xl-1,
10317
+ .w3eden .my-xl-1 {
10318
+ margin-bottom: 0.25rem !important;
10319
+ }
10320
+
10321
+ .w3eden .ml-xl-1,
10322
+ .w3eden .mx-xl-1 {
10323
+ margin-left: 0.25rem !important;
10324
+ }
10325
+
10326
+ .w3eden .m-xl-2 {
10327
+ margin: 0.5rem !important;
10328
+ }
10329
+
10330
+ .w3eden .mt-xl-2,
10331
+ .w3eden .my-xl-2 {
10332
+ margin-top: 0.5rem !important;
10333
+ }
10334
+
10335
+ .w3eden .mr-xl-2,
10336
+ .w3eden .mx-xl-2 {
10337
+ margin-right: 0.5rem !important;
10338
+ }
10339
+
10340
+ .w3eden .mb-xl-2,
10341
+ .w3eden .my-xl-2 {
10342
+ margin-bottom: 0.5rem !important;
10343
+ }
10344
+
10345
+ .w3eden .ml-xl-2,
10346
+ .w3eden .mx-xl-2 {
10347
+ margin-left: 0.5rem !important;
10348
+ }
10349
+
10350
+ .w3eden .m-xl-3 {
10351
+ margin: 1rem !important;
10352
+ }
10353
+
10354
+ .w3eden .mt-xl-3,
10355
+ .w3eden .my-xl-3 {
10356
+ margin-top: 1rem !important;
10357
+ }
10358
+
10359
+ .w3eden .mr-xl-3,
10360
+ .w3eden .mx-xl-3 {
10361
+ margin-right: 1rem !important;
10362
+ }
10363
+
10364
+ .w3eden .mb-xl-3,
10365
+ .w3eden .my-xl-3 {
10366
+ margin-bottom: 1rem !important;
10367
+ }
10368
+
10369
+ .w3eden .ml-xl-3,
10370
+ .w3eden .mx-xl-3 {
10371
+ margin-left: 1rem !important;
10372
+ }
10373
+
10374
+ .w3eden .m-xl-4 {
10375
+ margin: 1.5rem !important;
10376
+ }
10377
+
10378
+ .w3eden .mt-xl-4,
10379
+ .w3eden .my-xl-4 {
10380
+ margin-top: 1.5rem !important;
10381
+ }
10382
+
10383
+ .w3eden .mr-xl-4,
10384
+ .w3eden .mx-xl-4 {
10385
+ margin-right: 1.5rem !important;
10386
+ }
10387
+
10388
+ .w3eden .mb-xl-4,
10389
+ .w3eden .my-xl-4 {
10390
+ margin-bottom: 1.5rem !important;
10391
+ }
10392
+
10393
+ .w3eden .ml-xl-4,
10394
+ .w3eden .mx-xl-4 {
10395
+ margin-left: 1.5rem !important;
10396
+ }
10397
+
10398
+ .w3eden .m-xl-5 {
10399
+ margin: 3rem !important;
10400
+ }
10401
+
10402
+ .w3eden .mt-xl-5,
10403
+ .w3eden .my-xl-5 {
10404
+ margin-top: 3rem !important;
10405
+ }
10406
+
10407
+ .w3eden .mr-xl-5,
10408
+ .w3eden .mx-xl-5 {
10409
+ margin-right: 3rem !important;
10410
+ }
10411
+
10412
+ .w3eden .mb-xl-5,
10413
+ .w3eden .my-xl-5 {
10414
+ margin-bottom: 3rem !important;
10415
+ }
10416
+
10417
+ .w3eden .ml-xl-5,
10418
+ .w3eden .mx-xl-5 {
10419
+ margin-left: 3rem !important;
10420
+ }
10421
+
10422
+ .w3eden .p-xl-0 {
10423
+ padding: 0 !important;
10424
+ }
10425
+
10426
+ .w3eden .pt-xl-0,
10427
+ .w3eden .py-xl-0 {
10428
+ padding-top: 0 !important;
10429
+ }
10430
+
10431
+ .w3eden .pr-xl-0,
10432
+ .w3eden .px-xl-0 {
10433
+ padding-right: 0 !important;
10434
+ }
10435
+
10436
+ .w3eden .pb-xl-0,
10437
+ .w3eden .py-xl-0 {
10438
+ padding-bottom: 0 !important;
10439
+ }
10440
+
10441
+ .w3eden .pl-xl-0,
10442
+ .w3eden .px-xl-0 {
10443
+ padding-left: 0 !important;
10444
+ }
10445
+
10446
+ .w3eden .p-xl-1 {
10447
+ padding: 0.25rem !important;
10448
+ }
10449
+
10450
+ .w3eden .pt-xl-1,
10451
+ .w3eden .py-xl-1 {
10452
+ padding-top: 0.25rem !important;
10453
+ }
10454
+
10455
+ .w3eden .pr-xl-1,
10456
+ .w3eden .px-xl-1 {
10457
+ padding-right: 0.25rem !important;
10458
+ }
10459
+
10460
+ .w3eden .pb-xl-1,
10461
+ .w3eden .py-xl-1 {
10462
+ padding-bottom: 0.25rem !important;
10463
+ }
10464
+
10465
+ .w3eden .pl-xl-1,
10466
+ .w3eden .px-xl-1 {
10467
+ padding-left: 0.25rem !important;
10468
+ }
10469
+
10470
+ .w3eden .p-xl-2 {
10471
+ padding: 0.5rem !important;
10472
+ }
10473
+
10474
+ .w3eden .pt-xl-2,
10475
+ .w3eden .py-xl-2 {
10476
+ padding-top: 0.5rem !important;
10477
+ }
10478
+
10479
+ .w3eden .pr-xl-2,
10480
+ .w3eden .px-xl-2 {
10481
+ padding-right: 0.5rem !important;
10482
+ }
10483
+
10484
+ .w3eden .pb-xl-2,
10485
+ .w3eden .py-xl-2 {
10486
+ padding-bottom: 0.5rem !important;
10487
+ }
10488
+
10489
+ .w3eden .pl-xl-2,
10490
+ .w3eden .px-xl-2 {
10491
+ padding-left: 0.5rem !important;
10492
+ }
10493
+
10494
+ .w3eden .p-xl-3 {
10495
+ padding: 1rem !important;
10496
+ }
10497
+
10498
+ .w3eden .pt-xl-3,
10499
+ .w3eden .py-xl-3 {
10500
+ padding-top: 1rem !important;
10501
+ }
10502
+
10503
+ .w3eden .pr-xl-3,
10504
+ .w3eden .px-xl-3 {
10505
+ padding-right: 1rem !important;
10506
+ }
10507
+
10508
+ .w3eden .pb-xl-3,
10509
+ .w3eden .py-xl-3 {
10510
+ padding-bottom: 1rem !important;
10511
+ }
10512
+
10513
+ .w3eden .pl-xl-3,
10514
+ .w3eden .px-xl-3 {
10515
+ padding-left: 1rem !important;
10516
+ }
10517
+
10518
+ .w3eden .p-xl-4 {
10519
+ padding: 1.5rem !important;
10520
+ }
10521
+
10522
+ .w3eden .pt-xl-4,
10523
+ .w3eden .py-xl-4 {
10524
+ padding-top: 1.5rem !important;
10525
+ }
10526
+
10527
+ .w3eden .pr-xl-4,
10528
+ .w3eden .px-xl-4 {
10529
+ padding-right: 1.5rem !important;
10530
+ }
10531
+
10532
+ .w3eden .pb-xl-4,
10533
+ .w3eden .py-xl-4 {
10534
+ padding-bottom: 1.5rem !important;
10535
+ }
10536
+
10537
+ .w3eden .pl-xl-4,
10538
+ .w3eden .px-xl-4 {
10539
+ padding-left: 1.5rem !important;
10540
+ }
10541
+
10542
+ .w3eden .p-xl-5 {
10543
+ padding: 3rem !important;
10544
+ }
10545
+
10546
+ .w3eden .pt-xl-5,
10547
+ .w3eden .py-xl-5 {
10548
+ padding-top: 3rem !important;
10549
+ }
10550
+
10551
+ .w3eden .pr-xl-5,
10552
+ .w3eden .px-xl-5 {
10553
+ padding-right: 3rem !important;
10554
+ }
10555
+
10556
+ .w3eden .pb-xl-5,
10557
+ .w3eden .py-xl-5 {
10558
+ padding-bottom: 3rem !important;
10559
+ }
10560
+
10561
+ .w3eden .pl-xl-5,
10562
+ .w3eden .px-xl-5 {
10563
+ padding-left: 3rem !important;
10564
+ }
10565
+
10566
+ .w3eden .m-xl-n1 {
10567
+ margin: -0.25rem !important;
10568
+ }
10569
+
10570
+ .w3eden .mt-xl-n1,
10571
+ .w3eden .my-xl-n1 {
10572
+ margin-top: -0.25rem !important;
10573
+ }
10574
+
10575
+ .w3eden .mr-xl-n1,
10576
+ .w3eden .mx-xl-n1 {
10577
+ margin-right: -0.25rem !important;
10578
+ }
10579
+
10580
+ .w3eden .mb-xl-n1,
10581
+ .w3eden .my-xl-n1 {
10582
+ margin-bottom: -0.25rem !important;
10583
+ }
10584
+
10585
+ .w3eden .ml-xl-n1,
10586
+ .w3eden .mx-xl-n1 {
10587
+ margin-left: -0.25rem !important;
10588
+ }
10589
+
10590
+ .w3eden .m-xl-n2 {
10591
+ margin: -0.5rem !important;
10592
+ }
10593
+
10594
+ .w3eden .mt-xl-n2,
10595
+ .w3eden .my-xl-n2 {
10596
+ margin-top: -0.5rem !important;
10597
+ }
10598
+
10599
+ .w3eden .mr-xl-n2,
10600
+ .w3eden .mx-xl-n2 {
10601
+ margin-right: -0.5rem !important;
10602
+ }
10603
+
10604
+ .w3eden .mb-xl-n2,
10605
+ .w3eden .my-xl-n2 {
10606
+ margin-bottom: -0.5rem !important;
10607
+ }
10608
+
10609
+ .w3eden .ml-xl-n2,
10610
+ .w3eden .mx-xl-n2 {
10611
+ margin-left: -0.5rem !important;
10612
+ }
10613
+
10614
+ .w3eden .m-xl-n3 {
10615
+ margin: -1rem !important;
10616
+ }
10617
+
10618
+ .w3eden .mt-xl-n3,
10619
+ .w3eden .my-xl-n3 {
10620
+ margin-top: -1rem !important;
10621
+ }
10622
+
10623
+ .w3eden .mr-xl-n3,
10624
+ .w3eden .mx-xl-n3 {
10625
+ margin-right: -1rem !important;
10626
+ }
10627
+
10628
+ .w3eden .mb-xl-n3,
10629
+ .w3eden .my-xl-n3 {
10630
+ margin-bottom: -1rem !important;
10631
+ }
10632
+
10633
+ .w3eden .ml-xl-n3,
10634
+ .w3eden .mx-xl-n3 {
10635
+ margin-left: -1rem !important;
10636
+ }
10637
+
10638
+ .w3eden .m-xl-n4 {
10639
+ margin: -1.5rem !important;
10640
+ }
10641
+
10642
+ .w3eden .mt-xl-n4,
10643
+ .w3eden .my-xl-n4 {
10644
+ margin-top: -1.5rem !important;
10645
+ }
10646
+
10647
+ .w3eden .mr-xl-n4,
10648
+ .w3eden .mx-xl-n4 {
10649
+ margin-right: -1.5rem !important;
10650
+ }
10651
+
10652
+ .w3eden .mb-xl-n4,
10653
+ .w3eden .my-xl-n4 {
10654
+ margin-bottom: -1.5rem !important;
10655
+ }
10656
+
10657
+ .w3eden .ml-xl-n4,
10658
+ .w3eden .mx-xl-n4 {
10659
+ margin-left: -1.5rem !important;
10660
+ }
10661
+
10662
+ .w3eden .m-xl-n5 {
10663
+ margin: -3rem !important;
10664
+ }
10665
+
10666
+ .w3eden .mt-xl-n5,
10667
+ .w3eden .my-xl-n5 {
10668
+ margin-top: -3rem !important;
10669
+ }
10670
+
10671
+ .w3eden .mr-xl-n5,
10672
+ .w3eden .mx-xl-n5 {
10673
+ margin-right: -3rem !important;
10674
+ }
10675
+
10676
+ .w3eden .mb-xl-n5,
10677
+ .w3eden .my-xl-n5 {
10678
+ margin-bottom: -3rem !important;
10679
+ }
10680
+
10681
+ .w3eden .ml-xl-n5,
10682
+ .w3eden .mx-xl-n5 {
10683
+ margin-left: -3rem !important;
10684
+ }
10685
+
10686
+ .w3eden .m-xl-auto {
10687
+ margin: auto !important;
10688
+ }
10689
+
10690
+ .w3eden .mt-xl-auto,
10691
+ .w3eden .my-xl-auto {
10692
+ margin-top: auto !important;
10693
+ }
10694
+
10695
+ .w3eden .mr-xl-auto,
10696
+ .w3eden .mx-xl-auto {
10697
+ margin-right: auto !important;
10698
+ }
10699
+
10700
+ .w3eden .mb-xl-auto,
10701
+ .w3eden .my-xl-auto {
10702
+ margin-bottom: auto !important;
10703
+ }
10704
+
10705
+ .w3eden .ml-xl-auto,
10706
+ .w3eden .mx-xl-auto {
10707
+ margin-left: auto !important;
10708
+ }
10709
+ }
10710
+
10711
+ .w3eden .text-monospace {
10712
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
10713
+ }
10714
+
10715
+ .w3eden .text-justify {
10716
+ text-align: justify !important;
10717
+ }
10718
+
10719
+ .w3eden .text-wrap {
10720
+ white-space: normal !important;
10721
+ }
10722
+
10723
+ .w3eden .text-nowrap {
10724
+ white-space: nowrap !important;
10725
+ }
10726
+
10727
+ .w3eden .text-truncate {
10728
+ overflow: hidden;
10729
+ text-overflow: ellipsis;
10730
+ white-space: nowrap;
10731
+ }
10732
+
10733
+ .w3eden .text-left {
10734
+ text-align: left !important;
10735
+ }
10736
+
10737
+ .w3eden .text-right {
10738
+ text-align: right !important;
10739
+ }
10740
+
10741
+ .w3eden .text-center {
10742
+ text-align: center !important;
10743
+ }
10744
+
10745
+ @media (min-width: 576px) {
10746
+ .w3eden .text-sm-left {
10747
+ text-align: left !important;
10748
+ }
10749
+
10750
+ .w3eden .text-sm-right {
10751
+ text-align: right !important;
10752
+ }
10753
+
10754
+ .w3eden .text-sm-center {
10755
+ text-align: center !important;
10756
+ }
10757
+ }
10758
+
10759
+ @media (min-width: 768px) {
10760
+ .w3eden .text-md-left {
10761
+ text-align: left !important;
10762
+ }
10763
+
10764
+ .w3eden .text-md-right {
10765
+ text-align: right !important;
10766
+ }
10767
+
10768
+ .w3eden .text-md-center {
10769
+ text-align: center !important;
10770
+ }
10771
+ }
10772
+
10773
+ @media (min-width: 992px) {
10774
+ .w3eden .text-lg-left {
10775
+ text-align: left !important;
10776
+ }
10777
+
10778
+ .w3eden .text-lg-right {
10779
+ text-align: right !important;
10780
+ }
10781
+
10782
+ .w3eden .text-lg-center {
10783
+ text-align: center !important;
10784
+ }
10785
+ }
10786
+
10787
+ @media (min-width: 1200px) {
10788
+ .w3eden .text-xl-left {
10789
+ text-align: left !important;
10790
+ }
10791
+
10792
+ .w3eden .text-xl-right {
10793
+ text-align: right !important;
10794
+ }
10795
+
10796
+ .w3eden .text-xl-center {
10797
+ text-align: center !important;
10798
+ }
10799
+ }
10800
+
10801
+ .w3eden .text-lowercase {
10802
+ text-transform: lowercase !important;
10803
+ }
10804
+
10805
+ .w3eden .text-uppercase {
10806
+ text-transform: uppercase !important;
10807
+ }
10808
+
10809
+ .w3eden .text-capitalize {
10810
+ text-transform: capitalize !important;
10811
+ }
10812
+
10813
+ .w3eden .font-weight-light {
10814
+ font-weight: 300 !important;
10815
+ }
10816
+
10817
+ .w3eden .font-weight-lighter {
10818
+ font-weight: lighter !important;
10819
+ }
10820
+
10821
+ .w3eden .font-weight-normal {
10822
+ font-weight: 400 !important;
10823
+ }
10824
+
10825
+ .w3eden .font-weight-bold {
10826
+ font-weight: 700 !important;
10827
+ }
10828
+
10829
+ .w3eden .font-weight-bolder {
10830
+ font-weight: bolder !important;
10831
+ }
10832
+
10833
+ .w3eden .font-italic {
10834
+ font-style: italic !important;
10835
+ }
10836
+
10837
+ .w3eden .text-white {
10838
+ color: #fff !important;
10839
+ }
10840
+
10841
+ .w3eden .text-primary {
10842
+ color: #007bff !important;
10843
+ }
10844
+
10845
+ .w3eden a.text-primary:hover, .w3eden a.text-primary:focus {
10846
+ color: #0056b3 !important;
10847
+ }
10848
+
10849
+ .w3eden .text-secondary {
10850
+ color: #6c757d !important;
10851
+ }
10852
+
10853
+ .w3eden a.text-secondary:hover, .w3eden a.text-secondary:focus {
10854
+ color: #494f54 !important;
10855
+ }
10856
+
10857
+ .w3eden .text-success {
10858
+ color: #28a745 !important;
10859
+ }
10860
+
10861
+ .w3eden a.text-success:hover, .w3eden a.text-success:focus {
10862
+ color: #19692c !important;
10863
+ }
10864
+
10865
+ .w3eden .text-info {
10866
+ color: #17a2b8 !important;
10867
+ }
10868
+
10869
+ .w3eden a.text-info:hover, .w3eden a.text-info:focus {
10870
+ color: #0f6674 !important;
10871
+ }
10872
+
10873
+ .w3eden .text-warning {
10874
+ color: #ffc107 !important;
10875
+ }
10876
+
10877
+ .w3eden a.text-warning:hover, .w3eden a.text-warning:focus {
10878
+ color: #ba8b00 !important;
10879
+ }
10880
+
10881
+ .w3eden .text-danger {
10882
+ color: #dc3545 !important;
10883
+ }
10884
+
10885
+ .w3eden a.text-danger:hover, .w3eden a.text-danger:focus {
10886
+ color: #a71d2a !important;
10887
+ }
10888
+
10889
+ .w3eden .text-light {
10890
+ color: #f8f9fa !important;
10891
+ }
10892
+
10893
+ .w3eden a.text-light:hover, .w3eden a.text-light:focus {
10894
+ color: #cbd3da !important;
10895
+ }
10896
+
10897
+ .w3eden .text-dark {
10898
+ color: #343a40 !important;
10899
+ }
10900
+
10901
+ .w3eden a.text-dark:hover, .w3eden a.text-dark:focus {
10902
+ color: #121416 !important;
10903
+ }
10904
+
10905
+ .w3eden .text-body {
10906
+ color: #212529 !important;
10907
+ }
10908
+
10909
+ .w3eden .text-muted {
10910
+ color: #6c757d !important;
10911
+ }
10912
+
10913
+ .w3eden .text-black-50 {
10914
+ color: rgba(0, 0, 0, 0.5) !important;
10915
+ }
10916
+
10917
+ .w3eden .text-white-50 {
10918
+ color: rgba(255, 255, 255, 0.5) !important;
10919
+ }
10920
+
10921
+ .w3eden .text-hide {
10922
+ font: 0/0 a;
10923
+ color: transparent;
10924
+ text-shadow: none;
10925
+ background-color: transparent;
10926
+ border: 0;
10927
+ }
10928
+
10929
+ .w3eden .text-decoration-none {
10930
+ text-decoration: none !important;
10931
+ }
10932
+
10933
+ .w3eden .text-break {
10934
+ word-break: break-word !important;
10935
+ overflow-wrap: break-word !important;
10936
+ }
10937
+
10938
+ .w3eden .text-reset {
10939
+ color: inherit !important;
10940
+ }
10941
+
10942
+ .w3eden .visible {
10943
+ visibility: visible !important;
10944
+ }
10945
+
10946
+ .w3eden .invisible {
10947
+ visibility: hidden !important;
10948
+ }
10949
+
10950
+ @media print {
10951
+ .w3eden *,
10952
+ .w3eden *::before,
10953
+ .w3eden *::after {
10954
+ text-shadow: none !important;
10955
+ box-shadow: none !important;
10956
+ }
10957
+
10958
+ .w3eden a:not(.btn) {
10959
+ text-decoration: underline;
10960
+ }
10961
+
10962
+ .w3eden abbr[title]::after {
10963
+ content: " (" attr(title) ")";
10964
+ }
10965
+
10966
+ .w3eden pre {
10967
+ white-space: pre-wrap !important;
10968
+ }
10969
+
10970
+ .w3eden pre,
10971
+ .w3eden blockquote {
10972
+ border: 1px solid #adb5bd;
10973
+ page-break-inside: avoid;
10974
+ }
10975
+
10976
+ .w3eden thead {
10977
+ display: table-header-group;
10978
+ }
10979
+
10980
+ .w3eden tr,
10981
+ .w3eden img {
10982
+ page-break-inside: avoid;
10983
+ }
10984
+
10985
+ .w3eden p,
10986
+ .w3eden h2,
10987
+ .w3eden h3 {
10988
+ orphans: 3;
10989
+ widows: 3;
10990
+ }
10991
+
10992
+ .w3eden h2,
10993
+ .w3eden h3 {
10994
+ page-break-after: avoid;
10995
+ }
10996
+
10997
+ @page {
10998
+
10999
+ size: a3;
11000
+ }
11001
+
11002
+ .w3eden body {
11003
+ min-width: 992px !important;
11004
+ }
11005
+
11006
+ .w3eden .container {
11007
+ min-width: 992px !important;
11008
+ }
11009
+
11010
+ .w3eden .navbar {
11011
+ display: none;
11012
+ }
11013
+
11014
+ .w3eden .badge {
11015
+ border: 1px solid #000;
11016
+ }
11017
+
11018
+ .w3eden .table {
11019
+ border-collapse: collapse !important;
11020
+ }
11021
+
11022
+ .w3eden .table td,
11023
+ .w3eden .table th {
11024
+ background-color: #fff !important;
11025
+ }
11026
+
11027
+ .w3eden .table-bordered th,
11028
+ .w3eden .table-bordered td {
11029
+ border: 1px solid #dee2e6 !important;
11030
+ }
11031
+
11032
+ .w3eden .table-dark {
11033
+ color: inherit;
11034
+ }
11035
+
11036
+ .w3eden .table-dark th,
11037
+ .w3eden .table-dark td,
11038
+ .w3eden .table-dark thead th,
11039
+ .w3eden .table-dark tbody + tbody {
11040
+ border-color: #dee2e6;
11041
+ }
11042
+
11043
+ .w3eden .table .thead-dark th {
11044
+ color: inherit;
11045
+ border-color: #dee2e6;
11046
+ }
11047
+
11048
+ }
assets/bootstrap/css/bootstrap.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sourceRoot":"","sources":["bootstrap.scss"],"names":[],"mappings":"AAAA;AACE;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AA8RA;AACA;AACA;AA0EA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAuCA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAgCA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AA8DA;AAuBA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAQA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAqvBA;AACA;AACA;AACA;AAgBA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAwEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAsBA;AACA;AACA;AACA;AAiBA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAWA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAqCA;AACA;AACA;AAEA;AACA;AACA;AACA;AAgPA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAiIA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAgEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AA6CA;AACA;AACA;AAcA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AA+HA;AACA;AACA;AACA;AACA;AAkEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAcA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AA+CA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAwEA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAuCA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAkGA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AA2CA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAiCA;AACA;AACA;AACA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAaA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAgBA;AAAA;AAAA;AAAA;AAyBA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAuCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAaA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AA8BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAmCA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAkCA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AA6EA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAUA;AACA;AACA;AAMA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAQA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAQA;AACA;AACA;AAEA;AACA;AACA;AAQA;AACA;AACA;AAEA;AACA;AACA;AAQA;AACA;AACA;AAEA;AACA;AACA;AAQA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAqEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAsBA;AACA;AACA;AACA;AACA;AASA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAqBA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAmCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAwLA;AACA;AACA;AACA;AACA;AACA;AACA;AA2BA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAiHA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAgDA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAmBA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AA4BA;AACA;AACA;AACA;AACA;AAuCA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AA0BA;AACA;AACA;AACA;AACA;AAMA;AACA;AACA;AACA;AACA;AAMA;AACA;AACA;AACA;AACA;AAYA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AAMA;AACA;AACA;AAEA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AA0BA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AAAA;AAAA;AAAA;AAAA;AAMA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAwBA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AA0KA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAiuBA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAUA;AACA;AACA;AAEA;AACA;AACA;AACA;AAkBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAMA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAMA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAkbA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAoBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAUA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAsDA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AAMA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;AAMA;AACA;AACA;;AAnxTA;AAAA;AAAA;EAGE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;AAAA;EAGE;EACA;;AAGF;AAAA;AAAA;AAAA;EAIE;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;AAAA;EAEE;;AAGF;EACE;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;AAAA;AAAA;AAAA;EAIE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;AAAA;AAAA;AAAA;AAAA;EAKE;EACA;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;AAAA;EAEE;;AAGF;EACE;;AAGF;AAAA;AAAA;AAAA;EAIE;;AAGF;AAAA;AAAA;AAAA;EAIE;;AAGF;AAAA;AAAA;AAAA;EAIE;EACA;;AAGF;AAAA;EAEE;EACA;;AAGF;AAAA;AAAA;AAAA;EAIE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAOF;AAAA;EAEE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AA2BF;EACE;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;;AAGF;AAAA;EAEE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;AAuBF;EACE;EACA;;AA0BF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAcF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;AAAA;EAEE;EACA;;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;EAOE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AA4EF;EACE;EACA;EACA;;AA0HF;EA7zBF;AA8zBI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAmBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EA3IA;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAuBF;IACE;IACA;IACA;;;AAqGJ;EA7+BF;AA8+BI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAkEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAMA;AACA;AACA;AACA;AACA;AACA;AAKA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EA/JA;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAWF;IACE;IACA;;EA2CF;IACE;IACA;;EASF;IACE;;;AAgCJ;EAvqCF;AAwqCI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAmEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EAlKA;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAWF;IACE;IACA;;;AAyFJ;EA/1CF;AAg2CI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAmEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EAjKA;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAqGJ;EACE;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAQF;EACE;;AAGF;AAAA;EAEE;;AAGF;AAAA;EAEE;;AAiTF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;IACE;;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAyDF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAQF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;;AA6RF;EACE;EACA;EACA;EACA;EACA;EACA;;AAqEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;IACE;;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;;AAYF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;AAAA;EAEE;;AAqSF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;AAAA;AAAA;EAGE;;AAGF;EACE;;AAGF;EACE;IACE;;;AAIJ;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;IACE;;;AAIJ;AAAA;AAAA;AAAA;EAIE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AA+IF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAkIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;AAAA;AAAA;EAIE;EACA;EACA;EACA;EACA;;AAGF;AAAA;AAAA;AAAA;EAYE;;AAGF;AAAA;AAAA;EAGE;;AAOF;AAAA;EAEE;EACA;;AAGF;AAAA;EAEE;EACA;;AAqBF;AAAA;EAEE;EACA;;AAGF;AAAA;EAEE;EACA;;AAGF;AAAA;EAEE;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;AAAA;EAEE;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;EAME;EACA;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;EAME;EACA;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;EAME;EACA;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;EAME;EACA;;AAGF;EACE;EACA;EACA;EACA;;AASF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AA4BF;EACE;;AAGF;EACE;;AAGF;EACE;;AA0CF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAmPF;AAAA;AAAA;EAGE;;AAGF;EACE;AAAA;IAGE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;;AAkCF;EACE;;AAGF;EACE;;AAyZF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAQF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAoBF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAYF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAgHF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAsCF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AA6DF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;IACE;;;AAIJ;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAwBF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAoDF;EACE;EACA;EACA;EACA;EACA;;AAOF;EACE;;AAeF;EACE;EACA;EACA;;AAyBF;EACE;EACA;EACA;;AAWF;EACE;EACA;EACA;;AAWF;EACE;EACA;EACA;;AAWF;EACE;EACA;EACA;;AAwGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAqBF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AASF;EACE;EACA;EACA;EACA;;AAkHF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAoNF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;IACE;;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;AAAA;EAEE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAWF;EAz0LF;AA+0LI;AACA;AACA;AACA;AACA;AACA;AASA;AACA;AACA;;EArBA;IACE;IACA;;EASF;IACE;;EAGF;IACE;;;AAqBJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AA+WF;EACE;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AASF;EACE;IACE;IACA;;EAEF;IACE;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AA2BF;EACE;;AAGF;AAAA;AAAA;EAGE;;AAGF;EACE;;AAGF;AAAA;AAAA;EAGE;;AAGF;EACE;;AASF;EACE;;AASF;EACE;;AASF;EACE;;AAGF;AAAA;AAAA;EAGE;;AAuBF;EACE;;AAmIF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAeF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EAxqNF;AAyrNI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EAxBA;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAYF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EA7sNF;AA8tNI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EAxBA;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAYF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EAlvNF;AAmwNI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EAxBA;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAYF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EAvxNF;AAwyNI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EAxBA;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAYF;IACE;IACA;;EAGF;IACE;IACA;;;AA+EJ;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EAjjOF;AAkjOI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;EA5EA;IACE;IACA;;;AA6EJ;EA7rOF;AA8rOI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGF;EAx0OF;AAy0OI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGF;EAn9OF;AAo9OI;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AA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","file":"bootstrap.css"}
assets/bootstrap/css/bootstrap.min.css CHANGED
@@ -1,7 +1,6 @@
1
- /*!
2
  * Bootstrap v4.3.1 (https://getbootstrap.com/)
3
  * Copyright 2011-2019 The Bootstrap Authors
4
  * Copyright 2011-2019 Twitter, Inc.
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
- *//*!*.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,*!*/
7
- .w3eden *,.w3eden *::before,.w3eden *::after{box-sizing:border-box}.w3eden html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}.w3eden article,.w3eden aside,.w3eden figcaption,.w3eden figure,.w3eden footer,.w3eden header,.w3eden hgroup,.w3eden main,.w3eden nav,.w3eden section{display:block}.w3eden body{margin:0;font-family:-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";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}.w3eden [tabindex="-1"]:focus{outline:0!important}.w3eden hr{box-sizing:content-box;height:0;overflow:visible}.w3eden h1,.w3eden h2,.w3eden h3,.w3eden h4,.w3eden h5,.w3eden h6{margin-top:0;margin-bottom:.5rem}.w3eden p{margin-top:0;margin-bottom:1rem}.w3eden abbr[title],.w3eden abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}.w3eden address{margin-bottom:1rem;font-style:normal;line-height:inherit}.w3eden ol,.w3eden ul,.w3eden dl{margin-top:0;margin-bottom:1rem}.w3eden ol ol,.w3eden ul ul,.w3eden ol ul,.w3eden ul ol{margin-bottom:0}.w3eden dt{font-weight:700}.w3eden dd{margin-bottom:.5rem;margin-left:0}.w3eden blockquote{margin:0 0 1rem}.w3eden b,.w3eden strong{font-weight:bolder}.w3eden small{font-size:80%}.w3eden sub,.w3eden sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.w3eden sub{bottom:-0.25em}.w3eden sup{top:-0.5em}.w3eden a{color:var(--color-primary);text-decoration:none;background-color:transparent}.w3eden a:hover{color:var(--color-primary-hover);text-decoration:underline}.w3eden a:not([href]):not([tabindex]){color:inherit;text-decoration:none}.w3eden a:not([href]):not([tabindex]):hover,.w3eden a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}.w3eden a:not([href]):not([tabindex]):focus{outline:0}.w3eden pre,.w3eden code,.w3eden kbd,.w3eden samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}.w3eden pre{margin-top:0;margin-bottom:1rem;overflow:auto}.w3eden figure{margin:0 0 1rem}.w3eden img{vertical-align:middle;border-style:none}.w3eden svg{overflow:hidden;vertical-align:middle}.w3eden table{border-collapse:collapse}.w3eden caption{padding-top:.75rem;padding-bottom:.75rem;color:var(--color-secondary);text-align:left;caption-side:bottom}.w3eden th{text-align:inherit}.w3eden label{display:inline-block;margin-bottom:.5rem}.w3eden button{border-radius:0}.w3eden button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}.w3eden input,.w3eden button,.w3eden select,.w3eden optgroup,.w3eden textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.w3eden button,.w3eden input{overflow:visible}.w3eden button,.w3eden select{text-transform:none}.w3eden select{word-wrap:normal}.w3eden button,.w3eden [type=button],.w3eden [type=reset],.w3eden [type=submit]{-webkit-appearance:button}.w3eden button:not(:disabled),.w3eden [type=button]:not(:disabled),.w3eden [type=reset]:not(:disabled),.w3eden [type=submit]:not(:disabled){cursor:pointer}.w3eden button::-moz-focus-inner,.w3eden [type=button]::-moz-focus-inner,.w3eden [type=reset]::-moz-focus-inner,.w3eden [type=submit]::-moz-focus-inner{padding:0;border-style:none}.w3eden input[type=radio],.w3eden input[type=checkbox]{box-sizing:border-box;padding:0}.w3eden input[type=date],.w3eden input[type=time],.w3eden input[type=datetime-local],.w3eden input[type=month]{-webkit-appearance:listbox}.w3eden textarea{overflow:auto;resize:vertical}.w3eden fieldset{min-width:0;padding:0;margin:0;border:0}.w3eden legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}.w3eden [type=number]::-webkit-inner-spin-button,.w3eden [type=number]::-webkit-outer-spin-button{height:auto}.w3eden [type=search]{outline-offset:-2px;-webkit-appearance:none}.w3eden [type=search]::-webkit-search-decoration{-webkit-appearance:none}.w3eden ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.w3eden output{display:inline-block}.w3eden summary{display:list-item;cursor:pointer}.w3eden template{display:none}.w3eden [hidden]{display:none!important}.w3eden h1,.w3eden h2,.w3eden h3,.w3eden h4,.w3eden h5,.w3eden h6,.w3eden .h1,.w3eden .h2,.w3eden .h3,.w3eden .h4,.w3eden .h5,.w3eden .h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.w3eden h1,.w3eden .h1{font-size:2.5rem}.w3eden h2,.w3eden .h2{font-size:2rem}.w3eden h3,.w3eden .h3{font-size:1.75rem}.w3eden h4,.w3eden .h4{font-size:1.5rem}.w3eden h5,.w3eden .h5{font-size:1.25rem}.w3eden h6,.w3eden .h6{font-size:1rem}.w3eden .lead{font-size:1.25rem;font-weight:300}.w3eden hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.w3eden small,.w3eden .small{font-size:80%;font-weight:400}.w3eden mark,.w3eden .mark{padding:.2em;background-color:#fcf8e3}.w3eden .list-unstyled{padding-left:0;list-style:none}.w3eden .list-inline{padding-left:0;list-style:none}.w3eden .list-inline-item{display:inline-block}.w3eden .list-inline-item:not(:last-child){margin-right:.5rem}.w3eden .img-fluid{max-width:100%;height:auto}.w3eden code{font-size:87.5%;color:#e83e8c;word-break:break-word}.w3eden a>code{color:inherit}.w3eden kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}.w3eden kbd kbd{padding:0;font-size:100%;font-weight:700}.w3eden pre{display:block;font-size:87.5%;color:#212529}.w3eden .container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.w3eden .container{max-width:540px}}@media(min-width:768px){.w3eden .container{max-width:720px}}@media(min-width:992px){.w3eden .container{max-width:960px}}@media(min-width:1200px){.w3eden .container{max-width:1140px}}.w3eden .container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.w3eden .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.w3eden .no-gutters{margin-right:0;margin-left:0}.w3eden .no-gutters>.col,.w3eden .no-gutters>[class*=col-]{padding-right:0;padding-left:0}.w3eden .col-2,.w3eden .col-3,.w3eden .col-4,.w3eden .col-5,.w3eden .col-6,.w3eden .col-7,.w3eden .col-8,.w3eden .col-9,.w3eden .col-10,.w3eden .col-11,.w3eden .col-12,.w3eden .col,.w3eden .col-sm-1,.w3eden .col-sm-2,.w3eden .col-sm-3,.w3eden .col-sm-4,.w3eden .col-sm-5,.w3eden .col-sm-6,.w3eden .col-sm-7,.w3eden .col-sm-8,.w3eden .col-sm-9,.w3eden .col-sm-10,.w3eden .col-sm-11,.w3eden .col-sm-12,.w3eden .col-sm,.w3eden .col-sm-auto,.w3eden .col-md-1,.w3eden .col-md-2,.w3eden .col-md-3,.w3eden .col-md-4,.w3eden .col-md-5,.w3eden .col-md-6,.w3eden .col-md-7,.w3eden .col-md-8,.w3eden .col-md-9,.w3eden .col-md-10,.w3eden .col-md-11,.w3eden .col-md-12,.w3eden .col-md,.w3eden .col-md-auto,.w3eden .col-lg-1,.w3eden .col-lg-2,.w3eden .col-lg-3,.w3eden .col-lg-4,.w3eden .col-lg-5,.w3eden .col-lg-6,.w3eden .col-lg-7,.w3eden .col-lg-8,.w3eden .col-lg-9,.w3eden .col-lg-10,.w3eden .col-lg-11,.w3eden .col-lg-12,.w3eden .col-lg,.w3eden .col-lg-auto,.w3eden .col-xl-1,.w3eden .col-xl-2,.w3eden .col-xl-3,.w3eden .col-xl-4,.w3eden .col-xl-5,.w3eden .col-xl-6,.w3eden .col-xl-7,.w3eden .col-xl-8,.w3eden .col-xl-9,.w3eden .col-xl-10,.w3eden .col-xl-11,.w3eden .col-xl-12,.w3eden .col-xl,.w3eden .col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.w3eden .col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.w3eden .col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media(min-width:576px){.w3eden .col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media(min-width:768px){.w3eden .col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.w3eden .col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.w3eden .col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.w3eden .col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.w3eden .col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.w3eden .col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.w3eden .col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.w3eden .order-md-first{-ms-flex-order:-1;order:-1}.w3eden .order-md-1{-ms-flex-order:1;order:1}.w3eden .order-md-12{-ms-flex-order:12;order:12}.w3eden .offset-md-2{margin-left:16.666667%}}@media(min-width:992px){.w3eden .col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.w3eden .col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.w3eden .col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.w3eden .col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.w3eden .col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.w3eden .col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.w3eden .col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.w3eden .col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.w3eden .order-lg-0{-ms-flex-order:0;order:0}}@media(min-width:1200px){.w3eden .col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.w3eden .col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.w3eden .col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.w3eden .col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.w3eden .col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.w3eden .col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.w3eden .col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.w3eden .col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.w3eden .table{width:100%;margin-bottom:1rem;border:0;color:#212529}.w3eden .table th,.w3eden .table td{padding:.75rem;vertical-align:top;border:0;border-top:1px solid #dee2e6}.w3eden .table thead th{vertical-align:bottom;border:0;border-bottom:1px solid #dee2e6}.w3eden .table tbody+tbody{border:0;border-top:1px solid #dee2e6}.w3eden .table-bordered{border:1px solid #dee2e6}.w3eden .table-bordered th,.w3eden .table-bordered td{border:1px solid #dee2e6}.w3eden .table-bordered thead th,.w3eden .table-bordered thead td{border-bottom-width:2px}.w3eden .form-control{display:block;width:100%;height:calc(1.5em+0.75rem+2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.w3eden .form-control{transition:none}}.w3eden .form-control::-ms-expand{background-color:transparent;border:0}.w3eden .form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .form-control::-webkit-input-placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control::-moz-placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control:-ms-input-placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control::-ms-input-placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control::placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control:disabled,.w3eden .form-control[readonly]{background-color:#e9ecef;opacity:1}.w3eden select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.w3eden .form-control-lg{height:calc(1.5em+1rem+2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.w3eden select.form-control[size],.w3eden select.form-control[multiple]{height:auto}.w3eden textarea.form-control{height:auto}.w3eden .form-group{margin-bottom:1rem}.w3eden .form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.w3eden .form-row>.col,.w3eden .form-row>[class*=col-]{padding-right:5px;padding-left:5px}.w3eden .form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.w3eden .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.w3eden .btn{transition:none}}.w3eden .btn:hover{color:#212529;text-decoration:none}.w3eden .btn:focus,.w3eden .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .btn-primary{color:#fff;background-color:var(--color-primary);border-color:var(--color-primary)}.w3eden .btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.w3eden .btn-primary:focus,.w3eden .btn-primary.focus{box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.w3eden .btn-primary.disabled,.w3eden .btn-primary:disabled{color:#fff;background-color:var(--color-primary);border-color:var(--color-primary)}.w3eden .btn-primary:not(:disabled):not(.disabled):active,.w3eden .btn-primary:not(:disabled):not(.disabled).active,.w3eden .show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.w3eden .btn-primary:not(:disabled):not(.disabled):active:focus,.w3eden .btn-primary:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.w3eden .btn-secondary{color:#fff;background-color:var(--color-secondary);border-color:var(--color-secondary)}.w3eden .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.w3eden .btn-secondary:focus,.w3eden .btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.w3eden .btn-secondary.disabled,.w3eden .btn-secondary:disabled{color:#fff;background-color:var(--color-secondary);border-color:var(--color-secondary)}.w3eden .btn-secondary:not(:disabled):not(.disabled):active,.w3eden .btn-secondary:not(:disabled):not(.disabled).active,.w3eden .show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.w3eden .btn-secondary:not(:disabled):not(.disabled):active:focus,.w3eden .btn-secondary:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.w3eden .btn-success{color:#fff;background-color:var(--color-success);border-color:var(--color-success)}.w3eden .btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.w3eden .btn-success:focus,.w3eden .btn-success.focus{box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.w3eden .btn-success.disabled,.w3eden .btn-success:disabled{color:#fff;background-color:var(--color-success);border-color:var(--color-success)}.w3eden .btn-success:not(:disabled):not(.disabled):active,.w3eden .btn-success:not(:disabled):not(.disabled).active,.w3eden .show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.w3eden .btn-success:not(:disabled):not(.disabled):active:focus,.w3eden .btn-success:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.w3eden .btn-info{color:#fff;background-color:var(--color-info);border-color:var(--color-info)}.w3eden .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.w3eden .btn-info:focus,.w3eden .btn-info.focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.w3eden .btn-info.disabled,.w3eden .btn-info:disabled{color:#fff;background-color:var(--color-info);border-color:var(--color-info)}.w3eden .btn-info:not(:disabled):not(.disabled):active,.w3eden .btn-info:not(:disabled):not(.disabled).active,.w3eden .show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.w3eden .btn-info:not(:disabled):not(.disabled):active:focus,.w3eden .btn-info:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.w3eden .btn-warning{color:#212529;background-color:var(--color-warning);border-color:var(--color-warning)}.w3eden .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.w3eden .btn-warning:focus,.w3eden .btn-warning.focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.w3eden .btn-warning.disabled,.w3eden .btn-warning:disabled{color:#212529;background-color:var(--color-warning);border-color:var(--color-warning)}.w3eden .btn-warning:not(:disabled):not(.disabled):active,.w3eden .btn-warning:not(:disabled):not(.disabled).active,.w3eden .show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.w3eden .btn-warning:not(:disabled):not(.disabled):active:focus,.w3eden .btn-warning:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.w3eden .btn-danger{color:#fff;background-color:var(--color-danger);border-color:var(--color-danger)}.w3eden .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.w3eden .btn-danger:focus,.w3eden .btn-danger.focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.w3eden .btn-danger.disabled,.w3eden .btn-danger:disabled{color:#fff;background-color:var(--color-danger);border-color:var(--color-danger)}.w3eden .btn-danger:not(:disabled):not(.disabled):active,.w3eden .btn-danger:not(:disabled):not(.disabled).active,.w3eden .show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.w3eden .btn-danger:not(:disabled):not(.disabled):active:focus,.w3eden .btn-danger:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.w3eden .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.w3eden .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.w3eden .btn-light:focus,.w3eden .btn-light.focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.w3eden .btn-light.disabled,.w3eden .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.w3eden .btn-light:not(:disabled):not(.disabled):active,.w3eden .btn-light:not(:disabled):not(.disabled).active,.w3eden .show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.w3eden .btn-light:not(:disabled):not(.disabled):active:focus,.w3eden .btn-light:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.w3eden .btn-link{font-weight:400;color:var(--color-primary);text-decoration:none}.w3eden .btn-link:hover{color:var(--color-primary-hover);text-decoration:underline}.w3eden .btn-link:focus,.w3eden .btn-link.focus{text-decoration:underline;box-shadow:none}.w3eden .btn-link:disabled,.w3eden .btn-link.disabled{color:var(--color-secondary);pointer-events:none}.w3eden .btn-lg,.w3eden .btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.w3eden .btn-sm,.w3eden .btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.w3eden .btn-block{display:block;width:100%}.w3eden .btn-block+.btn-block{margin-top:.5rem}.w3eden input[type=submit].btn-block,.w3eden input[type=reset].btn-block,.w3eden input[type=button].btn-block{width:100%}.w3eden .fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.w3eden .fade{transition:none}}.w3eden .fade:not(.show){opacity:0}.w3eden .collapse:not(.show){display:none}.w3eden .collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.w3eden .collapsing{transition:none}}.w3eden .dropup,.w3eden .dropright,.w3eden .dropdown,.w3eden .dropleft{position:relative}.w3eden .dropdown-toggle{white-space:nowrap}.w3eden .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.w3eden .dropdown-toggle:empty::after{margin-left:0}.w3eden .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.w3eden .dropdown-menu[x-placement^=top],.w3eden .dropdown-menu[x-placement^=right],.w3eden .dropdown-menu[x-placement^=bottom],.w3eden .dropdown-menu[x-placement^=left]{right:auto;bottom:auto}.w3eden .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.w3eden .dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.w3eden .dropdown-item:hover,.w3eden .dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.w3eden .dropdown-item.active,.w3eden .dropdown-item:active{color:#fff;text-decoration:none;background-color:var(--color-primary)}.w3eden .dropdown-item.disabled,.w3eden .dropdown-item:disabled{color:var(--color-secondary);pointer-events:none;background-color:transparent}.w3eden .dropdown-menu.show{display:block}.w3eden .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:var(--color-secondary);white-space:nowrap}.w3eden .dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.w3eden .input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.w3eden .input-group>.form-control,.w3eden .input-group>.form-control-plaintext,.w3eden .input-group>.custom-select,.w3eden .input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.w3eden .input-group>.form-control+.form-control,.w3eden .input-group>.form-control+.custom-select,.w3eden .input-group>.custom-select+.form-control,.w3eden .input-group>.custom-select+.custom-select{margin-left:-1px}.w3eden .input-group>.form-control:focus,.w3eden .input-group>.custom-select:focus,.w3eden .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.w3eden .input-group>.form-control:not(:last-child),.w3eden .input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.w3eden .input-group>.form-control:not(:first-child),.w3eden .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.w3eden .input-group-prepend,.w3eden .input-group-append{display:-ms-flexbox;display:flex}.w3eden .input-group-prepend .btn,.w3eden .input-group-append .btn{position:relative;z-index:2}.w3eden .input-group-prepend .btn:focus,.w3eden .input-group-append .btn:focus{z-index:3}.w3eden .input-group-prepend .btn+.btn,.w3eden .input-group-prepend .btn+.input-group-text,.w3eden .input-group-prepend .input-group-text+.input-group-text,.w3eden .input-group-prepend .input-group-text+.btn,.w3eden .input-group-append .btn+.btn,.w3eden .input-group-append .btn+.input-group-text,.w3eden .input-group-append .input-group-text+.input-group-text,.w3eden .input-group-append .input-group-text+.btn{margin-left:-1px}.w3eden .input-group-prepend{margin-right:-1px}.w3eden .input-group-append{margin-left:-1px}.w3eden .input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.w3eden .input-group-text input[type=radio],.w3eden .input-group-text input[type=checkbox]{margin-top:0}.w3eden .input-group-lg>.form-control:not(textarea),.w3eden .input-group-lg>.custom-select{height:calc(1.5em+1rem+2px)}.w3eden .input-group-lg>.form-control,.w3eden .input-group-lg>.custom-select,.w3eden .input-group-lg>.input-group-prepend>.input-group-text,.w3eden .input-group-lg>.input-group-append>.input-group-text,.w3eden .input-group-lg>.input-group-prepend>.btn,.w3eden .input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.w3eden .input-group-sm>.form-control:not(textarea),.w3eden .input-group-sm>.custom-select{height:calc(1.5em+0.5rem+2px)}.w3eden .input-group-sm>.form-control,.w3eden .input-group-sm>.custom-select,.w3eden .input-group-sm>.input-group-prepend>.input-group-text,.w3eden .input-group-sm>.input-group-append>.input-group-text,.w3eden .input-group-sm>.input-group-prepend>.btn,.w3eden .input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.w3eden .input-group-lg>.custom-select,.w3eden .input-group-sm>.custom-select{padding-right:1.75rem}.w3eden .input-group>.input-group-prepend>.btn,.w3eden .input-group>.input-group-prepend>.input-group-text,.w3eden .input-group>.input-group-append:not(:last-child)>.btn,.w3eden .input-group>.input-group-append:not(:last-child)>.input-group-text,.w3eden .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.w3eden .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.w3eden .input-group>.input-group-append>.btn,.w3eden .input-group>.input-group-append>.input-group-text,.w3eden .input-group>.input-group-prepend:not(:first-child)>.btn,.w3eden .input-group>.input-group-prepend:not(:first-child)>.input-group-text,.w3eden .input-group>.input-group-prepend:first-child>.btn:not(:first-child),.w3eden .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.w3eden .custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.w3eden .custom-control-input{position:absolute;z-index:-1;opacity:0}.w3eden .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:var(--color-primary);background-color:var(--color-primary)}.w3eden .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff}.w3eden .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.w3eden .custom-control-input:disabled ~ .custom-control-label{color:var(--color-secondary)}.w3eden .custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.w3eden .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.w3eden .custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.w3eden .custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.w3eden .custom-radio .custom-control-label::before{border-radius:50%}.w3eden .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvgxmlns='http://www.w3.org/2000/svg'viewBox='-4-488'%3e%3ccircler='3'fill='%23fff'/%3e%3c/svg%3e")}.w3eden .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.w3eden .custom-select{display:inline-block;width:100%;height:calc(1.5em+0.75rem+2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvgxmlns='http://www.w3.org/2000/svg'viewBox='0045'%3e%3cpathfill='%23343a40'd='M20L02h4zm05L03h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.w3eden .custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.w3eden .custom-select[multiple],.w3eden .custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.w3eden .custom-select:disabled{color:var(--color-secondary);background-color:#e9ecef}.w3eden .custom-select::-ms-expand{display:none}.w3eden .custom-control-label::before,.w3eden .custom-file-label,.w3eden .custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.w3eden .custom-control-label::before,.w3eden .custom-select{transition:none}}.w3eden .nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.w3eden .nav-link{display:block;padding:.5rem 1rem}.w3eden .nav-link:hover,.w3eden .nav-link:focus{text-decoration:none}.w3eden .nav-link.disabled{color:var(--color-secondary);pointer-events:none;cursor:default}.w3eden .nav-tabs{border-bottom:1px solid #dee2e6}.w3eden .nav-tabs .nav-item{margin-bottom:-1px}.w3eden .nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .nav-tabs .nav-link:hover,.w3eden .nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.w3eden .nav-tabs .nav-link.disabled{color:var(--color-secondary);background-color:transparent;border-color:transparent}.w3eden .nav-tabs .nav-link.active,.w3eden .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.w3eden .tab-content>.tab-pane{display:none}.w3eden .tab-content>.active{display:block}.w3eden .card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.w3eden .card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.w3eden .card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.w3eden .card-title{margin-bottom:.75rem}.w3eden .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.w3eden .card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.w3eden .card-header+.list-group .list-group-item:first-child{border-top:0}.w3eden .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.w3eden .card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.w3eden .card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.w3eden .card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.w3eden .card-img{width:100%;border-radius:calc(0.25rem - 1px)}.w3eden .card-img-top{width:100%;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.w3eden .accordion>.card{overflow:hidden}.w3eden .accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.w3eden .accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.w3eden .accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.w3eden .accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.w3eden .accordion>.card .card-header{margin-bottom:-1px}.w3eden .pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.w3eden .page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:var(--color-primary);background-color:#fff;border:1px solid #dee2e6}.w3eden .page-link:hover{z-index:2;color:var(--color-primary-hover);text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.w3eden .page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.w3eden .badge{transition:none}}.w3eden a.badge:hover,.w3eden a.badge:focus{text-decoration:none}.w3eden .badge:empty{display:none}.w3eden .btn .badge{position:relative;top:-1px}.w3eden .badge-secondary{color:#fff;background-color:var(--color-secondary)}.w3eden a.badge-secondary:hover,.w3eden a.badge-secondary:focus{color:#fff;background-color:#545b62}.w3eden a.badge-secondary:focus,.w3eden a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.w3eden .badge-success{color:#fff;background-color:var(--color-success)}.w3eden a.badge-success:hover,.w3eden a.badge-success:focus{color:#fff;background-color:#1e7e34}.w3eden a.badge-success:focus,.w3eden a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.w3eden .badge-info{color:#fff;background-color:var(--color-info)}.w3eden a.badge-info:hover,.w3eden a.badge-info:focus{color:#fff;background-color:#117a8b}.w3eden a.badge-info:focus,.w3eden a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.w3eden .badge-warning{color:#212529;background-color:var(--color-warning)}.w3eden a.badge-warning:hover,.w3eden a.badge-warning:focus{color:#212529;background-color:#d39e00}.w3eden a.badge-warning:focus,.w3eden a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.w3eden .badge-danger{color:#fff;background-color:var(--color-danger)}.w3eden a.badge-danger:hover,.w3eden a.badge-danger:focus{color:#fff;background-color:#bd2130}.w3eden a.badge-danger:focus,.w3eden a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.w3eden .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.w3eden .alert-link{font-weight:700}.w3eden .alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.w3eden .alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.w3eden .alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.w3eden .alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.w3eden .alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.w3eden .media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.w3eden .media-body{-ms-flex:1;flex:1}.w3eden .list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.w3eden .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.w3eden .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.w3eden .list-group-item.active{z-index:2;color:#fff;background-color:var(--color-primary);border-color:var(--color-primary)}.w3eden .list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.w3eden .list-group-flush .list-group-item:last-child{margin-bottom:-1px}.w3eden .list-group-flush:first-child .list-group-item:first-child{border-top:0}.w3eden .list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.w3eden .modal-open{overflow:hidden}.w3eden .modal-open .modal{overflow-x:hidden;overflow-y:auto}.w3eden .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.w3eden .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.w3eden .modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media(prefers-reduced-motion:reduce){.w3eden .modal.fade .modal-dialog{transition:none}}.w3eden .modal.show .modal-dialog{-webkit-transform:none;transform:none}.w3eden .modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.w3eden .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.w3eden .modal-dialog-scrollable .modal-header,.w3eden .modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.w3eden .modal-dialog-scrollable .modal-body{overflow-y:auto}.w3eden .modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.w3eden .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.w3eden .modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.w3eden .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.w3eden .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.w3eden .modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.w3eden .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.w3eden .modal-backdrop.fade{opacity:0}.w3eden .modal-backdrop.show{opacity:.5}.w3eden .modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.w3eden .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.w3eden .modal-title{margin-bottom:0;line-height:1.5}.w3eden .modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.w3eden .modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.w3eden .modal-footer>:not(:first-child){margin-left:.25rem}.w3eden .modal-footer>:not(:last-child){margin-right:.25rem}@media(min-width:576px){.w3eden .modal-dialog{max-width:500px;margin:1.75rem auto}.w3eden .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.w3eden .modal-dialog-centered::before{height:calc(100vh - 3.5rem)}}.w3eden .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-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";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.w3eden .tooltip.show{opacity:.9;background:rgba(0,0,0,0.5)}.w3eden .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.w3eden .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.w3eden .bs-tooltip-top,.w3eden .bs-tooltip-auto[x-placement^=top]{padding:.4rem 0}.w3eden .bs-tooltip-top .arrow,.w3eden .bs-tooltip-auto[x-placement^=top] .arrow{bottom:0}.w3eden .bs-tooltip-top .arrow::before,.w3eden .bs-tooltip-auto[x-placement^=top] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.w3eden .bs-tooltip-right,.w3eden .bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}.w3eden .bs-tooltip-right .arrow,.w3eden .bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}.w3eden .bs-tooltip-right .arrow::before,.w3eden .bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.w3eden .bs-tooltip-bottom,.w3eden .bs-tooltip-auto[x-placement^=bottom]{padding:.4rem 0}.w3eden .bs-tooltip-bottom .arrow,.w3eden .bs-tooltip-auto[x-placement^=bottom] .arrow{top:0}.w3eden .bs-tooltip-bottom .arrow::before,.w3eden .bs-tooltip-auto[x-placement^=bottom] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.w3eden .bs-tooltip-left,.w3eden .bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}.w3eden .bs-tooltip-left .arrow,.w3eden .bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}.w3eden .bs-tooltip-left .arrow::before,.w3eden .bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.w3eden .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.w3eden .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.w3eden .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.w3eden .spinner-grow-sm{width:1rem;height:1rem}.w3eden .bg-primary{background-color:var(--color-primary)!important}.w3eden a.bg-primary:hover,.w3eden a.bg-primary:focus,.w3eden button.bg-primary:hover,.w3eden button.bg-primary:focus{background-color:#0062cc!important}.w3eden .bg-secondary{background-color:var(--color-secondary)!important}.w3eden a.bg-secondary:hover,.w3eden a.bg-secondary:focus,.w3eden button.bg-secondary:hover,.w3eden button.bg-secondary:focus{background-color:#545b62!important}.w3eden .bg-success{background-color:var(--color-success)!important}.w3eden .bg-info{background-color:var(--color-info)!important}.w3eden .bg-warning{background-color:var(--color-warning)!important}.w3eden .bg-danger{background-color:var(--color-danger)!important}.w3eden a.bg-danger:hover,.w3eden a.bg-danger:focus,.w3eden button.bg-danger:hover,.w3eden button.bg-danger:focus{background-color:#bd2130!important}.w3eden .bg-white{background-color:#fff!important}.w3eden .clearfix::after{display:block;clear:both;content:""}.w3eden .d-none{display:none!important}.w3eden .d-inline{display:inline!important}.w3eden .d-inline-block{display:inline-block!important}.w3eden .d-block{display:block!important}.w3eden .d-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media(min-width:576px){.w3eden .d-sm-none{display:none!important}.w3eden .d-sm-inline{display:inline!important}.w3eden .d-sm-inline-block{display:inline-block!important}.w3eden .d-sm-block{display:block!important}.w3eden .d-sm-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:768px){.w3eden .d-md-none{display:none!important}.w3eden .d-md-inline{display:inline!important}.w3eden .d-md-inline-block{display:inline-block!important}.w3eden .d-md-block{display:block!important}.w3eden .d-md-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:992px){.w3eden .d-lg-none{display:none!important}.w3eden .d-lg-inline{display:inline!important}.w3eden .d-lg-inline-block{display:inline-block!important}.w3eden .d-lg-block{display:block!important}.w3eden .d-lg-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:1200px){.w3eden .d-xl-none{display:none!important}.w3eden .d-xl-inline{display:inline!important}.w3eden .d-xl-inline-block{display:inline-block!important}.w3eden .d-xl-block{display:block!important}.w3eden .d-xl-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.w3eden .flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.w3eden .flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.w3eden .flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.w3eden .flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.w3eden .flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.w3eden .flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.w3eden .flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.w3eden .flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.w3eden .flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.w3eden .flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.w3eden .flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.w3eden .flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.w3eden .justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.w3eden .justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.w3eden .justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.w3eden .justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.w3eden .justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.w3eden .align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.w3eden .align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.w3eden .align-items-center{-ms-flex-align:center!important;align-items:center!important}.w3eden .align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.w3eden .align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.w3eden .align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.w3eden .align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.w3eden .align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.w3eden .align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.w3eden .align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.w3eden .align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.w3eden .align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.w3eden .align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.w3eden .align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.w3eden .align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.w3eden .align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.w3eden .align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media(min-width:576px){.w3eden .justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}}@media(min-width:768px){}@media(min-width:992px){}@media(min-width:1200px){}.w3eden .float-left{float:left!important}.w3eden .float-right{float:right!important}.w3eden .position-relative{position:relative!important}.w3eden .position-absolute{position:absolute!important}.w3eden .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.w3eden .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.w3eden .w-100{width:100%!important}.w3eden .mw-100{max-width:100%!important}.w3eden .m-0{margin:0!important}.w3eden .mt-0,.w3eden .my-0{margin-top:0!important}.w3eden .mr-0,.w3eden .mx-0{margin-right:0!important}.w3eden .mb-0,.w3eden .my-0{margin-bottom:0!important}.w3eden .ml-0,.w3eden .mx-0{margin-left:0!important}.w3eden .m-1{margin:.25rem!important}.w3eden .mt-1,.w3eden .my-1{margin-top:.25rem!important}.w3eden .mr-1,.w3eden .mx-1{margin-right:.25rem!important}.w3eden .mb-1,.w3eden .my-1{margin-bottom:.25rem!important}.w3eden .ml-1,.w3eden .mx-1{margin-left:.25rem!important}.w3eden .m-2{margin:.5rem!important}.w3eden .mt-2,.w3eden .my-2{margin-top:.5rem!important}.w3eden .mr-2,.w3eden .mx-2{margin-right:.5rem!important}.w3eden .mb-2,.w3eden .my-2{margin-bottom:.5rem!important}.w3eden .ml-2,.w3eden .mx-2{margin-left:.5rem!important}.w3eden .m-3{margin:1rem!important}.w3eden .mt-3,.w3eden .my-3{margin-top:1rem!important}.w3eden .mr-3,.w3eden .mx-3{margin-right:1rem!important}.w3eden .mb-3,.w3eden .my-3{margin-bottom:1rem!important}.w3eden .ml-3,.w3eden .mx-3{margin-left:1rem!important}.w3eden .m-4{margin:1.5rem!important}.w3eden .mt-4,.w3eden .my-4{margin-top:1.5rem!important}.w3eden .mr-4,.w3eden .mx-4{margin-right:1.5rem!important}.w3eden .mb-4,.w3eden .my-4{margin-bottom:1.5rem!important}.w3eden .ml-4,.w3eden .mx-4{margin-left:1.5rem!important}.w3eden .m-5{margin:3rem!important}.w3eden .mt-5,.w3eden .my-5{margin-top:3rem!important}.w3eden .mr-5,.w3eden .mx-5{margin-right:3rem!important}.w3eden .mb-5,.w3eden .my-5{margin-bottom:3rem!important}.w3eden .ml-5,.w3eden .mx-5{margin-left:3rem!important}.w3eden .p-0{padding:0!important}.w3eden .pt-0,.w3eden .py-0{padding-top:0!important}.w3eden .pr-0,.w3eden .px-0{padding-right:0!important}.w3eden .pb-0,.w3eden .py-0{padding-bottom:0!important}.w3eden .pl-0,.w3eden .px-0{padding-left:0!important}.w3eden .p-1{padding:.25rem!important}.w3eden .pt-1,.w3eden .py-1{padding-top:.25rem!important}.w3eden .pr-1,.w3eden .px-1{padding-right:.25rem!important}.w3eden .pb-1,.w3eden .py-1{padding-bottom:.25rem!important}.w3eden .pl-1,.w3eden .px-1{padding-left:.25rem!important}.w3eden .p-2{padding:.5rem!important}.w3eden .pt-2,.w3eden .py-2{padding-top:.5rem!important}.w3eden .pr-2,.w3eden .px-2{padding-right:.5rem!important}.w3eden .pb-2,.w3eden .py-2{padding-bottom:.5rem!important}.w3eden .pl-2,.w3eden .px-2{padding-left:.5rem!important}.w3eden .p-3{padding:1rem!important}.w3eden .pt-3,.w3eden .py-3{padding-top:1rem!important}.w3eden .pr-3,.w3eden .px-3{padding-right:1rem!important}.w3eden .pb-3,.w3eden .py-3{padding-bottom:1rem!important}.w3eden .pl-3,.w3eden .px-3{padding-left:1rem!important}.w3eden .p-4{padding:1.5rem!important}.w3eden .pt-4,.w3eden .py-4{padding-top:1.5rem!important}.w3eden .pr-4,.w3eden .px-4{padding-right:1.5rem!important}.w3eden .pb-4,.w3eden .py-4{padding-bottom:1.5rem!important}.w3eden .pl-4,.w3eden .px-4{padding-left:1.5rem!important}.w3eden .p-5{padding:3rem!important}.w3eden .pt-5,.w3eden .py-5{padding-top:3rem!important}.w3eden .pr-5,.w3eden .px-5{padding-right:3rem!important}.w3eden .pb-5,.w3eden .py-5{padding-bottom:3rem!important}.w3eden .pl-5,.w3eden .px-5{padding-left:3rem!important}.w3eden .m-n1{margin:-0.25rem!important}.w3eden .mt-n1,.w3eden .my-n1{margin-top:-0.25rem!important}.w3eden .mr-n1,.w3eden .mx-n1{margin-right:-0.25rem!important}.w3eden .mb-n1,.w3eden .my-n1{margin-bottom:-0.25rem!important}.w3eden .ml-n1,.w3eden .mx-n1{margin-left:-0.25rem!important}.w3eden .m-n2{margin:-0.5rem!important}.w3eden .mt-n2,.w3eden .my-n2{margin-top:-0.5rem!important}.w3eden .mr-n2,.w3eden .mx-n2{margin-right:-0.5rem!important}.w3eden .mb-n2,.w3eden .my-n2{margin-bottom:-0.5rem!important}.w3eden .ml-n2,.w3eden .mx-n2{margin-left:-0.5rem!important}.w3eden .m-n3{margin:-1rem!important}.w3eden .mt-n3,.w3eden .my-n3{margin-top:-1rem!important}.w3eden .mr-n3,.w3eden .mx-n3{margin-right:-1rem!important}.w3eden .mb-n3,.w3eden .my-n3{margin-bottom:-1rem!important}.w3eden .ml-n3,.w3eden .mx-n3{margin-left:-1rem!important}.w3eden .m-n4{margin:-1.5rem!important}.w3eden .mt-n4,.w3eden .my-n4{margin-top:-1.5rem!important}.w3eden .mr-n4,.w3eden .mx-n4{margin-right:-1.5rem!important}.w3eden .mb-n4,.w3eden .my-n4{margin-bottom:-1.5rem!important}.w3eden .ml-n4,.w3eden .mx-n4{margin-left:-1.5rem!important}.w3eden .m-n5{margin:-3rem!important}.w3eden .mt-n5,.w3eden .my-n5{margin-top:-3rem!important}.w3eden .mr-n5,.w3eden .mx-n5{margin-right:-3rem!important}.w3eden .mb-n5,.w3eden .my-n5{margin-bottom:-3rem!important}.w3eden .ml-n5,.w3eden .mx-n5{margin-left:-3rem!important}.w3eden .m-auto{margin:auto!important}.w3eden .mt-auto,.w3eden .my-auto{margin-top:auto!important}.w3eden .mr-auto,.w3eden .mx-auto{margin-right:auto!important}.w3eden .mb-auto,.w3eden .my-auto{margin-bottom:auto!important}.w3eden .ml-auto,.w3eden .mx-auto{margin-left:auto!important}.w3eden .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.w3eden .text-left{text-align:left!important}.w3eden .text-right{text-align:right!important}.w3eden .text-center{text-align:center!important}.w3eden .text-uppercase{text-transform:uppercase!important}.w3eden .text-capitalize{text-transform:capitalize!important}.w3eden .text-white{color:#fff!important}.w3eden .text-primary{color:var(--color-primary)!important}.w3eden a.text-primary:hover,.w3eden a.text-primary:focus{color:var(--color-primary-hover)!important}.w3eden .text-secondary{color:var(--color-secondary)!important}.w3eden a.text-secondary:hover,.w3eden a.text-secondary:focus{color:var(--color-secondary-hover)!important}.w3eden .text-success{color:var(--color-success)!important}.w3eden a.text-success:hover,.w3eden a.text-success:focus{color:var(--color-success-active)!important}.w3eden .text-info{color:var(--color-info)!important}.w3eden a.text-info:hover,.w3eden a.text-info:focus{color:var(--color-info-active)!important}.w3eden .text-warning{color:var(--color-warning)!important}.w3eden a.text-warning:hover,.w3eden a.text-warning:focus{color:var(--color-warning-active)!important}.w3eden .text-danger{color:var(--color-danger)!important}.w3eden a.text-danger:hover,.w3eden a.text-danger:focus{color:var(--color-danger-active)!important}.w3eden .text-muted{color:var(--color-secondary)!important}.w3eden .visible{visibility:visible!important}@media print{.w3eden *,.w3eden *::before,.w3eden *::after{text-shadow:none!important;box-shadow:none!important}.w3eden a:not(.btn){text-decoration:underline}.w3eden abbr[title]::after{content:" (" attr(title) ")"}.w3eden pre{white-space:pre-wrap!important}.w3eden pre,.w3eden blockquote{border:1px solid #adb5bd;page-break-inside:avoid}.w3eden thead{display:table-header-group}.w3eden tr,.w3eden img{page-break-inside:avoid}.w3eden p,.w3eden h2,.w3eden h3{orphans:3;widows:3}.w3eden h2,.w3eden h3{page-break-after:avoid}.w3eden body{min-width:992px!important}.w3eden .container{min-width:992px!important}.w3eden .navbar{display:none}.w3eden .badge{border:1px solid #000}.w3eden .table{border-collapse:collapse!important}.w3eden .table td,.w3eden .table th{background-color:#fff!important}.w3eden .table-bordered th,.w3eden .table-bordered td{border:1px solid #dee2e6!important}}
1
+ .w3eden{/*!
2
  * Bootstrap v4.3.1 (https://getbootstrap.com/)
3
  * Copyright 2011-2019 The Bootstrap Authors
4
  * Copyright 2011-2019 Twitter, Inc.
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ *//*!*.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,*!*/}.w3eden *,.w3eden *::before,.w3eden *::after{box-sizing:border-box}.w3eden html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}.w3eden article,.w3eden aside,.w3eden figcaption,.w3eden figure,.w3eden footer,.w3eden header,.w3eden hgroup,.w3eden main,.w3eden nav,.w3eden section{display:block}.w3eden body{margin:0;font-family:-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";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}.w3eden [tabindex="-1"]:focus{outline:0!important}.w3eden hr{box-sizing:content-box;height:0;overflow:visible}.w3eden h1,.w3eden h2,.w3eden h3,.w3eden h4,.w3eden h5,.w3eden h6{margin-top:0;margin-bottom:.5rem}.w3eden p{margin-top:0;margin-bottom:1rem}.w3eden abbr[title],.w3eden abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}.w3eden address{margin-bottom:1rem;font-style:normal;line-height:inherit}.w3eden ol,.w3eden ul,.w3eden dl{margin-top:0;margin-bottom:1rem}.w3eden ol ol,.w3eden ul ul,.w3eden ol ul,.w3eden ul ol{margin-bottom:0}.w3eden dt{font-weight:700}.w3eden dd{margin-bottom:.5rem;margin-left:0}.w3eden blockquote{margin:0 0 1rem}.w3eden b,.w3eden strong{font-weight:bolder}.w3eden small{font-size:80%}.w3eden sub,.w3eden sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.w3eden sub{bottom:-0.25em}.w3eden sup{top:-0.5em}.w3eden a{color:var(--color-primary);text-decoration:none;background-color:transparent}.w3eden a:hover{color:var(--color-primary-hover);text-decoration:underline}.w3eden a:not([href]):not([tabindex]){color:inherit;text-decoration:none}.w3eden a:not([href]):not([tabindex]):hover,.w3eden a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}.w3eden a:not([href]):not([tabindex]):focus{outline:0}.w3eden pre,.w3eden code,.w3eden kbd,.w3eden samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}.w3eden pre{margin-top:0;margin-bottom:1rem;overflow:auto}.w3eden figure{margin:0 0 1rem}.w3eden img{vertical-align:middle;border-style:none}.w3eden svg{overflow:hidden;vertical-align:middle}.w3eden table{border-collapse:collapse}.w3eden caption{padding-top:.75rem;padding-bottom:.75rem;color:var(--color-secondary);text-align:left;caption-side:bottom}.w3eden th{text-align:inherit}.w3eden label{display:inline-block;margin-bottom:.5rem}.w3eden button{border-radius:0}.w3eden button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}.w3eden input,.w3eden button,.w3eden select,.w3eden optgroup,.w3eden textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.w3eden button,.w3eden input{overflow:visible}.w3eden button,.w3eden select{text-transform:none}.w3eden select{word-wrap:normal}.w3eden button,.w3eden [type=button],.w3eden [type=reset],.w3eden [type=submit]{-webkit-appearance:button}.w3eden button:not(:disabled),.w3eden [type=button]:not(:disabled),.w3eden [type=reset]:not(:disabled),.w3eden [type=submit]:not(:disabled){cursor:pointer}.w3eden button::-moz-focus-inner,.w3eden [type=button]::-moz-focus-inner,.w3eden [type=reset]::-moz-focus-inner,.w3eden [type=submit]::-moz-focus-inner{padding:0;border-style:none}.w3eden input[type=radio],.w3eden input[type=checkbox]{box-sizing:border-box;padding:0}.w3eden input[type=date],.w3eden input[type=time],.w3eden input[type=datetime-local],.w3eden input[type=month]{-webkit-appearance:listbox}.w3eden textarea{overflow:auto;resize:vertical}.w3eden fieldset{min-width:0;padding:0;margin:0;border:0}.w3eden legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}.w3eden [type=number]::-webkit-inner-spin-button,.w3eden [type=number]::-webkit-outer-spin-button{height:auto}.w3eden [type=search]{outline-offset:-2px;-webkit-appearance:none}.w3eden [type=search]::-webkit-search-decoration{-webkit-appearance:none}.w3eden ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.w3eden output{display:inline-block}.w3eden summary{display:list-item;cursor:pointer}.w3eden template{display:none}.w3eden [hidden]{display:none!important}.w3eden h1,.w3eden h2,.w3eden h3,.w3eden h4,.w3eden h5,.w3eden h6,.w3eden .h1,.w3eden .h2,.w3eden .h3,.w3eden .h4,.w3eden .h5,.w3eden .h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.w3eden h1,.w3eden .h1{font-size:2.5rem}.w3eden h2,.w3eden .h2{font-size:2rem}.w3eden h3,.w3eden .h3{font-size:1.75rem}.w3eden h4,.w3eden .h4{font-size:1.5rem}.w3eden h5,.w3eden .h5{font-size:1.25rem}.w3eden h6,.w3eden .h6{font-size:1rem}.w3eden .lead{font-size:1.25rem;font-weight:300}.w3eden hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.w3eden small,.w3eden .small{font-size:80%;font-weight:400}.w3eden mark,.w3eden .mark{padding:.2em;background-color:#fcf8e3}.w3eden .list-unstyled{padding-left:0;list-style:none}.w3eden .list-inline{padding-left:0;list-style:none}.w3eden .list-inline-item{display:inline-block}.w3eden .list-inline-item:not(:last-child){margin-right:.5rem}.w3eden .img-fluid{max-width:100%;height:auto}.w3eden code{font-size:87.5%;color:#e83e8c;word-break:break-word}.w3eden a>code{color:inherit}.w3eden kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}.w3eden kbd kbd{padding:0;font-size:100%;font-weight:700}.w3eden pre{display:block;font-size:87.5%;color:#212529}.w3eden .container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.w3eden .container{max-width:540px}}@media(min-width:768px){.w3eden .container{max-width:720px}}@media(min-width:992px){.w3eden .container{max-width:960px}}@media(min-width:1200px){.w3eden .container{max-width:1140px}}.w3eden .container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.w3eden .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.w3eden .no-gutters{margin-right:0;margin-left:0}.w3eden .no-gutters>.col,.w3eden .no-gutters>[class*=col-]{padding-right:0;padding-left:0}.w3eden .col-2,.w3eden .col-3,.w3eden .col-4,.w3eden .col-5,.w3eden .col-6,.w3eden .col-7,.w3eden .col-8,.w3eden .col-9,.w3eden .col-10,.w3eden .col-11,.w3eden .col-12,.w3eden .col,.w3eden .col-sm-1,.w3eden .col-sm-2,.w3eden .col-sm-3,.w3eden .col-sm-4,.w3eden .col-sm-5,.w3eden .col-sm-6,.w3eden .col-sm-7,.w3eden .col-sm-8,.w3eden .col-sm-9,.w3eden .col-sm-10,.w3eden .col-sm-11,.w3eden .col-sm-12,.w3eden .col-sm,.w3eden .col-sm-auto,.w3eden .col-md-1,.w3eden .col-md-2,.w3eden .col-md-3,.w3eden .col-md-4,.w3eden .col-md-5,.w3eden .col-md-6,.w3eden .col-md-7,.w3eden .col-md-8,.w3eden .col-md-9,.w3eden .col-md-10,.w3eden .col-md-11,.w3eden .col-md-12,.w3eden .col-md,.w3eden .col-md-auto,.w3eden .col-lg-1,.w3eden .col-lg-2,.w3eden .col-lg-3,.w3eden .col-lg-4,.w3eden .col-lg-5,.w3eden .col-lg-6,.w3eden .col-lg-7,.w3eden .col-lg-8,.w3eden .col-lg-9,.w3eden .col-lg-10,.w3eden .col-lg-11,.w3eden .col-lg-12,.w3eden .col-lg,.w3eden .col-lg-auto,.w3eden .col-xl-1,.w3eden .col-xl-2,.w3eden .col-xl-3,.w3eden .col-xl-4,.w3eden .col-xl-5,.w3eden .col-xl-6,.w3eden .col-xl-7,.w3eden .col-xl-8,.w3eden .col-xl-9,.w3eden .col-xl-10,.w3eden .col-xl-11,.w3eden .col-xl-12,.w3eden .col-xl,.w3eden .col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.w3eden .col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.w3eden .col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media(min-width:576px){.w3eden .col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media(min-width:768px){.w3eden .col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.w3eden .col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.w3eden .col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.w3eden .col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.w3eden .col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.w3eden .col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.w3eden .col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.w3eden .order-md-first{-ms-flex-order:-1;order:-1}.w3eden .order-md-1{-ms-flex-order:1;order:1}.w3eden .order-md-12{-ms-flex-order:12;order:12}.w3eden .offset-md-2{margin-left:16.666667%}}@media(min-width:992px){.w3eden .col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.w3eden .col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.w3eden .col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.w3eden .col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.w3eden .col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.w3eden .col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.w3eden .col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.w3eden .col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.w3eden .order-lg-0{-ms-flex-order:0;order:0}}@media(min-width:1200px){.w3eden .col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.w3eden .col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.w3eden .col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.w3eden .col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.w3eden .col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.w3eden .col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.w3eden .col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.w3eden .col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.w3eden .col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.w3eden .col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.w3eden .col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.w3eden .table{width:100%;margin-bottom:1rem;border:0;color:#212529}.w3eden .table th,.w3eden .table td{padding:.75rem;vertical-align:top;border:0;border-top:1px solid #dee2e6}.w3eden .table thead th{vertical-align:bottom;border:0;border-bottom:1px solid #dee2e6}.w3eden .table tbody+tbody{border:0;border-top:1px solid #dee2e6}.w3eden .table-bordered{border:1px solid #dee2e6}.w3eden .table-bordered th,.w3eden .table-bordered td{border:1px solid #dee2e6}.w3eden .table-bordered thead th,.w3eden .table-bordered thead td{border-bottom-width:2px}.w3eden .form-control{display:block;width:100%;height:calc(1.5em+0.75rem+2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.w3eden .form-control{transition:none}}.w3eden .form-control::-ms-expand{background-color:transparent;border:0}.w3eden .form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .form-control::-webkit-input-placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control::-moz-placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control:-ms-input-placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control::-ms-input-placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control::placeholder{color:var(--color-secondary);opacity:1}.w3eden .form-control:disabled,.w3eden .form-control[readonly]{background-color:#e9ecef;opacity:1}.w3eden select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.w3eden .form-control-lg{height:calc(1.5em+1rem+2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.w3eden select.form-control[size],.w3eden select.form-control[multiple]{height:auto}.w3eden textarea.form-control{height:auto}.w3eden .form-group{margin-bottom:1rem}.w3eden .form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.w3eden .form-row>.col,.w3eden .form-row>[class*=col-]{padding-right:5px;padding-left:5px}.w3eden .form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.w3eden .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.w3eden .btn{transition:none}}.w3eden .btn:hover{color:#212529;text-decoration:none}.w3eden .btn:focus,.w3eden .btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .btn-primary{color:#fff;background-color:var(--color-primary);border-color:var(--color-primary)}.w3eden .btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.w3eden .btn-primary:focus,.w3eden .btn-primary.focus{box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.w3eden .btn-primary.disabled,.w3eden .btn-primary:disabled{color:#fff;background-color:var(--color-primary);border-color:var(--color-primary)}.w3eden .btn-primary:not(:disabled):not(.disabled):active,.w3eden .btn-primary:not(:disabled):not(.disabled).active,.w3eden .show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.w3eden .btn-primary:not(:disabled):not(.disabled):active:focus,.w3eden .btn-primary:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.w3eden .btn-secondary{color:#fff;background-color:var(--color-secondary);border-color:var(--color-secondary)}.w3eden .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.w3eden .btn-secondary:focus,.w3eden .btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.w3eden .btn-secondary.disabled,.w3eden .btn-secondary:disabled{color:#fff;background-color:var(--color-secondary);border-color:var(--color-secondary)}.w3eden .btn-secondary:not(:disabled):not(.disabled):active,.w3eden .btn-secondary:not(:disabled):not(.disabled).active,.w3eden .show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.w3eden .btn-secondary:not(:disabled):not(.disabled):active:focus,.w3eden .btn-secondary:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.w3eden .btn-success{color:#fff;background-color:var(--color-success);border-color:var(--color-success)}.w3eden .btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.w3eden .btn-success:focus,.w3eden .btn-success.focus{box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.w3eden .btn-success.disabled,.w3eden .btn-success:disabled{color:#fff;background-color:var(--color-success);border-color:var(--color-success)}.w3eden .btn-success:not(:disabled):not(.disabled):active,.w3eden .btn-success:not(:disabled):not(.disabled).active,.w3eden .show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.w3eden .btn-success:not(:disabled):not(.disabled):active:focus,.w3eden .btn-success:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.w3eden .btn-info{color:#fff;background-color:var(--color-info);border-color:var(--color-info)}.w3eden .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.w3eden .btn-info:focus,.w3eden .btn-info.focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.w3eden .btn-info.disabled,.w3eden .btn-info:disabled{color:#fff;background-color:var(--color-info);border-color:var(--color-info)}.w3eden .btn-info:not(:disabled):not(.disabled):active,.w3eden .btn-info:not(:disabled):not(.disabled).active,.w3eden .show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.w3eden .btn-info:not(:disabled):not(.disabled):active:focus,.w3eden .btn-info:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.w3eden .btn-warning{color:#212529;background-color:var(--color-warning);border-color:var(--color-warning)}.w3eden .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.w3eden .btn-warning:focus,.w3eden .btn-warning.focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.w3eden .btn-warning.disabled,.w3eden .btn-warning:disabled{color:#212529;background-color:var(--color-warning);border-color:var(--color-warning)}.w3eden .btn-warning:not(:disabled):not(.disabled):active,.w3eden .btn-warning:not(:disabled):not(.disabled).active,.w3eden .show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.w3eden .btn-warning:not(:disabled):not(.disabled):active:focus,.w3eden .btn-warning:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.w3eden .btn-danger{color:#fff;background-color:var(--color-danger);border-color:var(--color-danger)}.w3eden .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.w3eden .btn-danger:focus,.w3eden .btn-danger.focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.w3eden .btn-danger.disabled,.w3eden .btn-danger:disabled{color:#fff;background-color:var(--color-danger);border-color:var(--color-danger)}.w3eden .btn-danger:not(:disabled):not(.disabled):active,.w3eden .btn-danger:not(:disabled):not(.disabled).active,.w3eden .show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.w3eden .btn-danger:not(:disabled):not(.disabled):active:focus,.w3eden .btn-danger:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.w3eden .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.w3eden .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.w3eden .btn-light:focus,.w3eden .btn-light.focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.w3eden .btn-light.disabled,.w3eden .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.w3eden .btn-light:not(:disabled):not(.disabled):active,.w3eden .btn-light:not(:disabled):not(.disabled).active,.w3eden .show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.w3eden .btn-light:not(:disabled):not(.disabled):active:focus,.w3eden .btn-light:not(:disabled):not(.disabled).active:focus,.w3eden .show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.w3eden .btn-link{font-weight:400;color:var(--color-primary);text-decoration:none}.w3eden .btn-link:hover{color:var(--color-primary-hover);text-decoration:underline}.w3eden .btn-link:focus,.w3eden .btn-link.focus{text-decoration:underline;box-shadow:none}.w3eden .btn-link:disabled,.w3eden .btn-link.disabled{color:var(--color-secondary);pointer-events:none}.w3eden .btn-lg,.w3eden .btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.w3eden .btn-sm,.w3eden .btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.w3eden .btn-block{display:block;width:100%}.w3eden .btn-block+.btn-block{margin-top:.5rem}.w3eden input[type=submit].btn-block,.w3eden input[type=reset].btn-block,.w3eden input[type=button].btn-block{width:100%}.w3eden .fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.w3eden .fade{transition:none}}.w3eden .fade:not(.show){opacity:0}.w3eden .collapse:not(.show){display:none}.w3eden .collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.w3eden .collapsing{transition:none}}.w3eden .dropup,.w3eden .dropright,.w3eden .dropdown,.w3eden .dropleft{position:relative}.w3eden .dropdown-toggle{white-space:nowrap}.w3eden .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.w3eden .dropdown-toggle:empty::after{margin-left:0}.w3eden .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.w3eden .dropdown-menu[x-placement^=top],.w3eden .dropdown-menu[x-placement^=right],.w3eden .dropdown-menu[x-placement^=bottom],.w3eden .dropdown-menu[x-placement^=left]{right:auto;bottom:auto}.w3eden .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.w3eden .dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.w3eden .dropdown-item:hover,.w3eden .dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.w3eden .dropdown-item.active,.w3eden .dropdown-item:active{color:#fff;text-decoration:none;background-color:var(--color-primary)}.w3eden .dropdown-item.disabled,.w3eden .dropdown-item:disabled{color:var(--color-secondary);pointer-events:none;background-color:transparent}.w3eden .dropdown-menu.show{display:block}.w3eden .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:var(--color-secondary);white-space:nowrap}.w3eden .dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.w3eden .input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.w3eden .input-group>.form-control,.w3eden .input-group>.form-control-plaintext,.w3eden .input-group>.custom-select,.w3eden .input-group>.custom-file{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.w3eden .input-group>.form-control+.form-control,.w3eden .input-group>.form-control+.custom-select,.w3eden .input-group>.custom-select+.form-control,.w3eden .input-group>.custom-select+.custom-select{margin-left:-1px}.w3eden .input-group>.form-control:focus,.w3eden .input-group>.custom-select:focus,.w3eden .input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.w3eden .input-group>.form-control:not(:last-child),.w3eden .input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.w3eden .input-group>.form-control:not(:first-child),.w3eden .input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.w3eden .input-group-prepend,.w3eden .input-group-append{display:-ms-flexbox;display:flex}.w3eden .input-group-prepend .btn,.w3eden .input-group-append .btn{position:relative;z-index:2}.w3eden .input-group-prepend .btn:focus,.w3eden .input-group-append .btn:focus{z-index:3}.w3eden .input-group-prepend .btn+.btn,.w3eden .input-group-prepend .btn+.input-group-text,.w3eden .input-group-prepend .input-group-text+.input-group-text,.w3eden .input-group-prepend .input-group-text+.btn,.w3eden .input-group-append .btn+.btn,.w3eden .input-group-append .btn+.input-group-text,.w3eden .input-group-append .input-group-text+.input-group-text,.w3eden .input-group-append .input-group-text+.btn{margin-left:-1px}.w3eden .input-group-prepend{margin-right:-1px}.w3eden .input-group-append{margin-left:-1px}.w3eden .input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.w3eden .input-group-text input[type=radio],.w3eden .input-group-text input[type=checkbox]{margin-top:0}.w3eden .input-group-lg>.form-control:not(textarea),.w3eden .input-group-lg>.custom-select{height:calc(1.5em+1rem+2px)}.w3eden .input-group-lg>.form-control,.w3eden .input-group-lg>.custom-select,.w3eden .input-group-lg>.input-group-prepend>.input-group-text,.w3eden .input-group-lg>.input-group-append>.input-group-text,.w3eden .input-group-lg>.input-group-prepend>.btn,.w3eden .input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.w3eden .input-group-sm>.form-control:not(textarea),.w3eden .input-group-sm>.custom-select{height:calc(1.5em+0.5rem+2px)}.w3eden .input-group-sm>.form-control,.w3eden .input-group-sm>.custom-select,.w3eden .input-group-sm>.input-group-prepend>.input-group-text,.w3eden .input-group-sm>.input-group-append>.input-group-text,.w3eden .input-group-sm>.input-group-prepend>.btn,.w3eden .input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.w3eden .input-group-lg>.custom-select,.w3eden .input-group-sm>.custom-select{padding-right:1.75rem}.w3eden .input-group>.input-group-prepend>.btn,.w3eden .input-group>.input-group-prepend>.input-group-text,.w3eden .input-group>.input-group-append:not(:last-child)>.btn,.w3eden .input-group>.input-group-append:not(:last-child)>.input-group-text,.w3eden .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.w3eden .input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.w3eden .input-group>.input-group-append>.btn,.w3eden .input-group>.input-group-append>.input-group-text,.w3eden .input-group>.input-group-prepend:not(:first-child)>.btn,.w3eden .input-group>.input-group-prepend:not(:first-child)>.input-group-text,.w3eden .input-group>.input-group-prepend:first-child>.btn:not(:first-child),.w3eden .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.w3eden .custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.w3eden .custom-control-input{position:absolute;z-index:-1;opacity:0}.w3eden .custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:var(--color-primary);background-color:var(--color-primary)}.w3eden .custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff}.w3eden .custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.w3eden .custom-control-input:disabled ~ .custom-control-label{color:var(--color-secondary)}.w3eden .custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.w3eden .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.w3eden .custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.w3eden .custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.w3eden .custom-radio .custom-control-label::before{border-radius:50%}.w3eden .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvgxmlns='http://www.w3.org/2000/svg'viewBox='-4-488'%3e%3ccircler='3'fill='%23fff'/%3e%3c/svg%3e")}.w3eden .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.w3eden .custom-select{display:inline-block;width:100%;height:calc(1.5em+0.75rem+2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvgxmlns='http://www.w3.org/2000/svg'viewBox='0045'%3e%3cpathfill='%23343a40'd='M20L02h4zm05L03h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.w3eden .custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .custom-select:focus::-ms-value{color:#495057;background-color:#fff}.w3eden .custom-select[multiple],.w3eden .custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.w3eden .custom-select:disabled{color:var(--color-secondary);background-color:#e9ecef}.w3eden .custom-select::-ms-expand{display:none}.w3eden .custom-control-label::before,.w3eden .custom-file-label,.w3eden .custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.w3eden .custom-control-label::before,.w3eden .custom-select{transition:none}}.w3eden .nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.w3eden .nav-link{display:block;padding:.5rem 1rem}.w3eden .nav-link:hover,.w3eden .nav-link:focus{text-decoration:none}.w3eden .nav-link.disabled{color:var(--color-secondary);pointer-events:none;cursor:default}.w3eden .nav-tabs{border-bottom:1px solid #dee2e6}.w3eden .nav-tabs .nav-item{margin-bottom:-1px}.w3eden .nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .nav-tabs .nav-link:hover,.w3eden .nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.w3eden .nav-tabs .nav-link.disabled{color:var(--color-secondary);background-color:transparent;border-color:transparent}.w3eden .nav-tabs .nav-link.active,.w3eden .nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.w3eden .tab-content>.tab-pane{display:none}.w3eden .tab-content>.active{display:block}.w3eden .card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.w3eden .card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.w3eden .card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.w3eden .card-title{margin-bottom:.75rem}.w3eden .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.w3eden .card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.w3eden .card-header+.list-group .list-group-item:first-child{border-top:0}.w3eden .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.w3eden .card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.w3eden .card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.w3eden .card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.w3eden .card-img{width:100%;border-radius:calc(0.25rem - 1px)}.w3eden .card-img-top{width:100%;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.w3eden .accordion>.card{overflow:hidden}.w3eden .accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.w3eden .accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.w3eden .accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.w3eden .accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.w3eden .accordion>.card .card-header{margin-bottom:-1px}.w3eden .pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.w3eden .page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:var(--color-primary);background-color:#fff;border:1px solid #dee2e6}.w3eden .page-link:hover{z-index:2;color:var(--color-primary-hover);text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.w3eden .page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.w3eden .badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.w3eden .badge{transition:none}}.w3eden a.badge:hover,.w3eden a.badge:focus{text-decoration:none}.w3eden .badge:empty{display:none}.w3eden .btn .badge{position:relative;top:-1px}.w3eden .badge-secondary{color:#fff;background-color:var(--color-secondary)}.w3eden a.badge-secondary:hover,.w3eden a.badge-secondary:focus{color:#fff;background-color:#545b62}.w3eden a.badge-secondary:focus,.w3eden a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.w3eden .badge-success{color:#fff;background-color:var(--color-success)}.w3eden a.badge-success:hover,.w3eden a.badge-success:focus{color:#fff;background-color:#1e7e34}.w3eden a.badge-success:focus,.w3eden a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.w3eden .badge-info{color:#fff;background-color:var(--color-info)}.w3eden a.badge-info:hover,.w3eden a.badge-info:focus{color:#fff;background-color:#117a8b}.w3eden a.badge-info:focus,.w3eden a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.w3eden .badge-warning{color:#212529;background-color:var(--color-warning)}.w3eden a.badge-warning:hover,.w3eden a.badge-warning:focus{color:#212529;background-color:#d39e00}.w3eden a.badge-warning:focus,.w3eden a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.w3eden .badge-danger{color:#fff;background-color:var(--color-danger)}.w3eden a.badge-danger:hover,.w3eden a.badge-danger:focus{color:#fff;background-color:#bd2130}.w3eden a.badge-danger:focus,.w3eden a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.w3eden .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.w3eden .alert-link{font-weight:700}.w3eden .alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.w3eden .alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.w3eden .alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.w3eden .alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.w3eden .alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.w3eden .media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.w3eden .media-body{-ms-flex:1;flex:1}.w3eden .list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.w3eden .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.w3eden .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.w3eden .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.w3eden .list-group-item.active{z-index:2;color:#fff;background-color:var(--color-primary);border-color:var(--color-primary)}.w3eden .list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.w3eden .list-group-flush .list-group-item:last-child{margin-bottom:-1px}.w3eden .list-group-flush:first-child .list-group-item:first-child{border-top:0}.w3eden .list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.w3eden .modal-open{overflow:hidden}.w3eden .modal-open .modal{overflow-x:hidden;overflow-y:auto}.w3eden .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.w3eden .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.w3eden .modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media(prefers-reduced-motion:reduce){.w3eden .modal.fade .modal-dialog{transition:none}}.w3eden .modal.show .modal-dialog{-webkit-transform:none;transform:none}.w3eden .modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.w3eden .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.w3eden .modal-dialog-scrollable .modal-header,.w3eden .modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.w3eden .modal-dialog-scrollable .modal-body{overflow-y:auto}.w3eden .modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.w3eden .modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.w3eden .modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.w3eden .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.w3eden .modal-dialog-centered.modal-dialog-scrollable::before{content:none}.w3eden .modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.w3eden .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.w3eden .modal-backdrop.fade{opacity:0}.w3eden .modal-backdrop.show{opacity:.5}.w3eden .modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.w3eden .modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.w3eden .modal-title{margin-bottom:0;line-height:1.5}.w3eden .modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.w3eden .modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.w3eden .modal-footer>:not(:first-child){margin-left:.25rem}.w3eden .modal-footer>:not(:last-child){margin-right:.25rem}@media(min-width:576px){.w3eden .modal-dialog{max-width:500px;margin:1.75rem auto}.w3eden .modal-dialog-centered{min-height:calc(100% - 3.5rem)}.w3eden .modal-dialog-centered::before{height:calc(100vh - 3.5rem)}}.w3eden .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-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";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.w3eden .tooltip.show{opacity:.9;background:rgba(0,0,0,0.5)}.w3eden .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.w3eden .tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.w3eden .bs-tooltip-top,.w3eden .bs-tooltip-auto[x-placement^=top]{padding:.4rem 0}.w3eden .bs-tooltip-top .arrow,.w3eden .bs-tooltip-auto[x-placement^=top] .arrow{bottom:0}.w3eden .bs-tooltip-top .arrow::before,.w3eden .bs-tooltip-auto[x-placement^=top] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.w3eden .bs-tooltip-right,.w3eden .bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}.w3eden .bs-tooltip-right .arrow,.w3eden .bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}.w3eden .bs-tooltip-right .arrow::before,.w3eden .bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.w3eden .bs-tooltip-bottom,.w3eden .bs-tooltip-auto[x-placement^=bottom]{padding:.4rem 0}.w3eden .bs-tooltip-bottom .arrow,.w3eden .bs-tooltip-auto[x-placement^=bottom] .arrow{top:0}.w3eden .bs-tooltip-bottom .arrow::before,.w3eden .bs-tooltip-auto[x-placement^=bottom] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.w3eden .bs-tooltip-left,.w3eden .bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}.w3eden .bs-tooltip-left .arrow,.w3eden .bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}.w3eden .bs-tooltip-left .arrow::before,.w3eden .bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.w3eden .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.w3eden .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.w3eden .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.w3eden .spinner-grow-sm{width:1rem;height:1rem}.w3eden .bg-primary{background-color:var(--color-primary)!important}.w3eden a.bg-primary:hover,.w3eden a.bg-primary:focus,.w3eden button.bg-primary:hover,.w3eden button.bg-primary:focus{background-color:#0062cc!important}.w3eden .bg-secondary{background-color:var(--color-secondary)!important}.w3eden a.bg-secondary:hover,.w3eden a.bg-secondary:focus,.w3eden button.bg-secondary:hover,.w3eden button.bg-secondary:focus{background-color:#545b62!important}.w3eden .bg-success{background-color:var(--color-success)!important}.w3eden .bg-info{background-color:var(--color-info)!important}.w3eden .bg-warning{background-color:var(--color-warning)!important}.w3eden .bg-danger{background-color:var(--color-danger)!important}.w3eden a.bg-danger:hover,.w3eden a.bg-danger:focus,.w3eden button.bg-danger:hover,.w3eden button.bg-danger:focus{background-color:#bd2130!important}.w3eden .bg-white{background-color:#fff!important}.w3eden .clearfix::after{display:block;clear:both;content:""}.w3eden .d-none{display:none!important}.w3eden .d-inline{display:inline!important}.w3eden .d-inline-block{display:inline-block!important}.w3eden .d-block{display:block!important}.w3eden .d-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media(min-width:576px){.w3eden .d-sm-none{display:none!important}.w3eden .d-sm-inline{display:inline!important}.w3eden .d-sm-inline-block{display:inline-block!important}.w3eden .d-sm-block{display:block!important}.w3eden .d-sm-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:768px){.w3eden .d-md-none{display:none!important}.w3eden .d-md-inline{display:inline!important}.w3eden .d-md-inline-block{display:inline-block!important}.w3eden .d-md-block{display:block!important}.w3eden .d-md-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:992px){.w3eden .d-lg-none{display:none!important}.w3eden .d-lg-inline{display:inline!important}.w3eden .d-lg-inline-block{display:inline-block!important}.w3eden .d-lg-block{display:block!important}.w3eden .d-lg-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media(min-width:1200px){.w3eden .d-xl-none{display:none!important}.w3eden .d-xl-inline{display:inline!important}.w3eden .d-xl-inline-block{display:inline-block!important}.w3eden .d-xl-block{display:block!important}.w3eden .d-xl-flex{display:-ms-flexbox!important;display:flex!important}.w3eden .d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.w3eden .flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.w3eden .flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.w3eden .flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.w3eden .flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.w3eden .flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.w3eden .flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.w3eden .flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.w3eden .flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.w3eden .flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.w3eden .flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.w3eden .flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.w3eden .flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.w3eden .justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.w3eden .justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.w3eden .justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.w3eden .justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.w3eden .justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.w3eden .align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.w3eden .align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.w3eden .align-items-center{-ms-flex-align:center!important;align-items:center!important}.w3eden .align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.w3eden .align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.w3eden .align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.w3eden .align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.w3eden .align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.w3eden .align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.w3eden .align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.w3eden .align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.w3eden .align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.w3eden .align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.w3eden .align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.w3eden .align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.w3eden .align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.w3eden .align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media(min-width:576px){.w3eden .justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}}@media(min-width:768px){}@media(min-width:992px){}@media(min-width:1200px){}.w3eden .float-left{float:left!important}.w3eden .float-right{float:right!important}.w3eden .position-relative{position:relative!important}.w3eden .position-absolute{position:absolute!important}.w3eden .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.w3eden .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.w3eden .w-100{width:100%!important}.w3eden .mw-100{max-width:100%!important}.w3eden .m-0{margin:0!important}.w3eden .mt-0,.w3eden .my-0{margin-top:0!important}.w3eden .mr-0,.w3eden .mx-0{margin-right:0!important}.w3eden .mb-0,.w3eden .my-0{margin-bottom:0!important}.w3eden .ml-0,.w3eden .mx-0{margin-left:0!important}.w3eden .m-1{margin:.25rem!important}.w3eden .mt-1,.w3eden .my-1{margin-top:.25rem!important}.w3eden .mr-1,.w3eden .mx-1{margin-right:.25rem!important}.w3eden .mb-1,.w3eden .my-1{margin-bottom:.25rem!important}.w3eden .ml-1,.w3eden .mx-1{margin-left:.25rem!important}.w3eden .m-2{margin:.5rem!important}.w3eden .mt-2,.w3eden .my-2{margin-top:.5rem!important}.w3eden .mr-2,.w3eden .mx-2{margin-right:.5rem!important}.w3eden .mb-2,.w3eden .my-2{margin-bottom:.5rem!important}.w3eden .ml-2,.w3eden .mx-2{margin-left:.5rem!important}.w3eden .m-3{margin:1rem!important}.w3eden .mt-3,.w3eden .my-3{margin-top:1rem!important}.w3eden .mr-3,.w3eden .mx-3{margin-right:1rem!important}.w3eden .mb-3,.w3eden .my-3{margin-bottom:1rem!important}.w3eden .ml-3,.w3eden .mx-3{margin-left:1rem!important}.w3eden .m-4{margin:1.5rem!important}.w3eden .mt-4,.w3eden .my-4{margin-top:1.5rem!important}.w3eden .mr-4,.w3eden .mx-4{margin-right:1.5rem!important}.w3eden .mb-4,.w3eden .my-4{margin-bottom:1.5rem!important}.w3eden .ml-4,.w3eden .mx-4{margin-left:1.5rem!important}.w3eden .m-5{margin:3rem!important}.w3eden .mt-5,.w3eden .my-5{margin-top:3rem!important}.w3eden .mr-5,.w3eden .mx-5{margin-right:3rem!important}.w3eden .mb-5,.w3eden .my-5{margin-bottom:3rem!important}.w3eden .ml-5,.w3eden .mx-5{margin-left:3rem!important}.w3eden .p-0{padding:0!important}.w3eden .pt-0,.w3eden .py-0{padding-top:0!important}.w3eden .pr-0,.w3eden .px-0{padding-right:0!important}.w3eden .pb-0,.w3eden .py-0{padding-bottom:0!important}.w3eden .pl-0,.w3eden .px-0{padding-left:0!important}.w3eden .p-1{padding:.25rem!important}.w3eden .pt-1,.w3eden .py-1{padding-top:.25rem!important}.w3eden .pr-1,.w3eden .px-1{padding-right:.25rem!important}.w3eden .pb-1,.w3eden .py-1{padding-bottom:.25rem!important}.w3eden .pl-1,.w3eden .px-1{padding-left:.25rem!important}.w3eden .p-2{padding:.5rem!important}.w3eden .pt-2,.w3eden .py-2{padding-top:.5rem!important}.w3eden .pr-2,.w3eden .px-2{padding-right:.5rem!important}.w3eden .pb-2,.w3eden .py-2{padding-bottom:.5rem!important}.w3eden .pl-2,.w3eden .px-2{padding-left:.5rem!important}.w3eden .p-3{padding:1rem!important}.w3eden .pt-3,.w3eden .py-3{padding-top:1rem!important}.w3eden .pr-3,.w3eden .px-3{padding-right:1rem!important}.w3eden .pb-3,.w3eden .py-3{padding-bottom:1rem!important}.w3eden .pl-3,.w3eden .px-3{padding-left:1rem!important}.w3eden .p-4{padding:1.5rem!important}.w3eden .pt-4,.w3eden .py-4{padding-top:1.5rem!important}.w3eden .pr-4,.w3eden .px-4{padding-right:1.5rem!important}.w3eden .pb-4,.w3eden .py-4{padding-bottom:1.5rem!important}.w3eden .pl-4,.w3eden .px-4{padding-left:1.5rem!important}.w3eden .p-5{padding:3rem!important}.w3eden .pt-5,.w3eden .py-5{padding-top:3rem!important}.w3eden .pr-5,.w3eden .px-5{padding-right:3rem!important}.w3eden .pb-5,.w3eden .py-5{padding-bottom:3rem!important}.w3eden .pl-5,.w3eden .px-5{padding-left:3rem!important}.w3eden .m-n1{margin:-0.25rem!important}.w3eden .mt-n1,.w3eden .my-n1{margin-top:-0.25rem!important}.w3eden .mr-n1,.w3eden .mx-n1{margin-right:-0.25rem!important}.w3eden .mb-n1,.w3eden .my-n1{margin-bottom:-0.25rem!important}.w3eden .ml-n1,.w3eden .mx-n1{margin-left:-0.25rem!important}.w3eden .m-n2{margin:-0.5rem!important}.w3eden .mt-n2,.w3eden .my-n2{margin-top:-0.5rem!important}.w3eden .mr-n2,.w3eden .mx-n2{margin-right:-0.5rem!important}.w3eden .mb-n2,.w3eden .my-n2{margin-bottom:-0.5rem!important}.w3eden .ml-n2,.w3eden .mx-n2{margin-left:-0.5rem!important}.w3eden .m-n3{margin:-1rem!important}.w3eden .mt-n3,.w3eden .my-n3{margin-top:-1rem!important}.w3eden .mr-n3,.w3eden .mx-n3{margin-right:-1rem!important}.w3eden .mb-n3,.w3eden .my-n3{margin-bottom:-1rem!important}.w3eden .ml-n3,.w3eden .mx-n3{margin-left:-1rem!important}.w3eden .m-n4{margin:-1.5rem!important}.w3eden .mt-n4,.w3eden .my-n4{margin-top:-1.5rem!important}.w3eden .mr-n4,.w3eden .mx-n4{margin-right:-1.5rem!important}.w3eden .mb-n4,.w3eden .my-n4{margin-bottom:-1.5rem!important}.w3eden .ml-n4,.w3eden .mx-n4{margin-left:-1.5rem!important}.w3eden .m-n5{margin:-3rem!important}.w3eden .mt-n5,.w3eden .my-n5{margin-top:-3rem!important}.w3eden .mr-n5,.w3eden .mx-n5{margin-right:-3rem!important}.w3eden .mb-n5,.w3eden .my-n5{margin-bottom:-3rem!important}.w3eden .ml-n5,.w3eden .mx-n5{margin-left:-3rem!important}.w3eden .m-auto{margin:auto!important}.w3eden .mt-auto,.w3eden .my-auto{margin-top:auto!important}.w3eden .mr-auto,.w3eden .mx-auto{margin-right:auto!important}.w3eden .mb-auto,.w3eden .my-auto{margin-bottom:auto!important}.w3eden .ml-auto,.w3eden .mx-auto{margin-left:auto!important}.w3eden .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.w3eden .text-left{text-align:left!important}.w3eden .text-right{text-align:right!important}.w3eden .text-center{text-align:center!important}.w3eden .text-uppercase{text-transform:uppercase!important}.w3eden .text-capitalize{text-transform:capitalize!important}.w3eden .text-white{color:#fff!important}.w3eden .text-primary{color:var(--color-primary)!important}.w3eden a.text-primary:hover,.w3eden a.text-primary:focus{color:var(--color-primary-hover)!important}.w3eden .text-secondary{color:var(--color-secondary)!important}.w3eden a.text-secondary:hover,.w3eden a.text-secondary:focus{color:var(--color-secondary-hover)!important}.w3eden .text-success{color:var(--color-success)!important}.w3eden a.text-success:hover,.w3eden a.text-success:focus{color:var(--color-success-active)!important}.w3eden .text-info{color:var(--color-info)!important}.w3eden a.text-info:hover,.w3eden a.text-info:focus{color:var(--color-info-active)!important}.w3eden .text-warning{color:var(--color-warning)!important}.w3eden a.text-warning:hover,.w3eden a.text-warning:focus{color:var(--color-warning-active)!important}.w3eden .text-danger{color:var(--color-danger)!important}.w3eden a.text-danger:hover,.w3eden a.text-danger:focus{color:var(--color-danger-active)!important}.w3eden .text-muted{color:var(--color-secondary)!important}.w3eden .visible{visibility:visible!important}@media print{.w3eden *,.w3eden *::before,.w3eden *::after{text-shadow:none!important;box-shadow:none!important}.w3eden a:not(.btn){text-decoration:underline}.w3eden abbr[title]::after{content:" (" attr(title) ")"}.w3eden pre{white-space:pre-wrap!important}.w3eden pre,.w3eden blockquote{border:1px solid #adb5bd;page-break-inside:avoid}.w3eden thead{display:table-header-group}.w3eden tr,.w3eden img{page-break-inside:avoid}.w3eden p,.w3eden h2,.w3eden h3{orphans:3;widows:3}.w3eden h2,.w3eden h3{page-break-after:avoid}.w3eden body{min-width:992px!important}.w3eden .container{min-width:992px!important}.w3eden .navbar{display:none}.w3eden .badge{border:1px solid #000}.w3eden .table{border-collapse:collapse!important}.w3eden .table td,.w3eden .table th{background-color:#fff!important}.w3eden .table-bordered th,.w3eden .table-bordered td{border:1px solid #dee2e6!important}}
 
assets/bootstrap/css/bootstrap.min.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","bootstrap.css","../../scss/mixins/_hover.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/mixins/_border-radius.scss","../../scss/_code.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_forms.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_forms.scss","../../scss/mixins/_gradients.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/mixins/_nav-divider.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/mixins/_badge.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/utilities/_align.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_background.scss","../../scss/utilities/_borders.scss","../../scss/mixins/_clearfix.scss","../../scss/utilities/_display.scss","../../scss/utilities/_embed.scss","../../scss/utilities/_flex.scss","../../scss/utilities/_float.scss","../../scss/mixins/_float.scss","../../scss/utilities/_position.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_sizing.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss","../../scss/mixins/_visibility.scss","../../scss/_print.scss"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Bootstrap v4.0.0 (https://getbootstrap.com)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"utilities\";\n@import \"print\";\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n// we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -ms-text-size-adjust: 100%; // 4\n -ms-overflow-style: scrollbar; // 5\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0); // 6\n}\n\n// IE10+ doesn't honor `<meta name=\"viewport\">` in some cases.\n@at-root {\n @-ms-viewport {\n width: device-width;\n }\n}\n\n// stylelint-disable selector-list-comma-newline-after\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use the\n// the `inherit` value on things like `<th>` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n font-size: $font-size-base;\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `<p>`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\n// stylelint-disable font-family-no-duplicate-names\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; // Correct the inheritance and scaling of font size in all browsers.\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n// stylelint-enable font-family-no-duplicate-names\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg:not(:root) {\n overflow: hidden; // Hide the overflow in IE\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $text-muted;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `<td>` alignment by inheriting from the `<body>`, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: .5rem;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\nhtml [type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `<div>`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","/*!\n * Bootstrap v4.0.0 (https://getbootstrap.com)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n:root {\n --blue: #007bff;\n --indigo: #6610f2;\n --purple: #6f42c1;\n --pink: #e83e8c;\n --red: #dc3545;\n --orange: #fd7e14;\n --yellow: #ffc107;\n --green: #28a745;\n --teal: #20c997;\n --cyan: #17a2b8;\n --white: #fff;\n --gray: #6c757d;\n --gray-dark: #343a40;\n --primary: #007bff;\n --secondary: #6c757d;\n --success: #28a745;\n --info: #17a2b8;\n --warning: #ffc107;\n --danger: #dc3545;\n --light: #f8f9fa;\n --dark: #343a40;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent;\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: .5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-family: inherit;\n font-weight: 500;\n line-height: 1.2;\n color: inherit;\n}\n\nh1, .h1 {\n font-size: 2.5rem;\n}\n\nh2, .h2 {\n font-size: 2rem;\n}\n\nh3, .h3 {\n font-size: 1.75rem;\n}\n\nh4, .h4 {\n font-size: 1.5rem;\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1);\n}\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400;\n}\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #6c757d;\n}\n\n.blockquote-footer::before {\n content: \"\\2014 \\00A0\";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 90%;\n color: #6c757d;\n}\n\ncode,\nkbd,\npre,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-break: break-word;\n}\n\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\n\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n}\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529;\n}\n\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n}\n\n.col-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n}\n\n.order-last {\n -webkit-box-ordinal-group: 14;\n -ms-flex-order: 13;\n order: 13;\n}\n\n.order-0 {\n -webkit-box-ordinal-group: 1;\n -ms-flex-order: 0;\n order: 0;\n}\n\n.order-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n}\n\n.order-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n}\n\n.order-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n}\n\n.order-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n}\n\n.order-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n}\n\n.order-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n}\n\n.order-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n}\n\n.order-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n}\n\n.order-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n}\n\n.order-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n}\n\n.order-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n}\n\n.order-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-sm-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n }\n .order-sm-last {\n -webkit-box-ordinal-group: 14;\n -ms-flex-order: 13;\n order: 13;\n }\n .order-sm-0 {\n -webkit-box-ordinal-group: 1;\n -ms-flex-order: 0;\n order: 0;\n }\n .order-sm-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n }\n .order-sm-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n }\n .order-sm-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n }\n .order-sm-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n }\n .order-sm-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n }\n .order-sm-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n }\n .order-sm-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n }\n .order-sm-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n }\n .order-sm-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n }\n .order-sm-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n }\n .order-sm-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n }\n .order-sm-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-md-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n }\n .order-md-last {\n -webkit-box-ordinal-group: 14;\n -ms-flex-order: 13;\n order: 13;\n }\n .order-md-0 {\n -webkit-box-ordinal-group: 1;\n -ms-flex-order: 0;\n order: 0;\n }\n .order-md-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n }\n .order-md-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n }\n .order-md-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n }\n .order-md-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n }\n .order-md-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n }\n .order-md-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n }\n .order-md-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n }\n .order-md-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n }\n .order-md-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n }\n .order-md-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n }\n .order-md-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n }\n .order-md-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-lg-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n }\n .order-lg-last {\n -webkit-box-ordinal-group: 14;\n -ms-flex-order: 13;\n order: 13;\n }\n .order-lg-0 {\n -webkit-box-ordinal-group: 1;\n -ms-flex-order: 0;\n order: 0;\n }\n .order-lg-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n }\n .order-lg-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n }\n .order-lg-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n }\n .order-lg-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n }\n .order-lg-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n }\n .order-lg-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n }\n .order-lg-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n }\n .order-lg-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n }\n .order-lg-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n }\n .order-lg-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n }\n .order-lg-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n }\n .order-lg-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-xl-1 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 8.333333%;\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 16.666667%;\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 33.333333%;\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 41.666667%;\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 58.333333%;\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 66.666667%;\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 75%;\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 83.333333%;\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 91.666667%;\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 100%;\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n -webkit-box-ordinal-group: 0;\n -ms-flex-order: -1;\n order: -1;\n }\n .order-xl-last {\n -webkit-box-ordinal-group: 14;\n -ms-flex-order: 13;\n order: 13;\n }\n .order-xl-0 {\n -webkit-box-ordinal-group: 1;\n -ms-flex-order: 0;\n order: 0;\n }\n .order-xl-1 {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n }\n .order-xl-2 {\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n }\n .order-xl-3 {\n -webkit-box-ordinal-group: 4;\n -ms-flex-order: 3;\n order: 3;\n }\n .order-xl-4 {\n -webkit-box-ordinal-group: 5;\n -ms-flex-order: 4;\n order: 4;\n }\n .order-xl-5 {\n -webkit-box-ordinal-group: 6;\n -ms-flex-order: 5;\n order: 5;\n }\n .order-xl-6 {\n -webkit-box-ordinal-group: 7;\n -ms-flex-order: 6;\n order: 6;\n }\n .order-xl-7 {\n -webkit-box-ordinal-group: 8;\n -ms-flex-order: 7;\n order: 7;\n }\n .order-xl-8 {\n -webkit-box-ordinal-group: 9;\n -ms-flex-order: 8;\n order: 8;\n }\n .order-xl-9 {\n -webkit-box-ordinal-group: 10;\n -ms-flex-order: 9;\n order: 9;\n }\n .order-xl-10 {\n -webkit-box-ordinal-group: 11;\n -ms-flex-order: 10;\n order: 10;\n }\n .order-xl-11 {\n -webkit-box-ordinal-group: 12;\n -ms-flex-order: 11;\n order: 11;\n }\n .order-xl-12 {\n -webkit-box-ordinal-group: 13;\n -ms-flex-order: 12;\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 1rem;\n background-color: transparent;\n}\n\n.table th,\n.table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #dee2e6;\n}\n\n.table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #dee2e6;\n}\n\n.table tbody + tbody {\n border-top: 2px solid #dee2e6;\n}\n\n.table .table {\n background-color: #fff;\n}\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem;\n}\n\n.table-bordered {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered th,\n.table-bordered td {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered thead th,\n.table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.table-hover tbody tr:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #b8daff;\n}\n\n.table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.table-hover .table-primary:hover > td,\n.table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #d6d8db;\n}\n\n.table-hover .table-secondary:hover {\n background-color: #c8cbcf;\n}\n\n.table-hover .table-secondary:hover > td,\n.table-hover .table-secondary:hover > th {\n background-color: #c8cbcf;\n}\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c3e6cb;\n}\n\n.table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #bee5eb;\n}\n\n.table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffeeba;\n}\n\n.table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.table-hover .table-warning:hover > td,\n.table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #f5c6cb;\n}\n\n.table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.table-hover .table-danger:hover > td,\n.table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe;\n}\n\n.table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.table-hover .table-light:hover > td,\n.table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c6c8ca;\n}\n\n.table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.table-hover .table-dark:hover > td,\n.table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover > td,\n.table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table .thead-dark th {\n color: #fff;\n background-color: #212529;\n border-color: #32383e;\n}\n\n.table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.table-dark {\n color: #fff;\n background-color: #212529;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th {\n border-color: #32383e;\n}\n\n.table-dark.table-bordered {\n border: 0;\n}\n\n.table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.table-dark.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-sm > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-md > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-lg > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-xl > .table-bordered {\n border: 0;\n }\n}\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n}\n\n.table-responsive > .table-bordered {\n border: 0;\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n\n.form-control:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.form-control::-webkit-input-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control::-moz-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control:-ms-input-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control::-ms-input-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control::placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n\nselect.form-control:not([size]):not([multiple]) {\n height: calc(2.25rem + 2px);\n}\n\nselect.form-control:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n margin-bottom: 0;\n line-height: 1.5;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n\n.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,\n.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,\n.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,\n.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,\n.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,\n.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,\n.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,\n.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,\n.input-group-lg > .input-group-append > .form-control-plaintext.btn {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm, .input-group-sm > .form-control,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\nselect.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),\n.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),\n.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),\n.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),\n.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {\n height: calc(1.8125rem + 2px);\n}\n\n.form-control-lg, .input-group-lg > .form-control,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\nselect.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),\n.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),\n.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),\n.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),\n.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {\n height: calc(2.875rem + 2px);\n}\n\n.form-group {\n margin-bottom: 1rem;\n}\n\n.form-text {\n display: block;\n margin-top: 0.25rem;\n}\n\n.form-row {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px;\n}\n\n.form-row > .col,\n.form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px;\n}\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem;\n}\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem;\n}\n\n.form-check-input:disabled ~ .form-check-label {\n color: #6c757d;\n}\n\n.form-check-label {\n margin-bottom: 0;\n}\n\n.form-check-inline {\n display: -webkit-inline-box;\n display: -ms-inline-flexbox;\n display: inline-flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem;\n}\n\n.form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: .5rem;\n margin-top: .1rem;\n font-size: .875rem;\n line-height: 1;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.8);\n border-radius: .2rem;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid, .was-validated\n.custom-select:valid,\n.custom-select.is-valid {\n border-color: #28a745;\n}\n\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated\n.custom-select:valid:focus,\n.custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .form-control:valid ~ .valid-feedback,\n.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,\n.form-control.is-valid ~ .valid-tooltip, .was-validated\n.custom-select:valid ~ .valid-feedback,\n.was-validated\n.custom-select:valid ~ .valid-tooltip,\n.custom-select.is-valid ~ .valid-feedback,\n.custom-select.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745;\n}\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n background-color: #71dd8a;\n}\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n background-color: #34ce57;\n}\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: .5rem;\n margin-top: .1rem;\n font-size: .875rem;\n line-height: 1;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.8);\n border-radius: .2rem;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated\n.custom-select:invalid,\n.custom-select.is-invalid {\n border-color: #dc3545;\n}\n\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated\n.custom-select:invalid:focus,\n.custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-control:invalid ~ .invalid-feedback,\n.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,\n.form-control.is-invalid ~ .invalid-tooltip, .was-validated\n.custom-select:invalid ~ .invalid-feedback,\n.was-validated\n.custom-select:invalid ~ .invalid-tooltip,\n.custom-select.is-invalid ~ .invalid-feedback,\n.custom-select.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n background-color: #efa2a9;\n}\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n background-color: #e4606d;\n}\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.form-inline {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n}\n\n.form-inline .form-check {\n width: 100%;\n}\n\n@media (min-width: 576px) {\n .form-inline label {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n margin-bottom: 0;\n }\n .form-inline .form-group {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 0;\n -ms-flex: 0 0 auto;\n flex: 0 0 auto;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n margin-bottom: 0;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-plaintext {\n display: inline-block;\n }\n .form-inline .input-group {\n width: auto;\n }\n .form-inline .form-check {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n width: auto;\n padding-left: 0;\n }\n .form-inline .form-check-input {\n position: relative;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0;\n }\n .form-inline .custom-control {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n }\n .form-inline .custom-control-label {\n margin-bottom: 0;\n }\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n.btn:hover, .btn:focus {\n text-decoration: none;\n}\n\n.btn:focus, .btn.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.btn.disabled, .btn:disabled {\n opacity: 0.65;\n}\n\n.btn:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {\n background-image: none;\n}\n\na.btn.disabled,\nfieldset:disabled a.btn {\n pointer-events: none;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:hover {\n color: #fff;\n background-color: #0069d9;\n border-color: #0062cc;\n}\n\n.btn-primary:focus, .btn-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-primary.disabled, .btn-primary:disabled {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,\n.show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0062cc;\n border-color: #005cbf;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:hover {\n color: #fff;\n background-color: #5a6268;\n border-color: #545b62;\n}\n\n.btn-secondary:focus, .btn-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-secondary.disabled, .btn-secondary:disabled {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #545b62;\n border-color: #4e555b;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-success {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:hover {\n color: #fff;\n background-color: #218838;\n border-color: #1e7e34;\n}\n\n.btn-success:focus, .btn-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-success.disabled, .btn-success:disabled {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n.show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #1e7e34;\n border-color: #1c7430;\n}\n\n.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-info {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:hover {\n color: #fff;\n background-color: #138496;\n border-color: #117a8b;\n}\n\n.btn-info:focus, .btn-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-info.disabled, .btn-info:disabled {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,\n.show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #117a8b;\n border-color: #10707f;\n}\n\n.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-warning {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:hover {\n color: #212529;\n background-color: #e0a800;\n border-color: #d39e00;\n}\n\n.btn-warning:focus, .btn-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-warning.disabled, .btn-warning:disabled {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n.show > .btn-warning.dropdown-toggle {\n color: #212529;\n background-color: #d39e00;\n border-color: #c69500;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #c82333;\n border-color: #bd2130;\n}\n\n.btn-danger:focus, .btn-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-danger.disabled, .btn-danger:disabled {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n.show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #bd2130;\n border-color: #b21f2d;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-light {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:hover {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5;\n}\n\n.btn-light:focus, .btn-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-light.disabled, .btn-light:disabled {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n.show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #dae0e5;\n border-color: #d3d9df;\n}\n\n.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-dark {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:hover {\n color: #fff;\n background-color: #23272b;\n border-color: #1d2124;\n}\n\n.btn-dark:focus, .btn-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-dark.disabled, .btn-dark:disabled {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n.show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1d2124;\n border-color: #171a1d;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-primary {\n color: #007bff;\n background-color: transparent;\n background-image: none;\n border-color: #007bff;\n}\n\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:focus, .btn-outline-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-primary.disabled, .btn-outline-primary:disabled {\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-primary.dropdown-toggle {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-secondary {\n color: #6c757d;\n background-color: transparent;\n background-image: none;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-secondary.dropdown-toggle {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-success {\n color: #28a745;\n background-color: transparent;\n background-image: none;\n border-color: #28a745;\n}\n\n.btn-outline-success:hover {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #28a745;\n background-color: transparent;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n.show > .btn-outline-success.dropdown-toggle {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-info {\n color: #17a2b8;\n background-color: transparent;\n background-image: none;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:hover {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #17a2b8;\n background-color: transparent;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n.show > .btn-outline-info.dropdown-toggle {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-warning {\n color: #ffc107;\n background-color: transparent;\n background-image: none;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:hover {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n.show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-danger {\n color: #dc3545;\n background-color: transparent;\n background-image: none;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n.show > .btn-outline-danger.dropdown-toggle {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n background-color: transparent;\n background-image: none;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:hover {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n.show > .btn-outline-light.dropdown-toggle {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-dark {\n color: #343a40;\n background-color: transparent;\n background-image: none;\n border-color: #343a40;\n}\n\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #343a40;\n background-color: transparent;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n.show > .btn-outline-dark.dropdown-toggle {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-link:hover {\n color: #0056b3;\n text-decoration: underline;\n background-color: transparent;\n border-color: transparent;\n}\n\n.btn-link:focus, .btn-link.focus {\n text-decoration: underline;\n border-color: transparent;\n box-shadow: none;\n}\n\n.btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n.btn-block + .btn-block {\n margin-top: 0.5rem;\n}\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n\n.fade {\n opacity: 0;\n transition: opacity 0.15s linear;\n}\n\n.fade.show {\n opacity: 1;\n}\n\n.collapse {\n display: none;\n}\n\n.collapse.show {\n display: block;\n}\n\ntr.collapse.show {\n display: table-row;\n}\n\ntbody.collapse.show {\n display: table-row-group;\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n\n.dropup,\n.dropdown {\n position: relative;\n}\n\n.dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.dropup .dropdown-menu {\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-menu {\n margin-top: 0;\n margin-left: 0.125rem;\n}\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropleft .dropdown-menu {\n margin-top: 0;\n margin-right: 0.125rem;\n}\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n\n.dropleft .dropdown-toggle::after {\n display: none;\n}\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #e9ecef;\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n\n.dropdown-item:hover, .dropdown-item:focus {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff;\n}\n\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #6c757d;\n white-space: nowrap;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: -webkit-inline-box;\n display: -ms-inline-flexbox;\n display: inline-flex;\n vertical-align: middle;\n}\n\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n -webkit-box-flex: 0;\n -ms-flex: 0 1 auto;\n flex: 0 1 auto;\n}\n\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover {\n z-index: 1;\n}\n\n.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group,\n.btn-group-vertical .btn + .btn,\n.btn-group-vertical .btn + .btn-group,\n.btn-group-vertical .btn-group + .btn,\n.btn-group-vertical .btn-group + .btn-group {\n margin-left: -1px;\n}\n\n.btn-toolbar {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -webkit-box-pack: start;\n -ms-flex-pack: start;\n justify-content: flex-start;\n}\n\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n\n.dropdown-toggle-split::after {\n margin-left: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n -webkit-box-align: start;\n -ms-flex-align: start;\n align-items: flex-start;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n}\n\n.btn-group-vertical .btn,\n.btn-group-vertical .btn-group {\n width: 100%;\n}\n\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n margin-bottom: 0;\n}\n\n.btn-group-toggle > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn input[type=\"checkbox\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n\n.input-group {\n position: relative;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -webkit-box-align: stretch;\n -ms-flex-align: stretch;\n align-items: stretch;\n width: 100%;\n}\n\n.input-group > .form-control,\n.input-group > .custom-select,\n.input-group > .custom-file {\n position: relative;\n -webkit-box-flex: 1;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n width: 1%;\n margin-bottom: 0;\n}\n\n.input-group > .form-control:focus,\n.input-group > .custom-select:focus,\n.input-group > .custom-file:focus {\n z-index: 3;\n}\n\n.input-group > .form-control + .form-control,\n.input-group > .form-control + .custom-select,\n.input-group > .form-control + .custom-file,\n.input-group > .custom-select + .form-control,\n.input-group > .custom-select + .custom-select,\n.input-group > .custom-select + .custom-file,\n.input-group > .custom-file + .form-control,\n.input-group > .custom-file + .custom-select,\n.input-group > .custom-file + .custom-file {\n margin-left: -1px;\n}\n\n.input-group > .form-control:not(:last-child),\n.input-group > .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .form-control:not(:first-child),\n.input-group > .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group > .custom-file {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n}\n\n.input-group > .custom-file:not(:last-child) .custom-file-label,\n.input-group > .custom-file:not(:last-child) .custom-file-label::before {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .custom-file:not(:first-child) .custom-file-label,\n.input-group > .custom-file:not(:first-child) .custom-file-label::before {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group-prepend,\n.input-group-append {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n}\n\n.input-group-prepend .btn,\n.input-group-append .btn {\n position: relative;\n z-index: 2;\n}\n\n.input-group-prepend .btn + .btn,\n.input-group-prepend .btn + .input-group-text,\n.input-group-prepend .input-group-text + .input-group-text,\n.input-group-prepend .input-group-text + .btn,\n.input-group-append .btn + .btn,\n.input-group-append .btn + .input-group-text,\n.input-group-append .input-group-text + .input-group-text,\n.input-group-append .input-group-text + .btn {\n margin-left: -1px;\n}\n\n.input-group-prepend {\n margin-right: -1px;\n}\n\n.input-group-append {\n margin-left: -1px;\n}\n\n.input-group-text {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n padding: 0.375rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-text input[type=\"radio\"],\n.input-group-text input[type=\"checkbox\"] {\n margin-top: 0;\n}\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.custom-control {\n position: relative;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem;\n}\n\n.custom-control-inline {\n display: -webkit-inline-box;\n display: -ms-inline-flexbox;\n display: inline-flex;\n margin-right: 1rem;\n}\n\n.custom-control-input {\n position: absolute;\n z-index: -1;\n opacity: 0;\n}\n\n.custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n background-color: #007bff;\n}\n\n.custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-control-input:active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff;\n}\n\n.custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d;\n}\n\n.custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef;\n}\n\n.custom-control-label {\n margin-bottom: 0;\n}\n\n.custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: 0;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n background-color: #dee2e6;\n}\n\n.custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: 0;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 50% 50%;\n}\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E\");\n}\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: #fff url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right 0.75rem center;\n background-size: 8px 10px;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n\n.custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);\n}\n\n.custom-select:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none;\n}\n\n.custom-select:disabled {\n color: #6c757d;\n background-color: #e9ecef;\n}\n\n.custom-select::-ms-expand {\n opacity: 0;\n}\n\n.custom-select-sm {\n height: calc(1.8125rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 75%;\n}\n\n.custom-select-lg {\n height: calc(2.875rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 125%;\n}\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin-bottom: 0;\n}\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin: 0;\n opacity: 0;\n}\n\n.custom-file-input:focus ~ .custom-file-control {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-file-input:focus ~ .custom-file-control::before {\n border-color: #80bdff;\n}\n\n.custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\";\n}\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: calc(calc(2.25rem + 2px) - 1px * 2);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: 1px solid #ced4da;\n border-radius: 0 0.25rem 0.25rem 0;\n}\n\n.nav {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n}\n\n.nav-link:hover, .nav-link:focus {\n text-decoration: none;\n}\n\n.nav-link.disabled {\n color: #6c757d;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n\n.nav-tabs .nav-item {\n margin-bottom: -1px;\n}\n\n.nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6;\n}\n\n.nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent;\n}\n\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n border-radius: 0.25rem;\n}\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff;\n}\n\n.nav-fill .nav-item {\n -webkit-box-flex: 1;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified .nav-item {\n -ms-flex-preferred-size: 0;\n flex-basis: 0;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n text-align: center;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding: 0.5rem 1rem;\n}\n\n.navbar > .container,\n.navbar > .container-fluid {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n}\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap;\n}\n\n.navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none;\n}\n\n.navbar-nav {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-nav .dropdown-menu {\n position: static;\n float: none;\n}\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n -ms-flex-preferred-size: 100%;\n flex-basis: 100%;\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.navbar-toggler:hover, .navbar-toggler:focus {\n text-decoration: none;\n}\n\n.navbar-toggler:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%;\n}\n\n@media (max-width: 575.98px) {\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -webkit-box-pack: start;\n -ms-flex-pack: start;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n }\n .navbar-expand-sm .navbar-collapse {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n .navbar-expand-sm .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 767.98px) {\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -webkit-box-pack: start;\n -ms-flex-pack: start;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n }\n .navbar-expand-md .navbar-collapse {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n .navbar-expand-md .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 991.98px) {\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -webkit-box-pack: start;\n -ms-flex-pack: start;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n }\n .navbar-expand-lg .navbar-collapse {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n .navbar-expand-lg .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 1199.98px) {\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -webkit-box-pack: start;\n -ms-flex-pack: start;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n }\n .navbar-expand-xl .navbar-collapse {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n .navbar-expand-xl .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n.navbar-expand {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row nowrap;\n flex-flow: row nowrap;\n -webkit-box-pack: start;\n -ms-flex-pack: start;\n justify-content: flex-start;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-expand .navbar-nav {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n}\n\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n -ms-flex-wrap: nowrap;\n flex-wrap: nowrap;\n}\n\n.navbar-expand .navbar-collapse {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n -ms-flex-preferred-size: auto;\n flex-basis: auto;\n}\n\n.navbar-expand .navbar-toggler {\n display: none;\n}\n\n.navbar-expand .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7);\n}\n\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.5);\n border-color: rgba(0, 0, 0, 0.1);\n}\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75);\n}\n\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1);\n}\n\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-text a {\n color: #fff;\n}\n\n.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n\n.card > .list-group:first-child .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card > .list-group:last-child .list-group-item:last-child {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card-body {\n -webkit-box-flex: 1;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n padding: 1.25rem;\n}\n\n.card-title {\n margin-bottom: 0.75rem;\n}\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link:hover {\n text-decoration: none;\n}\n\n.card-link + .card-link {\n margin-left: 1.25rem;\n}\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-header + .list-group .list-group-item:first-child {\n border-top: 0;\n}\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem;\n}\n\n.card-img {\n width: 100%;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img-top {\n width: 100%;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img-bottom {\n width: 100%;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-deck {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n}\n\n.card-deck .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-deck {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px;\n }\n .card-deck .card {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -ms-flex: 1 0 0%;\n flex: 1 0 0%;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px;\n }\n}\n\n.card-group {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n}\n\n.card-group > .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-group {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n }\n .card-group > .card {\n -webkit-box-flex: 1;\n -ms-flex: 1 0 0%;\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:first-child {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-top,\n .card-group > .card:first-child .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-bottom,\n .card-group > .card:first-child .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:last-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-top,\n .card-group > .card:last-child .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-bottom,\n .card-group > .card:last-child .card-footer {\n border-bottom-left-radius: 0;\n }\n .card-group > .card:only-child {\n border-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-top,\n .card-group > .card:only-child .card-header {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-bottom,\n .card-group > .card:only-child .card-footer {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {\n border-radius: 0;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {\n border-radius: 0;\n }\n}\n\n.card-columns .card {\n margin-bottom: 0.75rem;\n}\n\n@media (min-width: 576px) {\n .card-columns {\n -webkit-column-count: 3;\n -moz-column-count: 3;\n column-count: 3;\n -webkit-column-gap: 1.25rem;\n -moz-column-gap: 1.25rem;\n column-gap: 1.25rem;\n }\n .card-columns .card {\n display: inline-block;\n width: 100%;\n }\n}\n\n.breadcrumb {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n padding: 0.75rem 1rem;\n margin-bottom: 1rem;\n list-style: none;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n color: #6c757d;\n content: \"/\";\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline;\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none;\n}\n\n.breadcrumb-item.active {\n color: #6c757d;\n}\n\n.pagination {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem;\n}\n\n.page-link {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color: #fff;\n border: 1px solid #dee2e6;\n}\n\n.page-link:hover {\n color: #0056b3;\n text-decoration: none;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.page-link:focus {\n z-index: 2;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.page-link:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.page-item:first-child .page-link {\n margin-left: 0;\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.page-item.active .page-link {\n z-index: 1;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.page-item.disabled .page-link {\n color: #6c757d;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #dee2e6;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem;\n}\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.25em 0.4em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n}\n\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.badge-pill {\n padding-right: 0.6em;\n padding-left: 0.6em;\n border-radius: 10rem;\n}\n\n.badge-primary {\n color: #fff;\n background-color: #007bff;\n}\n\n.badge-primary[href]:hover, .badge-primary[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #0062cc;\n}\n\n.badge-secondary {\n color: #fff;\n background-color: #6c757d;\n}\n\n.badge-secondary[href]:hover, .badge-secondary[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #545b62;\n}\n\n.badge-success {\n color: #fff;\n background-color: #28a745;\n}\n\n.badge-success[href]:hover, .badge-success[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #1e7e34;\n}\n\n.badge-info {\n color: #fff;\n background-color: #17a2b8;\n}\n\n.badge-info[href]:hover, .badge-info[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #117a8b;\n}\n\n.badge-warning {\n color: #212529;\n background-color: #ffc107;\n}\n\n.badge-warning[href]:hover, .badge-warning[href]:focus {\n color: #212529;\n text-decoration: none;\n background-color: #d39e00;\n}\n\n.badge-danger {\n color: #fff;\n background-color: #dc3545;\n}\n\n.badge-danger[href]:hover, .badge-danger[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #bd2130;\n}\n\n.badge-light {\n color: #212529;\n background-color: #f8f9fa;\n}\n\n.badge-light[href]:hover, .badge-light[href]:focus {\n color: #212529;\n text-decoration: none;\n background-color: #dae0e5;\n}\n\n.badge-dark {\n color: #fff;\n background-color: #343a40;\n}\n\n.badge-dark[href]:hover, .badge-dark[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #1d2124;\n}\n\n.jumbotron {\n padding: 2rem 1rem;\n margin-bottom: 2rem;\n background-color: #e9ecef;\n border-radius: 0.3rem;\n}\n\n@media (min-width: 576px) {\n .jumbotron {\n padding: 4rem 2rem;\n }\n}\n\n.jumbotron-fluid {\n padding-right: 0;\n padding-left: 0;\n border-radius: 0;\n}\n\n.alert {\n position: relative;\n padding: 0.75rem 1.25rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 4rem;\n}\n\n.alert-dismissible .close {\n position: absolute;\n top: 0;\n right: 0;\n padding: 0.75rem 1.25rem;\n color: inherit;\n}\n\n.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n\n.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.alert-primary .alert-link {\n color: #002752;\n}\n\n.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n}\n\n.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.alert-secondary .alert-link {\n color: #202326;\n}\n\n.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n}\n\n.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.alert-success .alert-link {\n color: #0b2e13;\n}\n\n.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n}\n\n.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.alert-info .alert-link {\n color: #062c33;\n}\n\n.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n}\n\n.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.alert-warning .alert-link {\n color: #533f03;\n}\n\n.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n\n.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.alert-danger .alert-link {\n color: #491217;\n}\n\n.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n}\n\n.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.alert-light .alert-link {\n color: #686868;\n}\n\n.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n}\n\n.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n.alert-dark .alert-link {\n color: #040505;\n}\n\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0;\n }\n to {\n background-position: 0 0;\n }\n}\n\n@keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0;\n }\n to {\n background-position: 0 0;\n }\n}\n\n.progress {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n color: #fff;\n text-align: center;\n background-color: #007bff;\n transition: width 0.6s ease;\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n -webkit-animation: progress-bar-stripes 1s linear infinite;\n animation: progress-bar-stripes 1s linear infinite;\n}\n\n.media {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -ms-flex-align: start;\n align-items: flex-start;\n}\n\n.media-body {\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n\n.list-group {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit;\n}\n\n.list-group-item-action:hover, .list-group-item-action:focus {\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.75rem 1.25rem;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.list-group-item:hover, .list-group-item:focus {\n z-index: 1;\n text-decoration: none;\n}\n\n.list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n background-color: #fff;\n}\n\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.list-group-flush .list-group-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n\n.list-group-flush:first-child .list-group-item:first-child {\n border-top: 0;\n}\n\n.list-group-flush:last-child .list-group-item:last-child {\n border-bottom: 0;\n}\n\n.list-group-item-primary {\n color: #004085;\n background-color: #b8daff;\n}\n\n.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #004085;\n background-color: #9fcdff;\n}\n\n.list-group-item-primary.list-group-item-action.active {\n color: #fff;\n background-color: #004085;\n border-color: #004085;\n}\n\n.list-group-item-secondary {\n color: #383d41;\n background-color: #d6d8db;\n}\n\n.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #383d41;\n background-color: #c8cbcf;\n}\n\n.list-group-item-secondary.list-group-item-action.active {\n color: #fff;\n background-color: #383d41;\n border-color: #383d41;\n}\n\n.list-group-item-success {\n color: #155724;\n background-color: #c3e6cb;\n}\n\n.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #155724;\n background-color: #b1dfbb;\n}\n\n.list-group-item-success.list-group-item-action.active {\n color: #fff;\n background-color: #155724;\n border-color: #155724;\n}\n\n.list-group-item-info {\n color: #0c5460;\n background-color: #bee5eb;\n}\n\n.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #0c5460;\n background-color: #abdde5;\n}\n\n.list-group-item-info.list-group-item-action.active {\n color: #fff;\n background-color: #0c5460;\n border-color: #0c5460;\n}\n\n.list-group-item-warning {\n color: #856404;\n background-color: #ffeeba;\n}\n\n.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #856404;\n background-color: #ffe8a1;\n}\n\n.list-group-item-warning.list-group-item-action.active {\n color: #fff;\n background-color: #856404;\n border-color: #856404;\n}\n\n.list-group-item-danger {\n color: #721c24;\n background-color: #f5c6cb;\n}\n\n.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #721c24;\n background-color: #f1b0b7;\n}\n\n.list-group-item-danger.list-group-item-action.active {\n color: #fff;\n background-color: #721c24;\n border-color: #721c24;\n}\n\n.list-group-item-light {\n color: #818182;\n background-color: #fdfdfe;\n}\n\n.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #818182;\n background-color: #ececf6;\n}\n\n.list-group-item-light.list-group-item-action.active {\n color: #fff;\n background-color: #818182;\n border-color: #818182;\n}\n\n.list-group-item-dark {\n color: #1b1e21;\n background-color: #c6c8ca;\n}\n\n.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #1b1e21;\n background-color: #b9bbbe;\n}\n\n.list-group-item-dark.list-group-item-action.active {\n color: #fff;\n background-color: #1b1e21;\n border-color: #1b1e21;\n}\n\n.close {\n float: right;\n font-size: 1.5rem;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: .5;\n}\n\n.close:hover, .close:focus {\n color: #000;\n text-decoration: none;\n opacity: .75;\n}\n\n.close:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\nbutton.close {\n padding: 0;\n background-color: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n\n.modal-open {\n overflow: hidden;\n}\n\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n display: none;\n overflow: hidden;\n outline: 0;\n}\n\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n\n.modal.fade .modal-dialog {\n transition: -webkit-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;\n -webkit-transform: translate(0, -25%);\n transform: translate(0, -25%);\n}\n\n.modal.show .modal-dialog {\n -webkit-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n\n.modal-dialog-centered {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n min-height: calc(100% - (0.5rem * 2));\n}\n\n.modal-content {\n position: relative;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n\n.modal-backdrop.fade {\n opacity: 0;\n}\n\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: start;\n -ms-flex-align: start;\n align-items: flex-start;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding: 1rem;\n border-bottom: 1px solid #e9ecef;\n border-top-left-radius: 0.3rem;\n border-top-right-radius: 0.3rem;\n}\n\n.modal-header .close {\n padding: 1rem;\n margin: -1rem -1rem -1rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n -webkit-box-flex: 1;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: end;\n -ms-flex-pack: end;\n justify-content: flex-end;\n padding: 1rem;\n border-top: 1px solid #e9ecef;\n}\n\n.modal-footer > :not(:first-child) {\n margin-left: .25rem;\n}\n\n.modal-footer > :not(:last-child) {\n margin-right: .25rem;\n}\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n .modal-dialog-centered {\n min-height: calc(100% - (1.75rem * 2));\n }\n .modal-sm {\n max-width: 300px;\n }\n}\n\n@media (min-width: 992px) {\n .modal-lg {\n max-width: 800px;\n }\n}\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n\n.tooltip.show {\n opacity: 0.9;\n}\n\n.tooltip .arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n\n.tooltip .arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n bottom: 0;\n}\n\n.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n top: 0;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n right: 0;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n top: 0;\n}\n\n.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n bottom: 0;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n left: 0;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n}\n\n.popover .arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n margin: 0 0.3rem;\n}\n\n.popover .arrow::before, .popover .arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n margin-bottom: 0.5rem;\n}\n\n.bs-popover-top .arrow, .bs-popover-auto[x-placement^=\"top\"] .arrow {\n bottom: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before,\n.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0;\n}\n\n.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before {\n bottom: 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n bottom: 1px;\n border-top-color: #fff;\n}\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n margin-left: 0.5rem;\n}\n\n.bs-popover-right .arrow, .bs-popover-auto[x-placement^=\"right\"] .arrow {\n left: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before,\n.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0.5rem 0;\n}\n\n.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before {\n left: 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n left: 1px;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n margin-top: 0.5rem;\n}\n\n.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=\"bottom\"] .arrow {\n top: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before,\n.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n border-width: 0 0.5rem 0.5rem 0.5rem;\n}\n\n.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before {\n top: 0;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n top: 1px;\n border-bottom-color: #fff;\n}\n\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f7f7f7;\n}\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n margin-right: 0.5rem;\n}\n\n.bs-popover-left .arrow, .bs-popover-auto[x-placement^=\"left\"] .arrow {\n right: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before,\n.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n border-width: 0.5rem 0 0.5rem 0.5rem;\n}\n\n.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before {\n right: 0;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n right: 1px;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n color: inherit;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 0.5rem 0.75rem;\n color: #212529;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n\n.carousel-item {\n position: relative;\n display: none;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n width: 100%;\n transition: -webkit-transform 0.6s ease;\n transition: transform 0.6s ease;\n transition: transform 0.6s ease, -webkit-transform 0.6s ease;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000px;\n perspective: 1000px;\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n.carousel-item-next,\n.carousel-item-prev {\n position: absolute;\n top: 0;\n}\n\n.carousel-item-next.carousel-item-left,\n.carousel-item-prev.carousel-item-right {\n -webkit-transform: translateX(0);\n transform: translateX(0);\n}\n\n@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {\n .carousel-item-next.carousel-item-left,\n .carousel-item-prev.carousel-item-right {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n }\n}\n\n.carousel-item-next,\n.active.carousel-item-right {\n -webkit-transform: translateX(100%);\n transform: translateX(100%);\n}\n\n@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {\n .carousel-item-next,\n .active.carousel-item-right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n }\n}\n\n.carousel-item-prev,\n.active.carousel-item-left {\n -webkit-transform: translateX(-100%);\n transform: translateX(-100%);\n}\n\n@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {\n .carousel-item-prev,\n .active.carousel-item-left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n width: 15%;\n color: #fff;\n text-align: center;\n opacity: 0.5;\n}\n\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: .9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background: transparent no-repeat center center;\n background-size: 100% 100%;\n}\n\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 10px;\n left: 0;\n z-index: 15;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n padding-left: 0;\n margin-right: 15%;\n margin-left: 15%;\n list-style: none;\n}\n\n.carousel-indicators li {\n position: relative;\n -webkit-box-flex: 0;\n -ms-flex: 0 1 auto;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n background-color: rgba(255, 255, 255, 0.5);\n}\n\n.carousel-indicators li::before {\n position: absolute;\n top: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\";\n}\n\n.carousel-indicators li::after {\n position: absolute;\n bottom: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\";\n}\n\n.carousel-indicators .active {\n background-color: #fff;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.bg-primary {\n background-color: #007bff !important;\n}\n\na.bg-primary:hover, a.bg-primary:focus,\nbutton.bg-primary:hover,\nbutton.bg-primary:focus {\n background-color: #0062cc !important;\n}\n\n.bg-secondary {\n background-color: #6c757d !important;\n}\n\na.bg-secondary:hover, a.bg-secondary:focus,\nbutton.bg-secondary:hover,\nbutton.bg-secondary:focus {\n background-color: #545b62 !important;\n}\n\n.bg-success {\n background-color: #28a745 !important;\n}\n\na.bg-success:hover, a.bg-success:focus,\nbutton.bg-success:hover,\nbutton.bg-success:focus {\n background-color: #1e7e34 !important;\n}\n\n.bg-info {\n background-color: #17a2b8 !important;\n}\n\na.bg-info:hover, a.bg-info:focus,\nbutton.bg-info:hover,\nbutton.bg-info:focus {\n background-color: #117a8b !important;\n}\n\n.bg-warning {\n background-color: #ffc107 !important;\n}\n\na.bg-warning:hover, a.bg-warning:focus,\nbutton.bg-warning:hover,\nbutton.bg-warning:focus {\n background-color: #d39e00 !important;\n}\n\n.bg-danger {\n background-color: #dc3545 !important;\n}\n\na.bg-danger:hover, a.bg-danger:focus,\nbutton.bg-danger:hover,\nbutton.bg-danger:focus {\n background-color: #bd2130 !important;\n}\n\n.bg-light {\n background-color: #f8f9fa !important;\n}\n\na.bg-light:hover, a.bg-light:focus,\nbutton.bg-light:hover,\nbutton.bg-light:focus {\n background-color: #dae0e5 !important;\n}\n\n.bg-dark {\n background-color: #343a40 !important;\n}\n\na.bg-dark:hover, a.bg-dark:focus,\nbutton.bg-dark:hover,\nbutton.bg-dark:focus {\n background-color: #1d2124 !important;\n}\n\n.bg-white {\n background-color: #fff !important;\n}\n\n.bg-transparent {\n background-color: transparent !important;\n}\n\n.border {\n border: 1px solid #dee2e6 !important;\n}\n\n.border-top {\n border-top: 1px solid #dee2e6 !important;\n}\n\n.border-right {\n border-right: 1px solid #dee2e6 !important;\n}\n\n.border-bottom {\n border-bottom: 1px solid #dee2e6 !important;\n}\n\n.border-left {\n border-left: 1px solid #dee2e6 !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-right-0 {\n border-right: 0 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-left-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n border-color: #007bff !important;\n}\n\n.border-secondary {\n border-color: #6c757d !important;\n}\n\n.border-success {\n border-color: #28a745 !important;\n}\n\n.border-info {\n border-color: #17a2b8 !important;\n}\n\n.border-warning {\n border-color: #ffc107 !important;\n}\n\n.border-danger {\n border-color: #dc3545 !important;\n}\n\n.border-light {\n border-color: #f8f9fa !important;\n}\n\n.border-dark {\n border-color: #343a40 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important;\n}\n\n.rounded-right {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important;\n}\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-left {\n border-top-left-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.d-none {\n display: none !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n}\n\n.d-inline-flex {\n display: -webkit-inline-box !important;\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-none {\n display: none !important;\n }\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: -webkit-inline-box !important;\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 768px) {\n .d-md-none {\n display: none !important;\n }\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-md-inline-flex {\n display: -webkit-inline-box !important;\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 992px) {\n .d-lg-none {\n display: none !important;\n }\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: -webkit-inline-box !important;\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 1200px) {\n .d-xl-none {\n display: none !important;\n }\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: -webkit-inline-box !important;\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n@media print {\n .d-print-none {\n display: none !important;\n }\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: -webkit-box !important;\n display: -ms-flexbox !important;\n display: flex !important;\n }\n .d-print-inline-flex {\n display: -webkit-inline-box !important;\n display: -ms-inline-flexbox !important;\n display: inline-flex !important;\n }\n}\n\n.embed-responsive {\n position: relative;\n display: block;\n width: 100%;\n padding: 0;\n overflow: hidden;\n}\n\n.embed-responsive::before {\n display: block;\n content: \"\";\n}\n\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n}\n\n.embed-responsive-21by9::before {\n padding-top: 42.857143%;\n}\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%;\n}\n\n.embed-responsive-4by3::before {\n padding-top: 75%;\n}\n\n.embed-responsive-1by1::before {\n padding-top: 100%;\n}\n\n.flex-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n}\n\n.flex-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n}\n\n.flex-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n}\n\n.justify-content-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n}\n\n.align-items-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n}\n\n.align-items-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n}\n\n.align-items-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n}\n\n.align-items-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n}\n\n.align-content-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n}\n\n.align-content-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n}\n\n.align-content-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n}\n\n.align-content-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n}\n\n.align-content-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n}\n\n.align-self-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n}\n\n.align-self-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n}\n\n.align-self-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n}\n\n.align-self-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n}\n\n.align-self-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n}\n\n@media (min-width: 576px) {\n .flex-sm-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-sm-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-sm-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-sm-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-sm-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-sm-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-sm-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-sm-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-sm-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-sm-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-sm-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 768px) {\n .flex-md-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-md-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-md-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-md-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-md-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-md-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-md-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-md-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-md-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-md-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-md-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-md-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-md-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-md-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-md-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-md-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-md-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-md-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 992px) {\n .flex-lg-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-lg-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-lg-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-lg-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-lg-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-lg-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-lg-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-lg-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-lg-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-lg-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-lg-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: row !important;\n flex-direction: row !important;\n }\n .flex-xl-column {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: normal !important;\n -ms-flex-direction: column !important;\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n -webkit-box-orient: horizontal !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: row-reverse !important;\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n -webkit-box-orient: vertical !important;\n -webkit-box-direction: reverse !important;\n -ms-flex-direction: column-reverse !important;\n flex-direction: column-reverse !important;\n }\n .flex-xl-wrap {\n -ms-flex-wrap: wrap !important;\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n -ms-flex-wrap: nowrap !important;\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n -ms-flex-wrap: wrap-reverse !important;\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n -webkit-box-pack: start !important;\n -ms-flex-pack: start !important;\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n -webkit-box-pack: end !important;\n -ms-flex-pack: end !important;\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n -webkit-box-pack: center !important;\n -ms-flex-pack: center !important;\n justify-content: center !important;\n }\n .justify-content-xl-between {\n -webkit-box-pack: justify !important;\n -ms-flex-pack: justify !important;\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n -ms-flex-pack: distribute !important;\n justify-content: space-around !important;\n }\n .align-items-xl-start {\n -webkit-box-align: start !important;\n -ms-flex-align: start !important;\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n -webkit-box-align: end !important;\n -ms-flex-align: end !important;\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n -webkit-box-align: center !important;\n -ms-flex-align: center !important;\n align-items: center !important;\n }\n .align-items-xl-baseline {\n -webkit-box-align: baseline !important;\n -ms-flex-align: baseline !important;\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n -webkit-box-align: stretch !important;\n -ms-flex-align: stretch !important;\n align-items: stretch !important;\n }\n .align-content-xl-start {\n -ms-flex-line-pack: start !important;\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n -ms-flex-line-pack: end !important;\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n -ms-flex-line-pack: center !important;\n align-content: center !important;\n }\n .align-content-xl-between {\n -ms-flex-line-pack: justify !important;\n align-content: space-between !important;\n }\n .align-content-xl-around {\n -ms-flex-line-pack: distribute !important;\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n -ms-flex-line-pack: stretch !important;\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n -ms-flex-item-align: auto !important;\n align-self: auto !important;\n }\n .align-self-xl-start {\n -ms-flex-item-align: start !important;\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n -ms-flex-item-align: end !important;\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n -ms-flex-item-align: center !important;\n align-self: center !important;\n }\n .align-self-xl-baseline {\n -ms-flex-item-align: baseline !important;\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n -ms-flex-item-align: stretch !important;\n align-self: stretch !important;\n }\n}\n\n.float-left {\n float: left !important;\n}\n\n.float-right {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-left {\n float: left !important;\n }\n .float-sm-right {\n float: right !important;\n }\n .float-sm-none {\n float: none !important;\n }\n}\n\n@media (min-width: 768px) {\n .float-md-left {\n float: left !important;\n }\n .float-md-right {\n float: right !important;\n }\n .float-md-none {\n float: none !important;\n }\n}\n\n@media (min-width: 992px) {\n .float-lg-left {\n float: left !important;\n }\n .float-lg-right {\n float: right !important;\n }\n .float-lg-none {\n float: none !important;\n }\n}\n\n@media (min-width: 1200px) {\n .float-xl-left {\n float: left !important;\n }\n .float-xl-right {\n float: right !important;\n }\n .float-xl-none {\n float: none !important;\n }\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: -webkit-sticky !important;\n position: sticky !important;\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n@supports ((position: -webkit-sticky) or (position: sticky)) {\n .sticky-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n -webkit-clip-path: inset(50%);\n clip-path: inset(50%);\n border: 0;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n -webkit-clip-path: none;\n clip-path: none;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.mt-0,\n.my-0 {\n margin-top: 0 !important;\n}\n\n.mr-0,\n.mx-0 {\n margin-right: 0 !important;\n}\n\n.mb-0,\n.my-0 {\n margin-bottom: 0 !important;\n}\n\n.ml-0,\n.mx-0 {\n margin-left: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.mt-1,\n.my-1 {\n margin-top: 0.25rem !important;\n}\n\n.mr-1,\n.mx-1 {\n margin-right: 0.25rem !important;\n}\n\n.mb-1,\n.my-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.ml-1,\n.mx-1 {\n margin-left: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.mt-2,\n.my-2 {\n margin-top: 0.5rem !important;\n}\n\n.mr-2,\n.mx-2 {\n margin-right: 0.5rem !important;\n}\n\n.mb-2,\n.my-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.ml-2,\n.mx-2 {\n margin-left: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.mt-3,\n.my-3 {\n margin-top: 1rem !important;\n}\n\n.mr-3,\n.mx-3 {\n margin-right: 1rem !important;\n}\n\n.mb-3,\n.my-3 {\n margin-bottom: 1rem !important;\n}\n\n.ml-3,\n.mx-3 {\n margin-left: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.mt-4,\n.my-4 {\n margin-top: 1.5rem !important;\n}\n\n.mr-4,\n.mx-4 {\n margin-right: 1.5rem !important;\n}\n\n.mb-4,\n.my-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.ml-4,\n.mx-4 {\n margin-left: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.mt-5,\n.my-5 {\n margin-top: 3rem !important;\n}\n\n.mr-5,\n.mx-5 {\n margin-right: 3rem !important;\n}\n\n.mb-5,\n.my-5 {\n margin-bottom: 3rem !important;\n}\n\n.ml-5,\n.mx-5 {\n margin-left: 3rem !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.pt-0,\n.py-0 {\n padding-top: 0 !important;\n}\n\n.pr-0,\n.px-0 {\n padding-right: 0 !important;\n}\n\n.pb-0,\n.py-0 {\n padding-bottom: 0 !important;\n}\n\n.pl-0,\n.px-0 {\n padding-left: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.pt-1,\n.py-1 {\n padding-top: 0.25rem !important;\n}\n\n.pr-1,\n.px-1 {\n padding-right: 0.25rem !important;\n}\n\n.pb-1,\n.py-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pl-1,\n.px-1 {\n padding-left: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.pt-2,\n.py-2 {\n padding-top: 0.5rem !important;\n}\n\n.pr-2,\n.px-2 {\n padding-right: 0.5rem !important;\n}\n\n.pb-2,\n.py-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pl-2,\n.px-2 {\n padding-left: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.pt-3,\n.py-3 {\n padding-top: 1rem !important;\n}\n\n.pr-3,\n.px-3 {\n padding-right: 1rem !important;\n}\n\n.pb-3,\n.py-3 {\n padding-bottom: 1rem !important;\n}\n\n.pl-3,\n.px-3 {\n padding-left: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.pt-4,\n.py-4 {\n padding-top: 1.5rem !important;\n}\n\n.pr-4,\n.px-4 {\n padding-right: 1.5rem !important;\n}\n\n.pb-4,\n.py-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pl-4,\n.px-4 {\n padding-left: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.pt-5,\n.py-5 {\n padding-top: 3rem !important;\n}\n\n.pr-5,\n.px-5 {\n padding-right: 3rem !important;\n}\n\n.pb-5,\n.py-5 {\n padding-bottom: 3rem !important;\n}\n\n.pl-5,\n.px-5 {\n padding-left: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mt-auto,\n.my-auto {\n margin-top: auto !important;\n}\n\n.mr-auto,\n.mx-auto {\n margin-right: auto !important;\n}\n\n.mb-auto,\n.my-auto {\n margin-bottom: auto !important;\n}\n\n.ml-auto,\n.mx-auto {\n margin-left: auto !important;\n}\n\n@media (min-width: 576px) {\n .m-sm-0 {\n margin: 0 !important;\n }\n .mt-sm-0,\n .my-sm-0 {\n margin-top: 0 !important;\n }\n .mr-sm-0,\n .mx-sm-0 {\n margin-right: 0 !important;\n }\n .mb-sm-0,\n .my-sm-0 {\n margin-bottom: 0 !important;\n }\n .ml-sm-0,\n .mx-sm-0 {\n margin-left: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .mt-sm-1,\n .my-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mr-sm-1,\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n }\n .mb-sm-1,\n .my-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-sm-1,\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .mt-sm-2,\n .my-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mr-sm-2,\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n }\n .mb-sm-2,\n .my-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-sm-2,\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .mt-sm-3,\n .my-sm-3 {\n margin-top: 1rem !important;\n }\n .mr-sm-3,\n .mx-sm-3 {\n margin-right: 1rem !important;\n }\n .mb-sm-3,\n .my-sm-3 {\n margin-bottom: 1rem !important;\n }\n .ml-sm-3,\n .mx-sm-3 {\n margin-left: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .mt-sm-4,\n .my-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mr-sm-4,\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n }\n .mb-sm-4,\n .my-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-sm-4,\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .mt-sm-5,\n .my-sm-5 {\n margin-top: 3rem !important;\n }\n .mr-sm-5,\n .mx-sm-5 {\n margin-right: 3rem !important;\n }\n .mb-sm-5,\n .my-sm-5 {\n margin-bottom: 3rem !important;\n }\n .ml-sm-5,\n .mx-sm-5 {\n margin-left: 3rem !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .pt-sm-0,\n .py-sm-0 {\n padding-top: 0 !important;\n }\n .pr-sm-0,\n .px-sm-0 {\n padding-right: 0 !important;\n }\n .pb-sm-0,\n .py-sm-0 {\n padding-bottom: 0 !important;\n }\n .pl-sm-0,\n .px-sm-0 {\n padding-left: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .pt-sm-1,\n .py-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pr-sm-1,\n .px-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pb-sm-1,\n .py-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-sm-1,\n .px-sm-1 {\n padding-left: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .pt-sm-2,\n .py-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pr-sm-2,\n .px-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pb-sm-2,\n .py-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-sm-2,\n .px-sm-2 {\n padding-left: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .pt-sm-3,\n .py-sm-3 {\n padding-top: 1rem !important;\n }\n .pr-sm-3,\n .px-sm-3 {\n padding-right: 1rem !important;\n }\n .pb-sm-3,\n .py-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pl-sm-3,\n .px-sm-3 {\n padding-left: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .pt-sm-4,\n .py-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pr-sm-4,\n .px-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pb-sm-4,\n .py-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-sm-4,\n .px-sm-4 {\n padding-left: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .pt-sm-5,\n .py-sm-5 {\n padding-top: 3rem !important;\n }\n .pr-sm-5,\n .px-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-5,\n .py-sm-5 {\n padding-bottom: 3rem !important;\n }\n .pl-sm-5,\n .px-sm-5 {\n padding-left: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mt-sm-auto,\n .my-sm-auto {\n margin-top: auto !important;\n }\n .mr-sm-auto,\n .mx-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-auto,\n .my-sm-auto {\n margin-bottom: auto !important;\n }\n .ml-sm-auto,\n .mx-sm-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 768px) {\n .m-md-0 {\n margin: 0 !important;\n }\n .mt-md-0,\n .my-md-0 {\n margin-top: 0 !important;\n }\n .mr-md-0,\n .mx-md-0 {\n margin-right: 0 !important;\n }\n .mb-md-0,\n .my-md-0 {\n margin-bottom: 0 !important;\n }\n .ml-md-0,\n .mx-md-0 {\n margin-left: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .mt-md-1,\n .my-md-1 {\n margin-top: 0.25rem !important;\n }\n .mr-md-1,\n .mx-md-1 {\n margin-right: 0.25rem !important;\n }\n .mb-md-1,\n .my-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-md-1,\n .mx-md-1 {\n margin-left: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .mt-md-2,\n .my-md-2 {\n margin-top: 0.5rem !important;\n }\n .mr-md-2,\n .mx-md-2 {\n margin-right: 0.5rem !important;\n }\n .mb-md-2,\n .my-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-md-2,\n .mx-md-2 {\n margin-left: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .mt-md-3,\n .my-md-3 {\n margin-top: 1rem !important;\n }\n .mr-md-3,\n .mx-md-3 {\n margin-right: 1rem !important;\n }\n .mb-md-3,\n .my-md-3 {\n margin-bottom: 1rem !important;\n }\n .ml-md-3,\n .mx-md-3 {\n margin-left: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .mt-md-4,\n .my-md-4 {\n margin-top: 1.5rem !important;\n }\n .mr-md-4,\n .mx-md-4 {\n margin-right: 1.5rem !important;\n }\n .mb-md-4,\n .my-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-md-4,\n .mx-md-4 {\n margin-left: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .mt-md-5,\n .my-md-5 {\n margin-top: 3rem !important;\n }\n .mr-md-5,\n .mx-md-5 {\n margin-right: 3rem !important;\n }\n .mb-md-5,\n .my-md-5 {\n margin-bottom: 3rem !important;\n }\n .ml-md-5,\n .mx-md-5 {\n margin-left: 3rem !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .pt-md-0,\n .py-md-0 {\n padding-top: 0 !important;\n }\n .pr-md-0,\n .px-md-0 {\n padding-right: 0 !important;\n }\n .pb-md-0,\n .py-md-0 {\n padding-bottom: 0 !important;\n }\n .pl-md-0,\n .px-md-0 {\n padding-left: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .pt-md-1,\n .py-md-1 {\n padding-top: 0.25rem !important;\n }\n .pr-md-1,\n .px-md-1 {\n padding-right: 0.25rem !important;\n }\n .pb-md-1,\n .py-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-md-1,\n .px-md-1 {\n padding-left: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .pt-md-2,\n .py-md-2 {\n padding-top: 0.5rem !important;\n }\n .pr-md-2,\n .px-md-2 {\n padding-right: 0.5rem !important;\n }\n .pb-md-2,\n .py-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-md-2,\n .px-md-2 {\n padding-left: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .pt-md-3,\n .py-md-3 {\n padding-top: 1rem !important;\n }\n .pr-md-3,\n .px-md-3 {\n padding-right: 1rem !important;\n }\n .pb-md-3,\n .py-md-3 {\n padding-bottom: 1rem !important;\n }\n .pl-md-3,\n .px-md-3 {\n padding-left: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .pt-md-4,\n .py-md-4 {\n padding-top: 1.5rem !important;\n }\n .pr-md-4,\n .px-md-4 {\n padding-right: 1.5rem !important;\n }\n .pb-md-4,\n .py-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-md-4,\n .px-md-4 {\n padding-left: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .pt-md-5,\n .py-md-5 {\n padding-top: 3rem !important;\n }\n .pr-md-5,\n .px-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-5,\n .py-md-5 {\n padding-bottom: 3rem !important;\n }\n .pl-md-5,\n .px-md-5 {\n padding-left: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mt-md-auto,\n .my-md-auto {\n margin-top: auto !important;\n }\n .mr-md-auto,\n .mx-md-auto {\n margin-right: auto !important;\n }\n .mb-md-auto,\n .my-md-auto {\n margin-bottom: auto !important;\n }\n .ml-md-auto,\n .mx-md-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 992px) {\n .m-lg-0 {\n margin: 0 !important;\n }\n .mt-lg-0,\n .my-lg-0 {\n margin-top: 0 !important;\n }\n .mr-lg-0,\n .mx-lg-0 {\n margin-right: 0 !important;\n }\n .mb-lg-0,\n .my-lg-0 {\n margin-bottom: 0 !important;\n }\n .ml-lg-0,\n .mx-lg-0 {\n margin-left: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .mt-lg-1,\n .my-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mr-lg-1,\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n }\n .mb-lg-1,\n .my-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-lg-1,\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .mt-lg-2,\n .my-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mr-lg-2,\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n }\n .mb-lg-2,\n .my-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-lg-2,\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .mt-lg-3,\n .my-lg-3 {\n margin-top: 1rem !important;\n }\n .mr-lg-3,\n .mx-lg-3 {\n margin-right: 1rem !important;\n }\n .mb-lg-3,\n .my-lg-3 {\n margin-bottom: 1rem !important;\n }\n .ml-lg-3,\n .mx-lg-3 {\n margin-left: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .mt-lg-4,\n .my-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mr-lg-4,\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n }\n .mb-lg-4,\n .my-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-lg-4,\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .mt-lg-5,\n .my-lg-5 {\n margin-top: 3rem !important;\n }\n .mr-lg-5,\n .mx-lg-5 {\n margin-right: 3rem !important;\n }\n .mb-lg-5,\n .my-lg-5 {\n margin-bottom: 3rem !important;\n }\n .ml-lg-5,\n .mx-lg-5 {\n margin-left: 3rem !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .pt-lg-0,\n .py-lg-0 {\n padding-top: 0 !important;\n }\n .pr-lg-0,\n .px-lg-0 {\n padding-right: 0 !important;\n }\n .pb-lg-0,\n .py-lg-0 {\n padding-bottom: 0 !important;\n }\n .pl-lg-0,\n .px-lg-0 {\n padding-left: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .pt-lg-1,\n .py-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pr-lg-1,\n .px-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pb-lg-1,\n .py-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-lg-1,\n .px-lg-1 {\n padding-left: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .pt-lg-2,\n .py-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pr-lg-2,\n .px-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pb-lg-2,\n .py-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-lg-2,\n .px-lg-2 {\n padding-left: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .pt-lg-3,\n .py-lg-3 {\n padding-top: 1rem !important;\n }\n .pr-lg-3,\n .px-lg-3 {\n padding-right: 1rem !important;\n }\n .pb-lg-3,\n .py-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pl-lg-3,\n .px-lg-3 {\n padding-left: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .pt-lg-4,\n .py-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pr-lg-4,\n .px-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pb-lg-4,\n .py-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-lg-4,\n .px-lg-4 {\n padding-left: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .pt-lg-5,\n .py-lg-5 {\n padding-top: 3rem !important;\n }\n .pr-lg-5,\n .px-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-5,\n .py-lg-5 {\n padding-bottom: 3rem !important;\n }\n .pl-lg-5,\n .px-lg-5 {\n padding-left: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mt-lg-auto,\n .my-lg-auto {\n margin-top: auto !important;\n }\n .mr-lg-auto,\n .mx-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-auto,\n .my-lg-auto {\n margin-bottom: auto !important;\n }\n .ml-lg-auto,\n .mx-lg-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 1200px) {\n .m-xl-0 {\n margin: 0 !important;\n }\n .mt-xl-0,\n .my-xl-0 {\n margin-top: 0 !important;\n }\n .mr-xl-0,\n .mx-xl-0 {\n margin-right: 0 !important;\n }\n .mb-xl-0,\n .my-xl-0 {\n margin-bottom: 0 !important;\n }\n .ml-xl-0,\n .mx-xl-0 {\n margin-left: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .mt-xl-1,\n .my-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mr-xl-1,\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n }\n .mb-xl-1,\n .my-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-xl-1,\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .mt-xl-2,\n .my-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mr-xl-2,\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n }\n .mb-xl-2,\n .my-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-xl-2,\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .mt-xl-3,\n .my-xl-3 {\n margin-top: 1rem !important;\n }\n .mr-xl-3,\n .mx-xl-3 {\n margin-right: 1rem !important;\n }\n .mb-xl-3,\n .my-xl-3 {\n margin-bottom: 1rem !important;\n }\n .ml-xl-3,\n .mx-xl-3 {\n margin-left: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .mt-xl-4,\n .my-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mr-xl-4,\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n }\n .mb-xl-4,\n .my-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-xl-4,\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .mt-xl-5,\n .my-xl-5 {\n margin-top: 3rem !important;\n }\n .mr-xl-5,\n .mx-xl-5 {\n margin-right: 3rem !important;\n }\n .mb-xl-5,\n .my-xl-5 {\n margin-bottom: 3rem !important;\n }\n .ml-xl-5,\n .mx-xl-5 {\n margin-left: 3rem !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .pt-xl-0,\n .py-xl-0 {\n padding-top: 0 !important;\n }\n .pr-xl-0,\n .px-xl-0 {\n padding-right: 0 !important;\n }\n .pb-xl-0,\n .py-xl-0 {\n padding-bottom: 0 !important;\n }\n .pl-xl-0,\n .px-xl-0 {\n padding-left: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .pt-xl-1,\n .py-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pr-xl-1,\n .px-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pb-xl-1,\n .py-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-xl-1,\n .px-xl-1 {\n padding-left: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .pt-xl-2,\n .py-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pr-xl-2,\n .px-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pb-xl-2,\n .py-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-xl-2,\n .px-xl-2 {\n padding-left: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .pt-xl-3,\n .py-xl-3 {\n padding-top: 1rem !important;\n }\n .pr-xl-3,\n .px-xl-3 {\n padding-right: 1rem !important;\n }\n .pb-xl-3,\n .py-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pl-xl-3,\n .px-xl-3 {\n padding-left: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .pt-xl-4,\n .py-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pr-xl-4,\n .px-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pb-xl-4,\n .py-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-xl-4,\n .px-xl-4 {\n padding-left: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .pt-xl-5,\n .py-xl-5 {\n padding-top: 3rem !important;\n }\n .pr-xl-5,\n .px-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-5,\n .py-xl-5 {\n padding-bottom: 3rem !important;\n }\n .pl-xl-5,\n .px-xl-5 {\n padding-left: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mt-xl-auto,\n .my-xl-auto {\n margin-top: auto !important;\n }\n .mr-xl-auto,\n .mx-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-auto,\n .my-xl-auto {\n margin-bottom: auto !important;\n }\n .ml-xl-auto,\n .mx-xl-auto {\n margin-left: auto !important;\n }\n}\n\n.text-justify {\n text-align: justify !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.text-left {\n text-align: left !important;\n}\n\n.text-right {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n@media (min-width: 576px) {\n .text-sm-left {\n text-align: left !important;\n }\n .text-sm-right {\n text-align: right !important;\n }\n .text-sm-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 768px) {\n .text-md-left {\n text-align: left !important;\n }\n .text-md-right {\n text-align: right !important;\n }\n .text-md-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 992px) {\n .text-lg-left {\n text-align: left !important;\n }\n .text-lg-right {\n text-align: right !important;\n }\n .text-lg-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 1200px) {\n .text-xl-left {\n text-align: left !important;\n }\n .text-xl-right {\n text-align: right !important;\n }\n .text-xl-center {\n text-align: center !important;\n }\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.font-weight-light {\n font-weight: 300 !important;\n}\n\n.font-weight-normal {\n font-weight: 400 !important;\n}\n\n.font-weight-bold {\n font-weight: 700 !important;\n}\n\n.font-italic {\n font-style: italic !important;\n}\n\n.text-white {\n color: #fff !important;\n}\n\n.text-primary {\n color: #007bff !important;\n}\n\na.text-primary:hover, a.text-primary:focus {\n color: #0062cc !important;\n}\n\n.text-secondary {\n color: #6c757d !important;\n}\n\na.text-secondary:hover, a.text-secondary:focus {\n color: #545b62 !important;\n}\n\n.text-success {\n color: #28a745 !important;\n}\n\na.text-success:hover, a.text-success:focus {\n color: #1e7e34 !important;\n}\n\n.text-info {\n color: #17a2b8 !important;\n}\n\na.text-info:hover, a.text-info:focus {\n color: #117a8b !important;\n}\n\n.text-warning {\n color: #ffc107 !important;\n}\n\na.text-warning:hover, a.text-warning:focus {\n color: #d39e00 !important;\n}\n\n.text-danger {\n color: #dc3545 !important;\n}\n\na.text-danger:hover, a.text-danger:focus {\n color: #bd2130 !important;\n}\n\n.text-light {\n color: #f8f9fa !important;\n}\n\na.text-light:hover, a.text-light:focus {\n color: #dae0e5 !important;\n}\n\n.text-dark {\n color: #343a40 !important;\n}\n\na.text-dark:hover, a.text-dark:focus {\n color: #1d2124 !important;\n}\n\n.text-muted {\n color: #6c757d !important;\n}\n\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n@media print {\n *,\n *::before,\n *::after {\n text-shadow: none !important;\n box-shadow: none !important;\n }\n a:not(.btn) {\n text-decoration: underline;\n }\n abbr[title]::after {\n content: \" (\" attr(title) \")\";\n }\n pre {\n white-space: pre-wrap !important;\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n @page {\n size: a3;\n }\n body {\n min-width: 992px !important;\n }\n .container {\n min-width: 992px !important;\n }\n .navbar {\n display: none;\n }\n .badge {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*!\n * Bootstrap v4.0.0 (https://getbootstrap.com)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n:root {\n --blue: #007bff;\n --indigo: #6610f2;\n --purple: #6f42c1;\n --pink: #e83e8c;\n --red: #dc3545;\n --orange: #fd7e14;\n --yellow: #ffc107;\n --green: #28a745;\n --teal: #20c997;\n --cyan: #17a2b8;\n --white: #fff;\n --gray: #6c757d;\n --gray-dark: #343a40;\n --primary: #007bff;\n --secondary: #6c757d;\n --success: #28a745;\n --info: #17a2b8;\n --warning: #ffc107;\n --danger: #dc3545;\n --light: #f8f9fa;\n --dark: #343a40;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent;\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: .5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-family: inherit;\n font-weight: 500;\n line-height: 1.2;\n color: inherit;\n}\n\nh1, .h1 {\n font-size: 2.5rem;\n}\n\nh2, .h2 {\n font-size: 2rem;\n}\n\nh3, .h3 {\n font-size: 1.75rem;\n}\n\nh4, .h4 {\n font-size: 1.5rem;\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1);\n}\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400;\n}\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #6c757d;\n}\n\n.blockquote-footer::before {\n content: \"\\2014 \\00A0\";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 90%;\n color: #6c757d;\n}\n\ncode,\nkbd,\npre,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-break: break-word;\n}\n\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\n\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n}\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529;\n}\n\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n}\n\n.col-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n order: -1;\n}\n\n.order-last {\n order: 13;\n}\n\n.order-0 {\n order: 0;\n}\n\n.order-1 {\n order: 1;\n}\n\n.order-2 {\n order: 2;\n}\n\n.order-3 {\n order: 3;\n}\n\n.order-4 {\n order: 4;\n}\n\n.order-5 {\n order: 5;\n}\n\n.order-6 {\n order: 6;\n}\n\n.order-7 {\n order: 7;\n}\n\n.order-8 {\n order: 8;\n}\n\n.order-9 {\n order: 9;\n}\n\n.order-10 {\n order: 10;\n}\n\n.order-11 {\n order: 11;\n}\n\n.order-12 {\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-sm-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n order: -1;\n }\n .order-sm-last {\n order: 13;\n }\n .order-sm-0 {\n order: 0;\n }\n .order-sm-1 {\n order: 1;\n }\n .order-sm-2 {\n order: 2;\n }\n .order-sm-3 {\n order: 3;\n }\n .order-sm-4 {\n order: 4;\n }\n .order-sm-5 {\n order: 5;\n }\n .order-sm-6 {\n order: 6;\n }\n .order-sm-7 {\n order: 7;\n }\n .order-sm-8 {\n order: 8;\n }\n .order-sm-9 {\n order: 9;\n }\n .order-sm-10 {\n order: 10;\n }\n .order-sm-11 {\n order: 11;\n }\n .order-sm-12 {\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-md-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n order: -1;\n }\n .order-md-last {\n order: 13;\n }\n .order-md-0 {\n order: 0;\n }\n .order-md-1 {\n order: 1;\n }\n .order-md-2 {\n order: 2;\n }\n .order-md-3 {\n order: 3;\n }\n .order-md-4 {\n order: 4;\n }\n .order-md-5 {\n order: 5;\n }\n .order-md-6 {\n order: 6;\n }\n .order-md-7 {\n order: 7;\n }\n .order-md-8 {\n order: 8;\n }\n .order-md-9 {\n order: 9;\n }\n .order-md-10 {\n order: 10;\n }\n .order-md-11 {\n order: 11;\n }\n .order-md-12 {\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-lg-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n order: -1;\n }\n .order-lg-last {\n order: 13;\n }\n .order-lg-0 {\n order: 0;\n }\n .order-lg-1 {\n order: 1;\n }\n .order-lg-2 {\n order: 2;\n }\n .order-lg-3 {\n order: 3;\n }\n .order-lg-4 {\n order: 4;\n }\n .order-lg-5 {\n order: 5;\n }\n .order-lg-6 {\n order: 6;\n }\n .order-lg-7 {\n order: 7;\n }\n .order-lg-8 {\n order: 8;\n }\n .order-lg-9 {\n order: 9;\n }\n .order-lg-10 {\n order: 10;\n }\n .order-lg-11 {\n order: 11;\n }\n .order-lg-12 {\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-xl-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n order: -1;\n }\n .order-xl-last {\n order: 13;\n }\n .order-xl-0 {\n order: 0;\n }\n .order-xl-1 {\n order: 1;\n }\n .order-xl-2 {\n order: 2;\n }\n .order-xl-3 {\n order: 3;\n }\n .order-xl-4 {\n order: 4;\n }\n .order-xl-5 {\n order: 5;\n }\n .order-xl-6 {\n order: 6;\n }\n .order-xl-7 {\n order: 7;\n }\n .order-xl-8 {\n order: 8;\n }\n .order-xl-9 {\n order: 9;\n }\n .order-xl-10 {\n order: 10;\n }\n .order-xl-11 {\n order: 11;\n }\n .order-xl-12 {\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 1rem;\n background-color: transparent;\n}\n\n.table th,\n.table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #dee2e6;\n}\n\n.table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #dee2e6;\n}\n\n.table tbody + tbody {\n border-top: 2px solid #dee2e6;\n}\n\n.table .table {\n background-color: #fff;\n}\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem;\n}\n\n.table-bordered {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered th,\n.table-bordered td {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered thead th,\n.table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.table-hover tbody tr:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #b8daff;\n}\n\n.table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.table-hover .table-primary:hover > td,\n.table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #d6d8db;\n}\n\n.table-hover .table-secondary:hover {\n background-color: #c8cbcf;\n}\n\n.table-hover .table-secondary:hover > td,\n.table-hover .table-secondary:hover > th {\n background-color: #c8cbcf;\n}\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c3e6cb;\n}\n\n.table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #bee5eb;\n}\n\n.table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffeeba;\n}\n\n.table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.table-hover .table-warning:hover > td,\n.table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #f5c6cb;\n}\n\n.table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.table-hover .table-danger:hover > td,\n.table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe;\n}\n\n.table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.table-hover .table-light:hover > td,\n.table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c6c8ca;\n}\n\n.table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.table-hover .table-dark:hover > td,\n.table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover > td,\n.table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table .thead-dark th {\n color: #fff;\n background-color: #212529;\n border-color: #32383e;\n}\n\n.table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.table-dark {\n color: #fff;\n background-color: #212529;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th {\n border-color: #32383e;\n}\n\n.table-dark.table-bordered {\n border: 0;\n}\n\n.table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.table-dark.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-sm > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-md > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-lg > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-xl > .table-bordered {\n border: 0;\n }\n}\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n}\n\n.table-responsive > .table-bordered {\n border: 0;\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n\n.form-control:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.form-control::placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n\nselect.form-control:not([size]):not([multiple]) {\n height: calc(2.25rem + 2px);\n}\n\nselect.form-control:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n margin-bottom: 0;\n line-height: 1.5;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n\n.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,\n.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,\n.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,\n.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,\n.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,\n.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,\n.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,\n.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,\n.input-group-lg > .input-group-append > .form-control-plaintext.btn {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm, .input-group-sm > .form-control,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\nselect.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),\n.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),\n.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),\n.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),\n.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {\n height: calc(1.8125rem + 2px);\n}\n\n.form-control-lg, .input-group-lg > .form-control,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\nselect.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),\n.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),\n.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),\n.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),\n.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {\n height: calc(2.875rem + 2px);\n}\n\n.form-group {\n margin-bottom: 1rem;\n}\n\n.form-text {\n display: block;\n margin-top: 0.25rem;\n}\n\n.form-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px;\n}\n\n.form-row > .col,\n.form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px;\n}\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem;\n}\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem;\n}\n\n.form-check-input:disabled ~ .form-check-label {\n color: #6c757d;\n}\n\n.form-check-label {\n margin-bottom: 0;\n}\n\n.form-check-inline {\n display: inline-flex;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem;\n}\n\n.form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: .5rem;\n margin-top: .1rem;\n font-size: .875rem;\n line-height: 1;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.8);\n border-radius: .2rem;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid, .was-validated\n.custom-select:valid,\n.custom-select.is-valid {\n border-color: #28a745;\n}\n\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated\n.custom-select:valid:focus,\n.custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .form-control:valid ~ .valid-feedback,\n.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,\n.form-control.is-valid ~ .valid-tooltip, .was-validated\n.custom-select:valid ~ .valid-feedback,\n.was-validated\n.custom-select:valid ~ .valid-tooltip,\n.custom-select.is-valid ~ .valid-feedback,\n.custom-select.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745;\n}\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n background-color: #71dd8a;\n}\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n background-color: #34ce57;\n}\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: .5rem;\n margin-top: .1rem;\n font-size: .875rem;\n line-height: 1;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.8);\n border-radius: .2rem;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated\n.custom-select:invalid,\n.custom-select.is-invalid {\n border-color: #dc3545;\n}\n\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated\n.custom-select:invalid:focus,\n.custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-control:invalid ~ .invalid-feedback,\n.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,\n.form-control.is-invalid ~ .invalid-tooltip, .was-validated\n.custom-select:invalid ~ .invalid-feedback,\n.was-validated\n.custom-select:invalid ~ .invalid-tooltip,\n.custom-select.is-invalid ~ .invalid-feedback,\n.custom-select.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n background-color: #efa2a9;\n}\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n background-color: #e4606d;\n}\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.form-inline {\n display: flex;\n flex-flow: row wrap;\n align-items: center;\n}\n\n.form-inline .form-check {\n width: 100%;\n}\n\n@media (min-width: 576px) {\n .form-inline label {\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom: 0;\n }\n .form-inline .form-group {\n display: flex;\n flex: 0 0 auto;\n flex-flow: row wrap;\n align-items: center;\n margin-bottom: 0;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-plaintext {\n display: inline-block;\n }\n .form-inline .input-group {\n width: auto;\n }\n .form-inline .form-check {\n display: flex;\n align-items: center;\n justify-content: center;\n width: auto;\n padding-left: 0;\n }\n .form-inline .form-check-input {\n position: relative;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0;\n }\n .form-inline .custom-control {\n align-items: center;\n justify-content: center;\n }\n .form-inline .custom-control-label {\n margin-bottom: 0;\n }\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n user-select: none;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n.btn:hover, .btn:focus {\n text-decoration: none;\n}\n\n.btn:focus, .btn.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.btn.disabled, .btn:disabled {\n opacity: 0.65;\n}\n\n.btn:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {\n background-image: none;\n}\n\na.btn.disabled,\nfieldset:disabled a.btn {\n pointer-events: none;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:hover {\n color: #fff;\n background-color: #0069d9;\n border-color: #0062cc;\n}\n\n.btn-primary:focus, .btn-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-primary.disabled, .btn-primary:disabled {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,\n.show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0062cc;\n border-color: #005cbf;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:hover {\n color: #fff;\n background-color: #5a6268;\n border-color: #545b62;\n}\n\n.btn-secondary:focus, .btn-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-secondary.disabled, .btn-secondary:disabled {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #545b62;\n border-color: #4e555b;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-success {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:hover {\n color: #fff;\n background-color: #218838;\n border-color: #1e7e34;\n}\n\n.btn-success:focus, .btn-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-success.disabled, .btn-success:disabled {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n.show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #1e7e34;\n border-color: #1c7430;\n}\n\n.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-info {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:hover {\n color: #fff;\n background-color: #138496;\n border-color: #117a8b;\n}\n\n.btn-info:focus, .btn-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-info.disabled, .btn-info:disabled {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,\n.show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #117a8b;\n border-color: #10707f;\n}\n\n.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-warning {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:hover {\n color: #212529;\n background-color: #e0a800;\n border-color: #d39e00;\n}\n\n.btn-warning:focus, .btn-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-warning.disabled, .btn-warning:disabled {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n.show > .btn-warning.dropdown-toggle {\n color: #212529;\n background-color: #d39e00;\n border-color: #c69500;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #c82333;\n border-color: #bd2130;\n}\n\n.btn-danger:focus, .btn-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-danger.disabled, .btn-danger:disabled {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n.show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #bd2130;\n border-color: #b21f2d;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-light {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:hover {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5;\n}\n\n.btn-light:focus, .btn-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-light.disabled, .btn-light:disabled {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n.show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #dae0e5;\n border-color: #d3d9df;\n}\n\n.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-dark {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:hover {\n color: #fff;\n background-color: #23272b;\n border-color: #1d2124;\n}\n\n.btn-dark:focus, .btn-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-dark.disabled, .btn-dark:disabled {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n.show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1d2124;\n border-color: #171a1d;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-primary {\n color: #007bff;\n background-color: transparent;\n background-image: none;\n border-color: #007bff;\n}\n\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:focus, .btn-outline-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-primary.disabled, .btn-outline-primary:disabled {\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-primary.dropdown-toggle {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-secondary {\n color: #6c757d;\n background-color: transparent;\n background-image: none;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-secondary.dropdown-toggle {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-success {\n color: #28a745;\n background-color: transparent;\n background-image: none;\n border-color: #28a745;\n}\n\n.btn-outline-success:hover {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #28a745;\n background-color: transparent;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n.show > .btn-outline-success.dropdown-toggle {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-info {\n color: #17a2b8;\n background-color: transparent;\n background-image: none;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:hover {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #17a2b8;\n background-color: transparent;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n.show > .btn-outline-info.dropdown-toggle {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-warning {\n color: #ffc107;\n background-color: transparent;\n background-image: none;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:hover {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n.show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-danger {\n color: #dc3545;\n background-color: transparent;\n background-image: none;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n.show > .btn-outline-danger.dropdown-toggle {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n background-color: transparent;\n background-image: none;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:hover {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n.show > .btn-outline-light.dropdown-toggle {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-dark {\n color: #343a40;\n background-color: transparent;\n background-image: none;\n border-color: #343a40;\n}\n\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #343a40;\n background-color: transparent;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n.show > .btn-outline-dark.dropdown-toggle {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-link:hover {\n color: #0056b3;\n text-decoration: underline;\n background-color: transparent;\n border-color: transparent;\n}\n\n.btn-link:focus, .btn-link.focus {\n text-decoration: underline;\n border-color: transparent;\n box-shadow: none;\n}\n\n.btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n.btn-block + .btn-block {\n margin-top: 0.5rem;\n}\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n\n.fade {\n opacity: 0;\n transition: opacity 0.15s linear;\n}\n\n.fade.show {\n opacity: 1;\n}\n\n.collapse {\n display: none;\n}\n\n.collapse.show {\n display: block;\n}\n\ntr.collapse.show {\n display: table-row;\n}\n\ntbody.collapse.show {\n display: table-row-group;\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n\n.dropup,\n.dropdown {\n position: relative;\n}\n\n.dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.dropup .dropdown-menu {\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-menu {\n margin-top: 0;\n margin-left: 0.125rem;\n}\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropleft .dropdown-menu {\n margin-top: 0;\n margin-right: 0.125rem;\n}\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n\n.dropleft .dropdown-toggle::after {\n display: none;\n}\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #e9ecef;\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n\n.dropdown-item:hover, .dropdown-item:focus {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff;\n}\n\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #6c757d;\n white-space: nowrap;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle;\n}\n\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n flex: 0 1 auto;\n}\n\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover {\n z-index: 1;\n}\n\n.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group,\n.btn-group-vertical .btn + .btn,\n.btn-group-vertical .btn + .btn-group,\n.btn-group-vertical .btn-group + .btn,\n.btn-group-vertical .btn-group + .btn-group {\n margin-left: -1px;\n}\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n}\n\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n\n.dropdown-toggle-split::after {\n margin-left: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n}\n\n.btn-group-vertical .btn,\n.btn-group-vertical .btn-group {\n width: 100%;\n}\n\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n margin-bottom: 0;\n}\n\n.btn-group-toggle > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn input[type=\"checkbox\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%;\n}\n\n.input-group > .form-control,\n.input-group > .custom-select,\n.input-group > .custom-file {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n margin-bottom: 0;\n}\n\n.input-group > .form-control:focus,\n.input-group > .custom-select:focus,\n.input-group > .custom-file:focus {\n z-index: 3;\n}\n\n.input-group > .form-control + .form-control,\n.input-group > .form-control + .custom-select,\n.input-group > .form-control + .custom-file,\n.input-group > .custom-select + .form-control,\n.input-group > .custom-select + .custom-select,\n.input-group > .custom-select + .custom-file,\n.input-group > .custom-file + .form-control,\n.input-group > .custom-file + .custom-select,\n.input-group > .custom-file + .custom-file {\n margin-left: -1px;\n}\n\n.input-group > .form-control:not(:last-child),\n.input-group > .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .form-control:not(:first-child),\n.input-group > .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group > .custom-file {\n display: flex;\n align-items: center;\n}\n\n.input-group > .custom-file:not(:last-child) .custom-file-label,\n.input-group > .custom-file:not(:last-child) .custom-file-label::before {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .custom-file:not(:first-child) .custom-file-label,\n.input-group > .custom-file:not(:first-child) .custom-file-label::before {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group-prepend,\n.input-group-append {\n display: flex;\n}\n\n.input-group-prepend .btn,\n.input-group-append .btn {\n position: relative;\n z-index: 2;\n}\n\n.input-group-prepend .btn + .btn,\n.input-group-prepend .btn + .input-group-text,\n.input-group-prepend .input-group-text + .input-group-text,\n.input-group-prepend .input-group-text + .btn,\n.input-group-append .btn + .btn,\n.input-group-append .btn + .input-group-text,\n.input-group-append .input-group-text + .input-group-text,\n.input-group-append .input-group-text + .btn {\n margin-left: -1px;\n}\n\n.input-group-prepend {\n margin-right: -1px;\n}\n\n.input-group-append {\n margin-left: -1px;\n}\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.375rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-text input[type=\"radio\"],\n.input-group-text input[type=\"checkbox\"] {\n margin-top: 0;\n}\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.custom-control {\n position: relative;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem;\n}\n\n.custom-control-inline {\n display: inline-flex;\n margin-right: 1rem;\n}\n\n.custom-control-input {\n position: absolute;\n z-index: -1;\n opacity: 0;\n}\n\n.custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n background-color: #007bff;\n}\n\n.custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-control-input:active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff;\n}\n\n.custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d;\n}\n\n.custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef;\n}\n\n.custom-control-label {\n margin-bottom: 0;\n}\n\n.custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: 0;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n user-select: none;\n background-color: #dee2e6;\n}\n\n.custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: 0;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 50% 50%;\n}\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E\");\n}\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: #fff url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right 0.75rem center;\n background-size: 8px 10px;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n appearance: none;\n}\n\n.custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);\n}\n\n.custom-select:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none;\n}\n\n.custom-select:disabled {\n color: #6c757d;\n background-color: #e9ecef;\n}\n\n.custom-select::-ms-expand {\n opacity: 0;\n}\n\n.custom-select-sm {\n height: calc(1.8125rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 75%;\n}\n\n.custom-select-lg {\n height: calc(2.875rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 125%;\n}\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin-bottom: 0;\n}\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin: 0;\n opacity: 0;\n}\n\n.custom-file-input:focus ~ .custom-file-control {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-file-input:focus ~ .custom-file-control::before {\n border-color: #80bdff;\n}\n\n.custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\";\n}\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: calc(calc(2.25rem + 2px) - 1px * 2);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: 1px solid #ced4da;\n border-radius: 0 0.25rem 0.25rem 0;\n}\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n}\n\n.nav-link:hover, .nav-link:focus {\n text-decoration: none;\n}\n\n.nav-link.disabled {\n color: #6c757d;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n\n.nav-tabs .nav-item {\n margin-bottom: -1px;\n}\n\n.nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6;\n}\n\n.nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent;\n}\n\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n border-radius: 0.25rem;\n}\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff;\n}\n\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding: 0.5rem 1rem;\n}\n\n.navbar > .container,\n.navbar > .container-fluid {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n}\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap;\n}\n\n.navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none;\n}\n\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-nav .dropdown-menu {\n position: static;\n float: none;\n}\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.navbar-toggler:hover, .navbar-toggler:focus {\n text-decoration: none;\n}\n\n.navbar-toggler:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%;\n}\n\n@media (max-width: 575.98px) {\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n .navbar-expand-sm .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 767.98px) {\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n .navbar-expand-md .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 991.98px) {\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n .navbar-expand-lg .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 1199.98px) {\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n .navbar-expand-xl .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n.navbar-expand {\n flex-flow: row nowrap;\n justify-content: flex-start;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-expand .navbar-nav {\n flex-direction: row;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n}\n\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n flex-wrap: nowrap;\n}\n\n.navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n}\n\n.navbar-expand .navbar-toggler {\n display: none;\n}\n\n.navbar-expand .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7);\n}\n\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.5);\n border-color: rgba(0, 0, 0, 0.1);\n}\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75);\n}\n\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1);\n}\n\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-text a {\n color: #fff;\n}\n\n.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n\n.card > .list-group:first-child .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card > .list-group:last-child .list-group-item:last-child {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card-body {\n flex: 1 1 auto;\n padding: 1.25rem;\n}\n\n.card-title {\n margin-bottom: 0.75rem;\n}\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link:hover {\n text-decoration: none;\n}\n\n.card-link + .card-link {\n margin-left: 1.25rem;\n}\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-header + .list-group .list-group-item:first-child {\n border-top: 0;\n}\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem;\n}\n\n.card-img {\n width: 100%;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img-top {\n width: 100%;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img-bottom {\n width: 100%;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-deck {\n display: flex;\n flex-direction: column;\n}\n\n.card-deck .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-deck {\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px;\n }\n .card-deck .card {\n display: flex;\n flex: 1 0 0%;\n flex-direction: column;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px;\n }\n}\n\n.card-group {\n display: flex;\n flex-direction: column;\n}\n\n.card-group > .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-group {\n flex-flow: row wrap;\n }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:first-child {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-top,\n .card-group > .card:first-child .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-bottom,\n .card-group > .card:first-child .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:last-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-top,\n .card-group > .card:last-child .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-bottom,\n .card-group > .card:last-child .card-footer {\n border-bottom-left-radius: 0;\n }\n .card-group > .card:only-child {\n border-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-top,\n .card-group > .card:only-child .card-header {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-bottom,\n .card-group > .card:only-child .card-footer {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {\n border-radius: 0;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {\n border-radius: 0;\n }\n}\n\n.card-columns .card {\n margin-bottom: 0.75rem;\n}\n\n@media (min-width: 576px) {\n .card-columns {\n column-count: 3;\n column-gap: 1.25rem;\n }\n .card-columns .card {\n display: inline-block;\n width: 100%;\n }\n}\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0.75rem 1rem;\n margin-bottom: 1rem;\n list-style: none;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n color: #6c757d;\n content: \"/\";\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline;\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none;\n}\n\n.breadcrumb-item.active {\n color: #6c757d;\n}\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem;\n}\n\n.page-link {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color