WordPress Download Manager - Version 3.1.05

Version Description

  • Fixed an issue with the view counter
  • Fixed an issue with modal popup
Download this release

Release Info

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

Code changes from version 3.0.4 to 3.1.05

admin/class.WordPressDownloadManagerAdmin.php CHANGED
@@ -34,8 +34,8 @@ class WordPressDownloadManagerAdmin
34
  }
35
 
36
  function registerScripts(){
37
- wp_register_script('wpdm-bootstrap', WPDM_BASE_URL . 'assets/bootstrap/js/bootstrap.min.js', array('jquery'));
38
- wp_register_style('wpdm-bootstrap', WPDM_BASE_URL . 'assets/bootstrap/css/bootstrap.min.css');
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
  }
@@ -65,20 +65,22 @@ class WordPressDownloadManagerAdmin
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('jquery'));
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
  }
76
 
77
  if(get_post_type()=='wpdmpro' || wpdm_query_var('post_type') == 'wpdmpro' || $hook == 'index.php'){
78
- wp_enqueue_script('wpdm-bootstrap' );
79
- wp_enqueue_style('wpdm-bootstrap' );
80
  //wp_enqueue_style('wpdm-bootstrap-theme', plugins_url('/download-manager/assets/bootstrap/css/bootstrap-theme.min.css'));
81
- wp_enqueue_style('wpdm-admin-styles', plugins_url('/download-manager/assets/css/admin-styles.css'));
82
  }
83
 
84
  }
@@ -196,4 +198,4 @@ class WordPressDownloadManagerAdmin
196
  }
197
 
198
 
199
- }
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
  }
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
  }
198
  }
199
 
200
 
201
+ }
admin/menus/class.Addons.php CHANGED
@@ -25,8 +25,8 @@ class Addons
25
 
26
  function UI(){
27
  if (!Session::get('wpdm_addon_store_data') || !is_array(json_decode(Session::get('wpdm_addon_store_data')))) {
28
- $data = remote_get('https://www.wpdownloadmanager.com/?wpdm_api_req=getPackageList');
29
- $cats = remote_get('https://www.wpdownloadmanager.com/?wpdm_api_req=getCategoryList');
30
  Session::set('wpdm_addon_store_data', $data);
31
  Session::set('wpdm_addon_store_cats', $cats);
32
  } else {
@@ -41,4 +41,4 @@ class Addons
41
  include(WPDM_BASE_DIR . "/admin/tpls/addons-list.php");
42
  }
43
 
44
- }
25
 
26
  function UI(){
27
  if (!Session::get('wpdm_addon_store_data') || !is_array(json_decode(Session::get('wpdm_addon_store_data')))) {
28
+ $data = wpdm_remote_get('https://www.wpdownloadmanager.com/?wpdm_api_req=getPackageList');
29
+ $cats = wpdm_remote_get('https://www.wpdownloadmanager.com/?wpdm_api_req=getCategoryList');
30
  Session::set('wpdm_addon_store_data', $data);
31
  Session::set('wpdm_addon_store_cats', $cats);
32
  } else {
41
  include(WPDM_BASE_DIR . "/admin/tpls/addons-list.php");
42
  }
43
 
44
+ }
admin/menus/class.Categories.php CHANGED
@@ -15,222 +15,453 @@ class Categories
15
  add_action( 'wpdmcategory_add_form_fields', array($this,'MetaFields'), 10, 2 );
16
  add_action( 'wpdmcategory_edit_form_fields', array($this,'MetaFieldsEdit'), 10, 2 );
17
 
18
- add_action( 'edited_wpdmcategory', array($this,'SaveMetaData'), 10, 2 );
19
- add_action( 'create_wpdmcategory', array($this,'SaveMetaData'), 10, 2 );
20
 
21
  add_action( 'admin_init', array($this,'AdminInit') );
22
 
23
 
24
  }
25
 
26
- function AdminInit(){
27
  add_filter("manage_edit-wpdmcategory_columns", array($this,'CategoryIDColumnHead'));
28
  add_filter("manage_wpdmcategory_custom_column", array($this,'CategoryIDColumnData'), 10, 3);
29
  }
30
 
31
 
32
- function CategoryIDColumnHead($columns) {
33
  $columns['tag_ID'] = 'ID<style>#tag_ID, .tag_ID{ width: 70px !important; }</style>';
34
  return $columns;
35
  }
36
 
37
- function CategoryIDColumnData($c, $column_name, $term_id) {
38
 
39
  if ($column_name == 'tag_ID') {
40
  echo $term_id;
41
  }
42
  }
43
 
44
- function MetaFields() {
45
  ?>
46
- <div class="form-field">
47
- <label><?php _e( 'Category Image:', 'download-manager' ); ?></label>
48
- <div class="button-group">
49
- <input type="text" id="catimurl" placeholder="<?php _e( "Image URL" , "download-manager" ); ?>" class="button" style="background: #ffffff" name="__wpdmcategory[icon]" value=""> <button data-uploader_button_text="Insert" data-uploader_title="<?php _e('Select Category Image', 'download-manager'); ?>" id="catim" type="button" class="button button-secondary"><?php _e('Insert From Media Library', 'download-manager'); ?></button>
50
- </div>
51
- <script type="text/javascript">
52
-
53
- jQuery(document).ready(function() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
 
55
- var file_frame;
56
 
57
- jQuery('body').on('click', '#catim', function( event ){
58
 
59
- event.preventDefault();
60
 
61
- // If the media frame already exists, reopen it.
62
- if ( file_frame ) {
63
- file_frame.open();
64
- return;
65
- }
66
 
67
- // Create the media frame.
68
- file_frame = wp.media.frames.file_frame = wp.media({
69
- title: jQuery( this ).data( 'uploader_title' ),
70
- button: {
71
- text: jQuery( this ).data( 'uploader_button_text' )
72
- },
73
- multiple: false // Set to true to allow multiple files to be selected
74
- });
75
 
76
- // When an image is selected, run a callback.
77
- file_frame.on( 'select', function() {
78
- // We set multiple to false so only get one image from the uploader
79
- attachment = file_frame.state().get('selection').first().toJSON();
80
- var imgurl = attachment.url;
81
- jQuery('#catimurl').val(imgurl);
82
 
83
  });
84
 
85
- // Finally, open the modal
86
- file_frame.open();
87
- return false;
88
- });
89
-
90
-
91
-
92
-
93
-
94
- jQuery('.del_adp').click(function(){
95
- if(confirm('Are you sure?')){
96
- jQuery('#'+jQuery(this).attr('rel')).fadeOut().remove();
97
- }
98
-
99
- });
100
 
101
- });
102
 
103
- </script>
104
  </div>
105
- <div class="form-field">
106
- <label><?php _e( 'Access:', 'wpdmcategory' ); ?></label>
107
- <p class="description"><?php _e( "Select the roles who should have access to the packages under this category" , "download-manager" ); ?></p>
108
-
109
-
110
- <label><input name="__wpdmcategory[access][]" type="checkbox" value="guest"> <?php echo __( "All Visitors" , "download-manager" ); ?></label>
111
- <?php
112
- global $wp_roles;
113
- $roles = array_reverse($wp_roles->role_names);
114
- foreach( $roles as $role => $name ) {
 
 
 
 
 
 
 
115
 
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
 
119
 
120
- ?>
121
- <label><input name="__wpdmcategory[access][]" type="checkbox" value="<?php echo $role; ?>" > <?php echo $name; ?></label>
122
- <?php } ?>
123
 
124
 
 
125
  </div>
126
-
127
  <?php
128
  }
129
 
130
- function MetaFieldsEdit() {
131
  $MetaData = get_option( "__wpdmcategory" );
132
  $MetaData = maybe_unserialize($MetaData);
133
  $icon = get_term_meta(wpdm_query_var('tag_ID', 'int'), '__wpdm_icon', true);
134
  if($icon == '')
135
- $icon = isset($MetaData[(int)$_GET['tag_ID']]['icon'])?$MetaData[(int)$_GET['tag_ID']]['icon']:'';
136
 
137
  ?>
138
- <tr class="form-field">
139
- <th><?php _e( 'Category Image:', 'download-manager' ); ?></th>
140
- <td class="button-group">
141
- <input type="text" id="catimurl" placeholder="<?php _e( "Image URL" , "download-manager" ); ?>" class="button" style="background: #ffffff" name="__wpdmcategory[icon]" value="<?php echo $icon; ?>"> <button data-uploader_button_text="Insert" data-uploader_title="<?php _e('Select Category Image', 'download-manager'); ?>" id="catim" type="button" class="button button-secondary"><?php _e('Insert From Media Library', 'download-manager'); ?></button>
142
 
143
- <script type="text/javascript">
 
 
 
 
 
 
 
144
 
145
- jQuery(document).ready(function() {
 
 
 
 
 
146
 
147
- var file_frame;
148
 
149
- jQuery('body').on('click', '#catim', function( event ){
150
 
151
- event.preventDefault();
152
 
153
- // If the media frame already exists, reopen it.
154
- if ( file_frame ) {
155
- file_frame.open();
156
- return;
157
- }
158
-
159
- // Create the media frame.
160
- file_frame = wp.media.frames.file_frame = wp.media({
161
- title: jQuery( this ).data( 'uploader_title' ),
162
- button: {
163
- text: jQuery( this ).data( 'uploader_button_text' )
164
- },
165
- multiple: false // Set to true to allow multiple files to be selected
166
- });
167
 
168
- // When an image is selected, run a callback.
169
- file_frame.on( 'select', function() {
170
- // We set multiple to false so only get one image from the uploader
171
- attachment = file_frame.state().get('selection').first().toJSON();
172
- var imgurl = attachment.url;
173
- jQuery('#catimurl').val(imgurl);
174
 
175
- });
 
 
 
 
176
 
177
- // Finally, open the modal
178
- file_frame.open();
179
- return false;
180
- });
 
 
 
 
181
 
 
 
 
 
 
 
182
 
 
183
 
 
 
 
 
184
 
185
 
186
- jQuery('.del_adp').click(function(){
187
- if(confirm('Are you sure?')){
188
- jQuery('#'+jQuery(this).attr('rel')).fadeOut().remove();
189
- }
190
 
191
- });
192
 
193
- });
194
 
195
- </script>
196
- </td>
197
- </tr>
198
- <tr class="form-field">
199
- <th><label><?php _e( 'Access:', 'wpdmcategory' ); ?></label>
200
- </th>
201
- <td>
202
- <p class="description"><?php _e( "Select the roles who should have access to the packages under this category" , "download-manager" ); ?></p>
203
- <ul>
204
- <input name="__wpdmcategory[access][]" type="hidden" value="__wpdm__" />
205
- <?php
206
 
207
- $currentAccess = maybe_unserialize(get_term_meta(wpdm_query_var('tag_ID', 'int'), '__wpdm_access', true));
208
- if(!is_array($currentAccess))
209
- $currentAccess = isset($MetaData[(int)$_GET['tag_ID']])?$MetaData[(int)$_GET['tag_ID']]['access']:array();
210
 
211
- $selz = '';
212
- if( $currentAccess ) $selz = (in_array('guest',$currentAccess))?'checked=checked':'';
213
- ?>
214
 
215
- <li><label><input name="__wpdmcategory[access][]" type="checkbox" value="guest" <?php echo $selz ?>><?php echo __( "All Visitors" , "download-manager" ); ?></label></li>
216
- <?php
217
- global $wp_roles;
218
- $roles = array_reverse($wp_roles->role_names);
219
- foreach( $roles as $role => $name ) {
 
 
 
 
 
 
 
 
 
220
 
 
 
 
221
 
 
 
 
222
 
223
- if( $currentAccess ) $sel = (in_array($role,$currentAccess))?'checked=checked':'';
224
- else $sel = '';
 
 
 
225
 
226
 
227
 
228
- ?>
229
- <li><label><input name="__wpdmcategory[access][]" type="checkbox" value="<?php echo $role; ?>" <?php echo $sel ?>> <?php echo $name; ?></label></li>
230
- <?php } ?>
231
- </ul>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  </td>
233
  </tr>
 
234
  <?php
235
  }
236
 
@@ -239,11 +470,11 @@ class Categories
239
  //$MetaData = get_option( "__wpdmcategory" );
240
  //$MetaData = maybe_unserialize($MetaData);
241
  foreach ($_POST['__wpdmcategory'] as $metaKey => $metaValue){
242
- update_term_meta($term_id, "__wpdm_".$metaKey, $metaValue);
243
  }
244
  //$MetaData[$term_id] = $_POST['__wpdmcategory'];
245
  //update_option( "__wpdmcategory", $MetaData );
246
  }
247
  }
248
 
249
- }
15
  add_action( 'wpdmcategory_add_form_fields', array($this,'MetaFields'), 10, 2 );
16
  add_action( 'wpdmcategory_edit_form_fields', array($this,'MetaFieldsEdit'), 10, 2 );
17
 
18
+ add_action( 'edited_wpdmcategory', array($this,'saveMetaData'), 10, 2 );
19
+ add_action( 'create_wpdmcategory', array($this,'saveMetaData'), 10, 2 );
20
 
21
  add_action( 'admin_init', array($this,'AdminInit') );
22
 
23
 
24
  }
25
 
26
+ function adminInit(){
27
  add_filter("manage_edit-wpdmcategory_columns", array($this,'CategoryIDColumnHead'));
28
  add_filter("manage_wpdmcategory_custom_column", array($this,'CategoryIDColumnData'), 10, 3);
29
  }
30
 
31
 
32
+ function categoryIDColumnHead($columns) {
33
  $columns['tag_ID'] = 'ID<style>#tag_ID, .tag_ID{ width: 70px !important; }</style>';
34
  return $columns;
35
  }
36
 
37
+ function categoryIDColumnData($c, $column_name, $term_id) {
38
 
39
  if ($column_name == 'tag_ID') {
40
  echo $term_id;
41
  }
42
  }
43
 
44
+ function metaFields() {
45
  ?>
46
+ <div class="form-field w3eden">
47
+ <div class="panel panel-default card-plain panel-plain">
48
+ <div class="panel-heading"><label><?php _e( 'Category Image:', 'download-manager' ); ?></label></div>
49
+ <div class="panel-body">
50
+ <div class="input-group">
51
+ <input type="text" id="catimurl" placeholder="<?php _e( "Image URL" , "download-manager" ); ?>" class="form-control" name="__wpdmcategory[icon]" value="">
52
+ <div class="input-group-btn">
53
+ <button data-uploader_button_text="Insert" data-uploader_title="<?php _e('Select Category Image', 'download-manager'); ?>" id="catim" type="button" class="btn btn-info"><?php _e('Browse', 'download-manager'); ?></button>
54
+ </div>
55
+ </div>
56
+ <script type="text/javascript">
57
+
58
+ jQuery(document).ready(function() {
59
+
60
+ var file_frame;
61
+
62
+ jQuery('body').on('click', '#catim', function( event ){
63
+
64
+ event.preventDefault();
65
+
66
+ // If the media frame already exists, reopen it.
67
+ if ( file_frame ) {
68
+ file_frame.open();
69
+ return;
70
+ }
71
+
72
+ // Create the media frame.
73
+ file_frame = wp.media.frames.file_frame = wp.media({
74
+ title: jQuery( this ).data( 'uploader_title' ),
75
+ button: {
76
+ text: jQuery( this ).data( 'uploader_button_text' )
77
+ },
78
+ multiple: false // Set to true to allow multiple files to be selected
79
+ });
80
+
81
+ // When an image is selected, run a callback.
82
+ file_frame.on( 'select', function() {
83
+ // We set multiple to false so only get one image from the uploader
84
+ attachment = file_frame.state().get('selection').first().toJSON();
85
+ var imgurl = attachment.url;
86
+ jQuery('#catimurl').val(imgurl);
87
+
88
+ });
89
+
90
+ // Finally, open the modal
91
+ file_frame.open();
92
+ return false;
93
+ });
94
 
 
95
 
 
96
 
 
97
 
 
 
 
 
 
98
 
99
+ jQuery('.del_adp').click(function(){
100
+ if(confirm('Are you sure?')){
101
+ jQuery('#'+jQuery(this).attr('rel')).fadeOut().remove();
102
+ }
 
 
 
 
103
 
104
+ });
 
 
 
 
 
105
 
106
  });
107
 
108
+ </script>
109
+ </div>
110
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
111
 
 
112
 
 
113
  </div>
114
+ <div class="form-field w3eden">
115
+ <div class="panel panel-default card-plain panel-plain">
116
+ <div class="panel-heading"><label><?php _e( 'Access:', 'wpdmcategory' ); ?></label></div>
117
+ <div class="panel-body">
118
+ <p class="description"><?php _e( "Select the roles who should have access to the packages under this category" , "download-manager" ); ?></p>
119
+
120
+ <div class="row">
121
+ <label class="col-md-4"><input name="__wpdmcategory[access][]" type="checkbox" value="guest"> <?php echo __( "All Visitors" , "download-manager" ); ?></label>
122
+ <?php
123
+ global $wp_roles;
124
+ $roles = array_reverse($wp_roles->role_names);
125
+ foreach( $roles as $role => $name ) { ?>
126
+ <label class="col-md-4"><input name="__wpdmcategory[access][]" type="checkbox" value="<?php echo $role; ?>" > <?php echo $name; ?></label>
127
+ <?php } ?>
128
+ </div>
129
+ </div>
130
+ </div>
131
 
132
 
133
+ </div>
134
+ <?php if(!file_exists(get_stylesheet_directory().'/taxonomy-wpdmcategory.php') && !file_exists(get_template_directory().'/taxonomy-wpdmcategory.php')){ ?>
135
+ <div class="form-field w3eden">
136
+ <div class="panel panel-default card-plain panel-plain">
137
+ <div class="panel-heading"><?php echo __( "Category Page Template" , "download-manager" ); ?></div>
138
+ <div class="panel-body">
139
+ <div class="panel panel-default panel-light" id="cpi">
140
+ <label class="panel-heading" style="display: block;border-bottom: 1px solid #e5e5e5;margin-bottom: -1px"><input disabled="disabled" type="radio" name="__wpdmcategory[style]" value="basic"> <?php echo __( "Use Global", "download-manager" ) ?></label>
141
+ <label class="panel-heading" style="display: block;border-bottom: 1px solid #ddd;border-top: 1px solid #ddd;border-radius: 0;"><input type="radio" name="__wpdmcategory[style]" checked="checked" value="basic"> <?php echo __( "Do Not Apply", "download-manager" ) ?></label>
142
+ <div class="panel-body">
143
+ <?php echo __( "Keep current template as it is provided with the active theme", "download-manager" ); ?>
144
+ </div>
145
+ <label class="panel-heading" style="display: block;border-bottom: 1px solid #ddd;border-top: 1px solid #ddd;border-radius: 0;"><input type="radio" name="__wpdmcategory[style]" value="ltpl"> <?php echo __( "Use Link Template", "download-manager" ) ?></label>
146
+ <div class="panel-body">
147
+ <?php
148
+
149
+ $cpage_global = maybe_unserialize(get_option('__wpdm_cpage'));
150
+ $cpage_global = !is_array($cpage_global) ? [ 'template' => 'link-template-default', 'cols' => 2, 'colsphone' => 1, 'colspad' => 1, 'heading' => 1 ] : $cpage_global;
151
+ $cpage = maybe_unserialize(get_term_meta(wpdm_query_var('tag_ID', 'int'), '__wpdm_pagestyle', true));
152
+ $cpage = !is_array($cpage) ? $cpage_global : $cpage;
153
+ ?>
154
+
155
+ <div class="form-group">
156
+ <div class="row">
157
+ <div class="col-md-4">
158
+ <label><?php echo __( "Link Template:" , "download-manager" ); ?></label><br/>
159
+ <?php
160
+ echo WPDM()->packageTemplate->dropdown(array('name' => '__wpdmcategory[pagestyle][template]', 'selected' => $cpage['template'], 'class' => 'form-control wpdm-custom-select' ));
161
+ ?>
162
+ </div>
163
+ <div class="col-md-3">
164
+ <label><?php echo __( "Items Per Page:" , "download-manager" ); ?></label><br/>
165
+ <input type="number" class="form-control" name="__wpdmcategory[pagestyle][items_per_page]" value="<?php echo isset($cpage['items_per_page']) ? $cpage['items_per_page'] : 12; ?>">
166
+ </div>
167
+ <div class="col-md-5">
168
+ <label><?php echo __( "Toolbar:" , "download-manager" ); ?></label>
169
+ <div class="input-group" style="display: flex">
170
+ <label class="form-control" style="margin: 0;"><input type="radio" name="__wpdmcategory[pagestyle][heading]" value="1" <?php checked($cpage['heading'], 1); ?>> <?php echo __( "Show", "download-manager" ) ?></label>
171
+ <label class="form-control" style="margin: 0 0 0 -1px;"><input type="radio" name="__wpdmcategory[pagestyle][heading]" value="0" <?php checked($cpage['heading'], 0); ?>> <?php echo __( "Hide", "download-manager" ) ?></label>
172
+ </div>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ <div class="form-group">
177
+ <label><?php echo __( "Number of Columns", "download-manager" ) ?>:</label>
178
+ <div class="row">
179
+ <div class="col-md-4">
180
+ <div class="input-group">
181
+ <select class="form-control wpdm-custom-select" name="__wpdmcategory[pagestyle][cols]">
182
+ <option value="1">1 Col</option>
183
+ <option value="2" <?php selected(2, $cpage['cols']) ?> >2 Cols</option>
184
+ <option value="3" <?php selected(3, $cpage['cols']) ?> >3 Cols</option>
185
+ <option value="4" <?php selected(4, $cpage['cols']) ?> >4 Cols</option>
186
+ <option value="6" <?php selected(6, $cpage['cols']) ?>>6 Cols</option>
187
+ <option value="12" <?php selected(12, $cpage['cols']) ?>>12 Cols</option>
188
+ </select><div class="input-group-addon">
189
+ <i class="fa fa-laptop"></i>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ <div class="col-md-4">
194
+ <div class="input-group">
195
+ <select class="form-control wpdm-custom-select" name="__wpdmcategory[pagestyle][colspad]">
196
+ <option value="1">1 Col</option>
197
+ <option value="2" <?php selected(2, $cpage['colspad']) ?> >2 Cols</option>
198
+ <option value="3" <?php selected(3, $cpage['colspad']) ?> >3 Cols</option>
199
+ <option value="4" <?php selected(4, $cpage['colspad']) ?> >4 Cols</option>
200
+ <option value="6" <?php selected(6, $cpage['colspad']) ?>>6 Cols</option>
201
+ <option value="12" <?php selected(12, $cpage['colspad']) ?>>12 Cols</option>
202
+ </select><div class="input-group-addon">
203
+ <i class="fa fa-tablet-alt"></i>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ <div class="col-md-4">
208
+ <div class="input-group">
209
+ <select class="form-control wpdm-custom-select" name="__wpdmcategory[pagestyle][colsphone]">
210
+ <option value="1">1 Col</option>
211
+ <option value="2" <?php selected(2, $cpage['colsphone']) ?> >2 Cols</option>
212
+ <option value="3" <?php selected(3, $cpage['colsphone']) ?> >3 Cols</option>
213
+ <option value="4" <?php selected(4, $cpage['colsphone']) ?> >4 Cols</option>
214
+ <option value="6" <?php selected(6, $cpage['colsphone']) ?>>6 Cols</option>
215
+ <option value="12" <?php selected(12, $cpage['colsphone']) ?>>12 Cols</option>
216
+ </select><div class="input-group-addon">
217
+ <i class="fa fa-mobile"></i>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+ </div>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ <style>select{min-width: auto !important;}</style>
227
 
228
 
229
 
 
 
 
230
 
231
 
232
+ </div>
233
  </div>
234
+ <?php } ?>
235
  <?php
236
  }
237
 
238
+ function metaFieldsEdit() {
239
  $MetaData = get_option( "__wpdmcategory" );
240
  $MetaData = maybe_unserialize($MetaData);
241
  $icon = get_term_meta(wpdm_query_var('tag_ID', 'int'), '__wpdm_icon', true);
242
  if($icon == '')
243
+ $icon = isset($MetaData[$_GET['tag_ID']]['icon'])?$MetaData[$_GET['tag_ID']]['icon']:'';
244
 
245
  ?>
 
 
 
 
246
 
247
+ <tr>
248
+ <td colspan="2">
249
+ <div class="form-field w3eden">
250
+ <div class="panel panel-default card-plain">
251
+ <div class="panel-heading">
252
+ <label><?php _e( 'Category Image:', 'download-manager' ); ?></label>
253
+ </div>
254
+ <div class="panel-body">
255
 
256
+ <div class="input-group">
257
+ <input type="text" id="catimurl" placeholder="<?php _e( "Image URL" , "download-manager" ); ?>" class="form-control" name="__wpdmcategory[icon]" value="<?php echo $icon; ?>">
258
+ <div class="input-group-btn">
259
+ <button data-uploader_button_text="Insert" data-uploader_title="<?php _e('Select Category Image', 'download-manager'); ?>" id="catim" type="button" class="btn btn-info"><?php _e('Browse', 'download-manager'); ?></button>
260
+ </div>
261
+ </div>
262
 
263
+ <script type="text/javascript">
264
 
265
+ jQuery(document).ready(function() {
266
 
267
+ var file_frame;
268
 
269
+ jQuery('body').on('click', '#catim', function( event ){
 
 
 
 
 
 
 
 
 
 
 
 
 
270
 
271
+ event.preventDefault();
 
 
 
 
 
272
 
273
+ // If the media frame already exists, reopen it.
274
+ if ( file_frame ) {
275
+ file_frame.open();
276
+ return;
277
+ }
278
 
279
+ // Create the media frame.
280
+ file_frame = wp.media.frames.file_frame = wp.media({
281
+ title: jQuery( this ).data( 'uploader_title' ),
282
+ button: {
283
+ text: jQuery( this ).data( 'uploader_button_text' )
284
+ },
285
+ multiple: false // Set to true to allow multiple files to be selected
286
+ });
287
 
288
+ // When an image is selected, run a callback.
289
+ file_frame.on( 'select', function() {
290
+ // We set multiple to false so only get one image from the uploader
291
+ attachment = file_frame.state().get('selection').first().toJSON();
292
+ var imgurl = attachment.url;
293
+ jQuery('#catimurl').val(imgurl);
294
 
295
+ });
296
 
297
+ // Finally, open the modal
298
+ file_frame.open();
299
+ return false;
300
+ });
301
 
302
 
 
 
 
 
303
 
 
304
 
 
305
 
306
+ jQuery('.del_adp').click(function(){
307
+ if(confirm('Are you sure?')){
308
+ jQuery('#'+jQuery(this).attr('rel')).fadeOut().remove();
309
+ }
 
 
 
 
 
 
 
310
 
311
+ });
 
 
312
 
313
+ });
 
 
314
 
315
+ </script>
316
+ </div>
317
+ </div>
318
+ </div>
319
+ <div class="form-field w3eden">
320
+ <div class="panel panel-default card-plain">
321
+ <div class="panel-heading">
322
+ <label><?php _e( 'Access:', 'wpdmcategory' ); ?></label>
323
+ </div>
324
+ <div class="panel-body">
325
+ <p class="description" style="margin-bottom: 10px"><?php _e( "Select the roles who should have access to the packages under this category" , "download-manager" ); ?></p>
326
+ <ul class="row">
327
+ <input name="__wpdmcategory[access][]" type="hidden" value="__wpdm__" />
328
+ <?php
329
 
330
+ $currentAccess = maybe_unserialize(get_term_meta(wpdm_query_var('tag_ID', 'int'), '__wpdm_access', true));
331
+ if(!is_array($currentAccess))
332
+ $currentAccess = isset($MetaData[$_GET['tag_ID']])?$MetaData[$_GET['tag_ID']]['access']:array();
333
 
334
+ $selz = '';
335
+ if( $currentAccess ) $selz = (in_array('guest',$currentAccess))?'checked=checked':'';
336
+ ?>
337
 
338
+ <li class="col-md-4"><label><input name="__wpdmcategory[access][]" type="checkbox" value="guest" <?php echo $selz ?>><?php echo __( "All Visitors" , "download-manager" ); ?></label></li>
339
+ <?php
340
+ global $wp_roles;
341
+ $roles = array_reverse($wp_roles->role_names);
342
+ foreach( $roles as $role => $name ) {
343
 
344
 
345
 
346
+ if( $currentAccess ) $sel = (in_array($role,$currentAccess))?'checked=checked':'';
347
+ else $sel = '';
348
+
349
+
350
+
351
+ ?>
352
+ <li class="col-md-4"><label><input name="__wpdmcategory[access][]" type="checkbox" value="<?php echo $role; ?>" <?php echo $sel ?>> <?php echo $name; ?></label></li>
353
+ <?php } ?>
354
+ </ul>
355
+ </div>
356
+ </div>
357
+ </div>
358
+
359
+ <?php if(!file_exists(get_stylesheet_directory().'/taxonomy-wpdmcategory.php') && !file_exists(get_template_directory().'/taxonomy-wpdmcategory.php')){
360
+ $style_global = get_option('__wpdm_cpage_style', 'basic');
361
+ $style = get_term_meta(wpdm_query_var('tag_ID', 'int'), '__wpdm_style', true);
362
+ if(!$style) $style = 'global';
363
+ $style = in_array($style, ['basic', 'ltpl', 'global']) ? $style : $style_global;
364
+ ?>
365
+ <div class="form-field w3eden">
366
+ <div class="panel panel-default card-plain panel-plain">
367
+ <div class="panel-heading"><?php echo __( "Category Page Template" , "download-manager" ); ?></div>
368
+ <div class="panel-body">
369
+ <div class="panel panel-default panel-light" id="cpi">
370
+ <label class="panel-heading" style="display: block;border-bottom: 1px solid #e5e5e5;margin-bottom: -1px"><input type="radio" disabled="disabled" name="__wpdmcategory[style]" value="basic"> <?php echo __( "Use Global", "download-manager" ) ?></label>
371
+ <label class="panel-heading" style="display: block;border-bottom: 1px solid #ddd;border-top: 1px solid #ddd;border-radius: 0;"><input type="radio" name="__wpdmcategory[style]" <?php checked($style,'basic'); ?> value="basic"> <?php echo __( "Do Not Apply", "download-manager" ) ?></label>
372
+ <div class="panel-body">
373
+ <?php echo __( "Keep current template as it is provided with the active theme", "download-manager" ); ?>
374
+ </div>
375
+ <label class="panel-heading" style="display: block;border-bottom: 1px solid #ddd;border-top: 1px solid #ddd;border-radius: 0;"><input type="radio" name="__wpdmcategory[style]" <?php checked($style,'ltpl'); ?> value="ltpl"> <?php echo __( "Use Link Template", "download-manager" ) ?></label>
376
+ <div class="panel-body">
377
+ <?php
378
+
379
+ $cpage_global = maybe_unserialize(get_option('__wpdm_cpage'));
380
+ $cpage_global = !is_array($cpage_global) ? [ 'template' => 'link-template-default', 'cols' => 2, 'colsphone' => 1, 'colspad' => 1, 'heading' => 1 ] : $cpage_global;
381
+ $cpage = maybe_unserialize(get_term_meta(wpdm_query_var('tag_ID', 'int'), '__wpdm_pagestyle', true));
382
+ $cpage = !is_array($cpage) ? $cpage_global : $cpage;
383
+ ?>
384
+
385
+ <div class="form-group">
386
+ <div class="row">
387
+ <div class="col-md-4">
388
+ <label><?php echo __( "Link Template:" , "download-manager" ); ?></label><br/>
389
+ <?php
390
+ echo WPDM()->packageTemplate->dropdown(array('name' => '__wpdmcategory[pagestyle][template]', 'selected' => $cpage['template'], 'class' => 'form-control wpdm-custom-select' ));
391
+ ?>
392
+ </div>
393
+ <div class="col-md-4">
394
+ <label><?php echo __( "Items Per Page:" , "download-manager" ); ?></label><br/>
395
+ <input type="number" class="form-control" name="__wpdmcategory[pagestyle][items_per_page]" value="<?php echo isset($cpage['items_per_page']) ? $cpage['items_per_page'] : 12; ?>">
396
+ </div>
397
+ <div class="col-md-4">
398
+ <label><?php echo __( "Toolbar:" , "download-manager" ); ?></label>
399
+ <div class="input-group" style="display: flex">
400
+ <label class="form-control" style="margin: 0;"><input type="radio" name="__wpdmcategory[pagestyle][heading]" value="1" <?php checked($cpage['heading'], 1); ?>> <?php echo __( "Show", "download-manager" ) ?></label>
401
+ <label class="form-control" style="margin: 0 0 0 -1px;"><input type="radio" name="__wpdmcategory[pagestyle][heading]" value="0" <?php checked($cpage['heading'], 0); ?>> <?php echo __( "Hide", "download-manager" ) ?></label>
402
+ </div>
403
+ </div>
404
+ </div>
405
+ </div>
406
+ <div class="form-group">
407
+ <label><?php echo __( "Number of Columns", "download-manager" ) ?>:</label>
408
+ <div class="row">
409
+ <div class="col-md-4">
410
+ <div class="input-group">
411
+ <select class="form-control wpdm-custom-select" name="__wpdmcategory[pagestyle][cols]">
412
+ <option value="1">1 Col</option>
413
+ <option value="2" <?php selected(2, $cpage['cols']) ?> >2 Cols</option>
414
+ <option value="3" <?php selected(3, $cpage['cols']) ?> >3 Cols</option>
415
+ <option value="4" <?php selected(4, $cpage['cols']) ?> >4 Cols</option>
416
+ <option value="6" <?php selected(6, $cpage['cols']) ?>>6 Cols</option>
417
+ <option value="12" <?php selected(12, $cpage['cols']) ?>>12 Cols</option>
418
+ </select><div class="input-group-addon">
419
+ <i class="fa fa-laptop"></i>
420
+ </div>
421
+ </div>
422
+ </div>
423
+ <div class="col-md-4">
424
+ <div class="input-group">
425
+ <select class="form-control wpdm-custom-select" name="__wpdmcategory[pagestyle][colspad]">
426
+ <option value="1">1 Col</option>
427
+ <option value="2" <?php selected(2, $cpage['colspad']) ?> >2 Cols</option>
428
+ <option value="3" <?php selected(3, $cpage['colspad']) ?> >3 Cols</option>
429
+ <option value="4" <?php selected(4, $cpage['colspad']) ?> >4 Cols</option>
430
+ <option value="6" <?php selected(6, $cpage['colspad']) ?>>6 Cols</option>
431
+ <option value="12" <?php selected(12, $cpage['colspad']) ?>>12 Cols</option>
432
+ </select><div class="input-group-addon">
433
+ <i class="fa fa-tablet-alt"></i>
434
+ </div>
435
+ </div>
436
+ </div>
437
+ <div class="col-md-4">
438
+ <div class="input-group">
439
+ <select class="form-control wpdm-custom-select" name="__wpdmcategory[pagestyle][colsphone]">
440
+ <option value="1">1 Col</option>
441
+ <option value="2" <?php selected(2, $cpage['colsphone']) ?> >2 Cols</option>
442
+ <option value="3" <?php selected(3, $cpage['colsphone']) ?> >3 Cols</option>
443
+ <option value="4" <?php selected(4, $cpage['colsphone']) ?> >4 Cols</option>
444
+ <option value="6" <?php selected(6, $cpage['colsphone']) ?>>6 Cols</option>
445
+ <option value="12" <?php selected(12, $cpage['colsphone']) ?>>12 Cols</option>
446
+ </select><div class="input-group-addon">
447
+ <i class="fa fa-mobile"></i>
448
+ </div>
449
+ </div>
450
+ </div>
451
+ </div>
452
+ </div>
453
+ </div>
454
+ </div>
455
+
456
+
457
+ </div>
458
+ <style>select{min-width: auto !important;}</style>
459
+ </div>
460
+ </div>
461
+ <?php } ?>
462
  </td>
463
  </tr>
464
+
465
  <?php
466
  }
467
 
470
  //$MetaData = get_option( "__wpdmcategory" );
471
  //$MetaData = maybe_unserialize($MetaData);
472
  foreach ($_POST['__wpdmcategory'] as $metaKey => $metaValue){
473
+ update_term_meta($term_id, "__wpdm_".$metaKey, $metaValue);
474
  }
475
  //$MetaData[$term_id] = $_POST['__wpdmcategory'];
476
  //update_option( "__wpdmcategory", $MetaData );
477
  }
478
  }
479
 
480
+ }
admin/menus/class.Packages.php CHANGED
@@ -23,12 +23,14 @@ class Packages
23
 
24
  add_action( 'quick_edit_custom_box', array($this, 'quickEditForm'), 10, 2 );
25
 
 
 
26
 
27
  }
28
 
29
  function savePackage($post)
30
  {
31
- if(!current_user_can('edit_posts', $post)) return;
32
  if (get_post_type() != 'wpdmpro' || !isset($_POST['file'])) return;
33
 
34
  // Deleted old zipped file
@@ -47,7 +49,7 @@ class Packages
47
  foreach ($_POST['file'] as $meta_key => $meta_value) {
48
  $key_name = "__wpdm_" . $meta_key;
49
  if($meta_key == 'package_dir' && $meta_value != '') { $meta_value = realpath($meta_value); }
50
- if($meta_key == 'package_size' && doubleval($meta_value) == 0) $meta_value = "";
51
  if($meta_key == 'files') $meta_value = array_unique($meta_value);
52
  if($meta_key == 'files'){
53
  foreach ($meta_value as &$value){
@@ -80,16 +82,16 @@ class Packages
80
  $ext = explode('.', $name);
81
  $ext = end($ext);
82
  $ext = strtolower($ext);
83
- if(in_array($ext, array('php', 'js', 'html', 'py', 'pl', 'htaccess'))) die('-3');
84
 
85
- if(file_exists(UPLOAD_DIR.$name) && get_option('__wpdm_overwrrite_file',0)==1){
86
  @unlink(UPLOAD_DIR.$name);
87
  }
88
  if(file_exists(UPLOAD_DIR.$name) && !isset($_REQUEST["chunks"]))
89
  $filename = time().'wpdm_'.$name;
90
  else
91
  $filename = $name;
92
-
93
  do_action("wpdm_before_upload_file", $_FILES['package_file']);
94
 
95
  if(get_option('__wpdm_sanitize_filename', 0) == 1)
@@ -209,9 +211,27 @@ class Packages
209
  }
210
 
211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
 
213
 
214
 
 
215
 
216
 
217
- }
23
 
24
  add_action( 'quick_edit_custom_box', array($this, 'quickEditForm'), 10, 2 );
25
 
26
+ add_action('admin_footer', array($this, 'footerScripts'));
27
+
28
 
29
  }
30
 
31
  function savePackage($post)
32
  {
33
+ if(!current_user_can('edit_post', $post)) return;
34
  if (get_post_type() != 'wpdmpro' || !isset($_POST['file'])) return;
35
 
36
  // Deleted old zipped file
49
  foreach ($_POST['file'] as $meta_key => $meta_value) {
50
  $key_name = "__wpdm_" . $meta_key;
51
  if($meta_key == 'package_dir' && $meta_value != '') { $meta_value = realpath($meta_value); }
52
+ if($meta_key == 'package_size' && (double)$meta_value == 0) $meta_value = "";
53
  if($meta_key == 'files') $meta_value = array_unique($meta_value);
54
  if($meta_key == 'files'){
55
  foreach ($meta_value as &$value){
82
  $ext = explode('.', $name);
83
  $ext = end($ext);
84
  $ext = strtolower($ext);
85
+ if(in_array($ext, array('php', 'js', 'html', 'py', 'pl', 'htaccess', 'svg', 'shtml', 'html5'))) die('-3');
86
 
87
+ if(file_exists(UPLOAD_DIR.$name) && get_option('__wpdm_overwrrite_file',0) == 1){
88
  @unlink(UPLOAD_DIR.$name);
89
  }
90
  if(file_exists(UPLOAD_DIR.$name) && !isset($_REQUEST["chunks"]))
91
  $filename = time().'wpdm_'.$name;
92
  else
93
  $filename = $name;
94
+
95
  do_action("wpdm_before_upload_file", $_FILES['package_file']);
96
 
97
  if(get_option('__wpdm_sanitize_filename', 0) == 1)
211
  }
212
 
213
 
214
+ function footerScripts(){
215
+ global $pagenow;
216
+
217
+ if($pagenow === 'themes.php' || $pagenow === 'theme-install.php'){
218
+ if(!file_exists(ABSPATH.'/wp-content/themes/attire/')) {
219
+ ?>
220
+ <script>
221
+ jQuery(function ($) {
222
+ $('.page-title-action').after('<a href="<?php echo admin_url('/theme-install.php?search=attire'); ?>" class="hide-if-no-js page-title-action" style="border: 1px solid #0f9cdd;background: #13aef6;color: #ffffff;">Suggested Theme</a>');
223
+ });
224
+ </script>
225
+ <?php
226
+ }
227
+ }
228
+
229
+ }
230
+
231
+
232
 
233
 
234
 
235
+ }
236
 
237
 
 
admin/menus/class.Settings.php CHANGED
@@ -123,6 +123,7 @@ class Settings
123
  '__wpdm_download_resume' => 'int',
124
  '__wpdm_support_output_buffer' => 'int',
125
  '__wpdm_open_in_browser' => 'int',
 
126
  '_wpdm_recaptcha_site_key' => 'txt',
127
  '_wpdm_recaptcha_secret_key' => 'txt',
128
  '__wpdm_login_url' => 'int',
@@ -142,6 +143,9 @@ class Settings
142
  update_option($optn, $optv);
143
  }
144
  }
 
 
 
145
  if (!isset($_POST['__wpdm_skip_locks'])) delete_option('__wpdm_skip_locks');
146
  if (!isset($_POST['__wpdm_login_form'])) delete_option('__wpdm_login_form');
147
  if (!isset($_POST['__wpdm_cat_desc'])) delete_option('__wpdm_cat_desc');
@@ -254,7 +258,7 @@ class Settings
254
  if(isset($_POST['section']) && $_POST['section']=='cloud-storage' && isset($_POST['task']) && $_POST['task']=='wdm_save_settings' && current_user_can(WPDM_ADMIN_CAP)){
255
 
256
  if(!wp_verify_nonce($_POST['__wpdms_nonce'], NONCE_KEY)) die(__('Security token is expired! Refresh the page and try again.', 'download-manager'));
257
-
258
  foreach($_POST as $k => $v){
259
  if(strpos("__".$k, '_wpdm_')){
260
  update_option($k, wpdm_sanitize_array($v));
@@ -287,7 +291,7 @@ class Settings
287
  Session::clear('__wpdm_download_url');
288
  $access_token = wpdm_access_token();
289
  if($access_token != '') {
290
- $purchased_items = remote_get('https://www.wpdownloadmanager.com/?wpdmppaction=getpurchaseditems&wpdm_access_token=' . $access_token);
291
  $ret = json_decode($purchased_items);
292
  update_option('__wpdm_purchased_items', $purchased_items);
293
  die('<script>location.href=location.href;</script>Login successful. Refreshing...');
@@ -308,7 +312,7 @@ class Settings
308
  if (isset($purchased_items->error)) $purchased_items->error = str_replace("[redirect]", admin_url("edit.php?post_type=wpdmpro&page=settings&tab=plugin-update"), $purchased_items->error);
309
  }
310
  if(get_option('__wpdm_freeaddons') == '' || wpdm_query_var('newpurchase') != '' || 1) {
311
- $freeaddons = remote_get('https://www.wpdownloadmanager.com/?wpdm_api_req=getPackageList&cat_id=1148');
312
  update_option('__wpdm_freeaddons', $freeaddons);
313
  }
314
  $freeaddons = json_decode(get_option('__wpdm_freeaddons'));
@@ -331,4 +335,4 @@ class Settings
331
  }
332
 
333
 
334
- }
123
  '__wpdm_download_resume' => 'int',
124
  '__wpdm_support_output_buffer' => 'int',
125
  '__wpdm_open_in_browser' => 'int',
126
+ '__wpdm_mask_link' => 'int',
127
  '_wpdm_recaptcha_site_key' => 'txt',
128
  '_wpdm_recaptcha_secret_key' => 'txt',
129
  '__wpdm_login_url' => 'int',
143
  update_option($optn, $optv);
144
  }
145
  }
146
+
147
+ WPDM()->apply->sfbAccess();
148
+
149
  if (!isset($_POST['__wpdm_skip_locks'])) delete_option('__wpdm_skip_locks');
150
  if (!isset($_POST['__wpdm_login_form'])) delete_option('__wpdm_login_form');
151
  if (!isset($_POST['__wpdm_cat_desc'])) delete_option('__wpdm_cat_desc');
258
  if(isset($_POST['section']) && $_POST['section']=='cloud-storage' && isset($_POST['task']) && $_POST['task']=='wdm_save_settings' && current_user_can(WPDM_ADMIN_CAP)){
259
 
260
  if(!wp_verify_nonce($_POST['__wpdms_nonce'], NONCE_KEY)) die(__('Security token is expired! Refresh the page and try again.', 'download-manager'));
261
+
262
  foreach($_POST as $k => $v){
263
  if(strpos("__".$k, '_wpdm_')){
264
  update_option($k, wpdm_sanitize_array($v));
291
  Session::clear('__wpdm_download_url');
292
  $access_token = wpdm_access_token();
293
  if($access_token != '') {
294
+ $purchased_items = wpdm_remote_get('https://www.wpdownloadmanager.com/?wpdmppaction=getpurchaseditems&wpdm_access_token=' . $access_token);
295
  $ret = json_decode($purchased_items);
296
  update_option('__wpdm_purchased_items', $purchased_items);
297
  die('<script>location.href=location.href;</script>Login successful. Refreshing...');
312
  if (isset($purchased_items->error)) $purchased_items->error = str_replace("[redirect]", admin_url("edit.php?post_type=wpdmpro&page=settings&tab=plugin-update"), $purchased_items->error);
313
  }
314
  if(get_option('__wpdm_freeaddons') == '' || wpdm_query_var('newpurchase') != '' || 1) {
315
+ $freeaddons = wpdm_remote_get('https://www.wpdownloadmanager.com/?wpdm_api_req=getPackageList&cat_id=1148');
316
  update_option('__wpdm_freeaddons', $freeaddons);
317
  }
318
  $freeaddons = json_decode(get_option('__wpdm_freeaddons'));
335
  }
336
 
337
 
338
+ }
admin/menus/class.Templates.php CHANGED
@@ -192,7 +192,7 @@ class Templates
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)?$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) {
@@ -242,4 +242,4 @@ class Templates
242
  echo "OK";
243
  die();
244
  }
245
- }
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) {
242
  echo "OK";
243
  die();
244
  }
245
+ }
admin/tpls/asset-manager-picker.php ADDED
@@ -0,0 +1,1085 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if(!defined('ABSPATH')) die('Error!');
3
+ ?>
4
+ <!DOCTYPE html>
5
+ <html style="background: transparent">
6
+ <head>
7
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
8
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
9
+ <title><?php _e('Asset Manager Picker', 'download-manager') ?></title>
10
+
11
+ <link rel="stylesheet" href="<?php echo WPDM_BASE_URL; ?>assets/bootstrap3/css/bootstrap.css" />
12
+ <link rel="stylesheet" href="<?php echo WPDM_BASE_URL; ?>assets/css/admin-styles.css" />
13
+ <link href="<?php echo WPDM_BASE_URL . 'assets/fontawesome/css/all.css'; ?>" rel="stylesheet">
14
+ <script src="<?php echo includes_url(); ?>/js/jquery/jquery.js"></script>
15
+ <script src="<?php echo includes_url(); ?>/js/jquery/jquery.form.min.js"></script>
16
+ <script src="<?php echo WPDM_BASE_URL; ?>assets/bootstrap3/js/bootstrap.min.js"></script>
17
+ <script src="<?php echo WPDM_BASE_URL; ?>assets/js/front.js"></script>
18
+
19
+
20
+ <?php
21
+ \WPDM\libs\Apply::googleFont();
22
+ ?>
23
+ <style>
24
+ @import url("https://fonts.googleapis.com/css?family=Overpass+Mono&subset=latin");
25
+ html, body{
26
+ overflow: visible;
27
+ height: 100%;
28
+ width: 100%;
29
+ padding: 0;
30
+ margin: 0;
31
+ font-weight: 300;
32
+ font-size: 10pt;
33
+ font-family: var(--wpdm-font);
34
+ }
35
+ h4.modal-title{
36
+ font-weight: 700;
37
+ text-transform: uppercase;
38
+ letter-spacing: 1px;
39
+ color: #555555;
40
+ font-size: 11pt;
41
+ display: inline-block;
42
+ font-family: var(--wpdm-font);
43
+ }
44
+
45
+ .w3eden label{
46
+ font-weight: 400;
47
+ }
48
+ img{
49
+ max-width: 100%;
50
+ }
51
+ .modal-backdrop{
52
+ background: rgba(0,0,0,0.5);
53
+ }
54
+
55
+
56
+ .modal.fade{
57
+ opacity:1;
58
+ }
59
+ .modal.fade .modal-dialog {
60
+ -webkit-transform: translate(0);
61
+ -moz-transform: translate(0);
62
+ transform: translate(0);
63
+ }
64
+
65
+ .modal {
66
+ text-align: center;
67
+ padding: 0!important;
68
+ }
69
+
70
+ .wpdm-social-lock.btn {
71
+ display: block;
72
+ width: 100%;
73
+ }
74
+
75
+ @media (min-width: 768px) {
76
+ .modal:before {
77
+ content: '';
78
+ display: inline-block;
79
+ height: 100%;
80
+ vertical-align: middle;
81
+ margin-right: -4px;
82
+ }
83
+
84
+ .modal-dialog {
85
+ display: inline-block;
86
+ text-align: left;
87
+ vertical-align: middle;
88
+ }
89
+
90
+ .wpdm-social-lock.btn {
91
+ display: inline-block;
92
+ width: 47%;
93
+ }
94
+ }
95
+
96
+ @-moz-keyframes spin {
97
+ from { -moz-transform: rotate(0deg); }
98
+ to { -moz-transform: rotate(360deg); }
99
+ }
100
+ @-webkit-keyframes spin {
101
+ from { -webkit-transform: rotate(0deg); }
102
+ to { -webkit-transform: rotate(360deg); }
103
+ }
104
+ @keyframes spin {
105
+ from {transform:rotate(0deg);}
106
+ to {transform:rotate(360deg);}
107
+ }
108
+ .spin{
109
+ -webkit-animation-name: spin;
110
+ -webkit-animation-duration: 2000ms;
111
+ -webkit-animation-iteration-count: infinite;
112
+ -webkit-animation-timing-function: linear;
113
+ -moz-animation-name: spin;
114
+ -moz-animation-duration: 2000ms;
115
+ -moz-animation-iteration-count: infinite;
116
+ -moz-animation-timing-function: linear;
117
+ -ms-animation-name: spin;
118
+ -ms-animation-duration: 2000ms;
119
+ -ms-animation-iteration-count: infinite;
120
+ -ms-animation-timing-function: linear;
121
+
122
+ animation-name: spin;
123
+ animation-duration: 2000ms;
124
+ animation-iteration-count: infinite;
125
+ animation-timing-function: linear;
126
+ display: inline-block;
127
+ }
128
+
129
+
130
+ .w3eden .card-default {
131
+ border-radius: 3px;
132
+ margin-top: 10px !important;
133
+ }
134
+ .w3eden .card-default:last-child{
135
+ margin-bottom: 0 !important;
136
+ }
137
+ .w3eden .card-default .card-header{
138
+ letter-spacing: 0.5px;
139
+ font-weight: 600;
140
+ background-color: #f6f8f9;
141
+ }
142
+
143
+ .w3eden .card-default .card-footer{
144
+ background-color: #fafafa;
145
+ }
146
+
147
+ .btn{
148
+ outline: none !important;
149
+ }
150
+ .w3eden .card{
151
+ margin-bottom: 0;
152
+ }
153
+ .w3eden .modal-header{
154
+ border: 0;
155
+ }
156
+ .w3eden .modal-content{
157
+ box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
158
+ border: 0;
159
+ border-radius: 3px;
160
+ background: transparent;
161
+ overflow: hidden;
162
+ max-width: 100%;
163
+ }
164
+ .w3eden .modal-body{
165
+ max-height: calc(100vh - 210px);
166
+ overflow-y: auto;
167
+ padding: 0 !important;
168
+ }
169
+
170
+
171
+ .w3eden .input-group-lg .input-group-btn .btn{
172
+ border-top-right-radius: 4px !important;
173
+ border-bottom-right-radius: 4px !important;
174
+ }
175
+ .w3eden .wpforms-field-medium{
176
+ max-width: 100% !important;
177
+ width: 100% !important;
178
+ }
179
+
180
+ .w3eden .input-group.input-group-lg .input-group-btn .btn {
181
+ font-size: 11pt !important;
182
+ }
183
+
184
+
185
+ .close{
186
+ position: absolute;
187
+ z-index: 999999;
188
+ top: 5px;
189
+ right: 5px;
190
+ opacity: 0 !important;
191
+ }
192
+ .modal-content:hover .close{
193
+ opacity: 0.8 !important;
194
+ }
195
+ .close:hover .fa-times-circle{
196
+ color: #ff3c54 !important;
197
+ }
198
+ .close .fa-times-circle,
199
+ .close:hover .fa-times-circle,
200
+ .modal-content:hover .close,
201
+ .close{
202
+ -webkit-transition: ease-in-out 400ms;
203
+ -moz-transition: ease-in-out 400ms;
204
+ -ms-transition: ease-in-out 400ms;
205
+ -o-transition: ease-in-out 400ms;
206
+ transition: ease-in-out 400ms;
207
+ }
208
+
209
+ #filelist .panel-heading{
210
+ padding-right: 30px;
211
+ }
212
+ .w3eden #upfile .progress-bar-info {
213
+ background-color: var(--color-purple);
214
+ }
215
+ #breadcrumb,
216
+ .list-group-item,
217
+ .wpdm-file-locator,
218
+ .wpdm-dir-locator a.explore-dir{
219
+ font-family: 'Overpass Mono', sans-serif !important;
220
+ }
221
+ .well-file{
222
+ font-family: Montserrat,sans-serif;
223
+ font-size: 12px;
224
+ line-height: 28px;
225
+ }
226
+ .progress:after{
227
+ position: absolute;
228
+ color: rgba(0,0,0,0.3);
229
+ width: 100%;
230
+ text-align: center;
231
+ left: 0;
232
+ font-family: Montserrat,sans-serif;
233
+ font-size: 12px;
234
+ text-transform: uppercase;
235
+ }
236
+ .panel-file{
237
+ font-size: 12px;
238
+ }
239
+ .panel-file .media-body {
240
+ line-height: normal;
241
+ display: inline-block;
242
+ }
243
+ .item_label{
244
+ margin-top: 5px;
245
+ font-size: 9pt;
246
+ line-height: 1;
247
+ display: block;
248
+ font-weight: 600;
249
+ font-family: 'Overpass Mono';
250
+ letter-spacing: 0.5px;
251
+ color: #5e6a6d;
252
+ }
253
+
254
+ .w3eden .well .btn-sm{
255
+ padding: 8px 16px;
256
+ }
257
+ .panel-file .panel-footer{
258
+ text-align: center;
259
+ }
260
+ .modal *{
261
+ font-size: 10pt;
262
+ }
263
+
264
+ .w3eden .modal-content{
265
+ border-radius: 3px !important;
266
+ box-shadow: 0 0 25px rgba(0,0, 0, 0.2);
267
+ }
268
+ #drag-drop-area{
269
+ border: 0.2rem dashed #28c83599 !important;
270
+ border-radius: 5px;
271
+ font-family: "Overpass Mono", monospace;
272
+ color: rgba(0,0,0,0.2);
273
+ font-size: 14pt;
274
+ }
275
+ #drag-drop-area .btn{
276
+ font-family: "Overpass Mono", monospace;
277
+ border-radius: 500px;
278
+ }
279
+
280
+ #breadcrumb{
281
+ margin: 10px 0 10px;
282
+ font-size: 9pt;
283
+ color: #888888;
284
+ }
285
+
286
+ .w3eden .panel.wpdm-file-manager-panel{
287
+ border: 1px solid #e7eaea !important;
288
+ margin: 0 !important;
289
+ }
290
+ .w3eden .panel.wpdm-file-manager-panel .panel-heading{
291
+ /*background: linear-gradient(to bottom, rgb(253, 255, 255) 0%,rgb(240, 243, 243) 100%);*/
292
+ background: rgba(240, 243, 243, 0.3);
293
+ border-top: 1px solid #e7eaea !important;
294
+ border-bottom: 1px solid #e7eaea !important;
295
+ /*box-shadow: 2px 0 5px rgba(18, 150, 201, 0.09);*/
296
+
297
+ }
298
+ .panel-heading,
299
+ #breadcrumb a{
300
+ color: #aaaaaa;
301
+ text-transform: unset !important;
302
+ font-weight: 400;
303
+ }
304
+ #breadcrumb .fa{
305
+ color: #8896aa;
306
+ display: inline-block;
307
+ margin-top: -2px !important;
308
+ vertical-align: middle;
309
+ margin-right: 5px;
310
+ margin-left: 5px;
311
+ }
312
+ .panel-file .panel-body{
313
+ height: 130px;
314
+ text-align: center;
315
+ }
316
+ #scandir .file-row,
317
+ #scandir .dir-row{
318
+ padding: 10px 10px 10px 0;
319
+ border-bottom: 1px solid #eeeeee;
320
+ -webkit-transition: all ease-in-out 300ms;
321
+ -moz-transition: all ease-in-out 300ms;
322
+ -ms-transition: all ease-in-out 300ms;
323
+ -o-transition: all ease-in-out 300ms;
324
+ transition: all ease-in-out 300ms;
325
+ }
326
+ #scandir .file-row:hover, #scandir .dir-row:hover {
327
+ background: rgba(0,0,0,0.02);
328
+ -webkit-transition: all ease-in-out 300ms;
329
+ -moz-transition: all ease-in-out 300ms;
330
+ -ms-transition: all ease-in-out 300ms;
331
+ -o-transition: all ease-in-out 300ms;
332
+ transition: all ease-in-out 300ms;
333
+
334
+ }
335
+ img.icon{
336
+ width: 38px;
337
+ margin-right: 5px;
338
+ padding: 0 !important;
339
+ }
340
+ #scandir img{
341
+ box-shadow: none;
342
+ margin-bottom: 0;
343
+ }
344
+ .action-btns-ctrl{
345
+ line-height: 40px;
346
+ width: 32px;
347
+ text-align: center;
348
+ outline: none !important;
349
+ margin-right: 5px;
350
+ }
351
+ .action-btns {
352
+ opacity: 0 !important;
353
+ position: absolute !important;
354
+ z-index: -99;
355
+ right: 50px;
356
+ white-space: nowrap;
357
+ -webkit-transition: all ease-in-out 400ms;
358
+ -moz-transition: all ease-in-out 400ms;
359
+ -ms-transition: all ease-in-out 400ms;
360
+ -o-transition: all ease-in-out 400ms;
361
+ transition: all ease-in-out 400ms;
362
+ line-height: 40px;
363
+ }
364
+ .action-btns.action-btns-show{
365
+ opacity: 1 !important;
366
+ z-index: 999;
367
+ }
368
+
369
+ .action-btns .btn.btn-xs {
370
+ width: 32px;
371
+ height: 28px;
372
+ line-height: 26px;
373
+ padding: 0;
374
+ font-size: 8pt;
375
+ text-align: center;
376
+ border-radius: 5px;
377
+ }
378
+
379
+ img.fm-folder{
380
+ box-shadow: none;
381
+ width: 16px;
382
+ display: inline-block;
383
+ vertical-align: middle;
384
+ }
385
+ .wpdmfm-folder-tree{
386
+ padding: 0;
387
+ margin: 0;
388
+ }
389
+
390
+ .wpdmfm-folder-tree li{
391
+ list-style: none;
392
+ padding: 0;
393
+ margin: 0;
394
+ font-size: 12px;
395
+ color: #757f8d;
396
+ white-space: nowrap;
397
+ line-height: 20px;
398
+ }
399
+ .wpdmfm-folder-tree li > .handle{
400
+ background: url("<?php echo WPDM_BASE_URL.'assets/images/folder.svg' ?>") left center no-repeat;
401
+ background-size: 16px;
402
+ display: inline-block;
403
+ width: 20px;
404
+ height: 20px;
405
+ float: left;
406
+ cursor: pointer;
407
+ }
408
+ .wpdmfm-folder-tree ul{
409
+ margin-left: 18px !important;
410
+ padding-left: 0;
411
+ }
412
+ .wpdmfm-folder-tree li a:visited,
413
+ .wpdmfm-folder-tree li a:hover,
414
+ .wpdmfm-folder-tree li a{
415
+ color: #657989;
416
+ text-decoration: none;
417
+ font-family: var(--wpdm-font);
418
+ cursor: pointer;
419
+ }
420
+ .wpdmfm-folder-tree li a:hover{
421
+ color: #6075c8;
422
+ }
423
+ .wpdmfm-folder-tree li.expanded > .handle{
424
+ background: url("<?php echo WPDM_BASE_URL.'assets/images/folder-o.svg' ?>") left 2px no-repeat;
425
+ background-size: 16px;
426
+ }
427
+ .wpdmfm-folder-tree li.busy > .handle{
428
+ background: url("<?php echo WPDM_BASE_URL.'assets/images/spinner-bars.svg' ?>") left 2px no-repeat;
429
+ background-size: 16px;
430
+ }
431
+ .wpdm-dir-locator,
432
+ .wpdm-file-locator{
433
+ padding: 15px !important;
434
+ }
435
+ .wpdm-dir-locator{
436
+ background: rgba(240, 243, 243, 0.2);
437
+ border-right: 1px solid #e7eaea;
438
+ }
439
+
440
+ [data-simplebar]{
441
+ height: 500px;
442
+ overflow: auto;
443
+ min-width: 100%;
444
+ }
445
+ .wpdm-dir-locator .simplebar-content{
446
+ overflow-x: auto !important;
447
+ }
448
+ .wpdm-file-locator [data-simplebar]{
449
+ overflow-x: hidden !important;
450
+ }
451
+
452
+ #wpbody-content{
453
+ margin-bottom: 0 !important;
454
+ padding-bottom: 0 !important;
455
+ }
456
+
457
+ #mainfmc{
458
+ overflow: hidden;
459
+ }
460
+ .w3eden #mainfmc .btn{
461
+ text-transform: capitalize !important;
462
+ font-family: var(--wpdm-font) !important;
463
+ font-weight: 400 !important;
464
+ }
465
+
466
+ .w3eden .btn.btn-simple:not(:hover){
467
+ color: #7886a2;
468
+ border-color: #c9cfdb;
469
+ }
470
+
471
+ .w3eden .btn.btn-simple:hover { background-color: rgba(201, 207, 219, 0.2) !important; }
472
+ .w3eden .btn.btn-simple:hover:not(.btn-danger):not(.btn-info):not(.btn-primary):not(.btn-success){ color: #3c5382; }
473
+ .w3eden .btn.btn-simple.btn-success:hover { background-color: rgba(var(--color-success-rgb), 0.1) !important; }
474
+ .w3eden .btn.btn-simple.btn-primary:hover { background-color: rgba(var(--color-primary-rgb), 0.1) !important; }
475
+ .w3eden .btn.btn-simple.btn-danger:hover { background-color: rgba(var(--color-danger-rgb), 0.1) !important; }
476
+ .w3eden .btn.btn-simple.btn-info:hover { background-color: rgba(var(--color-info-rgb), 0.1) !important; }
477
+
478
+ .w3eden .btn.btn-simple:active {
479
+ box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.13);
480
+ }
481
+
482
+ #wpdmeditor{
483
+ position: absolute;
484
+ left: 0;
485
+ top: 0;
486
+ border: 0;
487
+ width: 100%;
488
+ height: 100%;
489
+ z-index: 9;
490
+ box-shadow: none;
491
+ border-radius: 0;
492
+ }
493
+ #wpdmeditor .panel-heading{
494
+ border-top: 0 !important;
495
+ }
496
+ #wpdmeditor .panel-heading,
497
+ #wpdmeditor .panel-footer{
498
+ border-radius: 0;
499
+ }
500
+ #wpdmeditor #filecontent_alt,
501
+ #wpdmeditor #filecontent{
502
+ height: calc(100% - 94px);
503
+ width: 100%;
504
+ padding: 30px;
505
+ overflow: auto;
506
+ font-family: "Overpass Mono", monospace;
507
+ border: 0;
508
+ background: transparent;
509
+ }
510
+ .CodeMirror.cm-s-default.CodeMirror-wrap{
511
+ height: calc(100% - 94px);
512
+ }
513
+ #wpdmeditor #filecontent_alt{
514
+ text-align: center;
515
+ }
516
+ #wpdmeditor #filecontent_alt img{
517
+ max-width: 100%;
518
+ }
519
+ #filewin{
520
+ -webkit-transition: all ease-in-out 400ms;
521
+ -moz-transition: all ease-in-out 400ms;
522
+ -ms-transition: all ease-in-out 400ms;
523
+ -o-transition: all ease-in-out 400ms;
524
+ transition: all ease-in-out 400ms;
525
+ border-right: 1px solid #eee;
526
+ }
527
+
528
+ .w3eden #__file_settings_tabs.nav.nav-tabs > li > a{
529
+ box-shadow: none !important;
530
+ border: 1px solid #e8e8e8;
531
+ padding: 8px 16px;
532
+ font-size: 10px;
533
+ font-weight: 400 !important;
534
+ }
535
+ .w3eden #__file_settings_tabs.nav.nav-tabs > li.active > a{
536
+ border-bottom: 1px solid #ffffff;
537
+ }
538
+ .w3eden #__file_settings_tabs.nav.nav-tabs > li:not(.active) > a{
539
+ background: #fafafa;
540
+ }
541
+
542
+ .w3eden #__asset_settings .form-control.input-lg{
543
+ border: 0;
544
+ background: #ffffff; text-align: center; font-family: "Overpass Mono", monospace;font-size: 11pt !important;box-shadow: none !important;
545
+ }
546
+ .w3eden #__asset_settings .panel-default{
547
+ border: 1px solid #e6e6e6;
548
+ }
549
+ .w3eden #__asset_settings .panel-default .panel-heading {
550
+ border-bottom: 1px solid #e6e6e6;
551
+ background: #fafafa;
552
+ }
553
+ .w3eden #__asset_settings .panel-default .panel-footer {
554
+ border-top: 1px solid #e6e6e6;
555
+ background: #fafafa;
556
+ }
557
+
558
+ .allow-roles label,
559
+ .w3eden #__asset_settings .tab-content *,
560
+ .w3eden #__asset_settings .tab-content{
561
+ font-size: 11px;
562
+ }
563
+ .allow-roles label{
564
+ font-weight: 400;
565
+ line-height: 16px;
566
+ }
567
+ .allow-roles label input{
568
+ margin: 0 5px !important;
569
+ }
570
+
571
+ #newcomment{
572
+ min-height: 50px;
573
+ font-size: 12px !important;
574
+ }
575
+
576
+ #__asset_comments .asset-comment{
577
+ border: 1px solid #e8e8e8;
578
+ margin: 5px 0;
579
+ border-radius: 3px;
580
+ padding: 15px;
581
+ }
582
+ #__asset_comments .asset-comment .avatar{
583
+ width: 32px;
584
+ height: auto;
585
+ border-radius: 500px;
586
+ }
587
+
588
+ .w3eden .modal-header .close.pull-right {
589
+ height: 16px;
590
+ line-height: 16px;
591
+ }
592
+
593
+ #__asset_links .asset-link{
594
+ margin: 5px 0;
595
+ border: 1px solid #e8e8e8;
596
+ border-radius: 3px !important;
597
+ }
598
+ #__asset_links .asset-link .form-control{
599
+ background: #ffffff;
600
+ border: 0 !important;
601
+ box-shadow: none !important;
602
+ }
603
+ #__asset_links .asset-link .input-group-addon{
604
+ border: 0 !important;
605
+ background: #ffffff;
606
+ padding-right: 0;
607
+ color: var(--color-info);
608
+ }
609
+ #__asset_links .asset-link .btn{
610
+ border: 0 !important;
611
+ background: #ffffff;
612
+ color: var(--color-success);
613
+ border-left: 1px solid #e8e8e8 !important;
614
+ z-index: 2;
615
+ }
616
+ #__asset_links .asset-link .btn .fa-trash.color-danger{
617
+ color: var(--color-danger) !important;
618
+ }
619
+
620
+ .w3eden #__asset_links .asset-link.input-group-lg > .form-control, .w3eden #__asset_links .asset-link.input-group-lg > .input-group-addon, .w3eden #__asset_links .asset-link.input-group-lg > .input-group-btn > .btn {
621
+ height: 36px;
622
+ padding: 8px 12px;
623
+ }
624
+
625
+ .wp-video{ margin: 0 auto !important; width: 100% !important; }
626
+ .wp-video-shortcode,
627
+ .wp-audio-shortcode {
628
+ margin: 15px 15px 10px 15px;
629
+ width: calc(100% - 30px) !important;
630
+ }
631
+ .wp-video-shortcode{
632
+ height: auto !important;
633
+ }
634
+
635
+ #filelist .panel.upcompleted .panel-heading::before {
636
+ content: "\f560";
637
+ position: absolute;
638
+ color: #41c441;
639
+ right: 10px;
640
+ font-family: "Font Awesome 5 Free";
641
+ transition: all ease-in-out 400ms;
642
+
643
+ }
644
+ #filelist .panel.upfailed .panel-heading::before {
645
+ content: "\f071";
646
+ position: absolute;
647
+ color: var(--color-red);
648
+ right: 10px;
649
+ font-family: "Font Awesome 5 Free";
650
+ transition: all ease-in-out 400ms;
651
+
652
+ }
653
+
654
+ </style>
655
+
656
+
657
+
658
+
659
+ <?php do_action("wpdm_modal_iframe_head"); ?>
660
+ </head>
661
+ <body class="w3eden" style="background: transparent">
662
+
663
+ <div class="modal fade" id="wpdm-asset-picker" tabindex="-1" role="dialog" aria-labelledby="wpdm-optinmagicLabel">
664
+ <div class="modal-dialog" role="document" style="width: 80%;max-width: calc(100% - 20px);">
665
+
666
+ <div class="modal-content">
667
+ <div class="modal-body">
668
+ <?php
669
+ global $current_user;
670
+ $root = \WPDM\AssetManager::root();
671
+ //$items = file_exists($root)?glob($root.'*', GLOB_ONLYDIR):array();
672
+ if(is_admin()){
673
+ ?>
674
+
675
+
676
+
677
+ <?php
678
+ }
679
+ ?>
680
+
681
+
682
+ <div class="w3eden" id="mainfmarea">
683
+ <?php do_action("wpdm_frontend_filemanager_top", ""); ?>
684
+ <div id="loadingfm" class="blockui" style="position: fixed;width: 100%;height: 100%;z-index: 99"></div>
685
+ <div id="mainfmc" class="panel panel-default wpdm-file-manager-panel" style="display: none;">
686
+ <div class="panel-body">
687
+ <div class="media well-sm well-file" style="margin: 0;padding: 0">
688
+ <div class="pull-right">
689
+ <button class="btn btn-primary btn-simple btn-sm ttip" title="Reload" id="reload"><i class="fa fa-sync"></i></button>
690
+ <button class="btn btn-danger btn-simple btn-sm" data-target="#wpdm-asset-picker" data-dismiss="modal" aria-label="Close"><i class="fa fa-times"></i></button>
691
+ </div>
692
+ <h3 style="display: inline-block;font-size: 12pt;letter-spacing: 0.5px;font-weight: 400;font-family: var(--wpdm-font)">
693
+ <i class="fas fa-photo-video text-primary"></i> <?php echo __( "Server File Picker", "download-manager" ) ?> <sup style="color: var(--color-info) !important;font-size: 10px;font-family: 'Overpass Mono', sans-serif !important;">BETA</sup>
694
+ </h3>
695
+ <?php /* if(!current_user_can('manage_options')){ ?>
696
+ <div class="media-body">
697
+ <div class="progress text-center" style="margin: 2px 0 0 5px;height: 27px;line-height: 27px;border-radius;border-radius: 2px;font-family: 'Overpass Mono', sans-serif !important;">
698
+ Used: <span id="disklimit"><i class="fa fa-sun fa-spin"></i></span> | Limit: <?php echo wpdm_user_space_limit(); ?> MB
699
+ <div title="15% Used" class="progress-bar progress-bar-success progress-bar-striped" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width:0%;line-height: 31px;font-size: 13px;overflow: visible">
700
+ </div>
701
+ </div>
702
+ </div>
703
+ <?php } */ ?>
704
+ </div>
705
+ </div>
706
+ <div class="panel-heading" style="border-radius: 0;border-top: 1px solid #dddddd">
707
+ <div id="ldn" style="float:right;font-size: 9pt;margin-top: 10px;display: none" class="text-danger"><i class="fa fa-sun fa-spin"></i> Loading...</div>
708
+ <div id="breadcrumb" style="margin: 0"></div>
709
+ </div>
710
+ <div class="panel-body-c" id="wpdmfm_explorer">
711
+
712
+ <div class="row" style="margin: 0">
713
+ <?php do_action("wpdm_frontend_filemanager_after_breadcrumb", ""); ?>
714
+ <div class="col-md-3 wpdm-dir-locator">
715
+ <div data-simplebar>
716
+ <ul class="wpdmfm-folder-tree" id="wpdmfm-folder-tree">
717
+ <li data-path="" id="<?php echo md5('home'); ?>" class="expand-dir"><i class="fa fa-hdd color-purple"></i> <a class="explore-dir" href="#" data-path=""> Home</a></li>
718
+ </ul>
719
+ </div>
720
+ </div>
721
+ <div class="col-md-6 wpdm-file-locator" id="filewin">
722
+ <div id="wpdmeditor" class="panel panel-default">
723
+ <div class="panel-heading"><div class="pull-right"><a id="close-editor" href="#"><i class="fa fa-times-circle text-muted"></i></a></div><span id="wpdmefn"></span></div>
724
+ <textarea id="filecontent"></textarea>
725
+ <div id="filecontent_alt" style="display: none"></div>
726
+ <div class="panel-footer text-right">
727
+ <button type="button" id="savefile" class="btn btn-primary"><i class="fa fa-save"></i> <?php echo __( "Save Changes", "download-manager" ) ?></button>
728
+ </div>
729
+ </div>
730
+ <div data-simplebar>
731
+ <div id="scandir">
732
+ </div>
733
+ </div>
734
+ </div>
735
+ <div class="col-md-3" id="cogwin" style="margin-right: 0;padding-right: 0;padding-left: 0;">
736
+ <div class="panel panel-default" style="border: 0;border-radius: 0">
737
+ <div class="panel-heading" style="border-radius: 0;border-top: 0 !important;margin-bottom: 1px !important;background: #fafafa;border-bottom: 1px solid #eeeeee !important;">
738
+ Selected File
739
+ </div>
740
+
741
+ <div class="list-group" id="__file_list">
742
+
743
+ <div class="list-group-item" v-for="(file, index) in files" :id="'file_' + index">
744
+ <div class="media">
745
+ <div class="media-body">
746
+ {{file.name}}
747
+ </div>
748
+ </div>
749
+ </div>
750
+
751
+ </div>
752
+ <div class="panel-footer" style="border-bottom: 1px solid #dddddd !important;border-radius: 0">
753
+ <button type="button" id="attach-files" class="btn btn-primary btn-block"><?php echo __( "Attach selected file", "download-manager" )?></button>
754
+ </div>
755
+
756
+ </div>
757
+ </div>
758
+ <?php do_action("wpdm_frontend_filemanager_bottom", ""); ?>
759
+ </div>
760
+
761
+ </div>
762
+ </div>
763
+
764
+
765
+
766
+ <div id="dirTPL" style="display: none">
767
+ <div class="dir-row">
768
+ <div class="row panel-file panel-folder">
769
+
770
+ <div class="col-md-12">
771
+ <div class="media-folder media" data-id="{{dirid}}" data-path="{{path}}" style="cursor: pointer">
772
+ <img class="icon pull-left" src="<?php echo plugins_url('download-manager/assets/file-type-icons/folder.png'); ?>" />
773
+ <div class="dir-info"><div class="item_label" title="{{item}}">{{item_label}}</div><small class="color-purple">{{note}}</small></div>
774
+ </div>
775
+ </div>
776
+ </div>
777
+ </div>
778
+ </div>
779
+
780
+ <div id="fileTPL" style="display: none">
781
+
782
+ <div class="file-row">
783
+ <div class="row panel-file file-tpl">
784
+ <div class="col-md-12 text-left btn-open-file c-pointer btn-add-queue" data-filetype="{{contenttype}}" data-path="{{path}}" data-label="{{item_label}}" data-target="{{path_on}}">
785
+
786
+ <div class="file-info media">
787
+ <img class="icon pull-left" src="{{icon}}" />
788
+ <div class="dir-info"><div class="item_label" title="{{item}}">{{item_label}}</div><small class="color-purple">{{note}}</small></div>
789
+ </div>
790
+ </div>
791
+ </div>
792
+ </div>
793
+
794
+ </div>
795
+
796
+ </div>
797
+
798
+ <script src="<?php echo WPDM_BASE_URL ?>assets/js/vue.min.js"></script>
799
+ <script src="<?php echo WPDM_BASE_URL ?>assets/js/simplebar.js"></script>
800
+ <link rel="stylesheet" href="<?php echo WPDM_BASE_URL ?>assets/css/simplebar.css">
801
+ <script>
802
+ var current_path = '', editor = '', opened = '', wpdmfm_selected_files = [], wpdmfm_active_asset_settings;
803
+ var ajaxurl = "<?php echo admin_url('/admin-ajax.php'); ?>";
804
+
805
+ var fileList = new Vue({
806
+ el: '#__file_list',
807
+ data: {
808
+ files: []
809
+ }
810
+ });
811
+
812
+ var linkSettings = new Vue({
813
+ el: '#__link_settings',
814
+ data: {
815
+ link: {
816
+ access: {
817
+ roles: ['guest'],
818
+ users:['admin']
819
+ }
820
+ }
821
+ },
822
+ methods: {
823
+ roleSelected: function (role) {
824
+ for(var i=0; i < this.link.access.roles.length; i++){
825
+ if( this.link.access.roles[i] == role){
826
+ return true
827
+ }
828
+ }
829
+ return false
830
+ }
831
+ }
832
+ });
833
+
834
+ /* View in fullscreen */
835
+ function openFullscreen(elementid) {
836
+ var elem = document.getElementById(elementid);
837
+ if (elem.requestFullscreen) {
838
+ elem.requestFullscreen();
839
+ } else if (elem.mozRequestFullScreen) { /* Firefox */
840
+ elem.mozRequestFullScreen();
841
+ } else if (elem.webkitRequestFullscreen) { /* Chrome, Safari and Opera */
842
+ elem.webkitRequestFullscreen();
843
+ } else if (elem.msRequestFullscreen) { /* IE/Edge */
844
+ elem.msRequestFullscreen();
845
+ }
846
+ }
847
+
848
+ jQuery(function ($) {
849
+
850
+ //$('#wpdmfm_explorer').css('height', (window.innerHeight - 190)+'px');
851
+
852
+ $('#mainfmc').fadeIn();
853
+ $('#loadingfm').hide();
854
+
855
+
856
+ function refresh_scandir(path) {
857
+ hide_editor();
858
+ $('#reload').attr('disabled', 'disabled').find('.fa').addClass('fa-spin');
859
+ WPDM.blockUI('#filewin');
860
+ $.get(ajaxurl, {__wpdm_scandir:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_scandir', path: path}, function (data) {
861
+ if(data.success === true) {
862
+ $('#scandir').html('');
863
+ var items = data.items;
864
+ $.each(items, function (index, entry) {
865
+ if (entry.type == 'file') {
866
+ var tpl = $('#fileTPL').html();
867
+ tpl = tpl.replace("{{icon}}", entry.icon);
868
+ tpl = tpl.replace("{{contenttype}}", entry.contenttype);
869
+ tpl = tpl.replace(/\{\{item_label\}\}/ig, entry.item_label);
870
+ tpl = tpl.replace("{{note}}", entry.note);
871
+ tpl = tpl.replace("{{file_size}}", entry.file_size);
872
+ tpl = tpl.replace(/\{\{path\}\}/ig, entry.path);
873
+ tpl = tpl.replace(/\{\{path_on\}\}/ig, entry.wp_rel_path);
874
+ tpl = tpl.replace(/\{\{item\}\}/ig, entry.item);
875
+ tpl = tpl.replace(/\{\{id\}\}/ig, index);
876
+ } else {
877
+ var tpl = $('#dirTPL').html();
878
+ tpl = tpl.replace("{{icon}}", entry.icon);
879
+ tpl = tpl.replace("{{item_label}}", entry.item_label);
880
+ tpl = tpl.replace("{{note}}", entry.note);
881
+ tpl = tpl.replace("{{file_size}}", entry.file_size);
882
+ tpl = tpl.replace(/\{\{path\}\}/ig, entry.path);
883
+ tpl = tpl.replace(/\{\{item\}\}/ig, entry.item);
884
+ tpl = tpl.replace(/\{\{id\}\}/ig, index);
885
+ tpl = tpl.replace(/\{\{dirid\}\}/ig, entry.id);
886
+ }
887
+ $('#scandir').append(tpl);
888
+ });
889
+ WPDM.unblockUI('#filewin');
890
+ $('#reload').removeAttr('disabled', 'disabled').html("<i class='fa fa-sync'></i>");
891
+ $('#breadcrumb').html(data.breadcrumb);
892
+ } else {
893
+ WPDM.pushNotify("Error!", data.message, 'https://cdn0.iconfinder.com/data/icons/small-n-flat/24/678080-shield-error-256.png', 'https://cdn0.iconfinder.com/data/icons/small-n-flat/24/678080-shield-error-256.png');
894
+ }
895
+ });
896
+ }
897
+
898
+ function hide_editor() {
899
+ $('#wpdmeditor').fadeOut();
900
+ if(editor == '') return;
901
+ editor.codemirror.toTextArea();
902
+ $('#filecontent').val('');
903
+ $('#wpdmeditor').addClass('blockui');
904
+ }
905
+
906
+ function hide_settings() {
907
+ $('#cogwin').hide();
908
+ $('#filewin').removeClass('col-md-6').addClass('col-md-9');
909
+ $('#cogwin > .panel').addClass('blockui');
910
+ }
911
+
912
+ function expand_dir(id) {
913
+ var $this = $('#'+id);
914
+ $this.addClass('busy');
915
+ var chid = "expanded_" + id;
916
+ var slide = 1;
917
+ var _ajaxurl = ajaxurl == undefined ? wpdm_url.ajax : ajaxurl;
918
+ $.get(_ajaxurl, {__wpdm_scandir:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_scandir', dirs: 1, path: $this.data('path')}, function (dirs){
919
+ if($("#"+chid).length == 1) {
920
+ $("#" + chid).remove();
921
+ slide = 0;
922
+ }
923
+
924
+ $this.append("<ul id='"+chid+"' style='display: none'></ul>");
925
+ $.each(dirs, function (id, dir) {
926
+ $('#'+chid).append("<li class='expand-dir' id='"+dir.id+"' data-path='"+dir.path+"'><span class='handle'></span><a href='#' class='explore-dir' data-path='"+dir.path+"'>"+dir.item_label+"</a></li>");
927
+ });
928
+ $this.removeClass('busy').addClass('expanded');
929
+ if(slide == 1)
930
+ $('#'+chid).slideDown();
931
+ else
932
+ $('#'+chid).show();
933
+ });
934
+ }
935
+
936
+
937
+
938
+ $('#reload').on('click', function () {
939
+ refresh_scandir(current_path);
940
+ });
941
+
942
+ $('body').on('click', '#attach-files', function(){
943
+ window.parent.attach_server_files(fileList.files);
944
+ jQuery('#wpdm-asset-picker').modal('hide');
945
+ });
946
+
947
+ $('body').on('click', '#close-editor', function (e) {
948
+ e.preventDefault();
949
+ hide_editor();
950
+ });
951
+
952
+ /*$('body').on('click', '#close-settings', function (e) {
953
+ e.preventDefault();
954
+ hide_settings();
955
+ });*/
956
+
957
+
958
+
959
+ $('body').on('click', '.media-folder', function (e) {
960
+ e.preventDefault();
961
+ current_path = $(this).data('path');
962
+ refresh_scandir(current_path);
963
+ expand_dir($(this).data('id'));
964
+ });
965
+
966
+
967
+ $('body').on('click', '.btn-add-queue', function (e) {
968
+ e.preventDefault();
969
+ if($(this).data('queued') === undefined) {
970
+ var file_path = $(this).data('target');
971
+ var file_name = $(this).data('label');
972
+ fileList.files = [{path: file_path, name: file_name}];
973
+ }
974
+ $(this).data('queued', 1);
975
+ console.log(fileList.files);
976
+ });
977
+
978
+ $('body').on('click', '.btn-remove-file', function (e) {
979
+ e.preventDefault();
980
+ fileList.files.splice($(this).data('target'), 1);
981
+ //$(this).data('queued', 1);
982
+ });
983
+
984
+ $('body').on('click', '.expand-dir > .handle, .explore-dir', function (e) {
985
+ e.preventDefault();
986
+
987
+ var $this = $(this).parent('.expand-dir');
988
+ var chid = "expanded_"+$(this).parent('.expand-dir').attr('id');
989
+
990
+ if ($(this).hasClass('explore-dir')){
991
+ current_path = $this.data('path');
992
+ refresh_scandir($this.data('path'));
993
+ }
994
+
995
+ if($this.hasClass('expanded') && !$(this).hasClass('explore-dir')){
996
+ $('#'+chid).slideUp(function () {
997
+ $(this).remove();
998
+ $this.removeClass('expanded');
999
+ });
1000
+ return false;
1001
+ }
1002
+
1003
+ $this.addClass('busy');
1004
+
1005
+ expand_dir($(this).parent('.expand-dir').attr('id'));
1006
+ });
1007
+
1008
+ var uacc = '';
1009
+
1010
+ function split(val) {
1011
+ return val.split(/,\s*/);
1012
+ }
1013
+
1014
+ function extractLast(term) {
1015
+ return split(term).pop();
1016
+ }
1017
+
1018
+
1019
+ refresh_scandir('');
1020
+ expand_dir('<?php echo md5('home'); ?>');
1021
+
1022
+ $('.ttip').tooltip();
1023
+
1024
+
1025
+ });
1026
+
1027
+ </script>
1028
+
1029
+
1030
+
1031
+ </div>
1032
+
1033
+ </div>
1034
+
1035
+ </div>
1036
+ <?php
1037
+
1038
+ ?>
1039
+ </div>
1040
+
1041
+ <script>
1042
+
1043
+ jQuery(function ($) {
1044
+
1045
+ $('a').each(function () {
1046
+ $(this).attr('target', '_blank');
1047
+ });
1048
+
1049
+ $('body').on('click','a', function () {
1050
+ $(this).attr('target', '_blank');
1051
+ });
1052
+
1053
+ $('#wpdm-asset-picker').on('hidden.bs.modal', function (e) {
1054
+ var parentWindow = document.createElement("a");
1055
+ parentWindow.href = document.referrer.toString();
1056
+ if(parentWindow.hostname === window.location.hostname)
1057
+ window.parent.hide_asset_picker_frame();
1058
+ else
1059
+ window.parent.postMessage({'task': 'hideiframe'}, "*");
1060
+ });
1061
+
1062
+ $(window).on('resize', function () {
1063
+ $('#wpdm-asset-picker .modal-content').css('height', (window.innerHeight - 200) + 'px');
1064
+ jQuery('#wpdm-asset-picker [data-simplebar]').css('height', (window.innerHeight - 345) + 'px');
1065
+ });
1066
+
1067
+
1068
+ });
1069
+
1070
+ function showModal() {
1071
+ jQuery('#wpdm-asset-picker').modal('show');
1072
+ jQuery('#wpdm-asset-picker .modal-content').css('height', (window.innerHeight - 200) + 'px');
1073
+ jQuery('#wpdm-asset-picker [data-simplebar]').css('height', (window.innerHeight - 345) + 'px');
1074
+
1075
+ }
1076
+ showModal();
1077
+ </script>
1078
+ <div style="display: none">
1079
+
1080
+ <?php do_action("wpdm_modal_iframe_footer"); ?>
1081
+ </div>
1082
+ </body>
1083
+ </html>
1084
+
1085
+
admin/tpls/email-templates/wpdm-new-user.html CHANGED
@@ -1,103 +1,103 @@
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>
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 CHANGED
@@ -1,112 +1,112 @@
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>
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 CHANGED
@@ -1,11 +1,13 @@
1
- <div id="ftabs" class="w3eden">
 
2
  <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" />
3
- <div style="padding: 10px;">
4
- <div class="cfile" id="cfl" style="padding: 10px;border:2px solid #ddd;background: #ffffff">
5
  <?php
6
  $filesize = "<em style='color: darkred'>( ".__("attached file is missing/deleted",'download-manager')." )</em>";
7
  $afile = is_array($afiles)&&isset($afiles[0])?$afiles[0]:'';
8
  $afile = trim($afile);
 
9
  if($afile !=''){
10
 
11
  if(strpos($afile, "://")){
@@ -15,6 +17,8 @@
15
  else {
16
  if (file_exists(UPLOAD_DIR . '/' . $afile))
17
  $filesize = number_format(filesize(UPLOAD_DIR . '/' . $afile) / 1025, 2) . " KB";
 
 
18
  else if (file_exists($afile))
19
  $filesize = number_format(filesize($afile) / 1025, 2) . " KB";
20
  }
@@ -29,23 +33,15 @@
29
  <a href="#" id="dcf" title="Delete Current File" class="pull-right" style="font-size:24px">
30
  <i class="fa fa-trash color-red"></i>
31
  </a>
32
- <div class="media-body"><strong><?php echo basename($afile); ?></strong><br><?php echo wpdm_file_size($afile); ?></div>
33
  </div>
34
 
35
  <?php } else echo "<span style='font-weight:bold;color:#ddd'>". __('No file uploaded yet!', 'download-manager')."</span>"; ?>
36
  <div style="clear: both;"></div>
37
  </div>
38
- </div>
39
 
40
- <ul class="nav nav-tabs">
41
- <li class="active"><a href="#upload" data-toggle="tab"><?php _e('Upload', 'download-manager'); ?></a></li>
42
- <?php if(current_user_can('access_server_browser')){ ?>
43
- <li><a href="#browse" data-toggle="tab"><?php _e('Browse', 'download-manager'); ?></a></li>
44
- <?php } ?>
45
- <li><a href="#remote" role="tab" data-toggle="tab"><?php echo __('URL','wpdmpro'); ?></a></li>
46
- </ul>
47
- <div class="tab-content">
48
- <div class="tab-pane active" id="upload">
49
  <div id="plupload-upload-ui" class="hide-if-no-js">
50
  <div id="drag-drop-area">
51
  <div class="drag-drop-inside" style="margin-top: 40px">
@@ -77,6 +73,8 @@
77
  // additional post data to send to our ajax hook
78
  'multipart_params' => array(
79
  '_ajax_nonce' => wp_create_nonce(NONCE_KEY),
 
 
80
  'action' => 'wpdm_admin_upload_file', // the ajax action name
81
  ),
82
  );
@@ -166,49 +164,103 @@
166
  </div>
167
 
168
 
169
- <div id="browse" class="tab-pane">
170
- <?php if(current_user_can('access_server_browser')) wpdm_file_browser(); ?>
171
- </div>
172
- <div class="tab-pane" id="remote" class="w3eden">
173
- <div class="input-group"><input type="url" id="rurl" class="form-control" placeholder="Insert URL"><span class="input-group-btn"><button type="button" id="rmta" class="btn btn-default"><i class="fa fa-plus-circle"></i></button></span></div>
174
- </div>
175
- </div>
176
- </div>
177
-
178
  <script>
179
- jQuery(function(){
180
- //jQuery( "#ftabs" ).tabs();
181
-
182
- jQuery('#rmta').click(function(){
183
  var ID = 'file_' + parseInt(Math.random()*1000000);
184
- var file = jQuery('#rurl').val();
185
  var filename = file;
186
- jQuery('#rurl').val('');
187
  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){
188
  alert("Invalid url");
189
  return false;
190
  }
191
 
192
- jQuery('#wpdmfile').val(file);
193
- jQuery('#cfl').html('<div><strong>'+file+'</strong>').slideDown();
194
 
195
 
196
  });
197
 
198
 
199
 
200
- jQuery('body').on('click', '#dcf', function(){
201
  if(!confirm('<?php _e('Are you sure?','download-manager'); ?>')) return false;
202
- jQuery('#wpdmfile').val('');
203
- jQuery('#cfl').html('<?php _e('<div class="w3eden"><div class="text-danger"><i class="fa fa-check-circle"></i> Removed!</div></div>','download-manager'); ?>');
204
  });
205
 
206
 
207
 
208
 
209
  });
210
-
211
  </script>
212
- <?php
213
 
214
- do_action("wpdm_attach_file_metabox");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
  if($afile !=''){
12
 
13
  if(strpos($afile, "://")){
17
  else {
18
  if (file_exists(UPLOAD_DIR . '/' . $afile))
19
  $filesize = number_format(filesize(UPLOAD_DIR . '/' . $afile) / 1025, 2) . " KB";
20
+ else if (file_exists(ABSPATH.$afile))
21
+ $filesize = number_format(filesize(ABSPATH.$afile) / 1025, 2) . " KB";
22
  else if (file_exists($afile))
23
  $filesize = number_format(filesize($afile) / 1025, 2) . " KB";
24
  }
33
  <a href="#" id="dcf" title="Delete Current File" class="pull-right" style="font-size:24px">
34
  <i class="fa fa-trash color-red"></i>
35
  </a>
36
+ <div class="media-body"><strong><?php echo basename($afile); ?></strong><br><span class="text-success"><?php echo $mfz?$mfz:wpdm_file_size($afile); ?></span></div>
37
  </div>
38
 
39
  <?php } else echo "<span style='font-weight:bold;color:#ddd'>". __('No file uploaded yet!', 'download-manager')."</span>"; ?>
40
  <div style="clear: both;"></div>
41
  </div>
 
42
 
43
+
44
+ <div id="upload">
 
 
 
 
 
 
 
45
  <div id="plupload-upload-ui" class="hide-if-no-js">
46
  <div id="drag-drop-area">
47
  <div class="drag-drop-inside" style="margin-top: 40px">
73
  // additional post data to send to our ajax hook
74
  'multipart_params' => array(
75
  '_ajax_nonce' => wp_create_nonce(NONCE_KEY),
76
+ 'type' => 'package_attachment',
77
+ 'package_id' => get_the_ID(),
78
  'action' => 'wpdm_admin_upload_file', // the ajax action name
79
  ),
80
  );
164
  </div>
165
 
166
 
 
 
 
 
 
 
 
 
 
167
  <script>
168
+ jQuery(function($){
169
+ $('#rmta').click(function(){
 
 
170
  var ID = 'file_' + parseInt(Math.random()*1000000);
171
+ var file = $('#rurl').val();
172
  var filename = file;
173
+ $('#rurl').val('');
174
  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){
175
  alert("Invalid url");
176
  return false;
177
  }
178
 
179
+ $('#wpdmfile').val(file);
180
+ $('#cfl').html('<div><strong>'+file+'</strong>').slideDown();
181
 
182
 
183
  });
184
 
185
 
186
 
187
+ $('body').on('click', '#dcf', function(){
188
  if(!confirm('<?php _e('Are you sure?','download-manager'); ?>')) return false;
189
+ $('#wpdmfile').val('');
190
+ $('#cfl').html('<?php _e('<div class="w3eden"><div class="text-danger"><i class="fa fa-check-circle"></i> Removed!</div></div>','download-manager'); ?>');
191
  });
192
 
193
 
194
 
195
 
196
  });
197
+
198
  </script>
 
199
 
200
+ <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>
201
+
202
+ <button type="button" class="btn btn-primary btn-block" id="attachml"><?php echo __( "Select from media library", "download-manager" ); ?></button>
203
+ <script>
204
+ jQuery(function ($) {
205
+ var file_frame;
206
+ $('body').on('click', '#attachml' , function( event ){
207
+ event.preventDefault();
208
+ if ( file_frame ) {
209
+ file_frame.open();
210
+ return;
211
+ }
212
+ file_frame = wp.media.frames.file_frame = wp.media({
213
+ title: $( this ).data( 'uploader_title' ),
214
+ button: {
215
+ text: $( this ).data( 'uploader_button_text' )
216
+ },
217
+ multiple: false
218
+ });
219
+ file_frame.on( 'select', function() {
220
+ var attachment = file_frame.state().get('selection').first().toJSON();
221
+ console.log(attachment);
222
+ $('#wpdmfile').val(attachment.url);
223
+ $('#cfl').html('<div><strong>'+attachment.filename+'</strong><br/>'+attachment.filesizeHumanReadable).slideDown();
224
+ $('input[name="file[package_size]"]').val(attachment.filesizeHumanReadable);
225
+
226
+ });
227
+ file_frame.open();
228
+ });
229
+ });
230
+ </script>
231
+ <?php if(current_user_can('access_server_browser')) { ?>
232
+
233
+ <button type="button" class="btn btn-warning btn-block" id="attachsf"
234
+ style="margin-top: 10px"><?php echo __("Select from server", "download-manager"); ?></button>
235
+ <script>
236
+ jQuery(function ($) {
237
+ $('body').on('click', '#attachsf', function (e) {
238
+ e.preventDefault();
239
+ hide_asset_picker_frame();
240
+ $(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('/?assetpicker=1'); ?>'></iframe>");
241
+
242
+ });
243
+ });
244
+
245
+ function hide_asset_picker_frame() {
246
+ jQuery('#wpdm-asset-picker').remove();
247
+ }
248
+
249
+ function attach_server_files(files) {
250
+ jQuery.each(files, function (index, file) {
251
+ var d = new Date();
252
+ var ID = d.getTime();
253
+ jQuery('#wpdmfile').val(file.path);
254
+ 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();
255
+
256
+ });
257
+ }
258
+ </script>
259
+
260
+ <?php
261
+ }
262
+
263
+ do_action("wpdm_attach_file_metabox");
264
+
265
+ ?>
266
+ </div>
admin/tpls/metaboxes/icons.php CHANGED
@@ -2,114 +2,7 @@
2
 
3
 
4
  <div id="package-icons" class="tab-pane">
5
- <?php /* if(current_user_can('manage_options')){ ?>
6
- <div id="icon-plupload-upload-ui" class="hide-if-no-js">
7
- <div id="icon-drag-drop-area">
8
- <div class="icon-drag-drop-inside">
9
- <input id="icon-plupload-browse-button" type="button" class="button-secondary" value="<?php echo __( "Upload New Icon" , "download-manager" ); ?>" class="btn" />
10
- </div>
11
- </div>
12
- </div>
13
-
14
- <?php
15
-
16
- $plupload_init = array(
17
- 'runtimes' => 'html5,silverlight,flash,html4',
18
- 'browse_button' => 'icon-plupload-browse-button',
19
- 'container' => 'icon-plupload-upload-ui',
20
- 'drop_element' => 'icon-drag-drop-area',
21
- 'file_data_name' => 'icon-async-upload',
22
- 'multiple_queues' => true,
23
- 'url' => admin_url('admin-ajax.php'),
24
- 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
25
- 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
26
- 'filters' => array(array('title' => __( "Allowed Files" , "download-manager" ), 'extensions' => 'png, jpg, gif')),
27
- 'multipart' => true,
28
- 'urlstream_upload' => true,
29
-
30
- // additional post data to send to our ajax hook
31
- 'multipart_params' => array(
32
- '_ajax_nonce' => wp_create_nonce('icon-upload'),
33
- 'action' => 'icon_upload', // the ajax action name
34
- ),
35
- );
36
-
37
- // we should probably not apply this filter, plugins may expect wp's media uploader...
38
- $plupload_init = apply_filters('plupload_init', $plupload_init);
39
-
40
- ?>
41
-
42
- <script type="text/javascript">
43
-
44
- jQuery(document).ready(function($){
45
-
46
- // create the uploader and pass the config from above
47
- var uploader = new plupload.Uploader(<?php echo json_encode($plupload_init); ?>);
48
-
49
- // checks if browser supports drag and drop upload, makes some css adjustments if necessary
50
- uploader.bind('Init', function(up){
51
- var uploaddiv = jQuery('#icon-plupload-upload-ui');
52
-
53
- if(up.features.dragdrop){
54
- uploaddiv.addClass('drag-drop');
55
- jQuery('#icon-drag-drop-area')
56
- .bind('dragover.wp-uploader', function(){ uploaddiv.addClass('drag-over'); })
57
- .bind('dragleave.wp-uploader, drop.wp-uploader', function(){ uploaddiv.removeClass('drag-over'); });
58
-
59
- }else{
60
- uploaddiv.removeClass('drag-drop');
61
- jQuery('#icon-drag-drop-area').unbind('.wp-uploader');
62
- }
63
- });
64
-
65
- uploader.init();
66
-
67
- // a file was added in the queue
68
- uploader.bind('FilesAdded', function(up, files){
69
- //var hundredmb = 100 * 1024 * 1024, max = parseInt(up.settings.max_file_size, 10);
70
-
71
- jQuery('#icon-loading').slideDown();
72
-
73
-
74
- plupload.each(files, function(file){
75
- jQuery('#icon-filelist').html(
76
- '<div class="file" id="' + file.id + '"><b>' +
77
-
78
- file.name + '</b> (<span>' + plupload.formatSize(0) + '</span>/' + plupload.formatSize(file.size) + ') ' +
79
- '<div class="fileprogress"></div></div>');
80
- });
81
-
82
- up.refresh();
83
- up.start();
84
- });
85
-
86
- uploader.bind('UploadProgress', function(up, file) {
87
- jQuery('#' + file.id + " .fileprogress").width(file.percent + "%");
88
- jQuery('#' + file.id + " span").html(plupload.formatSize(parseInt(file.size * file.percent / 100)));
89
- });
90
-
91
-
92
- // a file was uploaded
93
- uploader.bind('FileUploaded', function(up, file, response) {
94
-
95
- // this is your ajax response, update the DOM with it or something...
96
- var jres = jQuery.parseJSON(response.response);
97
- console.log(jres);
98
- //response
99
- jQuery('#' + file.id ).remove();
100
- var d = new Date();
101
- var ID = d.getTime();
102
- jQuery('#icon-loading').hide();
103
- jQuery('#w-icons').prepend("<img class='wdmiconfile' id='"+jres.fid+"' src='"+jres.url+"' style='padding:5px; margin:1px; float:left; border:#fff 2px solid;height: 32px;width:auto; ' /><input rel='wdmiconfile' style='display:none' type='radio' name='file[icon]' class='checkbox' value='"+jres.rpath+"' ></label>");
104
-
105
-
106
- });
107
-
108
- });
109
-
110
- </script>
111
- <?php } */ ?>
112
- <div class="w3eden"><input style="background: url(<?php echo esc_url(get_post_meta($post->ID,'__wpdm_icon', true)); ?>) no-repeat;background-size: 32px;padding-left: 40px" 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" ></div>
113
  <br clear="all" />
114
  <?php
115
  $path = WPDM_BASE_DIR."assets/file-type-icons/";
@@ -190,5 +83,4 @@
190
 
191
  <div class="clear"></div>
192
  </div>
193
-
194
-
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/";
83
 
84
  <div class="clear"></div>
85
  </div>
86
+
 
admin/tpls/metaboxes/lock-options.php CHANGED
@@ -5,22 +5,28 @@
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_lock' name="file[terms_lock]" <?php if(get_post_meta($post->ID,'__wpdm_terms_lock', true)=='1') echo "checked=checked"; ?> value="1"><?php echo __('Must Agree with Terms','download-manager'); ?></label></h3>
9
  <div id="terms_lock" class="fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_terms_lock', true)!='1') echo "style='display:none'"; ?> >
10
 
11
- <label for="ttl_z"><?php echo __('Terms Title:','download-manager'); ?></label>
12
- <input type="text" class="form-control" name="file[terms_title]" value="<?php echo esc_html(get_post_meta($post->ID,'__wpdm_terms_title', true)); ?>" />
13
- <label for="tos_z"><?php echo __('Terms and Conditions:','download-manager'); ?></label>
14
- <textarea class="form-control" type="text" name="file[terms_conditions]" id="tc_z"><?php echo esc_html(get_post_meta($post->ID,'__wpdm_terms_conditions', true)); ?></textarea>
15
- <label for="tcl_z"><?php echo __('Terms Checkbox Label:','download-manager'); ?></label>
16
- <input type="text" class="form-control" name="file[terms_check_label]" value="<?php echo esc_html(get_post_meta($post->ID,'__wpdm_terms_check_label', true)); ?>" />
 
 
 
 
 
 
17
 
18
 
19
  </div>
20
  </div>
21
  <!-- Password Lock -->
22
  <div class="panel panel-default">
23
- <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"><?php echo __('Enable Password Lock','download-manager'); ?></label></h3>
24
  <div id="password" class="fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_password_lock', true)!='1') echo "style='display:none'"; ?> >
25
 
26
  <label for="pps_z"><?php echo __('Password:','download-manager'); ?></label>
@@ -35,7 +41,7 @@
35
 
36
  <!-- Captcha Lock -->
37
  <div class="panel panel-default">
38
- <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"><?php echo __('Enable Captcha Lock','download-manager'); ?></label></h3>
39
  <div id="captcha" class="frm fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_captcha_lock', true)!='1') echo "style='display:none'"; ?> >
40
 
41
  <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>
@@ -49,4 +55,4 @@
49
  <?php do_action('wpdm_download_lock_option',$post); ?>
50
  </div>
51
  <div class="clear"></div>
52
- </div>
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_lock' 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_lock" class="fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_terms_lock', true)!='1') echo "style='display:none'"; ?> >
10
 
11
+ <div class="form-group">
12
+ <label for="ttl_z"><?php echo __('Terms Title:','download-manager'); ?></label>
13
+ <input type="text" class="form-control input-lg" name="file[terms_title]" value="<?php echo esc_html(get_post_meta($post->ID,'__wpdm_terms_title', true)); ?>" />
14
+ </div>
15
+ <div class="form-group">
16
+ <label for="tos_z"><?php echo __('Terms and Conditions:','download-manager'); ?></label>
17
+ <textarea class="form-control" type="text" name="file[terms_conditions]" id="tc_z"><?php echo esc_html(get_post_meta($post->ID,'__wpdm_terms_conditions', true)); ?></textarea>
18
+ </div>
19
+ <div class="form-group">
20
+ <label for="tcl_z"><?php echo __('Terms Checkbox Label:','download-manager'); ?></label>
21
+ <input type="text" class="form-control input-lg" name="file[terms_check_label]" value="<?php echo esc_html(get_post_meta($post->ID,'__wpdm_terms_check_label', true)); ?>" />
22
+ </div>
23
 
24
 
25
  </div>
26
  </div>
27
  <!-- Password Lock -->
28
  <div class="panel panel-default">
29
+ <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>
30
  <div id="password" class="fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_password_lock', true)!='1') echo "style='display:none'"; ?> >
31
 
32
  <label for="pps_z"><?php echo __('Password:','download-manager'); ?></label>
41
 
42
  <!-- Captcha Lock -->
43
  <div class="panel panel-default">
44
+ <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>
45
  <div id="captcha" class="frm fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_captcha_lock', true)!='1') echo "style='display:none'"; ?> >
46
 
47
  <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>
55
  <?php do_action('wpdm_download_lock_option',$post); ?>
56
  </div>
57
  <div class="clear"></div>
58
+ </div>
admin/tpls/settings.php CHANGED
@@ -12,7 +12,7 @@
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/view/plugin-reviews/download-manager?rate=5#postform' 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">
@@ -37,7 +37,7 @@ call_user_func($stabs[$tab]['callback']); ?>
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
 
@@ -76,14 +76,14 @@ jQuery(document).ready(function(){
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');
@@ -95,7 +95,7 @@ jQuery(document).ready(function(){
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');
@@ -113,10 +113,10 @@ jQuery(document).ready(function(){
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) {
@@ -127,7 +127,7 @@ jQuery(document).ready(function(){
127
 
128
 
129
  });
130
-
131
  </script>
132
 
133
- <style>.updated{ display: none !important; }</style>
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">
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
 
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');
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');
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) {
127
 
128
 
129
  });
130
+
131
  </script>
132
 
133
+ <style>.updated{ display: none !important; }</style>
admin/tpls/settings/addon-update.php CHANGED
@@ -64,8 +64,9 @@
64
  <tbody>
65
  <?php
66
  $latest = maybe_unserialize(get_option('wpdm_latest'));
 
67
 
68
- if(is_array($purchased_items)){
69
  foreach($purchased_items as $item){
70
  if(isset($item->download_url)){
71
  foreach($item->download_url as $file => $dlu){
64
  <tbody>
65
  <?php
66
  $latest = maybe_unserialize(get_option('wpdm_latest'));
67
+ $latest = !is_array($latest) ? (array)json_decode($latest):$latest;
68
 
69
+ if(isset($purchased_items) && is_array($purchased_items)){
70
  foreach($purchased_items as $item){
71
  if(isset($item->download_url)){
72
  foreach($item->download_url as $file => $dlu){
admin/tpls/settings/basic.php CHANGED
@@ -3,9 +3,9 @@
3
  .frm td{
4
  padding:5px;
5
  border-bottom: 1px solid #eeeeee;
6
-
7
  font-size:10pt;
8
-
9
  }
10
  h4{
11
  color: #336699;
@@ -63,6 +63,7 @@
63
 
64
  <div class="form-group">
65
  <label><?php echo __('File Browser Access:','download-manager'); ?></label><br/>
 
66
  <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'); ?>">
67
  <?php
68
 
@@ -170,9 +171,14 @@
170
  <input type="hidden" value="0" name="__wpdm_open_in_browser" />
171
  <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/>
172
  <em><?php _e('Try to Open in Browser instead of download when someone clicks on download link','download-manager'); ?></em>
173
- <br/>
174
 
175
  </div>
 
 
 
 
 
 
176
 
177
  <fieldset>
178
  <legend><?php echo __('reCAPTCHA Lock Settings','download-manager'); ?></legend>
@@ -185,6 +191,14 @@
185
  <label><a name="liappid"></a><?php echo __('reCAPTCHA Secret Key','download-manager'); ?></label>
186
  <input type="text" class="form-control" name="_wpdm_recaptcha_secret_key" value="<?php echo get_option('_wpdm_recaptcha_secret_key'); ?>">
187
  </div>
 
 
 
 
 
 
 
 
188
  </fieldset>
189
 
190
 
@@ -203,13 +217,19 @@
203
  <label for="__wpdm_user_dashboard"><?php echo __('Login Page','download-manager'); ?></label><br/>
204
  <?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/>
205
  <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>
 
 
 
206
  </div>
207
 
208
  <div class="form-group">
209
  <label for="__wpdm_user_dashboard"><?php echo __('Register Page','download-manager'); ?></label><br/>
210
  <?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/>
211
  <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>
 
 
212
  </div>
 
213
  <div class="form-group">
214
  <label for="__wpdm_user_dashboard"><?php echo __('Dashboard Page','download-manager'); ?></label><br/>
215
  <?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/>
3
  .frm td{
4
  padding:5px;
5
  border-bottom: 1px solid #eeeeee;
6
+
7
  font-size:10pt;
8
+
9
  }
10
  h4{
11
  color: #336699;
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
 
171
  <input type="hidden" value="0" name="__wpdm_open_in_browser" />
172
  <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/>
173
  <em><?php _e('Try to Open in Browser instead of download when someone clicks on download link','download-manager'); ?></em>
 
174
 
175
  </div>
176
+ <hr/>
177
+ <div class="form-group"><input type="hidden" name="__wpdm_mask_link" value="0">
178
+ <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>
179
+ <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/>
180
+ <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>
181
+ </div><hr/>
182
 
183
  <fieldset>
184
  <legend><?php echo __('reCAPTCHA Lock Settings','download-manager'); ?></legend>
191
  <label><a name="liappid"></a><?php echo __('reCAPTCHA Secret Key','download-manager'); ?></label>
192
  <input type="text" class="form-control" name="_wpdm_recaptcha_secret_key" value="<?php echo get_option('_wpdm_recaptcha_secret_key'); ?>">
193
  </div>
194
+ <div class="form-group">
195
+ <input type="hidden" value="0" name="__wpdm_recaptcha_regform">
196
+ <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>
197
+ </div>
198
+ <div class="form-group">
199
+ <input type="hidden" value="0" name="__wpdm_recaptcha_loginform">
200
+ <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>
201
+ </div>
202
  </fieldset>
203
 
204
 
217
  <label for="__wpdm_user_dashboard"><?php echo __('Login Page','download-manager'); ?></label><br/>
218
  <?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/>
219
  <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>
220
+ <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>
221
+ <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>
222
+ <hr/>
223
  </div>
224
 
225
  <div class="form-group">
226
  <label for="__wpdm_user_dashboard"><?php echo __('Register Page','download-manager'); ?></label><br/>
227
  <?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/>
228
  <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>
229
+ <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>
230
+ <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>
231
  </div>
232
+ <hr/>
233
  <div class="form-group">
234
  <label for="__wpdm_user_dashboard"><?php echo __('Dashboard Page','download-manager'); ?></label><br/>
235
  <?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/>
admin/tpls/settings/user-interface.php CHANGED
@@ -10,6 +10,12 @@ $ui_button = get_option('__wpdm_ui_download_button');
10
  $ui_button_sc = get_option('__wpdm_ui_download_button_sc');
11
 
12
  ?>
 
 
 
 
 
 
13
  <div class="panel panel-default">
14
  <div class="panel-heading"><?php _e("Disable Style & Script",'download-manager'); ?></div>
15
  <div class="panel-body">
@@ -232,4 +238,4 @@ $ui_button_sc = get_option('__wpdm_ui_download_button_sc');
232
  });
233
 
234
  });
235
- </script>
10
  $ui_button_sc = get_option('__wpdm_ui_download_button_sc');
11
 
12
  ?>
13
+ <div class="panel panel-default">
14
+ <div class="panel-heading"><?php _e("Active Bootstrap Version",'download-manager'); ?></div>
15
+ <div class="panel-body">
16
+ <label style="margin-right: 20px"><input <?php checked('', get_option('__wpdm_bsversion','')); ?> type="radio" value="" name="__wpdm_bsversion"> <?php _e( "Bootstrap 4" , "download-manager" ); ?></label> <label><input <?php checked('3', get_option('__wpdm_bsversion','')); ?> type="radio" value="3" name="__wpdm_bsversion"> <?php _e( "Bootstrap 3" , "download-manager" ); ?></label>
17
+ </div>
18
+ </div>
19
  <div class="panel panel-default">
20
  <div class="panel-heading"><?php _e("Disable Style & Script",'download-manager'); ?></div>
21
  <div class="panel-body">
238
  });
239
 
240
  });
241
+ </script>
admin/tpls/templates.php CHANGED
@@ -34,7 +34,7 @@
34
 
35
  <tbody class="list:post" id="the-list">
36
 
37
- <?php
38
  $ttype = isset($_GET['_type'])?esc_attr($_GET['_type']):'link';
39
  if($ttype != 'email'){
40
  $ctpls = WPDM\admin\menus\Templates::Dropdown(array('data_type' => 'ARRAY', 'type' => $ttype));
@@ -48,9 +48,9 @@
48
  $tplid = str_replace(".php","",$ctpl);
49
  $status = isset($tplstatus[$tplid])?$tplstatus[$tplid]:1;
50
  ?>
51
-
52
  <tr valign="top" class="author-self status-inherit" id="template-<?php echo $ttype; ?>-<?php echo $ctpl; ?>">
53
- <td class="column-icon media-icon" style="text-align: left;">
54
  <nobr><?php echo $title; ?></nobr>
55
  </td>
56
  <td>
@@ -60,8 +60,8 @@
60
  <td style="text-align: right">
61
  <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>
62
  </td>
63
-
64
-
65
  </tr>
66
  <?php
67
  }} else {
@@ -212,6 +212,9 @@
212
 
213
  <style>
214
  div.notice, .updated{ display: none; }
 
 
 
215
  .xbubble
216
  {
217
  position: relative;
@@ -376,4 +379,4 @@
376
  </div>
377
 
378
 
379
-
34
 
35
  <tbody class="list:post" id="the-list">
36
 
37
+ <?php
38
  $ttype = isset($_GET['_type'])?esc_attr($_GET['_type']):'link';
39
  if($ttype != 'email'){
40
  $ctpls = WPDM\admin\menus\Templates::Dropdown(array('data_type' => 'ARRAY', 'type' => $ttype));
48
  $tplid = str_replace(".php","",$ctpl);
49
  $status = isset($tplstatus[$tplid])?$tplstatus[$tplid]:1;
50
  ?>
51
+
52
  <tr valign="top" class="author-self status-inherit" id="template-<?php echo $ttype; ?>-<?php echo $ctpl; ?>">
53
+ <td class="column-icon media-icon" style="text-align: left;">
54
  <nobr><?php echo $title; ?></nobr>
55
  </td>
56
  <td>
60
  <td style="text-align: right">
61
  <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>
62
  </td>
63
+
64
+
65
  </tr>
66
  <?php
67
  }} else {
212
 
213
  <style>
214
  div.notice, .updated{ display: none; }
215
+ img{
216
+ max-width: 100%;
217
+ }
218
  .xbubble
219
  {
220
  position: relative;
379
  </div>
380
 
381
 
382
+
admin/tpls/welcome.php CHANGED
@@ -1,10 +1,11 @@
1
  <script type="text/javascript" src="<?php echo includes_url();?>/js/jquery/jquery.form.min.js"></script>
2
  <link rel="stylesheet" href="<?php echo plugins_url('/download-manager/assets/css/chosen.css'); ?>" />
3
  <script language="JavaScript" src="<?php echo plugins_url('/download-manager/assets/js/chosen.jquery.min.js'); ?>"></script>
4
- <link rel="stylesheet" type="text/css" href="<?php echo plugins_url('/download-manager/assets/bootstrap/css/bootstrap.css');?>" />
5
- <script src="<?php echo plugins_url('/download-manager/assets/bootstrap/js/bootstrap.min.js');?>"></script>
6
- <link href='http://fonts.googleapis.com/css?family=Overpass:300,400,700' rel='stylesheet' type='text/css'>
7
  <link href="<?php echo WPDM_BASE_URL . 'assets/fontawesome/css/all.css'; ?>" rel="stylesheet">
 
8
  <style>
9
  .w3eden .lead,
10
  .w3eden .btn,
@@ -316,8 +317,8 @@
316
  </div> </div>
317
  </div>
318
 
319
- <div class="alert alert-info">
320
- <a href="https://www.wpdownloadmanager.com/download/verse-wordpress-theme-for-digital-shop/" target="_blank"><i class="fa fa-gift" style="margin-right: 7px"></i> Verse – Free WordPress Theme for Digital Shops, Get it now! </a>
321
  </div>
322
 
323
  </div>
1
  <script type="text/javascript" src="<?php echo includes_url();?>/js/jquery/jquery.form.min.js"></script>
2
  <link rel="stylesheet" href="<?php echo plugins_url('/download-manager/assets/css/chosen.css'); ?>" />
3
  <script language="JavaScript" src="<?php echo plugins_url('/download-manager/assets/js/chosen.jquery.min.js'); ?>"></script>
4
+ <link rel="stylesheet" type="text/css" href="<?php echo plugins_url('/download-manager/assets/bootstrap3/css/bootstrap.css');?>" />
5
+ <script src="<?php echo plugins_url('/download-manager/assets/bootstrap/js/bootstrap.bundle.min.js');?>"></script>
6
+ <link href='https://fonts.googleapis.com/css?family=Overpass:300,400,700' rel='stylesheet' type='text/css'>
7
  <link href="<?php echo WPDM_BASE_URL . 'assets/fontawesome/css/all.css'; ?>" rel="stylesheet">
8
+ <link rel="stylesheet" href="<?php echo plugins_url('/download-manager/assets/css/front3.css'); ?>" />
9
  <style>
10
  .w3eden .lead,
11
  .w3eden .btn,
317
  </div> </div>
318
  </div>
319
 
320
+ <div class="alert alert-info" style="margin: 15px 0;font-size: 12pt">
321
+ <a href="https://www.wpdownloadmanager.com/download/attire-allinone-wordpress-theme/" target="_blank"><i class="fa fa-gift" style="margin-right: 7px"></i> Attire – Free All-in-one WordPress Theme, Get it now! </a>
322
  </div>
323
 
324
  </div>
assets/bootstrap/css/bootstrap-theme.css DELETED
@@ -1,3171 +0,0 @@
1
- @import url(http://fonts.googleapis.com/css?family=Montserrat:400,700|Source+Sans+Pro:600,300,300italic);
2
- /*!
3
- * Eden v1.0.0
4
- * Homepage: http://scripteden.com
5
- * Copyright 2015 Script Eden
6
- * Licensed under MIT
7
- */
8
- .w3eden {
9
- /** hyperlink **/
10
- /** Buttons **/
11
- /** Social buttons **/
12
- /** Dropdown **/
13
- /** Nav **/
14
- /** Navbar **/
15
- /** navbar inverse **/
16
- /** navbar eden **/
17
- /** Alerts **/
18
- /** Progressbar **/
19
- /** Form Controls **/
20
- /** vCard **/
21
- /********************************/
22
- /* Panel cards */
23
- /********************************/
24
- /** Feature Slider **/
25
- /** Feature Slider Ends **/
26
- /** Stacked Icon Style **/
27
- /** Featured Content Box **/
28
- /** Subscribe Panel **/
29
- /** Radio Buttons **/
30
- }
31
- .w3eden body {
32
- font-family: 'Source Sans Pro', sans-serif;
33
- font-size: 15px;
34
- line-height: 1.42857143;
35
- color: #2c3e50;
36
- font-weight: 300;
37
- background-color: #ffffff;
38
- }
39
- .w3eden a {
40
- color: #18bc9c;
41
- text-decoration: none;
42
- font-weight: 300;
43
- }
44
- .w3eden a:hover,
45
- .w3eden a:focus {
46
- color: #18bc9c;
47
- text-decoration: underline;
48
- }
49
- .w3eden *:focus {
50
- outline: none !important;
51
- }
52
- .w3eden h1,
53
- .w3eden h2,
54
- .w3eden h3,
55
- .w3eden h4,
56
- .w3eden h5,
57
- .w3eden h6,
58
- .w3eden .h1,
59
- .w3eden .h2,
60
- .w3eden .h3,
61
- .w3eden .h4,
62
- .w3eden .h5,
63
- .w3eden .h6 {
64
- font-family: 'Montserrat', sans-serif;
65
- font-weight: 900;
66
- line-height: 1.1;
67
- color: inherit;
68
- }
69
- .w3eden h1 small,
70
- .w3eden h2 small,
71
- .w3eden h3 small,
72
- .w3eden h4 small,
73
- .w3eden h5 small,
74
- .w3eden h6 small,
75
- .w3eden .h1 small,
76
- .w3eden .h2 small,
77
- .w3eden .h3 small,
78
- .w3eden .h4 small,
79
- .w3eden .h5 small,
80
- .w3eden .h6 small,
81
- .w3eden h1 .small,
82
- .w3eden h2 .small,
83
- .w3eden h3 .small,
84
- .w3eden h4 .small,
85
- .w3eden h5 .small,
86
- .w3eden h6 .small,
87
- .w3eden .h1 .small,
88
- .w3eden .h2 .small,
89
- .w3eden .h3 .small,
90
- .w3eden .h4 .small,
91
- .w3eden .h5 .small,
92
- .w3eden .h6 .small {
93
- line-height: 1;
94
- color: #b4bcc2;
95
- }
96
- .w3eden h1,
97
- .w3eden .h1,
98
- .w3eden h2,
99
- .w3eden .h2,
100
- .w3eden h3,
101
- .w3eden .h3 {
102
- margin-top: 21px;
103
- margin-bottom: 10.5px;
104
- }
105
- .w3eden h1 small,
106
- .w3eden .h1 small,
107
- .w3eden h2 small,
108
- .w3eden .h2 small,
109
- .w3eden h3 small,
110
- .w3eden .h3 small,
111
- .w3eden h1 .small,
112
- .w3eden .h1 .small,
113
- .w3eden h2 .small,
114
- .w3eden .h2 .small,
115
- .w3eden h3 .small,
116
- .w3eden .h3 .small {
117
- font-size: 65%;
118
- }
119
- .w3eden h4,
120
- .w3eden .h4,
121
- .w3eden h5,
122
- .w3eden .h5,
123
- .w3eden h6,
124
- .w3eden .h6 {
125
- margin-top: 10.5px;
126
- margin-bottom: 10.5px;
127
- }
128
- .w3eden h4 small,
129
- .w3eden .h4 small,
130
- .w3eden h5 small,
131
- .w3eden .h5 small,
132
- .w3eden h6 small,
133
- .w3eden .h6 small,
134
- .w3eden h4 .small,
135
- .w3eden .h4 .small,
136
- .w3eden h5 .small,
137
- .w3eden .h5 .small,
138
- .w3eden h6 .small,
139
- .w3eden .h6 .small {
140
- font-size: 75%;
141
- }
142
- .w3eden h1,
143
- .w3eden .h1 {
144
- font-size: 39px;
145
- }
146
- .w3eden h2,
147
- .w3eden .h2 {
148
- font-size: 32px;
149
- }
150
- .w3eden h3,
151
- .w3eden .h3 {
152
- font-size: 26px;
153
- }
154
- .w3eden h4,
155
- .w3eden .h4 {
156
- font-size: 19px;
157
- }
158
- .w3eden h5,
159
- .w3eden .h5 {
160
- font-size: 15px;
161
- }
162
- .w3eden h6,
163
- .w3eden .h6 {
164
- font-size: 13px;
165
- }
166
- .w3eden p {
167
- margin: 0 0 10.5px;
168
- }
169
- .w3eden .clear {
170
- clear: both;
171
- }
172
- .w3eden .lead {
173
- margin-bottom: 21px;
174
- font-size: 17px;
175
- font-weight: 300;
176
- line-height: 1.4;
177
- }
178
- @media (min-width: 768px) {
179
- .w3eden .lead {
180
- font-size: 22.5px;
181
- }
182
- }
183
- .w3eden small,
184
- .w3eden .small {
185
- font-size: 86%;
186
- }
187
- .w3eden mark,
188
- .w3eden .mark {
189
- background-color: #f39c12;
190
- padding: .2em;
191
- }
192
- .w3eden .text-left {
193
- text-align: left;
194
- }
195
- .w3eden .text-right {
196
- text-align: right;
197
- }
198
- .w3eden .text-center {
199
- text-align: center;
200
- }
201
- .w3eden .text-justify {
202
- text-align: justify;
203
- }
204
- .w3eden .text-nowrap {
205
- white-space: nowrap;
206
- }
207
- .w3eden .text-lowercase {
208
- text-transform: lowercase;
209
- }
210
- .w3eden .text-uppercase {
211
- text-transform: uppercase;
212
- }
213
- .w3eden .text-capitalize {
214
- text-transform: capitalize;
215
- }
216
- .w3eden .text-muted {
217
- color: #b4bcc2;
218
- }
219
- .w3eden .text-primary {
220
- color: #2c3e50;
221
- }
222
- .w3eden a.text-primary:hover {
223
- color: #1a242f;
224
- }
225
- .w3eden .text-success {
226
- color: #ffffff;
227
- }
228
- .w3eden a.text-success:hover {
229
- color: #e6e6e6;
230
- }
231
- .w3eden .text-info {
232
- color: #ffffff;
233
- }
234
- .w3eden a.text-info:hover {
235
- color: #e6e6e6;
236
- }
237
- .w3eden .text-warning {
238
- color: #ffffff;
239
- }
240
- .w3eden a.text-warning:hover {
241
- color: #e6e6e6;
242
- }
243
- .w3eden .text-danger {
244
- color: #ffffff;
245
- }
246
- .w3eden a.text-danger:hover {
247
- color: #e6e6e6;
248
- }
249
- .w3eden .bg-primary {
250
- color: #fff;
251
- background-color: #1abc9c;
252
- }
253
- .w3eden a.bg-primary:hover {
254
- background-color: #1a242f;
255
- }
256
- .w3eden .bg-success {
257
- background-color: #2ecc71;
258
- }
259
- .w3eden a.bg-success:hover {
260
- background-color: #128f76;
261
- }
262
- .w3eden .bg-info {
263
- background-color: #3498db;
264
- }
265
- .w3eden a.bg-info:hover {
266
- background-color: #217dbb;
267
- }
268
- .w3eden .bg-warning {
269
- background-color: #f39c12;
270
- }
271
- .w3eden a.bg-warning:hover {
272
- background-color: #c87f0a;
273
- }
274
- .w3eden .bg-danger {
275
- background-color: #e74c3c;
276
- }
277
- .w3eden a.bg-danger:hover {
278
- background-color: #d62c1a;
279
- }
280
- .w3eden .bg-ios-default {
281
- background-color: #00E1F1;
282
- color: #ffffff;
283
- }
284
- .w3eden .page-header {
285
- padding-bottom: 9.5px;
286
- margin: 42px 0 21px;
287
- border-bottom: 1px solid transparent;
288
- }
289
- .w3eden ul,
290
- .w3eden ol {
291
- margin-top: 0;
292
- margin-bottom: 10.5px;
293
- }
294
- .w3eden ul ul,
295
- .w3eden ol ul,
296
- .w3eden ul ol,
297
- .w3eden ol ol {
298
- margin-bottom: 0;
299
- }
300
- .w3eden .list-unstyled {
301
- padding-left: 0;
302
- list-style: none;
303
- }
304
- .w3eden .list-inline {
305
- padding-left: 0;
306
- list-style: none;
307
- margin-left: -5px;
308
- }
309
- .w3eden .list-inline > li {
310
- display: inline-block;
311
- padding-left: 5px;
312
- padding-right: 5px;
313
- }
314
- .w3eden dl {
315
- margin-top: 0;
316
- margin-bottom: 21px;
317
- }
318
- .w3eden dt,
319
- .w3eden dd {
320
- line-height: 1.42857143;
321
- }
322
- .w3eden dt {
323
- font-weight: bold;
324
- }
325
- .w3eden dd {
326
- margin-left: 0;
327
- }
328
- @media (min-width: 768px) {
329
- .w3eden .dl-horizontal dt {
330
- float: left;
331
- width: 160px;
332
- clear: left;
333
- text-align: right;
334
- overflow: hidden;
335
- text-overflow: ellipsis;
336
- white-space: nowrap;
337
- }
338
- .w3eden .dl-horizontal dd {
339
- margin-left: 180px;
340
- }
341
- }
342
- .w3eden abbr[title],
343
- .w3eden abbr[data-original-title] {
344
- cursor: help;
345
- border-bottom: 1px dotted #b4bcc2;
346
- }
347
- .w3eden .initialism {
348
- font-size: 90%;
349
- text-transform: uppercase;
350
- }
351
- .w3eden blockquote {
352
- padding: 10.5px 21px;
353
- margin: 0 0 21px;
354
- font-size: 18.75px;
355
- border-left: 5px solid #ecf0f1;
356
- }
357
- .w3eden blockquote p:last-child,
358
- .w3eden blockquote ul:last-child,
359
- .w3eden blockquote ol:last-child {
360
- margin-bottom: 0;
361
- }
362
- .w3eden blockquote footer,
363
- .w3eden blockquote small,
364
- .w3eden blockquote .small {
365
- display: block;
366
- font-size: 80%;
367
- line-height: 1.42857143;
368
- color: #b4bcc2;
369
- }
370
- .w3eden blockquote footer:before,
371
- .w3eden blockquote small:before,
372
- .w3eden blockquote .small:before {
373
- content: '\2014 \00A0';
374
- }
375
- .w3eden .blockquote-reverse,
376
- .w3eden blockquote.pull-right {
377
- padding-right: 15px;
378
- padding-left: 0;
379
- border-right: 5px solid #ecf0f1;
380
- border-left: 0;
381
- text-align: right;
382
- }
383
- .w3eden .blockquote-reverse footer:before,
384
- .w3eden blockquote.pull-right footer:before,
385
- .w3eden .blockquote-reverse small:before,
386
- .w3eden blockquote.pull-right small:before,
387
- .w3eden .blockquote-reverse .small:before,
388
- .w3eden blockquote.pull-right .small:before {
389
- content: '';
390
- }
391
- .w3eden .blockquote-reverse footer:after,
392
- .w3eden blockquote.pull-right footer:after,
393
- .w3eden .blockquote-reverse small:after,
394
- .w3eden blockquote.pull-right small:after,
395
- .w3eden .blockquote-reverse .small:after,
396
- .w3eden blockquote.pull-right .small:after {
397
- content: '\00A0 \2014';
398
- }
399
- .w3eden address {
400
- margin-bottom: 21px;
401
- font-style: normal;
402
- line-height: 1.42857143;
403
- }
404
- .w3eden code,
405
- .w3eden kbd,
406
- .w3eden pre,
407
- .w3eden samp {
408
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
409
- }
410
- .w3eden code {
411
- padding: 2px 4px;
412
- font-size: 90%;
413
- color: #c7254e;
414
- background-color: #f9f2f4;
415
- border-radius: 4px;
416
- }
417
- .w3eden kbd {
418
- padding: 2px 4px;
419
- font-size: 90%;
420
- color: #ffffff;
421
- background-color: #333333;
422
- border-radius: 3px;
423
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
424
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
425
- }
426
- .w3eden kbd kbd {
427
- padding: 0;
428
- font-size: 100%;
429
- font-weight: bold;
430
- -webkit-box-shadow: none;
431
- box-shadow: none;
432
- }
433
- .w3eden pre {
434
- display: block;
435
- padding: 10px;
436
- margin: 0 0 10.5px;
437
- font-size: 14px;
438
- line-height: 1.42857143;
439
- word-break: break-all;
440
- word-wrap: break-word;
441
- color: #7b8a8b;
442
- background-color: #ecf0f1;
443
- border: 1px solid #cccccc;
444
- border-radius: 4px;
445
- }
446
- .w3eden pre code {
447
- padding: 0;
448
- font-size: inherit;
449
- color: inherit;
450
- white-space: pre-wrap;
451
- background-color: transparent;
452
- border-radius: 0;
453
- }
454
- .w3eden .pre-scrollable {
455
- max-height: 340px;
456
- overflow-y: scroll;
457
- }
458
- .w3eden .table {
459
- border-collapse: separate;
460
- border-radius: 4px;
461
- }
462
- .w3eden .table th,
463
- .w3eden .table td {
464
- border-color: #dde4e6 !important;
465
- }
466
- .w3eden .table-bordered > thead > tr > th,
467
- .w3eden .table-bordered > tbody > tr > th,
468
- .w3eden .table-bordered > tfoot > tr > th,
469
- .w3eden .table-bordered > thead > tr > td,
470
- .w3eden .table-bordered > tbody > tr > td,
471
- .w3eden .table-bordered > tfoot > tr > td {
472
- border-top: 1px solid #dde4e6;
473
- border-right: 1px solid #dde4e6;
474
- border-bottom: 0;
475
- border-left: 0;
476
- }
477
- .w3eden .table-bordered {
478
- border-color: #dde4e6 !important;
479
- }
480
- .w3eden .table-bordered > thead {
481
- background: rgba(221, 228, 230, 0.5);
482
- }
483
- .w3eden .table-bordered > tbody > tr > td:last-child,
484
- .w3eden .table-bordered > tfoot > tr > th:last-child,
485
- .w3eden .table-bordered > thead > tr > th:last-child {
486
- border-right: 0;
487
- }
488
- .w3eden .table > thead > tr > td.active,
489
- .w3eden .table > tbody > tr > td.active,
490
- .w3eden .table > tfoot > tr > td.active,
491
- .w3eden .table > thead > tr > th.active,
492
- .w3eden .table > tbody > tr > th.active,
493
- .w3eden .table > tfoot > tr > th.active,
494
- .w3eden .table > thead > tr.active > td,
495
- .w3eden .table > tbody > tr.active > td,
496
- .w3eden .table > tfoot > tr.active > td,
497
- .w3eden .table > thead > tr.active > th,
498
- .w3eden .table > tbody > tr.active > th,
499
- .w3eden .table > tfoot > tr.active > th {
500
- background-color: #ecf0f1;
501
- }
502
- .w3eden .table-hover > tbody > tr > td.active:hover,
503
- .w3eden .table-hover > tbody > tr > th.active:hover,
504
- .w3eden .table-hover > tbody > tr.active:hover > td,
505
- .w3eden .table-hover > tbody > tr:hover > .active,
506
- .w3eden .table-hover > tbody > tr.active:hover > th {
507
- background-color: #dde4e6;
508
- }
509
- .w3eden .table > thead > tr > td.success,
510
- .w3eden .table > tbody > tr > td.success,
511
- .w3eden .table > tfoot > tr > td.success,
512
- .w3eden .table > thead > tr > th.success,
513
- .w3eden .table > tbody > tr > th.success,
514
- .w3eden .table > tfoot > tr > th.success,
515
- .w3eden .table > thead > tr.success > td,
516
- .w3eden .table > tbody > tr.success > td,
517
- .w3eden .table > tfoot > tr.success > td,
518
- .w3eden .table > thead > tr.success > th,
519
- .w3eden .table > tbody > tr.success > th,
520
- .w3eden .table > tfoot > tr.success > th {
521
- background-color: #2ecc71;
522
- }
523
- .w3eden .table-hover > tbody > tr > td.success:hover,
524
- .w3eden .table-hover > tbody > tr > th.success:hover,
525
- .w3eden .table-hover > tbody > tr.success:hover > td,
526
- .w3eden .table-hover > tbody > tr:hover > .success,
527
- .w3eden .table-hover > tbody > tr.success:hover > th {
528
- background-color: #15a589;
529
- }
530
- .w3eden .table > thead > tr > td.info,
531
- .w3eden .table > tbody > tr > td.info,
532
- .w3eden .table > tfoot > tr > td.info,
533
- .w3eden .table > thead > tr > th.info,
534
- .w3eden .table > tbody > tr > th.info,
535
- .w3eden .table > tfoot > tr > th.info,
536
- .w3eden .table > thead > tr.info > td,
537
- .w3eden .table > tbody > tr.info > td,
538
- .w3eden .table > tfoot > tr.info > td,
539
- .w3eden .table > thead > tr.info > th,
540
- .w3eden .table > tbody > tr.info > th,
541
- .w3eden .table > tfoot > tr.info > th {
542
- background-color: #3498db;
543
- }
544
- .w3eden .table-hover > tbody > tr > td.info:hover,
545
- .w3eden .table-hover > tbody > tr > th.info:hover,
546
- .w3eden .table-hover > tbody > tr.info:hover > td,
547
- .w3eden .table-hover > tbody > tr:hover > .info,
548
- .w3eden .table-hover > tbody > tr.info:hover > th {
549
- background-color: #258cd1;
550
- }
551
- .w3eden .table > thead > tr > td.warning,
552
- .w3eden .table > tbody > tr > td.warning,
553
- .w3eden .table > tfoot > tr > td.warning,
554
- .w3eden .table > thead > tr > th.warning,
555
- .w3eden .table > tbody > tr > th.warning,
556
- .w3eden .table > tfoot > tr > th.warning,
557
- .w3eden .table > thead > tr.warning > td,
558
- .w3eden .table > tbody > tr.warning > td,
559
- .w3eden .table > tfoot > tr.warning > td,
560
- .w3eden .table > thead > tr.warning > th,
561
- .w3eden .table > tbody > tr.warning > th,
562
- .w3eden .table > tfoot > tr.warning > th {
563
- background-color: #f39c12;
564
- }
565
- .w3eden .table-hover > tbody > tr > td.warning:hover,
566
- .w3eden .table-hover > tbody > tr > th.warning:hover,
567
- .w3eden .table-hover > tbody > tr.warning:hover > td,
568
- .w3eden .table-hover > tbody > tr:hover > .warning,
569
- .w3eden .table-hover > tbody > tr.warning:hover > th {
570
- background-color: #e08e0b;
571
- }
572
- .w3eden .table > thead > tr > td.danger,
573
- .w3eden .table > tbody > tr > td.danger,
574
- .w3eden .table > tfoot > tr > td.danger,
575
- .w3eden .table > thead > tr > th.danger,
576
- .w3eden .table > tbody > tr > th.danger,
577
- .w3eden .table > tfoot > tr > th.danger,
578
- .w3eden .table > thead > tr.danger > td,
579
- .w3eden .table > tbody > tr.danger > td,
580
- .w3eden .table > tfoot > tr.danger > td,
581
- .w3eden .table > thead > tr.danger > th,
582
- .w3eden .table > tbody > tr.danger > th,
583
- .w3eden .table > tfoot > tr.danger > th {
584
- background-color: #e74c3c;
585
- }
586
- .w3eden .table-hover > tbody > tr > td.danger:hover,
587
- .w3eden .table-hover > tbody > tr > th.danger:hover,
588
- .w3eden .table-hover > tbody > tr.danger:hover > td,
589
- .w3eden .table-hover > tbody > tr:hover > .danger,
590
- .w3eden .table-hover > tbody > tr.danger:hover > th {
591
- background-color: #e43725;
592
- }
593
- .w3eden .has-success .input-group-addon {
594
- color: #ffffff;
595
- border-color: #ffffff;
596
- background-color: #18bc9c;
597
- }
598
- .w3eden .has-success .form-control-feedback {
599
- color: #ffffff;
600
- }
601
- .w3eden .has-warning .help-block,
602
- .w3eden .has-warning .control-label,
603
- .w3eden .has-warning .radio,
604
- .w3eden .has-warning .checkbox,
605
- .w3eden .has-warning .radio-inline,
606
- .w3eden .has-warning .checkbox-inline,
607
- .w3eden .has-warning.radio label,
608
- .w3eden .has-warning.checkbox label,
609
- .w3eden .has-warning.radio-inline label,
610
- .w3eden .has-warning.checkbox-inline label {
611
- color: #ffffff;
612
- }
613
- .w3eden .has-warning .form-control {
614
- border-color: #ffffff;
615
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
616
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
617
- }
618
- .w3eden .has-warning .form-control:focus {
619
- border-color: #e6e6e6;
620
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
621
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
622
- }
623
- .w3eden .has-warning .input-group-addon {
624
- color: #ffffff;
625
- border-color: #ffffff;
626
- background-color: #f39c12;
627
- }
628
- .w3eden .has-warning .form-control-feedback {
629
- color: #ffffff;
630
- }
631
- .w3eden .has-error .help-block,
632
- .w3eden .has-error .control-label,
633
- .w3eden .has-error .radio,
634
- .w3eden .has-error .checkbox,
635
- .w3eden .has-error .radio-inline,
636
- .w3eden .has-error .checkbox-inline,
637
- .w3eden .has-error.radio label,
638
- .w3eden .has-error.checkbox label,
639
- .w3eden .has-error.radio-inline label,
640
- .w3eden .has-error.checkbox-inline label {
641
- color: #ffffff;
642
- }
643
- .w3eden .has-error .form-control {
644
- border-color: #ffffff;
645
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
646
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
647
- }
648
- .w3eden .has-error .form-control:focus {
649
- border-color: #e6e6e6;
650
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
651
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
652
- }
653
- .w3eden .has-error .input-group-addon {
654
- color: #ffffff;
655
- border-color: #ffffff;
656
- background-color: #e74c3c;
657
- }
658
- .w3eden .has-error .form-control-feedback {
659
- color: #ffffff;
660
- }
661
- .w3eden .has-feedback label ~ .form-control-feedback {
662
- top: 26px;
663
- }
664
- .w3eden .has-feedback label.sr-only ~ .form-control-feedback {
665
- top: 0;
666
- }
667
- .w3eden .help-block {
668
- display: block;
669
- margin-top: 5px;
670
- margin-bottom: 10px;
671
- color: #597ea2;
672
- }
673
- .w3eden .btn {
674
- font-family: 'Montserrat', sans-serif;
675
- -webkit-transition: all 0.2s ease;
676
- transition: all 0.2s ease;
677
- text-transform: uppercase;
678
- font-weight: 700;
679
- font-size: 12px;
680
- padding: 8.3px 16px;
681
- border-radius: 3px;
682
- border: 0 !important;
683
- }
684
- .w3eden .btn-lg {
685
- padding: 14px 25px;
686
- font-size: 14px;
687
- }
688
- .w3eden .btn-sm,
689
- .w3eden .btn-xs {
690
- padding: 8px 10px;
691
- font-size: 10px;
692
- border-radius: 2px;
693
- }
694
- .w3eden .btn-xs {
695
- border-radius: 1.5px;
696
- }
697
- .w3eden .btn-xs {
698
- padding: 5px 8px;
699
- }
700
- .w3eden .btn {
701
- border: 0;
702
- }
703
- .w3eden .btn-secondary,
704
- .w3eden .flat-default,
705
- .w3eden .flat-default.btn-bordered:hover {
706
- background-color: #bdc3c7;
707
- color: #ffffff;
708
- }
709
- .w3eden .btn-secondary:hover:not(.no-hover),
710
- .w3eden .flat-default:hover:not(.no-hover),
711
- .w3eden .flat-default.btn-bordered {
712
- background-color: #cbd1d5;
713
- color: #ffffff;
714
- }
715
- .w3eden .btn-secondary:active:not(.no-hover),
716
- .w3eden .flat-default:active:not(.no-hover),
717
- .w3eden .flat-default.btn-bordered {
718
- background-color: #a5abaf;
719
- color: #ffffff;
720
- }
721
- .w3eden .btn-primary,
722
- .w3eden .flat-primary,
723
- .w3eden .flat-primary.btn-bordered:hover {
724
- background-color: #1abc9c;
725
- color: #ffffff;
726
- }
727
- .w3eden .btn-primary:hover:not(.no-hover),
728
- .w3eden .flat-primary:hover:not(.no-hover),
729
- .w3eden .flat-primary.btn-bordered {
730
- background-color: #1bcead;
731
- color: #ffffff;
732
- }
733
- .w3eden .btn-primary:focus,
734
- .w3eden .btn-primary:active:not(.no-hover),
735
- .w3eden .flat-primary:active:not(.no-hover),
736
- .w3eden .flat-primary.btn-bordered {
737
- background-color: #1aa484;
738
- color: #ffffff;
739
- }
740
- .w3eden .btn-success,
741
- .w3eden .flat-success,
742
- .w3eden .flat-success.btn-bordered:hover {
743
- background-color: #2ecc71;
744
- color: #ffffff;
745
- }
746
- .w3eden .btn-success:focus,
747
- .w3eden .btn-success:hover:not(.no-hover),
748
- .w3eden .flat-success:hover:not(.no-hover),
749
- .w3eden .flat-success.btn-bordered {
750
- background-color: #33dd78;
751
- color: #ffffff;
752
- }
753
- .w3eden .btn-success:active:not(.no-hover),
754
- .w3eden .flat-success:active:not(.no-hover),
755
- .w3eden .flat-success.btn-bordered {
756
- background-color: #28ae5f;
757
- color: #ffffff;
758
- }
759
- .w3eden .btn-info,
760
- .w3eden .flat-info,
761
- .w3eden .flat-info.btn-bordered:hover {
762
- background-color: #3498db;
763
- color: #ffffff;
764
- }
765
- .w3eden .btn-info:hover:not(.no-hover),
766
- .w3eden .flat-info:hover:not(.no-hover),
767
- .w3eden .flat-info.btn-bordered {
768
- background-color: #35adf5;
769
- border-color: #35adf5;
770
- color: #ffffff;
771
- }
772
- .w3eden .btn-info:focus,
773
- .w3eden .btn-info:active:not(.no-hover),
774
- .w3eden .flat-info:active:not(.no-hover),
775
- .w3eden .flat-info.btn-bordered {
776
- background-color: #3386c7;
777
- border-color: #3386c7;
778
- color: #ffffff;
779
- }
780
- .w3eden .btn-warning,
781
- .w3eden .flat-warning,
782
- .w3eden .flat-warning.btn-bordered:hover {
783
- background-color: #e67e22;
784
- color: #ffffff;
785
- }
786
- .w3eden .btn-warning:hover:not(.no-hover),
787
- .w3eden .flat-warning:hover:not(.no-hover),
788
- .w3eden .flat-warning.btn-bordered {
789
- background-color: #f18822;
790
- color: #ffffff;
791
- }
792
- .w3eden .btn-warning:focus,
793
- .w3eden .btn-warning:active:not(.no-hover),
794
- .w3eden .flat-warning:active:not(.no-hover),
795
- .w3eden .flat-warning.btn-bordered {
796
- background-color: #d26a22;
797
- color: #ffffff;
798
- }
799
- .w3eden .btn-danger,
800
- .w3eden .flat-danger,
801
- .w3eden .flat-danger.btn-bordered:hover {
802
- background-color: #e74c3c;
803
- color: #ffffff;
804
- }
805
- .w3eden .btn-danger:hover:not(.no-hover),
806
- .w3eden .flat-danger:hover:not(.no-hover),
807
- .w3eden .flat-danger.btn-bordered {
808
- background-color: #ff503e;
809
- color: #ffffff;
810
- }
811
- .w3eden .btn-danger:focus,
812
- .w3eden .btn-danger:active:not(.no-hover),
813
- .w3eden .flat-danger:active:not(.no-hover),
814
- .w3eden .flat-danger.btn-bordered {
815
- background-color: #d54a3a;
816
- color: #ffffff;
817
- }
818
- .w3eden .btn-secondary,
819
- .w3eden .flat-inverse,
820
- .w3eden .flat-inverse.btn-bordered:hover {
821
- background-color: #34495e;
822
- color: #ffffff !important;
823
- }
824
- .w3eden .btn-secondary:hover:not(.no-hover),
825
- .w3eden .flat-inverse:hover:not(.no-hover),
826
- .w3eden .flat-inverse.btn-bordered {
827
- background-color: #435f75;
828
- color: #ffffff !important;
829
- }
830
- .w3eden .btn-secondary:focus,
831
- .w3eden .btn-secondary:active,
832
- .w3eden .flat-inverse:active,
833
- .w3eden .flat-inverse.btn-bordered:hover {
834
- background-color: #17222e;
835
- color: #ffffff !important;
836
- }
837
- .w3eden .flat-color,
838
- .w3eden .flat-color.btn-bordered:hover {
839
- background-color: #2ecc71;
840
- color: #ffffff;
841
- }
842
- .w3eden .flat-color:hover:not(.no-hover),
843
- .w3eden .flat-color.btn-bordered {
844
- background-color: #2ecc71;
845
- color: #ffffff;
846
- }
847
- .w3eden .btn.no-hover:not(.flat-default) {
848
- color: rgba(255, 255, 255, 0.7) !important;
849
- }
850
- .w3eden .btn.no-hover:hover:not(.flat-default) {
851
- color: #ffffff !important;
852
- }
853
- .w3eden a.btn-social,
854
- .w3eden .btn-social {
855
- border-radius: 50%;
856
- color: #ffffff !important;
857
- display: inline-block;
858
- height: 54px;
859
- line-height: 54px;
860
- margin: 8px 4px;
861
- text-align: center;
862
- text-decoration: none;
863
- transition: background-color 0.3s;
864
- webkit-transition: background-color 0.3s;
865
- width: 54px;
866
- }
867
- .w3eden .btn-social .fa,
868
- .w3eden .btn-social i {
869
- backface-visibility: hidden;
870
- moz-backface-visibility: hidden;
871
- ms-transform: scale(1);
872
- o-transform: scale(1);
873
- transform: scale(1);
874
- transition: all .25s;
875
- webkit-backface-visibility: hidden;
876
- webkit-transform: scale(1);
877
- webkit-transition: all .25s;
878
- }
879
- .w3eden .btn-social:hover,
880
- .w3eden .btn-social:focus {
881
- color: #fff;
882
- outline: none;
883
- text-decoration: none;
884
- }
885
- .w3eden .btn-social:hover .fa,
886
- .w3eden .btn-social:focus .fa,
887
- .w3eden .btn-social:hover i,
888
- .w3eden .btn-social:focus i {
889
- ms-transform: scale(1.3);
890
- o-transform: scale(1.3);
891
- transform: scale(1.3);
892
- webkit-transform: scale(1.3);
893
- }
894
- .w3eden .btn-social.btn-xs {
895
- font-size: 9px;
896
- height: 24px;
897
- line-height: 13px;
898
- margin: 6px 2px;
899
- width: 24px;
900
- }
901
- .w3eden .btn-social.btn-sm {
902
- font-size: 13px;
903
- height: 36px;
904
- line-height: 18px;
905
- margin: 6px 2px;
906
- width: 36px;
907
- }
908
- .w3eden .btn-social.btn-lg {
909
- font-size: 22px;
910
- height: 72px;
911
- line-height: 40px;
912
- margin: 10px 6px;
913
- width: 72px;
914
- }
915
- .w3eden .btn-behance {
916
- background-color: #1769ff;
917
- }
918
- .w3eden .btn-behance:hover {
919
- background-color: #4a8aff;
920
- }
921
- .w3eden .btn-bitbucket {
922
- background-color: #205081;
923
- }
924
- .w3eden .btn-bitbucket:hover {
925
- background-color: #2a69aa;
926
- }
927
- .w3eden .btn-codepen {
928
- background-color: #76daff;
929
- }
930
- .w3eden .btn-codepen:hover {
931
- background-color: #a9e8ff;
932
- }
933
- .w3eden .btn-deviantart {
934
- background-color: #4e6252;
935
- }
936
- .w3eden .btn-deviantart:hover {
937
- background-color: #657e6a;
938
- }
939
- .w3eden .btn-digg {
940
- background-color: #000;
941
- }
942
- .w3eden .btn-digg:hover {
943
- background-color: #1a1a1a;
944
- }
945
- .w3eden .btn-dribbble {
946
- background-color: #ea4c89;
947
- }
948
- .w3eden .btn-dribbble:hover {
949
- background-color: #ef7aa7;
950
- }
951
- .w3eden .btn-dropbox {
952
- background-color: #007ee5;
953
- }
954
- .w3eden .btn-dropbox:hover {
955
- background-color: #1998ff;
956
- }
957
- .w3eden .btn-facebook {
958
- background-color: #3b5998;
959
- }
960
- .w3eden .btn-facebook:hover {
961
- background-color: #4c70ba;
962
- }
963
- .w3eden .btn-flickr {
964
- background-color: #0063dc;
965
- }
966
- .w3eden .btn-flickr:hover {
967
- background-color: #107cff;
968
- }
969
- .w3eden .btn-foursquare {
970
- background-color: #ef4b78;
971
- }
972
- .w3eden .btn-foursquare:hover {
973
- background-color: #f37a9b;
974
- }
975
- .w3eden .btn-github {
976
- background-color: #4183c4;
977
- }
978
- .w3eden .btn-github:hover {
979
- background-color: #689cd0;
980
- }
981
- .w3eden .btn-google-plus {
982
- background-color: #dd4b39;
983
- }
984
- .w3eden .btn-google-plus:hover {
985
- background-color: #e47365;
986
- }
987
- .w3eden .btn-instagram {
988
- background-color: #3f729b;
989
- }
990
- .w3eden .btn-instagram:hover {
991
- background-color: #548cb9;
992
- }
993
- .w3eden .btn-jsfiddle {
994
- background-color: #4679bd;
995
- }
996
- .w3eden .btn-jsfiddle:hover {
997
- background-color: #6c94ca;
998
- }
999
- .w3eden .btn-lastfm {
1000
- background-color: #e31b23;
1001
- }
1002
- .w3eden .btn-lastfm:hover {
1003
- background-color: #e9484e;
1004
- }
1005
- .w3eden .btn-linkedin {
1006
- background-color: #0976b4;
1007
- }
1008
- .w3eden .btn-linkedin:hover {
1009
- background-color: #0b96e5;
1010
- }
1011
- .w3eden .btn-paypal {
1012
- background-color: #253b80;
1013
- }
1014
- .w3eden .btn-paypal:hover {
1015
- background-color: #304da8;
1016
- }
1017
- .w3eden .btn-pinterest {
1018
- background-color: #cc2127;
1019
- }
1020
- .w3eden .btn-pinterest:hover {
1021
- background-color: #e04046;
1022
- }
1023
- .w3eden .btn-reddit {
1024
- background-color: #ff4500;
1025
- }
1026
- .w3eden .btn-reddit:hover {
1027
- background-color: #ff6a33;
1028
- }
1029
- .w3eden .btn-skype {
1030
- background-color: #00aff0;
1031
- }
1032
- .w3eden .btn-skype:hover {
1033
- background-color: #24c4ff;
1034
- }
1035
- .w3eden .btn-soundcloud {
1036
- background-color: #f80;
1037
- }
1038
- .w3eden .btn-soundcloud:hover {
1039
- background-color: #ffa033;
1040
- }
1041
- .w3eden .btn-stack-overflow {
1042
- background-color: #fe7a15;
1043
- }
1044
- .w3eden .btn-stack-overflow:hover {
1045
- background-color: #fe9748;
1046
- }
1047
- .w3eden .btn-steam {
1048
- background-color: #7da10e;
1049
- }
1050
- .w3eden .btn-steam:hover {
1051
- background-color: #a1d012;
1052
- }
1053
- .w3eden .btn-stumbleupon {
1054
- background-color: #eb4924;
1055
- }
1056
- .w3eden .btn-stumbleupon:hover {
1057
- background-color: #ef7053;
1058
- }
1059
- .w3eden .btn-trello {
1060
- background-color: #256a92;
1061
- }
1062
- .w3eden .btn-trello:hover {
1063
- background-color: #2f88bb;
1064
- }
1065
- .w3eden .btn-tumblr {
1066
- background-color: #35465c;
1067
- }
1068
- .w3eden .btn-tumblr:hover {
1069
- background-color: #485f7c;
1070
- }
1071
- .w3eden .btn-twitch {
1072
- background-color: #6441a5;
1073
- }
1074
- .w3eden .btn-twitch:hover {
1075
- background-color: #7e5bbe;
1076
- }
1077
- .w3eden .btn-twitter {
1078
- background-color: #55acee;
1079
- }
1080
- .w3eden .btn-twitter:hover {
1081
- background-color: #83c3f3;
1082
- }
1083
- .w3eden .btn-vimeo {
1084
- background-color: #1ab7ea;
1085
- }
1086
- .w3eden .btn-vimeo:hover {
1087
- background-color: #49c6ee;
1088
- }
1089
- .w3eden .btn-vine {
1090
- background-color: #00b488;
1091
- }
1092
- .w3eden .btn-vine:hover {
1093
- background-color: #00e7af;
1094
- }
1095
- .w3eden .btn-vk {
1096
- background-color: #45668e;
1097
- }
1098
- .w3eden .btn-vk:hover {
1099
- background-color: #587fae;
1100
- }
1101
- .w3eden .btn-wechat {
1102
- background-color: #98d11c;
1103
- }
1104
- .w3eden .btn-wechat:hover {
1105
- background-color: #afe53b;
1106
- }
1107
- .w3eden .btn-wordpress {
1108
- background-color: #21759b;
1109
- }
1110
- .w3eden .btn-wordpress:hover {
1111
- background-color: #2a95c5;
1112
- }
1113
- .w3eden .btn-xing {
1114
- background-color: #026466;
1115
- }
1116
- .w3eden .btn-xing:hover {
1117
- background-color: #039598;
1118
- }
1119
- .w3eden .btn-yahoo {
1120
- background-color: #400191;
1121
- }
1122
- .w3eden .btn-yahoo:hover {
1123
- background-color: #5601c4;
1124
- }
1125
- .w3eden .btn-yelp {
1126
- background-color: #af0606;
1127
- }
1128
- .w3eden .btn-yelp:hover {
1129
- background-color: #e00808;
1130
- }
1131
- .w3eden .btn-youtube {
1132
- background-color: #e52d27;
1133
- }
1134
- .w3eden .btn-youtube:hover {
1135
- background-color: #ea5955;
1136
- }
1137
- .w3eden .btn-email {
1138
- background-color: #44c456;
1139
- }
1140
- .w3eden .btn-email:hover {
1141
- background-color: #6bd079;
1142
- }
1143
- .w3eden .dropdown-menu:after,
1144
- .w3eden .dropdown-menu:before {
1145
- position: absolute;
1146
- bottom: 100%;
1147
- left: 50%;
1148
- width: 0;
1149
- height: 0;
1150
- content: ' ';
1151
- pointer-events: none;
1152
- border: solid transparent;
1153
- }
1154
- .w3eden .dropdown-menu:after {
1155
- margin-left: -10px;
1156
- border-width: 10px;
1157
- border-color: rgba(136, 183, 213, 0);
1158
- border-bottom-color: #ffffff;
1159
- }
1160
- .w3eden .dropdown-menu:before {
1161
- margin-left: -11px;
1162
- border-width: 11px;
1163
- border-color: rgba(194, 225, 245, 0);
1164
- border-bottom-color: rgba(0, 0, 0, 0.1);
1165
- }
1166
- .w3eden .dropdown-menu {
1167
- box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
1168
- border-radius: 3px !important;
1169
- margin-top: 9px !important;
1170
- border-color: rgba(0, 0, 0, 0.1);
1171
- }
1172
- .w3eden .dropdown-menu > li > a:hover,
1173
- .w3eden .dropdown-menu > li > a:focus {
1174
- text-decoration: none;
1175
- color: #ffffff;
1176
- background-color: #2c3e50;
1177
- }
1178
- .w3eden .dropdown-menu > .active > a,
1179
- .w3eden .dropdown-menu > .active > a:hover,
1180
- .w3eden .dropdown-menu > .active > a:focus {
1181
- color: #ffffff;
1182
- text-decoration: none;
1183
- outline: 0;
1184
- background-color: #2c3e50;
1185
- }
1186
- .w3eden .dropdown-menu > .disabled > a,
1187
- .w3eden .dropdown-menu > .disabled > a:hover,
1188
- .w3eden .dropdown-menu > .disabled > a:focus {
1189
- color: #b4bcc2;
1190
- }
1191
- .w3eden .dropdown-menu > .disabled > a:hover,
1192
- .w3eden .dropdown-menu > .disabled > a:focus {
1193
- text-decoration: none;
1194
- background-color: transparent;
1195
- background-image: none;
1196
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1197
- cursor: not-allowed;
1198
- }
1199
- .w3eden .open > .dropdown-menu {
1200
- display: block;
1201
- }
1202
- .w3eden .open > a {
1203
- outline: 0;
1204
- }
1205
- .w3eden .dropdown-menu-right {
1206
- left: auto;
1207
- right: 0;
1208
- }
1209
- .w3eden .dropdown-menu-left {
1210
- left: 0;
1211
- right: auto;
1212
- }
1213
- .w3eden .dropdown-header {
1214
- display: block;
1215
- padding: 3px 20px;
1216
- font-size: 13px;
1217
- line-height: 1.42857143;
1218
- color: #b4bcc2;
1219
- white-space: nowrap;
1220
- }
1221
- .w3eden .dropdown-backdrop {
1222
- position: fixed;
1223
- left: 0;
1224
- right: 0;
1225
- bottom: 0;
1226
- top: 0;
1227
- z-index: 990;
1228
- }
1229
- .w3eden .input-group-addon {
1230
- padding: 8px 15px;
1231
- font-size: 15px;
1232
- font-weight: normal;
1233
- line-height: 1;
1234
- color: #2c3e50;
1235
- text-align: center;
1236
- background-color: #ecf0f1;
1237
- border: 1px solid #dce4ec;
1238
- border-radius: 4px;
1239
- }
1240
- .w3eden .input-group-addon.input-sm {
1241
- padding: 6px 9px;
1242
- font-size: 13px;
1243
- border-radius: 3px;
1244
- }
1245
- .w3eden .input-group-addon.input-lg {
1246
- padding: 18px 27px;
1247
- font-size: 19px;
1248
- border-radius: 6px;
1249
- }
1250
- .w3eden .input-group-addon input[type="radio"],
1251
- .w3eden .input-group-addon input[type="checkbox"] {
1252
- margin-top: 0;
1253
- }
1254
- .w3eden .nav > li > a:hover,
1255
- .w3eden .nav > li > a:focus {
1256
- text-decoration: none;
1257
- background-color: #ecf0f1;
1258
- }
1259
- .w3eden .nav > li.disabled > a {
1260
- color: #b4bcc2;
1261
- }
1262
- .w3eden .nav > li.disabled > a:hover,
1263
- .w3eden .nav > li.disabled > a:focus {
1264
- color: #b4bcc2;
1265
- text-decoration: none;
1266
- background-color: transparent;
1267
- cursor: not-allowed;
1268
- }
1269
- .w3eden .nav .open > a,
1270
- .w3eden .nav .open > a:hover,
1271
- .w3eden .nav .open > a:focus {
1272
- background-color: #ecf0f1;
1273
- border-color: #18bc9c;
1274
- }
1275
- .w3eden .nav .nav-divider {
1276
- height: 1px;
1277
- margin: 9.5px 0;
1278
- overflow: hidden;
1279
- background-color: #e5e5e5;
1280
- }
1281
- .w3eden .nav > li > a > img {
1282
- max-width: none;
1283
- }
1284
- .w3eden .nav-tabs {
1285
- border-bottom: 1px solid #ecf0f1;
1286
- }
1287
- .w3eden .nav-tabs > li {
1288
- float: left;
1289
- margin-bottom: -1px;
1290
- }
1291
- .w3eden .nav-tabs > li > a {
1292
- margin-right: 2px;
1293
- line-height: 1.42857143;
1294
- border: 1px solid transparent;
1295
- border-radius: 4px 4px 0 0;
1296
- }
1297
- .w3eden .nav-tabs > li > a:hover {
1298
- border-color: #ecf0f1 #ecf0f1 #ecf0f1;
1299
- }
1300
- .w3eden .nav-tabs > li.active > a,
1301
- .w3eden .nav-tabs > li.active > a:hover,
1302
- .w3eden .nav-tabs > li.active > a:focus {
1303
- color: #2c3e50;
1304
- background-color: #ffffff;
1305
- border: 1px solid #ecf0f1;
1306
- border-bottom-color: transparent;
1307
- cursor: default;
1308
- }
1309
- .w3eden .nav-tabs.nav-justified {
1310
- width: 100%;
1311
- border-bottom: 0;
1312
- }
1313
- .w3eden .nav-tabs.nav-justified > li {
1314
- float: none;
1315
- }
1316
- .w3eden .nav-tabs.nav-justified > li > a {
1317
- text-align: center;
1318
- margin-bottom: 5px;
1319
- }
1320
- .w3eden .nav-tabs.nav-justified > .dropdown .dropdown-menu {
1321
- top: auto;
1322
- left: auto;
1323
- }
1324
- @media (max-width: 768px) {
1325
- .w3eden .nav-pills > li,
1326
- .w3eden .nav-tabs > li {
1327
- float: none;
1328
- display: block;
1329
- width: 100%;
1330
- margin-bottom: 2px;
1331
- }
1332
- .w3eden .nav-tabs > li > a {
1333
- float: none;
1334
- display: block;
1335
- width: 100%;
1336
- border-radius: 3px;
1337
- border: 1px solid #ecf0f1 !important;
1338
- }
1339
- .w3eden .tab-content {
1340
- border: 1px solid #ecf0f1;
1341
- }
1342
- }
1343
- .w3eden .tab-content {
1344
- padding: 20px;
1345
- border: 1px solid #eeeeee;
1346
- border-top: 0;
1347
- border-bottom-left-radius: 3px;
1348
- border-bottom-right-radius: 3px;
1349
- }
1350
- .w3eden .nav-pills a:focus {
1351
- outline: none !important;
1352
- }
1353
- .w3eden .nav-pills > li.active > a,
1354
- .w3eden .nav-pills > li.active > a:hover,
1355
- .w3eden .nav-pills > li.active > a:focus {
1356
- color: #ffffff;
1357
- background-color: #2c3e50;
1358
- }
1359
- .w3eden .nav-tabs-justified > .active > a,
1360
- .w3eden .nav-tabs-justified > .active > a:hover,
1361
- .w3eden .nav-tabs-justified > .active > a:focus {
1362
- border: 1px solid #ecf0f1;
1363
- }
1364
- .w3eden .navbar-default {
1365
- background-color: #2c3e50;
1366
- border-color: transparent;
1367
- }
1368
- .w3eden .navbar-default .navbar-brand {
1369
- color: #ffffff;
1370
- }
1371
- .w3eden .navbar-default .navbar-brand:hover,
1372
- .w3eden .navbar-default .navbar-brand:focus {
1373
- color: #18bc9c;
1374
- background-color: transparent;
1375
- }
1376
- .w3eden .navbar-default .navbar-text {
1377
- color: #777777;
1378
- }
1379
- .w3eden .navbar-default .navbar-nav > li > a {
1380
- color: #ffffff;
1381
- }
1382
- .w3eden .navbar-default .navbar-nav > li > a:hover,
1383
- .w3eden .navbar-default .navbar-nav > li > a:focus {
1384
- color: #18bc9c;
1385
- background-color: transparent;
1386
- }
1387
- .w3eden .navbar-default .navbar-nav > .active > a,
1388
- .w3eden .navbar-default .navbar-nav > .active > a:hover,
1389
- .w3eden .navbar-default .navbar-nav > .active > a:focus {
1390
- color: #ffffff;
1391
- background-color: #1a242f;
1392
- }
1393
- .w3eden .navbar-default .navbar-nav > .disabled > a,
1394
- .w3eden .navbar-default .navbar-nav > .disabled > a:hover,
1395
- .w3eden .navbar-default .navbar-nav > .disabled > a:focus {
1396
- color: #cccccc;
1397
- background-color: transparent;
1398
- }
1399
- .w3eden .navbar-default .navbar-toggle {
1400
- border-color: #1a242f;
1401
- }
1402
- .w3eden .navbar-default .navbar-toggle:hover,
1403
- .w3eden .navbar-default .navbar-toggle:focus {
1404
- background-color: #1a242f;
1405
- }
1406
- .w3eden .navbar-default .navbar-toggle .icon-bar {
1407
- background-color: #ffffff;
1408
- }
1409
- .w3eden .navbar-default .navbar-collapse,
1410
- .w3eden .navbar-default .navbar-form {
1411
- border-color: transparent;
1412
- }
1413
- .w3eden .navbar-default .navbar-nav > .open > a,
1414
- .w3eden .navbar-default .navbar-nav > .open > a:hover,
1415
- .w3eden .navbar-default .navbar-nav > .open > a:focus {
1416
- background-color: #1a242f;
1417
- color: #ffffff;
1418
- }
1419
- @media (max-width: 767px) {
1420
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a {
1421
- color: #ffffff;
1422
- }
1423
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
1424
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
1425
- color: #18bc9c;
1426
- background-color: transparent;
1427
- }
1428
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
1429
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
1430
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
1431
- color: #ffffff;
1432
- background-color: #1a242f;
1433
- }
1434
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
1435
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
1436
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
1437
- color: #cccccc;
1438
- background-color: transparent;
1439
- }
1440
- }
1441
- .w3eden .navbar-default .navbar-link {
1442
- color: #ffffff;
1443
- }
1444
- .w3eden .navbar-default .navbar-link:hover {
1445
- color: #18bc9c;
1446
- }
1447
- .w3eden .navbar-default .btn-link {
1448
- color: #ffffff;
1449
- }
1450
- .w3eden .navbar-default .btn-link:hover,
1451
- .w3eden .navbar-default .btn-link:focus {
1452
- color: #18bc9c;
1453
- }
1454
- .w3eden .navbar-default .btn-link[disabled]:hover,
1455
- .w3eden fieldset[disabled] .navbar-default .btn-link:hover,
1456
- .w3eden .navbar-default .btn-link[disabled]:focus,
1457
- .w3eden fieldset[disabled] .navbar-default .btn-link:focus {
1458
- color: #cccccc;
1459
- }
1460
- .w3eden .navbar-inverse {
1461
- background-color: #18bc9c;
1462
- border-color: transparent;
1463
- }
1464
- .w3eden .navbar-inverse .navbar-brand {
1465
- color: #ffffff;
1466
- }
1467
- .w3eden .navbar-inverse .navbar-brand:hover,
1468
- .w3eden .navbar-inverse .navbar-brand:focus {
1469
- color: #2c3e50;
1470
- background-color: transparent;
1471
- }
1472
- .w3eden .navbar-inverse .navbar-text {
1473
- color: #ffffff;
1474
- }
1475
- .w3eden .navbar-inverse .navbar-nav > li > a {
1476
- color: #ffffff;
1477
- }
1478
- .w3eden .navbar-inverse .navbar-nav > li > a:hover,
1479
- .w3eden .navbar-inverse .navbar-nav > li > a:focus {
1480
- color: #2c3e50;
1481
- background-color: transparent;
1482
- }
1483
- .w3eden .navbar-inverse .navbar-nav > .active > a,
1484
- .w3eden .navbar-inverse .navbar-nav > .active > a:hover,
1485
- .w3eden .navbar-inverse .navbar-nav > .active > a:focus {
1486
- color: #ffffff;
1487
- background-color: #15a589;
1488
- }
1489
- .w3eden .navbar-inverse .navbar-nav > .disabled > a,
1490
- .w3eden .navbar-inverse .navbar-nav > .disabled > a:hover,
1491
- .w3eden .navbar-inverse .navbar-nav > .disabled > a:focus {
1492
- color: #cccccc;
1493
- background-color: transparent;
1494
- }
1495
- .w3eden .navbar-inverse .navbar-toggle {
1496
- border-color: #128f76;
1497
- }
1498
- .w3eden .navbar-inverse .navbar-toggle:hover,
1499
- .w3eden .navbar-inverse .navbar-toggle:focus {
1500
- background-color: #128f76;
1501
- }
1502
- .w3eden .navbar-inverse .navbar-toggle .icon-bar {
1503
- background-color: #ffffff;
1504
- }
1505
- .w3eden .navbar-inverse .navbar-collapse,
1506
- .w3eden .navbar-inverse .navbar-form {
1507
- border-color: #149c82;
1508
- }
1509
- .w3eden .navbar-inverse .navbar-nav > .open > a,
1510
- .w3eden .navbar-inverse .navbar-nav > .open > a:hover,
1511
- .w3eden .navbar-inverse .navbar-nav > .open > a:focus {
1512
- background-color: #15a589;
1513
- color: #ffffff;
1514
- }
1515
- @media (max-width: 767px) {
1516
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
1517
- border-color: transparent;
1518
- }
1519
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
1520
- background-color: transparent;
1521
- }
1522
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
1523
- color: #ffffff;
1524
- }
1525
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
1526
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
1527
- color: #2c3e50;
1528
- background-color: transparent;
1529
- }
1530
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
1531
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
1532
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
1533
- color: #ffffff;
1534
- background-color: #15a589;
1535
- }
1536
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
1537
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
1538
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
1539
- color: #cccccc;
1540
- background-color: transparent;
1541
- }
1542
- }
1543
- .w3eden .navbar-inverse .navbar-link {
1544
- color: #ffffff;
1545
- }
1546
- .w3eden .navbar-inverse .navbar-link:hover {
1547
- color: #2c3e50;
1548
- }
1549
- .w3eden .navbar-inverse .btn-link {
1550
- color: #ffffff;
1551
- }
1552
- .w3eden .navbar-inverse .btn-link:hover,
1553
- .w3eden .navbar-inverse .btn-link:focus {
1554
- color: #2c3e50;
1555
- }
1556
- .w3eden .navbar-inverse .btn-link[disabled]:hover,
1557
- .w3eden fieldset[disabled] .navbar-inverse .btn-link:hover,
1558
- .w3eden .navbar-inverse .btn-link[disabled]:focus,
1559
- .w3eden fieldset[disabled] .navbar-inverse .btn-link:focus {
1560
- color: #cccccc;
1561
- }
1562
- .w3eden .navbar-eden {
1563
- background-color: #ffffff;
1564
- border-color: transparent;
1565
- padding: 20px;
1566
- font-family: Montserrat, san-serif;
1567
- text-transform: uppercase;
1568
- }
1569
- .w3eden .navbar-eden .navbar-brand {
1570
- font-size: 9pt;
1571
- padding: 10px 25px;
1572
- height: auto;
1573
- line-height: 15px;
1574
- }
1575
- .w3eden .navbar-inverse .navbar-brand:hover,
1576
- .w3eden .navbar-inverse .navbar-brand:focus {
1577
- color: #2c3e50;
1578
- background-color: transparent;
1579
- }
1580
- .w3eden .navbar-inverse .navbar-text {
1581
- color: #ffffff;
1582
- }
1583
- .w3eden .navbar-eden .navbar-nav > li > a {
1584
- color: #2c3e50;
1585
- padding: 10px 25px;
1586
- border-radius: 3px;
1587
- border: 1px solid transparent;
1588
- font-size: 9pt;
1589
- line-height: 15px;
1590
- }
1591
- .w3eden .navbar-eden .navbar-nav .dropdown-menu a {
1592
- font-size: 9pt;
1593
- line-height: 25px;
1594
- text-transform: none;
1595
- margin-top: 0 !important;
1596
- margin-bottom: 0 !important;
1597
- }
1598
- .w3eden .navbar-eden .navbar-nav > li > a:hover,
1599
- .w3eden .navbar-eden .navbar-nav > li > a:focus {
1600
- color: #15a589;
1601
- /*border: 1px solid rgba(21, 165, 137, 0.56);*/
1602
- background-color: transparent;
1603
- }
1604
- .w3eden .navbar-eden .dropdown-menu {
1605
- margin-top: 29px !important;
1606
- }
1607
- .w3eden .navbar-inverse .navbar-nav > .active > a,
1608
- .w3eden .navbar-inverse .navbar-nav > .active > a:hover,
1609
- .w3eden .navbar-inverse .navbar-nav > .active > a:focus {
1610
- color: #ffffff;
1611
- background-color: #15a589;
1612
- }
1613
- .w3eden .navbar-inverse .navbar-nav > .disabled > a,
1614
- .w3eden .navbar-inverse .navbar-nav > .disabled > a:hover,
1615
- .w3eden .navbar-inverse .navbar-nav > .disabled > a:focus {
1616
- color: #cccccc;
1617
- background-color: transparent;
1618
- }
1619
- .w3eden .navbar-inverse .navbar-toggle {
1620
- border-color: #128f76;
1621
- }
1622
- .w3eden .navbar-inverse .navbar-toggle:hover,
1623
- .w3eden .navbar-inverse .navbar-toggle:focus {
1624
- background-color: #128f76;
1625
- }
1626
- .w3eden .navbar-inverse .navbar-toggle .icon-bar {
1627
- background-color: #ffffff;
1628
- }
1629
- .w3eden .navbar-inverse .navbar-collapse,
1630
- .w3eden .navbar-inverse .navbar-form {
1631
- border-color: #149c82;
1632
- }
1633
- .w3eden .navbar-inverse .navbar-nav > .open > a,
1634
- .w3eden .navbar-inverse .navbar-nav > .open > a:hover,
1635
- .w3eden .navbar-inverse .navbar-nav > .open > a:focus {
1636
- background-color: #15a589;
1637
- color: #ffffff;
1638
- }
1639
- @media (max-width: 767px) {
1640
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
1641
- border-color: transparent;
1642
- }
1643
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
1644
- background-color: transparent;
1645
- }
1646
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
1647
- color: #ffffff;
1648
- }
1649
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
1650
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
1651
- color: #2c3e50;
1652
- background-color: transparent;
1653
- }
1654
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
1655
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
1656
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
1657
- color: #ffffff;
1658
- background-color: #15a589;
1659
- }
1660
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
1661
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
1662
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
1663
- color: #cccccc;
1664
- background-color: transparent;
1665
- }
1666
- }
1667
- .w3eden .navbar-inverse .navbar-link {
1668
- color: #ffffff;
1669
- }
1670
- .w3eden .navbar-inverse .navbar-link:hover {
1671
- color: #2c3e50;
1672
- }
1673
- .w3eden .navbar-inverse .btn-link {
1674
- color: #ffffff;
1675
- }
1676
- .w3eden .navbar-inverse .btn-link:hover,
1677
- .w3eden .navbar-inverse .btn-link:focus {
1678
- color: #2c3e50;
1679
- }
1680
- .w3eden .navbar-inverse .btn-link[disabled]:hover,
1681
- .w3eden fieldset[disabled] .navbar-inverse .btn-link:hover,
1682
- .w3eden .navbar-inverse .btn-link[disabled]:focus,
1683
- .w3eden fieldset[disabled] .navbar-inverse .btn-link:focus {
1684
- color: #cccccc;
1685
- }
1686
- .w3eden .breadcrumb > .active {
1687
- color: #95a5a6;
1688
- }
1689
- .w3eden .pagination > li > a,
1690
- .w3eden .pagination > li > span {
1691
- color: #ffffff;
1692
- background-color: #18bc9c;
1693
- border: 1px solid transparent;
1694
- }
1695
- .w3eden .pagination > li > a:hover,
1696
- .w3eden .pagination > li > span:hover,
1697
- .w3eden .pagination > li > a:focus,
1698
- .w3eden .pagination > li > span:focus {
1699
- color: #ffffff;
1700
- background-color: #0f7864;
1701
- border-color: transparent;
1702
- }
1703
- .w3eden .pagination > .active > a,
1704
- .w3eden .pagination > .active > span,
1705
- .w3eden .pagination > .active > a:hover,
1706
- .w3eden .pagination > .active > span:hover,
1707
- .w3eden .pagination > .active > a:focus,
1708
- .w3eden .pagination > .active > span:focus {
1709
- color: #ffffff;
1710
- background-color: #0f7864;
1711
- border-color: transparent;
1712
- cursor: default;
1713
- }
1714
- .w3eden .pagination > .disabled > span,
1715
- .w3eden .pagination > .disabled > span:hover,
1716
- .w3eden .pagination > .disabled > span:focus,
1717
- .w3eden .pagination > .disabled > a,
1718
- .w3eden .pagination > .disabled > a:hover,
1719
- .w3eden .pagination > .disabled > a:focus {
1720
- color: #ecf0f1;
1721
- background-color: #3be6c4;
1722
- border-color: transparent;
1723
- cursor: not-allowed;
1724
- }
1725
- .w3eden .pager li > a,
1726
- .w3eden .pager li > span {
1727
- background-color: #18bc9c;
1728
- border: 1px solid transparent;
1729
- }
1730
- .w3eden .pager li > a:hover,
1731
- .w3eden .pager li > a:focus {
1732
- text-decoration: none;
1733
- background-color: #0f7864;
1734
- }
1735
- .w3eden .pager .next > a,
1736
- .w3eden .pager .next > span {
1737
- float: right;
1738
- }
1739
- .w3eden .pager .previous > a,
1740
- .w3eden .pager .previous > span {
1741
- float: left;
1742
- }
1743
- .w3eden .pager .disabled > a,
1744
- .w3eden .pager .disabled > a:hover,
1745
- .w3eden .pager .disabled > a:focus,
1746
- .w3eden .pager .disabled > span {
1747
- color: #ffffff;
1748
- background-color: #18bc9c;
1749
- cursor: not-allowed;
1750
- }
1751
- .w3eden .label-default {
1752
- background-color: #95a5a6;
1753
- }
1754
- .w3eden .label-default[href]:hover,
1755
- .w3eden .label-default[href]:focus {
1756
- background-color: #798d8f;
1757
- }
1758
- .w3eden .label-primary {
1759
- background-color: #2c3e50;
1760
- }
1761
- .w3eden .label-primary[href]:hover,
1762
- .w3eden .label-primary[href]:focus {
1763
- background-color: #1a242f;
1764
- }
1765
- .w3eden .label-success {
1766
- background-color: #18bc9c;
1767
- }
1768
- .w3eden .label-success[href]:hover,
1769
- .w3eden .label-success[href]:focus {
1770
- background-color: #128f76;
1771
- }
1772
- .w3eden .label-info {
1773
- background-color: #3498db;
1774
- }
1775
- .w3eden .label-info[href]:hover,
1776
- .w3eden .label-info[href]:focus {
1777
- background-color: #2baaff;
1778
- }
1779
- .w3eden .label-warning {
1780
- background-color: #f39c12;
1781
- }
1782
- .w3eden .label-warning[href]:hover,
1783
- .w3eden .label-warning[href]:focus {
1784
- background-color: #c87f0a;
1785
- }
1786
- .w3eden .label-danger {
1787
- background-color: #e74c3c;
1788
- }
1789
- .w3eden .label-danger[href]:hover,
1790
- .w3eden .label-danger[href]:focus {
1791
- background-color: #d62c1a;
1792
- }
1793
- .w3eden .list-group-item.active > .badge,
1794
- .w3eden .nav-pills > .active > a > .badge {
1795
- color: #2c3e50;
1796
- background-color: #ffffff;
1797
- }
1798
- .w3eden .jumbotron > hr {
1799
- border-top-color: #cfd9db;
1800
- }
1801
- .w3eden .container .jumbotron,
1802
- .w3eden .container-fluid .jumbotron {
1803
- border-radius: 6px;
1804
- }
1805
- .w3eden .jumbotron .container {
1806
- max-width: 100%;
1807
- }
1808
- .w3eden a.thumbnail:hover,
1809
- .w3eden a.thumbnail:focus,
1810
- .w3eden a.thumbnail.active {
1811
- border-color: #18bc9c;
1812
- }
1813
- .w3eden .thumbnail .caption {
1814
- padding: 9px;
1815
- color: #2c3e50;
1816
- }
1817
- .w3eden .thumbnail.content-thumbnail {
1818
- padding: 0;
1819
- border: 0;
1820
- background: rgba(214, 224, 226, 0.2);
1821
- border-radius: 4px;
1822
- }
1823
- .w3eden .thumbnail.content-thumbnail img {
1824
- border-top-left-radius: 4px;
1825
- border-top-right-radius: 4px;
1826
- }
1827
- .w3eden .alert-success {
1828
- background-color: #18bc9c;
1829
- border-color: #18bc9c;
1830
- color: #ffffff;
1831
- }
1832
- .w3eden .alert-success hr {
1833
- border-top-color: #15a589;
1834
- }
1835
- .w3eden .alert-success .alert-link {
1836
- color: #e6e6e6;
1837
- }
1838
- .w3eden .alert-info {
1839
- background-color: #3498db;
1840
- border-color: #3498db;
1841
- color: #ffffff;
1842
- }
1843
- .w3eden .alert-info hr {
1844
- border-top-color: #258cd1;
1845
- }
1846
- .w3eden .alert-info .alert-link {
1847
- color: #e6e6e6;
1848
- }
1849
- .w3eden .alert-warning {
1850
- background-color: #f39c12;
1851
- border-color: #f39c12;
1852
- color: #ffffff;
1853
- }
1854
- .w3eden .alert-warning hr {
1855
- border-top-color: #e08e0b;
1856
- }
1857
- .w3eden .alert-warning .alert-link {
1858
- color: #e6e6e6;
1859
- }
1860
- .w3eden .alert-danger {
1861
- background-color: #e74c3c;
1862
- border-color: #e74c3c;
1863
- color: #ffffff;
1864
- }
1865
- .w3eden .alert-danger hr {
1866
- border-top-color: #e43725;
1867
- }
1868
- .w3eden .alert-danger .alert-link {
1869
- color: #e6e6e6;
1870
- }
1871
- .w3eden .progress-bar-success {
1872
- background-color: #2ecc71;
1873
- }
1874
- .w3eden .progress-bar-info {
1875
- background-color: #3498db;
1876
- }
1877
- .w3eden .progress-bar-warning {
1878
- background-color: #f39c12;
1879
- }
1880
- .w3eden .progress-bar-danger {
1881
- background-color: #e74c3c;
1882
- }
1883
- .w3eden a.list-group-item {
1884
- color: #555555;
1885
- }
1886
- .w3eden a.list-group-item .list-group-item-heading {
1887
- color: #333333;
1888
- }
1889
- .w3eden a.list-group-item:hover,
1890
- .w3eden a.list-group-item:focus {
1891
- text-decoration: none;
1892
- color: #555555;
1893
- background-color: #ecf0f1;
1894
- }
1895
- .w3eden .list-group-item.disabled,
1896
- .w3eden .list-group-item.disabled:hover,
1897
- .w3eden .list-group-item.disabled:focus {
1898
- background-color: #ecf0f1;
1899
- color: #b4bcc2;
1900
- cursor: not-allowed;
1901
- }
1902
- .w3eden .list-group-item.disabled .list-group-item-heading,
1903
- .w3eden .list-group-item.disabled:hover .list-group-item-heading,
1904
- .w3eden .list-group-item.disabled:focus .list-group-item-heading {
1905
- color: inherit;
1906
- }
1907
- .w3eden .list-group-item.disabled .list-group-item-text,
1908
- .w3eden .list-group-item.disabled:hover .list-group-item-text,
1909
- .w3eden .list-group-item.disabled:focus .list-group-item-text {
1910
- color: #b4bcc2;
1911
- }
1912
- .w3eden .list-group-item.active,
1913
- .w3eden .list-group-item.active:hover,
1914
- .w3eden .list-group-item.active:focus {
1915
- z-index: 2;
1916
- color: #ffffff;
1917
- background-color: #2c3e50;
1918
- border-color: #2c3e50;
1919
- }
1920
- .w3eden .list-group-item.active .list-group-item-heading,
1921
- .w3eden .list-group-item.active:hover .list-group-item-heading,
1922
- .w3eden .list-group-item.active:focus .list-group-item-heading,
1923
- .w3eden .list-group-item.active .list-group-item-heading > small,
1924
- .w3eden .list-group-item.active:hover .list-group-item-heading > small,
1925
- .w3eden .list-group-item.active:focus .list-group-item-heading > small,
1926
- .w3eden .list-group-item.active .list-group-item-heading > .small,
1927
- .w3eden .list-group-item.active:hover .list-group-item-heading > .small,
1928
- .w3eden .list-group-item.active:focus .list-group-item-heading > .small {
1929
- color: inherit;
1930
- }
1931
- .w3eden .list-group-item.active .list-group-item-text,
1932
- .w3eden .list-group-item.active:hover .list-group-item-text,
1933
- .w3eden .list-group-item.active:focus .list-group-item-text {
1934
- color: #8aa4be;
1935
- }
1936
- .w3eden .list-group-item-success {
1937
- color: #ffffff;
1938
- background-color: #18bc9c;
1939
- }
1940
- .w3eden a.list-group-item-success {
1941
- color: #ffffff;
1942
- }
1943
- .w3eden a.list-group-item-success .list-group-item-heading {
1944
- color: inherit;
1945
- }
1946
- .w3eden a.list-group-item-success:hover,
1947
- .w3eden a.list-group-item-success:focus {
1948
- color: #ffffff;
1949
- background-color: #15a589;
1950
- }
1951
- .w3eden a.list-group-item-success.active,
1952
- .w3eden a.list-group-item-success.active:hover,
1953
- .w3eden a.list-group-item-success.active:focus {
1954
- color: #fff;
1955
- background-color: #ffffff;
1956
- border-color: #ffffff;
1957
- }
1958
- .w3eden .list-group-item-info {
1959
- color: #ffffff;
1960
- background-color: #3498db;
1961
- }
1962
- .w3eden a.list-group-item-info {
1963
- color: #ffffff;
1964
- }
1965
- .w3eden a.list-group-item-info .list-group-item-heading {
1966
- color: inherit;
1967
- }
1968
- .w3eden a.list-group-item-info:hover,
1969
- .w3eden a.list-group-item-info:focus {
1970
- color: #ffffff;
1971
- background-color: #258cd1;
1972
- }
1973
- .w3eden a.list-group-item-info.active,
1974
- .w3eden a.list-group-item-info.active:hover,
1975
- .w3eden a.list-group-item-info.active:focus {
1976
- color: #fff;
1977
- background-color: #ffffff;
1978
- border-color: #ffffff;
1979
- }
1980
- .w3eden .list-group-item-warning {
1981
- color: #ffffff;
1982
- background-color: #f39c12;
1983
- }
1984
- .w3eden a.list-group-item-warning {
1985
- color: #ffffff;
1986
- }
1987
- .w3eden a.list-group-item-warning .list-group-item-heading {
1988
- color: inherit;
1989
- }
1990
- .w3eden a.list-group-item-warning:hover,
1991
- .w3eden a.list-group-item-warning:focus {
1992
- color: #ffffff;
1993
- background-color: #f3b813;
1994
- }
1995
- .w3eden a.list-group-item-warning.active,
1996
- .w3eden a.list-group-item-warning.active:hover,
1997
- .w3eden a.list-group-item-warning.active:focus {
1998
- color: #fff;
1999
- background-color: #ffffff;
2000
- border-color: #ffffff;
2001
- }
2002
- .w3eden .list-group-item-danger {
2003
- color: #ffffff;
2004
- background-color: #e74c3c;
2005
- }
2006
- .w3eden a.list-group-item-danger {
2007
- color: #ffffff;
2008
- }
2009
- .w3eden a.list-group-item-danger .list-group-item-heading {
2010
- color: inherit;
2011
- }
2012
- .w3eden a.list-group-item-danger:hover,
2013
- .w3eden a.list-group-item-danger:focus {
2014
- color: #ffffff;
2015
- background-color: #e43725;
2016
- }
2017
- .w3eden .panel {
2018
- box-shadow: none;
2019
- }
2020
- .w3eden .panel-group .panel-heading + .panel-collapse > .panel-body,
2021
- .w3eden .panel-group .panel-heading + .panel-collapse > .list-group {
2022
- border-top: 1px solid #ecf0f1;
2023
- }
2024
- .w3eden .panel-group .panel-footer {
2025
- border-top: 0;
2026
- }
2027
- .w3eden .panel-footer {
2028
- background: #f3f7f8;
2029
- border-top: #e3e7e8;
2030
- }
2031
- .w3eden .panel-group .panel-footer + .panel-collapse .panel-body {
2032
- border-bottom: 1px solid #ecf0f1;
2033
- }
2034
- .w3eden .panel-default {
2035
- border-color: #ecf0f1;
2036
- }
2037
- .w3eden .panel-default > .panel-heading {
2038
- color: #2c3e50;
2039
- background-color: #ecf0f1;
2040
- border-color: #ecf0f1;
2041
- }
2042
- .w3eden .panel-default > .panel-heading + .panel-collapse > .panel-body {
2043
- border-top-color: #ecf0f1;
2044
- }
2045
- .w3eden .panel-default > .panel-heading .badge {
2046
- color: #ecf0f1;
2047
- background-color: #2c3e50;
2048
- }
2049
- .w3eden .panel-default > .panel-footer + .panel-collapse > .panel-body {
2050
- border-bottom-color: #ecf0f1;
2051
- }
2052
- .w3eden .panel-primary {
2053
- border-color: #2c3e50;
2054
- }
2055
- .w3eden .panel-primary > .panel-heading {
2056
- color: #ffffff;
2057
- background-color: #2c3e50;
2058
- border-color: #2c3e50;
2059
- }
2060
- .w3eden .panel-primary > .panel-heading + .panel-collapse > .panel-body {
2061
- border-top-color: #2c3e50;
2062
- }
2063
- .w3eden .panel-primary > .panel-heading .badge {
2064
- color: #2c3e50;
2065
- background-color: #ffffff;
2066
- }
2067
- .w3eden .panel-primary > .panel-footer + .panel-collapse > .panel-body {
2068
- border-bottom-color: #2c3e50;
2069
- }
2070
- .w3eden .panel-success {
2071
- border-color: #18bc9c;
2072
- }
2073
- .w3eden .panel-success > .panel-heading {
2074
- color: #ffffff;
2075
- background-color: #18bc9c;
2076
- border-color: #18bc9c;
2077
- }
2078
- .w3eden .panel-success > .panel-heading + .panel-collapse > .panel-body {
2079
- border-top-color: #18bc9c;
2080
- }
2081
- .w3eden .panel-success > .panel-heading .badge {
2082
- color: #18bc9c;
2083
- background-color: #ffffff;
2084
- }
2085
- .w3eden .panel-success > .panel-footer + .panel-collapse > .panel-body {
2086
- border-bottom-color: #18bc9c;
2087
- }
2088
- .w3eden .panel-info {
2089
- border-color: #3498db;
2090
- }
2091
- .w3eden .panel-info > .panel-heading {
2092
- color: #ffffff;
2093
- background-color: #3498db;
2094
- border-color: #3498db;
2095
- }
2096
- .w3eden .panel-info > .panel-heading + .panel-collapse > .panel-body {
2097
- border-top-color: #3498db;
2098
- }
2099
- .w3eden .panel-info > .panel-heading .badge {
2100
- color: #3498db;
2101
- background-color: #ffffff;
2102
- }
2103
- .w3eden .panel-info > .panel-footer + .panel-collapse > .panel-body {
2104
- border-bottom-color: #3498db;
2105
- }
2106
- .w3eden .panel-warning {
2107
- border-color: #f39c12;
2108
- }
2109
- .w3eden .panel-warning > .panel-heading {
2110
- color: #ffffff;
2111
- background-color: #f39c12;
2112
- border-color: #f39c12;
2113
- }
2114
- .w3eden .panel-warning > .panel-heading + .panel-collapse > .panel-body {
2115
- border-top-color: #f39c12;
2116
- }
2117
- .w3eden .panel-warning > .panel-heading .badge {
2118
- color: #f39c12;
2119
- background-color: #ffffff;
2120
- }
2121
- .w3eden .panel-warning > .panel-footer + .panel-collapse > .panel-body {
2122
- border-bottom-color: #f39c12;
2123
- }
2124
- .w3eden .panel-danger {
2125
- border-color: #e74c3c;
2126
- }
2127
- .w3eden .panel-danger > .panel-heading {
2128
- color: #ffffff;
2129
- background-color: #e74c3c;
2130
- border-color: #e74c3c;
2131
- }
2132
- .w3eden .panel-danger > .panel-heading + .panel-collapse > .panel-body {
2133
- border-top-color: #e74c3c;
2134
- }
2135
- .w3eden .panel-danger > .panel-heading .badge {
2136
- color: #e74c3c;
2137
- background-color: #ffffff;
2138
- }
2139
- .w3eden .panel-danger > .panel-footer + .panel-collapse > .panel-body {
2140
- border-bottom-color: #e74c3c;
2141
- }
2142
- .w3eden .modal-header {
2143
- background: #1abc9c;
2144
- border-top-left-radius: 3px;
2145
- border-top-right-radius: 3px;
2146
- color: #ffffff;
2147
- border-bottom: 0;
2148
- }
2149
- .w3eden .modal-header .modal-title,
2150
- .w3eden .modal-header {
2151
- font-size: 11pt;
2152
- line-height: 22px;
2153
- }
2154
- .w3eden .modal-content {
2155
- position: relative;
2156
- background-color: #ffffff;
2157
- border: 1px solid #999999;
2158
- border: 1px solid rgba(0, 0, 0, 0.2);
2159
- border-radius: 6px;
2160
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2161
- box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2162
- -webkit-background-clip: padding-box;
2163
- background-clip: padding-box;
2164
- outline: 0;
2165
- }
2166
- .w3eden .popover {
2167
- border: 1px solid #cccccc;
2168
- border: 1px solid rgba(0, 0, 0, 0.2);
2169
- border-radius: 6px;
2170
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2171
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2172
- white-space: normal;
2173
- }
2174
- .w3eden .popover.top > .arrow {
2175
- border-top-color: #999999;
2176
- border-top-color: rgba(0, 0, 0, 0.25);
2177
- }
2178
- .w3eden .popover.right > .arrow {
2179
- border-right-color: #999999;
2180
- border-right-color: rgba(0, 0, 0, 0.25);
2181
- }
2182
- .w3eden .popover.bottom > .arrow {
2183
- border-bottom-color: #999999;
2184
- border-bottom-color: rgba(0, 0, 0, 0.25);
2185
- top: -11px;
2186
- }
2187
- .w3eden .popover.left > .arrow {
2188
- border-left-color: #999999;
2189
- border-left-color: rgba(0, 0, 0, 0.25);
2190
- }
2191
- .w3eden .navbar {
2192
- border-width: 0;
2193
- }
2194
- .w3eden .navbar input[type=text] {
2195
- border: 0;
2196
- }
2197
- .w3eden .navbar-default .badge {
2198
- background-color: #fff;
2199
- color: #2c3e50;
2200
- }
2201
- .w3eden .navbar-inverse .badge {
2202
- background-color: #fff;
2203
- color: #18bc9c;
2204
- }
2205
- .w3eden .navbar-brand {
2206
- line-height: 1;
2207
- }
2208
- .w3eden .btn:active {
2209
- -webkit-box-shadow: none;
2210
- box-shadow: none;
2211
- }
2212
- .w3eden .btn-group.open .dropdown-toggle {
2213
- -webkit-box-shadow: none;
2214
- box-shadow: none;
2215
- }
2216
- .w3eden .btn-group .btn:not(:last-child) {
2217
- border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
2218
- margin-right: 1px;
2219
- }
2220
- .w3eden .text-primary,
2221
- .w3eden .text-primary:hover {
2222
- color: #2c3e50;
2223
- }
2224
- .w3eden .text-success,
2225
- .w3eden .text-success:hover {
2226
- color: #2ecc71;
2227
- }
2228
- .w3eden .text-danger,
2229
- .w3eden .text-danger:hover {
2230
- color: #e74c3c;
2231
- }
2232
- .w3eden .text-warning,
2233
- .w3eden .text-warning:hover {
2234
- color: #f39c12;
2235
- }
2236
- .w3eden .text-info,
2237
- .w3eden .text-info:hover {
2238
- color: #3498db;
2239
- }
2240
- .w3eden .form-control {
2241
- border-radius: 3px;
2242
- box-shadow: none;
2243
- border-color: #dee4e8;
2244
- }
2245
- .w3eden .form-control:focus {
2246
- border-color: #1abc9c;
2247
- outline: 0;
2248
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(26, 188, 156, 0.6);
2249
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(26, 188, 156, 0.6);
2250
- }
2251
- .w3eden .has-warning .help-block,
2252
- .w3eden .has-warning .control-label,
2253
- .w3eden .has-warning .radio,
2254
- .w3eden .has-warning .checkbox,
2255
- .w3eden .has-warning .radio-inline,
2256
- .w3eden .has-warning .checkbox-inline,
2257
- .w3eden .has-warning .form-control-feedback {
2258
- color: #f39c12;
2259
- }
2260
- .w3eden .has-warning .form-control,
2261
- .w3eden .has-warning .form-control:focus {
2262
- border: 1px solid #f39c12;
2263
- }
2264
- .w3eden .has-warning .input-group-addon {
2265
- border-color: #f39c12;
2266
- }
2267
- .w3eden .has-error .help-block,
2268
- .w3eden .has-error .control-label,
2269
- .w3eden .has-error .radio,
2270
- .w3eden .has-error .checkbox,
2271
- .w3eden .has-error .radio-inline,
2272
- .w3eden .has-error .checkbox-inline,
2273
- .w3eden .has-error .form-control-feedback {
2274
- color: #e74c3c;
2275
- }
2276
- .w3eden .has-error .form-control,
2277
- .w3eden .has-error .form-control:focus {
2278
- border: 1px solid #e74c3c;
2279
- }
2280
- .w3eden .has-error .input-group-addon {
2281
- border-color: #e74c3c;
2282
- }
2283
- .w3eden .has-success .help-block,
2284
- .w3eden .has-success .control-label,
2285
- .w3eden .has-success .radio,
2286
- .w3eden .has-success .checkbox,
2287
- .w3eden .has-success .radio-inline,
2288
- .w3eden .has-success .checkbox-inline,
2289
- .w3eden .has-success .form-control-feedback {
2290
- color: #18bc9c;
2291
- }
2292
- .w3eden .has-success .form-control,
2293
- .w3eden .has-success .form-control:focus {
2294
- border: 1px solid #18bc9c;
2295
- }
2296
- .w3eden .has-success .input-group-addon {
2297
- border-color: #18bc9c;
2298
- }
2299
- .w3eden .nav .open > a,
2300
- .w3eden .nav .open > a:hover,
2301
- .w3eden .nav .open > a:focus {
2302
- border-color: transparent;
2303
- }
2304
- .w3eden .pager a,
2305
- .w3eden .pager a:hover {
2306
- color: #fff;
2307
- }
2308
- .w3eden .pager .disabled > a,
2309
- .w3eden .pager .disabled > a:hover,
2310
- .w3eden .pager .disabled > a:focus,
2311
- .w3eden .pager .disabled > span {
2312
- background-color: #3be6c4;
2313
- }
2314
- .w3eden .close {
2315
- color: #fff;
2316
- text-decoration: none;
2317
- opacity: 0.4;
2318
- }
2319
- .w3eden .close:hover,
2320
- .w3eden .close:focus {
2321
- color: #fff;
2322
- opacity: 1;
2323
- }
2324
- .w3eden .alert .alert-link {
2325
- color: #fff;
2326
- text-decoration: underline;
2327
- }
2328
- .w3eden .progress {
2329
- height: 25px;
2330
- border-radius: 3px;
2331
- }
2332
- .w3eden .progress .progress-bar {
2333
- font-size: 10px;
2334
- line-height: 10px;
2335
- }
2336
- .w3eden .well {
2337
- -webkit-box-shadow: none;
2338
- box-shadow: none;
2339
- }
2340
- .w3eden a.list-group-item.active,
2341
- .w3eden a.list-group-item.active:hover,
2342
- .w3eden a.list-group-item.active:focus {
2343
- border-color: #ecf0f1;
2344
- }
2345
- .w3eden a.list-group-item-success.active {
2346
- background-color: #18bc9c;
2347
- }
2348
- .w3eden a.list-group-item-success.active:hover,
2349
- .w3eden a.list-group-item-success.active:focus {
2350
- background-color: #15a589;
2351
- }
2352
- .w3eden a.list-group-item-warning.active {
2353
- background-color: #f39c12;
2354
- }
2355
- .w3eden a.list-group-item-warning.active:hover,
2356
- .w3eden a.list-group-item-warning.active:focus {
2357
- background-color: #e08e0b;
2358
- }
2359
- .w3eden a.list-group-item-danger.active {
2360
- background-color: #e74c3c;
2361
- }
2362
- .w3eden a.list-group-item-danger.active:hover,
2363
- .w3eden a.list-group-item-danger.active:focus {
2364
- background-color: #e43725;
2365
- }
2366
- .w3eden .panel-default .close {
2367
- color: #2c3e50;
2368
- }
2369
- .w3eden .modal .close {
2370
- color: #2c3e50;
2371
- }
2372
- .w3eden .popover {
2373
- color: #2c3e50;
2374
- }
2375
- .w3eden .card {
2376
- padding-top: 20px;
2377
- background-color: rgba(214, 224, 226, 0.2);
2378
- border-top-width: 0;
2379
- border-bottom-width: 2px;
2380
- -webkit-border-radius: 3px;
2381
- -moz-border-radius: 3px;
2382
- border-radius: 3px;
2383
- -webkit-box-shadow: none;
2384
- -moz-box-shadow: none;
2385
- box-shadow: none;
2386
- -webkit-box-sizing: border-box;
2387
- -moz-box-sizing: border-box;
2388
- box-sizing: border-box;
2389
- }
2390
- .w3eden .card .card-heading {
2391
- padding: 0 20px;
2392
- margin: 0;
2393
- }
2394
- .w3eden .card .card-heading.simple {
2395
- font-size: 20px;
2396
- font-weight: 300;
2397
- color: #777;
2398
- border-bottom: 1px solid #e5e5e5;
2399
- }
2400
- .w3eden .card .card-heading.image img {
2401
- display: inline-block;
2402
- width: 46px;
2403
- height: 46px;
2404
- margin-right: 15px;
2405
- vertical-align: top;
2406
- border: 0;
2407
- -webkit-border-radius: 50%;
2408
- -moz-border-radius: 50%;
2409
- border-radius: 50%;
2410
- }
2411
- .w3eden .card .card-heading.image .card-heading-header {
2412
- display: inline-block;
2413
- vertical-align: top;
2414
- }
2415
- .w3eden .card .card-heading.image .card-heading-header h3 {
2416
- margin: 0;
2417
- font-size: 14px;
2418
- line-height: 16px;
2419
- color: #262626;
2420
- }
2421
- .w3eden .card .card-heading.image .card-heading-header span {
2422
- font-size: 12px;
2423
- color: #999999;
2424
- }
2425
- .w3eden .card .card-body {
2426
- padding: 0 20px;
2427
- margin-top: 20px;
2428
- }
2429
- .w3eden .card .card-media {
2430
- padding: 0 20px;
2431
- margin: 0 -14px;
2432
- }
2433
- .w3eden .card .card-media img {
2434
- max-width: 100%;
2435
- max-height: 100%;
2436
- }
2437
- .w3eden .card .card-actions {
2438
- min-height: 30px;
2439
- padding: 0 20px 20px 20px;
2440
- margin: 20px 0 0 0;
2441
- }
2442
- .w3eden .card .card-comments {
2443
- padding: 20px;
2444
- margin: 0;
2445
- background-color: #f8f8f8;
2446
- }
2447
- .w3eden .card .card-comments .comments-collapse-toggle {
2448
- padding: 0;
2449
- margin: 0 20px 12px 20px;
2450
- }
2451
- .w3eden .card .card-comments .comments-collapse-toggle a,
2452
- .w3eden .card .card-comments .comments-collapse-toggle span {
2453
- padding-right: 5px;
2454
- overflow: hidden;
2455
- font-size: 12px;
2456
- color: #999;
2457
- text-overflow: ellipsis;
2458
- white-space: nowrap;
2459
- }
2460
- .w3eden .card-comments .media-heading {
2461
- font-size: 13px;
2462
- font-weight: bold;
2463
- }
2464
- .w3eden .card.people {
2465
- position: relative;
2466
- display: inline-block;
2467
- width: 170px;
2468
- height: 300px;
2469
- padding-top: 0;
2470
- margin-left: 20px;
2471
- overflow: hidden;
2472
- vertical-align: top;
2473
- }
2474
- .w3eden .card.people:first-child {
2475
- margin-left: 0;
2476
- }
2477
- .w3eden .card.people .card-top {
2478
- position: absolute;
2479
- top: 0;
2480
- left: 0;
2481
- display: inline-block;
2482
- width: 170px;
2483
- height: 150px;
2484
- background-color: #ffffff;
2485
- }
2486
- .w3eden .card.people .card-top.green {
2487
- background-color: #53a93f;
2488
- }
2489
- .w3eden .card.people .card-top.blue {
2490
- background-color: #427fed;
2491
- }
2492
- .w3eden .card.people .card-info {
2493
- position: absolute;
2494
- top: 150px;
2495
- display: inline-block;
2496
- width: 100%;
2497
- height: 101px;
2498
- overflow: hidden;
2499
- background: #ffffff;
2500
- -webkit-box-sizing: border-box;
2501
- -moz-box-sizing: border-box;
2502
- box-sizing: border-box;
2503
- }
2504
- .w3eden .card.people .card-info .title {
2505
- display: block;
2506
- margin: 8px 14px 0 14px;
2507
- overflow: hidden;
2508
- font-size: 16px;
2509
- font-weight: bold;
2510
- line-height: 18px;
2511
- color: #404040;
2512
- }
2513
- .w3eden .card.people .card-info .desc {
2514
- display: block;
2515
- margin: 8px 14px 0 14px;
2516
- overflow: hidden;
2517
- font-size: 12px;
2518
- line-height: 16px;
2519
- color: #737373;
2520
- text-overflow: ellipsis;
2521
- }
2522
- .w3eden .card.people .card-bottom {
2523
- position: absolute;
2524
- bottom: 0;
2525
- left: 0;
2526
- display: inline-block;
2527
- width: 100%;
2528
- padding: 10px 20px;
2529
- line-height: 29px;
2530
- text-align: center;
2531
- -webkit-box-sizing: border-box;
2532
- -moz-box-sizing: border-box;
2533
- box-sizing: border-box;
2534
- }
2535
- .w3eden .card.hovercard {
2536
- position: relative;
2537
- padding-top: 0;
2538
- overflow: hidden;
2539
- text-align: center;
2540
- background-color: rgba(214, 224, 226, 0.2);
2541
- }
2542
- .w3eden .card.hovercard .cardheader {
2543
- background: url("../imgs/image-1.png");
2544
- background-size: cover;
2545
- height: 135px;
2546
- }
2547
- .w3eden .card.hovercard .avatar {
2548
- position: relative;
2549
- top: -50px;
2550
- margin-bottom: -50px;
2551
- }
2552
- .w3eden .card.hovercard .avatar img {
2553
- width: 100px;
2554
- height: 100px;
2555
- max-width: 100px;
2556
- max-height: 100px;
2557
- -webkit-border-radius: 50%;
2558
- -moz-border-radius: 50%;
2559
- border-radius: 50%;
2560
- border: 5px solid rgba(255, 255, 255, 0.5);
2561
- }
2562
- .w3eden .card.hovercard .info {
2563
- padding: 4px 8px 10px;
2564
- }
2565
- .w3eden .card.hovercard .info .title {
2566
- margin-bottom: 4px;
2567
- font-size: 24px;
2568
- line-height: 1;
2569
- color: #262626;
2570
- vertical-align: middle;
2571
- }
2572
- .w3eden .card.hovercard .info .desc {
2573
- overflow: hidden;
2574
- font-size: 12px;
2575
- line-height: 20px;
2576
- color: #737373;
2577
- text-overflow: ellipsis;
2578
- }
2579
- .w3eden .card.hovercard .bottom {
2580
- padding: 0 20px;
2581
- margin-bottom: 17px;
2582
- }
2583
- .w3eden .fb-profile {
2584
- background-color: rgba(214, 224, 226, 0.2);
2585
- border-radius: 4px;
2586
- padding-bottom: 20px;
2587
- overflow: hidden;
2588
- }
2589
- .w3eden .fb-profile img.fb-image-lg {
2590
- z-index: 0;
2591
- width: 100%;
2592
- margin-bottom: 10px;
2593
- }
2594
- .w3eden .fb-image-profile {
2595
- margin: -45px 10px 0 20px;
2596
- width: 100px;
2597
- z-index: 9;
2598
- border: 6px solid rgba(255, 255, 255, 0.7);
2599
- border-radius: 3px;
2600
- }
2601
- .w3eden .fb-profile-name {
2602
- font-size: 14pt;
2603
- font-family: Montserrat;
2604
- }
2605
- .w3eden .profile.panel {
2606
- background-color: rgba(214, 224, 226, 0.2);
2607
- border-radius: 4px;
2608
- overflow: hidden;
2609
- margin: 20px 0;
2610
- }
2611
- .w3eden .bg_blur {
2612
- background-image: url('http://lorempixel.com/500/500/nature/2/');
2613
- height: 300px;
2614
- background-size: cover;
2615
- }
2616
- .w3eden .profile.panel .info-col .btn-group {
2617
- position: absolute;
2618
- bottom: 0;
2619
- margin-left: -15px;
2620
- }
2621
- .w3eden .profile.panel .info-col .btn-group .btn {
2622
- width: 33.33%;
2623
- border-radius: 0;
2624
- }
2625
- .w3eden .profile.panel .info-col {
2626
- height: 300px;
2627
- }
2628
- .w3eden .follow_btn {
2629
- text-decoration: none;
2630
- position: absolute;
2631
- left: 35%;
2632
- top: 42.5%;
2633
- }
2634
- .w3eden .profile.panel .header {
2635
- color: #808080;
2636
- margin-left: 10%;
2637
- margin-top: 70px;
2638
- }
2639
- .w3eden .profile.panel .picture {
2640
- height: 150px;
2641
- width: 150px;
2642
- position: absolute;
2643
- top: 75px;
2644
- left: -75px;
2645
- border: 6px solid rgba(255, 255, 255, 0.8);
2646
- border-radius: 3px;
2647
- }
2648
- .w3eden .profile.panel .picture_mob {
2649
- position: absolute;
2650
- width: 35%;
2651
- left: 35%;
2652
- bottom: 85%;
2653
- }
2654
- @media (max-width: 767px) {
2655
- .w3eden .profile.panel .header {
2656
- text-align: center;
2657
- }
2658
- .w3eden .profile.panel .nav {
2659
- margin-top: 30px;
2660
- }
2661
- }
2662
- .w3eden .profile-card {
2663
- width: 100%;
2664
- height: auto;
2665
- background: rgba(214, 224, 226, 0.2);
2666
- border-radius: 3px;
2667
- overflow: hidden;
2668
- }
2669
- .w3eden .profile-card h1 {
2670
- font-size: 24px;
2671
- margin-top: 0px;
2672
- }
2673
- .w3eden .profile-card .img-container {
2674
- width: 100%;
2675
- height: 200px;
2676
- text-align: center;
2677
- background: #307edd;
2678
- background: -moz-linear-gradient(-45deg, #307edd 0%, #f25c89 100%);
2679
- background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #307edd), color-stop(100%, #f25c89));
2680
- background: -webkit-linear-gradient(-45deg, #307edd 0%, #f25c89 100%);
2681
- background: -o-linear-gradient(-45deg, #307edd 0%, #f25c89 100%);
2682
- background: -ms-linear-gradient(-45deg, #307edd 0%, #f25c89 100%);
2683
- background: linear-gradient(135deg, #307edd 0%, #f25c89 100%);
2684
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#307edd', endColorstr='#f25c89', GradientType=1);
2685
- }
2686
- .w3eden .profile-card .img-container a {
2687
- margin: 0px auto;
2688
- text-align: center;
2689
- }
2690
- .w3eden .profile-card .img-container a img {
2691
- border-radius: 50%;
2692
- border: 3px solid #fff;
2693
- margin-top: 50px;
2694
- }
2695
- .w3eden .profile-card .pc-key {
2696
- width: 100%;
2697
- height: auto;
2698
- float: left;
2699
- }
2700
- .w3eden .profile-card .pc-key p {
2701
- font-size: 15px;
2702
- color: #828282;
2703
- float: left;
2704
- line-height: 42px;
2705
- margin-bottom: 0px;
2706
- margin-left: 20px;
2707
- }
2708
- .w3eden .profile-card .pc-key ul {
2709
- float: right;
2710
- margin: 0px;
2711
- padding: 0px;
2712
- }
2713
- .w3eden .profile-card .pc-key ul li {
2714
- padding: 4px 12px;
2715
- margin-top: 6px;
2716
- border-right: 1px solid #ddd;
2717
- color: #3f4c6b;
2718
- list-style: none;
2719
- float: left;
2720
- }
2721
- .w3eden .profile-card .pc-key ul li a {
2722
- color: #3f4c6b;
2723
- }
2724
- .w3eden .profile-card .pc-key ul li a:hover {
2725
- color: #242D3F;
2726
- }
2727
- .w3eden .profile-card .pc-key ul li:last-child {
2728
- border-right: none;
2729
- }
2730
- .w3eden .profile-card ul.follow-list {
2731
- margin: 0px;
2732
- padding: 0px;
2733
- background: #3f4c6b;
2734
- width: 100%;
2735
- }
2736
- .w3eden .profile-card ul.follow-list li {
2737
- width: 25%;
2738
- float: left;
2739
- list-style: none;
2740
- padding: 8px 0px;
2741
- background: #111F28;
2742
- }
2743
- .w3eden .profile-card ul.follow-list li a {
2744
- padding: 2px 14px;
2745
- display: inline-block;
2746
- color: #fff;
2747
- font-size: 13px;
2748
- border-right: 1px solid #1C3544;
2749
- }
2750
- .w3eden .profile-card ul.follow-list li:last-child a {
2751
- border-right: none;
2752
- }
2753
- .w3eden .panel.panel-card {
2754
- position: relative;
2755
- height: 241px;
2756
- border: none;
2757
- overflow: hidden;
2758
- background: rgba(214, 224, 226, 0.2);
2759
- }
2760
- .w3eden .panel.panel-card .panel-heading {
2761
- position: relative;
2762
- z-index: 2;
2763
- height: 120px;
2764
- border-bottom-color: #fff;
2765
- overflow: hidden;
2766
- -webkit-transition: height 600ms ease-in-out;
2767
- transition: height 600ms ease-in-out;
2768
- }
2769
- .w3eden .panel.panel-card .panel-heading img {
2770
- position: absolute;
2771
- top: 50%;
2772
- left: 50%;
2773
- z-index: 1;
2774
- width: 120%;
2775
- -webkit-transform: translate3d(-50%, -50%, 0);
2776
- transform: translate3d(-50%, -50%, 0);
2777
- }
2778
- .w3eden .panel.panel-card .panel-heading button {
2779
- position: absolute;
2780
- top: 10px;
2781
- right: 15px;
2782
- z-index: 3;
2783
- }
2784
- .w3eden .panel.panel-card .panel-figure {
2785
- position: absolute;
2786
- top: auto;
2787
- left: 50%;
2788
- z-index: 3;
2789
- width: 70px;
2790
- height: 70px;
2791
- background-color: #fff;
2792
- border-radius: 50%;
2793
- opacity: 1;
2794
- -webkit-box-shadow: 0 0 0 3px #fff;
2795
- box-shadow: 0 0 0 3px #fff;
2796
- -webkit-transform: translate3d(-50%, -50%, 0);
2797
- transform: translate3d(-50%, -50%, 0);
2798
- -webkit-transition: opacity 400ms ease-in-out;
2799
- transition: opacity 400ms ease-in-out;
2800
- }
2801
- .w3eden .panel.panel-card .panel-body {
2802
- padding-top: 40px;
2803
- padding-bottom: 20px;
2804
- -webkit-transition: padding 400ms ease-in-out;
2805
- transition: padding 400ms ease-in-out;
2806
- }
2807
- .w3eden .panel.panel-card .panel-thumbnails {
2808
- padding: 0 15px 20px;
2809
- }
2810
- .w3eden .panel-thumbnails .thumbnail {
2811
- width: 60px;
2812
- max-width: 100%;
2813
- margin: 0 auto;
2814
- background-color: #fff;
2815
- }
2816
- .w3eden .panel.panel-card:hover .panel-heading {
2817
- height: 55px;
2818
- -webkit-transition: height 400ms ease-in-out;
2819
- transition: height 400ms ease-in-out;
2820
- }
2821
- .w3eden .panel.panel-card:hover .panel-figure {
2822
- opacity: 0;
2823
- -webkit-transition: opacity 400ms ease-in-out;
2824
- transition: opacity 400ms ease-in-out;
2825
- }
2826
- .w3eden .panel.panel-card:hover .panel-body {
2827
- padding-top: 20px;
2828
- -webkit-transition: padding 400ms ease-in-out;
2829
- transition: padding 400ms ease-in-out;
2830
- }
2831
- .w3eden #featureCarousel {
2832
- border-radius: 4px;
2833
- overflow: hidden;
2834
- }
2835
- .w3eden #featureCarousel .nav-pills {
2836
- background: #ECF0F1;
2837
- }
2838
- .w3eden #featureCarousel .nav-pills a {
2839
- border-radius: 0;
2840
- font-size: 12pt;
2841
- font-family: Montserrat, san-serif;
2842
- padding-top: 15px;
2843
- padding-bottom: 15px;
2844
- }
2845
- .w3eden #featureCarousel .nav-pills.active a {
2846
- outline: none !important;
2847
- }
2848
- .w3eden #featureCarousel .nav-pills a small {
2849
- display: block;
2850
- font-family: 'Source Sans Pro', san-serif;
2851
- }
2852
- .w3eden #featureCarousel .carousel-caption {
2853
- width: 100%;
2854
- margin: 0;
2855
- bottom: 0;
2856
- left: 0;
2857
- right: 0;
2858
- padding: 30px 10%;
2859
- background: -moz-linear-gradient(top, rgba(44, 62, 80, 0) 0%, #2c3e50 90%, #2c3e50 100%);
2860
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(44, 62, 80, 0)), color-stop(90%, #2c3e50), color-stop(100%, #2c3e50));
2861
- background: -webkit-linear-gradient(top, rgba(44, 62, 80, 0) 0%, #2c3e50 90%, #2c3e50 100%);
2862
- background: -o-linear-gradient(top, rgba(44, 62, 80, 0) 0%, #2c3e50 90%, #2c3e50 100%);
2863
- background: -ms-linear-gradient(top, rgba(44, 62, 80, 0) 0%, #2c3e50 90%, #2c3e50 100%);
2864
- background: linear-gradient(to bottom, rgba(44, 62, 80, 0) 0%, #2c3e50 90%, #2c3e50 100%);
2865
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#002c3e50', endColorstr='@color_primary', GradientType=0);
2866
- font-size: 14pt;
2867
- text-align: left;
2868
- }
2869
- @media (max-width: 768px) {
2870
- .w3eden #featureCarousel .carousel-inner,
2871
- .w3eden #featureCarousel .carousel-inner .item img,
2872
- .w3eden #featureCarousel .carousel-inner .item {
2873
- min-height: 250px !important;
2874
- font-size: 9pt !important;
2875
- background: #2c3e50;
2876
- }
2877
- .w3eden #featureCarousel .carousel-inner .item img {
2878
- width: auto !important;
2879
- max-width: 1000px;
2880
- max-height: 250px !important;
2881
- }
2882
- .w3eden #featureCarousel .carousel-inner .carousel-caption h3 {
2883
- font-size: 12pt;
2884
- }
2885
- .w3eden #featureCarousel .carousel-inner .carousel-caption {
2886
- font-size: 10pt !important;
2887
- background: rgba(0, 0, 0, 0.4);
2888
- height: 100%;
2889
- }
2890
- }
2891
- .w3eden .diamond {
2892
- width: 56px;
2893
- line-height: 56px;
2894
- height: 56px;
2895
- border-radius: 8px;
2896
- border: 1px solid #18BC9C;
2897
- color: #18BC9C;
2898
- text-align: center;
2899
- font-size: 15pt;
2900
- transform: rotate(45deg);
2901
- margin-top: 12px;
2902
- }
2903
- .w3eden .diamond i {
2904
- transform: rotate(-45deg);
2905
- }
2906
- .w3eden .diamond.filled {
2907
- background: #18BC9C;
2908
- }
2909
- .w3eden .diamond.filled i {
2910
- color: #ffffff;
2911
- }
2912
- .w3eden .circle {
2913
- width: 70px;
2914
- line-height: 70px;
2915
- height: 70px;
2916
- border-radius: 50%;
2917
- border: 1px solid #18BC9C;
2918
- color: #18BC9C;
2919
- text-align: center;
2920
- font-size: 15pt;
2921
- }
2922
- .w3eden .circle.filled {
2923
- background: #18BC9C;
2924
- }
2925
- .w3eden .circle.filled i {
2926
- color: #ffffff;
2927
- }
2928
- .w3eden .square {
2929
- width: 70px;
2930
- line-height: 70px;
2931
- height: 70px;
2932
- border-radius: 4px;
2933
- border: 1px solid #18BC9C;
2934
- color: #18BC9C;
2935
- text-align: center;
2936
- font-size: 15pt;
2937
- }
2938
- .w3eden .ios {
2939
- width: 70px;
2940
- line-height: 70px;
2941
- height: 70px;
2942
- border-radius: 15px;
2943
- background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
2944
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.2)), color-stop(100%, rgba(0, 0, 0, 0)));
2945
- background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
2946
- background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
2947
- background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
2948
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
2949
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#82000000', endColorstr='#00000000', GradientType=0);
2950
- color: #ffffff;
2951
- text-align: center;
2952
- font-size: 15pt;
2953
- }
2954
- .w3eden .square.filled {
2955
- background: #18BC9C;
2956
- }
2957
- .w3eden .square.filled i {
2958
- color: #ffffff;
2959
- }
2960
- .w3eden .featured-content-box {
2961
- padding: 15px;
2962
- border: 1px solid #ECF0F1;
2963
- border-radius: 3px;
2964
- margin-bottom: 20px;
2965
- }
2966
- .w3eden .featured-content-box h3 {
2967
- font-size: 13pt;
2968
- }
2969
- .w3eden .media.featured-content-box h3 {
2970
- margin-top: 0;
2971
- }
2972
- .w3eden .featured-content-box.text-center {
2973
- padding: 20px;
2974
- }
2975
- .w3eden .featured-content-box.text-center .feature-icon {
2976
- margin: 10px auto;
2977
- }
2978
- .w3eden .panel-subscribe {
2979
- border: 0;
2980
- position: relative;
2981
- background: #F3F7F8;
2982
- padding-top: 5px;
2983
- }
2984
- .w3eden .panel-subscribe:before {
2985
- content: "";
2986
- position: absolute;
2987
- border-top: 5px solid #18BC9C;
2988
- left: 0;
2989
- right: 0;
2990
- top: 0;
2991
- }
2992
- .w3eden .panel-subscribe-alt {
2993
- background: #18BC9C;
2994
- }
2995
- .w3eden .panel-subscribe,
2996
- .w3eden .panel-subscribe * {
2997
- border-radius: 0;
2998
- }
2999
- .w3eden .panel-subscribe h3 {
3000
- margin-top: 0;
3001
- font-size: 12pt;
3002
- }
3003
- .w3eden .panel-subscribe .media img {
3004
- max-width: 90px;
3005
- margin-left: 20px;
3006
- }
3007
- .w3eden .panel-subscribe-alt .media * {
3008
- color: #ffffff;
3009
- }
3010
- .w3eden .panel-subscribe-alt .media img {
3011
- margin-left: 0;
3012
- margin-right: 20px;
3013
- }
3014
- .w3eden .panel-subscribe .panel-footer {
3015
- background: rgba(0, 0, 0, 0.05);
3016
- }
3017
- .w3eden .panel-subscribe-alt .panel-footer {
3018
- background: rgba(255, 255, 255, 0.2);
3019
- }
3020
- .w3eden .panel-subscribe:not(.panel-subscribe-vert) .form-group {
3021
- width: 32.7%;
3022
- }
3023
- .w3eden .panel-subscribe .form-group .form-control {
3024
- width: 95%;
3025
- border: 0;
3026
- box-shadow: none;
3027
- }
3028
- .w3eden .panel-subscribe-vert:before {
3029
- border-top: 0;
3030
- }
3031
- .w3eden .panel-subscribe-vert .form-group .form-control {
3032
- width: 100%;
3033
- border: 0;
3034
- box-shadow: none;
3035
- color: #333333;
3036
- }
3037
- .w3eden .panel-subscribe-vert .media .sub-form {
3038
- padding: 20px 20px 0;
3039
- background: rgba(255, 255, 255, 0.2);
3040
- }
3041
- .w3eden .panel-subscribe-vert .media .media-body {
3042
- padding: 20px;
3043
- text-align: center;
3044
- }
3045
- .w3eden .panel-subscribe-vert .media .media-body h3 {
3046
- margin-top: 13px;
3047
- }
3048
- .w3eden .panel-subscribe-mod .media .sub-form {
3049
- padding: 20px 20px 0;
3050
- background: #18BC9C;
3051
- }
3052
- .w3eden .panel-subscribe-vert .panel-footer .input-group {
3053
- width: 100%;
3054
- }
3055
- .w3eden .panel-subscribe-vert .panel-footer .input-group .form-control {
3056
- width: 60%;
3057
- box-shadow: none;
3058
- border: 0;
3059
- }
3060
- .w3eden .panel-subscribe-vert .panel-footer .input-group .input-group-btn {
3061
- width: 40%;
3062
- display: inline-block;
3063
- }
3064
- .w3eden .panel-subscribe-narrow .media img {
3065
- margin-right: 0;
3066
- margin-top: 10px;
3067
- }
3068
- .w3eden .panel-subscribe-narrow .panel-footer {
3069
- padding-top: 20px;
3070
- }
3071
- .w3eden .panel-subscribe-narrow .panel-footer .form-group {
3072
- margin-bottom: 10px;
3073
- }
3074
- .w3eden .panel-subscribe-narrow .panel-body {
3075
- position: relative;
3076
- }
3077
- .w3eden .panel-subscribe-narrow .panel-body:after {
3078
- content: '';
3079
- position: absolute;
3080
- border-style: solid;
3081
- border-width: 10px 10px 0;
3082
- border-color: #18BC9C transparent;
3083
- display: block;
3084
- width: 0;
3085
- z-index: 1;
3086
- margin-left: -10px;
3087
- bottom: -10px;
3088
- left: 50%;
3089
- }
3090
- .w3eden .panel-subscribe-split .panel-footer {
3091
- background: #18BC9C;
3092
- }
3093
- .w3eden .panel-subscribe-light .panel-body:after,
3094
- .w3eden .panel-subscribe-split .panel-body:after {
3095
- content: '';
3096
- position: absolute;
3097
- border-style: solid;
3098
- border-width: 10px 10px 0;
3099
- border-color: #F3F7F8 transparent;
3100
- display: block;
3101
- width: 0;
3102
- z-index: 1;
3103
- margin-left: -10px;
3104
- bottom: -10px;
3105
- left: 50%;
3106
- }
3107
- .w3eden .panel-subscribe-light:before {
3108
- content: "";
3109
- position: absolute;
3110
- border-top: 5px solid #18BC9C !important;
3111
- left: 0;
3112
- right: 0;
3113
- top: 0;
3114
- }
3115
- .w3eden .modal-content.modal-subscription {
3116
- border-radius: 0px;
3117
- overflow: hidden;
3118
- }
3119
- .w3eden .modal-content .panel-subscribe {
3120
- margin-bottom: 0;
3121
- }
3122
- .w3eden .modal-content.modal-subscription .panel-footer {
3123
- padding-bottom: 15px;
3124
- }
3125
- .w3eden .modal-subscription-narrow {
3126
- width: 300px;
3127
- top: 25% !important;
3128
- }
3129
- .w3eden .modal-subscription-wide {
3130
- width: 500px;
3131
- top: 25% !important;
3132
- }
3133
- .w3eden .bootstrap-switch {
3134
- font-family: 'Montserrat', sans-serif;
3135
- font-weight: 900;
3136
- }
3137
- .w3eden label.eden-check input[type=checkbox],
3138
- .w3eden label.eden-radio input[type=radio] {
3139
- opacity: 0;
3140
- width: 30px;
3141
- position: absolute;
3142
- }
3143
- .w3eden label.eden-check span,
3144
- .w3eden label.eden-radio span {
3145
- width: 20px;
3146
- height: 20px;
3147
- border: 1px solid #18BC9C;
3148
- left: 0;
3149
- display: block;
3150
- float: left;
3151
- margin: 1px 6px 0 0;
3152
- border-radius: 50%;
3153
- cursor: pointer;
3154
- font-size: 8pt;
3155
- line-height: 18px;
3156
- text-align: center;
3157
- color: #ffffff;
3158
- -webkit-transition: all 0.3s ease;
3159
- transition: all 0.3s ease;
3160
- }
3161
- .w3eden label.eden-check span {
3162
- border-radius: 2px;
3163
- }
3164
- .w3eden label.eden-check:hover input[type=checkbox]:not(:checked) + span,
3165
- .w3eden label.eden-radio:hover input[type=radio]:not(:checked) + span {
3166
- color: rgba(24, 188, 156, 0.6);
3167
- }
3168
- .w3eden label.eden-check input[type=checkbox]:checked + span,
3169
- .w3eden label.eden-radio input[type=radio]:checked + span {
3170
- background: #18BC9C;
3171
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/bootstrap/css/bootstrap-theme.min.css DELETED
@@ -1,415 +0,0 @@
1
- /*!
2
- * Bootstrap v3.0.2 by @fat and @mdo
3
- * Copyright 2013 Twitter, Inc.
4
- * Licensed under http://www.apache.org/licenses/LICENSE-2.0
5
- *
6
- * Designed and built with all the love in the world by @mdo and @fat.
7
- */
8
- .w3eden .btn:active,
9
- .w3eden .btn:focus{
10
- outline: none !important;
11
- }
12
- .w3eden .btn-secondary,
13
- .w3eden .btn-primary,
14
- .w3eden .btn-success,
15
- .w3eden .btn-info,
16
- .w3eden .btn-warning,
17
- .w3eden .btn-danger {
18
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
19
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
20
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
21
- }
22
- .w3eden .btn-secondary:active,
23
- .w3eden .btn-primary:active,
24
- .w3eden .btn-success:active,
25
- .w3eden .btn-info:active,
26
- .w3eden .btn-warning:active,
27
- .w3eden .btn-danger:active,
28
- .w3eden .btn-secondary.active,
29
- .w3eden .btn-primary.active,
30
- .w3eden .btn-success.active,
31
- .w3eden .btn-info.active,
32
- .w3eden .btn-warning.active,
33
- .w3eden .btn-danger.active {
34
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
35
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
36
- }
37
- .w3eden .btn:active,
38
- .w3eden .btn.active {
39
- background-image: none;
40
- }
41
- .w3eden .btn-secondary {
42
- text-shadow: 0 1px 0 #fff;
43
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#ffffff), to(#e0e0e0));
44
- background-image: -webkit-linear-gradient(top, #ffffff 0, #e0e0e0 100%);
45
- background-image: -moz-linear-gradient(top, #ffffff 0, #e0e0e0 100%);
46
- background-image: linear-gradient(to bottom, #ffffff 0, #e0e0e0 100%);
47
- background-repeat: repeat-x;
48
- border-color: #dbdbdb;
49
- border-color: #ccc;
50
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
51
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
52
- }
53
- .w3eden .btn-secondary:hover,
54
- .w3eden .btn-secondary:focus {
55
- background-color: #e0e0e0;
56
- background-position: 0 -15px;
57
- }
58
- .w3eden .btn-secondary:active,
59
- .w3eden .btn-secondary.active {
60
- background-color: #e0e0e0;
61
- border-color: #dbdbdb;
62
- }
63
- .w3eden .btn-primary {
64
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#428bca), to(#2d6ca2));
65
- background-image: -webkit-linear-gradient(top, #428bca 0, #2d6ca2 100%);
66
- background-image: -moz-linear-gradient(top, #428bca 0, #2d6ca2 100%);
67
- background-image: linear-gradient(to bottom, #428bca 0, #2d6ca2 100%);
68
- background-repeat: repeat-x;
69
- border-color: #2b669a;
70
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
71
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
72
- }
73
- .w3eden .btn-primary:hover,
74
- .w3eden .btn-primary:focus {
75
- background-color: #2d6ca2;
76
- background-position: 0 -15px;
77
- }
78
- .w3eden .btn-primary:active,
79
- .w3eden .btn-primary.active {
80
- background-color: #2d6ca2;
81
- border-color: #2b669a;
82
- }
83
- .w3eden .btn-success {
84
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#5cb85c), to(#63AA63));
85
- background-image: -webkit-linear-gradient(top, #5cb85c 0, #63AA63 100%);
86
- background-image: -moz-linear-gradient(top, #5cb85c 0, #63AA63 100%);
87
- background-image: linear-gradient(to bottom, #5cb85c 0, #63AA63 100%);
88
- background-repeat: repeat-x;
89
- border-color: #3e8f3e;
90
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
91
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
92
- }
93
- .w3eden .btn-success:hover,
94
- .w3eden .btn-success:focus {
95
- background: #7BC47B;
96
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#7BC47B), to(#63AA63));
97
- background-image: -webkit-linear-gradient(top, #7BC47B 0, #63AA63 100%);
98
- background-image: -moz-linear-gradient(top, #7BC47B 0, #63AA63 100%);
99
- background-image: linear-gradient(to bottom, #7BC47B 0, #63AA63 100%);
100
- }
101
- .w3eden .btn-success:active,
102
- .w3eden .btn-success.active {
103
- background-color: #419641;
104
- border-color: #3e8f3e;
105
- }
106
- .w3eden .btn-warning {
107
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#f0ad4e), to(#eb9316));
108
- background-image: -webkit-linear-gradient(top, #f0ad4e 0, #eb9316 100%);
109
- background-image: -moz-linear-gradient(top, #f0ad4e 0, #eb9316 100%);
110
- background-image: linear-gradient(to bottom, #f0ad4e 0, #eb9316 100%);
111
- background-repeat: repeat-x;
112
- border-color: #e38d13;
113
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
114
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
115
- }
116
- .w3eden .btn-warning:hover,
117
- .w3eden .btn-warning:focus {
118
- background-color: #eb9316;
119
- background-position: 0 -15px;
120
- }
121
- .w3eden .btn-warning:active,
122
- .w3eden .btn-warning.active {
123
- background-color: #eb9316;
124
- border-color: #e38d13;
125
- }
126
- .w3eden .btn-danger {
127
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#d9534f), to(#d9534f));
128
- background-image: -webkit-linear-gradient(top, #d9534f 0, #d9534f 100%);
129
- background-image: -moz-linear-gradient(top, #d9534f 0, #d9534f 100%);
130
- background-image: linear-gradient(to bottom, #d9534f 0px, #d9534f 100%);
131
- background-repeat: repeat-x;
132
- border-color: #b92c28;
133
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
134
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
135
- }
136
- .w3eden .btn-danger:hover,
137
- .w3eden .btn-danger:focus {
138
- background-color: #C12E2A;
139
- background-position: 0 -31px;
140
- }
141
- .w3eden .btn-danger:active,
142
- .w3eden .btn-danger.active {
143
- background-color: #c12e2a;
144
- border-color: #b92c28;
145
- }
146
- .w3eden .btn-info {
147
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#5bc0de), to(#2aabd2));
148
- background-image: -webkit-linear-gradient(top, #5bc0de 0, #2aabd2 100%);
149
- background-image: -moz-linear-gradient(top, #5bc0de 0, #2aabd2 100%);
150
- background-image: linear-gradient(to bottom, #5bc0de 0, #2aabd2 100%);
151
- background-repeat: repeat-x;
152
- border-color: #28a4c9;
153
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
154
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
155
- }
156
- .w3eden .btn-info:hover,
157
- .w3eden .btn-info:focus {
158
- background-color: #2aabd2;
159
- background-position: 0 -15px;
160
- }
161
- .w3eden .btn-info:active,
162
- .w3eden .btn-info.active {
163
- background-color: #2aabd2;
164
- border-color: #28a4c9;
165
- }
166
- .w3eden .thumbnail,
167
- .w3eden .img-thumbnail {
168
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
169
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
170
- }
171
- .w3eden .dropdown-menu > li > a:hover,
172
- .w3eden .dropdown-menu > li > a:focus {
173
- background-color: #e8e8e8;
174
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#f5f5f5), to(#e8e8e8));
175
- background-image: -webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
176
- background-image: -moz-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
177
- background-image: linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);
178
- background-repeat: repeat-x;
179
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
180
- }
181
- .w3eden .dropdown-menu > .active > a,
182
- .w3eden .dropdown-menu > .active > a:hover,
183
- .w3eden .dropdown-menu > .active > a:focus {
184
- background-color: #357ebd;
185
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#428bca), to(#357ebd));
186
- background-image: -webkit-linear-gradient(top, #428bca 0, #357ebd 100%);
187
- background-image: -moz-linear-gradient(top, #428bca 0, #357ebd 100%);
188
- background-image: linear-gradient(to bottom, #428bca 0, #357ebd 100%);
189
- background-repeat: repeat-x;
190
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
191
- }
192
- .w3eden .navbar-default {
193
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#ffffff), to(#f8f8f8));
194
- background-image: -webkit-linear-gradient(top, #ffffff 0, #f8f8f8 100%);
195
- background-image: -moz-linear-gradient(top, #ffffff 0, #f8f8f8 100%);
196
- background-image: linear-gradient(to bottom, #ffffff 0, #f8f8f8 100%);
197
- background-repeat: repeat-x;
198
- border-radius: 4px;
199
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
200
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
201
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
202
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
203
- }
204
- .w3eden .navbar-default .navbar-nav > .active > a {
205
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#ebebeb), to(#f3f3f3));
206
- background-image: -webkit-linear-gradient(top, #ebebeb 0, #f3f3f3 100%);
207
- background-image: -moz-linear-gradient(top, #ebebeb 0, #f3f3f3 100%);
208
- background-image: linear-gradient(to bottom, #ebebeb 0, #f3f3f3 100%);
209
- background-repeat: repeat-x;
210
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);
211
- -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
212
- box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
213
- }
214
- .w3eden .navbar-brand,
215
- .w3eden .navbar-nav > li > a {
216
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
217
- }
218
- .w3eden .navbar-inverse {
219
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#3c3c3c), to(#222222));
220
- background-image: -webkit-linear-gradient(top, #3c3c3c 0, #222222 100%);
221
- background-image: -moz-linear-gradient(top, #3c3c3c 0, #222222 100%);
222
- background-image: linear-gradient(to bottom, #3c3c3c 0, #222222 100%);
223
- background-repeat: repeat-x;
224
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
225
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
226
- }
227
- .w3eden .navbar-inverse .navbar-nav > .active > a {
228
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#222222), to(#282828));
229
- background-image: -webkit-linear-gradient(top, #222222 0, #282828 100%);
230
- background-image: -moz-linear-gradient(top, #222222 0, #282828 100%);
231
- background-image: linear-gradient(to bottom, #222222 0, #282828 100%);
232
- background-repeat: repeat-x;
233
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);
234
- -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
235
- box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
236
- }
237
- .w3eden .navbar-inverse .navbar-brand,
238
- .w3eden .navbar-inverse .navbar-nav > li > a {
239
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
240
- }
241
- .w3eden .navbar-static-top,
242
- .w3eden .navbar-fixed-top,
243
- .w3eden .navbar-fixed-bottom {
244
- border-radius: 0;
245
- }
246
- .w3eden .alert {
247
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
248
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
249
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
250
- }
251
- .w3eden .alert-success {
252
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#dff0d8), to(#c8e5bc));
253
- background-image: -webkit-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);
254
- background-image: -moz-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);
255
- background-image: linear-gradient(to bottom, #dff0d8 0, #c8e5bc 100%);
256
- background-repeat: repeat-x;
257
- border-color: #b2dba1;
258
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
259
- }
260
- .w3eden .alert-info {
261
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#d9edf7), to(#b9def0));
262
- background-image: -webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%);
263
- background-image: -moz-linear-gradient(top, #d9edf7 0, #b9def0 100%);
264
- background-image: linear-gradient(to bottom, #d9edf7 0, #b9def0 100%);
265
- background-repeat: repeat-x;
266
- border-color: #9acfea;
267
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
268
- }
269
- .w3eden .alert-warning {
270
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#fcf8e3), to(#f8efc0));
271
- background-image: -webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
272
- background-image: -moz-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
273
- background-image: linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);
274
- background-repeat: repeat-x;
275
- border-color: #f5e79e;
276
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
277
- }
278
- .w3eden .alert-danger {
279
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#f2dede), to(#e7c3c3));
280
- background-image: -webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
281
- background-image: -moz-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
282
- background-image: linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);
283
- background-repeat: repeat-x;
284
- border-color: #dca7a7;
285
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
286
- }
287
- .w3eden .progress {
288
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#ebebeb), to(#f5f5f5));
289
- background-image: -webkit-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);
290
- background-image: -moz-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);
291
- background-image: linear-gradient(to bottom, #ebebeb 0, #f5f5f5 100%);
292
- background-repeat: repeat-x;
293
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
294
- }
295
- .w3eden .progress-bar {
296
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#428bca), to(#3071a9));
297
- background-image: -webkit-linear-gradient(top, #428bca 0, #3071a9 100%);
298
- background-image: -moz-linear-gradient(top, #428bca 0, #3071a9 100%);
299
- background-image: linear-gradient(to bottom, #428bca 0, #3071a9 100%);
300
- background-repeat: repeat-x;
301
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
302
- }
303
- .w3eden .progress-bar-success {
304
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#5cb85c), to(#449d44));
305
- background-image: -webkit-linear-gradient(top, #5cb85c 0, #449d44 100%);
306
- background-image: -moz-linear-gradient(top, #5cb85c 0, #449d44 100%);
307
- background-image: linear-gradient(to bottom, #5cb85c 0, #449d44 100%);
308
- background-repeat: repeat-x;
309
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
310
- }
311
- .w3eden .progress-bar-info {
312
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#5bc0de), to(#31b0d5));
313
- background-image: -webkit-linear-gradient(top, #5bc0de 0, #31b0d5 100%);
314
- background-image: -moz-linear-gradient(top, #5bc0de 0, #31b0d5 100%);
315
- background-image: linear-gradient(to bottom, #5bc0de 0, #31b0d5 100%);
316
- background-repeat: repeat-x;
317
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
318
- }
319
- .w3eden .progress-bar-warning {
320
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#f0ad4e), to(#ec971f));
321
- background-image: -webkit-linear-gradient(top, #f0ad4e 0, #ec971f 100%);
322
- background-image: -moz-linear-gradient(top, #f0ad4e 0, #ec971f 100%);
323
- background-image: linear-gradient(to bottom, #f0ad4e 0, #ec971f 100%);
324
- background-repeat: repeat-x;
325
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
326
- }
327
- .w3eden .progress-bar-danger {
328
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#d9534f), to(#c9302c));
329
- background-image: -webkit-linear-gradient(top, #d9534f 0, #c9302c 100%);
330
- background-image: -moz-linear-gradient(top, #d9534f 0, #c9302c 100%);
331
- background-image: linear-gradient(to bottom, #d9534f 0, #c9302c 100%);
332
- background-repeat: repeat-x;
333
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
334
- }
335
- .w3eden .list-group {
336
- border-radius: 4px;
337
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
338
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
339
- }
340
- .w3eden .list-group-item.active,
341
- .w3eden .list-group-item.active:hover,
342
- .w3eden .list-group-item.active:focus {
343
- text-shadow: 0 -1px 0 #3071a9;
344
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#428bca), to(#3278b3));
345
- background-image: -webkit-linear-gradient(top, #428bca 0, #3278b3 100%);
346
- background-image: -moz-linear-gradient(top, #428bca 0, #3278b3 100%);
347
- background-image: linear-gradient(to bottom, #428bca 0, #3278b3 100%);
348
- background-repeat: repeat-x;
349
- border-color: #3278b3;
350
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
351
- }
352
- .w3eden .panel {
353
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
354
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
355
- }
356
- .w3eden .panel-default > .panel-heading {
357
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#f5f5f5), to(#e8e8e8));
358
- background-image: -webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
359
- background-image: -moz-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
360
- background-image: linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);
361
- background-repeat: repeat-x;
362
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
363
- }
364
- .w3eden .panel-primary > .panel-heading {
365
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#428bca), to(#357ebd));
366
- background-image: -webkit-linear-gradient(top, #428bca 0, #357ebd 100%);
367
- background-image: -moz-linear-gradient(top, #428bca 0, #357ebd 100%);
368
- background-image: linear-gradient(to bottom, #428bca 0, #357ebd 100%);
369
- background-repeat: repeat-x;
370
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
371
- }
372
- .w3eden .panel-success > .panel-heading {
373
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#dff0d8), to(#d0e9c6));
374
- background-image: -webkit-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);
375
- background-image: -moz-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);
376
- background-image: linear-gradient(to bottom, #dff0d8 0, #d0e9c6 100%);
377
- background-repeat: repeat-x;
378
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
379
- }
380
- .w3eden .panel-info > .panel-heading {
381
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#d9edf7), to(#c4e3f3));
382
- background-image: -webkit-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);
383
- background-image: -moz-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);
384
- background-image: linear-gradient(to bottom, #d9edf7 0, #c4e3f3 100%);
385
- background-repeat: repeat-x;
386
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
387
- }
388
- .w3eden .panel-warning > .panel-heading {
389
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#fcf8e3), to(#faf2cc));
390
- background-image: -webkit-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);
391
- background-image: -moz-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);
392
- background-image: linear-gradient(to bottom, #fcf8e3 0, #faf2cc 100%);
393
- background-repeat: repeat-x;
394
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
395
- }
396
- .w3eden .panel-danger > .panel-heading {
397
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#f2dede), to(#ebcccc));
398
- background-image: -webkit-linear-gradient(top, #f2dede 0, #ebcccc 100%);
399
- background-image: -moz-linear-gradient(top, #f2dede 0, #ebcccc 100%);
400
- background-image: linear-gradient(to bottom, #f2dede 0, #ebcccc 100%);
401
- background-repeat: repeat-x;
402
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
403
- }
404
- .w3eden .well {
405
- background-image: -webkit-gradient(linear, left 0, left 100%, from(#e8e8e8), to(#f5f5f5));
406
- background-image: -webkit-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);
407
- background-image: -moz-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);
408
- background-image: linear-gradient(to bottom, #e8e8e8 0, #f5f5f5 100%);
409
- background-repeat: repeat-x;
410
- border-color: #dcdcdc;
411
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
412
- -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
413
- box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
414
- }
415
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/bootstrap/css/bootstrap.css CHANGED
@@ -1,5569 +1,8909 @@
1
-
2
- /*!
3
- * Bootstrap v3.3.4 (http://getbootstrap.com)
4
- * Copyright 2011-2015 Twitter, Inc.
5
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
- */
7
- /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
8
- /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
9
-
10
- .w3eden html {
11
- font-family: sans-serif;
12
- -webkit-text-size-adjust: 100%;
13
- -ms-text-size-adjust: 100%;
14
- }
15
- .w3eden body {
16
- margin: 0;
17
- }
18
- .w3eden article,
19
- .w3eden aside,
20
- .w3eden details,
21
- .w3eden figcaption,
22
- .w3eden figure,
23
- .w3eden footer,
24
- .w3eden header,
25
- .w3eden hgroup,
26
- .w3eden main,
27
- .w3eden menu,
28
- .w3eden nav,
29
- .w3eden section,
30
- .w3eden summary {
31
- display: block;
32
- }
33
- .w3eden audio,
34
- .w3eden canvas,
35
- .w3eden progress,
36
- .w3eden video {
37
- display: inline-block;
38
- vertical-align: baseline;
39
- }
40
- .w3eden audio:not([controls]) {
41
- display: none;
42
- height: 0;
43
- }
44
- .w3eden [hidden],
45
- .w3eden template {
46
- display: none;
47
- }
48
- .w3eden a {
49
- background-color: transparent;
50
- }
51
- .w3eden a:active,
52
- .w3eden a:hover {
53
- outline: 0;
54
- }
55
- .w3eden abbr[title] {
56
- border-bottom: 1px dotted;
57
- }
58
- .w3eden b,
59
- .w3eden strong {
60
- font-weight: 700;
61
- }
62
- .w3eden dfn {
63
- font-style: italic;
64
- }
65
- .w3eden h1 {
66
- margin: .67em 0;
67
- font-size: 2em;
68
- }
69
- .w3eden mark {
70
- color: #000;
71
- background: #ffff00;
72
- }
73
- .w3eden small {
74
- font-size: 80%;
75
- }
76
- .w3eden sub,
77
- .w3eden sup {
78
- position: relative;
79
- font-size: 75%;
80
- line-height: 0;
81
- vertical-align: baseline;
82
- }
83
- .w3eden sup {
84
- top: -0.5em;
85
- }
86
- .w3eden sub {
87
- bottom: -0.25em;
88
- }
89
- .w3eden img {
90
- border: 0;
91
- }
92
- .w3eden svg:not(:root) {
93
- overflow: hidden;
94
- }
95
- .w3eden figure {
96
- margin: 1em 40px;
97
- }
98
- .w3eden hr {
99
- height: 0;
100
- -webkit-box-sizing: content-box;
101
- -moz-box-sizing: content-box;
102
- box-sizing: content-box;
103
- }
104
- .w3eden pre {
105
- overflow: auto;
106
- }
107
- .w3eden code,
108
- .w3eden kbd,
109
- .w3eden pre,
110
- .w3eden samp {
111
- font-family: monospace,monospace;
112
- font-size: 1em;
113
- }
114
- .w3eden button,
115
- .w3eden input,
116
- .w3eden optgroup,
117
- .w3eden select,
118
- .w3eden textarea {
119
- margin: 0;
120
- font: inherit;
121
- color: inherit;
122
- }
123
- .w3eden button {
124
- overflow: visible;
125
- }
126
- .w3eden button,
127
- .w3eden select {
128
- text-transform: none;
129
- }
130
- .w3eden button,
131
- .w3eden html input[type=button],
132
- .w3eden input[type=reset],
133
- .w3eden input[type=submit] {
134
- -webkit-appearance: button;
135
- cursor: pointer;
136
- }
137
- .w3eden button[disabled],
138
- .w3eden html input[disabled] {
139
- cursor: default;
140
- }
141
- .w3eden button::-moz-focus-inner,
142
- .w3eden input::-moz-focus-inner {
143
- padding: 0;
144
- border: 0;
145
- }
146
- .w3eden input {
147
- line-height: normal;
148
- }
149
- .w3eden input[type=checkbox],
150
- .w3eden input[type=radio] {
151
- -webkit-box-sizing: border-box;
152
- -moz-box-sizing: border-box;
153
- box-sizing: border-box;
154
- padding: 0;
155
- }
156
- .w3eden input[type=number]::-webkit-inner-spin-button,
157
- .w3eden input[type=number]::-webkit-outer-spin-button {
158
- height: auto;
159
- }
160
- .w3eden input[type=search] {
161
- -webkit-box-sizing: content-box;
162
- -moz-box-sizing: content-box;
163
- box-sizing: content-box;
164
- -webkit-appearance: textfield;
165
- }
166
- .w3eden input[type=search]::-webkit-search-cancel-button,
167
- .w3eden input[type=search]::-webkit-search-decoration {
168
- -webkit-appearance: none;
169
- }
170
- .w3eden fieldset {
171
- padding: .35em .625em .75em;
172
- margin: 0 2px;
173
- border: 1px solid #c0c0c0;
174
- }
175
- .w3eden legend {
176
- padding: 0;
177
- border: 0;
178
- }
179
- .w3eden textarea {
180
- overflow: auto;
181
- }
182
- .w3eden optgroup {
183
- font-weight: 700;
184
- }
185
- .w3eden table {
186
- border-spacing: 0;
187
- border-collapse: collapse;
188
- }
189
- .w3eden td,
190
- .w3eden th {
191
- padding: 0;
192
- }
193
- @media print {
194
- .w3eden *,
195
- .w3eden :after,
196
- .w3eden :before {
197
- color: #000!important;
198
- text-shadow: none!important;
199
- background: 0 0!important;
200
- -webkit-box-shadow: none!important;
201
- box-shadow: none !important;
202
- }
203
- .w3eden a,
204
- .w3eden a:visited {
205
- text-decoration: underline;
206
- }
207
- .w3eden a[href]:after {
208
- content: " (" attr(href) ")";
209
- }
210
- .w3eden abbr[title]:after {
211
- content: " (" attr(title) ")";
212
- }
213
- .w3eden a[href^="javascript:"]:after,
214
- .w3eden a[href^="#"]:after {
215
- content: "";
216
- }
217
- .w3eden blockquote,
218
- .w3eden pre {
219
- border: 1px solid #999;
220
- page-break-inside: avoid;
221
- }
222
- .w3eden thead {
223
- display: table-header-group;
224
- }
225
- .w3eden img,
226
- .w3eden tr {
227
- page-break-inside: avoid;
228
- }
229
- .w3eden img {
230
- max-width: 100% !important;
231
- }
232
- .w3eden h2,
233
- .w3eden h3,
234
- .w3eden p {
235
- orphans: 3;
236
- widows: 3;
237
- }
238
- .w3eden h2,
239
- .w3eden h3 {
240
- page-break-after: avoid;
241
- }
242
- .w3eden select {
243
- background: #ffffff !important;
244
- }
245
- .w3eden .navbar {
246
- display: none;
247
- }
248
- .w3eden .btn > .caret,
249
- .w3eden .dropup > .btn > .caret {
250
- border-top-color: #000000 !important;
251
- }
252
- .w3eden .label {
253
- border: 1px solid #000000;
254
- }
255
- .w3eden .table {
256
- border-collapse: collapse !important;
257
- }
258
- .w3eden .table td,
259
- .w3eden .table th {
260
- background-color: #ffffff !important;
261
- }
262
- .w3eden .table-bordered td,
263
- .w3eden .table-bordered th {
264
- border: 1px solid #dddddd !important;
265
- }
266
- }
267
-
268
- .w3eden * {
269
- -webkit-box-sizing: border-box;
270
- -moz-box-sizing: border-box;
271
- box-sizing: border-box;
272
- }
273
- .w3eden :after,
274
- .w3eden :before {
275
- -webkit-box-sizing: border-box;
276
- -moz-box-sizing: border-box;
277
- box-sizing: border-box;
278
- }
279
- .w3eden html {
280
- font-size: 10px;
281
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
282
- }
283
- .w3eden body {
284
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
285
- font-size: 14px;
286
- line-height: 1.42857143;
287
- color: #333;
288
- background-color: #ffffff;
289
- }
290
- .w3eden button,
291
- .w3eden input,
292
- .w3eden select,
293
- .w3eden textarea {
294
- font-family: inherit;
295
- font-size: inherit;
296
- line-height: inherit;
297
- }
298
- .w3eden a {
299
- color: #337ab7;
300
- text-decoration: none;
301
- }
302
- .w3eden a:focus,
303
- .w3eden a:hover {
304
- color: #23527c;
305
- text-decoration: underline;
306
- }
307
- .w3eden a:focus {
308
- outline: thin dotted;
309
- outline: 5px auto -webkit-focus-ring-color;
310
- outline-offset: -2px;
311
- }
312
- .w3eden figure {
313
- margin: 0;
314
- }
315
- .w3eden img {
316
- vertical-align: middle;
317
- }
318
- .w3eden .carousel-inner > .item > a > img,
319
- .w3eden .carousel-inner > .item > img,
320
- .w3eden .img-responsive,
321
- .w3eden .thumbnail a > img,
322
- .w3eden .thumbnail > img {
323
- display: block;
324
- max-width: 100%;
325
- height: auto;
326
- }
327
- .w3eden .img-rounded {
328
- border-radius: 6px;
329
- }
330
- .w3eden .img-thumbnail {
331
- display: inline-block;
332
- max-width: 100%;
333
- height: auto;
334
- padding: 4px;
335
- line-height: 1.42857143;
336
- background-color: #fff;
337
- border: 1px solid #ddd;
338
- border-radius: 4px;
339
- -webkit-transition: all 0.2s ease-in-out;
340
- -o-transition: all 0.2s ease-in-out;
341
- transition: all 0.2s ease-in-out;
342
- }
343
- .w3eden .img-circle {
344
- border-radius: 50%;
345
- }
346
- .w3eden hr {
347
- margin-top: 20px;
348
- margin-bottom: 20px;
349
- border: 0;
350
- border-top: 1px solid #eeeeee;
351
- }
352
- .w3eden .sr-only {
353
- position: absolute;
354
- width: 1px;
355
- height: 1px;
356
- padding: 0;
357
- margin: -1px;
358
- overflow: hidden;
359
- clip: rect(0, 0, 0, 0);
360
- border: 0;
361
- }
362
- .w3eden .sr-only-focusable:active,
363
- .w3eden .sr-only-focusable:focus {
364
- position: static;
365
- width: auto;
366
- height: auto;
367
- margin: 0;
368
- overflow: visible;
369
- clip: auto;
370
- }
371
- .w3eden [role=button] {
372
- cursor: pointer;
373
- }
374
- .w3eden .h1,
375
- .w3eden .h2,
376
- .w3eden .h3,
377
- .w3eden .h4,
378
- .w3eden .h5,
379
- .w3eden .h6,
380
- .w3eden h1,
381
- .w3eden h2,
382
- .w3eden h3,
383
- .w3eden h4,
384
- .w3eden h5,
385
- .w3eden h6 {
386
- font-family: inherit;
387
- font-weight: 500;
388
- line-height: 1.1;
389
- color: inherit;
390
- }
391
- .w3eden .h1 .small,
392
- .w3eden .h1 small,
393
- .w3eden .h2 .small,
394
- .w3eden .h2 small,
395
- .w3eden .h3 .small,
396
- .w3eden .h3 small,
397
- .w3eden .h4 .small,
398
- .w3eden .h4 small,
399
- .w3eden .h5 .small,
400
- .w3eden .h5 small,
401
- .w3eden .h6 .small,
402
- .w3eden .h6 small,
403
- .w3eden h1 .small,
404
- .w3eden h1 small,
405
- .w3eden h2 .small,
406
- .w3eden h2 small,
407
- .w3eden h3 .small,
408
- .w3eden h3 small,
409
- .w3eden h4 .small,
410
- .w3eden h4 small,
411
- .w3eden h5 .small,
412
- .w3eden h5 small,
413
- .w3eden h6 .small,
414
- .w3eden h6 small {
415
- font-weight: 400;
416
- line-height: 1;
417
- color: #777777;
418
- }
419
- .w3eden .h1,
420
- .w3eden .h2,
421
- .w3eden .h3,
422
- .w3eden h1,
423
- .w3eden h2,
424
- .w3eden h3 {
425
- margin-top: 20px;
426
- margin-bottom: 10px;
427
- }
428
- .w3eden .h1 .small,
429
- .w3eden .h1 small,
430
- .w3eden .h2 .small,
431
- .w3eden .h2 small,
432
- .w3eden .h3 .small,
433
- .w3eden .h3 small,
434
- .w3eden h1 .small,
435
- .w3eden h1 small,
436
- .w3eden h2 .small,
437
- .w3eden h2 small,
438
- .w3eden h3 .small,
439
- .w3eden h3 small {
440
- font-size: 65%;
441
- }
442
- .w3eden .h4,
443
- .w3eden .h5,
444
- .w3eden .h6,
445
- .w3eden h4,
446
- .w3eden h5,
447
- .w3eden h6 {
448
- margin-top: 10px;
449
- margin-bottom: 10px;
450
- }
451
- .w3eden .h4 .small,
452
- .w3eden .h4 small,
453
- .w3eden .h5 .small,
454
- .w3eden .h5 small,
455
- .w3eden .h6 .small,
456
- .w3eden .h6 small,
457
- .w3eden h4 .small,
458
- .w3eden h4 small,
459
- .w3eden h5 .small,
460
- .w3eden h5 small,
461
- .w3eden h6 .small,
462
- .w3eden h6 small {
463
- font-size: 75%;
464
- }
465
- .w3eden .h1,
466
- .w3eden h1 {
467
- font-size: 36px;
468
- }
469
- .w3eden .h2,
470
- .w3eden h2 {
471
- font-size: 30px;
472
- }
473
- .w3eden .h3,
474
- .w3eden h3 {
475
- font-size: 24px;
476
- }
477
- .w3eden .h4,
478
- .w3eden h4 {
479
- font-size: 18px;
480
- }
481
- .w3eden .h5,
482
- .w3eden h5 {
483
- font-size: 14px;
484
- }
485
- .w3eden .h6,
486
- .w3eden h6 {
487
- font-size: 12px;
488
- }
489
- .w3eden p {
490
- margin: 0 0 10px;
491
- }
492
- .w3eden .lead {
493
- margin-bottom: 20px;
494
- font-size: 16px;
495
- font-weight: 300;
496
- line-height: 1.4;
497
- }
498
- @media (min-width: 768px) {
499
- .w3eden .lead {
500
- font-size: 21px;
501
- }
502
- }
503
- .w3eden .small,
504
- .w3eden small {
505
- font-size: 85%;
506
- }
507
- .w3eden .mark,
508
- .w3eden mark {
509
- padding: .2em;
510
- background-color: #fcf8e3;
511
- }
512
- .w3eden .text-left {
513
- text-align: left;
514
- }
515
- .w3eden .text-right {
516
- text-align: right;
517
- }
518
- .w3eden .text-center {
519
- text-align: center;
520
- }
521
- .w3eden .text-justify {
522
- text-align: justify;
523
- }
524
- .w3eden .text-nowrap {
525
- white-space: nowrap;
526
- }
527
- .w3eden .text-lowercase {
528
- text-transform: lowercase;
529
- }
530
- .w3eden .text-uppercase {
531
- text-transform: uppercase;
532
- }
533
- .w3eden .text-capitalize {
534
- text-transform: capitalize;
535
- }
536
- .w3eden .text-muted {
537
- color: #777777;
538
- }
539
- .w3eden .text-primary {
540
- color: #337ab7;
541
- }
542
- .w3eden a.text-primary:hover {
543
- color: #286090;
544
- }
545
- .w3eden .text-success {
546
- color: #3c763d;
547
- }
548
- .w3eden a.text-success:hover {
549
- color: #2b542c;
550
- }
551
- .w3eden .text-info {
552
- color: #31708f;
553
- }
554
- .w3eden a.text-info:hover {
555
- color: #245269;
556
- }
557
- .w3eden .text-warning {
558
- color: #8a6d3b;
559
- }
560
- .w3eden a.text-warning:hover {
561
- color: #66512c;
562
- }
563
- .w3eden .text-danger {
564
- color: #a94442;
565
- }
566
- .w3eden a.text-danger:hover {
567
- color: #843534;
568
- }
569
- .w3eden .bg-primary {
570
- color: #fff;
571
- background-color: #337ab7;
572
- }
573
- .w3eden a.bg-primary:hover {
574
- background-color: #286090;
575
- }
576
- .w3eden .bg-success {
577
- background-color: #dff0d8;
578
- }
579
- .w3eden a.bg-success:hover {
580
- background-color: #c1e2b3;
581
- }
582
- .w3eden .bg-info {
583
- background-color: #d9edf7;
584
- }
585
- .w3eden a.bg-info:hover {
586
- background-color: #afd9ee;
587
- }
588
- .w3eden .bg-warning {
589
- background-color: #fcf8e3;
590
- }
591
- .w3eden a.bg-warning:hover {
592
- background-color: #f7ecb5;
593
- }
594
- .w3eden .bg-danger {
595
- background-color: #f2dede;
596
- }
597
- .w3eden a.bg-danger:hover {
598
- background-color: #e4b9b9;
599
- }
600
- .w3eden .page-header {
601
- padding-bottom: 9px;
602
- margin: 40px 0 20px;
603
- border-bottom: 1px solid #eeeeee;
604
- }
605
- .w3eden ol,
606
- .w3eden ul {
607
- margin-top: 0;
608
- margin-bottom: 10px;
609
- }
610
- .w3eden ol ol,
611
- .w3eden ol ul,
612
- .w3eden ul ol,
613
- .w3eden ul ul {
614
- margin-bottom: 0;
615
- }
616
- .w3eden .list-unstyled {
617
- padding-left: 0;
618
- list-style: none;
619
- }
620
- .w3eden .list-inline {
621
- padding-left: 0;
622
- margin-left: -5px;
623
- list-style: none;
624
- }
625
- .w3eden .list-inline > li {
626
- display: inline-block;
627
- padding-right: 5px;
628
- padding-left: 5px;
629
- }
630
- .w3eden dl {
631
- margin-top: 0;
632
- margin-bottom: 20px;
633
- }
634
- .w3eden dd,
635
- .w3eden dt {
636
- line-height: 1.42857143;
637
- }
638
- .w3eden dt {
639
- font-weight: 700;
640
- }
641
- .w3eden dd {
642
- margin-left: 0;
643
- }
644
- @media (min-width: 768px) {
645
- .w3eden .dl-horizontal dt {
646
- float: left;
647
- width: 160px;
648
- overflow: hidden;
649
- clear: left;
650
- text-align: right;
651
- text-overflow: ellipsis;
652
- white-space: nowrap;
653
- }
654
- .w3eden .dl-horizontal dd {
655
- margin-left: 180px;
656
- }
657
- }
658
- .w3eden abbr[data-original-title],
659
- .w3eden abbr[title] {
660
- cursor: help;
661
- border-bottom: 1px dotted #777777;
662
- }
663
- .w3eden .initialism {
664
- font-size: 90%;
665
- text-transform: uppercase;
666
- }
667
- .w3eden blockquote {
668
- padding: 10px 20px;
669
- margin: 0 0 20px;
670
- font-size: 17.5px;
671
- border-left: 5px solid #eeeeee;
672
- }
673
- .w3eden blockquote ol:last-child,
674
- .w3eden blockquote p:last-child,
675
- .w3eden blockquote ul:last-child {
676
- margin-bottom: 0;
677
- }
678
- .w3eden blockquote .small,
679
- .w3eden blockquote footer,
680
- .w3eden blockquote small {
681
- display: block;
682
- font-size: 80%;
683
- line-height: 1.42857143;
684
- color: #777777;
685
- }
686
- .w3eden blockquote .small:before,
687
- .w3eden blockquote footer:before,
688
- .w3eden blockquote small:before {
689
- content: '\2014 \00A0';
690
- }
691
- .w3eden code,
692
- .w3eden kbd,
693
- .w3eden pre,
694
- .w3eden samp {
695
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
696
- }
697
- .w3eden code {
698
- padding: 2px 4px;
699
- font-size: 90%;
700
- color: #c7254e;
701
- background-color: #f9f2f4;
702
- border-radius: 4px;
703
- }
704
- .w3eden kbd {
705
- padding: 2px 4px;
706
- font-size: 90%;
707
- color: #fff;
708
- background-color: #333;
709
- border-radius: 3px;
710
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
711
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
712
- }
713
- .w3eden kbd kbd {
714
- padding: 0;
715
- font-size: 100%;
716
- font-weight: 700;
717
- -webkit-box-shadow: none;
718
- box-shadow: none;
719
- }
720
- .w3eden pre {
721
- display: block;
722
- padding: 9.5px;
723
- margin: 0 0 10px;
724
- font-size: 13px;
725
- line-height: 1.42857143;
726
- color: #333;
727
- word-break: break-all;
728
- word-wrap: break-word;
729
- background-color: #f5f5f5;
730
- border: 1px solid #ccc;
731
- border-radius: 4px;
732
- }
733
- .w3eden pre code {
734
- padding: 0;
735
- font-size: inherit;
736
- color: inherit;
737
- white-space: pre-wrap;
738
- background-color: transparent;
739
- border-radius: 0;
740
- }
741
- .w3eden .pre-scrollable {
742
- max-height: 340px;
743
- overflow-y: scroll;
744
- }
745
- .w3eden .container {
746
- padding-right: 15px;
747
- padding-left: 15px;
748
- margin-right: auto;
749
- margin-left: auto;
750
- }
751
- @media (min-width: 768px) {
752
- .w3eden .container {
753
- width: 750px;
754
- }
755
- }
756
- @media (min-width: 992px) {
757
- .w3eden .container {
758
- width: 970px;
759
- }
760
- }
761
- @media (min-width: 1200px) {
762
- .w3eden .container {
763
- width: 1170px;
764
- }
765
- }
766
- .w3eden .container-fluid {
767
- padding-right: 15px;
768
- padding-left: 15px;
769
- margin-right: auto;
770
- margin-left: auto;
771
- }
772
- .w3eden .row {
773
- margin-right: -15px;
774
- margin-left: -15px;
775
- }
776
- .w3eden .col-lg-1,
777
- .w3eden .col-lg-10,
778
- .w3eden .col-lg-11,
779
- .w3eden .col-lg-12,
780
- .w3eden .col-lg-2,
781
- .w3eden .col-lg-3,
782
- .w3eden .col-lg-4,
783
- .w3eden .col-lg-5,
784
- .w3eden .col-lg-6,
785
- .w3eden .col-lg-7,
786
- .w3eden .col-lg-8,
787
- .w3eden .col-lg-9,
788
- .w3eden .col-md-1,
789
- .w3eden .col-md-10,
790
- .w3eden .col-md-11,
791
- .w3eden .col-md-12,
792
- .w3eden .col-md-2,
793
- .w3eden .col-md-3,
794
- .w3eden .col-md-4,
795
- .w3eden .col-md-5,
796
- .w3eden .col-md-6,
797
- .w3eden .col-md-7,
798
- .w3eden .col-md-8,
799
- .w3eden .col-md-9,
800
- .w3eden .col-sm-1,
801
- .w3eden .col-sm-10,
802
- .w3eden .col-sm-11,
803
- .w3eden .col-sm-12,
804
- .w3eden .col-sm-2,
805
- .w3eden .col-sm-3,
806
- .w3eden .col-sm-4,
807
- .w3eden .col-sm-5,
808
- .w3eden .col-sm-6,
809
- .w3eden .col-sm-7,
810
- .w3eden .col-sm-8,
811
- .w3eden .col-sm-9,
812
- .w3eden .col-xs-1,
813
- .w3eden .col-xs-10,
814
- .w3eden .col-xs-11,
815
- .w3eden .col-xs-12,
816
- .w3eden .col-xs-2,
817
- .w3eden .col-xs-3,
818
- .w3eden .col-xs-4,
819
- .w3eden .col-xs-5,
820
- .w3eden .col-xs-6,
821
- .w3eden .col-xs-7,
822
- .w3eden .col-xs-8,
823
- .w3eden .col-xs-9 {
824
- position: relative;
825
- min-height: 1px;
826
- padding-right: 15px;
827
- padding-left: 15px;
828
- }
829
- .w3eden .col-xs-1,
830
- .w3eden .col-xs-10,
831
- .w3eden .col-xs-11,
832
- .w3eden .col-xs-12,
833
- .w3eden .col-xs-2,
834
- .w3eden .col-xs-3,
835
- .w3eden .col-xs-4,
836
- .w3eden .col-xs-5,
837
- .w3eden .col-xs-6,
838
- .w3eden .col-xs-7,
839
- .w3eden .col-xs-8,
840
- .w3eden .col-xs-9 {
841
- float: left;
842
- }
843
- .w3eden .col-xs-12 {
844
- width: 100%;
845
- }
846
- .w3eden .col-xs-11 {
847
- width: 91.66666667%;
848
- }
849
- .w3eden .col-xs-10 {
850
- width: 83.33333333%;
851
- }
852
- .w3eden .col-xs-9 {
853
- width: 75%;
854
- }
855
- .w3eden .col-xs-8 {
856
- width: 66.66666667%;
857
- }
858
- .w3eden .col-xs-7 {
859
- width: 58.33333333%;
860
- }
861
- .w3eden .col-xs-6 {
862
- width: 50%;
863
- }
864
- .w3eden .col-xs-5 {
865
- width: 41.66666667%;
866
- }
867
- .w3eden .col-xs-4 {
868
- width: 33.33333333%;
869
- }
870
- .w3eden .col-xs-3 {
871
- width: 25%;
872
- }
873
- .w3eden .col-xs-2 {
874
- width: 16.66666667%;
875
- }
876
- .w3eden .col-xs-1 {
877
- width: 8.33333333%;
878
- }
879
- .w3eden .col-xs-pull-12 {
880
- right: 100%;
881
- }
882
- .w3eden .col-xs-pull-11 {
883
- right: 91.66666667%;
884
- }
885
- .w3eden .col-xs-pull-10 {
886
- right: 83.33333333%;
887
- }
888
- .w3eden .col-xs-pull-9 {
889
- right: 75%;
890
- }
891
- .w3eden .col-xs-pull-8 {
892
- right: 66.66666667%;
893
- }
894
- .w3eden .col-xs-pull-7 {
895
- right: 58.33333333%;
896
- }
897
- .w3eden .col-xs-pull-6 {
898
- right: 50%;
899
- }
900
- .w3eden .col-xs-pull-5 {
901
- right: 41.66666667%;
902
- }
903
- .w3eden .col-xs-pull-4 {
904
- right: 33.33333333%;
905
- }
906
- .w3eden .col-xs-pull-3 {
907
- right: 25%;
908
- }
909
- .w3eden .col-xs-pull-2 {
910
- right: 16.66666667%;
911
- }
912
- .w3eden .col-xs-pull-1 {
913
- right: 8.33333333%;
914
- }
915
- .w3eden .col-xs-pull-0 {
916
- right: auto;
917
- }
918
- .w3eden .col-xs-push-12 {
919
- left: 100%;
920
- }
921
- .w3eden .col-xs-push-11 {
922
- left: 91.66666667%;
923
- }
924
- .w3eden .col-xs-push-10 {
925
- left: 83.33333333%;
926
- }
927
- .w3eden .col-xs-push-9 {
928
- left: 75%;
929
- }
930
- .w3eden .col-xs-push-8 {
931
- left: 66.66666667%;
932
- }
933
- .w3eden .col-xs-push-7 {
934
- left: 58.33333333%;
935
- }
936
- .w3eden .col-xs-push-6 {
937
- left: 50%;
938
- }
939
- .w3eden .col-xs-push-5 {
940
- left: 41.66666667%;
941
- }
942
- .w3eden .col-xs-push-4 {
943
- left: 33.33333333%;
944
- }
945
- .w3eden .col-xs-push-3 {
946
- left: 25%;
947
- }
948
- .w3eden .col-xs-push-2 {
949
- left: 16.66666667%;
950
- }
951
- .w3eden .col-xs-push-1 {
952
- left: 8.33333333%;
953
- }
954
- .w3eden .col-xs-push-0 {
955
- left: auto;
956
- }
957
- .w3eden .col-xs-offset-12 {
958
- margin-left: 100%;
959
- }
960
- .w3eden .col-xs-offset-11 {
961
- margin-left: 91.66666667%;
962
- }
963
- .w3eden .col-xs-offset-10 {
964
- margin-left: 83.33333333%;
965
- }
966
- .w3eden .col-xs-offset-9 {
967
- margin-left: 75%;
968
- }
969
- .w3eden .col-xs-offset-8 {
970
- margin-left: 66.66666667%;
971
- }
972
- .w3eden .col-xs-offset-7 {
973
- margin-left: 58.33333333%;
974
- }
975
- .w3eden .col-xs-offset-6 {
976
- margin-left: 50%;
977
- }
978
- .w3eden .col-xs-offset-5 {
979
- margin-left: 41.66666667%;
980
- }
981
- .w3eden .col-xs-offset-4 {
982
- margin-left: 33.33333333%;
983
- }
984
- .w3eden .col-xs-offset-3 {
985
- margin-left: 25%;
986
- }
987
- .w3eden .col-xs-offset-2 {
988
- margin-left: 16.66666667%;
989
- }
990
- .w3eden .col-xs-offset-1 {
991
- margin-left: 8.33333333%;
992
- }
993
- .w3eden .col-xs-offset-0 {
994
- margin-left: 0;
995
- }
996
- @media (min-width: 768px) {
997
- .w3eden .col-sm-1,
998
- .w3eden .col-sm-10,
999
- .w3eden .col-sm-11,
1000
- .w3eden .col-sm-12,
1001
- .w3eden .col-sm-2,
1002
- .w3eden .col-sm-3,
1003
- .w3eden .col-sm-4,
1004
- .w3eden .col-sm-5,
1005
- .w3eden .col-sm-6,
1006
- .w3eden .col-sm-7,
1007
- .w3eden .col-sm-8,
1008
- .w3eden .col-sm-9 {
1009
- float: left;
1010
- }
1011
- .w3eden .col-sm-12 {
1012
- width: 100%;
1013
- }
1014
- .w3eden .col-sm-11 {
1015
- width: 91.66666667%;
1016
- }
1017
- .w3eden .col-sm-10 {
1018
- width: 83.33333333%;
1019
- }
1020
- .w3eden .col-sm-9 {
1021
- width: 75%;
1022
- }
1023
- .w3eden .col-sm-8 {
1024
- width: 66.66666667%;
1025
- }
1026
- .w3eden .col-sm-7 {
1027
- width: 58.33333333%;
1028
- }
1029
- .w3eden .col-sm-6 {
1030
- width: 50%;
1031
- }
1032
- .w3eden .col-sm-5 {
1033
- width: 41.66666667%;
1034
- }
1035
- .w3eden .col-sm-4 {
1036
- width: 33.33333333%;
1037
- }
1038
- .w3eden .col-sm-3 {
1039
- width: 25%;
1040
- }
1041
- .w3eden .col-sm-2 {
1042
- width: 16.66666667%;
1043
- }
1044
- .w3eden .col-sm-1 {
1045
- width: 8.33333333%;
1046
- }
1047
-
1048
- .w3eden .col-sm-offset-12 {
1049
- margin-left: 100%;
1050
- }
1051
- .w3eden .col-sm-offset-11 {
1052
- margin-left: 91.66666667%;
1053
- }
1054
- .w3eden .col-sm-offset-10 {
1055
- margin-left: 83.33333333%;
1056
- }
1057
- .w3eden .col-sm-offset-9 {
1058
- margin-left: 75%;
1059
- }
1060
- .w3eden .col-sm-offset-8 {
1061
- margin-left: 66.66666667%;
1062
- }
1063
- .w3eden .col-sm-offset-7 {
1064
- margin-left: 58.33333333%;
1065
- }
1066
- .w3eden .col-sm-offset-6 {
1067
- margin-left: 50%;
1068
- }
1069
- .w3eden .col-sm-offset-5 {
1070
- margin-left: 41.66666667%;
1071
- }
1072
- .w3eden .col-sm-offset-4 {
1073
- margin-left: 33.33333333%;
1074
- }
1075
- .w3eden .col-sm-offset-3 {
1076
- margin-left: 25%;
1077
- }
1078
- .w3eden .col-sm-offset-2 {
1079
- margin-left: 16.66666667%;
1080
- }
1081
- .w3eden .col-sm-offset-1 {
1082
- margin-left: 8.33333333%;
1083
- }
1084
- .w3eden .col-sm-offset-0 {
1085
- margin-left: 0;
1086
- }
1087
- }
1088
- @media (min-width: 992px) {
1089
- .w3eden .col-md-1,
1090
- .w3eden .col-md-10,
1091
- .w3eden .col-md-11,
1092
- .w3eden .col-md-12,
1093
- .w3eden .col-md-2,
1094
- .w3eden .col-md-3,
1095
- .w3eden .col-md-4,
1096
- .w3eden .col-md-5,
1097
- .w3eden .col-md-6,
1098
- .w3eden .col-md-7,
1099
- .w3eden .col-md-8,
1100
- .w3eden .col-md-9 {
1101
- float: left;
1102
- }
1103
- .w3eden .col-md-12 {
1104
- width: 100%;
1105
- }
1106
- .w3eden .col-md-11 {
1107
- width: 91.66666667%;
1108
- }
1109
- .w3eden .col-md-10 {
1110
- width: 83.33333333%;
1111
- }
1112
- .w3eden .col-md-9 {
1113
- width: 75%;
1114
- }
1115
- .w3eden .col-md-8 {
1116
- width: 66.66666667%;
1117
- }
1118
- .w3eden .col-md-7 {
1119
- width: 58.33333333%;
1120
- }
1121
- .w3eden .col-md-6 {
1122
- width: 50%;
1123
- }
1124
- .w3eden .col-md-5 {
1125
- width: 41.66666667%;
1126
- }
1127
- .w3eden .col-md-4 {
1128
- width: 33.33333333%;
1129
- }
1130
- .w3eden .col-md-3 {
1131
- width: 25%;
1132
- }
1133
- .w3eden .col-md-2 {
1134
- width: 16.66666667%;
1135
- }
1136
- .w3eden .col-md-1 {
1137
- width: 8.33333333%;
1138
- }
1139
-
1140
- .w3eden .col-md-offset-12 {
1141
- margin-left: 100%;
1142
- }
1143
- .w3eden .col-md-offset-11 {
1144
- margin-left: 91.66666667%;
1145
- }
1146
- .w3eden .col-md-offset-10 {
1147
- margin-left: 83.33333333%;
1148
- }
1149
- .w3eden .col-md-offset-9 {
1150
- margin-left: 75%;
1151
- }
1152
- .w3eden .col-md-offset-8 {
1153
- margin-left: 66.66666667%;
1154
- }
1155
- .w3eden .col-md-offset-7 {
1156
- margin-left: 58.33333333%;
1157
- }
1158
- .w3eden .col-md-offset-6 {
1159
- margin-left: 50%;
1160
- }
1161
- .w3eden .col-md-offset-5 {
1162
- margin-left: 41.66666667%;
1163
- }
1164
- .w3eden .col-md-offset-4 {
1165
- margin-left: 33.33333333%;
1166
- }
1167
- .w3eden .col-md-offset-3 {
1168
- margin-left: 25%;
1169
- }
1170
- .w3eden .col-md-offset-2 {
1171
- margin-left: 16.66666667%;
1172
- }
1173
- .w3eden .col-md-offset-1 {
1174
- margin-left: 8.33333333%;
1175
- }
1176
- .w3eden .col-md-offset-0 {
1177
- margin-left: 0;
1178
- }
1179
- }
1180
- @media (min-width: 1200px) {
1181
- .w3eden .col-lg-1,
1182
- .w3eden .col-lg-10,
1183
- .w3eden .col-lg-11,
1184
- .w3eden .col-lg-12,
1185
- .w3eden .col-lg-2,
1186
- .w3eden .col-lg-3,
1187
- .w3eden .col-lg-4,
1188
- .w3eden .col-lg-5,
1189
- .w3eden .col-lg-6,
1190
- .w3eden .col-lg-7,
1191
- .w3eden .col-lg-8,
1192
- .w3eden .col-lg-9 {
1193
- float: left;
1194
- }
1195
- .w3eden .col-lg-12 {
1196
- width: 100%;
1197
- }
1198
- .w3eden .col-lg-11 {
1199
- width: 91.66666667%;
1200
- }
1201
- .w3eden .col-lg-10 {
1202
- width: 83.33333333%;
1203
- }
1204
- .w3eden .col-lg-9 {
1205
- width: 75%;
1206
- }
1207
- .w3eden .col-lg-8 {
1208
- width: 66.66666667%;
1209
- }
1210
- .w3eden .col-lg-7 {
1211
- width: 58.33333333%;
1212
- }
1213
- .w3eden .col-lg-6 {
1214
- width: 50%;
1215
- }
1216
- .w3eden .col-lg-5 {
1217
- width: 41.66666667%;
1218
- }
1219
- .w3eden .col-lg-4 {
1220
- width: 33.33333333%;
1221
- }
1222
- .w3eden .col-lg-3 {
1223
- width: 25%;
1224
- }
1225
- .w3eden .col-lg-2 {
1226
- width: 16.66666667%;
1227
- }
1228
- .w3eden .col-lg-1 {
1229
- width: 8.33333333%;
1230
- }
1231
-
1232
- .w3eden .col-lg-offset-12 {
1233
- margin-left: 100%;
1234
- }
1235
- .w3eden .col-lg-offset-11 {
1236
- margin-left: 91.66666667%;
1237
- }
1238
- .w3eden .col-lg-offset-10 {
1239
- margin-left: 83.33333333%;
1240
- }
1241
- .w3eden .col-lg-offset-9 {
1242
- margin-left: 75%;
1243
- }
1244
- .w3eden .col-lg-offset-8 {
1245
- margin-left: 66.66666667%;
1246
- }
1247
- .w3eden .col-lg-offset-7 {
1248
- margin-left: 58.33333333%;
1249
- }
1250
- .w3eden .col-lg-offset-6 {
1251
- margin-left: 50%;
1252
- }
1253
- .w3eden .col-lg-offset-5 {
1254
- margin-left: 41.66666667%;
1255
- }
1256
- .w3eden .col-lg-offset-4 {
1257
- margin-left: 33.33333333%;
1258
- }
1259
- .w3eden .col-lg-offset-3 {
1260
- margin-left: 25%;
1261
- }
1262
- .w3eden .col-lg-offset-2 {
1263
- margin-left: 16.66666667%;
1264
- }
1265
- .w3eden .col-lg-offset-1 {
1266
- margin-left: 8.33333333%;
1267
- }
1268
- .w3eden .col-lg-offset-0 {
1269
- margin-left: 0;
1270
- }
1271
- }
1272
- .w3eden table {
1273
- background-color: transparent;
1274
- }
1275
- .w3eden caption {
1276
- padding-top: 8px;
1277
- padding-bottom: 8px;
1278
- color: #777;
1279
- text-align: left;
1280
- }
1281
- .w3eden th {
1282
- text-align: left;
1283
- }
1284
- .w3eden .table {
1285
- width: 100%;
1286
- max-width: 100%;
1287
- margin-bottom: 20px;
1288
- }
1289
- .w3eden .table > tbody > tr > td,
1290
- .w3eden .table > tbody > tr > th,
1291
- .w3eden .table > tfoot > tr > td,
1292
- .w3eden .table > tfoot > tr > th,
1293
- .w3eden .table > thead > tr > td,
1294
- .w3eden .table > thead > tr > th {
1295
- padding: 8px;
1296
- line-height: 1.42857143;
1297
- vertical-align: top;
1298
- border-top: 1px solid #dddddd;
1299
- }
1300
- .w3eden .table > thead > tr > th {
1301
- vertical-align: bottom;
1302
- border-bottom: 2px solid #dddddd;
1303
- }
1304
- .w3eden .table > caption + thead > tr:first-child > td,
1305
- .w3eden .table > caption + thead > tr:first-child > th,
1306
- .w3eden .table > colgroup + thead > tr:first-child > td,
1307
- .w3eden .table > colgroup + thead > tr:first-child > th,
1308
- .w3eden .table > thead:first-child > tr:first-child > td,
1309
- .w3eden .table > thead:first-child > tr:first-child > th {
1310
- border-top: 0;
1311
- }
1312
- .w3eden .table > tbody + tbody {
1313
- border-top: 2px solid #dddddd;
1314
- }
1315
- .w3eden .table .table {
1316
- background-color: #ffffff;
1317
- }
1318
- .w3eden .table-condensed > tbody > tr > td,
1319
- .w3eden .table-condensed > tbody > tr > th,
1320
- .w3eden .table-condensed > tfoot > tr > td,
1321
- .w3eden .table-condensed > tfoot > tr > th,
1322
- .w3eden .table-condensed > thead > tr > td,
1323
- .w3eden .table-condensed > thead > tr > th {
1324
- padding: 5px;
1325
- }
1326
- .w3eden .table-bordered {
1327
- border: 1px solid #dddddd;
1328
- }
1329
- .w3eden .table-bordered > tbody > tr > td,
1330
- .w3eden .table-bordered > tbody > tr > th,
1331
- .w3eden .table-bordered > tfoot > tr > td,
1332
- .w3eden .table-bordered > tfoot > tr > th,
1333
- .w3eden .table-bordered > thead > tr > td,
1334
- .w3eden .table-bordered > thead > tr > th {
1335
- border: 1px solid #dddddd;
1336
- }
1337
- .w3eden .table-bordered > thead > tr > td,
1338
- .w3eden .table-bordered > thead > tr > th {
1339
- border-bottom-width: 2px;
1340
- }
1341
- .w3eden .table-striped > tbody > tr:nth-of-type(odd) {
1342
- background-color: #f9f9f9;
1343
- }
1344
- .w3eden .table-hover > tbody > tr:hover {
1345
- background-color: #f5f5f5;
1346
- }
1347
- .w3eden table col[class*=col-] {
1348
- position: static;
1349
- display: table-column;
1350
- float: none;
1351
- }
1352
- .w3eden table td[class*=col-],
1353
- .w3eden table th[class*=col-] {
1354
- position: static;
1355
- display: table-cell;
1356
- float: none;
1357
- }
1358
- .w3eden .table > tbody > tr.active > td,
1359
- .w3eden .table > tbody > tr.active > th,
1360
- .w3eden .table > tbody > tr > td.active,
1361
- .w3eden .table > tbody > tr > th.active,
1362
- .w3eden .table > tfoot > tr.active > td,
1363
- .w3eden .table > tfoot > tr.active > th,
1364
- .w3eden .table > tfoot > tr > td.active,
1365
- .w3eden .table > tfoot > tr > th.active,
1366
- .w3eden .table > thead > tr.active > td,
1367
- .w3eden .table > thead > tr.active > th,
1368
- .w3eden .table > thead > tr > td.active,
1369
- .w3eden .table > thead > tr > th.active {
1370
- background-color: #f5f5f5;
1371
- }
1372
- .w3eden .table-hover > tbody > tr.active:hover > td,
1373
- .w3eden .table-hover > tbody > tr.active:hover > th,
1374
- .w3eden .table-hover > tbody > tr:hover > .active,
1375
- .w3eden .table-hover > tbody > tr > td.active:hover,
1376
- .w3eden .table-hover > tbody > tr > th.active:hover {
1377
- background-color: #e8e8e8;
1378
- }
1379
-
1380
- .w3eden .table-responsive {
1381
- min-height: .01%;
1382
- overflow-x: auto;
1383
- }
1384
- @media screen and (max-width: 767px) {
1385
- .w3eden .table-responsive {
1386
- width: 100%;
1387
- margin-bottom: 15px;
1388
- overflow-y: hidden;
1389
- -ms-overflow-style: -ms-autohiding-scrollbar;
1390
- border: 1px solid #dddddd;
1391
- }
1392
- .w3eden .table-responsive > .table {
1393
- margin-bottom: 0;
1394
- }
1395
- .w3eden .table-responsive > .table > tbody > tr > td,
1396
- .w3eden .table-responsive > .table > tbody > tr > th,
1397
- .w3eden .table-responsive > .table > tfoot > tr > td,
1398
- .w3eden .table-responsive > .table > tfoot > tr > th,
1399
- .w3eden .table-responsive > .table > thead > tr > td,
1400
- .w3eden .table-responsive > .table > thead > tr > th {
1401
- white-space: nowrap;
1402
- }
1403
- .w3eden .table-responsive > .table-bordered {
1404
- border: 0;
1405
- }
1406
- .w3eden .table-responsive > .table-bordered > tbody > tr > td:first-child,
1407
- .w3eden .table-responsive > .table-bordered > tbody > tr > th:first-child,
1408
- .w3eden .table-responsive > .table-bordered > tfoot > tr > td:first-child,
1409
- .w3eden .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1410
- .w3eden .table-responsive > .table-bordered > thead > tr > td:first-child,
1411
- .w3eden .table-responsive > .table-bordered > thead > tr > th:first-child {
1412
- border-left: 0;
1413
- }
1414
- .w3eden .table-responsive > .table-bordered > tbody > tr > td:last-child,
1415
- .w3eden .table-responsive > .table-bordered > tbody > tr > th:last-child,
1416
- .w3eden .table-responsive > .table-bordered > tfoot > tr > td:last-child,
1417
- .w3eden .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1418
- .w3eden .table-responsive > .table-bordered > thead > tr > td:last-child,
1419
- .w3eden .table-responsive > .table-bordered > thead > tr > th:last-child {
1420
- border-right: 0;
1421
- }
1422
- .w3eden .table-responsive > .table-bordered > tbody > tr:last-child > td,
1423
- .w3eden .table-responsive > .table-bordered > tbody > tr:last-child > th,
1424
- .w3eden .table-responsive > .table-bordered > tfoot > tr:last-child > td,
1425
- .w3eden .table-responsive > .table-bordered > tfoot > tr:last-child > th {
1426
- border-bottom: 0;
1427
- }
1428
- }
1429
- .w3eden fieldset {
1430
- min-width: 0;
1431
- padding: 0;
1432
- margin: 0;
1433
- border: 0;
1434
- }
1435
- .w3eden legend {
1436
- display: block;
1437
- width: 100%;
1438
- padding: 0;
1439
- margin-bottom: 20px;
1440
- font-size: 21px;
1441
- line-height: inherit;
1442
- color: #333;
1443
- border: 0;
1444
- border-bottom: 1px solid #e5e5e5;
1445
- }
1446
- .w3eden label {
1447
- display: inline-block;
1448
- max-width: 100%;
1449
- margin-bottom: 5px;
1450
- font-weight: 700;
1451
- }
1452
- .w3eden input[type=search] {
1453
- -webkit-box-sizing: border-box;
1454
- -moz-box-sizing: border-box;
1455
- box-sizing: border-box;
1456
- }
1457
- .w3eden input[type=checkbox],
1458
- .w3eden input[type=radio] {
1459
- margin: 4px 0 0;
1460
- margin-top: 1px \9;
1461
- line-height: normal;
1462
- }
1463
- .w3eden input[type=file] {
1464
- display: block;
1465
- }
1466
- .w3eden input[type=range] {
1467
- display: block;
1468
- width: 100%;
1469
- }
1470
- .w3eden select[multiple],
1471
- .w3eden select[size] {
1472
- height: auto;
1473
- }
1474
- .w3eden input[type=file]:focus,
1475
- .w3eden input[type=checkbox]:focus,
1476
- .w3eden input[type=radio]:focus {
1477
- outline: thin dotted;
1478
- outline: 5px auto -webkit-focus-ring-color;
1479
- outline-offset: -2px;
1480
- }
1481
- .w3eden output {
1482
- display: block;
1483
- padding-top: 7px;
1484
- font-size: 14px;
1485
- line-height: 1.42857143;
1486
- color: #555555;
1487
- }
1488
- .w3eden .form-control {
1489
- display: block;
1490
- width: 100%;
1491
- height: 34px;
1492
- padding: 6px 12px;
1493
- font-size: 14px;
1494
- line-height: 1.42857143;
1495
- color: #555;
1496
- background-color: #fff;
1497
- background-image: none;
1498
- border: 1px solid #d5d5d5;
1499
- border-radius: 3px;
1500
- /*
1501
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.055);
1502
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.055);
1503
- -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
1504
- -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1505
- */
1506
- box-shadow: none;
1507
- transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1508
- }
1509
- .w3eden .form-control:focus {
1510
- border-color: #66afe9;
1511
- outline: 0;
1512
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(102, 175, 233, 0.6);
1513
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(102, 175, 233, 0.6);
1514
- }
1515
- .w3eden .form-control::-moz-placeholder {
1516
- color: #999;
1517
- opacity: 1;
1518
- }
1519
- .w3eden .form-control:-ms-input-placeholder {
1520
- color: #999999;
1521
- }
1522
- .w3eden .form-control::-webkit-input-placeholder {
1523
- color: #999999;
1524
- }
1525
- .w3eden .form-control[disabled],
1526
- .w3eden .form-control[readonly],
1527
- .w3eden fieldset[disabled] .form-control {
1528
- background-color: #eee;
1529
- opacity: 1;
1530
- }
1531
- .w3eden .form-control[disabled],
1532
- .w3eden fieldset[disabled] .form-control {
1533
- cursor: not-allowed;
1534
- }
1535
- .w3eden textarea.form-control {
1536
- height: auto;
1537
- }
1538
- .w3eden input[type=search] {
1539
- -webkit-appearance: none;
1540
- }
1541
- @media screen and (-webkit-min-device-pixel-ratio: 0) {
1542
- .w3eden input[type=date],
1543
- .w3eden input[type=time],
1544
- .w3eden input[type=datetime-local],
1545
- .w3eden input[type=month] {
1546
- line-height: 34px;
1547
- }
1548
- .w3eden .input-group-sm input[type=date],
1549
- .w3eden .input-group-sm input[type=time],
1550
- .w3eden .input-group-sm input[type=datetime-local],
1551
- .w3eden .input-group-sm input[type=month],
1552
- .w3eden input[type=date].input-sm,
1553
- .w3eden input[type=time].input-sm,
1554
- .w3eden input[type=datetime-local].input-sm,
1555
- .w3eden input[type=month].input-sm {
1556
- line-height: 30px;
1557
- }
1558
- .w3eden .input-group-lg input[type=date],
1559
- .w3eden .input-group-lg input[type=time],
1560
- .w3eden .input-group-lg input[type=datetime-local],
1561
- .w3eden .input-group-lg input[type=month],
1562
- .w3eden input[type=date].input-lg,
1563
- .w3eden input[type=time].input-lg,
1564
- .w3eden input[type=datetime-local].input-lg,
1565
- .w3eden input[type=month].input-lg {
1566
- line-height: 46px;
1567
- }
1568
- }
1569
- .w3eden .form-group {
1570
- margin-bottom: 15px;
1571
- }
1572
- .w3eden .checkbox,
1573
- .w3eden .radio {
1574
- position: relative;
1575
- display: block;
1576
- margin-top: 10px;
1577
- margin-bottom: 10px;
1578
- }
1579
- .w3eden .checkbox label,
1580
- .w3eden .radio label {
1581
- min-height: 20px;
1582
- padding-left: 20px;
1583
- margin-bottom: 0;
1584
- font-weight: 400;
1585
- cursor: pointer;
1586
- }
1587
- .w3eden .checkbox input[type=checkbox],
1588
- .w3eden .checkbox-inline input[type=checkbox],
1589
- .w3eden .radio input[type=radio],
1590
- .w3eden .radio-inline input[type=radio] {
1591
- position: absolute;
1592
- margin-top: 4px \9;
1593
- margin-left: -20px;
1594
- }
1595
- .w3eden .checkbox + .checkbox,
1596
- .w3eden .radio + .radio {
1597
- margin-top: -5px;
1598
- }
1599
- .w3eden .checkbox-inline,
1600
- .w3eden .radio-inline {
1601
- position: relative;
1602
- display: inline-block;
1603
- padding-left: 20px;
1604
- margin-bottom: 0;
1605
- font-weight: 400;
1606
- vertical-align: middle;
1607
- cursor: pointer;
1608
- }
1609
- .w3eden .checkbox-inline + .checkbox-inline,
1610
- .w3eden .radio-inline + .radio-inline {
1611
- margin-top: 0;
1612
- margin-left: 10px;
1613
- }
1614
- .w3eden fieldset[disabled] input[type=checkbox],
1615
- .w3eden fieldset[disabled] input[type=radio],
1616
- .w3eden input[type=checkbox].disabled,
1617
- .w3eden input[type=checkbox][disabled],
1618
- .w3eden input[type=radio].disabled,
1619
- .w3eden input[type=radio][disabled] {
1620
- cursor: not-allowed;
1621
- }
1622
- .w3eden .checkbox-inline.disabled,
1623
- .w3eden .radio-inline.disabled,
1624
- .w3eden fieldset[disabled] .checkbox-inline,
1625
- .w3eden fieldset[disabled] .radio-inline {
1626
- cursor: not-allowed;
1627
- }
1628
- .w3eden .checkbox.disabled label,
1629
- .w3eden .radio.disabled label,
1630
- .w3eden fieldset[disabled] .checkbox label,
1631
- .w3eden fieldset[disabled] .radio label {
1632
- cursor: not-allowed;
1633
- }
1634
- .w3eden .form-control-static {
1635
- min-height: 34px;
1636
- padding-top: 7px;
1637
- padding-bottom: 7px;
1638
- margin-bottom: 0;
1639
- }
1640
- .w3eden .form-control-static.input-lg,
1641
- .w3eden .form-control-static.input-sm {
1642
- padding-right: 0;
1643
- padding-left: 0;
1644
- }
1645
- .w3eden .input-sm {
1646
- height: 30px;
1647
- padding: 5px 10px;
1648
- font-size: 12px;
1649
- line-height: 1.5;
1650
- border-radius: 3px;
1651
- }
1652
- .w3eden select.input-sm {
1653
- height: 30px;
1654
- line-height: 30px;
1655
- }
1656
- .w3eden select[multiple].input-sm,
1657
- .w3eden textarea.input-sm {
1658
- height: auto;
1659
- }
1660
- .w3eden .form-group-sm .form-control {
1661
- height: 30px;
1662
- padding: 5px 10px;
1663
- font-size: 12px;
1664
- line-height: 1.5;
1665
- border-radius: 3px;
1666
- }
1667
- .w3eden select.form-group-sm .form-control {
1668
- height: 30px;
1669
- line-height: 30px;
1670
- }
1671
- .w3eden select[multiple].form-group-sm .form-control,
1672
- .w3eden textarea.form-group-sm .form-control {
1673
- height: auto;
1674
- }
1675
- .w3eden .form-group-sm .form-control-static {
1676
- height: 30px;
1677
- min-height: 32px;
1678
- padding: 5px 10px;
1679
- font-size: 12px;
1680
- line-height: 1.5;
1681
- }
1682
- .w3eden .input-lg {
1683
- height: 46px;
1684
- padding: 10px 16px;
1685
- font-size: 18px;
1686
- line-height: 1.3333333;
1687
- border-radius: 6px;
1688
- }
1689
- .w3eden select.input-lg {
1690
- height: 46px;
1691
- line-height: 46px;
1692
- }
1693
- .w3eden select[multiple].input-lg,
1694
- .w3eden textarea.input-lg {
1695
- height: auto;
1696
- }
1697
- .w3eden .form-group-lg .form-control {
1698
- height: 46px;
1699
- padding: 10px 16px;
1700
- font-size: 18px;
1701
- line-height: 1.3333333;
1702
- border-radius: 6px;
1703
- }
1704
- .w3eden select.form-group-lg .form-control {
1705
- height: 46px;
1706
- line-height: 46px;
1707
- }
1708
- .w3eden select[multiple].form-group-lg .form-control,
1709
- .w3eden textarea.form-group-lg .form-control {
1710
- height: auto;
1711
- }
1712
- .w3eden .form-group-lg .form-control-static {
1713
- height: 46px;
1714
- min-height: 38px;
1715
- padding: 10px 16px;
1716
- font-size: 18px;
1717
- line-height: 1.3333333;
1718
- }
1719
- .w3eden .has-feedback {
1720
- position: relative;
1721
- }
1722
- .w3eden .has-feedback .form-control {
1723
- padding-right: 42.5px;
1724
- }
1725
- .w3eden .form-control-feedback {
1726
- position: absolute;
1727
- top: 0;
1728
- right: 0;
1729
- z-index: 2;
1730
- display: block;
1731
- width: 34px;
1732
- height: 34px;
1733
- line-height: 34px;
1734
- text-align: center;
1735
- pointer-events: none;
1736
- }
1737
- .w3eden .input-lg + .form-control-feedback {
1738
- width: 46px;
1739
- height: 46px;
1740
- line-height: 46px;
1741
- }
1742
- .w3eden .input-sm + .form-control-feedback {
1743
- width: 30px;
1744
- height: 30px;
1745
- line-height: 30px;
1746
- }
1747
- .w3eden .has-success .checkbox,
1748
- .w3eden .has-success .checkbox-inline,
1749
- .w3eden .has-success .control-label,
1750
- .w3eden .has-success .help-block,
1751
- .w3eden .has-success .radio,
1752
- .w3eden .has-success .radio-inline,
1753
- .w3eden .has-success.checkbox label,
1754
- .w3eden .has-success.checkbox-inline label,
1755
- .w3eden .has-success.radio label,
1756
- .w3eden .has-success.radio-inline label {
1757
- color: #3c763d;
1758
- }
1759
- .w3eden .has-success .form-control {
1760
- border-color: #3c763d;
1761
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1762
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1763
- }
1764
- .w3eden .has-success .form-control:focus {
1765
- border-color: #2b542c;
1766
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1767
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1768
- }
1769
- .w3eden .has-success .input-group-addon {
1770
- color: #3c763d;
1771
- background-color: #dff0d8;
1772
- border-color: #3c763d;
1773
- }
1774
- .w3eden .has-success .form-control-feedback {
1775
- color: #3c763d;
1776
- }
1777
- .w3eden .has-warning .checkbox,
1778
- .w3eden .has-warning .checkbox-inline,
1779
- .w3eden .has-warning .control-label,
1780
- .w3eden .has-warning .help-block,
1781
- .w3eden .has-warning .radio,
1782
- .w3eden .has-warning .radio-inline,
1783
- .w3eden .has-warning.checkbox label,
1784
- .w3eden .has-warning.checkbox-inline label,
1785
- .w3eden .has-warning.radio label,
1786
- .w3eden .has-warning.radio-inline label {
1787
- color: #8a6d3b;
1788
- }
1789
- .w3eden .has-warning .form-control {
1790
- border-color: #8a6d3b;
1791
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1792
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1793
- }
1794
- .w3eden .has-warning .form-control:focus {
1795
- border-color: #66512c;
1796
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1797
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1798
- }
1799
- .w3eden .has-warning .input-group-addon {
1800
- color: #8a6d3b;
1801
- background-color: #fcf8e3;
1802
- border-color: #8a6d3b;
1803
- }
1804
- .w3eden .has-warning .form-control-feedback {
1805
- color: #8a6d3b;
1806
- }
1807
- .w3eden .has-error .checkbox,
1808
- .w3eden .has-error .checkbox-inline,
1809
- .w3eden .has-error .control-label,
1810
- .w3eden .has-error .help-block,
1811
- .w3eden .has-error .radio,
1812
- .w3eden .has-error .radio-inline,
1813
- .w3eden .has-error.checkbox label,
1814
- .w3eden .has-error.checkbox-inline label,
1815
- .w3eden .has-error.radio label,
1816
- .w3eden .has-error.radio-inline label {
1817
- color: #a94442;
1818
- }
1819
- .w3eden .has-error .form-control {
1820
- border-color: #a94442;
1821
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1822
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1823
- }
1824
- .w3eden .has-error .form-control:focus {
1825
- border-color: #843534;
1826
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1827
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1828
- }
1829
- .w3eden .has-error .input-group-addon {
1830
- color: #a94442;
1831
- background-color: #f2dede;
1832
- border-color: #a94442;
1833
- }
1834
- .w3eden .has-error .form-control-feedback {
1835
- color: #a94442;
1836
- }
1837
- .w3eden .has-feedback label ~ .form-control-feedback {
1838
- top: 25px;
1839
- }
1840
- .w3eden .has-feedback label.sr-only ~ .form-control-feedback {
1841
- top: 0;
1842
- }
1843
- .w3eden .help-block {
1844
- display: block;
1845
- margin-top: 5px;
1846
- margin-bottom: 10px;
1847
- color: #737373;
1848
- }
1849
- @media (min-width: 768px) {
1850
- .w3eden .form-inline .form-group {
1851
- display: inline-block;
1852
- margin-bottom: 0;
1853
- vertical-align: middle;
1854
- }
1855
- .w3eden .form-inline .form-control {
1856
- display: inline-block;
1857
- width: auto;
1858
- vertical-align: middle;
1859
- }
1860
- .w3eden .form-inline .form-control-static {
1861
- display: inline-block;
1862
- }
1863
- .w3eden .form-inline .input-group {
1864
- display: inline-table;
1865
- vertical-align: middle;
1866
- }
1867
- .w3eden .form-inline .input-group .form-control,
1868
- .w3eden .form-inline .input-group .input-group-addon,
1869
- .w3eden .form-inline .input-group .input-group-btn {
1870
- width: auto;
1871
- }
1872
- .w3eden .form-inline .input-group > .form-control {
1873
- width: 100%;
1874
- }
1875
- .w3eden .form-inline .control-label {
1876
- margin-bottom: 0;
1877
- vertical-align: middle;
1878
- }
1879
- .w3eden .form-inline .checkbox,
1880
- .w3eden .form-inline .radio {
1881
- display: inline-block;
1882
- margin-top: 0;
1883
- margin-bottom: 0;
1884
- vertical-align: middle;
1885
- }
1886
- .w3eden .form-inline .checkbox label,
1887
- .w3eden .form-inline .radio label {
1888
- padding-left: 0;
1889
- }
1890
- .w3eden .form-inline .checkbox input[type=checkbox],
1891
- .w3eden .form-inline .radio input[type=radio] {
1892
- position: relative;
1893
- margin-left: 0;
1894
- }
1895
- .w3eden .form-inline .has-feedback .form-control-feedback {
1896
- top: 0;
1897
- }
1898
- }
1899
- .w3eden .form-horizontal .checkbox,
1900
- .w3eden .form-horizontal .checkbox-inline,
1901
- .w3eden .form-horizontal .radio,
1902
- .w3eden .form-horizontal .radio-inline {
1903
- padding-top: 7px;
1904
- margin-top: 0;
1905
- margin-bottom: 0;
1906
- }
1907
- .w3eden .form-horizontal .checkbox,
1908
- .w3eden .form-horizontal .radio {
1909
- min-height: 27px;
1910
- }
1911
- .w3eden .form-horizontal .form-group {
1912
- margin-right: -15px;
1913
- margin-left: -15px;
1914
- }
1915
- @media (min-width: 768px) {
1916
- .w3eden .form-horizontal .control-label {
1917
- padding-top: 7px;
1918
- margin-bottom: 0;
1919
- text-align: right;
1920
- }
1921
- }
1922
- .w3eden .form-horizontal .has-feedback .form-control-feedback {
1923
- right: 15px;
1924
- }
1925
- @media (min-width: 768px) {
1926
- .w3eden .form-horizontal .form-group-lg .control-label {
1927
- padding-top: 14.33px;
1928
- }
1929
- }
1930
- @media (min-width: 768px) {
1931
- .w3eden .form-horizontal .form-group-sm .control-label {
1932
- padding-top: 6px;
1933
- }
1934
- }
1935
- .w3eden .btn {
1936
- display: inline-block;
1937
- padding: 6px 12px;
1938
- margin-bottom: 0;
1939
- font-size: 14px;
1940
- font-weight: 400;
1941
- line-height: 1.42857143;
1942
- text-align: center;
1943
- white-space: nowrap;
1944
- vertical-align: middle;
1945
- -ms-touch-action: manipulation;
1946
- touch-action: manipulation;
1947
- cursor: pointer;
1948
- -webkit-user-select: none;
1949
- -moz-user-select: none;
1950
- -ms-user-select: none;
1951
- user-select: none;
1952
- background-image: none;
1953
- border: 1px solid transparent;
1954
- border-radius: 3px;
1955
- }
1956
- .w3eden .btn.active.focus,
1957
- .w3eden .btn.active:focus,
1958
- .w3eden .btn.focus,
1959
- .w3eden .btn:active.focus,
1960
- .w3eden .btn:active:focus,
1961
- .w3eden .btn:focus {
1962
- outline: thin dotted;
1963
- outline: 5px auto -webkit-focus-ring-color;
1964
- outline-offset: -2px;
1965
- }
1966
- .w3eden .btn.focus,
1967
- .w3eden .btn:focus,
1968
- .w3eden .btn:hover {
1969
- color: #333;
1970
- text-decoration: none;
1971
- }
1972
- .w3eden .btn.active,
1973
- .w3eden .btn:active {
1974
- background-image: none;
1975
- outline: 0;
1976
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1977
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1978
- }
1979
- .w3eden .btn.disabled,
1980
- .w3eden .btn[disabled],
1981
- .w3eden fieldset[disabled] .btn {
1982
- pointer-events: none;
1983
- cursor: not-allowed;
1984
- filter: alpha(opacity=65);
1985
- -webkit-box-shadow: none;
1986
- box-shadow: none;
1987
- opacity: 0.65;
1988
- }
1989
- .w3eden .btn-secondary {
1990
- color: #333;
1991
- background-color: #fff;
1992
- border-color: #cccccc;
1993
- }
1994
- .w3eden .btn-secondary.active,
1995
- .w3eden .btn-secondary.focus,
1996
- .w3eden .btn-secondary:active,
1997
- .w3eden .btn-secondary:focus,
1998
- .w3eden .btn-secondary:hover,
1999
- .w3eden .open > .dropdown-toggle.btn-secondary {
2000
- color: #333;
2001
- background-color: #e6e6e6;
2002
- border-color: #adadad;
2003
- }
2004
- .w3eden .btn-secondary.active,
2005
- .w3eden .btn-secondary:active,
2006
- .w3eden .open > .dropdown-toggle.btn-secondary {
2007
- background-image: none;
2008
- }
2009
- .w3eden .btn-secondary.disabled,
2010
- .w3eden .btn-secondary.disabled.active,
2011
- .w3eden .btn-secondary.disabled.focus,
2012
- .w3eden .btn-secondary.disabled:active,
2013
- .w3eden .btn-secondary.disabled:focus,
2014
- .w3eden .btn-secondary.disabled:hover,
2015
- .w3eden .btn-secondary[disabled],
2016
- .w3eden .btn-secondary[disabled].active,
2017
- .w3eden .btn-secondary[disabled].focus,
2018
- .w3eden .btn-secondary[disabled]:active,
2019
- .w3eden .btn-secondary[disabled]:focus,
2020
- .w3eden .btn-secondary[disabled]:hover,
2021
- .w3eden fieldset[disabled] .btn-secondary,
2022
- .w3eden fieldset[disabled] .btn-secondary.active,
2023
- .w3eden fieldset[disabled] .btn-secondary.focus,
2024
- .w3eden fieldset[disabled] .btn-secondary:active,
2025
- .w3eden fieldset[disabled] .btn-secondary:focus,
2026
- .w3eden fieldset[disabled] .btn-secondary:hover {
2027
- background-color: #fff;
2028
- border-color: #cccccc;
2029
- }
2030
- .w3eden .btn-secondary .badge {
2031
- color: #fff;
2032
- background-color: #333333;
2033
- }
2034
- .w3eden .btn-primary {
2035
- color: #fff;
2036
- background-color: #337ab7;
2037
- border-color: #2e6da4;
2038
- }
2039
- .w3eden .btn-primary.active,
2040
- .w3eden .btn-primary.focus,
2041
- .w3eden .btn-primary:active,
2042
- .w3eden .btn-primary:focus,
2043
- .w3eden .btn-primary:hover,
2044
- .w3eden .open > .dropdown-toggle.btn-primary {
2045
- color: #fff;
2046
- background-color: #286090;
2047
- border-color: #204d74;
2048
- }
2049
- .w3eden .btn-primary.active,
2050
- .w3eden .btn-primary:active,
2051
- .w3eden .open > .dropdown-toggle.btn-primary {
2052
- background-image: none;
2053
- }
2054
- .w3eden .btn-primary.disabled,
2055
- .w3eden .btn-primary.disabled.active,
2056
- .w3eden .btn-primary.disabled.focus,
2057
- .w3eden .btn-primary.disabled:active,
2058
- .w3eden .btn-primary.disabled:focus,
2059
- .w3eden .btn-primary.disabled:hover,
2060
- .w3eden .btn-primary[disabled],
2061
- .w3eden .btn-primary[disabled].active,
2062
- .w3eden .btn-primary[disabled].focus,
2063
- .w3eden .btn-primary[disabled]:active,
2064
- .w3eden .btn-primary[disabled]:focus,
2065
- .w3eden .btn-primary[disabled]:hover,
2066
- .w3eden fieldset[disabled] .btn-primary,
2067
- .w3eden fieldset[disabled] .btn-primary.active,
2068
- .w3eden fieldset[disabled] .btn-primary.focus,
2069
- .w3eden fieldset[disabled] .btn-primary:active,
2070
- .w3eden fieldset[disabled] .btn-primary:focus,
2071
- .w3eden fieldset[disabled] .btn-primary:hover {
2072
- background-color: #337ab7;
2073
- border-color: #2e6da4;
2074
- }
2075
- .w3eden .btn-primary .badge {
2076
- color: #337ab7;
2077
- background-color: #ffffff;
2078
- }
2079
- .w3eden .btn-success {
2080
- color: #fff;
2081
- background-color: #5cb85c;
2082
- border-color: #4cae4c;
2083
- }
2084
- .w3eden .btn-success.active,
2085
- .w3eden .btn-success.focus,
2086
- .w3eden .btn-success:active,
2087
- .w3eden .btn-success:focus,
2088
- .w3eden .btn-success:hover,
2089
- .w3eden .open > .dropdown-toggle.btn-success {
2090
- color: #fff;
2091
- background-color: #449d44;
2092
- border-color: #398439;
2093
- }
2094
- .w3eden .btn-success.active,
2095
- .w3eden .btn-success:active,
2096
- .w3eden .open > .dropdown-toggle.btn-success {
2097
- background-image: none;
2098
- }
2099
- .w3eden .btn-success.disabled,
2100
- .w3eden .btn-success.disabled.active,
2101
- .w3eden .btn-success.disabled.focus,
2102
- .w3eden .btn-success.disabled:active,
2103
- .w3eden .btn-success.disabled:focus,
2104
- .w3eden .btn-success.disabled:hover,
2105
- .w3eden .btn-success[disabled],
2106
- .w3eden .btn-success[disabled].active,
2107
- .w3eden .btn-success[disabled].focus,
2108
- .w3eden .btn-success[disabled]:active,
2109
- .w3eden .btn-success[disabled]:focus,
2110
- .w3eden .btn-success[disabled]:hover,
2111
- .w3eden fieldset[disabled] .btn-success,
2112
- .w3eden fieldset[disabled] .btn-success.active,
2113
- .w3eden fieldset[disabled] .btn-success.focus,
2114
- .w3eden fieldset[disabled] .btn-success:active,
2115
- .w3eden fieldset[disabled] .btn-success:focus,
2116
- .w3eden fieldset[disabled] .btn-success:hover {
2117
- background-color: #5cb85c;
2118
- border-color: #4cae4c;
2119
- }
2120
- .w3eden .btn-success .badge {
2121
- color: #5cb85c;
2122
- background-color: #ffffff;
2123
- }
2124
- .w3eden .btn-info {
2125
- color: #fff;
2126
- background-color: #5bc0de;
2127
- border-color: #46b8da;
2128
- }
2129
- .w3eden .btn-info.active,
2130
- .w3eden .btn-info.focus,
2131
- .w3eden .btn-info:active,
2132
- .w3eden .btn-info:focus,
2133
- .w3eden .btn-info:hover,
2134
- .w3eden .open > .dropdown-toggle.btn-info {
2135
- color: #fff;
2136
- background-color: #31b0d5;
2137
- border-color: #269abc;
2138
- }
2139
- .w3eden .btn-info.active,
2140
- .w3eden .btn-info:active,
2141
- .w3eden .open > .dropdown-toggle.btn-info {
2142
- background-image: none;
2143
- }
2144
- .w3eden .btn-info.disabled,
2145
- .w3eden .btn-info.disabled.active,
2146
- .w3eden .btn-info.disabled.focus,
2147
- .w3eden .btn-info.disabled:active,
2148
- .w3eden .btn-info.disabled:focus,
2149
- .w3eden .btn-info.disabled:hover,
2150
- .w3eden .btn-info[disabled],
2151
- .w3eden .btn-info[disabled].active,
2152
- .w3eden .btn-info[disabled].focus,
2153
- .w3eden .btn-info[disabled]:active,
2154
- .w3eden .btn-info[disabled]:focus,
2155
- .w3eden .btn-info[disabled]:hover,
2156
- .w3eden fieldset[disabled] .btn-info,
2157
- .w3eden fieldset[disabled] .btn-info.active,
2158
- .w3eden fieldset[disabled] .btn-info.focus,
2159
- .w3eden fieldset[disabled] .btn-info:active,
2160
- .w3eden fieldset[disabled] .btn-info:focus,
2161
- .w3eden fieldset[disabled] .btn-info:hover {
2162
- background-color: #5bc0de;
2163
- border-color: #46b8da;
2164
- }
2165
- .w3eden .btn-info .badge {
2166
- color: #5bc0de;
2167
- background-color: #ffffff;
2168
- }
2169
- .w3eden .btn-warning {
2170
- color: #fff;
2171
- background-color: #f0ad4e;
2172
- border-color: #eea236;
2173
- }
2174
- .w3eden .btn-warning.active,
2175
- .w3eden .btn-warning.focus,
2176
- .w3eden .btn-warning:active,
2177
- .w3eden .btn-warning:focus,
2178
- .w3eden .btn-warning:hover,
2179
- .w3eden .open > .dropdown-toggle.btn-warning {
2180
- color: #fff;
2181
- background-color: #ec971f;
2182
- border-color: #d58512;
2183
- }
2184
- .w3eden .btn-warning.active,
2185
- .w3eden .btn-warning:active,
2186
- .w3eden .open > .dropdown-toggle.btn-warning {
2187
- background-image: none;
2188
- }
2189
- .w3eden .btn-warning.disabled,
2190
- .w3eden .btn-warning.disabled.active,
2191
- .w3eden .btn-warning.disabled.focus,
2192
- .w3eden .btn-warning.disabled:active,
2193
- .w3eden .btn-warning.disabled:focus,
2194
- .w3eden .btn-warning.disabled:hover,
2195
- .w3eden .btn-warning[disabled],
2196
- .w3eden .btn-warning[disabled].active,
2197
- .w3eden .btn-warning[disabled].focus,
2198
- .w3eden .btn-warning[disabled]:active,
2199
- .w3eden .btn-warning[disabled]:focus,
2200
- .w3eden .btn-warning[disabled]:hover,
2201
- .w3eden fieldset[disabled] .btn-warning,
2202
- .w3eden fieldset[disabled] .btn-warning.active,
2203
- .w3eden fieldset[disabled] .btn-warning.focus,
2204
- .w3eden fieldset[disabled] .btn-warning:active,
2205
- .w3eden fieldset[disabled] .btn-warning:focus,
2206
- .w3eden fieldset[disabled] .btn-warning:hover {
2207
- background-color: #f0ad4e;
2208
- border-color: #eea236;
2209
- }
2210
- .w3eden .btn-warning .badge {
2211
- color: #f0ad4e;
2212
- background-color: #ffffff;
2213
- }
2214
- .w3eden .btn-danger {
2215
- color: #fff;
2216
- background-color: #d9534f;
2217
- border-color: #d43f3a;
2218
- }
2219
- .w3eden .btn-danger.active,
2220
- .w3eden .btn-danger.focus,
2221
- .w3eden .btn-danger:active,
2222
- .w3eden .btn-danger:focus,
2223
- .w3eden .btn-danger:hover,
2224
- .w3eden .open > .dropdown-toggle.btn-danger {
2225
- color: #fff;
2226
- background-color: #c9302c;
2227
- border-color: #ac2925;
2228
- }
2229
- .w3eden .btn-danger.active,
2230
- .w3eden .btn-danger:active,
2231
- .w3eden .open > .dropdown-toggle.btn-danger {
2232
- background-image: none;
2233
- }
2234
- .w3eden .btn-danger.disabled,
2235
- .w3eden .btn-danger.disabled.active,
2236
- .w3eden .btn-danger.disabled.focus,
2237
- .w3eden .btn-danger.disabled:active,
2238
- .w3eden .btn-danger.disabled:focus,
2239
- .w3eden .btn-danger.disabled:hover,
2240
- .w3eden .btn-danger[disabled],
2241
- .w3eden .btn-danger[disabled].active,
2242
- .w3eden .btn-danger[disabled].focus,
2243
- .w3eden .btn-danger[disabled]:active,
2244
- .w3eden .btn-danger[disabled]:focus,
2245
- .w3eden .btn-danger[disabled]:hover,
2246
- .w3eden fieldset[disabled] .btn-danger,
2247
- .w3eden fieldset[disabled] .btn-danger.active,
2248
- .w3eden fieldset[disabled] .btn-danger.focus,
2249
- .w3eden fieldset[disabled] .btn-danger:active,
2250
- .w3eden fieldset[disabled] .btn-danger:focus,
2251
- .w3eden fieldset[disabled] .btn-danger:hover {
2252
- background-color: #d9534f;
2253
- border-color: #d43f3a;
2254
- }
2255
- .w3eden .btn-danger .badge {
2256
- color: #d9534f;
2257
- background-color: #ffffff;
2258
- }
2259
- .w3eden .btn-link {
2260
- font-weight: 400;
2261
- color: #337ab7;
2262
- border-radius: 0;
2263
- }
2264
- .w3eden .btn-link,
2265
- .w3eden .btn-link.active,
2266
- .w3eden .btn-link:active,
2267
- .w3eden .btn-link[disabled],
2268
- .w3eden fieldset[disabled] .btn-link {
2269
- background-color: transparent;
2270
- -webkit-box-shadow: none;
2271
- box-shadow: none;
2272
- }
2273
- .w3eden .btn-link,
2274
- .w3eden .btn-link:active,
2275
- .w3eden .btn-link:focus,
2276
- .w3eden .btn-link:hover {
2277
- border-color: transparent;
2278
- }
2279
- .w3eden .btn-link:focus,
2280
- .w3eden .btn-link:hover {
2281
- color: #23527c;
2282
- text-decoration: underline;
2283
- background-color: transparent;
2284
- }
2285
- .w3eden .btn-link[disabled]:focus,
2286
- .w3eden .btn-link[disabled]:hover,
2287
- .w3eden fieldset[disabled] .btn-link:focus,
2288
- .w3eden fieldset[disabled] .btn-link:hover {
2289
- color: #777;
2290
- text-decoration: none;
2291
- }
2292
- .w3eden .btn-group-lg > .btn,
2293
- .w3eden .btn-lg {
2294
- padding: 10px 16px;
2295
- font-size: 18px;
2296
- line-height: 1.3333333;
2297
- border-radius: 6px;
2298
- }
2299
- .w3eden .btn-group-sm > .btn,
2300
- .w3eden .btn-sm {
2301
- padding: 5px 10px;
2302
- font-size: 12px;
2303
- line-height: 1.5;
2304
- border-radius: 3px;
2305
- }
2306
- .w3eden .btn-group-xs > .btn,
2307
- .w3eden .btn-xs {
2308
- padding: 1px 5px;
2309
- font-size: 12px;
2310
- line-height: 1.5;
2311
- border-radius: 3px;
2312
- }
2313
- .w3eden .btn-block {
2314
- display: block;
2315
- width: 100%;
2316
- }
2317
- .w3eden .btn-block + .btn-block {
2318
- margin-top: 5px;
2319
- }
2320
- .w3eden input[type=button].btn-block,
2321
- .w3eden input[type=reset].btn-block,
2322
- .w3eden input[type=submit].btn-block {
2323
- width: 100%;
2324
- }
2325
- .w3eden .fade {
2326
- opacity: 0;
2327
- -webkit-transition: opacity .15s linear;
2328
- -o-transition: opacity .15s linear;
2329
- transition: opacity 0.15s linear;
2330
- }
2331
- .w3eden .fade.in {
2332
- opacity: 1;
2333
- }
2334
- .w3eden .collapse {
2335
- display: none;
2336
- }
2337
- .w3eden .collapse.in {
2338
- display: block;
2339
- }
2340
- .w3eden tr.collapse.in {
2341
- display: table-row;
2342
- }
2343
- .w3eden tbody.collapse.in {
2344
- display: table-row-group;
2345
- }
2346
- .w3eden .collapsing {
2347
- position: relative;
2348
- height: 0;
2349
- overflow: hidden;
2350
- -webkit-transition-timing-function: ease;
2351
- -o-transition-timing-function: ease;
2352
- transition-timing-function: ease;
2353
- -webkit-transition-duration: .35s;
2354
- -o-transition-duration: .35s;
2355
- transition-duration: .35s;
2356
- -webkit-transition-property: height,visibility;
2357
- -o-transition-property: height,visibility;
2358
- transition-property: height, visibility;
2359
- }
2360
- .w3eden .caret {
2361
- display: inline-block;
2362
- width: 0;
2363
- height: 0;
2364
- margin-left: 2px;
2365
- vertical-align: middle;
2366
- border-top: 4px dashed;
2367
- border-right: 4px solid transparent;
2368
- border-left: 4px solid transparent;
2369
- }
2370
- .w3eden .dropdown,
2371
- .w3eden .dropup {
2372
- position: relative;
2373
- }
2374
- .w3eden .dropdown-toggle:focus {
2375
- outline: 0;
2376
- }
2377
- .w3eden .dropdown-menu {
2378
- position: absolute;
2379
- top: 100%;
2380
- left: 0;
2381
- z-index: 1000;
2382
- display: none;
2383
- float: left;
2384
- min-width: 160px;
2385
- padding: 5px 0;
2386
- margin: 2px 0 0;
2387
- font-size: 14px;
2388
- text-align: left;
2389
- list-style: none;
2390
- background-color: #fff;
2391
- -webkit-background-clip: padding-box;
2392
- background-clip: padding-box;
2393
- border: 1px solid #ccc;
2394
- border: 1px solid rgba(0, 0, 0, 0.15);
2395
- border-radius: 4px;
2396
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2397
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2398
- }
2399
- .w3eden .dropdown-menu.pull-right {
2400
- right: 0;
2401
- left: auto;
2402
- }
2403
- .w3eden .dropdown-menu .divider {
2404
- height: 1px;
2405
- margin: 9px 0;
2406
- overflow: hidden;
2407
- background-color: #e5e5e5;
2408
- }
2409
- .w3eden .dropdown-menu > li > a {
2410
- display: block;
2411
- padding: 3px 20px;
2412
- clear: both;
2413
- font-weight: 400;
2414
- line-height: 1.42857143;
2415
- color: #333;
2416
- white-space: nowrap;
2417
- }
2418
- .w3eden .dropdown-menu > li > a:focus,
2419
- .w3eden .dropdown-menu > li > a:hover {
2420
- color: #262626;
2421
- text-decoration: none;
2422
- background-color: #f5f5f5;
2423
- }
2424
- .w3eden .dropdown-menu > .active > a,
2425
- .w3eden .dropdown-menu > .active > a:focus,
2426
- .w3eden .dropdown-menu > .active > a:hover {
2427
- color: #fff;
2428
- text-decoration: none;
2429
- background-color: #337ab7;
2430
- outline: 0;
2431
- }
2432
- .w3eden .dropdown-menu > .disabled > a,
2433
- .w3eden .dropdown-menu > .disabled > a:focus,
2434
- .w3eden .dropdown-menu > .disabled > a:hover {
2435
- color: #777777;
2436
- }
2437
- .w3eden .dropdown-menu > .disabled > a:focus,
2438
- .w3eden .dropdown-menu > .disabled > a:hover {
2439
- text-decoration: none;
2440
- cursor: not-allowed;
2441
- background-color: transparent;
2442
- background-image: none;
2443
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2444
- }
2445
- .w3eden .open > .dropdown-menu {
2446
- display: block;
2447
- }
2448
- .w3eden .open > a {
2449
- outline: 0;
2450
- }
2451
- .w3eden .dropdown-menu-right {
2452
- right: 0;
2453
- left: auto;
2454
- }
2455
- .w3eden .dropdown-menu-left {
2456
- right: auto;
2457
- left: 0;
2458
- }
2459
- .w3eden .dropdown-header {
2460
- display: block;
2461
- padding: 3px 20px;
2462
- font-size: 12px;
2463
- line-height: 1.42857143;
2464
- color: #777;
2465
- white-space: nowrap;
2466
- }
2467
- .w3eden .dropdown-backdrop {
2468
- position: fixed;
2469
- top: 0;
2470
- right: 0;
2471
- bottom: 0;
2472
- left: 0;
2473
- z-index: 990;
2474
- }
2475
- .w3eden .pull-right > .dropdown-menu {
2476
- right: 0;
2477
- left: auto;
2478
- }
2479
- .w3eden .dropup .caret,
2480
- .w3eden .navbar-fixed-bottom .dropdown .caret {
2481
- content: "";
2482
- border-top: 0;
2483
- border-bottom: 4px solid;
2484
- }
2485
- .w3eden .dropup .dropdown-menu,
2486
- .w3eden .navbar-fixed-bottom .dropdown .dropdown-menu {
2487
- top: auto;
2488
- bottom: 100%;
2489
- margin-bottom: 2px;
2490
- }
2491
- @media (min-width: 768px) {
2492
- .w3eden .navbar-right .dropdown-menu {
2493
- right: 0;
2494
- left: auto;
2495
- }
2496
- .w3eden .navbar-right .dropdown-menu-left {
2497
- right: auto;
2498
- left: 0;
2499
- }
2500
- }
2501
- .w3eden .btn-group,
2502
- .w3eden .btn-group-vertical {
2503
- position: relative;
2504
- display: inline-block;
2505
- vertical-align: middle;
2506
- }
2507
- .w3eden .btn-group-vertical > .btn,
2508
- .w3eden .btn-group > .btn {
2509
- position: relative;
2510
- float: left;
2511
- }
2512
- .w3eden .btn-group-vertical > .btn.active,
2513
- .w3eden .btn-group-vertical > .btn:active,
2514
- .w3eden .btn-group-vertical > .btn:focus,
2515
- .w3eden .btn-group-vertical > .btn:hover,
2516
- .w3eden .btn-group > .btn.active,
2517
- .w3eden .btn-group > .btn:active,
2518
- .w3eden .btn-group > .btn:focus,
2519
- .w3eden .btn-group > .btn:hover {
2520
- z-index: 2;
2521
- }
2522
- .w3eden .btn-group .btn + .btn,
2523
- .w3eden .btn-group .btn + .btn-group,
2524
- .w3eden .btn-group .btn-group + .btn,
2525
- .w3eden .btn-group .btn-group + .btn-group {
2526
- margin-left: -1px;
2527
- }
2528
- .w3eden .btn-toolbar {
2529
- margin-left: -5px;
2530
- }
2531
- .w3eden .btn-toolbar .btn-group,
2532
- .w3eden .btn-toolbar .input-group {
2533
- float: left;
2534
- }
2535
- .w3eden .btn-toolbar > .btn,
2536
- .w3eden .btn-toolbar > .btn-group,
2537
- .w3eden .btn-toolbar > .input-group {
2538
- margin-left: 5px;
2539
- }
2540
- .w3eden .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
2541
- border-radius: 0;
2542
- }
2543
- .w3eden .btn-group > .btn:first-child {
2544
- margin-left: 0;
2545
- }
2546
- .w3eden .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
2547
- border-top-right-radius: 0;
2548
- border-bottom-right-radius: 0;
2549
- }
2550
- .w3eden .btn-group > .btn:last-child:not(:first-child),
2551
- .w3eden .btn-group > .dropdown-toggle:not(:first-child) {
2552
- border-top-left-radius: 0;
2553
- border-bottom-left-radius: 0;
2554
- }
2555
- .w3eden .btn-group > .btn-group {
2556
- float: left;
2557
- }
2558
- .w3eden .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
2559
- border-radius: 0;
2560
- }
2561
- .w3eden .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
2562
- .w3eden .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
2563
- border-top-right-radius: 0;
2564
- border-bottom-right-radius: 0;
2565
- }
2566
- .w3eden .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
2567
- border-top-left-radius: 0;
2568
- border-bottom-left-radius: 0;
2569
- }
2570
- .w3eden .btn-group .dropdown-toggle:active,
2571
- .w3eden .btn-group.open .dropdown-toggle {
2572
- outline: 0;
2573
- }
2574
- .w3eden .btn-group > .btn + .dropdown-toggle {
2575
- padding-right: 8px;
2576
- padding-left: 8px;
2577
- }
2578
- .w3eden .btn-group > .btn-lg + .dropdown-toggle {
2579
- padding-right: 12px;
2580
- padding-left: 12px;
2581
- }
2582
- .w3eden .btn-group.open .dropdown-toggle {
2583
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2584
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2585
- }
2586
- .w3eden .btn-group.open .dropdown-toggle.btn-link {
2587
- -webkit-box-shadow: none;
2588
- box-shadow: none;
2589
- }
2590
- .w3eden .btn .caret {
2591
- margin-left: 0;
2592
- }
2593
- .w3eden .btn-lg .caret {
2594
- border-width: 5px 5px 0;
2595
- border-bottom-width: 0;
2596
- }
2597
- .w3eden .dropup .btn-lg .caret {
2598
- border-width: 0 5px 5px;
2599
- }
2600
- .w3eden .btn-group-vertical > .btn,
2601
- .w3eden .btn-group-vertical > .btn-group,
2602
- .w3eden .btn-group-vertical > .btn-group > .btn {
2603
- display: block;
2604
- float: none;
2605
- width: 100%;
2606
- max-width: 100%;
2607
- }
2608
- .w3eden .btn-group-vertical > .btn-group > .btn {
2609
- float: none;
2610
- }
2611
- .w3eden .btn-group-vertical > .btn + .btn,
2612
- .w3eden .btn-group-vertical > .btn + .btn-group,
2613
- .w3eden .btn-group-vertical > .btn-group + .btn,
2614
- .w3eden .btn-group-vertical > .btn-group + .btn-group {
2615
  margin-top: -1px;
2616
- margin-left: 0;
2617
- }
2618
- .w3eden .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
2619
- border-radius: 0;
2620
- }
2621
- .w3eden .btn-group-vertical > .btn:first-child:not(:last-child) {
2622
- border-top-right-radius: 4px;
2623
- border-bottom-right-radius: 0;
2624
- border-bottom-left-radius: 0;
2625
- }
2626
- .w3eden .btn-group-vertical > .btn:last-child:not(:first-child) {
2627
- border-top-left-radius: 0;
2628
- border-top-right-radius: 0;
2629
- border-bottom-left-radius: 4px;
2630
- }
2631
- .w3eden .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
2632
- border-radius: 0;
2633
- }
2634
- .w3eden .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
2635
- .w3eden .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
2636
- border-bottom-right-radius: 0;
2637
- border-bottom-left-radius: 0;
2638
- }
2639
- .w3eden .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
2640
  border-top-left-radius: 0;
2641
  border-top-right-radius: 0;
2642
- }
2643
- .w3eden .btn-group-justified {
2644
- display: table;
2645
- width: 100%;
2646
- table-layout: fixed;
2647
- border-collapse: separate;
2648
- }
2649
- .w3eden .btn-group-justified > .btn,
2650
- .w3eden .btn-group-justified > .btn-group {
2651
- display: table-cell;
2652
- float: none;
2653
- width: 1%;
2654
- }
2655
- .w3eden .btn-group-justified > .btn-group .btn {
2656
- width: 100%;
2657
- }
2658
- .w3eden .btn-group-justified > .btn-group .dropdown-menu {
2659
- left: auto;
2660
- }
2661
- .w3eden [data-toggle=buttons] > .btn input[type=checkbox],
2662
- .w3eden [data-toggle=buttons] > .btn input[type=radio],
2663
- .w3eden [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],
2664
- .w3eden [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
2665
- position: absolute;
2666
- clip: rect(0, 0, 0, 0);
2667
- pointer-events: none;
2668
- }
2669
- .w3eden .input-group {
2670
- position: relative;
2671
- display: table;
2672
- border-collapse: separate;
2673
- }
2674
- .w3eden .input-group[class*=col-] {
2675
- float: none;
2676
- padding-right: 0;
2677
- padding-left: 0;
2678
- }
2679
- .w3eden .input-group .form-control {
2680
- position: relative;
2681
- z-index: 2;
2682
- float: left;
2683
- width: 100%;
2684
- margin-bottom: 0;
2685
- }
2686
- .w3eden .input-group-lg > .form-control,
2687
- .w3eden .input-group-lg > .input-group-addon,
2688
- .w3eden .input-group-lg > .input-group-btn > .btn {
2689
- height: 46px;
2690
- padding: 10px 16px;
2691
- font-size: 18px;
2692
- line-height: 1.3333333;
2693
- border-radius: 6px;
2694
- }
2695
- .w3eden select.input-group-lg > .form-control,
2696
- .w3eden select.input-group-lg > .input-group-addon,
2697
- .w3eden select.input-group-lg > .input-group-btn > .btn {
2698
- height: 46px;
2699
- line-height: 46px;
2700
- }
2701
- .w3eden select[multiple].input-group-lg > .form-control,
2702
- .w3eden select[multiple].input-group-lg > .input-group-addon,
2703
- .w3eden select[multiple].input-group-lg > .input-group-btn > .btn,
2704
- .w3eden textarea.input-group-lg > .form-control,
2705
- .w3eden textarea.input-group-lg > .input-group-addon,
2706
- .w3eden textarea.input-group-lg > .input-group-btn > .btn {
2707
- height: auto;
2708
- }
2709
- .w3eden .input-group-sm > .form-control,
2710
- .w3eden .input-group-sm > .input-group-addon,
2711
- .w3eden .input-group-sm > .input-group-btn > .btn {
2712
- height: 30px;
2713
- padding: 5px 10px;
2714
- font-size: 12px;
2715
- line-height: 1.5;
2716
- border-radius: 3px;
2717
- }
2718
- .w3eden select.input-group-sm > .form-control,
2719
- .w3eden select.input-group-sm > .input-group-addon,
2720
- .w3eden select.input-group-sm > .input-group-btn > .btn {
2721
- height: 30px;
2722
- line-height: 30px;
2723
- }
2724
- .w3eden select[multiple].input-group-sm > .form-control,
2725
- .w3eden select[multiple].input-group-sm > .input-group-addon,
2726
- .w3eden select[multiple].input-group-sm > .input-group-btn > .btn,
2727
- .w3eden textarea.input-group-sm > .form-control,
2728
- .w3eden textarea.input-group-sm > .input-group-addon,
2729
- .w3eden textarea.input-group-sm > .input-group-btn > .btn {
2730
- height: auto;
2731
- }
2732
- .w3eden .input-group .form-control,
2733
- .w3eden .input-group-addon,
2734
- .w3eden .input-group-btn {
2735
- display: table-cell;
2736
- }
2737
- .w3eden .input-group .form-control:not(:first-child):not(:last-child),
2738
- .w3eden .input-group-addon:not(:first-child):not(:last-child),
2739
- .w3eden .input-group-btn:not(:first-child):not(:last-child) {
2740
- border-radius: 0;
2741
- }
2742
- .w3eden .input-group-addon,
2743
- .w3eden .input-group-btn {
2744
- width: 1%;
2745
- white-space: nowrap;
2746
- vertical-align: middle;
2747
- }
2748
- .w3eden .input-group-addon {
2749
- padding: 6px 12px;
2750
- font-size: 14px;
2751
- font-weight: 400;
2752
- line-height: 1;
2753
- color: #555;
2754
  text-align: center;
2755
- background-color: #eee;
2756
- border: 1px solid #ccc;
2757
- border-radius: 3px;
2758
- }
2759
- .w3eden .input-group-addon.input-sm {
2760
- padding: 5px 10px;
2761
- font-size: 12px;
2762
- border-radius: 3px;
2763
- }
2764
- .w3eden .input-group-addon.input-lg {
2765
- padding: 10px 16px;
2766
- font-size: 18px;
2767
- border-radius: 6px;
2768
- }
2769
- .w3eden .input-group-addon input[type=checkbox],
2770
- .w3eden .input-group-addon input[type=radio] {
2771
- margin-top: 0;
2772
- }
2773
- .w3eden .input-group .form-control:first-child,
2774
- .w3eden .input-group-addon:first-child,
2775
- .w3eden .input-group-btn:first-child > .btn,
2776
- .w3eden .input-group-btn:first-child > .btn-group > .btn,
2777
- .w3eden .input-group-btn:first-child > .dropdown-toggle,
2778
- .w3eden .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
2779
- .w3eden .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
2780
- border-top-right-radius: 0;
2781
- border-bottom-right-radius: 0;
2782
- }
2783
- .w3eden .input-group-addon:first-child {
2784
- border-right: 0;
2785
- }
2786
- .w3eden .input-group .form-control:last-child,
2787
- .w3eden .input-group-addon:last-child,
2788
- .w3eden .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
2789
- .w3eden .input-group-btn:first-child > .btn:not(:first-child),
2790
- .w3eden .input-group-btn:last-child > .btn,
2791
- .w3eden .input-group-btn:last-child > .btn-group > .btn,
2792
- .w3eden .input-group-btn:last-child > .dropdown-toggle {
2793
- border-top-left-radius: 0;
2794
- border-bottom-left-radius: 0;
2795
- }
2796
- .w3eden .input-group-addon:last-child {
2797
- border-left: 0;
2798
- }
2799
- .w3eden .input-group-btn {
2800
  position: relative;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2801
  white-space: nowrap;
2802
- }
2803
- .w3eden .input-group-btn > .btn {
2804
- position: relative;
2805
- }
2806
- .w3eden .input-group-btn > .btn + .btn {
2807
- margin-left: -1px;
2808
- }
2809
- .w3eden .input-group-btn > .btn:active,
2810
- .w3eden .input-group-btn > .btn:focus,
2811
- .w3eden .input-group-btn > .btn:hover {
2812
- z-index: 2;
2813
- }
2814
- .w3eden .input-group-btn:first-child > .btn,
2815
- .w3eden .input-group-btn:first-child > .btn-group {
2816
- margin-right: -1px;
2817
- }
2818
- .w3eden .input-group-btn:last-child > .btn,
2819
- .w3eden .input-group-btn:last-child > .btn-group {
2820
- margin-left: -1px;
2821
- }
2822
- .w3eden .nav {
2823
  padding-left: 0;
2824
  margin-bottom: 0;
2825
  list-style: none;
2826
- }
2827
- .w3eden .nav > li {
2828
- position: relative;
2829
- display: block;
2830
- }
2831
- .w3eden .nav > li > a {
2832
- position: relative;
2833
- display: block;
2834
- padding: 10px 15px;
2835
- }
2836
- .w3eden .nav > li > a:focus,
2837
- .w3eden .nav > li > a:hover {
2838
- text-decoration: none;
2839
- background-color: #eeeeee;
2840
- }
2841
- .w3eden .nav > li.disabled > a {
2842
- color: #777777;
2843
- }
2844
- .w3eden .nav > li.disabled > a:focus,
2845
- .w3eden .nav > li.disabled > a:hover {
2846
- color: #777;
2847
- text-decoration: none;
2848
- cursor: not-allowed;
 
 
 
 
 
 
 
 
2849
  background-color: transparent;
2850
- }
2851
- .w3eden .nav .open > a,
2852
- .w3eden .nav .open > a:focus,
2853
- .w3eden .nav .open > a:hover {
2854
- background-color: #eee;
2855
- border-color: #337ab7;
2856
- }
2857
- .w3eden .nav .nav-divider {
2858
- height: 1px;
2859
- margin: 9px 0;
2860
- overflow: hidden;
2861
- background-color: #e5e5e5;
2862
- }
2863
- .w3eden .nav > li > a > img {
2864
- max-width: none;
2865
- }
2866
- .w3eden .nav-tabs {
2867
- border-bottom: 1px solid #dddddd;
2868
- }
2869
- .w3eden .nav-tabs > li {
2870
- float: left;
2871
- margin-bottom: -1px;
2872
- }
2873
- .w3eden .nav-tabs > li > a {
2874
- margin-right: 2px;
2875
- line-height: 1.42857143;
2876
  border: 1px solid transparent;
2877
- border-radius: 4px 4px 0 0;
2878
- }
2879
- .w3eden .nav-tabs > li > a:hover {
2880
- border-color: #eeeeee #eeeeee #dddddd;
2881
- }
2882
- .w3eden .nav-tabs > li.active > a,
2883
- .w3eden .nav-tabs > li.active > a:focus,
2884
- .w3eden .nav-tabs > li.active > a:hover {
2885
- color: #555;
2886
- cursor: default;
2887
- background-color: #fff;
2888
- border: 1px solid #ddd;
2889
- border-bottom-color: transparent;
2890
- }
2891
- .w3eden .nav-tabs.nav-justified {
2892
- width: 100%;
2893
- border-bottom: 0;
2894
- }
2895
- .w3eden .nav-tabs.nav-justified > li {
2896
- float: none;
2897
- }
2898
- .w3eden .nav-tabs.nav-justified > li > a {
2899
- margin-bottom: 5px;
2900
- text-align: center;
2901
- }
2902
- .w3eden .nav-tabs.nav-justified > .dropdown .dropdown-menu {
2903
- top: auto;
2904
- left: auto;
2905
- }
2906
- @media (min-width: 768px) {
2907
- .w3eden .nav-tabs.nav-justified > li {
2908
- display: table-cell;
2909
- width: 1%;
2910
- }
2911
- .w3eden .nav-tabs.nav-justified > li > a {
2912
- margin-bottom: 0;
2913
- }
2914
- }
2915
- .w3eden .nav-tabs.nav-justified > li > a {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2916
  margin-right: 0;
2917
- border-radius: 4px;
2918
- }
2919
- .w3eden .nav-tabs.nav-justified > .active > a,
2920
- .w3eden .nav-tabs.nav-justified > .active > a:focus,
2921
- .w3eden .nav-tabs.nav-justified > .active > a:hover {
2922
- border: 1px solid #dddddd;
2923
- }
2924
- @media (min-width: 768px) {
2925
- .w3eden .nav-tabs.nav-justified > li > a {
2926
- border-bottom: 1px solid #ddd;
2927
- border-radius: 4px 4px 0 0;
2928
- }
2929
- .w3eden .nav-tabs.nav-justified > .active > a,
2930
- .w3eden .nav-tabs.nav-justified > .active > a:focus,
2931
- .w3eden .nav-tabs.nav-justified > .active > a:hover {
2932
- border-bottom-color: #ffffff;
2933
- }
2934
- }
2935
- .w3eden .nav-pills > li {
2936
- float: left;
2937
- }
2938
- .w3eden .nav-pills > li > a {
2939
- border-radius: 4px;
2940
- }
2941
- .w3eden .nav-pills > li + li {
2942
- margin-left: 2px;
2943
- }
2944
- .w3eden .nav-pills > li.active > a,
2945
- .w3eden .nav-pills > li.active > a:focus,
2946
- .w3eden .nav-pills > li.active > a:hover {
2947
- color: #fff;
2948
- background-color: #337ab7;
2949
- }
2950
- .w3eden .nav-stacked > li {
2951
- float: none;
2952
- }
2953
- .w3eden .nav-stacked > li + li {
2954
- margin-top: 2px;
2955
  margin-left: 0;
2956
- }
2957
- .w3eden .nav-justified {
2958
- width: 100%;
2959
- }
2960
- .w3eden .nav-justified > li {
2961
- float: none;
2962
- }
2963
- .w3eden .nav-justified > li > a {
2964
- margin-bottom: 5px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2965
  text-align: center;
2966
- }
2967
- .w3eden .nav-justified > .dropdown .dropdown-menu {
2968
- top: auto;
2969
- left: auto;
2970
- }
2971
- @media (min-width: 768px) {
2972
- .w3eden .nav-justified > li {
2973
- display: table-cell;
2974
- width: 1%;
2975
- }
2976
- .w3eden .nav-justified > li > a {
2977
- margin-bottom: 0;
2978
- }
2979
- }
2980
- .w3eden .nav-tabs-justified {
2981
- border-bottom: 0;
2982
- }
2983
- .w3eden .nav-tabs-justified > li > a {
2984
- margin-right: 0;
2985
- border-radius: 4px;
2986
- }
2987
- .w3eden .nav-tabs-justified > .active > a,
2988
- .w3eden .nav-tabs-justified > .active > a:focus,
2989
- .w3eden .nav-tabs-justified > .active > a:hover {
2990
- border: 1px solid #dddddd;
2991
- }
2992
- @media (min-width: 768px) {
2993
- .w3eden .nav-tabs-justified > li > a {
2994
- border-bottom: 1px solid #ddd;
2995
- border-radius: 4px 4px 0 0;
2996
- }
2997
- .w3eden .nav-tabs-justified > .active > a,
2998
- .w3eden .nav-tabs-justified > .active > a:focus,
2999
- .w3eden .nav-tabs-justified > .active > a:hover {
3000
- border-bottom-color: #ffffff;
3001
- }
3002
- }
3003
- .w3eden .tab-content > .tab-pane {
3004
- display: none;
3005
- }
3006
- .w3eden .tab-content > .active {
3007
- display: block;
3008
- }
3009
- .w3eden .nav-tabs .dropdown-menu {
3010
- margin-top: -1px;
3011
- border-top-left-radius: 0;
3012
- border-top-right-radius: 0;
3013
- }
3014
- .w3eden .navbar {
3015
- position: relative;
3016
- min-height: 50px;
3017
- margin-bottom: 20px;
3018
- border: 1px solid transparent;
3019
- }
3020
- @media (min-width: 768px) {
3021
- .w3eden .navbar {
3022
- border-radius: 4px;
3023
- }
3024
- }
3025
- @media (min-width: 768px) {
3026
- .w3eden .navbar-header {
3027
- float: left;
3028
- }
3029
- }
3030
- .w3eden .navbar-collapse {
3031
- padding-right: 15px;
3032
- padding-left: 15px;
3033
- overflow-x: visible;
3034
- -webkit-overflow-scrolling: touch;
3035
- border-top: 1px solid transparent;
3036
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3037
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3038
- }
3039
- .w3eden .navbar-collapse.in {
3040
- overflow-y: auto;
3041
- }
3042
- @media (min-width: 768px) {
3043
- .w3eden .navbar-collapse {
3044
- width: auto;
3045
- border-top: 0;
3046
- -webkit-box-shadow: none;
3047
- box-shadow: none;
3048
- }
3049
- .w3eden .navbar-collapse.collapse {
3050
- display: block!important;
3051
- height: auto!important;
3052
- padding-bottom: 0;
3053
- overflow: visible !important;
3054
- }
3055
- .w3eden .navbar-collapse.in {
3056
- overflow-y: visible;
3057
- }
3058
- .w3eden .navbar-fixed-bottom .navbar-collapse,
3059
- .w3eden .navbar-fixed-top .navbar-collapse,
3060
- .w3eden .navbar-static-top .navbar-collapse {
3061
- padding-right: 0;
3062
- padding-left: 0;
3063
- }
3064
- }
3065
- .w3eden .navbar-fixed-bottom .navbar-collapse,
3066
- .w3eden .navbar-fixed-top .navbar-collapse {
3067
- max-height: 340px;
3068
- }
3069
- @media (max-device-width: 480px) and (orientation: landscape) {
3070
- .w3eden .navbar-fixed-bottom .navbar-collapse,
3071
- .w3eden .navbar-fixed-top .navbar-collapse {
3072
- max-height: 200px;
3073
- }
3074
- }
3075
- .w3eden .container-fluid > .navbar-collapse,
3076
- .w3eden .container-fluid > .navbar-header,
3077
- .w3eden .container > .navbar-collapse,
3078
- .w3eden .container > .navbar-header {
3079
- margin-right: -15px;
3080
- margin-left: -15px;
3081
- }
3082
- @media (min-width: 768px) {
3083
- .w3eden .container-fluid > .navbar-collapse,
3084
- .w3eden .container-fluid > .navbar-header,
3085
- .w3eden .container > .navbar-collapse,
3086
- .w3eden .container > .navbar-header {
3087
- margin-right: 0;
3088
- margin-left: 0;
3089
- }
3090
- }
3091
- .w3eden .navbar-static-top {
3092
- z-index: 1000;
3093
- border-width: 0 0 1px;
3094
- }
3095
- @media (min-width: 768px) {
3096
- .w3eden .navbar-static-top {
3097
- border-radius: 0;
3098
- }
3099
- }
3100
- .w3eden .navbar-fixed-bottom,
3101
- .w3eden .navbar-fixed-top {
3102
- position: fixed;
3103
- right: 0;
3104
- left: 0;
3105
- z-index: 1030;
3106
- }
3107
- @media (min-width: 768px) {
3108
- .w3eden .navbar-fixed-bottom,
3109
- .w3eden .navbar-fixed-top {
3110
- border-radius: 0;
3111
  }
3112
- }
3113
- .w3eden .navbar-fixed-top {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3114
  top: 0;
3115
- border-width: 0 0 1px;
3116
- }
3117
- .w3eden .navbar-fixed-bottom {
3118
- bottom: 0;
3119
- margin-bottom: 0;
3120
- border-width: 1px 0 0;
3121
- }
3122
- .w3eden .navbar-brand {
3123
- float: left;
3124
- height: 50px;
3125
- padding: 15px 15px;
3126
- font-size: 18px;
3127
- line-height: 20px;
3128
- }
3129
- .w3eden .navbar-brand:focus,
3130
- .w3eden .navbar-brand:hover {
3131
  text-decoration: none;
3132
- }
3133
- .w3eden .navbar-brand > img {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3134
  display: block;
3135
- }
3136
- @media (min-width: 768px) {
3137
- .w3eden .navbar > .container .navbar-brand,
3138
- .w3eden .navbar > .container-fluid .navbar-brand {
3139
- margin-left: -15px;
3140
- }
3141
- }
3142
- .w3eden .navbar-toggle {
3143
- position: relative;
3144
- float: right;
3145
- padding: 9px 10px;
3146
- margin-top: 8px;
3147
- margin-right: 15px;
3148
- margin-bottom: 8px;
3149
- background-color: transparent;
3150
- background-image: none;
3151
- border: 1px solid transparent;
3152
- border-radius: 4px;
3153
- }
3154
- .w3eden .navbar-toggle:focus {
3155
- outline: 0;
3156
- }
3157
- .w3eden .navbar-toggle .icon-bar {
3158
  display: block;
3159
- width: 22px;
3160
- height: 2px;
3161
- border-radius: 1px;
3162
- }
3163
- .w3eden .navbar-toggle .icon-bar + .icon-bar {
3164
- margin-top: 4px;
3165
- }
3166
- @media (min-width: 768px) {
3167
- .w3eden .navbar-toggle {
3168
- display: none;
3169
- }
3170
- }
3171
- .w3eden .navbar-nav {
3172
- margin: 7.5px -15px;
3173
- }
3174
- .w3eden .navbar-nav > li > a {
3175
- padding-top: 10px;
3176
- padding-bottom: 10px;
3177
- line-height: 20px;
3178
- }
3179
- @media (max-width: 767px) {
3180
- .w3eden .navbar-nav .open .dropdown-menu {
3181
- position: static;
3182
- float: none;
3183
- width: auto;
3184
- margin-top: 0;
3185
- background-color: transparent;
3186
- border: 0;
3187
- -webkit-box-shadow: none;
3188
- box-shadow: none;
3189
- }
3190
- .w3eden .navbar-nav .open .dropdown-menu .dropdown-header,
3191
- .w3eden .navbar-nav .open .dropdown-menu > li > a {
3192
- padding: 5px 15px 5px 25px;
3193
- }
3194
- .w3eden .navbar-nav .open .dropdown-menu > li > a {
3195
- line-height: 20px;
3196
- }
3197
- .w3eden .navbar-nav .open .dropdown-menu > li > a:focus,
3198
- .w3eden .navbar-nav .open .dropdown-menu > li > a:hover {
3199
- background-image: none;
3200
- }
3201
- }
3202
- @media (min-width: 768px) {
3203
- .w3eden .navbar-nav {
3204
- float: left;
3205
- margin: 0;
3206
- }
3207
- .w3eden .navbar-nav > li {
3208
- float: left;
3209
- }
3210
- .w3eden .navbar-nav > li > a {
3211
- padding-top: 15px;
3212
- padding-bottom: 15px;
3213
- }
3214
- }
3215
- .w3eden .navbar-form {
3216
- padding: 10px 15px;
3217
- margin-top: 8px;
3218
- margin-right: -15px;
3219
- margin-bottom: 8px;
3220
- margin-left: -15px;
3221
- border-top: 1px solid transparent;
3222
- border-bottom: 1px solid transparent;
3223
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3224
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3225
- }
3226
- @media (min-width: 768px) {
3227
- .w3eden .navbar-form .form-group {
3228
- display: inline-block;
3229
- margin-bottom: 0;
3230
- vertical-align: middle;
3231
- }
3232
- .w3eden .navbar-form .form-control {
3233
- display: inline-block;
3234
- width: auto;
3235
- vertical-align: middle;
3236
- }
3237
- .w3eden .navbar-form .form-control-static {
3238
- display: inline-block;
3239
- }
3240
- .w3eden .navbar-form .input-group {
3241
- display: inline-table;
3242
- vertical-align: middle;
3243
- }
3244
- .w3eden .navbar-form .input-group .form-control,
3245
- .w3eden .navbar-form .input-group .input-group-addon,
3246
- .w3eden .navbar-form .input-group .input-group-btn {
3247
- width: auto;
3248
- }
3249
- .w3eden .navbar-form .input-group > .form-control {
3250
- width: 100%;
3251
- }
3252
- .w3eden .navbar-form .control-label {
3253
- margin-bottom: 0;
3254
- vertical-align: middle;
3255
- }
3256
- .w3eden .navbar-form .checkbox,
3257
- .w3eden .navbar-form .radio {
3258
- display: inline-block;
3259
- margin-top: 0;
3260
- margin-bottom: 0;
3261
- vertical-align: middle;
3262
- }
3263
- .w3eden .navbar-form .checkbox label,
3264
- .w3eden .navbar-form .radio label {
3265
- padding-left: 0;
3266
- }
3267
- .w3eden .navbar-form .checkbox input[type=checkbox],
3268
- .w3eden .navbar-form .radio input[type=radio] {
3269
- position: relative;
3270
- margin-left: 0;
3271
- }
3272
- .w3eden .navbar-form .has-feedback .form-control-feedback {
3273
- top: 0;
3274
- }
3275
- }
3276
- @media (max-width: 767px) {
3277
- .w3eden .navbar-form .form-group {
3278
- margin-bottom: 5px;
3279
- }
3280
- .w3eden .navbar-form .form-group:last-child {
3281
- margin-bottom: 0;
3282
- }
3283
- }
3284
- @media (min-width: 768px) {
3285
- .w3eden .navbar-form {
3286
- width: auto;
3287
- padding-top: 0;
3288
- padding-bottom: 0;
3289
- margin-right: 0;
3290
- margin-left: 0;
3291
- border: 0;
3292
- -webkit-box-shadow: none;
3293
- box-shadow: none;
3294
- }
3295
- }
3296
- .w3eden .navbar-nav > li > .dropdown-menu {
3297
- margin-top: 0;
3298
- border-top-left-radius: 0;
3299
- border-top-right-radius: 0;
3300
- }
3301
- .w3eden .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3302
  margin-bottom: 0;
3303
- border-top-left-radius: 4px;
3304
- border-top-right-radius: 4px;
3305
- border-bottom-right-radius: 0;
3306
- border-bottom-left-radius: 0;
3307
- }
3308
- .w3eden .navbar-btn {
3309
- margin-top: 8px;
3310
- margin-bottom: 8px;
3311
- }
3312
- .w3eden .navbar-btn.btn-sm {
3313
- margin-top: 10px;
3314
- margin-bottom: 10px;
3315
- }
3316
- .w3eden .navbar-btn.btn-xs {
3317
- margin-top: 14px;
3318
- margin-bottom: 14px;
3319
- }
3320
- .w3eden .navbar-text {
3321
- margin-top: 15px;
3322
- margin-bottom: 15px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3323
  }
3324
- @media (min-width: 768px) {
3325
- .w3eden .navbar-text {
3326
- float: left;
3327
- margin-right: 15px;
3328
- margin-left: 15px;
3329
- }
3330
  }
3331
- @media (min-width: 768px) {
3332
- .w3eden .navbar-left {
3333
- float: left !important;
3334
- }
3335
- .w3eden .navbar-right {
3336
- float: right!important;
3337
- margin-right: -15px;
3338
- }
3339
- .w3eden .navbar-right ~ .navbar-right {
3340
- margin-right: 0;
3341
- }
3342
  }
3343
- .w3eden .navbar-default {
3344
- background-color: #f8f8f8;
3345
- border-color: #e7e7e7;
 
 
 
 
 
 
 
 
 
3346
  }
3347
- .w3eden .navbar-default .navbar-brand {
3348
- color: #777777;
 
 
3349
  }
3350
- .w3eden .navbar-default .navbar-brand:focus,
3351
- .w3eden .navbar-default .navbar-brand:hover {
3352
- color: #5e5e5e;
3353
- background-color: transparent;
3354
  }
3355
- .w3eden .navbar-default .navbar-text {
3356
- color: #777777;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3357
  }
3358
- .w3eden .navbar-default .navbar-nav > li > a {
3359
- color: #777777;
 
 
 
3360
  }
3361
- .w3eden .navbar-default .navbar-nav > li > a:focus,
3362
- .w3eden .navbar-default .navbar-nav > li > a:hover {
3363
- color: #333;
3364
- background-color: transparent;
 
3365
  }
3366
- .w3eden .navbar-default .navbar-nav > .active > a,
3367
- .w3eden .navbar-default .navbar-nav > .active > a:focus,
3368
- .w3eden .navbar-default .navbar-nav > .active > a:hover {
3369
- color: #555;
3370
- background-color: #e7e7e7;
3371
  }
3372
- .w3eden .navbar-default .navbar-nav > .disabled > a,
3373
- .w3eden .navbar-default .navbar-nav > .disabled > a:focus,
3374
- .w3eden .navbar-default .navbar-nav > .disabled > a:hover {
3375
- color: #ccc;
3376
- background-color: transparent;
3377
  }
3378
- .w3eden .navbar-default .navbar-toggle {
3379
- border-color: #dddddd;
3380
  }
3381
- .w3eden .navbar-default .navbar-toggle:focus,
3382
- .w3eden .navbar-default .navbar-toggle:hover {
3383
- background-color: #dddddd;
3384
  }
3385
- .w3eden .navbar-default .navbar-toggle .icon-bar {
3386
- background-color: #888888;
3387
  }
3388
- .w3eden .navbar-default .navbar-collapse,
3389
- .w3eden .navbar-default .navbar-form {
3390
- border-color: #e7e7e7;
 
 
 
3391
  }
3392
- .w3eden .navbar-default .navbar-nav > .open > a,
3393
- .w3eden .navbar-default .navbar-nav > .open > a:focus,
3394
- .w3eden .navbar-default .navbar-nav > .open > a:hover {
3395
- color: #555;
3396
- background-color: #e7e7e7;
3397
  }
3398
- @media (max-width: 767px) {
3399
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3400
- color: #777777;
3401
- }
3402
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
3403
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
3404
- color: #333;
3405
- background-color: transparent;
3406
- }
3407
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
3408
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
3409
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
3410
- color: #555;
3411
- background-color: #e7e7e7;
3412
- }
3413
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
3414
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,
3415
- .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
3416
- color: #ccc;
3417
- background-color: transparent;
3418
- }
3419
  }
3420
- .w3eden .navbar-default .navbar-link {
3421
- color: #777777;
 
 
3422
  }
3423
- .w3eden .navbar-default .navbar-link:hover {
3424
- color: #333333;
 
3425
  }
3426
- .w3eden .navbar-default .btn-link {
3427
- color: #777777;
 
3428
  }
3429
- .w3eden .navbar-default .btn-link:focus,
3430
- .w3eden .navbar-default .btn-link:hover {
3431
- color: #333333;
3432
  }
3433
- .w3eden .navbar-default .btn-link[disabled]:focus,
3434
- .w3eden .navbar-default .btn-link[disabled]:hover,
3435
- .w3eden fieldset[disabled] .navbar-default .btn-link:focus,
3436
- .w3eden fieldset[disabled] .navbar-default .btn-link:hover {
3437
- color: #cccccc;
3438
  }
3439
- .w3eden .navbar-inverse {
3440
- background-color: #222;
3441
- border-color: #080808;
 
 
 
3442
  }
3443
- .w3eden .navbar-inverse .navbar-brand {
3444
- color: #9d9d9d;
 
 
3445
  }
3446
- .w3eden .navbar-inverse .navbar-brand:focus,
3447
- .w3eden .navbar-inverse .navbar-brand:hover {
3448
- color: #fff;
3449
- background-color: transparent;
3450
  }
3451
- .w3eden .navbar-inverse .navbar-text {
3452
- color: #9d9d9d;
 
3453
  }
3454
- .w3eden .navbar-inverse .navbar-nav > li > a {
3455
- color: #9d9d9d;
 
3456
  }
3457
- .w3eden .navbar-inverse .navbar-nav > li > a:focus,
3458
- .w3eden .navbar-inverse .navbar-nav > li > a:hover {
3459
- color: #fff;
3460
- background-color: transparent;
3461
  }
3462
- .w3eden .navbar-inverse .navbar-nav > .active > a,
3463
- .w3eden .navbar-inverse .navbar-nav > .active > a:focus,
3464
- .w3eden .navbar-inverse .navbar-nav > .active > a:hover {
3465
- color: #fff;
3466
- background-color: #080808;
 
3467
  }
3468
- .w3eden .navbar-inverse .navbar-nav > .disabled > a,
3469
- .w3eden .navbar-inverse .navbar-nav > .disabled > a:focus,
3470
- .w3eden .navbar-inverse .navbar-nav > .disabled > a:hover {
3471
- color: #444;
3472
- background-color: transparent;
3473
  }
3474
- .w3eden .navbar-inverse .navbar-toggle {
3475
- border-color: #333333;
 
3476
  }
3477
- .w3eden .navbar-inverse .navbar-toggle:focus,
3478
- .w3eden .navbar-inverse .navbar-toggle:hover {
3479
- background-color: #333333;
3480
  }
3481
- .w3eden .navbar-inverse .navbar-toggle .icon-bar {
3482
- background-color: #ffffff;
 
3483
  }
3484
- .w3eden .navbar-inverse .navbar-collapse,
3485
- .w3eden .navbar-inverse .navbar-form {
3486
- border-color: #101010;
 
 
 
 
 
 
3487
  }
3488
- .w3eden .navbar-inverse .navbar-nav > .open > a,
3489
- .w3eden .navbar-inverse .navbar-nav > .open > a:focus,
3490
- .w3eden .navbar-inverse .navbar-nav > .open > a:hover {
3491
- color: #fff;
3492
- background-color: #080808;
3493
  }
3494
- @media (max-width: 767px) {
3495
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
3496
- border-color: #080808;
3497
- }
3498
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
3499
- background-color: #080808;
3500
- }
3501
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
3502
- color: #9d9d9d;
3503
- }
3504
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,
3505
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
3506
- color: #fff;
3507
- background-color: transparent;
3508
- }
3509
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
3510
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,
3511
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
3512
- color: #fff;
3513
- background-color: #080808;
3514
- }
3515
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
3516
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,
3517
- .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
3518
- color: #444;
3519
- background-color: transparent;
3520
- }
3521
  }
3522
- .w3eden .navbar-inverse .navbar-link {
3523
- color: #9d9d9d;
3524
  }
3525
- .w3eden .navbar-inverse .navbar-link:hover {
3526
- color: #ffffff;
 
 
 
3527
  }
3528
- .w3eden .navbar-inverse .btn-link {
3529
- color: #9d9d9d;
 
 
 
3530
  }
3531
- .w3eden .navbar-inverse .btn-link:focus,
3532
- .w3eden .navbar-inverse .btn-link:hover {
3533
- color: #ffffff;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3534
  }
3535
- .w3eden .navbar-inverse .btn-link[disabled]:focus,
3536
- .w3eden .navbar-inverse .btn-link[disabled]:hover,
3537
- .w3eden fieldset[disabled] .navbar-inverse .btn-link:focus,
3538
- .w3eden fieldset[disabled] .navbar-inverse .btn-link:hover {
3539
- color: #444444;
3540
  }
3541
- .w3eden .breadcrumb {
3542
- padding: 8px 15px;
3543
- margin-bottom: 20px;
3544
- list-style: none;
3545
- background-color: #f5f5f5;
3546
- border-radius: 4px;
3547
  }
3548
- .w3eden .breadcrumb > li {
3549
- display: inline-block;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3550
  }
3551
- .w3eden .breadcrumb > li + li:before {
3552
- padding: 0 5px;
3553
- color: #ccc;
3554
- content: "/\00a0";
3555
  }
3556
- .w3eden .breadcrumb > .active {
3557
- color: #777777;
 
3558
  }
3559
- .w3eden .pagination {
3560
- display: inline-block;
3561
- padding-left: 0;
3562
- margin: 20px 0;
3563
- border-radius: 4px;
3564
  }
3565
- .w3eden .pagination > li {
3566
- display: inline;
3567
  }
3568
- .w3eden .pagination > li > a,
3569
- .w3eden .pagination > li > span {
3570
- position: relative;
3571
- float: left;
3572
- padding: 6px 12px;
3573
- margin-left: -1px;
3574
- line-height: 1.42857143;
3575
- color: #337ab7;
3576
- text-decoration: none;
3577
- background-color: #fff;
3578
- border: 1px solid #dddddd;
3579
  }
3580
- .w3eden .pagination > li:first-child > a,
3581
- .w3eden .pagination > li:first-child > span {
3582
- margin-left: 0;
3583
- border-top-left-radius: 4px;
3584
- border-bottom-left-radius: 4px;
3585
- }
3586
- .w3eden .pagination > li:last-child > a,
3587
- .w3eden .pagination > li:last-child > span {
3588
- border-top-right-radius: 4px;
3589
- border-bottom-right-radius: 4px;
3590
- }
3591
- .w3eden .pagination > li > a:focus,
3592
- .w3eden .pagination > li > a:hover,
3593
- .w3eden .pagination > li > span:focus,
3594
- .w3eden .pagination > li > span:hover {
3595
- color: #23527c;
3596
- background-color: #eee;
3597
- border-color: #dddddd;
3598
- }
3599
- .w3eden .pagination > .active > a,
3600
- .w3eden .pagination > .active > a:focus,
3601
- .w3eden .pagination > .active > a:hover,
3602
- .w3eden .pagination > .active > span,
3603
- .w3eden .pagination > .active > span:focus,
3604
- .w3eden .pagination > .active > span:hover {
3605
- z-index: 2;
3606
- color: #fff;
3607
- cursor: default;
3608
- background-color: #337ab7;
3609
- border-color: #337ab7;
3610
- }
3611
- .w3eden .pagination > .disabled > a,
3612
- .w3eden .pagination > .disabled > a:focus,
3613
- .w3eden .pagination > .disabled > a:hover,
3614
- .w3eden .pagination > .disabled > span,
3615
- .w3eden .pagination > .disabled > span:focus,
3616
- .w3eden .pagination > .disabled > span:hover {
3617
- color: #777;
3618
- cursor: not-allowed;
3619
- background-color: #fff;
3620
- border-color: #dddddd;
3621
- }
3622
- .w3eden .pagination-lg > li > a,
3623
- .w3eden .pagination-lg > li > span {
3624
- padding: 10px 16px;
3625
- font-size: 18px;
3626
- }
3627
- .w3eden .pagination-lg > li:first-child > a,
3628
- .w3eden .pagination-lg > li:first-child > span {
3629
- border-top-left-radius: 6px;
3630
- border-bottom-left-radius: 6px;
3631
- }
3632
- .w3eden .pagination-lg > li:last-child > a,
3633
- .w3eden .pagination-lg > li:last-child > span {
3634
- border-top-right-radius: 6px;
3635
- border-bottom-right-radius: 6px;
3636
- }
3637
- .w3eden .pagination-sm > li > a,
3638
- .w3eden .pagination-sm > li > span {
3639
- padding: 5px 10px;
3640
- font-size: 12px;
3641
- }
3642
- .w3eden .pagination-sm > li:first-child > a,
3643
- .w3eden .pagination-sm > li:first-child > span {
3644
- border-top-left-radius: 3px;
3645
- border-bottom-left-radius: 3px;
3646
- }
3647
- .w3eden .pagination-sm > li:last-child > a,
3648
- .w3eden .pagination-sm > li:last-child > span {
3649
- border-top-right-radius: 3px;
3650
- border-bottom-right-radius: 3px;
3651
- }
3652
- .w3eden .pager {
3653
- padding-left: 0;
3654
- margin: 20px 0;
3655
- text-align: center;
3656
- list-style: none;
3657
  }
3658
- .w3eden .pager li {
3659
- display: inline;
3660
  }
3661
- .w3eden .pager li > a,
3662
- .w3eden .pager li > span {
3663
- display: inline-block;
3664
- padding: 5px 14px;
3665
- background-color: #fff;
3666
- border: 1px solid #ddd;
3667
- border-radius: 15px;
3668
  }
3669
- .w3eden .pager li > a:focus,
3670
- .w3eden .pager li > a:hover {
3671
- text-decoration: none;
3672
- background-color: #eeeeee;
3673
  }
3674
- .w3eden .pager .next > a,
3675
- .w3eden .pager .next > span {
3676
- float: right;
3677
  }
3678
- .w3eden .pager .previous > a,
3679
- .w3eden .pager .previous > span {
3680
- float: left;
3681
- }
3682
- .w3eden .pager .disabled > a,
3683
- .w3eden .pager .disabled > a:focus,
3684
- .w3eden .pager .disabled > a:hover,
3685
- .w3eden .pager .disabled > span {
3686
- color: #777;
3687
- cursor: not-allowed;
3688
- background-color: #ffffff;
3689
- }
3690
- .w3eden .label {
3691
- display: inline;
3692
- padding: .2em .6em .3em;
3693
- font-size: 75%;
3694
- font-weight: 700;
3695
- line-height: 1;
3696
- color: #fff;
3697
- text-align: center;
3698
- white-space: nowrap;
3699
- vertical-align: baseline;
3700
- border-radius: 0.25em;
3701
  }
3702
- .w3eden a.label:focus,
3703
- .w3eden a.label:hover {
3704
- color: #fff;
3705
- text-decoration: none;
3706
- cursor: pointer;
3707
  }
3708
- .w3eden .label:empty {
3709
- display: none;
 
 
 
3710
  }
3711
- .w3eden .btn .label {
3712
- position: relative;
3713
- top: -1px;
 
3714
  }
3715
- .w3eden .label-default {
3716
- background-color: #777777;
 
 
3717
  }
3718
- .w3eden .label-default[href]:focus,
3719
- .w3eden .label-default[href]:hover {
3720
- background-color: #5e5e5e;
3721
  }
3722
- .w3eden .label-primary {
3723
- background-color: #337ab7;
 
3724
  }
3725
- .w3eden .label-primary[href]:focus,
3726
- .w3eden .label-primary[href]:hover {
3727
- background-color: #286090;
3728
  }
3729
- .w3eden .label-success {
3730
- background-color: #5cb85c;
3731
  }
3732
- .w3eden .label-success[href]:focus,
3733
- .w3eden .label-success[href]:hover {
3734
- background-color: #449d44;
3735
  }
3736
- .w3eden .label-info {
3737
- background-color: #5bc0de;
 
 
3738
  }
3739
- .w3eden .label-info[href]:focus,
3740
- .w3eden .label-info[href]:hover {
3741
- background-color: #31b0d5;
3742
  }
3743
- .w3eden .label-warning {
3744
- background-color: #f0ad4e;
 
 
 
 
3745
  }
3746
- .w3eden .label-warning[href]:focus,
3747
- .w3eden .label-warning[href]:hover {
3748
- background-color: #ec971f;
 
3749
  }
3750
- .w3eden .label-danger {
3751
- background-color: #d9534f;
 
 
3752
  }
3753
- .w3eden .label-danger[href]:focus,
3754
- .w3eden .label-danger[href]:hover {
3755
- background-color: #c9302c;
 
 
 
3756
  }
3757
- .w3eden .badge {
3758
- display: inline-block;
3759
- min-width: 10px;
3760
- padding: 3px 7px;
3761
- font-size: 12px;
3762
- font-weight: 700;
3763
- line-height: 1;
3764
- color: #fff;
3765
- text-align: center;
3766
- white-space: nowrap;
3767
- vertical-align: baseline;
3768
- background-color: #777;
3769
- border-radius: 10px;
3770
  }
3771
- .w3eden .badge:empty {
3772
- display: none;
 
 
3773
  }
3774
- .w3eden .btn .badge {
3775
- position: relative;
3776
- top: -1px;
 
3777
  }
3778
- .w3eden .btn-group-xs > .btn .badge,
3779
- .w3eden .btn-xs .badge {
3780
- top: 0;
3781
- padding: 1px 5px;
3782
  }
3783
- .w3eden a.badge:focus,
3784
- .w3eden a.badge:hover {
3785
- color: #fff;
3786
- text-decoration: none;
3787
- cursor: pointer;
 
3788
  }
3789
- .w3eden .list-group-item.active > .badge,
3790
- .w3eden .nav-pills > .active > a > .badge {
3791
- color: #337ab7;
3792
- background-color: #ffffff;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3793
  }
3794
- .w3eden .list-group-item > .badge {
3795
- float: right;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3796
  }
3797
- .w3eden .list-group-item > .badge + .badge {
3798
- margin-right: 5px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3799
  }
3800
- .w3eden .nav-pills > li > a > .badge {
3801
- margin-left: 3px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3802
  }
3803
- .w3eden .jumbotron {
3804
- padding: 30px 15px;
3805
- margin-bottom: 30px;
3806
- color: inherit;
3807
- background-color: #eeeeee;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3808
  }
3809
- .w3eden .jumbotron .h1,
3810
- .w3eden .jumbotron h1 {
3811
- color: inherit;
3812
  }
3813
- .w3eden .jumbotron p {
3814
- margin-bottom: 15px;
3815
- font-size: 21px;
3816
- font-weight: 200;
3817
  }
3818
- .w3eden .jumbotron > hr {
3819
- border-top-color: #d5d5d5;
 
3820
  }
3821
- .w3eden .container .jumbotron,
3822
- .w3eden .container-fluid .jumbotron {
3823
- border-radius: 6px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3824
  }
3825
- .w3eden .jumbotron .container {
3826
- max-width: 100%;
 
 
 
 
3827
  }
3828
- @media screen and (min-width: 768px) {
3829
- .w3eden .jumbotron {
3830
- padding: 48px 0;
3831
- }
3832
- .w3eden .container .jumbotron,
3833
- .w3eden .container-fluid .jumbotron {
3834
- padding-right: 60px;
3835
- padding-left: 60px;
3836
- }
3837
- .w3eden .jumbotron .h1,
3838
- .w3eden .jumbotron h1 {
3839
- font-size: 63px;
3840
- }
3841
  }
3842
- .w3eden .thumbnail {
3843
- display: block;
3844
- padding: 4px;
3845
- margin-bottom: 20px;
3846
- line-height: 1.42857143;
3847
- background-color: #fff;
3848
- border: 1px solid #ddd;
3849
- border-radius: 4px;
3850
- -webkit-transition: border 0.2s ease-in-out;
3851
- -o-transition: border 0.2s ease-in-out;
3852
- transition: border 0.2s ease-in-out;
3853
- }
3854
- .w3eden .thumbnail a > img,
3855
- .w3eden .thumbnail > img {
3856
- margin-right: auto;
3857
- margin-left: auto;
3858
- }
3859
- .w3eden a.thumbnail.active,
3860
- .w3eden a.thumbnail:focus,
3861
- .w3eden a.thumbnail:hover {
3862
- border-color: #337ab7;
3863
- }
3864
- .w3eden .thumbnail .caption {
3865
- padding: 9px;
3866
- color: #333333;
3867
  }
3868
- .w3eden .alert {
3869
- padding: 15px;
3870
- margin-bottom: 20px;
3871
- border: 1px solid transparent;
3872
- border-radius: 4px;
3873
  }
3874
- .w3eden .alert h4 {
3875
- margin-top: 0;
3876
- color: inherit;
3877
  }
3878
- .w3eden .alert .alert-link {
3879
- font-weight: 700;
 
3880
  }
3881
- .w3eden .alert > p,
3882
- .w3eden .alert > ul {
3883
- margin-bottom: 0;
3884
  }
3885
- .w3eden .alert > p + p {
3886
- margin-top: 5px;
 
3887
  }
3888
- .w3eden .alert-dismissable,
3889
- .w3eden .alert-dismissible {
3890
- padding-right: 35px;
 
 
 
3891
  }
3892
- .w3eden .alert-dismissable .close,
3893
- .w3eden .alert-dismissible .close {
3894
- position: relative;
3895
- top: -2px;
3896
- right: -21px;
3897
- color: inherit;
3898
  }
3899
- .w3eden .alert-success {
3900
- color: #3c763d;
3901
- background-color: #dff0d8;
3902
- border-color: #d6e9c6;
3903
  }
3904
- .w3eden .alert-success hr {
3905
- border-top-color: #c9e2b3;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3906
  }
3907
- .w3eden .alert-success .alert-link {
3908
- color: #2b542c;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3909
  }
3910
- .w3eden .alert-info {
3911
- color: #31708f;
3912
- background-color: #d9edf7;
3913
- border-color: #bce8f1;
3914
  }
3915
- .w3eden .alert-info hr {
3916
- border-top-color: #a6e1ec;
 
3917
  }
3918
- .w3eden .alert-info .alert-link {
3919
- color: #245269;
 
 
3920
  }
3921
- .w3eden .alert-warning {
3922
- color: #8a6d3b;
3923
- background-color: #fcf8e3;
3924
- border-color: #faebcc;
3925
  }
3926
- .w3eden .alert-warning hr {
3927
- border-top-color: #f7e1b5;
3928
  }
3929
- .w3eden .alert-warning .alert-link {
3930
- color: #66512c;
 
 
3931
  }
3932
- .w3eden .alert-danger {
3933
- color: #a94442;
3934
- background-color: #f2dede;
3935
- border-color: #ebccd1;
 
3936
  }
3937
- .w3eden .alert-danger hr {
3938
- border-top-color: #e4b9c0;
 
3939
  }
3940
- .w3eden .alert-danger .alert-link {
3941
- color: #843534;
 
 
3942
  }
3943
- @-webkit-keyframes progress-bar-stripes {
3944
- from {
3945
- background-position: 40px 0;
3946
- }
3947
- to {
3948
- background-position: 0 0;
3949
- }
3950
  }
3951
- @-o-keyframes progress-bar-stripes {
3952
- from {
3953
- background-position: 40px 0;
3954
- }
3955
- to {
3956
- background-position: 0 0;
3957
- }
3958
  }
3959
- @keyframes progress-bar-stripes {
3960
- from {
3961
- background-position: 40px 0;
3962
- }
3963
- to {
3964
- background-position: 0 0;
3965
- }
3966
  }
3967
- .w3eden .progress {
3968
- height: 20px;
3969
- margin-bottom: 20px;
3970
- overflow: hidden;
3971
- background-color: #f5f5f5;
3972
- border-radius: 4px;
3973
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3974
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3975
- }
3976
- .w3eden .progress-bar {
3977
- float: left;
3978
- width: 0;
3979
- height: 100%;
3980
- font-size: 12px;
3981
- line-height: 20px;
3982
- color: #fff;
3983
- text-align: center;
3984
- background-color: #337ab7;
3985
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3986
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3987
- -webkit-transition: width .6s ease;
3988
- -o-transition: width .6s ease;
3989
- transition: width 0.6s ease;
3990
  }
3991
- .w3eden .progress-bar-striped,
3992
- .w3eden .progress-striped .progress-bar {
3993
- background-image: -webkit-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);
3994
- background-image: -o-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);
3995
- 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);
3996
- -webkit-background-size: 40px 40px;
3997
- background-size: 40px 40px;
3998
  }
3999
- .w3eden .progress-bar.active,
4000
- .w3eden .progress.active .progress-bar {
4001
- -webkit-animation: progress-bar-stripes 2s linear infinite;
4002
- -o-animation: progress-bar-stripes 2s linear infinite;
4003
- animation: progress-bar-stripes 2s linear infinite;
4004
  }
4005
- .w3eden .progress-bar-success {
4006
- background-color: #5cb85c;
 
 
4007
  }
4008
- .w3eden .progress-striped .progress-bar-success {
4009
- background-image: -webkit-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);
4010
- background-image: -o-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);
4011
- 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);
4012
  }
4013
- .w3eden .progress-bar-info {
4014
- background-color: #5bc0de;
 
 
4015
  }
4016
- .w3eden .progress-striped .progress-bar-info {
4017
- background-image: -webkit-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);
4018
- background-image: -o-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);
4019
- 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);
 
4020
  }
4021
- .w3eden .progress-bar-warning {
4022
- background-color: #f0ad4e;
 
4023
  }
4024
- .w3eden .progress-striped .progress-bar-warning {
4025
- background-image: -webkit-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);
4026
- background-image: -o-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);
4027
- 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);
4028
  }
4029
- .w3eden .progress-bar-danger {
4030
- background-color: #d9534f;
 
 
4031
  }
4032
- .w3eden .progress-striped .progress-bar-danger {
4033
- background-image: -webkit-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);
4034
- background-image: -o-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);
4035
- 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);
4036
  }
4037
- .w3eden .media {
4038
- margin-top: 15px;
 
 
4039
  }
4040
- .w3eden .media:first-child {
4041
- margin-top: 0;
 
 
 
4042
  }
4043
- .w3eden .media,
4044
- .w3eden .media-body {
4045
- overflow: hidden;
4046
- zoom: 1;
4047
  }
4048
- .w3eden .media-body {
4049
- width: 10000px;
 
 
4050
  }
4051
- .w3eden .media-object {
4052
- display: block;
 
 
4053
  }
4054
- .w3eden .media-right,
4055
- .w3eden .media > .pull-right {
4056
- padding-left: 10px;
4057
  }
4058
- .w3eden .media-left,
4059
- .w3eden .media > .pull-left {
4060
- padding-right: 10px;
 
4061
  }
4062
- .w3eden .media-body,
4063
- .w3eden .media-left,
4064
- .w3eden .media-right {
4065
- display: table-cell;
4066
- vertical-align: top;
4067
  }
4068
- .w3eden .media-middle {
4069
- vertical-align: middle;
 
4070
  }
4071
- .w3eden .media-bottom {
4072
- vertical-align: bottom;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4073
  }
4074
- .w3eden .media-heading {
4075
- margin-top: 0;
4076
- margin-bottom: 5px;
 
4077
  }
4078
- .w3eden .media-list {
4079
- padding-left: 0;
4080
- list-style: none;
4081
  }
4082
- .w3eden .list-group {
4083
- padding-left: 0;
4084
- margin-bottom: 20px;
4085
  }
4086
- .w3eden .list-group-item {
4087
- position: relative;
4088
- display: block;
4089
- padding: 10px 15px;
4090
- margin-bottom: -1px;
4091
- background-color: #fff;
4092
- border: 1px solid #dddddd;
4093
  }
4094
- .w3eden .list-group-item:first-child {
4095
- border-top-left-radius: 4px;
4096
- border-top-right-radius: 4px;
 
 
4097
  }
4098
- .w3eden .list-group-item:last-child {
4099
- margin-bottom: 0;
4100
- border-bottom-right-radius: 4px;
4101
- border-bottom-left-radius: 4px;
 
4102
  }
4103
- .w3eden a.list-group-item {
4104
- color: #555555;
 
4105
  }
4106
- .w3eden a.list-group-item .list-group-item-heading {
4107
- color: #333333;
4108
  }
4109
- .w3eden a.list-group-item:focus,
4110
- .w3eden a.list-group-item:hover {
4111
- color: #555;
4112
- text-decoration: none;
4113
- background-color: #f5f5f5;
4114
- }
4115
- .w3eden .list-group-item.disabled,
4116
- .w3eden .list-group-item.disabled:focus,
4117
- .w3eden .list-group-item.disabled:hover {
4118
- color: #777;
4119
- cursor: not-allowed;
4120
- background-color: #eeeeee;
4121
- }
4122
- .w3eden .list-group-item.disabled .list-group-item-heading,
4123
- .w3eden .list-group-item.disabled:focus .list-group-item-heading,
4124
- .w3eden .list-group-item.disabled:hover .list-group-item-heading {
4125
- color: inherit;
4126
- }
4127
- .w3eden .list-group-item.disabled .list-group-item-text,
4128
- .w3eden .list-group-item.disabled:focus .list-group-item-text,
4129
- .w3eden .list-group-item.disabled:hover .list-group-item-text {
4130
- color: #777777;
4131
- }
4132
- .w3eden .list-group-item.active,
4133
- .w3eden .list-group-item.active:focus,
4134
- .w3eden .list-group-item.active:hover {
4135
- z-index: 2;
4136
- color: #fff;
4137
- background-color: #337ab7;
4138
- border-color: #337ab7;
4139
- }
4140
- .w3eden .list-group-item.active .list-group-item-heading,
4141
- .w3eden .list-group-item.active .list-group-item-heading > .small,
4142
- .w3eden .list-group-item.active .list-group-item-heading > small,
4143
- .w3eden .list-group-item.active:focus .list-group-item-heading,
4144
- .w3eden .list-group-item.active:focus .list-group-item-heading > .small,
4145
- .w3eden .list-group-item.active:focus .list-group-item-heading > small,
4146
- .w3eden .list-group-item.active:hover .list-group-item-heading,
4147
- .w3eden .list-group-item.active:hover .list-group-item-heading > .small,
4148
- .w3eden .list-group-item.active:hover .list-group-item-heading > small {
4149
- color: inherit;
4150
- }
4151
- .w3eden .list-group-item.active .list-group-item-text,
4152
- .w3eden .list-group-item.active:focus .list-group-item-text,
4153
- .w3eden .list-group-item.active:hover .list-group-item-text {
4154
- color: #c7ddef;
4155
- }
4156
- .w3eden .list-group-item-success {
4157
- color: #3c763d;
4158
- background-color: #dff0d8;
4159
- }
4160
- .w3eden a.list-group-item-success {
4161
- color: #3c763d;
4162
- }
4163
- .w3eden a.list-group-item-success .list-group-item-heading {
4164
- color: inherit;
4165
- }
4166
- .w3eden a.list-group-item-success:focus,
4167
- .w3eden a.list-group-item-success:hover {
4168
- color: #3c763d;
4169
- background-color: #d0e9c6;
4170
- }
4171
- .w3eden a.list-group-item-success.active,
4172
- .w3eden a.list-group-item-success.active:focus,
4173
- .w3eden a.list-group-item-success.active:hover {
4174
- color: #fff;
4175
- background-color: #3c763d;
4176
- border-color: #3c763d;
4177
  }
4178
- .w3eden .list-group-item-info {
4179
- color: #31708f;
4180
- background-color: #d9edf7;
4181
  }
4182
- .w3eden a.list-group-item-info {
4183
- color: #31708f;
 
 
4184
  }
4185
- .w3eden a.list-group-item-info .list-group-item-heading {
4186
- color: inherit;
4187
  }
4188
- .w3eden a.list-group-item-info:focus,
4189
- .w3eden a.list-group-item-info:hover {
4190
- color: #31708f;
4191
- background-color: #c4e3f3;
4192
  }
4193
- .w3eden a.list-group-item-info.active,
4194
- .w3eden a.list-group-item-info.active:focus,
4195
- .w3eden a.list-group-item-info.active:hover {
4196
- color: #fff;
4197
- background-color: #31708f;
4198
- border-color: #31708f;
 
 
 
 
 
 
 
 
 
 
4199
  }
4200
- .w3eden .list-group-item-warning {
4201
- color: #8a6d3b;
4202
- background-color: #fcf8e3;
4203
  }
4204
- .w3eden a.list-group-item-warning {
4205
- color: #8a6d3b;
 
 
 
 
 
 
 
4206
  }
4207
- .w3eden a.list-group-item-warning .list-group-item-heading {
4208
- color: inherit;
4209
  }
4210
- .w3eden a.list-group-item-warning:focus,
4211
- .w3eden a.list-group-item-warning:hover {
4212
- color: #8a6d3b;
4213
- background-color: #faf2cc;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4214
  }
4215
- .w3eden a.list-group-item-warning.active,
4216
- .w3eden a.list-group-item-warning.active:focus,
4217
- .w3eden a.list-group-item-warning.active:hover {
4218
- color: #fff;
4219
- background-color: #8a6d3b;
4220
- border-color: #8a6d3b;
 
 
 
 
 
 
4221
  }
4222
- .w3eden .list-group-item-danger {
4223
- color: #a94442;
4224
- background-color: #f2dede;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4225
  }
4226
- .w3eden a.list-group-item-danger {
4227
- color: #a94442;
 
 
 
 
 
 
 
 
 
 
 
 
4228
  }
4229
- .w3eden a.list-group-item-danger .list-group-item-heading {
4230
- color: inherit;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4231
  }
4232
- .w3eden a.list-group-item-danger:focus,
4233
- .w3eden a.list-group-item-danger:hover {
4234
- color: #a94442;
4235
- background-color: #ebcccc;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4236
  }
4237
- .w3eden a.list-group-item-danger.active,
4238
- .w3eden a.list-group-item-danger.active:focus,
4239
- .w3eden a.list-group-item-danger.active:hover {
4240
- color: #fff;
4241
- background-color: #a94442;
4242
- border-color: #a94442;
4243
  }
4244
- .w3eden .list-group-item-heading {
4245
- margin-top: 0;
4246
- margin-bottom: 5px;
4247
  }
4248
- .w3eden .list-group-item-text {
4249
- margin-bottom: 0;
4250
- line-height: 1.3;
 
4251
  }
4252
- .w3eden .panel {
4253
- margin-bottom: 20px;
4254
- background-color: #fff;
4255
- border: 1px solid transparent;
4256
- border-radius: 4px;
4257
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4258
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4259
  }
4260
- .w3eden .panel-body {
4261
- padding: 15px;
 
 
4262
  }
4263
- .w3eden .panel-heading {
4264
- padding: 10px 15px;
4265
- border-bottom: 1px solid transparent;
4266
- border-top-left-radius: 3px;
4267
- border-top-right-radius: 3px;
4268
  }
4269
- .w3eden .panel-heading > .dropdown .dropdown-toggle {
4270
- color: inherit;
4271
  }
4272
- .w3eden .panel-title {
4273
- margin-top: 0;
4274
- margin-bottom: 0;
4275
- font-size: 16px;
4276
- color: inherit;
4277
- }
4278
- .w3eden .panel-title > .small,
4279
- .w3eden .panel-title > .small > a,
4280
- .w3eden .panel-title > a,
4281
- .w3eden .panel-title > small,
4282
- .w3eden .panel-title > small > a {
4283
- color: inherit;
4284
- }
4285
- .w3eden .panel-footer {
4286
- padding: 10px 15px;
4287
- background-color: #f5f5f5;
4288
- border-top: 1px solid #ddd;
4289
- border-bottom-right-radius: 3px;
4290
- border-bottom-left-radius: 3px;
4291
- }
4292
- .w3eden .panel > .list-group,
4293
- .w3eden .panel > .panel-collapse > .list-group {
4294
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4295
  }
4296
- .w3eden .panel > .list-group .list-group-item,
4297
- .w3eden .panel > .panel-collapse > .list-group .list-group-item {
4298
- border-width: 1px 0;
4299
- border-radius: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4300
  }
4301
- .w3eden .panel > .list-group:first-child .list-group-item:first-child,
4302
- .w3eden .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
4303
- border-top: 0;
4304
- border-top-left-radius: 3px;
4305
- border-top-right-radius: 3px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4306
  }
4307
- .w3eden .panel > .list-group:last-child .list-group-item:last-child,
4308
- .w3eden .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
4309
- border-bottom: 0;
4310
- border-bottom-right-radius: 3px;
4311
- border-bottom-left-radius: 3px;
4312
  }
4313
- .w3eden .panel-heading + .list-group .list-group-item:first-child {
4314
- border-top-width: 0;
 
4315
  }
4316
- .w3eden .list-group + .panel-footer {
4317
- border-top-width: 0;
 
4318
  }
4319
- .w3eden .panel > .panel-collapse > .table,
4320
- .w3eden .panel > .table,
4321
- .w3eden .panel > .table-responsive > .table {
4322
- margin-bottom: 0;
4323
  }
4324
- .w3eden .panel > .panel-collapse > .table caption,
4325
- .w3eden .panel > .table caption,
4326
- .w3eden .panel > .table-responsive > .table caption {
4327
- padding-right: 15px;
4328
- padding-left: 15px;
4329
- }
4330
- .w3eden .panel > .table-responsive:first-child > .table:first-child,
4331
- .w3eden .panel > .table:first-child {
4332
- border-top-left-radius: 3px;
4333
- border-top-right-radius: 3px;
4334
- }
4335
- .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,
4336
- .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
4337
- .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child,
4338
- .w3eden .panel > .table:first-child > thead:first-child > tr:first-child {
4339
- border-top-left-radius: 3px;
4340
- border-top-right-radius: 3px;
4341
- }
4342
- .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4343
- .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4344
- .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4345
- .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4346
- .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4347
- .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4348
- .w3eden .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4349
- .w3eden .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {
4350
- border-top-left-radius: 3px;
4351
- }
4352
- .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4353
- .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4354
- .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4355
- .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4356
- .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4357
- .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4358
- .w3eden .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4359
- .w3eden .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
4360
- border-top-right-radius: 3px;
4361
- }
4362
- .w3eden .panel > .table-responsive:last-child > .table:last-child,
4363
- .w3eden .panel > .table:last-child {
4364
- border-bottom-right-radius: 3px;
4365
- border-bottom-left-radius: 3px;
4366
- }
4367
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
4368
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,
4369
- .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child,
4370
- .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child {
4371
- border-bottom-right-radius: 3px;
4372
- border-bottom-left-radius: 3px;
4373
- }
4374
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4375
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4376
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4377
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4378
- .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4379
- .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4380
- .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4381
- .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4382
- border-bottom-left-radius: 3px;
4383
- }
4384
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4385
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4386
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4387
- .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4388
- .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4389
- .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4390
- .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4391
- .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4392
- border-bottom-right-radius: 3px;
4393
- }
4394
- .w3eden .panel > .panel-body + .table,
4395
- .w3eden .panel > .panel-body + .table-responsive,
4396
- .w3eden .panel > .table + .panel-body,
4397
- .w3eden .panel > .table-responsive + .panel-body {
4398
- border-top: 1px solid #dddddd;
4399
- }
4400
- .w3eden .panel > .table > tbody:first-child > tr:first-child td,
4401
- .w3eden .panel > .table > tbody:first-child > tr:first-child th {
4402
- border-top: 0;
4403
- }
4404
- .w3eden .panel > .table-bordered,
4405
- .w3eden .panel > .table-responsive > .table-bordered {
4406
- border: 0;
4407
  }
4408
- .w3eden .panel > .table-bordered > tbody > tr > td:first-child,
4409
- .w3eden .panel > .table-bordered > tbody > tr > th:first-child,
4410
- .w3eden .panel > .table-bordered > tfoot > tr > td:first-child,
4411
- .w3eden .panel > .table-bordered > tfoot > tr > th:first-child,
4412
- .w3eden .panel > .table-bordered > thead > tr > td:first-child,
4413
- .w3eden .panel > .table-bordered > thead > tr > th:first-child,
4414
- .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4415
- .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4416
- .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,
4417
- .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4418
- .w3eden .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4419
- .w3eden .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
4420
- border-left: 0;
4421
- }
4422
- .w3eden .panel > .table-bordered > tbody > tr > td:last-child,
4423
- .w3eden .panel > .table-bordered > tbody > tr > th:last-child,
4424
- .w3eden .panel > .table-bordered > tfoot > tr > td:last-child,
4425
- .w3eden .panel > .table-bordered > tfoot > tr > th:last-child,
4426
- .w3eden .panel > .table-bordered > thead > tr > td:last-child,
4427
- .w3eden .panel > .table-bordered > thead > tr > th:last-child,
4428
- .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4429
- .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4430
- .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,
4431
- .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4432
- .w3eden .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4433
- .w3eden .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
4434
- border-right: 0;
4435
- }
4436
- .w3eden .panel > .table-bordered > tbody > tr:first-child > td,
4437
- .w3eden .panel > .table-bordered > tbody > tr:first-child > th,
4438
- .w3eden .panel > .table-bordered > thead > tr:first-child > td,
4439
- .w3eden .panel > .table-bordered > thead > tr:first-child > th,
4440
- .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4441
- .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
4442
- .w3eden .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4443
- .w3eden .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
4444
- border-bottom: 0;
4445
- }
4446
- .w3eden .panel > .table-bordered > tbody > tr:last-child > td,
4447
- .w3eden .panel > .table-bordered > tbody > tr:last-child > th,
4448
- .w3eden .panel > .table-bordered > tfoot > tr:last-child > td,
4449
- .w3eden .panel > .table-bordered > tfoot > tr:last-child > th,
4450
- .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4451
- .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4452
- .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4453
- .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4454
- border-bottom: 0;
4455
- }
4456
- .w3eden .panel > .table-responsive {
4457
- margin-bottom: 0;
4458
- border: 0;
4459
  }
4460
- .w3eden .panel-group {
4461
- margin-bottom: 20px;
 
4462
  }
4463
- .w3eden .panel-group .panel {
4464
- margin-bottom: 0;
4465
- border-radius: 4px;
4466
  }
4467
- .w3eden .panel-group .panel + .panel {
4468
- margin-top: 5px;
 
4469
  }
4470
- .w3eden .panel-group .panel-heading {
4471
- border-bottom: 0;
 
4472
  }
4473
- .w3eden .panel-group .panel-heading + .panel-collapse > .list-group,
4474
- .w3eden .panel-group .panel-heading + .panel-collapse > .panel-body {
4475
- border-top: 1px solid #dddddd;
4476
  }
4477
- .w3eden .panel-group .panel-footer {
4478
- border-top: 0;
 
4479
  }
4480
- .w3eden .panel-group .panel-footer + .panel-collapse .panel-body {
4481
- border-bottom: 1px solid #dddddd;
 
4482
  }
4483
- .w3eden .panel-default {
4484
- border-color: #dddddd;
 
4485
  }
4486
- .w3eden .panel-default > .panel-heading {
4487
- color: #333;
4488
- background-color: #f5f5f5;
4489
- border-color: #dddddd;
4490
  }
4491
- .w3eden .panel-default > .panel-heading + .panel-collapse > .panel-body {
4492
- border-top-color: #dddddd;
 
4493
  }
4494
- .w3eden .panel-default > .panel-heading .badge {
4495
- color: #f5f5f5;
4496
- background-color: #333333;
4497
  }
4498
- .w3eden .panel-default > .panel-footer + .panel-collapse > .panel-body {
4499
- border-bottom-color: #dddddd;
 
 
 
 
4500
  }
4501
- .w3eden .panel-primary {
4502
- border-color: #337ab7;
4503
  }
4504
- .w3eden .panel-primary > .panel-heading {
4505
- color: #fff;
4506
- background-color: #337ab7;
4507
- border-color: #337ab7;
4508
  }
4509
- .w3eden .panel-primary > .panel-heading + .panel-collapse > .panel-body {
4510
- border-top-color: #337ab7;
 
 
4511
  }
4512
- .w3eden .panel-primary > .panel-heading .badge {
4513
- color: #337ab7;
4514
- background-color: #ffffff;
 
4515
  }
4516
- .w3eden .panel-primary > .panel-footer + .panel-collapse > .panel-body {
4517
- border-bottom-color: #337ab7;
 
 
4518
  }
4519
- .w3eden .panel-success {
4520
- border-color: #d6e9c6;
 
 
4521
  }
4522
- .w3eden .panel-success > .panel-heading {
4523
- color: #3c763d;
4524
- background-color: #dff0d8;
4525
- border-color: #d6e9c6;
 
4526
  }
4527
- .w3eden .panel-success > .panel-heading + .panel-collapse > .panel-body {
4528
- border-top-color: #d6e9c6;
 
4529
  }
4530
- .w3eden .panel-success > .panel-heading .badge {
4531
- color: #dff0d8;
4532
- background-color: #3c763d;
 
 
 
 
4533
  }
4534
- .w3eden .panel-success > .panel-footer + .panel-collapse > .panel-body {
4535
- border-bottom-color: #d6e9c6;
 
 
 
 
 
4536
  }
4537
- .w3eden .panel-info {
4538
- border-color: #bce8f1;
 
4539
  }
4540
- .w3eden .panel-info > .panel-heading {
4541
- color: #31708f;
4542
- background-color: #d9edf7;
4543
- border-color: #bce8f1;
4544
  }
4545
- .w3eden .panel-info > .panel-heading + .panel-collapse > .panel-body {
4546
- border-top-color: #bce8f1;
 
 
 
4547
  }
4548
- .w3eden .panel-info > .panel-heading .badge {
4549
- color: #d9edf7;
4550
- background-color: #31708f;
 
4551
  }
4552
- .w3eden .panel-info > .panel-footer + .panel-collapse > .panel-body {
4553
- border-bottom-color: #bce8f1;
4554
  }
4555
- .w3eden .panel-warning {
4556
- border-color: #faebcc;
4557
  }
4558
- .w3eden .panel-warning > .panel-heading {
4559
- color: #8a6d3b;
4560
- background-color: #fcf8e3;
4561
- border-color: #faebcc;
4562
  }
4563
- .w3eden .panel-warning > .panel-heading + .panel-collapse > .panel-body {
4564
- border-top-color: #faebcc;
4565
  }
4566
- .w3eden .panel-warning > .panel-heading .badge {
4567
- color: #fcf8e3;
4568
- background-color: #8a6d3b;
4569
  }
4570
- .w3eden .panel-warning > .panel-footer + .panel-collapse > .panel-body {
4571
- border-bottom-color: #faebcc;
 
 
 
 
 
 
 
 
4572
  }
4573
- .w3eden .panel-danger {
4574
- border-color: #ebccd1;
 
 
 
4575
  }
4576
- .w3eden .panel-danger > .panel-heading {
4577
- color: #a94442;
4578
- background-color: #f2dede;
4579
- border-color: #ebccd1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4580
  }
4581
- .w3eden .panel-danger > .panel-heading + .panel-collapse > .panel-body {
4582
- border-top-color: #ebccd1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4583
  }
4584
- .w3eden .panel-danger > .panel-heading .badge {
4585
- color: #f2dede;
4586
- background-color: #a94442;
 
 
 
 
 
 
 
 
4587
  }
4588
- .w3eden .panel-danger > .panel-footer + .panel-collapse > .panel-body {
4589
- border-bottom-color: #ebccd1;
 
4590
  }
4591
- .w3eden .embed-responsive {
4592
- position: relative;
4593
- display: block;
4594
- height: 0;
4595
- padding: 0;
4596
- overflow: hidden;
4597
  }
4598
- .w3eden .embed-responsive .embed-responsive-item,
4599
- .w3eden .embed-responsive embed,
4600
- .w3eden .embed-responsive iframe,
4601
- .w3eden .embed-responsive object,
4602
- .w3eden .embed-responsive video {
4603
- position: absolute;
4604
- top: 0;
4605
- bottom: 0;
4606
- left: 0;
4607
- width: 100%;
4608
- height: 100%;
4609
- border: 0;
4610
  }
4611
- .w3eden .embed-responsive-16by9 {
4612
- padding-bottom: 56.25%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4613
  }
4614
- .w3eden .embed-responsive-4by3 {
4615
- padding-bottom: 75%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4616
  }
4617
- .w3eden .well {
4618
- min-height: 20px;
4619
- padding: 19px;
4620
- margin-bottom: 20px;
4621
- background-color: #f5f5f5;
4622
- border: 1px solid #e3e3e3;
4623
- border-radius: 4px;
4624
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
4625
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4626
  }
4627
- .w3eden .well blockquote {
4628
- border-color: #ddd;
4629
- border-color: rgba(0, 0, 0, 0.15);
4630
  }
4631
- .w3eden .well-lg {
4632
- padding: 24px;
4633
- border-radius: 6px;
 
4634
  }
4635
- .w3eden .well-sm {
4636
- padding: 9px;
4637
- border-radius: 3px;
4638
  }
4639
- .w3eden .close {
4640
- float: right;
4641
- font-size: 21px;
4642
- font-weight: 700;
4643
- line-height: 1;
4644
- color: #000;
4645
- text-shadow: 0 1px 0 #fff;
4646
- filter: alpha(opacity=20);
4647
- opacity: 0.2;
4648
  }
4649
- .w3eden .close:focus,
4650
- .w3eden .close:hover {
4651
- color: #000;
4652
- text-decoration: none;
4653
- cursor: pointer;
4654
- filter: alpha(opacity=50);
4655
- opacity: 0.5;
4656
  }
4657
- .w3eden button.close {
4658
- -webkit-appearance: none;
4659
- padding: 0;
4660
- cursor: pointer;
4661
- background: 0 0;
4662
- border: 0;
4663
  }
4664
- .w3eden .modal-open {
4665
- overflow: hidden;
4666
  }
4667
- .w3eden .modal {
4668
- position: fixed;
4669
- top: 0;
4670
- right: 0;
4671
- bottom: 0;
4672
- left: 0;
4673
- z-index: 1050;
4674
- display: none;
4675
- overflow: hidden;
4676
- -webkit-overflow-scrolling: touch;
4677
- outline: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4678
  }
4679
- .w3eden .modal.fade .modal-dialog {
4680
- -webkit-transition: -webkit-transform 0.3s ease-out;
4681
- -o-transition: -o-transform 0.3s ease-out;
4682
- transition: transform 0.3s ease-out;
4683
- -webkit-transform: translate(0, -25%);
4684
- -ms-transform: translate(0, -25%);
4685
- -o-transform: translate(0, -25%);
4686
- transform: translate(0, -25%);
4687
- }
4688
- .w3eden .modal.in .modal-dialog {
4689
- -webkit-transform: translate(0, 0);
4690
- -ms-transform: translate(0, 0);
4691
- -o-transform: translate(0, 0);
4692
- transform: translate(0, 0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4693
  }
4694
- .w3eden .modal-open .modal {
4695
- overflow-x: hidden;
4696
- overflow-y: auto;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4697
  }
4698
- .w3eden .modal-dialog {
4699
- position: relative;
4700
- width: auto;
4701
- margin: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4702
  }
4703
- .w3eden .modal-content {
4704
- position: relative;
4705
- background-color: #fff;
4706
- -webkit-background-clip: padding-box;
4707
- background-clip: padding-box;
4708
- border: 1px solid #999;
4709
- border: 1px solid rgba(0, 0, 0, 0.2);
4710
- border-radius: 6px;
4711
- outline: 0;
4712
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
4713
- box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4714
  }
4715
- .modal-backdrop {
4716
- position: fixed;
4717
- top: 0;
4718
- right: 0;
4719
- bottom: 0;
4720
- left: 0;
4721
- z-index: 1040;
4722
- background-color: #000000;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4723
  }
4724
- .modal-backdrop.fade {
4725
- filter: alpha(opacity=0);
4726
- opacity: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4727
  }
4728
- .modal-backdrop.in {
4729
- filter: alpha(opacity=50);
4730
- opacity: 0.5;
4731
  }
4732
- .w3eden .modal-header {
4733
- min-height: 16.43px;
4734
- padding: 15px;
4735
- border-bottom: 1px solid #e5e5e5;
4736
  }
4737
- .w3eden .modal-header .close {
4738
- margin-top: -2px;
 
4739
  }
4740
- .w3eden .modal-title {
4741
- margin: 0;
4742
- line-height: 1.42857143;
4743
  }
4744
- .w3eden .modal-body {
4745
- position: relative;
4746
- padding: 15px;
4747
  }
4748
- .w3eden .modal-footer {
4749
- padding: 15px;
4750
- text-align: right;
4751
- border-top: 1px solid #e5e5e5;
4752
-
4753
  }
4754
- .w3eden .modal-footer .btn + .btn {
4755
- margin-bottom: 0;
4756
- margin-left: 5px;
4757
  }
4758
- .w3eden .modal-footer .btn-group .btn + .btn {
4759
- margin-left: -1px;
 
4760
  }
4761
- .w3eden .modal-footer .btn-block + .btn-block {
4762
- margin-left: 0;
 
4763
  }
4764
- .w3eden .modal-scrollbar-measure {
4765
- position: absolute;
4766
- top: -9999px;
4767
- width: 50px;
4768
- height: 50px;
4769
- overflow: scroll;
4770
  }
4771
- @media (min-width: 768px) {
4772
- .w3eden .modal-dialog {
4773
- width: 600px;
4774
- margin: 100px auto;
4775
- }
4776
- .w3eden .modal-content {
4777
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
4778
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
4779
- }
4780
- .w3eden .modal-sm {
4781
- width: 300px;
4782
- }
4783
  }
4784
- @media (min-width: 992px) {
4785
- .w3eden .modal-lg {
4786
- width: 900px;
4787
- }
4788
  }
4789
- .w3eden .tooltip {
4790
- position: absolute;
4791
- z-index: 1070;
4792
- display: block;
4793
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4794
- font-size: 12px;
4795
- font-weight: 400;
4796
- line-height: 1.4;
4797
- filter: alpha(opacity=0);
4798
- opacity: 0;
4799
  }
4800
- .w3eden .tooltip.in {
4801
- filter: alpha(opacity=90);
4802
- opacity: 0.9;
4803
  }
4804
- .w3eden .tooltip.top {
4805
- padding: 5px 0;
4806
- margin-top: -3px;
4807
  }
4808
- .w3eden .tooltip.right {
4809
- padding: 0 5px;
4810
- margin-left: 3px;
4811
  }
4812
- .w3eden .tooltip.bottom {
4813
- padding: 5px 0;
4814
- margin-top: 3px;
4815
  }
4816
- .w3eden .tooltip.left {
4817
- padding: 0 5px;
4818
- margin-left: -3px;
4819
  }
4820
- .w3eden .tooltip-inner {
4821
- max-width: 200px;
4822
- padding: 6px 12px;
4823
- color: #fff;
4824
- text-align: center;
4825
- text-decoration: none;
4826
- background-color: #000;
4827
- border-radius: 2px;
4828
  }
4829
- .w3eden .tooltip-arrow {
4830
- position: absolute;
4831
- width: 0;
4832
- height: 0;
4833
- border-color: transparent;
4834
- border-style: solid;
4835
  }
4836
- .w3eden .tooltip.top .tooltip-arrow {
4837
- bottom: 0;
4838
- left: 50%;
4839
- margin-left: -5px;
4840
- border-width: 5px 5px 0;
4841
- border-top-color: #000000;
4842
- }
4843
- .w3eden .tooltip.top-left .tooltip-arrow {
4844
- right: 5px;
4845
- bottom: 0;
4846
- margin-bottom: -5px;
4847
- border-width: 5px 5px 0;
4848
- border-top-color: #000000;
4849
- }
4850
- .w3eden .tooltip.top-right .tooltip-arrow {
4851
- bottom: 0;
4852
- left: 5px;
4853
- margin-bottom: -5px;
4854
- border-width: 5px 5px 0;
4855
- border-top-color: #000000;
4856
- }
4857
- .w3eden .tooltip.right .tooltip-arrow {
4858
- top: 50%;
4859
- left: 0;
4860
- margin-top: -5px;
4861
- border-width: 5px 5px 5px 0;
4862
- border-right-color: #000000;
4863
- }
4864
- .w3eden .tooltip.left .tooltip-arrow {
4865
- top: 50%;
4866
- right: 0;
4867
- margin-top: -5px;
4868
- border-width: 5px 0 5px 5px;
4869
- border-left-color: #000000;
4870
- }
4871
- .w3eden .tooltip.bottom .tooltip-arrow {
4872
- top: 0;
4873
- left: 50%;
4874
- margin-left: -5px;
4875
- border-width: 0 5px 5px;
4876
- border-bottom-color: #000000;
4877
  }
4878
- .w3eden .tooltip.bottom-left .tooltip-arrow {
4879
- top: 0;
4880
- right: 5px;
4881
- margin-top: -5px;
4882
- border-width: 0 5px 5px;
4883
- border-bottom-color: #000000;
4884
  }
4885
- .w3eden .tooltip.bottom-right .tooltip-arrow {
4886
- top: 0;
4887
- left: 5px;
4888
- margin-top: -5px;
4889
- border-width: 0 5px 5px;
4890
- border-bottom-color: #000000;
4891
  }
4892
- .w3eden .popover {
4893
- position: absolute;
4894
- top: 0;
4895
- left: 0;
4896
- z-index: 1060;
4897
- display: none;
4898
- max-width: 276px;
4899
- padding: 1px;
4900
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4901
- font-size: 14px;
4902
- font-weight: 400;
4903
- line-height: 1.42857143;
4904
- text-align: left;
4905
- white-space: normal;
4906
- background-color: #fff;
4907
- -webkit-background-clip: padding-box;
4908
- background-clip: padding-box;
4909
- border: 1px solid #ccc;
4910
- border: 1px solid rgba(0, 0, 0, 0.2);
4911
- border-radius: 6px;
4912
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4913
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4914
  }
4915
- .w3eden .popover.top {
4916
- margin-top: -10px;
 
4917
  }
4918
- .w3eden .popover.right {
4919
- margin-left: 10px;
4920
  }
4921
- .w3eden .popover.bottom {
4922
- margin-top: 10px;
 
4923
  }
4924
- .w3eden .popover.left {
4925
- margin-left: -10px;
 
4926
  }
4927
- .w3eden .popover-title {
4928
- padding: 8px 14px;
4929
- margin: 0;
4930
- font-size: 14px;
4931
- background-color: #f7f7f7;
4932
- border-bottom: 1px solid #ebebeb;
4933
- border-radius: 5px 5px 0 0;
4934
  }
4935
- .w3eden .popover-content {
4936
- padding: 9px 14px;
 
4937
  }
4938
- .w3eden .popover > .arrow,
4939
- .w3eden .popover > .arrow:after {
4940
- position: absolute;
4941
- display: block;
4942
- width: 0;
4943
- height: 0;
4944
- border-color: transparent;
4945
- border-style: solid;
4946
  }
4947
- .w3eden .popover > .arrow {
4948
- border-width: 11px;
 
4949
  }
4950
- .w3eden .popover > .arrow:after {
4951
- content: "";
4952
- border-width: 10px;
4953
- }
4954
- .w3eden .popover.top > .arrow {
4955
- bottom: -11px;
4956
- left: 50%;
4957
- margin-left: -11px;
4958
- border-top-color: #999;
4959
- border-top-color: rgba(0, 0, 0, 0.25);
4960
- border-bottom-width: 0;
4961
- }
4962
- .w3eden .popover.top > .arrow:after {
4963
- bottom: 1px;
4964
- margin-left: -10px;
4965
- content: " ";
4966
- border-top-color: #fff;
4967
- border-bottom-width: 0;
4968
- }
4969
- .w3eden .popover.right > .arrow {
4970
- top: 50%;
4971
- left: -11px;
4972
- margin-top: -11px;
4973
- border-right-color: #999;
4974
- border-right-color: rgba(0, 0, 0, 0.25);
4975
- border-left-width: 0;
4976
- }
4977
- .w3eden .popover.right > .arrow:after {
4978
- bottom: -10px;
4979
- left: 1px;
4980
- content: " ";
4981
- border-right-color: #fff;
4982
- border-left-width: 0;
4983
- }
4984
- .w3eden .popover.bottom > .arrow {
4985
- top: -11px;
4986
- left: 50%;
4987
- margin-left: -11px;
4988
- border-top-width: 0;
4989
- border-bottom-color: #999;
4990
- border-bottom-color: rgba(0, 0, 0, 0.25);
4991
- }
4992
- .w3eden .popover.bottom > .arrow:after {
4993
- top: 1px;
4994
- margin-left: -10px;
4995
- content: " ";
4996
- border-top-width: 0;
4997
- border-bottom-color: #ffffff;
4998
- }
4999
- .w3eden .popover.left > .arrow {
5000
- top: 50%;
5001
- right: -11px;
5002
- margin-top: -11px;
5003
- border-right-width: 0;
5004
- border-left-color: #999;
5005
- border-left-color: rgba(0, 0, 0, 0.25);
5006
- }
5007
- .w3eden .popover.left > .arrow:after {
5008
- right: 1px;
5009
- bottom: -10px;
5010
- content: " ";
5011
- border-right-width: 0;
5012
- border-left-color: #ffffff;
5013
- }
5014
- .w3eden .carousel {
5015
- position: relative;
5016
  }
5017
- .w3eden .carousel-inner {
5018
- position: relative;
5019
- width: 100%;
5020
- overflow: hidden;
5021
  }
5022
- .w3eden .carousel-inner > .item {
5023
- position: relative;
5024
- display: none;
5025
- -webkit-transition: 0.6s ease-in-out left;
5026
- -o-transition: 0.6s ease-in-out left;
5027
- transition: 0.6s ease-in-out left;
5028
  }
5029
- .w3eden .carousel-inner > .item > a > img,
5030
- .w3eden .carousel-inner > .item > img {
5031
- line-height: 1;
5032
  }
5033
- @media all and (transform-3d), (-webkit-transform-3d) {
5034
- .w3eden .carousel-inner > .item {
5035
- -webkit-transition: -webkit-transform 0.6s ease-in-out;
5036
- -o-transition: -o-transform 0.6s ease-in-out;
5037
- transition: transform 0.6s ease-in-out;
5038
- -webkit-backface-visibility: hidden;
5039
- backface-visibility: hidden;
5040
- -webkit-perspective: 1000;
5041
- perspective: 1000;
5042
- }
5043
- .w3eden .carousel-inner > .item.active.right,
5044
- .w3eden .carousel-inner > .item.next {
5045
- left: 0;
5046
- -webkit-transform: translate3d(100%, 0, 0);
5047
- transform: translate3d(100%, 0, 0);
5048
- }
5049
- .w3eden .carousel-inner > .item.active.left,
5050
- .w3eden .carousel-inner > .item.prev {
5051
- left: 0;
5052
- -webkit-transform: translate3d(-100%, 0, 0);
5053
- transform: translate3d(-100%, 0, 0);
5054
- }
5055
- .w3eden .carousel-inner > .item.active,
5056
- .w3eden .carousel-inner > .item.next.left,
5057
- .w3eden .carousel-inner > .item.prev.right {
5058
- left: 0;
5059
- -webkit-transform: translate3d(0, 0, 0);
5060
- transform: translate3d(0, 0, 0);
5061
- }
5062
  }
5063
- .w3eden .carousel-inner > .active,
5064
- .w3eden .carousel-inner > .next,
5065
- .w3eden .carousel-inner > .prev {
5066
- display: block;
5067
  }
5068
- .w3eden .carousel-inner > .active {
5069
- left: 0;
 
5070
  }
5071
- .w3eden .carousel-inner > .next,
5072
- .w3eden .carousel-inner > .prev {
5073
- position: absolute;
5074
- top: 0;
5075
- width: 100%;
5076
  }
5077
- .w3eden .carousel-inner > .next {
5078
- left: 100%;
5079
  }
5080
- .w3eden .carousel-inner > .prev {
5081
- left: -100%;
 
5082
  }
5083
- .w3eden .carousel-inner > .next.left,
5084
- .w3eden .carousel-inner > .prev.right {
5085
- left: 0;
5086
  }
5087
- .w3eden .carousel-inner > .active.left {
5088
- left: -100%;
 
5089
  }
5090
- .w3eden .carousel-inner > .active.right {
5091
- left: 100%;
 
5092
  }
5093
- .w3eden .carousel-control {
5094
- position: absolute;
5095
- top: 0;
5096
- bottom: 0;
5097
- left: 0;
5098
- width: 15%;
5099
- font-size: 20px;
5100
- color: #fff;
5101
- text-align: center;
5102
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5103
- filter: alpha(opacity=50);
5104
- opacity: 0.5;
5105
- }
5106
- .w3eden .carousel-control.left {
5107
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
5108
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
5109
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
5110
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
5111
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5112
- background-repeat: repeat-x;
5113
- }
5114
- .w3eden .carousel-control.right {
5115
- right: 0;
5116
- left: auto;
5117
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
5118
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
5119
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
5120
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
5121
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5122
- background-repeat: repeat-x;
5123
- }
5124
- .w3eden .carousel-control:focus,
5125
- .w3eden .carousel-control:hover {
5126
- color: #fff;
5127
- text-decoration: none;
5128
- filter: alpha(opacity=90);
5129
- outline: 0;
5130
- opacity: 0.9;
5131
- }
5132
- .w3eden .carousel-control .glyphicon-chevron-left,
5133
- .w3eden .carousel-control .glyphicon-chevron-right,
5134
- .w3eden .carousel-control .icon-next,
5135
- .w3eden .carousel-control .icon-prev {
5136
- position: absolute;
5137
- top: 50%;
5138
- z-index: 5;
5139
- display: inline-block;
5140
  }
5141
- .w3eden .carousel-control .glyphicon-chevron-left,
5142
- .w3eden .carousel-control .icon-prev {
5143
- left: 50%;
5144
- margin-left: -10px;
5145
- }
5146
- .w3eden .carousel-control .glyphicon-chevron-right,
5147
- .w3eden .carousel-control .icon-next {
5148
- right: 50%;
5149
- margin-right: -10px;
5150
- }
5151
- .w3eden .carousel-control .icon-next,
5152
- .w3eden .carousel-control .icon-prev {
5153
- width: 20px;
5154
- height: 20px;
5155
- margin-top: -10px;
5156
- font-family: serif;
5157
- line-height: 1;
5158
  }
5159
- .w3eden .carousel-control .icon-prev:before {
5160
- content: '\2039';
 
5161
  }
5162
- .w3eden .carousel-control .icon-next:before {
5163
- content: '\203a';
 
5164
  }
5165
- .w3eden .carousel-indicators {
5166
- position: absolute;
5167
- bottom: 10px;
5168
- left: 50%;
5169
- z-index: 15;
5170
- width: 60%;
5171
- padding-left: 0;
5172
- margin-left: -30%;
5173
- text-align: center;
5174
- list-style: none;
5175
  }
5176
- .w3eden .carousel-indicators li {
5177
- display: inline-block;
5178
- width: 10px;
5179
- height: 10px;
5180
- margin: 1px;
5181
- text-indent: -999px;
5182
- cursor: pointer;
5183
- background-color: #000 \9;
5184
- background-color: rgba(0, 0, 0, 0);
5185
- border: 1px solid #fff;
5186
- border-radius: 10px;
5187
- }
5188
- .w3eden .carousel-indicators .active {
5189
- width: 12px;
5190
- height: 12px;
5191
- margin: 0;
5192
- background-color: #ffffff;
5193
- }
5194
- .w3eden .carousel-caption {
5195
- position: absolute;
5196
- right: 15%;
5197
- bottom: 20px;
5198
- left: 15%;
5199
- z-index: 10;
5200
- padding-top: 20px;
5201
- padding-bottom: 20px;
5202
- color: #fff;
5203
- text-align: center;
5204
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5205
  }
5206
- .w3eden .carousel-caption .btn {
5207
- text-shadow: none;
 
5208
  }
5209
- @media screen and (min-width: 768px) {
5210
- .w3eden .carousel-control .glyphicon-chevron-left,
5211
- .w3eden .carousel-control .glyphicon-chevron-right,
5212
- .w3eden .carousel-control .icon-next,
5213
- .w3eden .carousel-control .icon-prev {
5214
- width: 30px;
5215
- height: 30px;
5216
- margin-top: -15px;
5217
- font-size: 30px;
5218
- }
5219
- .w3eden .carousel-control .glyphicon-chevron-left,
5220
- .w3eden .carousel-control .icon-prev {
5221
- margin-left: -15px;
5222
- }
5223
- .w3eden .carousel-control .glyphicon-chevron-right,
5224
- .w3eden .carousel-control .icon-next {
5225
- margin-right: -15px;
5226
- }
5227
- .w3eden .carousel-caption {
5228
- right: 20%;
5229
- left: 20%;
5230
- padding-bottom: 30px;
5231
- }
5232
- .w3eden .carousel-indicators {
5233
- bottom: 20px;
5234
- }
5235
  }
5236
- .w3eden .btn-group-vertical > .btn-group:after,
5237
- .w3eden .btn-group-vertical > .btn-group:before,
5238
- .w3eden .btn-toolbar:after,
5239
- .w3eden .btn-toolbar:before,
5240
- .w3eden .clearfix:after,
5241
- .w3eden .clearfix:before,
5242
- .w3eden .container-fluid:after,
5243
- .w3eden .container-fluid:before,
5244
- .w3eden .container:after,
5245
- .w3eden .container:before,
5246
- .w3eden .dl-horizontal dd:after,
5247
- .w3eden .dl-horizontal dd:before,
5248
- .w3eden .form-horizontal .form-group:after,
5249
- .w3eden .form-horizontal .form-group:before,
5250
- .w3eden .modal-footer:after,
5251
- .w3eden .modal-footer:before,
5252
- .w3eden .nav:after,
5253
- .w3eden .nav:before,
5254
- .w3eden .navbar-collapse:after,
5255
- .w3eden .navbar-collapse:before,
5256
- .w3eden .navbar-header:after,
5257
- .w3eden .navbar-header:before,
5258
- .w3eden .navbar:after,
5259
- .w3eden .navbar:before,
5260
- .w3eden .pager:after,
5261
- .w3eden .pager:before,
5262
- .w3eden .panel-body:after,
5263
- .w3eden .panel-body:before,
5264
- .w3eden .row:after,
5265
- .w3eden .row:before {
5266
- display: table;
5267
- content: " ";
5268
- }
5269
- .w3eden .btn-group-vertical > .btn-group:after,
5270
- .w3eden .btn-toolbar:after,
5271
- .w3eden .clearfix:after,
5272
- .w3eden .container-fluid:after,
5273
- .w3eden .container:after,
5274
- .w3eden .dl-horizontal dd:after,
5275
- .w3eden .form-horizontal .form-group:after,
5276
- .w3eden .modal-footer:after,
5277
- .w3eden .nav:after,
5278
- .w3eden .navbar-collapse:after,
5279
- .w3eden .navbar-header:after,
5280
- .w3eden .navbar:after,
5281
- .w3eden .pager:after,
5282
- .w3eden .panel-body:after,
5283
- .w3eden .row:after {
5284
- clear: both;
5285
- }
5286
- .w3eden .center-block {
5287
- display: block;
5288
- margin-right: auto;
5289
- margin-left: auto;
5290
  }
5291
- .w3eden .pull-right {
5292
- float: right !important;
 
5293
  }
5294
- .w3eden .pull-left {
5295
- float: left !important;
5296
  }
5297
- .w3eden .hide {
5298
- display: none !important;
 
5299
  }
5300
- .w3eden .show {
5301
- display: block !important;
 
5302
  }
5303
- .w3eden .invisible {
5304
- visibility: hidden;
 
5305
  }
5306
- .w3eden .text-hide {
5307
- font: 0/0 a;
5308
- color: transparent;
5309
- text-shadow: none;
5310
- background-color: transparent;
5311
- border: 0;
5312
  }
5313
- .w3eden .hidden {
5314
- display: none !important;
5315
  }
5316
- .w3eden .affix {
5317
- position: fixed;
 
5318
  }
5319
- @-ms-viewport {
5320
- width: device-width;
 
5321
  }
5322
- .w3eden .visible-lg,
5323
- .w3eden .visible-md,
5324
- .w3eden .visible-sm,
5325
- .w3eden .visible-xs {
5326
- display: none !important;
5327
  }
5328
- .w3eden .visible-lg-block,
5329
- .w3eden .visible-lg-inline,
5330
- .w3eden .visible-lg-inline-block,
5331
- .w3eden .visible-md-block,
5332
- .w3eden .visible-md-inline,
5333
- .w3eden .visible-md-inline-block,
5334
- .w3eden .visible-sm-block,
5335
- .w3eden .visible-sm-inline,
5336
- .w3eden .visible-sm-inline-block,
5337
- .w3eden .visible-xs-block,
5338
- .w3eden .visible-xs-inline,
5339
- .w3eden .visible-xs-inline-block {
5340
- display: none !important;
5341
  }
5342
- @media (max-width: 767px) {
5343
- .w3eden .visible-xs {
5344
- display: block !important;
5345
- }
5346
- .w3eden table.visible-xs {
5347
- display: table;
5348
- }
5349
- .w3eden tr.visible-xs {
5350
- display: table-row !important;
5351
- }
5352
- .w3eden td.visible-xs,
5353
- .w3eden th.visible-xs {
5354
- display: table-cell !important;
5355
- }
5356
  }
5357
- @media (max-width: 767px) {
5358
- .w3eden .visible-xs-block {
5359
- display: block !important;
5360
- }
5361
  }
5362
- @media (max-width: 767px) {
5363
- .w3eden .visible-xs-inline {
5364
- display: inline !important;
5365
- }
5366
  }
5367
- @media (max-width: 767px) {
5368
- .w3eden .visible-xs-inline-block {
5369
- display: inline-block !important;
5370
- }
5371
  }
5372
- @media (min-width: 768px) and (max-width: 991px) {
5373
- .w3eden .visible-sm {
5374
- display: block !important;
5375
- }
5376
- .w3eden table.visible-sm {
5377
- display: table;
5378
- }
5379
- .w3eden tr.visible-sm {
5380
- display: table-row !important;
5381
- }
5382
- .w3eden td.visible-sm,
5383
- .w3eden th.visible-sm {
5384
- display: table-cell !important;
5385
- }
5386
  }
5387
- @media (min-width: 768px) and (max-width: 991px) {
5388
- .w3eden .visible-sm-block {
5389
- display: block !important;
5390
- }
5391
  }
5392
- @media (min-width: 768px) and (max-width: 991px) {
5393
- .w3eden .visible-sm-inline {
5394
- display: inline !important;
5395
- }
5396
  }
5397
- @media (min-width: 768px) and (max-width: 991px) {
5398
- .w3eden .visible-sm-inline-block {
5399
- display: inline-block !important;
5400
- }
5401
  }
5402
- @media (min-width: 992px) and (max-width: 1199px) {
5403
- .w3eden .visible-md {
5404
- display: block !important;
5405
- }
5406
- .w3eden table.visible-md {
5407
- display: table;
5408
- }
5409
- .w3eden tr.visible-md {
5410
- display: table-row !important;
5411
- }
5412
- .w3eden td.visible-md,
5413
- .w3eden th.visible-md {
5414
- display: table-cell !important;
5415
- }
5416
  }
5417
- @media (min-width: 992px) and (max-width: 1199px) {
5418
- .w3eden .visible-md-block {
5419
- display: block !important;
5420
- }
5421
  }
5422
- @media (min-width: 992px) and (max-width: 1199px) {
5423
- .w3eden .visible-md-inline {
5424
- display: inline !important;
5425
- }
5426
  }
5427
- @media (min-width: 992px) and (max-width: 1199px) {
5428
- .w3eden .visible-md-inline-block {
5429
- display: inline-block !important;
5430
- }
5431
  }
5432
- @media (min-width: 1200px) {
5433
- .w3eden .visible-lg {
5434
- display: block !important;
5435
- }
5436
- .w3eden table.visible-lg {
5437
- display: table;
5438
- }
5439
- .w3eden tr.visible-lg {
5440
- display: table-row !important;
5441
- }
5442
- .w3eden td.visible-lg,
5443
- .w3eden th.visible-lg {
5444
- display: table-cell !important;
5445
- }
5446
  }
5447
- @media (min-width: 1200px) {
5448
- .w3eden .visible-lg-block {
5449
- display: block !important;
5450
- }
5451
  }
5452
- @media (min-width: 1200px) {
5453
- .w3eden .visible-lg-inline {
5454
- display: inline !important;
5455
- }
5456
  }
5457
- @media (min-width: 1200px) {
5458
- .w3eden .visible-lg-inline-block {
5459
- display: inline-block !important;
5460
- }
5461
  }
5462
- @media (max-width: 767px) {
5463
- .w3eden .hidden-xs {
5464
- display: none !important;
5465
- }
5466
  }
5467
- @media (min-width: 768px) and (max-width: 991px) {
5468
- .w3eden .hidden-sm {
5469
- display: none !important;
5470
- }
5471
  }
5472
- @media (min-width: 992px) and (max-width: 1199px) {
5473
- .w3eden .hidden-md {
5474
- display: none !important;
5475
- }
5476
  }
5477
- @media (min-width: 1200px) {
5478
- .w3eden .hidden-lg {
5479
- display: none !important;
5480
- }
5481
  }
5482
- .w3eden .visible-print {
5483
- display: none !important;
5484
  }
5485
- @media print {
5486
- .w3eden .visible-print {
5487
- display: block !important;
5488
- }
5489
- .w3eden table.visible-print {
5490
- display: table;
5491
- }
5492
- .w3eden tr.visible-print {
5493
- display: table-row !important;
5494
- }
5495
- .w3eden td.visible-print,
5496
- .w3eden th.visible-print {
5497
- display: table-cell !important;
5498
- }
5499
  }
5500
- .w3eden .visible-print-block {
5501
- display: none !important;
5502
  }
5503
- @media print {
5504
- .w3eden .visible-print-block {
5505
- display: block !important;
5506
- }
5507
  }
5508
- .w3eden .visible-print-inline {
5509
- display: none !important;
5510
  }
5511
- @media print {
5512
- .w3eden .visible-print-inline {
5513
- display: inline !important;
5514
- }
5515
  }
5516
- .w3eden .visible-print-inline-block {
5517
- display: none !important;
5518
  }
5519
- @media print {
5520
- .w3eden .visible-print-inline-block {
5521
- display: inline-block !important;
5522
- }
5523
  }
5524
- @media print {
5525
- .w3eden .hidden-print {
5526
- display: none !important;
5527
- }
5528
  }
5529
-
5530
- .w3eden .btn{
5531
- background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.05)));background-image:-webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.05));background-image:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.05));
5532
-
5533
- /* border: 0;padding: 7px 13px; */
5534
  }
5535
- .w3eden .panel th{
5536
- background-color: #eeeeee !important;
5537
- border-bottom-width: 1px !important;
5538
-
5539
  }
5540
- .w3eden .btn{ border-radius: 0.2em; }
5541
- .w3eden .nav-pills a{
5542
- border-radius: 0.2em;
 
 
5543
  box-shadow: none !important;
5544
- font-size: 9pt !important;
5545
- }
5546
- .w3eden .panel-heading{
5547
- font-weight: 700;
5548
- }
5549
- .w3eden blockquote.alert{
5550
- font-size: 14px;
5551
- font-weight: 300;
5552
- font-style: italic;
5553
- border-radius: 2px !important;
5554
- }
5555
- .w3eden .btn-group .btn:first-child:not(:last-child),
5556
- .w3eden .input-group .form-control:first-child:not(:last-child){ border-top-right-radius: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0.2em; border-top-left-radius: 0.2em; }
5557
- .w3eden .btn-group .btn:last-child:not(:first-child){ border-top-left-radius: 0; border-bottom-left-radius: 0; border-top-right-radius: 0.2em; border-bottom-right-radius: 0.2em; }
5558
- .w3eden .btn span.left-icon{
5559
- float: left;
5560
- background: none repeat scroll 0 0 rgba(0, 0, 0, 0.16);
5561
- border-bottom-left-radius: 3px;
5562
- border-right: 1px solid rgba(0, 0, 0, 0.12);
5563
- border-top-left-radius: 3px;
5564
- margin-left: -17px;
5565
- margin-top: -8.5px;
5566
- padding: 8.5px 12px;
5567
- position: relative;
5568
- width: 40px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5569
  }
 
 
1
+ .w3eden {
2
+ /*!
3
+ * Bootstrap v4.3.1 (https://getbootstrap.com/)
4
+ * Copyright 2011-2019 The Bootstrap Authors
5
+ * Copyright 2011-2019 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ */
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: var(--color-secondary);*/
21
+ /* --gray-dark: #343a40;*/
22
+ /* --primary: var(--color-primary);*/
23
+ /* --secondary: var(--color-secondary);*/
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
+ /*progress {*/
39
+ /* vertical-align: baseline;*/
40
+ /*}*/
41
+ /*.display-1 {*/
42
+ /* font-size: 6rem;*/
43
+ /* font-weight: 300;*/
44
+ /* line-height: 1.2;*/
45
+ /*}*/
46
+ /*.display-2 {*/
47
+ /* font-size: 5.5rem;*/
48
+ /* font-weight: 300;*/
49
+ /* line-height: 1.2;*/
50
+ /*}*/
51
+ /*.display-3 {*/
52
+ /* font-size: 4.5rem;*/
53
+ /* font-weight: 300;*/
54
+ /* line-height: 1.2;*/
55
+ /*}*/
56
+ /*.display-4 {*/
57
+ /* font-size: 3.5rem;*/
58
+ /* font-weight: 300;*/
59
+ /* line-height: 1.2;*/
60
+ /*}*/
61
+ /*.initialism {*/
62
+ /* font-size: 90%;*/
63
+ /* text-transform: uppercase;*/
64
+ /*}*/
65
+ /*.blockquote {*/
66
+ /* margin-bottom: 1rem;*/
67
+ /* font-size: 1.25rem;*/
68
+ /*}*/
69
+ /*.blockquote-footer {*/
70
+ /* display: block;*/
71
+ /* font-size: 80%;*/
72
+ /* color: var(--color-secondary);*/
73
+ /*}*/
74
+ /*.blockquote-footer::before {*/
75
+ /* content: "\2014\00A0";*/
76
+ /*}*/
77
+ /*.img-thumbnail {*/
78
+ /* padding: 0.25rem;*/
79
+ /* background-color: #fff;*/
80
+ /* border: 1px solid #dee2e6;*/
81
+ /* border-radius: 0.25rem;*/
82
+ /* max-width: 100%;*/
83
+ /* height: auto;*/
84
+ /*}*/
85
+ /*.figure {*/
86
+ /* display: inline-block;*/
87
+ /*}*/
88
+ /*.figure-img {*/
89
+ /* margin-bottom: 0.5rem;*/
90
+ /* line-height: 1;*/
91
+ /*}*/
92
+ /*.figure-caption {*/
93
+ /* font-size: 90%;*/
94
+ /* color: var(--color-secondary);*/
95
+ /*}*/
96
+ /*pre code {*/
97
+ /* font-size: inherit;*/
98
+ /* color: inherit;*/
99
+ /* word-break: normal;*/
100
+ /*}*/
101
+ /*.pre-scrollable {*/
102
+ /* max-height: 340px;*/
103
+ /* overflow-y: scroll;*/
104
+ /*}*/
105
+ /*.col-1,*/
106
+ /*.col-auto {*/
107
+ /* -ms-flex: 0 0 auto;*/
108
+ /* flex: 0 0 auto;*/
109
+ /* width: auto;*/
110
+ /* max-width: 100%;*/
111
+ /*}*/
112
+ /*.col-1 {*/
113
+ /* -ms-flex: 0 0 8.333333%;*/
114
+ /* flex: 0 0 8.333333%;*/
115
+ /* max-width: 8.333333%;*/
116
+ /*}*/
117
+ /*.col-2 {*/
118
+ /* -ms-flex: 0 0 16.666667%;*/
119
+ /* flex: 0 0 16.666667%;*/
120
+ /* max-width: 16.666667%;*/
121
+ /*}*/
122
+ /*.col-3 {*/
123
+ /* -ms-flex: 0 0 25%;*/
124
+ /* flex: 0 0 25%;*/
125
+ /* max-width: 25%;*/
126
+ /*}*/
127
+ /*.col-4 {*/
128
+ /* -ms-flex: 0 0 33.333333%;*/
129
+ /* flex: 0 0 33.333333%;*/
130
+ /* max-width: 33.333333%;*/
131
+ /*}*/
132
+ /*.col-5 {*/
133
+ /* -ms-flex: 0 0 41.666667%;*/
134
+ /* flex: 0 0 41.666667%;*/
135
+ /* max-width: 41.666667%;*/
136
+ /*}*/
137
+ /*.col-6 {*/
138
+ /* -ms-flex: 0 0 50%;*/
139
+ /* flex: 0 0 50%;*/
140
+ /* max-width: 50%;*/
141
+ /*}*/
142
+ /*.col-7 {*/
143
+ /* -ms-flex: 0 0 58.333333%;*/
144
+ /* flex: 0 0 58.333333%;*/
145
+ /* max-width: 58.333333%;*/
146
+ /*}*/
147
+ /*.col-8 {*/
148
+ /* -ms-flex: 0 0 66.666667%;*/
149
+ /* flex: 0 0 66.666667%;*/
150
+ /* max-width: 66.666667%;*/
151
+ /*}*/
152
+ /*.col-9 {*/
153
+ /* -ms-flex: 0 0 75%;*/
154
+ /* flex: 0 0 75%;*/
155
+ /* max-width: 75%;*/
156
+ /*}*/
157
+ /*.col-10 {*/
158
+ /* -ms-flex: 0 0 83.333333%;*/
159
+ /* flex: 0 0 83.333333%;*/
160
+ /* max-width: 83.333333%;*/
161
+ /*}*/
162
+ /*.col-11 {*/
163
+ /* -ms-flex: 0 0 91.666667%;*/
164
+ /* flex: 0 0 91.666667%;*/
165
+ /* max-width: 91.666667%;*/
166
+ /*}*/
167
+ /*.order-first {*/
168
+ /* -ms-flex-order: -1;*/
169
+ /* order: -1;*/
170
+ /*}*/
171
+ /*.order-last {*/
172
+ /* -ms-flex-order: 13;*/
173
+ /* order: 13;*/
174
+ /*}*/
175
+ /*.order-0 {*/
176
+ /* -ms-flex-order: 0;*/
177
+ /* order: 0;*/
178
+ /*}*/
179
+ /*.order-1 {*/
180
+ /* -ms-flex-order: 1;*/
181
+ /* order: 1;*/
182
+ /*}*/
183
+ /*.order-2 {*/
184
+ /* -ms-flex-order: 2;*/
185
+ /* order: 2;*/
186
+ /*}*/
187
+ /*.order-3 {*/
188
+ /* -ms-flex-order: 3;*/
189
+ /* order: 3;*/
190
+ /*}*/
191
+ /*.order-4 {*/
192
+ /* -ms-flex-order: 4;*/
193
+ /* order: 4;*/
194
+ /*}*/
195
+ /*.order-5 {*/
196
+ /* -ms-flex-order: 5;*/
197
+ /* order: 5;*/
198
+ /*}*/
199
+ /*.order-6 {*/
200
+ /* -ms-flex-order: 6;*/
201
+ /* order: 6;*/
202
+ /*}*/
203
+ /*.order-7 {*/
204
+ /* -ms-flex-order: 7;*/
205
+ /* order: 7;*/
206
+ /*}*/
207
+ /*.order-8 {*/
208
+ /* -ms-flex-order: 8;*/
209
+ /* order: 8;*/
210
+ /*}*/
211
+ /*.order-9 {*/
212
+ /* -ms-flex-order: 9;*/
213
+ /* order: 9;*/
214
+ /*}*/
215
+ /*.order-10 {*/
216
+ /* -ms-flex-order: 10;*/
217
+ /* order: 10;*/
218
+ /*}*/
219
+ /*.order-11 {*/
220
+ /* -ms-flex-order: 11;*/
221
+ /* order: 11;*/
222
+ /*}*/
223
+ /*.order-12 {*/
224
+ /* -ms-flex-order: 12;*/
225
+ /* order: 12;*/
226
+ /*}*/
227
+ /*.offset-1 {*/
228
+ /* margin-left: 8.333333%;*/
229
+ /*}*/
230
+ /*.offset-2 {*/
231
+ /* margin-left: 16.666667%;*/
232
+ /*}*/
233
+ /*.offset-3 {*/
234
+ /* margin-left: 25%;*/
235
+ /*}*/
236
+ /*.offset-4 {*/
237
+ /* margin-left: 33.333333%;*/
238
+ /*}*/
239
+ /*.offset-5 {*/
240
+ /* margin-left: 41.666667%;*/
241
+ /*}*/
242
+ /*.offset-6 {*/
243
+ /* margin-left: 50%;*/
244
+ /*}*/
245
+ /*.offset-7 {*/
246
+ /* margin-left: 58.333333%;*/
247
+ /*}*/
248
+ /*.offset-8 {*/
249
+ /* margin-left: 66.666667%;*/
250
+ /*}*/
251
+ /*.offset-9 {*/
252
+ /* margin-left: 75%;*/
253
+ /*}*/
254
+ /*.offset-10 {*/
255
+ /* margin-left: 83.333333%;*/
256
+ /*}*/
257
+ /*.offset-11 {*/
258
+ /* margin-left: 91.666667%;*/
259
+ /*}*/
260
+ /*.table-sm th,*/
261
+ /*.table-sm td {*/
262
+ /* padding: 0.3rem;*/
263
+ /*}*/
264
+ /*.table-borderless th,*/
265
+ /*.table-borderless td,*/
266
+ /*.table-borderless thead th,*/
267
+ /*.table-borderless tbody + tbody {*/
268
+ /* border: 0;*/
269
+ /*}*/
270
+ /*.table-striped tbody tr:nth-of-type(odd) {*/
271
+ /* background-color: rgba(0, 0, 0, 0.05);*/
272
+ /*}*/
273
+ /*.table-hover tbody tr:hover {*/
274
+ /* color: #212529;*/
275
+ /* background-color: rgba(0, 0, 0, 0.075);*/
276
+ /*}*/
277
+ /*.table-primary,*/
278
+ /*.table-primary > th,*/
279
+ /*.table-primary > td {*/
280
+ /* background-color: #b8daff;*/
281
+ /*}*/
282
+ /*.table-primary th,*/
283
+ /*.table-primary td,*/
284
+ /*.table-primary thead th,*/
285
+ /*.table-primary tbody + tbody {*/
286
+ /* border-color: #7abaff;*/
287
+ /*}*/
288
+ /*.table-hover .table-primary:hover {*/
289
+ /* background-color: #9fcdff;*/
290
+ /*}*/
291
+ /*.table-hover .table-primary:hover > td,*/
292
+ /*.table-hover .table-primary:hover > th {*/
293
+ /* background-color: #9fcdff;*/
294
+ /*}*/
295
+ /*.table-secondary,*/
296
+ /*.table-secondary > th,*/
297
+ /*.table-secondary > td {*/
298
+ /* background-color: #d6d8db;*/
299
+ /*}*/
300
+ /*.table-secondary th,*/
301
+ /*.table-secondary td,*/
302
+ /*.table-secondary thead th,*/
303
+ /*.table-secondary tbody + tbody {*/
304
+ /* border-color: #b3b7bb;*/
305
+ /*}*/
306
+ /*.table-hover .table-secondary:hover {*/
307
+ /* background-color: #c8cbcf;*/
308
+ /*}*/
309
+ /*.table-hover .table-secondary:hover > td,*/
310
+ /*.table-hover .table-secondary:hover > th {*/
311
+ /* background-color: #c8cbcf;*/
312
+ /*}*/
313
+ /*.table-success,*/
314
+ /*.table-success > th,*/
315
+ /*.table-success > td {*/
316
+ /* background-color: #c3e6cb;*/
317
+ /*}*/
318
+ /*.table-success th,*/
319
+ /*.table-success td,*/
320
+ /*.table-success thead th,*/
321
+ /*.table-success tbody + tbody {*/
322
+ /* border-color: #8fd19e;*/
323
+ /*}*/
324
+ /*.table-hover .table-success:hover {*/
325
+ /* background-color: #b1dfbb;*/
326
+ /*}*/
327
+ /*.table-hover .table-success:hover > td,*/
328
+ /*.table-hover .table-success:hover > th {*/
329
+ /* background-color: #b1dfbb;*/
330
+ /*}*/
331
+ /*.table-info,*/
332
+ /*.table-info > th,*/
333
+ /*.table-info > td {*/
334
+ /* background-color: #bee5eb;*/
335
+ /*}*/
336
+ /*.table-info th,*/
337
+ /*.table-info td,*/
338
+ /*.table-info thead th,*/
339
+ /*.table-info tbody + tbody {*/
340
+ /* border-color: #86cfda;*/
341
+ /*}*/
342
+ /*.table-hover .table-info:hover {*/
343
+ /* background-color: #abdde5;*/
344
+ /*}*/
345
+ /*.table-hover .table-info:hover > td,*/
346
+ /*.table-hover .table-info:hover > th {*/
347
+ /* background-color: #abdde5;*/
348
+ /*}*/
349
+ /*.table-warning,*/
350
+ /*.table-warning > th,*/
351
+ /*.table-warning > td {*/
352
+ /* background-color: #ffeeba;*/
353
+ /*}*/
354
+ /*.table-warning th,*/
355
+ /*.table-warning td,*/
356
+ /*.table-warning thead th,*/
357
+ /*.table-warning tbody + tbody {*/
358
+ /* border-color: #ffdf7e;*/
359
+ /*}*/
360
+ /*.table-hover .table-warning:hover {*/
361
+ /* background-color: #ffe8a1;*/
362
+ /*}*/
363
+ /*.table-hover .table-warning:hover > td,*/
364
+ /*.table-hover .table-warning:hover > th {*/
365
+ /* background-color: #ffe8a1;*/
366
+ /*}*/
367
+ /*.table-danger,*/
368
+ /*.table-danger > th,*/
369
+ /*.table-danger > td {*/
370
+ /* background-color: #f5c6cb;*/
371
+ /*}*/
372
+ /*.table-danger th,*/
373
+ /*.table-danger td,*/
374
+ /*.table-danger thead th,*/
375
+ /*.table-danger tbody + tbody {*/
376
+ /* border-color: #ed969e;*/
377
+ /*}*/
378
+ /*.table-hover .table-danger:hover {*/
379
+ /* background-color: #f1b0b7;*/
380
+ /*}*/
381
+ /*.table-hover .table-danger:hover > td,*/
382
+ /*.table-hover .table-danger:hover > th {*/
383
+ /* background-color: #f1b0b7;*/
384
+ /*}*/
385
+ /*.table-light,*/
386
+ /*.table-light > th,*/
387
+ /*.table-light > td {*/
388
+ /* background-color: #fdfdfe;*/
389
+ /*}*/
390
+ /*.table-light th,*/
391
+ /*.table-light td,*/
392
+ /*.table-light thead th,*/
393
+ /*.table-light tbody + tbody {*/
394
+ /* border-color: #fbfcfc;*/
395
+ /*}*/
396
+ /*.table-hover .table-light:hover {*/
397
+ /* background-color: #ececf6;*/
398
+ /*}*/
399
+ /*.table-hover .table-light:hover > td,*/
400
+ /*.table-hover .table-light:hover > th {*/
401
+ /* background-color: #ececf6;*/
402
+ /*}*/
403
+ /*.table-dark,*/
404
+ /*.table-dark > th,*/
405
+ /*.table-dark > td {*/
406
+ /* background-color: #c6c8ca;*/
407
+ /*}*/
408
+ /*.table-dark th,*/
409
+ /*.table-dark td,*/
410
+ /*.table-dark thead th,*/
411
+ /*.table-dark tbody + tbody {*/
412
+ /* border-color: #95999c;*/
413
+ /*}*/
414
+ /*.table-hover .table-dark:hover {*/
415
+ /* background-color: #b9bbbe;*/
416
+ /*}*/
417
+ /*.table-hover .table-dark:hover > td,*/
418
+ /*.table-hover .table-dark:hover > th {*/
419
+ /* background-color: #b9bbbe;*/
420
+ /*}*/
421
+ /*.table-active,*/
422
+ /*.table-active > th,*/
423
+ /*.table-active > td {*/
424
+ /* background-color: rgba(0, 0, 0, 0.075);*/
425
+ /*}*/
426
+ /*.table-hover .table-active:hover {*/
427
+ /* background-color: rgba(0, 0, 0, 0.075);*/
428
+ /*}*/
429
+ /*.table-hover .table-active:hover > td,*/
430
+ /*.table-hover .table-active:hover > th {*/
431
+ /* background-color: rgba(0, 0, 0, 0.075);*/
432
+ /*}*/
433
+ /*.table .thead-dark th {*/
434
+ /* color: #fff;*/
435
+ /* background-color: #343a40;*/
436
+ /* border-color: #454d55;*/
437
+ /*}*/
438
+ /*.table .thead-light th {*/
439
+ /* color: #495057;*/
440
+ /* background-color: #e9ecef;*/
441
+ /* border-color: #dee2e6;*/
442
+ /*}*/
443
+ /*.table-dark {*/
444
+ /* color: #fff;*/
445
+ /* background-color: #343a40;*/
446
+ /*}*/
447
+ /*.table-dark th,*/
448
+ /*.table-dark td,*/
449
+ /*.table-dark thead th {*/
450
+ /* border-color: #454d55;*/
451
+ /*}*/
452
+ /*.table-dark.table-bordered {*/
453
+ /* border: 0;*/
454
+ /*}*/
455
+ /*.table-dark.table-striped tbody tr:nth-of-type(odd) {*/
456
+ /* background-color: rgba(255, 255, 255, 0.05);*/
457
+ /*}*/
458
+ /*.table-dark.table-hover tbody tr:hover {*/
459
+ /* color: #fff;*/
460
+ /* background-color: rgba(255, 255, 255, 0.075);*/
461
+ /*}*/
462
+ /*@media (max-width: 575.98px) {*/
463
+ /* .table-responsive-sm {*/
464
+ /* display: block;*/
465
+ /* width: 100%;*/
466
+ /* overflow-x: auto;*/
467
+ /* -webkit-overflow-scrolling: touch;*/
468
+ /* }*/
469
+ /* .table-responsive-sm > .table-bordered {*/
470
+ /* border: 0;*/
471
+ /* }*/
472
+ /*}*/
473
+ /*@media (max-width: 767.98px) {*/
474
+ /* .table-responsive-md {*/
475
+ /* display: block;*/
476
+ /* width: 100%;*/
477
+ /* overflow-x: auto;*/
478
+ /* -webkit-overflow-scrolling: touch;*/
479
+ /* }*/
480
+ /* .table-responsive-md > .table-bordered {*/
481
+ /* border: 0;*/
482
+ /* }*/
483
+ /*}*/
484
+ /*@media (max-width: 991.98px) {*/
485
+ /* .table-responsive-lg {*/
486
+ /* display: block;*/
487
+ /* width: 100%;*/
488
+ /* overflow-x: auto;*/
489
+ /* -webkit-overflow-scrolling: touch;*/
490
+ /* }*/
491
+ /* .table-responsive-lg > .table-bordered {*/
492
+ /* border: 0;*/
493
+ /* }*/
494
+ /*}*/
495
+ /*@media (max-width: 1199.98px) {*/
496
+ /* .table-responsive-xl {*/
497
+ /* display: block;*/
498
+ /* width: 100%;*/
499
+ /* overflow-x: auto;*/
500
+ /* -webkit-overflow-scrolling: touch;*/
501
+ /* }*/
502
+ /* .table-responsive-xl > .table-bordered {*/
503
+ /* border: 0;*/
504
+ /* }*/
505
+ /*}*/
506
+ /*.table-responsive {*/
507
+ /* display: block;*/
508
+ /* width: 100%;*/
509
+ /* overflow-x: auto;*/
510
+ /* -webkit-overflow-scrolling: touch;*/
511
+ /*}*/
512
+ /*.table-responsive > .table-bordered {*/
513
+ /* border: 0;*/
514
+ /*}*/
515
+ /*.form-control-file,*/
516
+ /*.form-control-range {*/
517
+ /* display: block;*/
518
+ /* width: 100%;*/
519
+ /*}*/
520
+ /*.col-form-label {*/
521
+ /* padding-top: calc(0.375rem + 1px);*/
522
+ /* padding-bottom: calc(0.375rem + 1px);*/
523
+ /* margin-bottom: 0;*/
524
+ /* font-size: inherit;*/
525
+ /* line-height: 1.5;*/
526
+ /*}*/
527
+ /*.col-form-label-lg {*/
528
+ /* padding-top: calc(0.5rem + 1px);*/
529
+ /* padding-bottom: calc(0.5rem + 1px);*/
530
+ /* font-size: 1.25rem;*/
531
+ /* line-height: 1.5;*/
532
+ /*}*/
533
+ /*.col-form-label-sm {*/
534
+ /* padding-top: calc(0.25rem + 1px);*/
535
+ /* padding-bottom: calc(0.25rem + 1px);*/
536
+ /* font-size: 0.875rem;*/
537
+ /* line-height: 1.5;*/
538
+ /*}*/
539
+ /*.form-control-plaintext {*/
540
+ /* display: block;*/
541
+ /* width: 100%;*/
542
+ /* padding-top: 0.375rem;*/
543
+ /* padding-bottom: 0.375rem;*/
544
+ /* margin-bottom: 0;*/
545
+ /* line-height: 1.5;*/
546
+ /* color: #212529;*/
547
+ /* background-color: transparent;*/
548
+ /* border: solid transparent;*/
549
+ /* border-width: 1px 0;*/
550
+ /*}*/
551
+ /*.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {*/
552
+ /* padding-right: 0;*/
553
+ /* padding-left: 0;*/
554
+ /*}*/
555
+ /*.form-control-sm {*/
556
+ /* height: calc(1.5em + 0.5rem + 2px);*/
557
+ /* padding: 0.25rem 0.5rem;*/
558
+ /* font-size: 0.875rem;*/
559
+ /* line-height: 1.5;*/
560
+ /* border-radius: 0.2rem;*/
561
+ /*}*/
562
+ /*.form-text {*/
563
+ /* display: block;*/
564
+ /* margin-top: 0.25rem;*/
565
+ /*}*/
566
+ /*.form-check {*/
567
+ /* position: relative;*/
568
+ /* display: block;*/
569
+ /* padding-left: 1.25rem;*/
570
+ /*}*/
571
+ /*.form-check-input {*/
572
+ /* position: absolute;*/
573
+ /* margin-top: 0.3rem;*/
574
+ /* margin-left: -1.25rem;*/
575
+ /*}*/
576
+ /*.form-check-input:disabled ~ .form-check-label {*/
577
+ /* color: var(--color-secondary);*/
578
+ /*}*/
579
+ /*.form-check-label {*/
580
+ /* margin-bottom: 0;*/
581
+ /*}*/
582
+ /*.form-check-inline {*/
583
+ /* display: -ms-inline-flexbox;*/
584
+ /* display: inline-flex;*/
585
+ /* -ms-flex-align: center;*/
586
+ /* align-items: center;*/
587
+ /* padding-left: 0;*/
588
+ /* margin-right: 0.75rem;*/
589
+ /*}*/
590
+ /*.form-check-inline .form-check-input {*/
591
+ /* position: static;*/
592
+ /* margin-top: 0;*/
593
+ /* margin-right: 0.3125rem;*/
594
+ /* margin-left: 0;*/
595
+ /*}*/
596
+ /*.valid-feedback {*/
597
+ /* display: none;*/
598
+ /* width: 100%;*/
599
+ /* margin-top: 0.25rem;*/
600
+ /* font-size: 80%;*/
601
+ /* color: var(--color-success);*/
602
+ /*}*/
603
+ /*.valid-tooltip {*/
604
+ /* position: absolute;*/
605
+ /* top: 100%;*/
606
+ /* z-index: 5;*/
607
+ /* display: none;*/
608
+ /* max-width: 100%;*/
609
+ /* padding: 0.25rem 0.5rem;*/
610
+ /* margin-top: .1rem;*/
611
+ /* font-size: 0.875rem;*/
612
+ /* line-height: 1.5;*/
613
+ /* color: #fff;*/
614
+ /* background-color: rgba(40, 167, 69, 0.9);*/
615
+ /* border-radius: 0.25rem;*/
616
+ /*}*/
617
+ /*.was-validated .form-control:valid, .form-control.is-valid {*/
618
+ /* border-color: var(--color-success);*/
619
+ /* padding-right: calc(1.5em + 0.75rem);*/
620
+ /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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");*/
621
+ /* background-repeat: no-repeat;*/
622
+ /* background-position: center right calc(0.375em + 0.1875rem);*/
623
+ /* background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);*/
624
+ /*}*/
625
+ /*.was-validated .form-control:valid:focus, .form-control.is-valid:focus {*/
626
+ /* border-color: var(--color-success);*/
627
+ /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);*/
628
+ /*}*/
629
+ /*.was-validated .form-control:valid ~ .valid-feedback,*/
630
+ /*!*.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,*!*/
631
+ /*.form-control.is-valid ~ .valid-tooltip {*/
632
+ /* display: block;*/
633
+ /*}*/
634
+ /*.was-validated textarea.form-control:valid, textarea.form-control.is-valid {*/
635
+ /* padding-right: calc(1.5em + 0.75rem);*/
636
+ /* background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);*/
637
+ /*}*/
638
+ /*.was-validated .custom-select:valid, .custom-select.is-valid {*/
639
+ /* border-color: var(--color-success);*/
640
+ /* padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);*/
641
+ /* background: url("data:image/svg+xml,%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/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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);*/
642
+ /*}*/
643
+ /*.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {*/
644
+ /* border-color: var(--color-success);*/
645
+ /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);*/
646
+ /*}*/
647
+ /*.was-validated .custom-select:valid ~ .valid-feedback,*/
648
+ /*.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,*/
649
+ /*.custom-select.is-valid ~ .valid-tooltip {*/
650
+ /* display: block;*/
651
+ /*}*/
652
+ /*.was-validated .form-control-file:valid ~ .valid-feedback,*/
653
+ /*.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,*/
654
+ /*.form-control-file.is-valid ~ .valid-tooltip {*/
655
+ /* display: block;*/
656
+ /*}*/
657
+ /*.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {*/
658
+ /* color: var(--color-success);*/
659
+ /*}*/
660
+ /*.was-validated .form-check-input:valid ~ .valid-feedback,*/
661
+ /*.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,*/
662
+ /*.form-check-input.is-valid ~ .valid-tooltip {*/
663
+ /* display: block;*/
664
+ /*}*/
665
+ /*.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {*/
666
+ /* color: var(--color-success);*/
667
+ /*}*/
668
+ /*.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {*/
669
+ /* border-color: var(--color-success);*/
670
+ /*}*/
671
+ /*.was-validated .custom-control-input:valid ~ .valid-feedback,*/
672
+ /*.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,*/
673
+ /*.custom-control-input.is-valid ~ .valid-tooltip {*/
674
+ /* display: block;*/
675
+ /*}*/
676
+ /*.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {*/
677
+ /* border-color: #34ce57;*/
678
+ /* background-color: #34ce57;*/
679
+ /*}*/
680
+ /*.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {*/
681
+ /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);*/
682
+ /*}*/
683
+ /*.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {*/
684
+ /* border-color: var(--color-success);*/
685
+ /*}*/
686
+ /*.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {*/
687
+ /* border-color: var(--color-success);*/
688
+ /*}*/
689
+ /*.was-validated .custom-file-input:valid ~ .valid-feedback,*/
690
+ /*.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,*/
691
+ /*.custom-file-input.is-valid ~ .valid-tooltip {*/
692
+ /* display: block;*/
693
+ /*}*/
694
+ /*.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {*/
695
+ /* border-color: var(--color-success);*/
696
+ /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);*/
697
+ /*}*/
698
+ /*.invalid-feedback {*/
699
+ /* display: none;*/
700
+ /* width: 100%;*/
701
+ /* margin-top: 0.25rem;*/
702
+ /* font-size: 80%;*/
703
+ /* color: var(--color-danger);*/
704
+ /*}*/
705
+ /*.invalid-tooltip {*/
706
+ /* position: absolute;*/
707
+ /* top: 100%;*/
708
+ /* z-index: 5;*/
709
+ /* display: none;*/
710
+ /* max-width: 100%;*/
711
+ /* padding: 0.25rem 0.5rem;*/
712
+ /* margin-top: .1rem;*/
713
+ /* font-size: 0.875rem;*/
714
+ /* line-height: 1.5;*/
715
+ /* color: #fff;*/
716
+ /* background-color: rgba(220, 53, 69, 0.9);*/
717
+ /* border-radius: 0.25rem;*/
718
+ /*}*/
719
+ /*.was-validated .form-control:invalid, .form-control.is-invalid {*/
720
+ /* border-color: var(--color-danger);*/
721
+ /* padding-right: calc(1.5em + 0.75rem);*/
722
+ /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");*/
723
+ /* background-repeat: no-repeat;*/
724
+ /* background-position: center right calc(0.375em + 0.1875rem);*/
725
+ /* background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);*/
726
+ /*}*/
727
+ /*.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {*/
728
+ /* border-color: var(--color-danger);*/
729
+ /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);*/
730
+ /*}*/
731
+ /*.was-validated .form-control:invalid ~ .invalid-feedback,*/
732
+ /*.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,*/
733
+ /*.form-control.is-invalid ~ .invalid-tooltip {*/
734
+ /* display: block;*/
735
+ /*}*/
736
+ /*.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {*/
737
+ /* padding-right: calc(1.5em + 0.75rem);*/
738
+ /* background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);*/
739
+ /*}*/
740
+ /*.was-validated .custom-select:invalid, .custom-select.is-invalid {*/
741
+ /* border-color: var(--color-danger);*/
742
+ /* padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);*/
743
+ /* background: url("data:image/svg+xml,%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/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);*/
744
+ /*}*/
745
+ /*.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {*/
746
+ /* border-color: var(--color-danger);*/
747
+ /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);*/
748
+ /*}*/
749
+ /*.was-validated .custom-select:invalid ~ .invalid-feedback,*/
750
+ /*.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,*/
751
+ /*.custom-select.is-invalid ~ .invalid-tooltip {*/
752
+ /* display: block;*/
753
+ /*}*/
754
+ /*.was-validated .form-control-file:invalid ~ .invalid-feedback,*/
755
+ /*.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,*/
756
+ /*.form-control-file.is-invalid ~ .invalid-tooltip {*/
757
+ /* display: block;*/
758
+ /*}*/
759
+ /*.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {*/
760
+ /* color: var(--color-danger);*/
761
+ /*}*/
762
+ /*.was-validated .form-check-input:invalid ~ .invalid-feedback,*/
763
+ /*.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,*/
764
+ /*.form-check-input.is-invalid ~ .invalid-tooltip {*/
765
+ /* display: block;*/
766
+ /*}*/
767
+ /*.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {*/
768
+ /* color: var(--color-danger);*/
769
+ /*}*/
770
+ /*.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {*/
771
+ /* border-color: var(--color-danger);*/
772
+ /*}*/
773
+ /*.was-validated .custom-control-input:invalid ~ .invalid-feedback,*/
774
+ /*.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,*/
775
+ /*.custom-control-input.is-invalid ~ .invalid-tooltip {*/
776
+ /* display: block;*/
777
+ /*}*/
778
+ /*.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {*/
779
+ /* border-color: #e4606d;*/
780
+ /* background-color: #e4606d;*/
781
+ /*}*/
782
+ /*.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {*/
783
+ /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);*/
784
+ /*}*/
785
+ /*.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {*/
786
+ /* border-color: var(--color-danger);*/
787
+ /*}*/
788
+ /*.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {*/
789
+ /* border-color: var(--color-danger);*/
790
+ /*}*/
791
+ /*.was-validated .custom-file-input:invalid ~ .invalid-feedback,*/
792
+ /*.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,*/
793
+ /*.custom-file-input.is-invalid ~ .invalid-tooltip {*/
794
+ /* display: block;*/
795
+ /*}*/
796
+ /*.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {*/
797
+ /* border-color: var(--color-danger);*/
798
+ /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);*/
799
+ /*}*/
800
+ /*.form-inline .form-check {*/
801
+ /* width: 100%;*/
802
+ /*}*/
803
+ /*@media (min-width: 576px) {*/
804
+ /* .form-inline label {*/
805
+ /* display: -ms-flexbox;*/
806
+ /* display: flex;*/
807
+ /* -ms-flex-align: center;*/
808
+ /* align-items: center;*/
809
+ /* -ms-flex-pack: center;*/
810
+ /* justify-content: center;*/
811
+ /* margin-bottom: 0;*/
812
+ /* }*/
813
+ /* .form-inline .form-group {*/
814
+ /* display: -ms-flexbox;*/
815
+ /* display: flex;*/
816
+ /* -ms-flex: 0 0 auto;*/
817
+ /* flex: 0 0 auto;*/
818
+ /* -ms-flex-flow: row wrap;*/
819
+ /* flex-flow: row wrap;*/
820
+ /* -ms-flex-align: center;*/
821
+ /* align-items: center;*/
822
+ /* margin-bottom: 0;*/
823
+ /* }*/
824
+ /* .form-inline .form-control {*/
825
+ /* display: inline-block;*/
826
+ /* width: auto;*/
827
+ /* vertical-align: middle;*/
828
+ /* }*/
829
+ /* .form-inline .form-control-plaintext {*/
830
+ /* display: inline-block;*/
831
+ /* }*/
832
+ /* .form-inline .input-group,*/
833
+ /* .form-inline .custom-select {*/
834
+ /* width: auto;*/
835
+ /* }*/
836
+ /* .form-inline .form-check {*/
837
+ /* display: -ms-flexbox;*/
838
+ /* display: flex;*/
839
+ /* -ms-flex-align: center;*/
840
+ /* align-items: center;*/
841
+ /* -ms-flex-pack: center;*/
842
+ /* justify-content: center;*/
843
+ /* width: auto;*/
844
+ /* padding-left: 0;*/
845
+ /* }*/
846
+ /* .form-inline .form-check-input {*/
847
+ /* position: relative;*/
848
+ /* -ms-flex-negative: 0;*/
849
+ /* flex-shrink: 0;*/
850
+ /* margin-top: 0;*/
851
+ /* margin-right: 0.25rem;*/
852
+ /* margin-left: 0;*/
853
+ /* }*/
854
+ /* .form-inline .custom-control {*/
855
+ /* -ms-flex-align: center;*/
856
+ /* align-items: center;*/
857
+ /* -ms-flex-pack: center;*/
858
+ /* justify-content: center;*/
859
+ /* }*/
860
+ /* .form-inline .custom-control-label {*/
861
+ /* margin-bottom: 0;*/
862
+ /* }*/
863
+ /*}*/
864
+ /*.btn.disabled, .btn:disabled {*/
865
+ /* opacity: 0.65;*/
866
+ /*}*/
867
+ /*a.btn.disabled,*/
868
+ /*fieldset:disabled a.btn {*/
869
+ /* pointer-events: none;*/
870
+ /*}*/
871
+ /*.btn-dark {*/
872
+ /* color: #fff;*/
873
+ /* background-color: #343a40;*/
874
+ /* border-color: #343a40;*/
875
+ /*}*/
876
+ /*.btn-dark:hover {*/
877
+ /* color: #fff;*/
878
+ /* background-color: #23272b;*/
879
+ /* border-color: #1d2124;*/
880
+ /*}*/
881
+ /*.btn-dark:focus, .btn-dark.focus {*/
882
+ /* box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);*/
883
+ /*}*/
884
+ /*.btn-dark.disabled, .btn-dark:disabled {*/
885
+ /* color: #fff;*/
886
+ /* background-color: #343a40;*/
887
+ /* border-color: #343a40;*/
888
+ /*}*/
889
+ /*.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,*/
890
+ /*.show > .btn-dark.dropdown-toggle {*/
891
+ /* color: #fff;*/
892
+ /* background-color: #1d2124;*/
893
+ /* border-color: #171a1d;*/
894
+ /*}*/
895
+ /*.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,*/
896
+ /*.show > .btn-dark.dropdown-toggle:focus {*/
897
+ /* box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);*/
898
+ /*}*/
899
+ /*.btn-outline-primary {*/
900
+ /* color: var(--color-primary);*/
901
+ /* border-color: var(--color-primary);*/
902
+ /*}*/
903
+ /*.btn-outline-primary:hover {*/
904
+ /* color: #fff;*/
905
+ /* background-color: var(--color-primary);*/
906
+ /* border-color: var(--color-primary);*/
907
+ /*}*/
908
+ /*.btn-outline-primary:focus, .btn-outline-primary.focus {*/
909
+ /* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);*/
910
+ /*}*/
911
+ /*.btn-outline-primary.disabled, .btn-outline-primary:disabled {*/
912
+ /* color: var(--color-primary);*/
913
+ /* background-color: transparent;*/
914
+ /*}*/
915
+ /*.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,*/
916
+ /*.show > .btn-outline-primary.dropdown-toggle {*/
917
+ /* color: #fff;*/
918
+ /* background-color: var(--color-primary);*/
919
+ /* border-color: var(--color-primary);*/
920
+ /*}*/
921
+ /*.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,*/
922
+ /*.show > .btn-outline-primary.dropdown-toggle:focus {*/
923
+ /* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);*/
924
+ /*}*/
925
+ /*.btn-outline-secondary {*/
926
+ /* color: var(--color-secondary);*/
927
+ /* border-color: var(--color-secondary);*/
928
+ /*}*/
929
+ /*.btn-outline-secondary:hover {*/
930
+ /* color: #fff;*/
931
+ /* background-color: var(--color-secondary);*/
932
+ /* border-color: var(--color-secondary);*/
933
+ /*}*/
934
+ /*.btn-outline-secondary:focus, .btn-outline-secondary.focus {*/
935
+ /* box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);*/
936
+ /*}*/
937
+ /*.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {*/
938
+ /* color: var(--color-secondary);*/
939
+ /* background-color: transparent;*/
940
+ /*}*/
941
+ /*.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,*/
942
+ /*.show > .btn-outline-secondary.dropdown-toggle {*/
943
+ /* color: #fff;*/
944
+ /* background-color: var(--color-secondary);*/
945
+ /* border-color: var(--color-secondary);*/
946
+ /*}*/
947
+ /*.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,*/
948
+ /*.show > .btn-outline-secondary.dropdown-toggle:focus {*/
949
+ /* box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);*/
950
+ /*}*/
951
+ /*.btn-outline-success {*/
952
+ /* color: var(--color-success);*/
953
+ /* border-color: var(--color-success);*/
954
+ /*}*/
955
+ /*.btn-outline-success:hover {*/
956
+ /* color: #fff;*/
957
+ /* background-color: var(--color-success);*/
958
+ /* border-color: var(--color-success);*/
959
+ /*}*/
960
+ /*.btn-outline-success:focus, .btn-outline-success.focus {*/
961
+ /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);*/
962
+ /*}*/
963
+ /*.btn-outline-success.disabled, .btn-outline-success:disabled {*/
964
+ /* color: var(--color-success);*/
965
+ /* background-color: transparent;*/
966
+ /*}*/
967
+ /*.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,*/
968
+ /*.show > .btn-outline-success.dropdown-toggle {*/
969
+ /* color: #fff;*/
970
+ /* background-color: var(--color-success);*/
971
+ /* border-color: var(--color-success);*/
972
+ /*}*/
973
+ /*.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,*/
974
+ /*.show > .btn-outline-success.dropdown-toggle:focus {*/
975
+ /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);*/
976
+ /*}*/
977
+ /*.btn-outline-info {*/
978
+ /* color: var(--color-info);*/
979
+ /* border-color: var(--color-info);*/
980
+ /*}*/
981
+ /*.btn-outline-info:hover {*/
982
+ /* color: #fff;*/
983
+ /* background-color: var(--color-info);*/
984
+ /* border-color: var(--color-info);*/
985
+ /*}*/
986
+ /*.btn-outline-info:focus, .btn-outline-info.focus {*/
987
+ /* box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);*/
988
+ /*}*/
989
+ /*.btn-outline-info.disabled, .btn-outline-info:disabled {*/
990
+ /* color: var(--color-info);*/
991
+ /* background-color: transparent;*/
992
+ /*}*/
993
+ /*.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,*/
994
+ /*.show > .btn-outline-info.dropdown-toggle {*/
995
+ /* color: #fff;*/
996
+ /* background-color: var(--color-info);*/
997
+ /* border-color: var(--color-info);*/
998
+ /*}*/
999
+ /*.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,*/
1000
+ /*.show > .btn-outline-info.dropdown-toggle:focus {*/
1001
+ /* box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);*/
1002
+ /*}*/
1003
+ /*.btn-outline-warning {*/
1004
+ /* color: var(--color-warning);*/
1005
+ /* border-color: var(--color-warning);*/
1006
+ /*}*/
1007
+ /*.btn-outline-warning:hover {*/
1008
+ /* color: #212529;*/
1009
+ /* background-color: var(--color-warning);*/
1010
+ /* border-color: var(--color-warning);*/
1011
+ /*}*/
1012
+ /*.btn-outline-warning:focus, .btn-outline-warning.focus {*/
1013
+ /* box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);*/
1014
+ /*}*/
1015
+ /*.btn-outline-warning.disabled, .btn-outline-warning:disabled {*/
1016
+ /* color: var(--color-warning);*/
1017
+ /* background-color: transparent;*/
1018
+ /*}*/
1019
+ /*.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,*/
1020
+ /*.show > .btn-outline-warning.dropdown-toggle {*/
1021
+ /* color: #212529;*/
1022
+ /* background-color: var(--color-warning);*/
1023
+ /* border-color: var(--color-warning);*/
1024
+ /*}*/
1025
+ /*.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,*/
1026
+ /*.show > .btn-outline-warning.dropdown-toggle:focus {*/
1027
+ /* box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);*/
1028
+ /*}*/
1029
+ /*.btn-outline-danger {*/
1030
+ /* color: var(--color-danger);*/
1031
+ /* border-color: var(--color-danger);*/
1032
+ /*}*/
1033
+ /*.btn-outline-danger:hover {*/
1034
+ /* color: #fff;*/
1035
+ /* background-color: var(--color-danger);*/
1036
+ /* border-color: var(--color-danger);*/
1037
+ /*}*/
1038
+ /*.btn-outline-danger:focus, .btn-outline-danger.focus {*/
1039
+ /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);*/
1040
+ /*}*/
1041
+ /*.btn-outline-danger.disabled, .btn-outline-danger:disabled {*/
1042
+ /* color: var(--color-danger);*/
1043
+ /* background-color: transparent;*/
1044
+ /*}*/
1045
+ /*.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,*/
1046
+ /*.show > .btn-outline-danger.dropdown-toggle {*/
1047
+ /* color: #fff;*/
1048
+ /* background-color: var(--color-danger);*/
1049
+ /* border-color: var(--color-danger);*/
1050
+ /*}*/
1051
+ /*.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,*/
1052
+ /*.show > .btn-outline-danger.dropdown-toggle:focus {*/
1053
+ /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);*/
1054
+ /*}*/
1055
+ /*.btn-outline-light {*/
1056
+ /* color: #f8f9fa;*/
1057
+ /* border-color: #f8f9fa;*/
1058
+ /*}*/
1059
+ /*.btn-outline-light:hover {*/
1060
+ /* color: #212529;*/
1061
+ /* background-color: #f8f9fa;*/
1062
+ /* border-color: #f8f9fa;*/
1063
+ /*}*/
1064
+ /*.btn-outline-light:focus, .btn-outline-light.focus {*/
1065
+ /* box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);*/
1066
+ /*}*/
1067
+ /*.btn-outline-light.disabled, .btn-outline-light:disabled {*/
1068
+ /* color: #f8f9fa;*/
1069
+ /* background-color: transparent;*/
1070
+ /*}*/
1071
+ /*.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,*/
1072
+ /*.show > .btn-outline-light.dropdown-toggle {*/
1073
+ /* color: #212529;*/
1074
+ /* background-color: #f8f9fa;*/
1075
+ /* border-color: #f8f9fa;*/
1076
+ /*}*/
1077
+ /*.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,*/
1078
+ /*.show > .btn-outline-light.dropdown-toggle:focus {*/
1079
+ /* box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);*/
1080
+ /*}*/
1081
+ /*.btn-outline-dark {*/
1082
+ /* color: #343a40;*/
1083
+ /* border-color: #343a40;*/
1084
+ /*}*/
1085
+ /*.btn-outline-dark:hover {*/
1086
+ /* color: #fff;*/
1087
+ /* background-color: #343a40;*/
1088
+ /* border-color: #343a40;*/
1089
+ /*}*/
1090
+ /*.btn-outline-dark:focus, .btn-outline-dark.focus {*/
1091
+ /* box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);*/
1092
+ /*}*/
1093
+ /*.btn-outline-dark.disabled, .btn-outline-dark:disabled {*/
1094
+ /* color: #343a40;*/
1095
+ /* background-color: transparent;*/
1096
+ /*}*/
1097
+ /*.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,*/
1098
+ /*.show > .btn-outline-dark.dropdown-toggle {*/
1099
+ /* color: #fff;*/
1100
+ /* background-color: #343a40;*/
1101
+ /* border-color: #343a40;*/
1102
+ /*}*/
1103
+ /*.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,*/
1104
+ /*.show > .btn-outline-dark.dropdown-toggle:focus {*/
1105
+ /* box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);*/
1106
+ /*}*/
1107
+ /*.dropdown-menu-left {*/
1108
+ /* right: auto;*/
1109
+ /* left: 0;*/
1110
+ /*}*/
1111
+ /*.dropdown-menu-right {*/
1112
+ /* right: 0;*/
1113
+ /* left: auto;*/
1114
+ /*}*/
1115
+ /*@media (min-width: 576px) {*/
1116
+ /* .dropdown-menu-sm-left {*/
1117
+ /* right: auto;*/
1118
+ /* left: 0;*/
1119
+ /* }*/
1120
+ /* .dropdown-menu-sm-right {*/
1121
+ /* right: 0;*/
1122
+ /* left: auto;*/
1123
+ /* }*/
1124
+ /*}*/
1125
+ /*@media (min-width: 768px) {*/
1126
+ /* .dropdown-menu-md-left {*/
1127
+ /* right: auto;*/
1128
+ /* left: 0;*/
1129
+ /* }*/
1130
+ /* .dropdown-menu-md-right {*/
1131
+ /* right: 0;*/
1132
+ /* left: auto;*/
1133
+ /* }*/
1134
+ /*}*/
1135
+ /*@media (min-width: 992px) {*/
1136
+ /* .dropdown-menu-lg-left {*/
1137
+ /* right: auto;*/
1138
+ /* left: 0;*/
1139
+ /* }*/
1140
+ /* .dropdown-menu-lg-right {*/
1141
+ /* right: 0;*/
1142
+ /* left: auto;*/
1143
+ /* }*/
1144
+ /*}*/
1145
+ /*@media (min-width: 1200px) {*/
1146
+ /* .dropdown-menu-xl-left {*/
1147
+ /* right: auto;*/
1148
+ /* left: 0;*/
1149
+ /* }*/
1150
+ /* .dropdown-menu-xl-right {*/
1151
+ /* right: 0;*/
1152
+ /* left: auto;*/
1153
+ /* }*/
1154
+ /*}*/
1155
+ /*.dropup .dropdown-menu {*/
1156
+ /* top: auto;*/
1157
+ /* bottom: 100%;*/
1158
+ /* margin-top: 0;*/
1159
+ /* margin-bottom: 0.125rem;*/
1160
+ /*}*/
1161
+ /*.dropup .dropdown-toggle::after {*/
1162
+ /* display: inline-block;*/
1163
+ /* margin-left: 0.255em;*/
1164
+ /* vertical-align: 0.255em;*/
1165
+ /* content: "";*/
1166
+ /* border-top: 0;*/
1167
+ /* border-right: 0.3em solid transparent;*/
1168
+ /* border-bottom: 0.3em solid;*/
1169
+ /* border-left: 0.3em solid transparent;*/
1170
+ /*}*/
1171
+ /*.dropup .dropdown-toggle:empty::after {*/
1172
+ /* margin-left: 0;*/
1173
+ /*}*/
1174
+ /*.dropright .dropdown-menu {*/
1175
+ /* top: 0;*/
1176
+ /* right: auto;*/
1177
+ /* left: 100%;*/
1178
+ /* margin-top: 0;*/
1179
+ /* margin-left: 0.125rem;*/
1180
+ /*}*/
1181
+ /*.dropright .dropdown-toggle::after {*/
1182
+ /* display: inline-block;*/
1183
+ /* margin-left: 0.255em;*/
1184
+ /* vertical-align: 0.255em;*/
1185
+ /* content: "";*/
1186
+ /* border-top: 0.3em solid transparent;*/
1187
+ /* border-right: 0;*/
1188
+ /* border-bottom: 0.3em solid transparent;*/
1189
+ /* border-left: 0.3em solid;*/
1190
+ /*}*/
1191
+ /*.dropright .dropdown-toggle:empty::after {*/
1192
+ /* margin-left: 0;*/
1193
+ /*}*/
1194
+ /*.dropright .dropdown-toggle::after {*/
1195
+ /* vertical-align: 0;*/
1196
+ /*}*/
1197
+ /*.dropleft .dropdown-menu {*/
1198
+ /* top: 0;*/
1199
+ /* right: 100%;*/
1200
+ /* left: auto;*/
1201
+ /* margin-top: 0;*/
1202
+ /* margin-right: 0.125rem;*/
1203
+ /*}*/
1204
+ /*.dropleft .dropdown-toggle::after {*/
1205
+ /* display: inline-block;*/
1206
+ /* margin-left: 0.255em;*/
1207
+ /* vertical-align: 0.255em;*/
1208
+ /* content: "";*/
1209
+ /*}*/
1210
+ /*.dropleft .dropdown-toggle::after {*/
1211
+ /* display: none;*/
1212
+ /*}*/
1213
+ /*.dropleft .dropdown-toggle::before {*/
1214
+ /* display: inline-block;*/
1215
+ /* margin-right: 0.255em;*/
1216
+ /* vertical-align: 0.255em;*/
1217
+ /* content: "";*/
1218
+ /* border-top: 0.3em solid transparent;*/
1219
+ /* border-right: 0.3em solid;*/
1220
+ /* border-bottom: 0.3em solid transparent;*/
1221
+ /*}*/
1222
+ /*.dropleft .dropdown-toggle:empty::after {*/
1223
+ /* margin-left: 0;*/
1224
+ /*}*/
1225
+ /*.dropleft .dropdown-toggle::before {*/
1226
+ /* vertical-align: 0;*/
1227
+ /*}*/
1228
+ /*.btn-group,*/
1229
+ /*.btn-group-vertical {*/
1230
+ /* position: relative;*/
1231
+ /* display: -ms-inline-flexbox;*/
1232
+ /* display: inline-flex;*/
1233
+ /* vertical-align: middle;*/
1234
+ /*}*/
1235
+ /*.btn-group > .btn,*/
1236
+ /*.btn-group-vertical > .btn {*/
1237
+ /* position: relative;*/
1238
+ /* -ms-flex: 1 1 auto;*/
1239
+ /* flex: 1 1 auto;*/
1240
+ /*}*/
1241
+ /*.btn-group > .btn:hover,*/
1242
+ /*.btn-group-vertical > .btn:hover {*/
1243
+ /* z-index: 1;*/
1244
+ /*}*/
1245
+ /*.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,*/
1246
+ /*.btn-group-vertical > .btn:focus,*/
1247
+ /*.btn-group-vertical > .btn:active,*/
1248
+ /*.btn-group-vertical > .btn.active {*/
1249
+ /* z-index: 1;*/
1250
+ /*}*/
1251
+ /*.btn-toolbar {*/
1252
+ /* display: -ms-flexbox;*/
1253
+ /* display: flex;*/
1254
+ /* -ms-flex-wrap: wrap;*/
1255
+ /* flex-wrap: wrap;*/
1256
+ /* -ms-flex-pack: start;*/
1257
+ /* justify-content: flex-start;*/
1258
+ /*}*/
1259
+ /*.btn-toolbar .input-group {*/
1260
+ /* width: auto;*/
1261
+ /*}*/
1262
+ /*.btn-group > .btn:not(:first-child),*/
1263
+ /*.btn-group > .btn-group:not(:first-child) {*/
1264
+ /* margin-left: -1px;*/
1265
+ /*}*/
1266
+ /*.btn-group > .btn:not(:last-child):not(.dropdown-toggle),*/
1267
+ /*.btn-group > .btn-group:not(:last-child) > .btn {*/
1268
+ /* border-top-right-radius: 0;*/
1269
+ /* border-bottom-right-radius: 0;*/
1270
+ /*}*/
1271
+ /*.btn-group > .btn:not(:first-child),*/
1272
+ /*.btn-group > .btn-group:not(:first-child) > .btn {*/
1273
+ /* border-top-left-radius: 0;*/
1274
+ /* border-bottom-left-radius: 0;*/
1275
+ /*}*/
1276
+ /*.dropdown-toggle-split {*/
1277
+ /* padding-right: 0.5625rem;*/
1278
+ /* padding-left: 0.5625rem;*/
1279
+ /*}*/
1280
+ /*.dropdown-toggle-split::after,*/
1281
+ /*.dropup .dropdown-toggle-split::after,*/
1282
+ /*.dropright .dropdown-toggle-split::after {*/
1283
+ /* margin-left: 0;*/
1284
+ /*}*/
1285
+ /*.dropleft .dropdown-toggle-split::before {*/
1286
+ /* margin-right: 0;*/
1287
+ /*}*/
1288
+ /*.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {*/
1289
+ /* padding-right: 0.375rem;*/
1290
+ /* padding-left: 0.375rem;*/
1291
+ /*}*/
1292
+ /*.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {*/
1293
+ /* padding-right: 0.75rem;*/
1294
+ /* padding-left: 0.75rem;*/
1295
+ /*}*/
1296
+ /*.btn-group-vertical {*/
1297
+ /* -ms-flex-direction: column;*/
1298
+ /* flex-direction: column;*/
1299
+ /* -ms-flex-align: start;*/
1300
+ /* align-items: flex-start;*/
1301
+ /* -ms-flex-pack: center;*/
1302
+ /* justify-content: center;*/
1303
+ /*}*/
1304
+ /*.btn-group-vertical > .btn,*/
1305
+ /*.btn-group-vertical > .btn-group {*/
1306
+ /* width: 100%;*/
1307
+ /*}*/
1308
+ /*.btn-group-vertical > .btn:not(:first-child),*/
1309
+ /*.btn-group-vertical > .btn-group:not(:first-child) {*/
1310
+ /* margin-top: -1px;*/
1311
+ /*}*/
1312
+ /*.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),*/
1313
+ /*.btn-group-vertical > .btn-group:not(:last-child) > .btn {*/
1314
+ /* border-bottom-right-radius: 0;*/
1315
+ /* border-bottom-left-radius: 0;*/
1316
+ /*}*/
1317
+ /*.btn-group-vertical > .btn:not(:first-child),*/
1318
+ /*.btn-group-vertical > .btn-group:not(:first-child) > .btn {*/
1319
+ /* border-top-left-radius: 0;*/
1320
+ /* border-top-right-radius: 0;*/
1321
+ /*}*/
1322
+ /*.btn-group-toggle > .btn,*/
1323
+ /*.btn-group-toggle > .btn-group > .btn {*/
1324
+ /* margin-bottom: 0;*/
1325
+ /*}*/
1326
+ /*.btn-group-toggle > .btn input[type="radio"],*/
1327
+ /*.btn-group-toggle > .btn input[type="checkbox"],*/
1328
+ /*.btn-group-toggle > .btn-group > .btn input[type="radio"],*/
1329
+ /*.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {*/
1330
+ /* position: absolute;*/
1331
+ /* clip: rect(0, 0, 0, 0);*/
1332
+ /* pointer-events: none;*/
1333
+ /*}*/
1334
+ /*.input-group > .custom-file .custom-file-input:focus {*/
1335
+ /* z-index: 4;*/
1336
+ /*}*/
1337
+ /*.input-group > .custom-file {*/
1338
+ /* display: -ms-flexbox;*/
1339
+ /* display: flex;*/
1340
+ /* -ms-flex-align: center;*/
1341
+ /* align-items: center;*/
1342
+ /*}*/
1343
+ /*.input-group > .custom-file:not(:last-child) .custom-file-label,*/
1344
+ /*.input-group > .custom-file:not(:last-child) .custom-file-label::after {*/
1345
+ /* border-top-right-radius: 0;*/
1346
+ /* border-bottom-right-radius: 0;*/
1347
+ /*}*/
1348
+ /*.input-group > .custom-file:not(:first-child) .custom-file-label {*/
1349
+ /* border-top-left-radius: 0;*/
1350
+ /* border-bottom-left-radius: 0;*/
1351
+ /*}*/
1352
+ /*.custom-control-inline {*/
1353
+ /* display: -ms-inline-flexbox;*/
1354
+ /* display: inline-flex;*/
1355
+ /* margin-right: 1rem;*/
1356
+ /*}*/
1357
+ /*.custom-checkbox .custom-control-label::before {*/
1358
+ /* border-radius: 0.25rem;*/
1359
+ /*}*/
1360
+ /*.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {*/
1361
+ /* background-image: url("data:image/svg+xml,%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");*/
1362
+ /*}*/
1363
+ /*.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {*/
1364
+ /* border-color: var(--color-primary);*/
1365
+ /* background-color: var(--color-primary);*/
1366
+ /*}*/
1367
+ /*.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {*/
1368
+ /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");*/
1369
+ /*}*/
1370
+ /*.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {*/
1371
+ /* background-color: rgba(0, 123, 255, 0.5);*/
1372
+ /*}*/
1373
+ /*.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {*/
1374
+ /* background-color: rgba(0, 123, 255, 0.5);*/
1375
+ /*}*/
1376
+ /*.custom-switch {*/
1377
+ /* padding-left: 2.25rem;*/
1378
+ /*}*/
1379
+ /*.custom-switch .custom-control-label::before {*/
1380
+ /* left: -2.25rem;*/
1381
+ /* width: 1.75rem;*/
1382
+ /* pointer-events: all;*/
1383
+ /* border-radius: 0.5rem;*/
1384
+ /*}*/
1385
+ /*.custom-switch .custom-control-label::after {*/
1386
+ /* top: calc(0.25rem + 2px);*/
1387
+ /* left: calc(-2.25rem + 2px);*/
1388
+ /* width: calc(1rem - 4px);*/
1389
+ /* height: calc(1rem - 4px);*/
1390
+ /* background-color: #adb5bd;*/
1391
+ /* border-radius: 0.5rem;*/
1392
+ /* 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;*/
1393
+ /* 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;*/
1394
+ /* 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;*/
1395
+ /*}*/
1396
+ /*@media (prefers-reduced-motion: reduce) {*/
1397
+ /* .custom-switch .custom-control-label::after {*/
1398
+ /* transition: none;*/
1399
+ /* }*/
1400
+ /*}*/
1401
+ /*.custom-switch .custom-control-input:checked ~ .custom-control-label::after {*/
1402
+ /* background-color: #fff;*/
1403
+ /* -webkit-transform: translateX(0.75rem);*/
1404
+ /* transform: translateX(0.75rem);*/
1405
+ /*}*/
1406
+ /*.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {*/
1407
+ /* background-color: rgba(0, 123, 255, 0.5);*/
1408
+ /*}*/
1409
+ /*.custom-select-sm {*/
1410
+ /* height: calc(1.5em + 0.5rem + 2px);*/
1411
+ /* padding-top: 0.25rem;*/
1412
+ /* padding-bottom: 0.25rem;*/
1413
+ /* padding-left: 0.5rem;*/
1414
+ /* font-size: 0.875rem;*/
1415
+ /*}*/
1416
+ /*.custom-select-lg {*/
1417
+ /* height: calc(1.5em + 1rem + 2px);*/
1418
+ /* padding-top: 0.5rem;*/
1419
+ /* padding-bottom: 0.5rem;*/
1420
+ /* padding-left: 1rem;*/
1421
+ /* font-size: 1.25rem;*/
1422
+ /*}*/
1423
+ /*.custom-file {*/
1424
+ /* position: relative;*/
1425
+ /* display: inline-block;*/
1426
+ /* width: 100%;*/
1427
+ /* height: calc(1.5em + 0.75rem + 2px);*/
1428
+ /* margin-bottom: 0;*/
1429
+ /*}*/
1430
+ /*.custom-file-input {*/
1431
+ /* position: relative;*/
1432
+ /* z-index: 2;*/
1433
+ /* width: 100%;*/
1434
+ /* height: calc(1.5em + 0.75rem + 2px);*/
1435
+ /* margin: 0;*/
1436
+ /* opacity: 0;*/
1437
+ /*}*/
1438
+ /*.custom-file-input:focus ~ .custom-file-label {*/
1439
+ /* border-color: #80bdff;*/
1440
+ /* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);*/
1441
+ /*}*/
1442
+ /*.custom-file-input:disabled ~ .custom-file-label {*/
1443
+ /* background-color: #e9ecef;*/
1444
+ /*}*/
1445
+ /*.custom-file-input:lang(en) ~ .custom-file-label::after {*/
1446
+ /* content: "Browse";*/
1447
+ /*}*/
1448
+ /*.custom-file-input ~ .custom-file-label[data-browse]::after {*/
1449
+ /* content: attr(data-browse);*/
1450
+ /*}*/
1451
+ /*.custom-file-label {*/
1452
+ /* position: absolute;*/
1453
+ /* top: 0;*/
1454
+ /* right: 0;*/
1455
+ /* left: 0;*/
1456
+ /* z-index: 1;*/
1457
+ /* height: calc(1.5em + 0.75rem + 2px);*/
1458
+ /* padding: 0.375rem 0.75rem;*/
1459
+ /* font-weight: 400;*/
1460
+ /* line-height: 1.5;*/
1461
+ /* color: #495057;*/
1462
+ /* background-color: #fff;*/
1463
+ /* border: 1px solid #ced4da;*/
1464
+ /* border-radius: 0.25rem;*/
1465
+ /*}*/
1466
+ /*.custom-file-label::after {*/
1467
+ /* position: absolute;*/
1468
+ /* top: 0;*/
1469
+ /* right: 0;*/
1470
+ /* bottom: 0;*/
1471
+ /* z-index: 3;*/
1472
+ /* display: block;*/
1473
+ /* height: calc(1.5em + 0.75rem);*/
1474
+ /* padding: 0.375rem 0.75rem;*/
1475
+ /* line-height: 1.5;*/
1476
+ /* color: #495057;*/
1477
+ /* content: "Browse";*/
1478
+ /* background-color: #e9ecef;*/
1479
+ /* border-left: inherit;*/
1480
+ /* border-radius: 0 0.25rem 0.25rem 0;*/
1481
+ /*}*/
1482
+ /*.custom-range {*/
1483
+ /* width: 100%;*/
1484
+ /* height: calc(1rem + 0.4rem);*/
1485
+ /* padding: 0;*/
1486
+ /* background-color: transparent;*/
1487
+ /* -webkit-appearance: none;*/
1488
+ /* -moz-appearance: none;*/
1489
+ /* appearance: none;*/
1490
+ /*}*/
1491
+ /*.custom-range:focus {*/
1492
+ /* outline: none;*/
1493
+ /*}*/
1494
+ /*.custom-range:focus::-webkit-slider-thumb {*/
1495
+ /* box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);*/
1496
+ /*}*/
1497
+ /*.custom-range:focus::-moz-range-thumb {*/
1498
+ /* box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);*/
1499
+ /*}*/
1500
+ /*.custom-range:focus::-ms-thumb {*/
1501
+ /* box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);*/
1502
+ /*}*/
1503
+ /*.custom-range::-moz-focus-outer {*/
1504
+ /* border: 0;*/
1505
+ /*}*/
1506
+ /*.custom-range::-webkit-slider-thumb {*/
1507
+ /* width: 1rem;*/
1508
+ /* height: 1rem;*/
1509
+ /* margin-top: -0.25rem;*/
1510
+ /* background-color: var(--color-primary);*/
1511
+ /* border: 0;*/
1512
+ /* border-radius: 1rem;*/
1513
+ /* transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;*/
1514
+ /* -webkit-appearance: none;*/
1515
+ /* appearance: none;*/
1516
+ /*}*/
1517
+ /*@media (prefers-reduced-motion: reduce) {*/
1518
+ /* .custom-range::-webkit-slider-thumb {*/
1519
+ /* transition: none;*/
1520
+ /* }*/
1521
+ /*}*/
1522
+ /*.custom-range::-webkit-slider-thumb:active {*/
1523
+ /* background-color: #b3d7ff;*/
1524
+ /*}*/
1525
+ /*.custom-range::-webkit-slider-runnable-track {*/
1526
+ /* width: 100%;*/
1527
+ /* height: 0.5rem;*/
1528
+ /* color: transparent;*/
1529
+ /* cursor: pointer;*/
1530
+ /* background-color: #dee2e6;*/
1531
+ /* border-color: transparent;*/
1532
+ /* border-radius: 1rem;*/
1533
+ /*}*/
1534
+ /*.custom-range::-moz-range-thumb {*/
1535
+ /* width: 1rem;*/
1536
+ /* height: 1rem;*/
1537
+ /* background-color: var(--color-primary);*/
1538
+ /* border: 0;*/
1539
+ /* border-radius: 1rem;*/
1540
+ /* transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;*/
1541
+ /* -moz-appearance: none;*/
1542
+ /* appearance: none;*/
1543
+ /*}*/
1544
+ /*@media (prefers-reduced-motion: reduce) {*/
1545
+ /* .custom-range::-moz-range-thumb {*/
1546
+ /* transition: none;*/
1547
+ /* }*/
1548
+ /*}*/
1549
+ /*.custom-range::-moz-range-thumb:active {*/
1550
+ /* background-color: #b3d7ff;*/
1551
+ /*}*/
1552
+ /*.custom-range::-moz-range-track {*/
1553
+ /* width: 100%;*/
1554
+ /* height: 0.5rem;*/
1555
+ /* color: transparent;*/
1556
+ /* cursor: pointer;*/
1557
+ /* background-color: #dee2e6;*/
1558
+ /* border-color: transparent;*/
1559
+ /* border-radius: 1rem;*/
1560
+ /*}*/
1561
+ /*.custom-range::-ms-thumb {*/
1562
+ /* width: 1rem;*/
1563
+ /* height: 1rem;*/
1564
+ /* margin-top: 0;*/
1565
+ /* margin-right: 0.2rem;*/
1566
+ /* margin-left: 0.2rem;*/
1567
+ /* background-color: var(--color-primary);*/
1568
+ /* border: 0;*/
1569
+ /* border-radius: 1rem;*/
1570
+ /* transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;*/
1571
+ /* appearance: none;*/
1572
+ /*}*/
1573
+ /*@media (prefers-reduced-motion: reduce) {*/
1574
+ /* .custom-range::-ms-thumb {*/
1575
+ /* transition: none;*/
1576
+ /* }*/
1577
+ /*}*/
1578
+ /*.custom-range::-ms-thumb:active {*/
1579
+ /* background-color: #b3d7ff;*/
1580
+ /*}*/
1581
+ /*.custom-range::-ms-track {*/
1582
+ /* width: 100%;*/
1583
+ /* height: 0.5rem;*/
1584
+ /* color: transparent;*/
1585
+ /* cursor: pointer;*/
1586
+ /* background-color: transparent;*/
1587
+ /* border-color: transparent;*/
1588
+ /* border-width: 0.5rem;*/
1589
+ /*}*/
1590
+ /*.custom-range::-ms-fill-lower {*/
1591
+ /* background-color: #dee2e6;*/
1592
+ /* border-radius: 1rem;*/
1593
+ /*}*/
1594
+ /*.custom-range::-ms-fill-upper {*/
1595
+ /* margin-right: 15px;*/
1596
+ /* background-color: #dee2e6;*/
1597
+ /* border-radius: 1rem;*/
1598
+ /*}*/
1599
+ /*.custom-range:disabled::-webkit-slider-thumb {*/
1600
+ /* background-color: #adb5bd;*/
1601
+ /*}*/
1602
+ /*.custom-range:disabled::-webkit-slider-runnable-track {*/
1603
+ /* cursor: default;*/
1604
+ /*}*/
1605
+ /*.custom-range:disabled::-moz-range-thumb {*/
1606
+ /* background-color: #adb5bd;*/
1607
+ /*}*/
1608
+ /*.custom-range:disabled::-moz-range-track {*/
1609
+ /* cursor: default;*/
1610
+ /*}*/
1611
+ /*.custom-range:disabled::-ms-thumb {*/
1612
+ /* background-color: #adb5bd;*/
1613
+ /*}*/
1614
+ /*
1615
+ .nav-tabs .dropdown-menu {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1616
  margin-top: -1px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1617
  border-top-left-radius: 0;
1618
  border-top-right-radius: 0;
1619
+ }
1620
+
1621
+ .nav-pills .nav-link {
1622
+ border-radius: 0.25rem;
1623
+ }
1624
+
1625
+ .nav-pills .nav-link.active,
1626
+ .nav-pills .show > .nav-link {
1627
+ color: #fff;
1628
+ background-color: var(--color-primary);
1629
+ }
1630
+
1631
+ .nav-fill .nav-item {
1632
+ -ms-flex: 1 1 auto;
1633
+ flex: 1 1 auto;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1634
  text-align: center;
1635
+ }
1636
+
1637
+ .nav-justified .nav-item {
1638
+ -ms-flex-preferred-size: 0;
1639
+ flex-basis: 0;
1640
+ -ms-flex-positive: 1;
1641
+ flex-grow: 1;
1642
+ text-align: center;
1643
+ }*/
1644
+ /*
1645
+ .navbar {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1646
  position: relative;
1647
+ display: -ms-flexbox;
1648
+ display: flex;
1649
+ -ms-flex-wrap: wrap;
1650
+ flex-wrap: wrap;
1651
+ -ms-flex-align: center;
1652
+ align-items: center;
1653
+ -ms-flex-pack: justify;
1654
+ justify-content: space-between;
1655
+ padding: 0.5rem 1rem;
1656
+ }
1657
+
1658
+ .navbar > .container,
1659
+ .navbar > .container-fluid {
1660
+ display: -ms-flexbox;
1661
+ display: flex;
1662
+ -ms-flex-wrap: wrap;
1663
+ flex-wrap: wrap;
1664
+ -ms-flex-align: center;
1665
+ align-items: center;
1666
+ -ms-flex-pack: justify;
1667
+ justify-content: space-between;
1668
+ }
1669
+
1670
+ .navbar-brand {
1671
+ display: inline-block;
1672
+ padding-top: 0.3125rem;
1673
+ padding-bottom: 0.3125rem;
1674
+ margin-right: 1rem;
1675
+ font-size: 1.25rem;
1676
+ line-height: inherit;
1677
  white-space: nowrap;
1678
+ }
1679
+
1680
+ .navbar-brand:hover, .navbar-brand:focus {
1681
+ text-decoration: none;
1682
+ }
1683
+
1684
+ .navbar-nav {
1685
+ display: -ms-flexbox;
1686
+ display: flex;
1687
+ -ms-flex-direction: column;
1688
+ flex-direction: column;
 
 
 
 
 
 
 
 
 
 
1689
  padding-left: 0;
1690
  margin-bottom: 0;
1691
  list-style: none;
1692
+ }
1693
+
1694
+ .navbar-nav .nav-link {
1695
+ padding-right: 0;
1696
+ padding-left: 0;
1697
+ }
1698
+
1699
+ .navbar-nav .dropdown-menu {
1700
+ position: static;
1701
+ float: none;
1702
+ }
1703
+
1704
+ .navbar-text {
1705
+ display: inline-block;
1706
+ padding-top: 0.5rem;
1707
+ padding-bottom: 0.5rem;
1708
+ }
1709
+
1710
+ .navbar-collapse {
1711
+ -ms-flex-preferred-size: 100%;
1712
+ flex-basis: 100%;
1713
+ -ms-flex-positive: 1;
1714
+ flex-grow: 1;
1715
+ -ms-flex-align: center;
1716
+ align-items: center;
1717
+ }
1718
+
1719
+ .navbar-toggler {
1720
+ padding: 0.25rem 0.75rem;
1721
+ font-size: 1.25rem;
1722
+ line-height: 1;
1723
  background-color: transparent;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1724
  border: 1px solid transparent;
1725
+ border-radius: 0.25rem;
1726
+ }
1727
+
1728
+ .navbar-toggler:hover, .navbar-toggler:focus {
1729
+ text-decoration: none;
1730
+ }
1731
+
1732
+ .navbar-toggler-icon {
1733
+ display: inline-block;
1734
+ width: 1.5em;
1735
+ height: 1.5em;
1736
+ vertical-align: middle;
1737
+ content: "";
1738
+ background: no-repeat center center;
1739
+ background-size: 100% 100%;
1740
+ }*/
1741
+ /*@media (max-width: 575.98px) {*/
1742
+ /* .navbar-expand-sm > .container,*/
1743
+ /* .navbar-expand-sm > .container-fluid {*/
1744
+ /* padding-right: 0;*/
1745
+ /* padding-left: 0;*/
1746
+ /* }*/
1747
+ /*}*/
1748
+ /*@media (min-width: 576px) {*/
1749
+ /* .navbar-expand-sm {*/
1750
+ /* -ms-flex-flow: row nowrap;*/
1751
+ /* flex-flow: row nowrap;*/
1752
+ /* -ms-flex-pack: start;*/
1753
+ /* justify-content: flex-start;*/
1754
+ /* }*/
1755
+ /* .navbar-expand-sm .navbar-nav {*/
1756
+ /* -ms-flex-direction: row;*/
1757
+ /* flex-direction: row;*/
1758
+ /* }*/
1759
+ /* .navbar-expand-sm .navbar-nav .dropdown-menu {*/
1760
+ /* position: absolute;*/
1761
+ /* }*/
1762
+ /* .navbar-expand-sm .navbar-nav .nav-link {*/
1763
+ /* padding-right: 0.5rem;*/
1764
+ /* padding-left: 0.5rem;*/
1765
+ /* }*/
1766
+ /* .navbar-expand-sm > .container,*/
1767
+ /* .navbar-expand-sm > .container-fluid {*/
1768
+ /* -ms-flex-wrap: nowrap;*/
1769
+ /* flex-wrap: nowrap;*/
1770
+ /* }*/
1771
+ /* .navbar-expand-sm .navbar-collapse {*/
1772
+ /* display: -ms-flexbox !important;*/
1773
+ /* display: flex !important;*/
1774
+ /* -ms-flex-preferred-size: auto;*/
1775
+ /* flex-basis: auto;*/
1776
+ /* }*/
1777
+ /* .navbar-expand-sm .navbar-toggler {*/
1778
+ /* display: none;*/
1779
+ /* }*/
1780
+ /*}*/
1781
+ /*@media (max-width: 767.98px) {*/
1782
+ /* .navbar-expand-md > .container,*/
1783
+ /* .navbar-expand-md > .container-fluid {*/
1784
+ /* padding-right: 0;*/
1785
+ /* padding-left: 0;*/
1786
+ /* }*/
1787
+ /*}*/
1788
+ /*@media (min-width: 768px) {*/
1789
+ /* .navbar-expand-md {*/
1790
+ /* -ms-flex-flow: row nowrap;*/
1791
+ /* flex-flow: row nowrap;*/
1792
+ /* -ms-flex-pack: start;*/
1793
+ /* justify-content: flex-start;*/
1794
+ /* }*/
1795
+ /* .navbar-expand-md .navbar-nav {*/
1796
+ /* -ms-flex-direction: row;*/
1797
+ /* flex-direction: row;*/
1798
+ /* }*/
1799
+ /* .navbar-expand-md .navbar-nav .dropdown-menu {*/
1800
+ /* position: absolute;*/
1801
+ /* }*/
1802
+ /* .navbar-expand-md .navbar-nav .nav-link {*/
1803
+ /* padding-right: 0.5rem;*/
1804
+ /* padding-left: 0.5rem;*/
1805
+ /* }*/
1806
+ /* .navbar-expand-md > .container,*/
1807
+ /* .navbar-expand-md > .container-fluid {*/
1808
+ /* -ms-flex-wrap: nowrap;*/
1809
+ /* flex-wrap: nowrap;*/
1810
+ /* }*/
1811
+ /* .navbar-expand-md .navbar-collapse {*/
1812
+ /* display: -ms-flexbox !important;*/
1813
+ /* display: flex !important;*/
1814
+ /* -ms-flex-preferred-size: auto;*/
1815
+ /* flex-basis: auto;*/
1816
+ /* }*/
1817
+ /* .navbar-expand-md .navbar-toggler {*/
1818
+ /* display: none;*/
1819
+ /* }*/
1820
+ /*}*/
1821
+ /*@media (max-width: 991.98px) {*/
1822
+ /* .navbar-expand-lg > .container,*/
1823
+ /* .navbar-expand-lg > .container-fluid {*/
1824
+ /* padding-right: 0;*/
1825
+ /* padding-left: 0;*/
1826
+ /* }*/
1827
+ /*}*/
1828
+ /*@media (min-width: 992px) {*/
1829
+ /* .navbar-expand-lg {*/
1830
+ /* -ms-flex-flow: row nowrap;*/
1831
+ /* flex-flow: row nowrap;*/
1832
+ /* -ms-flex-pack: start;*/
1833
+ /* justify-content: flex-start;*/
1834
+ /* }*/
1835
+ /* .navbar-expand-lg .navbar-nav {*/
1836
+ /* -ms-flex-direction: row;*/
1837
+ /* flex-direction: row;*/
1838
+ /* }*/
1839
+ /* .navbar-expand-lg .navbar-nav .dropdown-menu {*/
1840
+ /* position: absolute;*/
1841
+ /* }*/
1842
+ /* .navbar-expand-lg .navbar-nav .nav-link {*/
1843
+ /* padding-right: 0.5rem;*/
1844
+ /* padding-left: 0.5rem;*/
1845
+ /* }*/
1846
+ /* .navbar-expand-lg > .container,*/
1847
+ /* .navbar-expand-lg > .container-fluid {*/
1848
+ /* -ms-flex-wrap: nowrap;*/
1849
+ /* flex-wrap: nowrap;*/
1850
+ /* }*/
1851
+ /* .navbar-expand-lg .navbar-collapse {*/
1852
+ /* display: -ms-flexbox !important;*/
1853
+ /* display: flex !important;*/
1854
+ /* -ms-flex-preferred-size: auto;*/
1855
+ /* flex-basis: auto;*/
1856
+ /* }*/
1857
+ /* .navbar-expand-lg .navbar-toggler {*/
1858
+ /* display: none;*/
1859
+ /* }*/
1860
+ /*}*/
1861
+ /*
1862
+ @media (max-width: 1199.98px) {
1863
+ .navbar-expand-xl > .container,
1864
+ .navbar-expand-xl > .container-fluid {
1865
+ padding-right: 0;
1866
+ padding-left: 0;
1867
+ }
1868
+ }
1869
+
1870
+ @media (min-width: 1200px) {
1871
+ .navbar-expand-xl {
1872
+ -ms-flex-flow: row nowrap;
1873
+ flex-flow: row nowrap;
1874
+ -ms-flex-pack: start;
1875
+ justify-content: flex-start;
1876
+ }
1877
+ .navbar-expand-xl .navbar-nav {
1878
+ -ms-flex-direction: row;
1879
+ flex-direction: row;
1880
+ }
1881
+ .navbar-expand-xl .navbar-nav .dropdown-menu {
1882
+ position: absolute;
1883
+ }
1884
+ .navbar-expand-xl .navbar-nav .nav-link {
1885
+ padding-right: 0.5rem;
1886
+ padding-left: 0.5rem;
1887
+ }
1888
+ .navbar-expand-xl > .container,
1889
+ .navbar-expand-xl > .container-fluid {
1890
+ -ms-flex-wrap: nowrap;
1891
+ flex-wrap: nowrap;
1892
+ }
1893
+ .navbar-expand-xl .navbar-collapse {
1894
+ display: -ms-flexbox !important;
1895
+ display: flex !important;
1896
+ -ms-flex-preferred-size: auto;
1897
+ flex-basis: auto;
1898
+ }
1899
+ .navbar-expand-xl .navbar-toggler {
1900
+ display: none;
1901
+ }
1902
+ }*/
1903
+ /*.navbar-expand {*/
1904
+ /* -ms-flex-flow: row nowrap;*/
1905
+ /* flex-flow: row nowrap;*/
1906
+ /* -ms-flex-pack: start;*/
1907
+ /* justify-content: flex-start;*/
1908
+ /*}*/
1909
+ /*.navbar-expand > .container,*/
1910
+ /*.navbar-expand > .container-fluid {*/
1911
+ /* padding-right: 0;*/
1912
+ /* padding-left: 0;*/
1913
+ /*}*/
1914
+ /*.navbar-expand .navbar-nav {*/
1915
+ /* -ms-flex-direction: row;*/
1916
+ /* flex-direction: row;*/
1917
+ /*}*/
1918
+ /*.navbar-expand .navbar-nav .dropdown-menu {*/
1919
+ /* position: absolute;*/
1920
+ /*}*/
1921
+ /*.navbar-expand .navbar-nav .nav-link {*/
1922
+ /* padding-right: 0.5rem;*/
1923
+ /* padding-left: 0.5rem;*/
1924
+ /*}*/
1925
+ /*.navbar-expand > .container,*/
1926
+ /*.navbar-expand > .container-fluid {*/
1927
+ /* -ms-flex-wrap: nowrap;*/
1928
+ /* flex-wrap: nowrap;*/
1929
+ /*}*/
1930
+ /*.navbar-expand .navbar-collapse {*/
1931
+ /* display: -ms-flexbox !important;*/
1932
+ /* display: flex !important;*/
1933
+ /* -ms-flex-preferred-size: auto;*/
1934
+ /* flex-basis: auto;*/
1935
+ /*}*/
1936
+ /*.navbar-expand .navbar-toggler {*/
1937
+ /* display: none;*/
1938
+ /*}*/
1939
+ /*
1940
+ .navbar-light .navbar-brand {
1941
+ color: rgba(0, 0, 0, 0.9);
1942
+ }
1943
+
1944
+ .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
1945
+ color: rgba(0, 0, 0, 0.9);
1946
+ }
1947
+
1948
+ .navbar-light .navbar-nav .nav-link {
1949
+ color: rgba(0, 0, 0, 0.5);
1950
+ }
1951
+
1952
+ .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
1953
+ color: rgba(0, 0, 0, 0.7);
1954
+ }
1955
+
1956
+ .navbar-light .navbar-nav .nav-link.disabled {
1957
+ color: rgba(0, 0, 0, 0.3);
1958
+ }
1959
+
1960
+ .navbar-light .navbar-nav .show > .nav-link,
1961
+ .navbar-light .navbar-nav .active > .nav-link,
1962
+ .navbar-light .navbar-nav .nav-link.show,
1963
+ .navbar-light .navbar-nav .nav-link.active {
1964
+ color: rgba(0, 0, 0, 0.9);
1965
+ }
1966
+
1967
+ .navbar-light .navbar-toggler {
1968
+ color: rgba(0, 0, 0, 0.5);
1969
+ border-color: rgba(0, 0, 0, 0.1);
1970
+ }*/
1971
+ /*.navbar-light .navbar-toggler-icon {*/
1972
+ /* background-image: url("data:image/svg+xml,%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");*/
1973
+ /*}*/
1974
+ /*
1975
+ .navbar-light .navbar-text {
1976
+ color: rgba(0, 0, 0, 0.5);
1977
+ }
1978
+
1979
+ .navbar-light .navbar-text a {
1980
+ color: rgba(0, 0, 0, 0.9);
1981
+ }
1982
+
1983
+ .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
1984
+ color: rgba(0, 0, 0, 0.9);
1985
+ }*/
1986
+ /*.navbar-dark .navbar-brand {*/
1987
+ /* color: #fff;*/
1988
+ /*}*/
1989
+ /*.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {*/
1990
+ /* color: #fff;*/
1991
+ /*}*/
1992
+ /*.navbar-dark .navbar-nav .nav-link {*/
1993
+ /* color: rgba(255, 255, 255, 0.5);*/
1994
+ /*}*/
1995
+ /*.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {*/
1996
+ /* color: rgba(255, 255, 255, 0.75);*/
1997
+ /*}*/
1998
+ /*.navbar-dark .navbar-nav .nav-link.disabled {*/
1999
+ /* color: rgba(255, 255, 255, 0.25);*/
2000
+ /*}*/
2001
+ /*.navbar-dark .navbar-nav .show > .nav-link,*/
2002
+ /*.navbar-dark .navbar-nav .active > .nav-link,*/
2003
+ /*.navbar-dark .navbar-nav .nav-link.show,*/
2004
+ /*.navbar-dark .navbar-nav .nav-link.active {*/
2005
+ /* color: #fff;*/
2006
+ /*}*/
2007
+ /*.navbar-dark .navbar-toggler {*/
2008
+ /* color: rgba(255, 255, 255, 0.5);*/
2009
+ /* border-color: rgba(255, 255, 255, 0.1);*/
2010
+ /*}*/
2011
+ /*.navbar-dark .navbar-toggler-icon {*/
2012
+ /* background-image: url("data:image/svg+xml,%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");*/
2013
+ /*}*/
2014
+ /*.navbar-dark .navbar-text {*/
2015
+ /* color: rgba(255, 255, 255, 0.5);*/
2016
+ /*}*/
2017
+ /*.navbar-dark .navbar-text a {*/
2018
+ /* color: #fff;*/
2019
+ /*}*/
2020
+ /*.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {*/
2021
+ /* color: #fff;*/
2022
+ /*}*/
2023
+ /*.card > hr {
2024
  margin-right: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2025
  margin-left: 0;
2026
+ }*/
2027
+ /*.card-subtitle {*/
2028
+ /* margin-top: -0.375rem;*/
2029
+ /* margin-bottom: 0;*/
2030
+ /*}*/
2031
+ /*.card-text:last-child {*/
2032
+ /* margin-bottom: 0;*/
2033
+ /*}*/
2034
+ /*.card-link:hover {*/
2035
+ /* text-decoration: none;*/
2036
+ /*}*/
2037
+ /*.card-link + .card-link {*/
2038
+ /* margin-left: 1.25rem;*/
2039
+ /*}*/
2040
+ /*.card-img-overlay {*/
2041
+ /* position: absolute;*/
2042
+ /* top: 0;*/
2043
+ /* right: 0;*/
2044
+ /* bottom: 0;*/
2045
+ /* left: 0;*/
2046
+ /* padding: 1.25rem;*/
2047
+ /*}*/
2048
+ /*.card-img-bottom {*/
2049
+ /* width: 100%;*/
2050
+ /* border-bottom-right-radius: calc(0.25rem - 1px);*/
2051
+ /* border-bottom-left-radius: calc(0.25rem - 1px);*/
2052
+ /*}*/
2053
+ /*.card-deck {*/
2054
+ /* display: -ms-flexbox;*/
2055
+ /* display: flex;*/
2056
+ /* -ms-flex-direction: column;*/
2057
+ /* flex-direction: column;*/
2058
+ /*}*/
2059
+ /*.card-deck .card {*/
2060
+ /* margin-bottom: 15px;*/
2061
+ /*}*/
2062
+ /*@media (min-width: 576px) {*/
2063
+ /* .card-deck {*/
2064
+ /* -ms-flex-flow: row wrap;*/
2065
+ /* flex-flow: row wrap;*/
2066
+ /* margin-right: -15px;*/
2067
+ /* margin-left: -15px;*/
2068
+ /* }*/
2069
+ /* .card-deck .card {*/
2070
+ /* display: -ms-flexbox;*/
2071
+ /* display: flex;*/
2072
+ /* -ms-flex: 1 0 0%;*/
2073
+ /* flex: 1 0 0%;*/
2074
+ /* -ms-flex-direction: column;*/
2075
+ /* flex-direction: column;*/
2076
+ /* margin-right: 15px;*/
2077
+ /* margin-bottom: 0;*/
2078
+ /* margin-left: 15px;*/
2079
+ /* }*/
2080
+ /*}*/
2081
+ /*.card-group {*/
2082
+ /* display: -ms-flexbox;*/
2083
+ /* display: flex;*/
2084
+ /* -ms-flex-direction: column;*/
2085
+ /* flex-direction: column;*/
2086
+ /*}*/
2087
+ /*.card-group > .card {*/
2088
+ /* margin-bottom: 15px;*/
2089
+ /*}*/
2090
+ /*@media (min-width: 576px) {*/
2091
+ /* .card-group {*/
2092
+ /* -ms-flex-flow: row wrap;*/
2093
+ /* flex-flow: row wrap;*/
2094
+ /* }*/
2095
+ /* .card-group > .card {*/
2096
+ /* -ms-flex: 1 0 0%;*/
2097
+ /* flex: 1 0 0%;*/
2098
+ /* margin-bottom: 0;*/
2099
+ /* }*/
2100
+ /* .card-group > .card + .card {*/
2101
+ /* margin-left: 0;*/
2102
+ /* border-left: 0;*/
2103
+ /* }*/
2104
+ /* .card-group > .card:not(:last-child) {*/
2105
+ /* border-top-right-radius: 0;*/
2106
+ /* border-bottom-right-radius: 0;*/
2107
+ /* }*/
2108
+ /* .card-group > .card:not(:last-child) .card-img-top,*/
2109
+ /* .card-group > .card:not(:last-child) .card-header {*/
2110
+ /* border-top-right-radius: 0;*/
2111
+ /* }*/
2112
+ /* .card-group > .card:not(:last-child) .card-img-bottom,*/
2113
+ /* .card-group > .card:not(:last-child) .card-footer {*/
2114
+ /* border-bottom-right-radius: 0;*/
2115
+ /* }*/
2116
+ /* .card-group > .card:not(:first-child) {*/
2117
+ /* border-top-left-radius: 0;*/
2118
+ /* border-bottom-left-radius: 0;*/
2119
+ /* }*/
2120
+ /* .card-group > .card:not(:first-child) .card-img-top,*/
2121
+ /* .card-group > .card:not(:first-child) .card-header {*/
2122
+ /* border-top-left-radius: 0;*/
2123
+ /* }*/
2124
+ /* .card-group > .card:not(:first-child) .card-img-bottom,*/
2125
+ /* .card-group > .card:not(:first-child) .card-footer {*/
2126
+ /* border-bottom-left-radius: 0;*/
2127
+ /* }*/
2128
+ /*}*/
2129
+ /*.card-columns .card {*/
2130
+ /* margin-bottom: 0.75rem;*/
2131
+ /*}*/
2132
+ /*@media (min-width: 576px) {*/
2133
+ /* .card-columns {*/
2134
+ /* -webkit-column-count: 3;*/
2135
+ /* -moz-column-count: 3;*/
2136
+ /* column-count: 3;*/
2137
+ /* -webkit-column-gap: 1.25rem;*/
2138
+ /* -moz-column-gap: 1.25rem;*/
2139
+ /* column-gap: 1.25rem;*/
2140
+ /* orphans: 1;*/
2141
+ /* widows: 1;*/
2142
+ /* }*/
2143
+ /* .card-columns .card {*/
2144
+ /* display: inline-block;*/
2145
+ /* width: 100%;*/
2146
+ /* }*/
2147
+ /*}*/
2148
+ /*.breadcrumb {*/
2149
+ /* display: -ms-flexbox;*/
2150
+ /* display: flex;*/
2151
+ /* -ms-flex-wrap: wrap;*/
2152
+ /* flex-wrap: wrap;*/
2153
+ /* padding: 0.75rem 1rem;*/
2154
+ /* margin-bottom: 1rem;*/
2155
+ /* list-style: none;*/
2156
+ /* background-color: #e9ecef;*/
2157
+ /* border-radius: 0.25rem;*/
2158
+ /*}*/
2159
+ /*.breadcrumb-item + .breadcrumb-item {*/
2160
+ /* padding-left: 0.5rem;*/
2161
+ /*}*/
2162
+ /*.breadcrumb-item + .breadcrumb-item::before {*/
2163
+ /* display: inline-block;*/
2164
+ /* padding-right: 0.5rem;*/
2165
+ /* color: var(--color-secondary);*/
2166
+ /* content: "/";*/
2167
+ /*}*/
2168
+ /*.breadcrumb-item + .breadcrumb-item:hover::before {*/
2169
+ /* text-decoration: underline;*/
2170
+ /*}*/
2171
+ /*.breadcrumb-item + .breadcrumb-item:hover::before {*/
2172
+ /* text-decoration: none;*/
2173
+ /*}*/
2174
+ /*.breadcrumb-item.active {*/
2175
+ /* color: var(--color-secondary);*/
2176
+ /*}*/
2177
+ /*.page-item:first-child .page-link {*/
2178
+ /* margin-left: 0;*/
2179
+ /* border-top-left-radius: 0.25rem;*/
2180
+ /* border-bottom-left-radius: 0.25rem;*/
2181
+ /*}*/
2182
+ /*.page-item:last-child .page-link {*/
2183
+ /* border-top-right-radius: 0.25rem;*/
2184
+ /* border-bottom-right-radius: 0.25rem;*/
2185
+ /*}*/
2186
+ /*.page-item.active .page-link {*/
2187
+ /* z-index: 1;*/
2188
+ /* color: #fff;*/
2189
+ /* background-color: var(--color-primary);*/
2190
+ /* border-color: var(--color-primary);*/
2191
+ /*}*/
2192
+ /*.page-item.disabled .page-link {*/
2193
+ /* color: var(--color-secondary);*/
2194
+ /* pointer-events: none;*/
2195
+ /* cursor: auto;*/
2196
+ /* background-color: #fff;*/
2197
+ /* border-color: #dee2e6;*/
2198
+ /*}*/
2199
+ /*.pagination-lg .page-link {*/
2200
+ /* padding: 0.75rem 1.5rem;*/
2201
+ /* font-size: 1.25rem;*/
2202
+ /* line-height: 1.5;*/
2203
+ /*}*/
2204
+ /*.pagination-lg .page-item:first-child .page-link {*/
2205
+ /* border-top-left-radius: 0.3rem;*/
2206
+ /* border-bottom-left-radius: 0.3rem;*/
2207
+ /*}*/
2208
+ /*.pagination-lg .page-item:last-child .page-link {*/
2209
+ /* border-top-right-radius: 0.3rem;*/
2210
+ /* border-bottom-right-radius: 0.3rem;*/
2211
+ /*}*/
2212
+ /*.pagination-sm .page-link {*/
2213
+ /* padding: 0.25rem 0.5rem;*/
2214
+ /* font-size: 0.875rem;*/
2215
+ /* line-height: 1.5;*/
2216
+ /*}*/
2217
+ /*.pagination-sm .page-item:first-child .page-link {*/
2218
+ /* border-top-left-radius: 0.2rem;*/
2219
+ /* border-bottom-left-radius: 0.2rem;*/
2220
+ /*}*/
2221
+ /*.pagination-sm .page-item:last-child .page-link {*/
2222
+ /* border-top-right-radius: 0.2rem;*/
2223
+ /* border-bottom-right-radius: 0.2rem;*/
2224
+ /*}*/
2225
+ /*.badge-pill {*/
2226
+ /* padding-right: 0.6em;*/
2227
+ /* padding-left: 0.6em;*/
2228
+ /* border-radius: 10rem;*/
2229
+ /*}*/
2230
+ /*.badge-primary {*/
2231
+ /* color: #fff;*/
2232
+ /* background-color: var(--color-primary);*/
2233
+ /*}*/
2234
+ /*a.badge-primary:hover, a.badge-primary:focus {*/
2235
+ /* color: #fff;*/
2236
+ /* background-color: #0062cc;*/
2237
+ /*}*/
2238
+ /*a.badge-primary:focus, a.badge-primary.focus {*/
2239
+ /* outline: 0;*/
2240
+ /* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);*/
2241
+ /*}*/
2242
+ /*.badge-light {*/
2243
+ /* color: #212529;*/
2244
+ /* background-color: #f8f9fa;*/
2245
+ /*}*/
2246
+ /*a.badge-light:hover, a.badge-light:focus {*/
2247
+ /* color: #212529;*/
2248
+ /* background-color: #dae0e5;*/
2249
+ /*}*/
2250
+ /*a.badge-light:focus, a.badge-light.focus {*/
2251
+ /* outline: 0;*/
2252
+ /* box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);*/
2253
+ /*}*/
2254
+ /*.badge-dark {*/
2255
+ /* color: #fff;*/
2256
+ /* background-color: #343a40;*/
2257
+ /*}*/
2258
+ /*a.badge-dark:hover, a.badge-dark:focus {*/
2259
+ /* color: #fff;*/
2260
+ /* background-color: #1d2124;*/
2261
+ /*}*/
2262
+ /*a.badge-dark:focus, a.badge-dark.focus {*/
2263
+ /* outline: 0;*/
2264
+ /* box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);*/
2265
+ /*}*/
2266
+ /*.jumbotron {*/
2267
+ /* padding: 2rem 1rem;*/
2268
+ /* margin-bottom: 2rem;*/
2269
+ /* background-color: #e9ecef;*/
2270
+ /* border-radius: 0.3rem;*/
2271
+ /*}*/
2272
+ /*@media (min-width: 576px) {*/
2273
+ /* .jumbotron {*/
2274
+ /* padding: 4rem 2rem;*/
2275
+ /* }*/
2276
+ /*}*/
2277
+ /*.jumbotron-fluid {*/
2278
+ /* padding-right: 0;*/
2279
+ /* padding-left: 0;*/
2280
+ /* border-radius: 0;*/
2281
+ /*}*/
2282
+ /*.alert-heading {*/
2283
+ /* color: inherit;*/
2284
+ /*}*/
2285
+ /*.alert-dismissible {*/
2286
+ /* padding-right: 4rem;*/
2287
+ /*}*/
2288
+ /*.alert-dismissible .close {*/
2289
+ /* position: absolute;*/
2290
+ /* top: 0;*/
2291
+ /* right: 0;*/
2292
+ /* padding: 0.75rem 1.25rem;*/
2293
+ /* color: inherit;*/
2294
+ /*}*/
2295
+ /*.alert-primary hr {*/
2296
+ /* border-top-color: #9fcdff;*/
2297
+ /*}*/
2298
+ /*.alert-primary .alert-link {*/
2299
+ /* color: #002752;*/
2300
+ /*}*/
2301
+ /*.alert-secondary {*/
2302
+ /* color: #383d41;*/
2303
+ /* background-color: #e2e3e5;*/
2304
+ /* border-color: #d6d8db;*/
2305
+ /*}*/
2306
+ /*.alert-secondary hr {*/
2307
+ /* border-top-color: #c8cbcf;*/
2308
+ /*}*/
2309
+ /*.alert-secondary .alert-link {*/
2310
+ /* color: #202326;*/
2311
+ /*}*/
2312
+ /*.alert-success hr {*/
2313
+ /* border-top-color: #b1dfbb;*/
2314
+ /*}*/
2315
+ /*.alert-success .alert-link {*/
2316
+ /* color: #0b2e13;*/
2317
+ /*}*/
2318
+ /*.alert-info hr {*/
2319
+ /* border-top-color: #abdde5;*/
2320
+ /*}*/
2321
+ /*.alert-info .alert-link {*/
2322
+ /* color: #062c33;*/
2323
+ /*}*/
2324
+ /*.alert-warning hr {*/
2325
+ /* border-top-color: #ffe8a1;*/
2326
+ /*}*/
2327
+ /*.alert-warning .alert-link {*/
2328
+ /* color: #533f03;*/
2329
+ /*}*/
2330
+ /*.alert-danger hr {*/
2331
+ /* border-top-color: #f1b0b7;*/
2332
+ /*}*/
2333
+ /*.alert-danger .alert-link {*/
2334
+ /* color: #491217;*/
2335
+ /*}*/
2336
+ /*.alert-light {*/
2337
+ /* color: #818182;*/
2338
+ /* background-color: #fefefe;*/
2339
+ /* border-color: #fdfdfe;*/
2340
+ /*}*/
2341
+ /*.alert-light hr {*/
2342
+ /* border-top-color: #ececf6;*/
2343
+ /*}*/
2344
+ /*.alert-light .alert-link {*/
2345
+ /* color: #686868;*/
2346
+ /*}*/
2347
+ /*.alert-dark {*/
2348
+ /* color: #1b1e21;*/
2349
+ /* background-color: #d6d8d9;*/
2350
+ /* border-color: #c6c8ca;*/
2351
+ /*}*/
2352
+ /*.alert-dark hr {*/
2353
+ /* border-top-color: #b9bbbe;*/
2354
+ /*}*/
2355
+ /*.alert-dark .alert-link {*/
2356
+ /* color: #040505;*/
2357
+ /*}*/
2358
+ /*@-webkit-keyframes progress-bar-stripes {*/
2359
+ /* from {*/
2360
+ /* background-position: 1rem 0;*/
2361
+ /* }*/
2362
+ /* to {*/
2363
+ /* background-position: 0 0;*/
2364
+ /* }*/
2365
+ /*}*/
2366
+ /*@keyframes progress-bar-stripes {*/
2367
+ /* from {*/
2368
+ /* background-position: 1rem 0;*/
2369
+ /* }*/
2370
+ /* to {*/
2371
+ /* background-position: 0 0;*/
2372
+ /* }*/
2373
+ /*}*/
2374
+ /*
2375
+ .progress {
2376
+ display: -ms-flexbox;
2377
+ display: flex;
2378
+ height: 1rem;
2379
+ overflow: hidden;
2380
+ font-size: 0.75rem;
2381
+ background-color: #e9ecef;
2382
+ border-radius: 0.25rem;
2383
+ }
2384
+
2385
+ .progress-bar {
2386
+ display: -ms-flexbox;
2387
+ display: flex;
2388
+ -ms-flex-direction: column;
2389
+ flex-direction: column;
2390
+ -ms-flex-pack: center;
2391
+ justify-content: center;
2392
+ color: #fff;
2393
  text-align: center;
2394
+ white-space: nowrap;
2395
+ background-color: var(--color-primary);
2396
+ transition: width 0.6s ease;
2397
+ }
2398
+
2399
+ @media (prefers-reduced-motion: reduce) {
2400
+ .progress-bar {
2401
+ transition: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2402
  }
2403
+ }
2404
+
2405
+ .progress-bar-striped {
2406
+ 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);
2407
+ background-size: 1rem 1rem;
2408
+ }
2409
+
2410
+ .progress-bar-animated {
2411
+ -webkit-animation: progress-bar-stripes 1s linear infinite;
2412
+ animation: progress-bar-stripes 1s linear infinite;
2413
+ }
2414
+
2415
+ @media (prefers-reduced-motion: reduce) {
2416
+ .progress-bar-animated {
2417
+ -webkit-animation: none;
2418
+ animation: none;
2419
+ }
2420
+ }*/
2421
+ /*.list-group-item-action {*/
2422
+ /* width: 100%;*/
2423
+ /* color: #495057;*/
2424
+ /* text-align: inherit;*/
2425
+ /*}*/
2426
+ /*.list-group-item-action:hover, .list-group-item-action:focus {*/
2427
+ /* z-index: 1;*/
2428
+ /* color: #495057;*/
2429
+ /* text-decoration: none;*/
2430
+ /* background-color: #f8f9fa;*/
2431
+ /*}*/
2432
+ /*.list-group-item-action:active {*/
2433
+ /* color: #212529;*/
2434
+ /* background-color: #e9ecef;*/
2435
+ /*}*/
2436
+ /*.list-group-item.disabled, .list-group-item:disabled {*/
2437
+ /* color: var(--color-secondary);*/
2438
+ /* pointer-events: none;*/
2439
+ /* background-color: #fff;*/
2440
+ /*}*/
2441
+ /*.list-group-horizontal {*/
2442
+ /* -ms-flex-direction: row;*/
2443
+ /* flex-direction: row;*/
2444
+ /*}*/
2445
+ /*.list-group-horizontal .list-group-item {*/
2446
+ /* margin-right: -1px;*/
2447
+ /* margin-bottom: 0;*/
2448
+ /*}*/
2449
+ /*.list-group-horizontal .list-group-item:first-child {*/
2450
+ /* border-top-left-radius: 0.25rem;*/
2451
+ /* border-bottom-left-radius: 0.25rem;*/
2452
+ /* border-top-right-radius: 0;*/
2453
+ /*}*/
2454
+ /*.list-group-horizontal .list-group-item:last-child {*/
2455
+ /* margin-right: 0;*/
2456
+ /* border-top-right-radius: 0.25rem;*/
2457
+ /* border-bottom-right-radius: 0.25rem;*/
2458
+ /* border-bottom-left-radius: 0;*/
2459
+ /*}*/
2460
+ /*@media (min-width: 576px) {*/
2461
+ /* .list-group-horizontal-sm {*/
2462
+ /* -ms-flex-direction: row;*/
2463
+ /* flex-direction: row;*/
2464
+ /* }*/
2465
+ /* .list-group-horizontal-sm .list-group-item {*/
2466
+ /* margin-right: -1px;*/
2467
+ /* margin-bottom: 0;*/
2468
+ /* }*/
2469
+ /* .list-group-horizontal-sm .list-group-item:first-child {*/
2470
+ /* border-top-left-radius: 0.25rem;*/
2471
+ /* border-bottom-left-radius: 0.25rem;*/
2472
+ /* border-top-right-radius: 0;*/
2473
+ /* }*/
2474
+ /* .list-group-horizontal-sm .list-group-item:last-child {*/
2475
+ /* margin-right: 0;*/
2476
+ /* border-top-right-radius: 0.25rem;*/
2477
+ /* border-bottom-right-radius: 0.25rem;*/
2478
+ /* border-bottom-left-radius: 0;*/
2479
+ /* }*/
2480
+ /*}*/
2481
+ /*@media (min-width: 768px) {*/
2482
+ /* .list-group-horizontal-md {*/
2483
+ /* -ms-flex-direction: row;*/
2484
+ /* flex-direction: row;*/
2485
+ /* }*/
2486
+ /* .list-group-horizontal-md .list-group-item {*/
2487
+ /* margin-right: -1px;*/
2488
+ /* margin-bottom: 0;*/
2489
+ /* }*/
2490
+ /* .list-group-horizontal-md .list-group-item:first-child {*/
2491
+ /* border-top-left-radius: 0.25rem;*/
2492
+ /* border-bottom-left-radius: 0.25rem;*/
2493
+ /* border-top-right-radius: 0;*/
2494
+ /* }*/
2495
+ /* .list-group-horizontal-md .list-group-item:last-child {*/
2496
+ /* margin-right: 0;*/
2497
+ /* border-top-right-radius: 0.25rem;*/
2498
+ /* border-bottom-right-radius: 0.25rem;*/
2499
+ /* border-bottom-left-radius: 0;*/
2500
+ /* }*/
2501
+ /*}*/
2502
+ /*@media (min-width: 992px) {*/
2503
+ /* .list-group-horizontal-lg {*/
2504
+ /* -ms-flex-direction: row;*/
2505
+ /* flex-direction: row;*/
2506
+ /* }*/
2507
+ /* .list-group-horizontal-lg .list-group-item {*/
2508
+ /* margin-right: -1px;*/
2509
+ /* margin-bottom: 0;*/
2510
+ /* }*/
2511
+ /* .list-group-horizontal-lg .list-group-item:first-child {*/
2512
+ /* border-top-left-radius: 0.25rem;*/
2513
+ /* border-bottom-left-radius: 0.25rem;*/
2514
+ /* border-top-right-radius: 0;*/
2515
+ /* }*/
2516
+ /* .list-group-horizontal-lg .list-group-item:last-child {*/
2517
+ /* margin-right: 0;*/
2518
+ /* border-top-right-radius: 0.25rem;*/
2519
+ /* border-bottom-right-radius: 0.25rem;*/
2520
+ /* border-bottom-left-radius: 0;*/
2521
+ /* }*/
2522
+ /*}*/
2523
+ /*@media (min-width: 1200px) {*/
2524
+ /* .list-group-horizontal-xl {*/
2525
+ /* -ms-flex-direction: row;*/
2526
+ /* flex-direction: row;*/
2527
+ /* }*/
2528
+ /* .list-group-horizontal-xl .list-group-item {*/
2529
+ /* margin-right: -1px;*/
2530
+ /* margin-bottom: 0;*/
2531
+ /* }*/
2532
+ /* .list-group-horizontal-xl .list-group-item:first-child {*/
2533
+ /* border-top-left-radius: 0.25rem;*/
2534
+ /* border-bottom-left-radius: 0.25rem;*/
2535
+ /* border-top-right-radius: 0;*/
2536
+ /* }*/
2537
+ /* .list-group-horizontal-xl .list-group-item:last-child {*/
2538
+ /* margin-right: 0;*/
2539
+ /* border-top-right-radius: 0.25rem;*/
2540
+ /* border-bottom-right-radius: 0.25rem;*/
2541
+ /* border-bottom-left-radius: 0;*/
2542
+ /* }*/
2543
+ /*}*/
2544
+ /*.list-group-item-primary {*/
2545
+ /* color: #004085;*/
2546
+ /* background-color: #b8daff;*/
2547
+ /*}*/
2548
+ /*.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {*/
2549
+ /* color: #004085;*/
2550
+ /* background-color: #9fcdff;*/
2551
+ /*}*/
2552
+ /*.list-group-item-primary.list-group-item-action.active {*/
2553
+ /* color: #fff;*/
2554
+ /* background-color: #004085;*/
2555
+ /* border-color: #004085;*/
2556
+ /*}*/
2557
+ /*.list-group-item-secondary {*/
2558
+ /* color: #383d41;*/
2559
+ /* background-color: #d6d8db;*/
2560
+ /*}*/
2561
+ /*.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {*/
2562
+ /* color: #383d41;*/
2563
+ /* background-color: #c8cbcf;*/
2564
+ /*}*/
2565
+ /*.list-group-item-secondary.list-group-item-action.active {*/
2566
+ /* color: #fff;*/
2567
+ /* background-color: #383d41;*/
2568
+ /* border-color: #383d41;*/
2569
+ /*}*/
2570
+ /*.list-group-item-success {*/
2571
+ /* color: #155724;*/
2572
+ /* background-color: #c3e6cb;*/
2573
+ /*}*/
2574
+ /*.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {*/
2575
+ /* color: #155724;*/
2576
+ /* background-color: #b1dfbb;*/
2577
+ /*}*/
2578
+ /*.list-group-item-success.list-group-item-action.active {*/
2579
+ /* color: #fff;*/
2580
+ /* background-color: #155724;*/
2581
+ /* border-color: #155724;*/
2582
+ /*}*/
2583
+ /*.list-group-item-info {*/
2584
+ /* color: #0c5460;*/
2585
+ /* background-color: #bee5eb;*/
2586
+ /*}*/
2587
+ /*.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {*/
2588
+ /* color: #0c5460;*/
2589
+ /* background-color: #abdde5;*/
2590
+ /*}*/
2591
+ /*.list-group-item-info.list-group-item-action.active {*/
2592
+ /* color: #fff;*/
2593
+ /* background-color: #0c5460;*/
2594
+ /* border-color: #0c5460;*/
2595
+ /*}*/
2596
+ /*.list-group-item-warning {*/
2597
+ /* color: #856404;*/
2598
+ /* background-color: #ffeeba;*/
2599
+ /*}*/
2600
+ /*.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {*/
2601
+ /* color: #856404;*/
2602
+ /* background-color: #ffe8a1;*/
2603
+ /*}*/
2604
+ /*.list-group-item-warning.list-group-item-action.active {*/
2605
+ /* color: #fff;*/
2606
+ /* background-color: #856404;*/
2607
+ /* border-color: #856404;*/
2608
+ /*}*/
2609
+ /*.list-group-item-danger {*/
2610
+ /* color: #721c24;*/
2611
+ /* background-color: #f5c6cb;*/
2612
+ /*}*/
2613
+ /*.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {*/
2614
+ /* color: #721c24;*/
2615
+ /* background-color: #f1b0b7;*/
2616
+ /*}*/
2617
+ /*.list-group-item-danger.list-group-item-action.active {*/
2618
+ /* color: #fff;*/
2619
+ /* background-color: #721c24;*/
2620
+ /* border-color: #721c24;*/
2621
+ /*}*/
2622
+ /*.list-group-item-light {*/
2623
+ /* color: #818182;*/
2624
+ /* background-color: #fdfdfe;*/
2625
+ /*}*/
2626
+ /*.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {*/
2627
+ /* color: #818182;*/
2628
+ /* background-color: #ececf6;*/
2629
+ /*}*/
2630
+ /*.list-group-item-light.list-group-item-action.active {*/
2631
+ /* color: #fff;*/
2632
+ /* background-color: #818182;*/
2633
+ /* border-color: #818182;*/
2634
+ /*}*/
2635
+ /*.list-group-item-dark {*/
2636
+ /* color: #1b1e21;*/
2637
+ /* background-color: #c6c8ca;*/
2638
+ /*}*/
2639
+ /*.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {*/
2640
+ /* color: #1b1e21;*/
2641
+ /* background-color: #b9bbbe;*/
2642
+ /*}*/
2643
+ /*.list-group-item-dark.list-group-item-action.active {*/
2644
+ /* color: #fff;*/
2645
+ /* background-color: #1b1e21;*/
2646
+ /* border-color: #1b1e21;*/
2647
+ /*}*/
2648
+ /*
2649
+
2650
+ .close {
2651
+ float: right;
2652
+ font-size: 1.5rem;
2653
+ font-weight: 700;
2654
+ line-height: 1;
2655
+ color: #000;
2656
+ text-shadow: 0 1px 0 #fff;
2657
+ opacity: .5;
2658
+ }
2659
+
2660
+ .close:hover {
2661
+ color: #000;
2662
+ text-decoration: none;
2663
+ }
2664
+
2665
+ .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
2666
+ opacity: .75;
2667
+ }
2668
+
2669
+ button.close {
2670
+ padding: 0;
2671
+ background-color: transparent;
2672
+ border: 0;
2673
+ -webkit-appearance: none;
2674
+ -moz-appearance: none;
2675
+ appearance: none;
2676
+ }
2677
+
2678
+ a.close.disabled {
2679
+ pointer-events: none;
2680
+ }
2681
+ */
2682
+ /*.toast {*/
2683
+ /* max-width: 350px;*/
2684
+ /* overflow: hidden;*/
2685
+ /* font-size: 0.875rem;*/
2686
+ /* background-color: rgba(255, 255, 255, 0.85);*/
2687
+ /* background-clip: padding-box;*/
2688
+ /* border: 1px solid rgba(0, 0, 0, 0.1);*/
2689
+ /* box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);*/
2690
+ /* -webkit-backdrop-filter: blur(10px);*/
2691
+ /* backdrop-filter: blur(10px);*/
2692
+ /* opacity: 0;*/
2693
+ /* border-radius: 0.25rem;*/
2694
+ /*}*/
2695
+ /*.toast:not(:last-child) {*/
2696
+ /* margin-bottom: 0.75rem;*/
2697
+ /*}*/
2698
+ /*.toast.showing {*/
2699
+ /* opacity: 1;*/
2700
+ /*}*/
2701
+ /*.toast.show {*/
2702
+ /* display: block;*/
2703
+ /* opacity: 1;*/
2704
+ /*}*/
2705
+ /*.toast.hide {*/
2706
+ /* display: none;*/
2707
+ /*}*/
2708
+ /*.toast-header {*/
2709
+ /* display: -ms-flexbox;*/
2710
+ /* display: flex;*/
2711
+ /* -ms-flex-align: center;*/
2712
+ /* align-items: center;*/
2713
+ /* padding: 0.25rem 0.75rem;*/
2714
+ /* color: var(--color-secondary);*/
2715
+ /* background-color: rgba(255, 255, 255, 0.85);*/
2716
+ /* background-clip: padding-box;*/
2717
+ /* border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
2718
+ /*}*/
2719
+ /*.toast-body {*/
2720
+ /* padding: 0.75rem;*/
2721
+ /*}*/
2722
+ /*.modal-scrollbar-measure {*/
2723
+ /* position: absolute;*/
2724
+ /* top: -9999px;*/
2725
+ /* width: 50px;*/
2726
+ /* height: 50px;*/
2727
+ /* overflow: scroll;*/
2728
+ /*}*/
2729
+ /*@media (min-width: 992px) {*/
2730
+ /* .modal-lg,*/
2731
+ /* .modal-xl {*/
2732
+ /* max-width: 800px;*/
2733
+ /* }*/
2734
+ /*}*/
2735
+ /*@media (min-width: 1200px) {*/
2736
+ /* .modal-xl {*/
2737
+ /* max-width: 1140px;*/
2738
+ /* }*/
2739
+ /*}*/
2740
+ /*
2741
+
2742
+ .popover {
2743
+ position: absolute;
2744
  top: 0;
2745
+ left: 0;
2746
+ z-index: 1060;
2747
+ display: block;
2748
+ max-width: 276px;
2749
+ 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";
2750
+ font-style: normal;
2751
+ font-weight: 400;
2752
+ line-height: 1.5;
2753
+ text-align: left;
2754
+ text-align: start;
 
 
 
 
 
 
2755
  text-decoration: none;
2756
+ text-shadow: none;
2757
+ text-transform: none;
2758
+ letter-spacing: normal;
2759
+ word-break: normal;
2760
+ word-spacing: normal;
2761
+ white-space: normal;
2762
+ line-break: auto;
2763
+ font-size: 0.875rem;
2764
+ word-wrap: break-word;
2765
+ background-color: #fff;
2766
+ background-clip: padding-box;
2767
+ border: 1px solid rgba(0, 0, 0, 0.2);
2768
+ border-radius: 0.3rem;
2769
+ }
2770
+
2771
+ .popover .arrow {
2772
+ position: absolute;
2773
  display: block;
2774
+ width: 1rem;
2775
+ height: 0.5rem;
2776
+ margin: 0 0.3rem;
2777
+ }
2778
+
2779
+ .popover .arrow::before, .popover .arrow::after {
2780
+ position: absolute;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2781
  display: block;
2782
+ content: "";
2783
+ border-color: transparent;
2784
+ border-style: solid;
2785
+ }
2786
+ */
2787
+ /*.bs-popover-top, .bs-popover-auto[x-placement^="top"] {*/
2788
+ /* margin-bottom: 0.5rem;*/
2789
+ /*}*/
2790
+ /*.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {*/
2791
+ /* bottom: calc((0.5rem + 1px) * -1);*/
2792
+ /*}*/
2793
+ /*.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {*/
2794
+ /* bottom: 0;*/
2795
+ /* border-width: 0.5rem 0.5rem 0;*/
2796
+ /* border-top-color: rgba(0, 0, 0, 0.25);*/
2797
+ /*}*/
2798
+ /*.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {*/
2799
+ /* bottom: 1px;*/
2800
+ /* border-width: 0.5rem 0.5rem 0;*/
2801
+ /* border-top-color: #fff;*/
2802
+ /*}*/
2803
+ /*.bs-popover-right, .bs-popover-auto[x-placement^="right"] {*/
2804
+ /* margin-left: 0.5rem;*/
2805
+ /*}*/
2806
+ /*.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {*/
2807
+ /* left: calc((0.5rem + 1px) * -1);*/
2808
+ /* width: 0.5rem;*/
2809
+ /* height: 1rem;*/
2810
+ /* margin: 0.3rem 0;*/
2811
+ /*}*/
2812
+ /*.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {*/
2813
+ /* left: 0;*/
2814
+ /* border-width: 0.5rem 0.5rem 0.5rem 0;*/
2815
+ /* border-right-color: rgba(0, 0, 0, 0.25);*/
2816
+ /*}*/
2817
+ /*.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {*/
2818
+ /* left: 1px;*/
2819
+ /* border-width: 0.5rem 0.5rem 0.5rem 0;*/
2820
+ /* border-right-color: #fff;*/
2821
+ /*}*/
2822
+ /*.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {*/
2823
+ /* margin-top: 0.5rem;*/
2824
+ /*}*/
2825
+ /*.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {*/
2826
+ /* top: calc((0.5rem + 1px) * -1);*/
2827
+ /*}*/
2828
+ /*.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {*/
2829
+ /* top: 0;*/
2830
+ /* border-width: 0 0.5rem 0.5rem 0.5rem;*/
2831
+ /* border-bottom-color: rgba(0, 0, 0, 0.25);*/
2832
+ /*}*/
2833
+ /*.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {*/
2834
+ /* top: 1px;*/
2835
+ /* border-width: 0 0.5rem 0.5rem 0.5rem;*/
2836
+ /* border-bottom-color: #fff;*/
2837
+ /*}*/
2838
+ /*.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {*/
2839
+ /* position: absolute;*/
2840
+ /* top: 0;*/
2841
+ /* left: 50%;*/
2842
+ /* display: block;*/
2843
+ /* width: 1rem;*/
2844
+ /* margin-left: -0.5rem;*/
2845
+ /* content: "";*/
2846
+ /* border-bottom: 1px solid #f7f7f7;*/
2847
+ /*}*/
2848
+ /*.bs-popover-left, .bs-popover-auto[x-placement^="left"] {*/
2849
+ /* margin-right: 0.5rem;*/
2850
+ /*}*/
2851
+ /*.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {*/
2852
+ /* right: calc((0.5rem + 1px) * -1);*/
2853
+ /* width: 0.5rem;*/
2854
+ /* height: 1rem;*/
2855
+ /* margin: 0.3rem 0;*/
2856
+ /*}*/
2857
+ /*.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {*/
2858
+ /* right: 0;*/
2859
+ /* border-width: 0.5rem 0 0.5rem 0.5rem;*/
2860
+ /* border-left-color: rgba(0, 0, 0, 0.25);*/
2861
+ /*}*/
2862
+ /*.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {*/
2863
+ /* right: 1px;*/
2864
+ /* border-width: 0.5rem 0 0.5rem 0.5rem;*/
2865
+ /* border-left-color: #fff;*/
2866
+ /*}*/
2867
+ /*.popover-header {
2868
+ padding: 0.5rem 0.75rem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2869
  margin-bottom: 0;
2870
+ font-size: 1rem;
2871
+ background-color: #f7f7f7;
2872
+ border-bottom: 1px solid #ebebeb;
2873
+ border-top-left-radius: calc(0.3rem - 1px);
2874
+ border-top-right-radius: calc(0.3rem - 1px);
2875
+ }
2876
+
2877
+ .popover-header:empty {
2878
+ display: none;
2879
+ }
2880
+
2881
+ .popover-body {
2882
+ padding: 0.5rem 0.75rem;
2883
+ color: #212529;
2884
+ }*/
2885
+ /*.carousel {*/
2886
+ /* position: relative;*/
2887
+ /*}*/
2888
+ /*.carousel.pointer-event {*/
2889
+ /* -ms-touch-action: pan-y;*/
2890
+ /* touch-action: pan-y;*/
2891
+ /*}*/
2892
+ /*.carousel-inner {*/
2893
+ /* position: relative;*/
2894
+ /* width: 100%;*/
2895
+ /* overflow: hidden;*/
2896
+ /*}*/
2897
+ /*.carousel-inner::after {*/
2898
+ /* display: block;*/
2899
+ /* clear: both;*/
2900
+ /* content: "";*/
2901
+ /*}*/
2902
+ /*.carousel-item {*/
2903
+ /* position: relative;*/
2904
+ /* display: none;*/
2905
+ /* float: left;*/
2906
+ /* width: 100%;*/
2907
+ /* margin-right: -100%;*/
2908
+ /* -webkit-backface-visibility: hidden;*/
2909
+ /* backface-visibility: hidden;*/
2910
+ /* transition: -webkit-transform 0.6s ease-in-out;*/
2911
+ /* transition: transform 0.6s ease-in-out;*/
2912
+ /* transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;*/
2913
+ /*}*/
2914
+ /*@media (prefers-reduced-motion: reduce) {*/
2915
+ /* .carousel-item {*/
2916
+ /* transition: none;*/
2917
+ /* }*/
2918
+ /*}*/
2919
+ /*.carousel-item.active,*/
2920
+ /*.carousel-item-next,*/
2921
+ /*.carousel-item-prev {*/
2922
+ /* display: block;*/
2923
+ /*}*/
2924
+ /*.carousel-item-next:not(.carousel-item-left),*/
2925
+ /*.active.carousel-item-right {*/
2926
+ /* -webkit-transform: translateX(100%);*/
2927
+ /* transform: translateX(100%);*/
2928
+ /*}*/
2929
+ /*.carousel-item-prev:not(.carousel-item-right),*/
2930
+ /*.active.carousel-item-left {*/
2931
+ /* -webkit-transform: translateX(-100%);*/
2932
+ /* transform: translateX(-100%);*/
2933
+ /*}*/
2934
+ /*.carousel-fade .carousel-item {*/
2935
+ /* opacity: 0;*/
2936
+ /* transition-property: opacity;*/
2937
+ /* -webkit-transform: none;*/
2938
+ /* transform: none;*/
2939
+ /*}*/
2940
+ /*.carousel-fade .carousel-item.active,*/
2941
+ /*.carousel-fade .carousel-item-next.carousel-item-left,*/
2942
+ /*.carousel-fade .carousel-item-prev.carousel-item-right {*/
2943
+ /* z-index: 1;*/
2944
+ /* opacity: 1;*/
2945
+ /*}*/
2946
+ /*.carousel-fade .active.carousel-item-left,*/
2947
+ /*.carousel-fade .active.carousel-item-right {*/
2948
+ /* z-index: 0;*/
2949
+ /* opacity: 0;*/
2950
+ /* transition: 0s 0.6s opacity;*/
2951
+ /*}*/
2952
+ /*@media (prefers-reduced-motion: reduce) {*/
2953
+ /* .carousel-fade .active.carousel-item-left,*/
2954
+ /* .carousel-fade .active.carousel-item-right {*/
2955
+ /* transition: none;*/
2956
+ /* }*/
2957
+ /*}*/
2958
+ /*.carousel-control-prev,*/
2959
+ /*.carousel-control-next {*/
2960
+ /* position: absolute;*/
2961
+ /* top: 0;*/
2962
+ /* bottom: 0;*/
2963
+ /* z-index: 1;*/
2964
+ /* display: -ms-flexbox;*/
2965
+ /* display: flex;*/
2966
+ /* -ms-flex-align: center;*/
2967
+ /* align-items: center;*/
2968
+ /* -ms-flex-pack: center;*/
2969
+ /* justify-content: center;*/
2970
+ /* width: 15%;*/
2971
+ /* color: #fff;*/
2972
+ /* text-align: center;*/
2973
+ /* opacity: 0.5;*/
2974
+ /* transition: opacity 0.15s ease;*/
2975
+ /*}*/
2976
+ /*@media (prefers-reduced-motion: reduce) {*/
2977
+ /* .carousel-control-prev,*/
2978
+ /* .carousel-control-next {*/
2979
+ /* transition: none;*/
2980
+ /* }*/
2981
+ /*}*/
2982
+ /*.carousel-control-prev:hover, .carousel-control-prev:focus,*/
2983
+ /*.carousel-control-next:hover,*/
2984
+ /*.carousel-control-next:focus {*/
2985
+ /* color: #fff;*/
2986
+ /* text-decoration: none;*/
2987
+ /* outline: 0;*/
2988
+ /* opacity: 0.9;*/
2989
+ /*}*/
2990
+ /*.carousel-control-prev {*/
2991
+ /* left: 0;*/
2992
+ /*}*/
2993
+ /*.carousel-control-next {*/
2994
+ /* right: 0;*/
2995
+ /*}*/
2996
+ /*.carousel-control-prev-icon,*/
2997
+ /*.carousel-control-next-icon {*/
2998
+ /* display: inline-block;*/
2999
+ /* width: 20px;*/
3000
+ /* height: 20px;*/
3001
+ /* background: no-repeat 50% / 100% 100%;*/
3002
+ /*}*/
3003
+ /*.carousel-control-prev-icon {*/
3004
+ /* background-image: url("data:image/svg+xml,%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");*/
3005
+ /*}*/
3006
+ /*.carousel-control-next-icon {*/
3007
+ /* background-image: url("data:image/svg+xml,%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");*/
3008
+ /*}*/
3009
+ /*.carousel-indicators {*/
3010
+ /* position: absolute;*/
3011
+ /* right: 0;*/
3012
+ /* bottom: 0;*/
3013
+ /* left: 0;*/
3014
+ /* z-index: 15;*/
3015
+ /* display: -ms-flexbox;*/
3016
+ /* display: flex;*/
3017
+ /* -ms-flex-pack: center;*/
3018
+ /* justify-content: center;*/
3019
+ /* padding-left: 0;*/
3020
+ /* margin-right: 15%;*/
3021
+ /* margin-left: 15%;*/
3022
+ /* list-style: none;*/
3023
+ /*}*/
3024
+ /*.carousel-indicators li {*/
3025
+ /* box-sizing: content-box;*/
3026
+ /* -ms-flex: 0 1 auto;*/
3027
+ /* flex: 0 1 auto;*/
3028
+ /* width: 30px;*/
3029
+ /* height: 3px;*/
3030
+ /* margin-right: 3px;*/
3031
+ /* margin-left: 3px;*/
3032
+ /* text-indent: -999px;*/
3033
+ /* cursor: pointer;*/
3034
+ /* background-color: #fff;*/
3035
+ /* background-clip: padding-box;*/
3036
+ /* border-top: 10px solid transparent;*/
3037
+ /* border-bottom: 10px solid transparent;*/
3038
+ /* opacity: .5;*/
3039
+ /* transition: opacity 0.6s ease;*/
3040
+ /*}*/
3041
+ /*@media (prefers-reduced-motion: reduce) {*/
3042
+ /* .carousel-indicators li {*/
3043
+ /* transition: none;*/
3044
+ /* }*/
3045
+ /*}*/
3046
+ /*.carousel-indicators .active {*/
3047
+ /* opacity: 1;*/
3048
+ /*}*/
3049
+ /*.carousel-caption {*/
3050
+ /* position: absolute;*/
3051
+ /* right: 15%;*/
3052
+ /* bottom: 20px;*/
3053
+ /* left: 15%;*/
3054
+ /* z-index: 10;*/
3055
+ /* padding-top: 20px;*/
3056
+ /* padding-bottom: 20px;*/
3057
+ /* color: #fff;*/
3058
+ /* text-align: center;*/
3059
+ /*}*/
3060
+ /*.spinner-border-sm {*/
3061
+ /* width: 1rem;*/
3062
+ /* height: 1rem;*/
3063
+ /* border-width: 0.2em;*/
3064
+ /*}*/
3065
+ /*.align-baseline {*/
3066
+ /* vertical-align: baseline !important;*/
3067
+ /*}*/
3068
+ /*.align-top {*/
3069
+ /* vertical-align: top !important;*/
3070
+ /*}*/
3071
+ /*.align-middle {*/
3072
+ /* vertical-align: middle !important;*/
3073
+ /*}*/
3074
+ /*.align-bottom {*/
3075
+ /* vertical-align: bottom !important;*/
3076
+ /*}*/
3077
+ /*.align-text-bottom {*/
3078
+ /* vertical-align: text-bottom !important;*/
3079
+ /*}*/
3080
+ /*.align-text-top {*/
3081
+ /* vertical-align: text-top !important;*/
3082
+ /*}*/
3083
+ /*a.bg-success:hover, a.bg-success:focus,*/
3084
+ /*button.bg-success:hover,*/
3085
+ /*button.bg-success:focus {*/
3086
+ /* background-color: #1e7e34 !important;*/
3087
+ /*}*/
3088
+ /*a.bg-info:hover, a.bg-info:focus,*/
3089
+ /*button.bg-info:hover,*/
3090
+ /*button.bg-info:focus {*/
3091
+ /* background-color: #117a8b !important;*/
3092
+ /*}*/
3093
+ /*a.bg-warning:hover, a.bg-warning:focus,*/
3094
+ /*button.bg-warning:hover,*/
3095
+ /*button.bg-warning:focus {*/
3096
+ /* background-color: #d39e00 !important;*/
3097
+ /*}*/
3098
+ /*.bg-light {*/
3099
+ /* background-color: #f8f9fa !important;*/
3100
+ /*}*/
3101
+ /*a.bg-light:hover, a.bg-light:focus,*/
3102
+ /*button.bg-light:hover,*/
3103
+ /*button.bg-light:focus {*/
3104
+ /* background-color: #dae0e5 !important;*/
3105
+ /*}*/
3106
+ /*.bg-dark {*/
3107
+ /* background-color: #343a40 !important;*/
3108
+ /*}*/
3109
+ /*a.bg-dark:hover, a.bg-dark:focus,*/
3110
+ /*button.bg-dark:hover,*/
3111
+ /*button.bg-dark:focus {*/
3112
+ /* background-color: #1d2124 !important;*/
3113
+ /*}*/
3114
+ /*.bg-transparent {*/
3115
+ /* background-color: transparent !important;*/
3116
+ /*}*/
3117
+ /*
3118
+ .border {
3119
+ border: 1px solid #dee2e6 !important;
3120
+ }
3121
+
3122
+ .border-top {
3123
+ border-top: 1px solid #dee2e6 !important;
3124
+ }
3125
+
3126
+ .border-right {
3127
+ border-right: 1px solid #dee2e6 !important;
3128
+ }
3129
+
3130
+ .border-bottom {
3131
+ border-bottom: 1px solid #dee2e6 !important;
3132
+ }
3133
+
3134
+ .border-left {
3135
+ border-left: 1px solid #dee2e6 !important;
3136
+ }
3137
+
3138
+ .border-0 {
3139
+ border: 0 !important;
3140
+ }
3141
+ */
3142
+ /*.border-top-0 {*/
3143
+ /* border-top: 0 !important;*/
3144
+ /*}*/
3145
+ /*.border-right-0 {*/
3146
+ /* border-right: 0 !important;*/
3147
+ /*}*/
3148
+ /*.border-bottom-0 {*/
3149
+ /* border-bottom: 0 !important;*/
3150
+ /*}*/
3151
+ /*.border-left-0 {*/
3152
+ /* border-left: 0 !important;*/
3153
+ /*}*/
3154
+ /*.border-primary {*/
3155
+ /* border-color: var(--color-primary) !important;*/
3156
+ /*}*/
3157
+ /*.border-secondary {*/
3158
+ /* border-color: var(--color-secondary) !important;*/
3159
+ /*}*/
3160
+ /*.border-success {*/
3161
+ /* border-color: var(--color-success) !important;*/
3162
+ /*}*/
3163
+ /*.border-info {*/
3164
+ /* border-color: var(--color-info) !important;*/
3165
+ /*}*/
3166
+ /*.border-warning {*/
3167
+ /* border-color: var(--color-warning) !important;*/
3168
+ /*}*/
3169
+ /*.border-danger {*/
3170
+ /* border-color: var(--color-danger) !important;*/
3171
+ /*}*/
3172
+ /*.border-light {*/
3173
+ /* border-color: #f8f9fa !important;*/
3174
+ /*}*/
3175
+ /*.border-dark {*/
3176
+ /* border-color: #343a40 !important;*/
3177
+ /*}*/
3178
+ /*.border-white {*/
3179
+ /* border-color: #fff !important;*/
3180
+ /*}*/
3181
+ /*.rounded-sm {*/
3182
+ /* border-radius: 0.2rem !important;*/
3183
+ /*}*/
3184
+ /*
3185
+ .rounded {
3186
+ border-radius: 0.25rem !important;
3187
+ }
3188
+ */
3189
+ /*.rounded-top {*/
3190
+ /* border-top-left-radius: 0.25rem !important;*/
3191
+ /* border-top-right-radius: 0.25rem !important;*/
3192
+ /*}*/
3193
+ /*.rounded-right {*/
3194
+ /* border-top-right-radius: 0.25rem !important;*/
3195
+ /* border-bottom-right-radius: 0.25rem !important;*/
3196
+ /*}*/
3197
+ /*.rounded-bottom {*/
3198
+ /* border-bottom-right-radius: 0.25rem !important;*/
3199
+ /* border-bottom-left-radius: 0.25rem !important;*/
3200
+ /*}*/
3201
+ /*.rounded-left {*/
3202
+ /* border-top-left-radius: 0.25rem !important;*/
3203
+ /* border-bottom-left-radius: 0.25rem !important;*/
3204
+ /*}*/
3205
+ /*.rounded-lg {*/
3206
+ /* border-radius: 0.3rem !important;*/
3207
+ /*}*/
3208
+ /*.rounded-circle {*/
3209
+ /* border-radius: 50% !important;*/
3210
+ /*}*/
3211
+ /*.rounded-pill {*/
3212
+ /* border-radius: 50rem !important;*/
3213
+ /*}*/
3214
+ /*.rounded-0 {*/
3215
+ /* border-radius: 0 !important;*/
3216
+ /*}*/
3217
+ /*.d-table {
3218
+ display: table !important;
3219
+ }
3220
+
3221
+ .d-table-row {
3222
+ display: table-row !important;
3223
+ }
3224
+
3225
+ .d-table-cell {
3226
+ display: table-cell !important;
3227
+ }*/
3228
+ /*@media print {*/
3229
+ /* .d-print-none {*/
3230
+ /* display: none !important;*/
3231
+ /* }*/
3232
+ /* .d-print-inline {*/
3233
+ /* display: inline !important;*/
3234
+ /* }*/
3235
+ /* .d-print-inline-block {*/
3236
+ /* display: inline-block !important;*/
3237
+ /* }*/
3238
+ /* .d-print-block {*/
3239
+ /* display: block !important;*/
3240
+ /* }*/
3241
+ /* .d-print-table {*/
3242
+ /* display: table !important;*/
3243
+ /* }*/
3244
+ /* .d-print-table-row {*/
3245
+ /* display: table-row !important;*/
3246
+ /* }*/
3247
+ /* .d-print-table-cell {*/
3248
+ /* display: table-cell !important;*/
3249
+ /* }*/
3250
+ /* .d-print-flex {*/
3251
+ /* display: -ms-flexbox !important;*/
3252
+ /* display: flex !important;*/
3253
+ /* }*/
3254
+ /* .d-print-inline-flex {*/
3255
+ /* display: -ms-inline-flexbox !important;*/
3256
+ /* display: inline-flex !important;*/
3257
+ /* }*/
3258
+ /*}*/
3259
+ /*.embed-responsive {*/
3260
+ /* position: relative;*/
3261
+ /* display: block;*/
3262
+ /* width: 100%;*/
3263
+ /* padding: 0;*/
3264
+ /* overflow: hidden;*/
3265
+ /*}*/
3266
+ /*.embed-responsive::before {*/
3267
+ /* display: block;*/
3268
+ /* content: "";*/
3269
+ /*}*/
3270
+ /*.embed-responsive .embed-responsive-item,*/
3271
+ /*.embed-responsive iframe,*/
3272
+ /*.embed-responsive embed,*/
3273
+ /*.embed-responsive object,*/
3274
+ /*.embed-responsive video {*/
3275
+ /* position: absolute;*/
3276
+ /* top: 0;*/
3277
+ /* bottom: 0;*/
3278
+ /* left: 0;*/
3279
+ /* width: 100%;*/
3280
+ /* height: 100%;*/
3281
+ /* border: 0;*/
3282
+ /*}*/
3283
+ /*.embed-responsive-21by9::before {*/
3284
+ /* padding-top: 42.857143%;*/
3285
+ /*}*/
3286
+ /*.embed-responsive-16by9::before {*/
3287
+ /* padding-top: 56.25%;*/
3288
+ /*}*/
3289
+ /*.embed-responsive-4by3::before {*/
3290
+ /* padding-top: 75%;*/
3291
+ /*}*/
3292
+ /*.embed-responsive-1by1::before {*/
3293
+ /* padding-top: 100%;*/
3294
+ /*}*/
3295
+ /*.float-none {*/
3296
+ /* float: none !important;*/
3297
+ /*}*/
3298
+ /*@media (min-width: 576px) {*/
3299
+ /* .float-sm-left {*/
3300
+ /* float: left !important;*/
3301
+ /* }*/
3302
+ /* .float-sm-right {*/
3303
+ /* float: right !important;*/
3304
+ /* }*/
3305
+ /* .float-sm-none {*/
3306
+ /* float: none !important;*/
3307
+ /* }*/
3308
+ /*}*/
3309
+ /*@media (min-width: 768px) {*/
3310
+ /* .float-md-left {*/
3311
+ /* float: left !important;*/
3312
+ /* }*/
3313
+ /* .float-md-right {*/
3314
+ /* float: right !important;*/
3315
+ /* }*/
3316
+ /* .float-md-none {*/
3317
+ /* float: none !important;*/
3318
+ /* }*/
3319
+ /*}*/
3320
+ /*@media (min-width: 992px) {*/
3321
+ /* .float-lg-left {*/
3322
+ /* float: left !important;*/
3323
+ /* }*/
3324
+ /* .float-lg-right {*/
3325
+ /* float: right !important;*/
3326
+ /* }*/
3327
+ /* .float-lg-none {*/
3328
+ /* float: none !important;*/
3329
+ /* }*/
3330
+ /*}*/
3331
+ /*@media (min-width: 1200px) {*/
3332
+ /* .float-xl-left {*/
3333
+ /* float: left !important;*/
3334
+ /* }*/
3335
+ /* .float-xl-right {*/
3336
+ /* float: right !important;*/
3337
+ /* }*/
3338
+ /* .float-xl-none {*/
3339
+ /* float: none !important;*/
3340
+ /* }*/
3341
+ /*}*/
3342
+ /*.overflow-auto {*/
3343
+ /* overflow: auto !important;*/
3344
+ /*}*/
3345
+ /*.overflow-hidden {*/
3346
+ /* overflow: hidden !important;*/
3347
+ /*}*/
3348
+ /*.position-static {*/
3349
+ /* position: static !important;*/
3350
+ /*}*/
3351
+ /*.position-fixed {*/
3352
+ /* position: fixed !important;*/
3353
+ /*}*/
3354
+ /*.position-sticky {*/
3355
+ /* position: -webkit-sticky !important;*/
3356
+ /* position: sticky !important;*/
3357
+ /*}*/
3358
+ /*@supports ((position: -webkit-sticky) or (position: sticky)) {*/
3359
+ /* .sticky-top {*/
3360
+ /* position: -webkit-sticky;*/
3361
+ /* position: sticky;*/
3362
+ /* top: 0;*/
3363
+ /* z-index: 1020;*/
3364
+ /* }*/
3365
+ /*}*/
3366
+ /*.sr-only {*/
3367
+ /* position: absolute;*/
3368
+ /* width: 1px;*/
3369
+ /* height: 1px;*/
3370
+ /* padding: 0;*/
3371
+ /* overflow: hidden;*/
3372
+ /* clip: rect(0, 0, 0, 0);*/
3373
+ /* white-space: nowrap;*/
3374
+ /* border: 0;*/
3375
+ /*}*/
3376
+ /*.sr-only-focusable:active, .sr-only-focusable:focus {*/
3377
+ /* position: static;*/
3378
+ /* width: auto;*/
3379
+ /* height: auto;*/
3380
+ /* overflow: visible;*/
3381
+ /* clip: auto;*/
3382
+ /* white-space: normal;*/
3383
+ /*}*/
3384
+ /*.shadow-sm {*/
3385
+ /* box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;*/
3386
+ /*}*/
3387
+ /*.shadow {*/
3388
+ /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;*/
3389
+ /*}*/
3390
+ /*.shadow-lg {*/
3391
+ /* box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;*/
3392
+ /*}*/
3393
+ /*.shadow-none {*/
3394
+ /* box-shadow: none !important;*/
3395
+ /*}*/
3396
+ /*.w-25 {*/
3397
+ /* width: 25% !important;*/
3398
+ /*}*/
3399
+ /*.w-50 {*/
3400
+ /* width: 50% !important;*/
3401
+ /*}*/
3402
+ /*.w-75 {*/
3403
+ /* width: 75% !important;*/
3404
+ /*}*/
3405
+ /*.w-auto {*/
3406
+ /* width: auto !important;*/
3407
+ /*}*/
3408
+ /*.h-25 {*/
3409
+ /* height: 25% !important;*/
3410
+ /*}*/
3411
+ /*.h-50 {*/
3412
+ /* height: 50% !important;*/
3413
+ /*}*/
3414
+ /*.h-75 {*/
3415
+ /* height: 75% !important;*/
3416
+ /*}*/
3417
+ /*.h-100 {*/
3418
+ /* height: 100% !important;*/
3419
+ /*}*/
3420
+ /*.h-auto {*/
3421
+ /* height: auto !important;*/
3422
+ /*}*/
3423
+ /*.mh-100 {*/
3424
+ /* max-height: 100% !important;*/
3425
+ /*}*/
3426
+ /*.min-vw-100 {*/
3427
+ /* min-width: 100vw !important;*/
3428
+ /*}*/
3429
+ /*.min-vh-100 {*/
3430
+ /* min-height: 100vh !important;*/
3431
+ /*}*/
3432
+ /*.vw-100 {*/
3433
+ /* width: 100vw !important;*/
3434
+ /*}*/
3435
+ /*.vh-100 {*/
3436
+ /* height: 100vh !important;*/
3437
+ /*}*/
3438
+ /*.stretched-link::after {*/
3439
+ /* position: absolute;*/
3440
+ /* top: 0;*/
3441
+ /* right: 0;*/
3442
+ /* bottom: 0;*/
3443
+ /* left: 0;*/
3444
+ /* z-index: 1;*/
3445
+ /* pointer-events: auto;*/
3446
+ /* content: "";*/
3447
+ /* background-color: rgba(0, 0, 0, 0);*/
3448
+ /*}*/
3449
+ /*@media (min-width: 576px) {*/
3450
+ /* .m-sm-0 {*/
3451
+ /* margin: 0 !important;*/
3452
+ /* }*/
3453
+ /* .mt-sm-0,*/
3454
+ /* .my-sm-0 {*/
3455
+ /* margin-top: 0 !important;*/
3456
+ /* }*/
3457
+ /* .mr-sm-0,*/
3458
+ /* .mx-sm-0 {*/
3459
+ /* margin-right: 0 !important;*/
3460
+ /* }*/
3461
+ /* .mb-sm-0,*/
3462
+ /* .my-sm-0 {*/
3463
+ /* margin-bottom: 0 !important;*/
3464
+ /* }*/
3465
+ /* .ml-sm-0,*/
3466
+ /* .mx-sm-0 {*/
3467
+ /* margin-left: 0 !important;*/
3468
+ /* }*/
3469
+ /* .m-sm-1 {*/
3470
+ /* margin: 0.25rem !important;*/
3471
+ /* }*/
3472
+ /* .mt-sm-1,*/
3473
+ /* .my-sm-1 {*/
3474
+ /* margin-top: 0.25rem !important;*/
3475
+ /* }*/
3476
+ /* .mr-sm-1,*/
3477
+ /* .mx-sm-1 {*/
3478
+ /* margin-right: 0.25rem !important;*/
3479
+ /* }*/
3480
+ /* .mb-sm-1,*/
3481
+ /* .my-sm-1 {*/
3482
+ /* margin-bottom: 0.25rem !important;*/
3483
+ /* }*/
3484
+ /* .ml-sm-1,*/
3485
+ /* .mx-sm-1 {*/
3486
+ /* margin-left: 0.25rem !important;*/
3487
+ /* }*/
3488
+ /* .m-sm-2 {*/
3489
+ /* margin: 0.5rem !important;*/
3490
+ /* }*/
3491
+ /* .mt-sm-2,*/
3492
+ /* .my-sm-2 {*/
3493
+ /* margin-top: 0.5rem !important;*/
3494
+ /* }*/
3495
+ /* .mr-sm-2,*/
3496
+ /* .mx-sm-2 {*/
3497
+ /* margin-right: 0.5rem !important;*/
3498
+ /* }*/
3499
+ /* .mb-sm-2,*/
3500
+ /* .my-sm-2 {*/
3501
+ /* margin-bottom: 0.5rem !important;*/
3502
+ /* }*/
3503
+ /* .ml-sm-2,*/
3504
+ /* .mx-sm-2 {*/
3505
+ /* margin-left: 0.5rem !important;*/
3506
+ /* }*/
3507
+ /* .m-sm-3 {*/
3508
+ /* margin: 1rem !important;*/
3509
+ /* }*/
3510
+ /* .mt-sm-3,*/
3511
+ /* .my-sm-3 {*/
3512
+ /* margin-top: 1rem !important;*/
3513
+ /* }*/
3514
+ /* .mr-sm-3,*/
3515
+ /* .mx-sm-3 {*/
3516
+ /* margin-right: 1rem !important;*/
3517
+ /* }*/
3518
+ /* .mb-sm-3,*/
3519
+ /* .my-sm-3 {*/
3520
+ /* margin-bottom: 1rem !important;*/
3521
+ /* }*/
3522
+ /* .ml-sm-3,*/
3523
+ /* .mx-sm-3 {*/
3524
+ /* margin-left: 1rem !important;*/
3525
+ /* }*/
3526
+ /* .m-sm-4 {*/
3527
+ /* margin: 1.5rem !important;*/
3528
+ /* }*/
3529
+ /* .mt-sm-4,*/
3530
+ /* .my-sm-4 {*/
3531
+ /* margin-top: 1.5rem !important;*/
3532
+ /* }*/
3533
+ /* .mr-sm-4,*/
3534
+ /* .mx-sm-4 {*/
3535
+ /* margin-right: 1.5rem !important;*/
3536
+ /* }*/
3537
+ /* .mb-sm-4,*/
3538
+ /* .my-sm-4 {*/
3539
+ /* margin-bottom: 1.5rem !important;*/
3540
+ /* }*/
3541
+ /* .ml-sm-4,*/
3542
+ /* .mx-sm-4 {*/
3543
+ /* margin-left: 1.5rem !important;*/
3544
+ /* }*/
3545
+ /* .m-sm-5 {*/
3546
+ /* margin: 3rem !important;*/
3547
+ /* }*/
3548
+ /* .mt-sm-5,*/
3549
+ /* .my-sm-5 {*/
3550
+ /* margin-top: 3rem !important;*/
3551
+ /* }*/
3552
+ /* .mr-sm-5,*/
3553
+ /* .mx-sm-5 {*/
3554
+ /* margin-right: 3rem !important;*/
3555
+ /* }*/
3556
+ /* .mb-sm-5,*/
3557
+ /* .my-sm-5 {*/
3558
+ /* margin-bottom: 3rem !important;*/
3559
+ /* }*/
3560
+ /* .ml-sm-5,*/
3561
+ /* .mx-sm-5 {*/
3562
+ /* margin-left: 3rem !important;*/
3563
+ /* }*/
3564
+ /* .p-sm-0 {*/
3565
+ /* padding: 0 !important;*/
3566
+ /* }*/
3567
+ /* .pt-sm-0,*/
3568
+ /* .py-sm-0 {*/
3569
+ /* padding-top: 0 !important;*/
3570
+ /* }*/
3571
+ /* .pr-sm-0,*/
3572
+ /* .px-sm-0 {*/
3573
+ /* padding-right: 0 !important;*/
3574
+ /* }*/
3575
+ /* .pb-sm-0,*/
3576
+ /* .py-sm-0 {*/
3577
+ /* padding-bottom: 0 !important;*/
3578
+ /* }*/
3579
+ /* .pl-sm-0,*/
3580
+ /* .px-sm-0 {*/
3581
+ /* padding-left: 0 !important;*/
3582
+ /* }*/
3583
+ /* .p-sm-1 {*/
3584
+ /* padding: 0.25rem !important;*/
3585
+ /* }*/
3586
+ /* .pt-sm-1,*/
3587
+ /* .py-sm-1 {*/
3588
+ /* padding-top: 0.25rem !important;*/
3589
+ /* }*/
3590
+ /* .pr-sm-1,*/
3591
+ /* .px-sm-1 {*/
3592
+ /* padding-right: 0.25rem !important;*/
3593
+ /* }*/
3594
+ /* .pb-sm-1,*/
3595
+ /* .py-sm-1 {*/
3596
+ /* padding-bottom: 0.25rem !important;*/
3597
+ /* }*/
3598
+ /* .pl-sm-1,*/
3599
+ /* .px-sm-1 {*/
3600
+ /* padding-left: 0.25rem !important;*/
3601
+ /* }*/
3602
+ /* .p-sm-2 {*/
3603
+ /* padding: 0.5rem !important;*/
3604
+ /* }*/
3605
+ /* .pt-sm-2,*/
3606
+ /* .py-sm-2 {*/
3607
+ /* padding-top: 0.5rem !important;*/
3608
+ /* }*/
3609
+ /* .pr-sm-2,*/
3610
+ /* .px-sm-2 {*/
3611
+ /* padding-right: 0.5rem !important;*/
3612
+ /* }*/
3613
+ /* .pb-sm-2,*/
3614
+ /* .py-sm-2 {*/
3615
+ /* padding-bottom: 0.5rem !important;*/
3616
+ /* }*/
3617
+ /* .pl-sm-2,*/
3618
+ /* .px-sm-2 {*/
3619
+ /* padding-left: 0.5rem !important;*/
3620
+ /* }*/
3621
+ /* .p-sm-3 {*/
3622
+ /* padding: 1rem !important;*/
3623
+ /* }*/
3624
+ /* .pt-sm-3,*/
3625
+ /* .py-sm-3 {*/
3626
+ /* padding-top: 1rem !important;*/
3627
+ /* }*/
3628
+ /* .pr-sm-3,*/
3629
+ /* .px-sm-3 {*/
3630
+ /* padding-right: 1rem !important;*/
3631
+ /* }*/
3632
+ /* .pb-sm-3,*/
3633
+ /* .py-sm-3 {*/
3634
+ /* padding-bottom: 1rem !important;*/
3635
+ /* }*/
3636
+ /* .pl-sm-3,*/
3637
+ /* .px-sm-3 {*/
3638
+ /* padding-left: 1rem !important;*/
3639
+ /* }*/
3640
+ /* .p-sm-4 {*/
3641
+ /* padding: 1.5rem !important;*/
3642
+ /* }*/
3643
+ /* .pt-sm-4,*/
3644
+ /* .py-sm-4 {*/
3645
+ /* padding-top: 1.5rem !important;*/
3646
+ /* }*/
3647
+ /* .pr-sm-4,*/
3648
+ /* .px-sm-4 {*/
3649
+ /* padding-right: 1.5rem !important;*/
3650
+ /* }*/
3651
+ /* .pb-sm-4,*/
3652
+ /* .py-sm-4 {*/
3653
+ /* padding-bottom: 1.5rem !important;*/
3654
+ /* }*/
3655
+ /* .pl-sm-4,*/
3656
+ /* .px-sm-4 {*/
3657
+ /* padding-left: 1.5rem !important;*/
3658
+ /* }*/
3659
+ /* .p-sm-5 {*/
3660
+ /* padding: 3rem !important;*/
3661
+ /* }*/
3662
+ /* .pt-sm-5,*/
3663
+ /* .py-sm-5 {*/
3664
+ /* padding-top: 3rem !important;*/
3665
+ /* }*/
3666
+ /* .pr-sm-5,*/
3667
+ /* .px-sm-5 {*/
3668
+ /* padding-right: 3rem !important;*/
3669
+ /* }*/
3670
+ /* .pb-sm-5,*/
3671
+ /* .py-sm-5 {*/
3672
+ /* padding-bottom: 3rem !important;*/
3673
+ /* }*/
3674
+ /* .pl-sm-5,*/
3675
+ /* .px-sm-5 {*/
3676
+ /* padding-left: 3rem !important;*/
3677
+ /* }*/
3678
+ /* .m-sm-n1 {*/
3679
+ /* margin: -0.25rem !important;*/
3680
+ /* }*/
3681
+ /* .mt-sm-n1,*/
3682
+ /* .my-sm-n1 {*/
3683
+ /* margin-top: -0.25rem !important;*/
3684
+ /* }*/
3685
+ /* .mr-sm-n1,*/
3686
+ /* .mx-sm-n1 {*/
3687
+ /* margin-right: -0.25rem !important;*/
3688
+ /* }*/
3689
+ /* .mb-sm-n1,*/
3690
+ /* .my-sm-n1 {*/
3691
+ /* margin-bottom: -0.25rem !important;*/
3692
+ /* }*/
3693
+ /* .ml-sm-n1,*/
3694
+ /* .mx-sm-n1 {*/
3695
+ /* margin-left: -0.25rem !important;*/
3696
+ /* }*/
3697
+ /* .m-sm-n2 {*/
3698
+ /* margin: -0.5rem !important;*/
3699
+ /* }*/
3700
+ /* .mt-sm-n2,*/
3701
+ /* .my-sm-n2 {*/
3702
+ /* margin-top: -0.5rem !important;*/
3703
+ /* }*/
3704
+ /* .mr-sm-n2,*/
3705
+ /* .mx-sm-n2 {*/
3706
+ /* margin-right: -0.5rem !important;*/
3707
+ /* }*/
3708
+ /* .mb-sm-n2,*/
3709
+ /* .my-sm-n2 {*/
3710
+ /* margin-bottom: -0.5rem !important;*/
3711
+ /* }*/
3712
+ /* .ml-sm-n2,*/
3713
+ /* .mx-sm-n2 {*/
3714
+ /* margin-left: -0.5rem !important;*/
3715
+ /* }*/
3716
+ /* .m-sm-n3 {*/
3717
+ /* margin: -1rem !important;*/
3718
+ /* }*/
3719
+ /* .mt-sm-n3,*/
3720
+ /* .my-sm-n3 {*/
3721
+ /* margin-top: -1rem !important;*/
3722
+ /* }*/
3723
+ /* .mr-sm-n3,*/
3724
+ /* .mx-sm-n3 {*/
3725
+ /* margin-right: -1rem !important;*/
3726
+ /* }*/
3727
+ /* .mb-sm-n3,*/
3728
+ /* .my-sm-n3 {*/
3729
+ /* margin-bottom: -1rem !important;*/
3730
+ /* }*/
3731
+ /* .ml-sm-n3,*/
3732
+ /* .mx-sm-n3 {*/
3733
+ /* margin-left: -1rem !important;*/
3734
+ /* }*/
3735
+ /* .m-sm-n4 {*/
3736
+ /* margin: -1.5rem !important;*/
3737
+ /* }*/
3738
+ /* .mt-sm-n4,*/
3739
+ /* .my-sm-n4 {*/
3740
+ /* margin-top: -1.5rem !important;*/
3741
+ /* }*/
3742
+ /* .mr-sm-n4,*/
3743
+ /* .mx-sm-n4 {*/
3744
+ /* margin-right: -1.5rem !important;*/
3745
+ /* }*/
3746
+ /* .mb-sm-n4,*/
3747
+ /* .my-sm-n4 {*/
3748
+ /* margin-bottom: -1.5rem !important;*/
3749
+ /* }*/
3750
+ /* .ml-sm-n4,*/
3751
+ /* .mx-sm-n4 {*/
3752
+ /* margin-left: -1.5rem !important;*/
3753
+ /* }*/
3754
+ /* .m-sm-n5 {*/
3755
+ /* margin: -3rem !important;*/
3756
+ /* }*/
3757
+ /* .mt-sm-n5,*/
3758
+ /* .my-sm-n5 {*/
3759
+ /* margin-top: -3rem !important;*/
3760
+ /* }*/
3761
+ /* .mr-sm-n5,*/
3762
+ /* .mx-sm-n5 {*/
3763
+ /* margin-right: -3rem !important;*/
3764
+ /* }*/
3765
+ /* .mb-sm-n5,*/
3766
+ /* .my-sm-n5 {*/
3767
+ /* margin-bottom: -3rem !important;*/
3768
+ /* }*/
3769
+ /* .ml-sm-n5,*/
3770
+ /* .mx-sm-n5 {*/
3771
+ /* margin-left: -3rem !important;*/
3772
+ /* }*/
3773
+ /* .m-sm-auto {*/
3774
+ /* margin: auto !important;*/
3775
+ /* }*/
3776
+ /* .mt-sm-auto,*/
3777
+ /* .my-sm-auto {*/
3778
+ /* margin-top: auto !important;*/
3779
+ /* }*/
3780
+ /* .mr-sm-auto,*/
3781
+ /* .mx-sm-auto {*/
3782
+ /* margin-right: auto !important;*/
3783
+ /* }*/
3784
+ /* .mb-sm-auto,*/
3785
+ /* .my-sm-auto {*/
3786
+ /* margin-bottom: auto !important;*/
3787
+ /* }*/
3788
+ /* .ml-sm-auto,*/
3789
+ /* .mx-sm-auto {*/
3790
+ /* margin-left: auto !important;*/
3791
+ /* }*/
3792
+ /*}*/
3793
+ /*@media (min-width: 768px) {*/
3794
+ /* .m-md-0 {*/
3795
+ /* margin: 0 !important;*/
3796
+ /* }*/
3797
+ /* .mt-md-0,*/
3798
+ /* .my-md-0 {*/
3799
+ /* margin-top: 0 !important;*/
3800
+ /* }*/
3801
+ /* .mr-md-0,*/
3802
+ /* .mx-md-0 {*/
3803
+ /* margin-right: 0 !important;*/
3804
+ /* }*/
3805
+ /* .mb-md-0,*/
3806
+ /* .my-md-0 {*/
3807
+ /* margin-bottom: 0 !important;*/
3808
+ /* }*/
3809
+ /* .ml-md-0,*/
3810
+ /* .mx-md-0 {*/
3811
+ /* margin-left: 0 !important;*/
3812
+ /* }*/
3813
+ /* .m-md-1 {*/
3814
+ /* margin: 0.25rem !important;*/
3815
+ /* }*/
3816
+ /* .mt-md-1,*/
3817
+ /* .my-md-1 {*/
3818
+ /* margin-top: 0.25rem !important;*/
3819
+ /* }*/
3820
+ /* .mr-md-1,*/
3821
+ /* .mx-md-1 {*/
3822
+ /* margin-right: 0.25rem !important;*/
3823
+ /* }*/
3824
+ /* .mb-md-1,*/
3825
+ /* .my-md-1 {*/
3826
+ /* margin-bottom: 0.25rem !important;*/
3827
+ /* }*/
3828
+ /* .ml-md-1,*/
3829
+ /* .mx-md-1 {*/
3830
+ /* margin-left: 0.25rem !important;*/
3831
+ /* }*/
3832
+ /* .m-md-2 {*/
3833
+ /* margin: 0.5rem !important;*/
3834
+ /* }*/
3835
+ /* .mt-md-2,*/
3836
+ /* .my-md-2 {*/
3837
+ /* margin-top: 0.5rem !important;*/
3838
+ /* }*/
3839
+ /* .mr-md-2,*/
3840
+ /* .mx-md-2 {*/
3841
+ /* margin-right: 0.5rem !important;*/
3842
+ /* }*/
3843
+ /* .mb-md-2,*/
3844
+ /* .my-md-2 {*/
3845
+ /* margin-bottom: 0.5rem !important;*/
3846
+ /* }*/
3847
+ /* .ml-md-2,*/
3848
+ /* .mx-md-2 {*/
3849
+ /* margin-left: 0.5rem !important;*/
3850
+ /* }*/
3851
+ /* .m-md-3 {*/
3852
+ /* margin: 1rem !important;*/
3853
+ /* }*/
3854
+ /* .mt-md-3,*/
3855
+ /* .my-md-3 {*/
3856
+ /* margin-top: 1rem !important;*/
3857
+ /* }*/
3858
+ /* .mr-md-3,*/
3859
+ /* .mx-md-3 {*/
3860
+ /* margin-right: 1rem !important;*/
3861
+ /* }*/
3862
+ /* .mb-md-3,*/
3863
+ /* .my-md-3 {*/
3864
+ /* margin-bottom: 1rem !important;*/
3865
+ /* }*/
3866
+ /* .ml-md-3,*/
3867
+ /* .mx-md-3 {*/
3868
+ /* margin-left: 1rem !important;*/
3869
+ /* }*/
3870
+ /* .m-md-4 {*/
3871
+ /* margin: 1.5rem !important;*/
3872
+ /* }*/
3873
+ /* .mt-md-4,*/
3874
+ /* .my-md-4 {*/
3875
+ /* margin-top: 1.5rem !important;*/
3876
+ /* }*/
3877
+ /* .mr-md-4,*/
3878
+ /* .mx-md-4 {*/
3879
+ /* margin-right: 1.5rem !important;*/
3880
+ /* }*/
3881
+ /* .mb-md-4,*/
3882
+ /* .my-md-4 {*/
3883
+ /* margin-bottom: 1.5rem !important;*/
3884
+ /* }*/
3885
+ /* .ml-md-4,*/
3886
+ /* .mx-md-4 {*/
3887
+ /* margin-left: 1.5rem !important;*/
3888
+ /* }*/
3889
+ /* .m-md-5 {*/
3890
+ /* margin: 3rem !important;*/
3891
+ /* }*/
3892
+ /* .mt-md-5,*/
3893
+ /* .my-md-5 {*/
3894
+ /* margin-top: 3rem !important;*/
3895
+ /* }*/
3896
+ /* .mr-md-5,*/
3897
+ /* .mx-md-5 {*/
3898
+ /* margin-right: 3rem !important;*/
3899
+ /* }*/
3900
+ /* .mb-md-5,*/
3901
+ /* .my-md-5 {*/
3902
+ /* margin-bottom: 3rem !important;*/
3903
+ /* }*/
3904
+ /* .ml-md-5,*/
3905
+ /* .mx-md-5 {*/
3906
+ /* margin-left: 3rem !important;*/
3907
+ /* }*/
3908
+ /* .p-md-0 {*/
3909
+ /* padding: 0 !important;*/
3910
+ /* }*/
3911
+ /* .pt-md-0,*/
3912
+ /* .py-md-0 {*/
3913
+ /* padding-top: 0 !important;*/
3914
+ /* }*/
3915
+ /* .pr-md-0,*/
3916
+ /* .px-md-0 {*/
3917
+ /* padding-right: 0 !important;*/
3918
+ /* }*/
3919
+ /* .pb-md-0,*/
3920
+ /* .py-md-0 {*/
3921
+ /* padding-bottom: 0 !important;*/
3922
+ /* }*/
3923
+ /* .pl-md-0,*/
3924
+ /* .px-md-0 {*/
3925
+ /* padding-left: 0 !important;*/
3926
+ /* }*/
3927
+ /* .p-md-1 {*/
3928
+ /* padding: 0.25rem !important;*/
3929
+ /* }*/
3930
+ /* .pt-md-1,*/
3931
+ /* .py-md-1 {*/
3932
+ /* padding-top: 0.25rem !important;*/
3933
+ /* }*/
3934
+ /* .pr-md-1,*/
3935
+ /* .px-md-1 {*/
3936
+ /* padding-right: 0.25rem !important;*/
3937
+ /* }*/
3938
+ /* .pb-md-1,*/
3939
+ /* .py-md-1 {*/
3940
+ /* padding-bottom: 0.25rem !important;*/
3941
+ /* }*/
3942
+ /* .pl-md-1,*/
3943
+ /* .px-md-1 {*/
3944
+ /* padding-left: 0.25rem !important;*/
3945
+ /* }*/
3946
+ /* .p-md-2 {*/
3947
+ /* padding: 0.5rem !important;*/
3948
+ /* }*/
3949
+ /* .pt-md-2,*/
3950
+ /* .py-md-2 {*/
3951
+ /* padding-top: 0.5rem !important;*/
3952
+ /* }*/
3953
+ /* .pr-md-2,*/
3954
+ /* .px-md-2 {*/
3955
+ /* padding-right: 0.5rem !important;*/
3956
+ /* }*/
3957
+ /* .pb-md-2,*/
3958
+ /* .py-md-2 {*/
3959
+ /* padding-bottom: 0.5rem !important;*/
3960
+ /* }*/
3961
+ /* .pl-md-2,*/
3962
+ /* .px-md-2 {*/
3963
+ /* padding-left: 0.5rem !important;*/
3964
+ /* }*/
3965
+ /* .p-md-3 {*/
3966
+ /* padding: 1rem !important;*/
3967
+ /* }*/
3968
+ /* .pt-md-3,*/
3969
+ /* .py-md-3 {*/
3970
+ /* padding-top: 1rem !important;*/
3971
+ /* }*/
3972
+ /* .pr-md-3,*/
3973
+ /* .px-md-3 {*/
3974
+ /* padding-right: 1rem !important;*/
3975
+ /* }*/
3976
+ /* .pb-md-3,*/
3977
+ /* .py-md-3 {*/
3978
+ /* padding-bottom: 1rem !important;*/
3979
+ /* }*/
3980
+ /* .pl-md-3,*/
3981
+ /* .px-md-3 {*/
3982
+ /* padding-left: 1rem !important;*/
3983
+ /* }*/
3984
+ /* .p-md-4 {*/
3985
+ /* padding: 1.5rem !important;*/
3986
+ /* }*/
3987
+ /* .pt-md-4,*/
3988
+ /* .py-md-4 {*/
3989
+ /* padding-top: 1.5rem !important;*/
3990
+ /* }*/
3991
+ /* .pr-md-4,*/
3992
+ /* .px-md-4 {*/
3993
+ /* padding-right: 1.5rem !important;*/
3994
+ /* }*/
3995
+ /* .pb-md-4,*/
3996
+ /* .py-md-4 {*/
3997
+ /* padding-bottom: 1.5rem !important;*/
3998
+ /* }*/
3999
+ /* .pl-md-4,*/
4000
+ /* .px-md-4 {*/
4001
+ /* padding-left: 1.5rem !important;*/
4002
+ /* }*/
4003
+ /* .p-md-5 {*/
4004
+ /* padding: 3rem !important;*/
4005
+ /* }*/
4006
+ /* .pt-md-5,*/
4007
+ /* .py-md-5 {*/
4008
+ /* padding-top: 3rem !important;*/
4009
+ /* }*/
4010
+ /* .pr-md-5,*/
4011
+ /* .px-md-5 {*/
4012
+ /* padding-right: 3rem !important;*/
4013
+ /* }*/
4014
+ /* .pb-md-5,*/
4015
+ /* .py-md-5 {*/
4016
+ /* padding-bottom: 3rem !important;*/
4017
+ /* }*/
4018
+ /* .pl-md-5,*/
4019
+ /* .px-md-5 {*/
4020
+ /* padding-left: 3rem !important;*/
4021
+ /* }*/
4022
+ /* .m-md-n1 {*/
4023
+ /* margin: -0.25rem !important;*/
4024
+ /* }*/
4025
+ /* .mt-md-n1,*/
4026
+ /* .my-md-n1 {*/
4027
+ /* margin-top: -0.25rem !important;*/
4028
+ /* }*/
4029
+ /* .mr-md-n1,*/
4030
+ /* .mx-md-n1 {*/
4031
+ /* margin-right: -0.25rem !important;*/
4032
+ /* }*/
4033
+ /* .mb-md-n1,*/
4034
+ /* .my-md-n1 {*/
4035
+ /* margin-bottom: -0.25rem !important;*/
4036
+ /* }*/
4037
+ /* .ml-md-n1,*/
4038
+ /* .mx-md-n1 {*/
4039
+ /* margin-left: -0.25rem !important;*/
4040
+ /* }*/
4041
+ /* .m-md-n2 {*/
4042
+ /* margin: -0.5rem !important;*/
4043
+ /* }*/
4044
+ /* .mt-md-n2,*/
4045
+ /* .my-md-n2 {*/
4046
+ /* margin-top: -0.5rem !important;*/
4047
+ /* }*/
4048
+ /* .mr-md-n2,*/
4049
+ /* .mx-md-n2 {*/
4050
+ /* margin-right: -0.5rem !important;*/
4051
+ /* }*/
4052
+ /* .mb-md-n2,*/
4053
+ /* .my-md-n2 {*/
4054
+ /* margin-bottom: -0.5rem !important;*/
4055
+ /* }*/
4056
+ /* .ml-md-n2,*/
4057
+ /* .mx-md-n2 {*/
4058
+ /* margin-left: -0.5rem !important;*/
4059
+ /* }*/
4060
+ /* .m-md-n3 {*/
4061
+ /* margin: -1rem !important;*/
4062
+ /* }*/
4063
+ /* .mt-md-n3,*/
4064
+ /* .my-md-n3 {*/
4065
+ /* margin-top: -1rem !important;*/
4066
+ /* }*/
4067
+ /* .mr-md-n3,*/
4068
+ /* .mx-md-n3 {*/
4069
+ /* margin-right: -1rem !important;*/
4070
+ /* }*/
4071
+ /* .mb-md-n3,*/
4072
+ /* .my-md-n3 {*/
4073
+ /* margin-bottom: -1rem !important;*/
4074
+ /* }*/
4075
+ /* .ml-md-n3,*/
4076
+ /* .mx-md-n3 {*/
4077
+ /* margin-left: -1rem !important;*/
4078
+ /* }*/
4079
+ /* .m-md-n4 {*/
4080
+ /* margin: -1.5rem !important;*/
4081
+ /* }*/
4082
+ /* .mt-md-n4,*/
4083
+ /* .my-md-n4 {*/
4084
+ /* margin-top: -1.5rem !important;*/
4085
+ /* }*/
4086
+ /* .mr-md-n4,*/
4087
+ /* .mx-md-n4 {*/
4088
+ /* margin-right: -1.5rem !important;*/
4089
+ /* }*/
4090
+ /* .mb-md-n4,*/
4091
+ /* .my-md-n4 {*/
4092
+ /* margin-bottom: -1.5rem !important;*/
4093
+ /* }*/
4094
+ /* .ml-md-n4,*/
4095
+ /* .mx-md-n4 {*/
4096
+ /* margin-left: -1.5rem !important;*/
4097
+ /* }*/
4098
+ /* .m-md-n5 {*/
4099
+ /* margin: -3rem !important;*/
4100
+ /* }*/
4101
+ /* .mt-md-n5,*/
4102
+ /* .my-md-n5 {*/
4103
+ /* margin-top: -3rem !important;*/
4104
+ /* }*/
4105
+ /* .mr-md-n5,*/
4106
+ /* .mx-md-n5 {*/
4107
+ /* margin-right: -3rem !important;*/
4108
+ /* }*/
4109
+ /* .mb-md-n5,*/
4110
+ /* .my-md-n5 {*/
4111
+ /* margin-bottom: -3rem !important;*/
4112
+ /* }*/
4113
+ /* .ml-md-n5,*/
4114
+ /* .mx-md-n5 {*/
4115
+ /* margin-left: -3rem !important;*/
4116
+ /* }*/
4117
+ /* .m-md-auto {*/
4118
+ /* margin: auto !important;*/
4119
+ /* }*/
4120
+ /* .mt-md-auto,*/
4121
+ /* .my-md-auto {*/
4122
+ /* margin-top: auto !important;*/
4123
+ /* }*/
4124
+ /* .mr-md-auto,*/
4125
+ /* .mx-md-auto {*/
4126
+ /* margin-right: auto !important;*/
4127
+ /* }*/
4128
+ /* .mb-md-auto,*/
4129
+ /* .my-md-auto {*/
4130
+ /* margin-bottom: auto !important;*/
4131
+ /* }*/
4132
+ /* .ml-md-auto,*/
4133
+ /* .mx-md-auto {*/
4134
+ /* margin-left: auto !important;*/
4135
+ /* }*/
4136
+ /*}*/
4137
+ /*@media (min-width: 992px) {*/
4138
+ /* .m-lg-0 {*/
4139
+ /* margin: 0 !important;*/
4140
+ /* }*/
4141
+ /* .mt-lg-0,*/
4142
+ /* .my-lg-0 {*/
4143
+ /* margin-top: 0 !important;*/
4144
+ /* }*/
4145
+ /* .mr-lg-0,*/
4146
+ /* .mx-lg-0 {*/
4147
+ /* margin-right: 0 !important;*/
4148
+ /* }*/
4149
+ /* .mb-lg-0,*/
4150
+ /* .my-lg-0 {*/
4151
+ /* margin-bottom: 0 !important;*/
4152
+ /* }*/
4153
+ /* .ml-lg-0,*/
4154
+ /* .mx-lg-0 {*/
4155
+ /* margin-left: 0 !important;*/
4156
+ /* }*/
4157
+ /* .m-lg-1 {*/
4158
+ /* margin: 0.25rem !important;*/
4159
+ /* }*/
4160
+ /* .mt-lg-1,*/
4161
+ /* .my-lg-1 {*/
4162
+ /* margin-top: 0.25rem !important;*/
4163
+ /* }*/
4164
+ /* .mr-lg-1,*/
4165
+ /* .mx-lg-1 {*/
4166
+ /* margin-right: 0.25rem !important;*/
4167
+ /* }*/
4168
+ /* .mb-lg-1,*/
4169
+ /* .my-lg-1 {*/
4170
+ /* margin-bottom: 0.25rem !important;*/
4171
+ /* }*/
4172
+ /* .ml-lg-1,*/
4173
+ /* .mx-lg-1 {*/
4174
+ /* margin-left: 0.25rem !important;*/
4175
+ /* }*/
4176
+ /* .m-lg-2 {*/
4177
+ /* margin: 0.5rem !important;*/
4178
+ /* }*/
4179
+ /* .mt-lg-2,*/
4180
+ /* .my-lg-2 {*/
4181
+ /* margin-top: 0.5rem !important;*/
4182
+ /* }*/
4183
+ /* .mr-lg-2,*/
4184
+ /* .mx-lg-2 {*/
4185
+ /* margin-right: 0.5rem !important;*/
4186
+ /* }*/
4187
+ /* .mb-lg-2,*/
4188
+ /* .my-lg-2 {*/
4189
+ /* margin-bottom: 0.5rem !important;*/
4190
+ /* }*/
4191
+ /* .ml-lg-2,*/
4192
+ /* .mx-lg-2 {*/
4193
+ /* margin-left: 0.5rem !important;*/
4194
+ /* }*/
4195
+ /* .m-lg-3 {*/
4196
+ /* margin: 1rem !important;*/
4197
+ /* }*/
4198
+ /* .mt-lg-3,*/
4199
+ /* .my-lg-3 {*/
4200
+ /* margin-top: 1rem !important;*/
4201
+ /* }*/
4202
+ /* .mr-lg-3,*/
4203
+ /* .mx-lg-3 {*/
4204
+ /* margin-right: 1rem !important;*/
4205
+ /* }*/
4206
+ /* .mb-lg-3,*/
4207
+ /* .my-lg-3 {*/
4208
+ /* margin-bottom: 1rem !important;*/
4209
+ /* }*/
4210
+ /* .ml-lg-3,*/
4211
+ /* .mx-lg-3 {*/
4212
+ /* margin-left: 1rem !important;*/
4213
+ /* }*/
4214
+ /* .m-lg-4 {*/
4215
+ /* margin: 1.5rem !important;*/
4216
+ /* }*/
4217
+ /* .mt-lg-4,*/
4218
+ /* .my-lg-4 {*/
4219
+ /* margin-top: 1.5rem !important;*/
4220
+ /* }*/
4221
+ /* .mr-lg-4,*/
4222
+ /* .mx-lg-4 {*/
4223
+ /* margin-right: 1.5rem !important;*/
4224
+ /* }*/
4225
+ /* .mb-lg-4,*/
4226
+ /* .my-lg-4 {*/
4227
+ /* margin-bottom: 1.5rem !important;*/
4228
+ /* }*/
4229
+ /* .ml-lg-4,*/
4230
+ /* .mx-lg-4 {*/
4231
+ /* margin-left: 1.5rem !important;*/
4232
+ /* }*/
4233
+ /* .m-lg-5 {*/
4234
+ /* margin: 3rem !important;*/
4235
+ /* }*/
4236
+ /* .mt-lg-5,*/
4237
+ /* .my-lg-5 {*/
4238
+ /* margin-top: 3rem !important;*/
4239
+ /* }*/
4240
+ /* .mr-lg-5,*/
4241
+ /* .mx-lg-5 {*/
4242
+ /* margin-right: 3rem !important;*/
4243
+ /* }*/
4244
+ /* .mb-lg-5,*/
4245
+ /* .my-lg-5 {*/
4246
+ /* margin-bottom: 3rem !important;*/
4247
+ /* }*/
4248
+ /* .ml-lg-5,*/
4249
+ /* .mx-lg-5 {*/
4250
+ /* margin-left: 3rem !important;*/
4251
+ /* }*/
4252
+ /* .p-lg-0 {*/
4253
+ /* padding: 0 !important;*/
4254
+ /* }*/
4255
+ /* .pt-lg-0,*/
4256
+ /* .py-lg-0 {*/
4257
+ /* padding-top: 0 !important;*/
4258
+ /* }*/
4259
+ /* .pr-lg-0,*/
4260
+ /* .px-lg-0 {*/
4261
+ /* padding-right: 0 !important;*/
4262
+ /* }*/
4263
+ /* .pb-lg-0,*/
4264
+ /* .py-lg-0 {*/
4265
+ /* padding-bottom: 0 !important;*/
4266
+ /* }*/
4267
+ /* .pl-lg-0,*/
4268
+ /* .px-lg-0 {*/
4269
+ /* padding-left: 0 !important;*/
4270
+ /* }*/
4271
+ /* .p-lg-1 {*/
4272
+ /* padding: 0.25rem !important;*/
4273
+ /* }*/
4274
+ /* .pt-lg-1,*/
4275
+ /* .py-lg-1 {*/
4276
+ /* padding-top: 0.25rem !important;*/
4277
+ /* }*/
4278
+ /* .pr-lg-1,*/
4279
+ /* .px-lg-1 {*/
4280
+ /* padding-right: 0.25rem !important;*/
4281
+ /* }*/
4282
+ /* .pb-lg-1,*/
4283
+ /* .py-lg-1 {*/
4284
+ /* padding-bottom: 0.25rem !important;*/
4285
+ /* }*/
4286
+ /* .pl-lg-1,*/
4287
+ /* .px-lg-1 {*/
4288
+ /* padding-left: 0.25rem !important;*/
4289
+ /* }*/
4290
+ /* .p-lg-2 {*/
4291
+ /* padding: 0.5rem !important;*/
4292
+ /* }*/
4293
+ /* .pt-lg-2,*/
4294
+ /* .py-lg-2 {*/
4295
+ /* padding-top: 0.5rem !important;*/
4296
+ /* }*/
4297
+ /* .pr-lg-2,*/
4298
+ /* .px-lg-2 {*/
4299
+ /* padding-right: 0.5rem !important;*/
4300
+ /* }*/
4301
+ /* .pb-lg-2,*/
4302
+ /* .py-lg-2 {*/
4303
+ /* padding-bottom: 0.5rem !important;*/
4304
+ /* }*/
4305
+ /* .pl-lg-2,*/
4306
+ /* .px-lg-2 {*/
4307
+ /* padding-left: 0.5rem !important;*/
4308
+ /* }*/
4309
+ /* .p-lg-3 {*/
4310
+ /* padding: 1rem !important;*/
4311
+ /* }*/
4312
+ /* .pt-lg-3,*/
4313
+ /* .py-lg-3 {*/
4314
+ /* padding-top: 1rem !important;*/
4315
+ /* }*/
4316
+ /* .pr-lg-3,*/
4317
+ /* .px-lg-3 {*/
4318
+ /* padding-right: 1rem !important;*/
4319
+ /* }*/
4320
+ /* .pb-lg-3,*/
4321
+ /* .py-lg-3 {*/
4322
+ /* padding-bottom: 1rem !important;*/
4323
+ /* }*/
4324
+ /* .pl-lg-3,*/
4325
+ /* .px-lg-3 {*/
4326
+ /* padding-left: 1rem !important;*/
4327
+ /* }*/
4328
+ /* .p-lg-4 {*/
4329
+ /* padding: 1.5rem !important;*/
4330
+ /* }*/
4331
+ /* .pt-lg-4,*/
4332
+ /* .py-lg-4 {*/
4333
+ /* padding-top: 1.5rem !important;*/
4334
+ /* }*/
4335
+ /* .pr-lg-4,*/
4336
+ /* .px-lg-4 {*/
4337
+ /* padding-right: 1.5rem !important;*/
4338
+ /* }*/
4339
+ /* .pb-lg-4,*/
4340
+ /* .py-lg-4 {*/
4341
+ /* padding-bottom: 1.5rem !important;*/
4342
+ /* }*/
4343
+ /* .pl-lg-4,*/
4344
+ /* .px-lg-4 {*/
4345
+ /* padding-left: 1.5rem !important;*/
4346
+ /* }*/
4347
+ /* .p-lg-5 {*/
4348
+ /* padding: 3rem !important;*/
4349
+ /* }*/
4350
+ /* .pt-lg-5,*/
4351
+ /* .py-lg-5 {*/
4352
+ /* padding-top: 3rem !important;*/
4353
+ /* }*/
4354
+ /* .pr-lg-5,*/
4355
+ /* .px-lg-5 {*/
4356
+ /* padding-right: 3rem !important;*/
4357
+ /* }*/
4358
+ /* .pb-lg-5,*/
4359
+ /* .py-lg-5 {*/
4360
+ /* padding-bottom: 3rem !important;*/
4361
+ /* }*/
4362
+ /* .pl-lg-5,*/
4363
+ /* .px-lg-5 {*/
4364
+ /* padding-left: 3rem !important;*/
4365
+ /* }*/
4366
+ /* .m-lg-n1 {*/
4367
+ /* margin: -0.25rem !important;*/
4368
+ /* }*/
4369
+ /* .mt-lg-n1,*/
4370
+ /* .my-lg-n1 {*/
4371
+ /* margin-top: -0.25rem !important;*/
4372
+ /* }*/
4373
+ /* .mr-lg-n1,*/
4374
+ /* .mx-lg-n1 {*/
4375
+ /* margin-right: -0.25rem !important;*/
4376
+ /* }*/
4377
+ /* .mb-lg-n1,*/
4378
+ /* .my-lg-n1 {*/
4379
+ /* margin-bottom: -0.25rem !important;*/
4380
+ /* }*/
4381
+ /* .ml-lg-n1,*/
4382
+ /* .mx-lg-n1 {*/
4383
+ /* margin-left: -0.25rem !important;*/
4384
+ /* }*/
4385
+ /* .m-lg-n2 {*/
4386
+ /* margin: -0.5rem !important;*/
4387
+ /* }*/
4388
+ /* .mt-lg-n2,*/
4389
+ /* .my-lg-n2 {*/
4390
+ /* margin-top: -0.5rem !important;*/
4391
+ /* }*/
4392
+ /* .mr-lg-n2,*/
4393
+ /* .mx-lg-n2 {*/
4394
+ /* margin-right: -0.5rem !important;*/
4395
+ /* }*/
4396
+ /* .mb-lg-n2,*/
4397
+ /* .my-lg-n2 {*/
4398
+ /* margin-bottom: -0.5rem !important;*/
4399
+ /* }*/
4400
+ /* .ml-lg-n2,*/
4401
+ /* .mx-lg-n2 {*/
4402
+ /* margin-left: -0.5rem !important;*/
4403
+ /* }*/
4404
+ /* .m-lg-n3 {*/
4405
+ /* margin: -1rem !important;*/
4406
+ /* }*/
4407
+ /* .mt-lg-n3,*/
4408
+ /* .my-lg-n3 {*/
4409
+ /* margin-top: -1rem !important;*/
4410
+ /* }*/
4411
+ /* .mr-lg-n3,*/
4412
+ /* .mx-lg-n3 {*/
4413
+ /* margin-right: -1rem !important;*/
4414
+ /* }*/
4415
+ /* .mb-lg-n3,*/
4416
+ /* .my-lg-n3 {*/
4417
+ /* margin-bottom: -1rem !important;*/
4418
+ /* }*/
4419
+ /* .ml-lg-n3,*/
4420
+ /* .mx-lg-n3 {*/
4421
+ /* margin-left: -1rem !important;*/
4422
+ /* }*/
4423
+ /* .m-lg-n4 {*/
4424
+ /* margin: -1.5rem !important;*/
4425
+ /* }*/
4426
+ /* .mt-lg-n4,*/
4427
+ /* .my-lg-n4 {*/
4428
+ /* margin-top: -1.5rem !important;*/
4429
+ /* }*/
4430
+ /* .mr-lg-n4,*/
4431
+ /* .mx-lg-n4 {*/
4432
+ /* margin-right: -1.5rem !important;*/
4433
+ /* }*/
4434
+ /* .mb-lg-n4,*/
4435
+ /* .my-lg-n4 {*/
4436
+ /* margin-bottom: -1.5rem !important;*/
4437
+ /* }*/
4438
+ /* .ml-lg-n4,*/
4439
+ /* .mx-lg-n4 {*/
4440
+ /* margin-left: -1.5rem !important;*/
4441
+ /* }*/
4442
+ /* .m-lg-n5 {*/
4443
+ /* margin: -3rem !important;*/
4444
+ /* }*/
4445
+ /* .mt-lg-n5,*/
4446
+ /* .my-lg-n5 {*/
4447
+ /* margin-top: -3rem !important;*/
4448
+ /* }*/
4449
+ /* .mr-lg-n5,*/
4450
+ /* .mx-lg-n5 {*/
4451
+ /* margin-right: -3rem !important;*/
4452
+ /* }*/
4453
+ /* .mb-lg-n5,*/
4454
+ /* .my-lg-n5 {*/
4455
+ /* margin-bottom: -3rem !important;*/
4456
+ /* }*/
4457
+ /* .ml-lg-n5,*/
4458
+ /* .mx-lg-n5 {*/
4459
+ /* margin-left: -3rem !important;*/
4460
+ /* }*/
4461
+ /* .m-lg-auto {*/
4462
+ /* margin: auto !important;*/
4463
+ /* }*/
4464
+ /* .mt-lg-auto,*/
4465
+ /* .my-lg-auto {*/
4466
+ /* margin-top: auto !important;*/
4467
+ /* }*/
4468
+ /* .mr-lg-auto,*/
4469
+ /* .mx-lg-auto {*/
4470
+ /* margin-right: auto !important;*/
4471
+ /* }*/
4472
+ /* .mb-lg-auto,*/
4473
+ /* .my-lg-auto {*/
4474
+ /* margin-bottom: auto !important;*/
4475
+ /* }*/
4476
+ /* .ml-lg-auto,*/
4477
+ /* .mx-lg-auto {*/
4478
+ /* margin-left: auto !important;*/
4479
+ /* }*/
4480
+ /*}*/
4481
+ /*@media (min-width: 1200px) {*/
4482
+ /* .m-xl-0 {*/
4483
+ /* margin: 0 !important;*/
4484
+ /* }*/
4485
+ /* .mt-xl-0,*/
4486
+ /* .my-xl-0 {*/
4487
+ /* margin-top: 0 !important;*/
4488
+ /* }*/
4489
+ /* .mr-xl-0,*/
4490
+ /* .mx-xl-0 {*/
4491
+ /* margin-right: 0 !important;*/
4492
+ /* }*/
4493
+ /* .mb-xl-0,*/
4494
+ /* .my-xl-0 {*/
4495
+ /* margin-bottom: 0 !important;*/
4496
+ /* }*/
4497
+ /* .ml-xl-0,*/
4498
+ /* .mx-xl-0 {*/
4499
+ /* margin-left: 0 !important;*/
4500
+ /* }*/
4501
+ /* .m-xl-1 {*/
4502
+ /* margin: 0.25rem !important;*/
4503
+ /* }*/
4504
+ /* .mt-xl-1,*/
4505
+ /* .my-xl-1 {*/
4506
+ /* margin-top: 0.25rem !important;*/
4507
+ /* }*/
4508
+ /* .mr-xl-1,*/
4509
+ /* .mx-xl-1 {*/
4510
+ /* margin-right: 0.25rem !important;*/
4511
+ /* }*/
4512
+ /* .mb-xl-1,*/
4513
+ /* .my-xl-1 {*/
4514
+ /* margin-bottom: 0.25rem !important;*/
4515
+ /* }*/
4516
+ /* .ml-xl-1,*/
4517
+ /* .mx-xl-1 {*/
4518
+ /* margin-left: 0.25rem !important;*/
4519
+ /* }*/
4520
+ /* .m-xl-2 {*/
4521
+ /* margin: 0.5rem !important;*/
4522
+ /* }*/
4523
+ /* .mt-xl-2,*/
4524
+ /* .my-xl-2 {*/
4525
+ /* margin-top: 0.5rem !important;*/
4526
+ /* }*/
4527
+ /* .mr-xl-2,*/
4528
+ /* .mx-xl-2 {*/
4529
+ /* margin-right: 0.5rem !important;*/
4530
+ /* }*/
4531
+ /* .mb-xl-2,*/
4532
+ /* .my-xl-2 {*/
4533
+ /* margin-bottom: 0.5rem !important;*/
4534
+ /* }*/
4535
+ /* .ml-xl-2,*/
4536
+ /* .mx-xl-2 {*/
4537
+ /* margin-left: 0.5rem !important;*/
4538
+ /* }*/
4539
+ /* .m-xl-3 {*/
4540
+ /* margin: 1rem !important;*/
4541
+ /* }*/
4542
+ /* .mt-xl-3,*/
4543
+ /* .my-xl-3 {*/
4544
+ /* margin-top: 1rem !important;*/
4545
+ /* }*/
4546
+ /* .mr-xl-3,*/
4547
+ /* .mx-xl-3 {*/
4548
+ /* margin-right: 1rem !important;*/
4549
+ /* }*/
4550
+ /* .mb-xl-3,*/
4551
+ /* .my-xl-3 {*/
4552
+ /* margin-bottom: 1rem !important;*/
4553
+ /* }*/
4554
+ /* .ml-xl-3,*/
4555
+ /* .mx-xl-3 {*/
4556
+ /* margin-left: 1rem !important;*/
4557
+ /* }*/
4558
+ /* .m-xl-4 {*/
4559
+ /* margin: 1.5rem !important;*/
4560
+ /* }*/
4561
+ /* .mt-xl-4,*/
4562
+ /* .my-xl-4 {*/
4563
+ /* margin-top: 1.5rem !important;*/
4564
+ /* }*/
4565
+ /* .mr-xl-4,*/
4566
+ /* .mx-xl-4 {*/
4567
+ /* margin-right: 1.5rem !important;*/
4568
+ /* }*/
4569
+ /* .mb-xl-4,*/
4570
+ /* .my-xl-4 {*/
4571
+ /* margin-bottom: 1.5rem !important;*/
4572
+ /* }*/
4573
+ /* .ml-xl-4,*/
4574
+ /* .mx-xl-4 {*/
4575
+ /* margin-left: 1.5rem !important;*/
4576
+ /* }*/
4577
+ /* .m-xl-5 {*/
4578
+ /* margin: 3rem !important;*/
4579
+ /* }*/
4580
+ /* .mt-xl-5,*/
4581
+ /* .my-xl-5 {*/
4582
+ /* margin-top: 3rem !important;*/
4583
+ /* }*/
4584
+ /* .mr-xl-5,*/
4585
+ /* .mx-xl-5 {*/
4586
+ /* margin-right: 3rem !important;*/
4587
+ /* }*/
4588
+ /* .mb-xl-5,*/
4589
+ /* .my-xl-5 {*/
4590
+ /* margin-bottom: 3rem !important;*/
4591
+ /* }*/
4592
+ /* .ml-xl-5,*/
4593
+ /* .mx-xl-5 {*/
4594
+ /* margin-left: 3rem !important;*/
4595
+ /* }*/
4596
+ /* .p-xl-0 {*/
4597
+ /* padding: 0 !important;*/
4598
+ /* }*/
4599
+ /* .pt-xl-0,*/
4600
+ /* .py-xl-0 {*/
4601
+ /* padding-top: 0 !important;*/
4602
+ /* }*/
4603
+ /* .pr-xl-0,*/
4604
+ /* .px-xl-0 {*/
4605
+ /* padding-right: 0 !important;*/
4606
+ /* }*/
4607
+ /* .pb-xl-0,*/
4608
+ /* .py-xl-0 {*/
4609
+ /* padding-bottom: 0 !important;*/
4610
+ /* }*/
4611
+ /* .pl-xl-0,*/
4612
+ /* .px-xl-0 {*/
4613
+ /* padding-left: 0 !important;*/
4614
+ /* }*/
4615
+ /* .p-xl-1 {*/
4616
+ /* padding: 0.25rem !important;*/
4617
+ /* }*/
4618
+ /* .pt-xl-1,*/
4619
+ /* .py-xl-1 {*/
4620
+ /* padding-top: 0.25rem !important;*/
4621
+ /* }*/
4622
+ /* .pr-xl-1,*/
4623
+ /* .px-xl-1 {*/
4624
+ /* padding-right: 0.25rem !important;*/
4625
+ /* }*/
4626
+ /* .pb-xl-1,*/
4627
+ /* .py-xl-1 {*/
4628
+ /* padding-bottom: 0.25rem !important;*/
4629
+ /* }*/
4630
+ /* .pl-xl-1,*/
4631
+ /* .px-xl-1 {*/
4632
+ /* padding-left: 0.25rem !important;*/
4633
+ /* }*/
4634
+ /* .p-xl-2 {*/
4635
+ /* padding: 0.5rem !important;*/
4636
+ /* }*/
4637
+ /* .pt-xl-2,*/
4638
+ /* .py-xl-2 {*/
4639
+ /* padding-top: 0.5rem !important;*/
4640
+ /* }*/
4641
+ /* .pr-xl-2,*/
4642
+ /* .px-xl-2 {*/
4643
+ /* padding-right: 0.5rem !important;*/
4644
+ /* }*/
4645
+ /* .pb-xl-2,*/
4646
+ /* .py-xl-2 {*/
4647
+ /* padding-bottom: 0.5rem !important;*/
4648
+ /* }*/
4649
+ /* .pl-xl-2,*/
4650
+ /* .px-xl-2 {*/
4651
+ /* padding-left: 0.5rem !important;*/
4652
+ /* }*/
4653
+ /* .p-xl-3 {*/
4654
+ /* padding: 1rem !important;*/
4655
+ /* }*/
4656
+ /* .pt-xl-3,*/
4657
+ /* .py-xl-3 {*/
4658
+ /* padding-top: 1rem !important;*/
4659
+ /* }*/
4660
+ /* .pr-xl-3,*/
4661
+ /* .px-xl-3 {*/
4662
+ /* padding-right: 1rem !important;*/
4663
+ /* }*/
4664
+ /* .pb-xl-3,*/
4665
+ /* .py-xl-3 {*/
4666
+ /* padding-bottom: 1rem !important;*/
4667
+ /* }*/
4668
+ /* .pl-xl-3,*/
4669
+ /* .px-xl-3 {*/
4670
+ /* padding-left: 1rem !important;*/
4671
+ /* }*/
4672
+ /* .p-xl-4 {*/
4673
+ /* padding: 1.5rem !important;*/
4674
+ /* }*/
4675
+ /* .pt-xl-4,*/
4676
+ /* .py-xl-4 {*/
4677
+ /* padding-top: 1.5rem !important;*/
4678
+ /* }*/
4679
+ /* .pr-xl-4,*/
4680
+ /* .px-xl-4 {*/
4681
+ /* padding-right: 1.5rem !important;*/
4682
+ /* }*/
4683
+ /* .pb-xl-4,*/
4684
+ /* .py-xl-4 {*/
4685
+ /* padding-bottom: 1.5rem !important;*/
4686
+ /* }*/
4687
+ /* .pl-xl-4,*/
4688
+ /* .px-xl-4 {*/
4689
+ /* padding-left: 1.5rem !important;*/
4690
+ /* }*/
4691
+ /* .p-xl-5 {*/
4692
+ /* padding: 3rem !important;*/
4693
+ /* }*/
4694
+ /* .pt-xl-5,*/
4695
+ /* .py-xl-5 {*/
4696
+ /* padding-top: 3rem !important;*/
4697
+ /* }*/
4698
+ /* .pr-xl-5,*/
4699
+ /* .px-xl-5 {*/
4700
+ /* padding-right: 3rem !important;*/
4701
+ /* }*/
4702
+ /* .pb-xl-5,*/
4703
+ /* .py-xl-5 {*/
4704
+ /* padding-bottom: 3rem !important;*/
4705
+ /* }*/
4706
+ /* .pl-xl-5,*/
4707
+ /* .px-xl-5 {*/
4708
+ /* padding-left: 3rem !important;*/
4709
+ /* }*/
4710
+ /* .m-xl-n1 {*/
4711
+ /* margin: -0.25rem !important;*/
4712
+ /* }*/
4713
+ /* .mt-xl-n1,*/
4714
+ /* .my-xl-n1 {*/
4715
+ /* margin-top: -0.25rem !important;*/
4716
+ /* }*/
4717
+ /* .mr-xl-n1,*/
4718
+ /* .mx-xl-n1 {*/
4719
+ /* margin-right: -0.25rem !important;*/
4720
+ /* }*/
4721
+ /* .mb-xl-n1,*/
4722
+ /* .my-xl-n1 {*/
4723
+ /* margin-bottom: -0.25rem !important;*/
4724
+ /* }*/
4725
+ /* .ml-xl-n1,*/
4726
+ /* .mx-xl-n1 {*/
4727
+ /* margin-left: -0.25rem !important;*/
4728
+ /* }*/
4729
+ /* .m-xl-n2 {*/
4730
+ /* margin: -0.5rem !important;*/
4731
+ /* }*/
4732
+ /* .mt-xl-n2,*/
4733
+ /* .my-xl-n2 {*/
4734
+ /* margin-top: -0.5rem !important;*/
4735
+ /* }*/
4736
+ /* .mr-xl-n2,*/
4737
+ /* .mx-xl-n2 {*/
4738
+ /* margin-right: -0.5rem !important;*/
4739
+ /* }*/
4740
+ /* .mb-xl-n2,*/
4741
+ /* .my-xl-n2 {*/
4742
+ /* margin-bottom: -0.5rem !important;*/
4743
+ /* }*/
4744
+ /* .ml-xl-n2,*/
4745
+ /* .mx-xl-n2 {*/
4746
+ /* margin-left: -0.5rem !important;*/
4747
+ /* }*/
4748
+ /* .m-xl-n3 {*/
4749
+ /* margin: -1rem !important;*/
4750
+ /* }*/
4751
+ /* .mt-xl-n3,*/
4752
+ /* .my-xl-n3 {*/
4753
+ /* margin-top: -1rem !important;*/
4754
+ /* }*/
4755
+ /* .mr-xl-n3,*/
4756
+ /* .mx-xl-n3 {*/
4757
+ /* margin-right: -1rem !important;*/
4758
+ /* }*/
4759
+ /* .mb-xl-n3,*/
4760
+ /* .my-xl-n3 {*/
4761
+ /* margin-bottom: -1rem !important;*/
4762
+ /* }*/
4763
+ /* .ml-xl-n3,*/
4764
+ /* .mx-xl-n3 {*/
4765
+ /* margin-left: -1rem !important;*/
4766
+ /* }*/
4767
+ /* .m-xl-n4 {*/
4768
+ /* margin: -1.5rem !important;*/
4769
+ /* }*/
4770
+ /* .mt-xl-n4,*/
4771
+ /* .my-xl-n4 {*/
4772
+ /* margin-top: -1.5rem !important;*/
4773
+ /* }*/
4774
+ /* .mr-xl-n4,*/
4775
+ /* .mx-xl-n4 {*/
4776
+ /* margin-right: -1.5rem !important;*/
4777
+ /* }*/
4778
+ /* .mb-xl-n4,*/
4779
+ /* .my-xl-n4 {*/
4780
+ /* margin-bottom: -1.5rem !important;*/
4781
+ /* }*/
4782
+ /* .ml-xl-n4,*/
4783
+ /* .mx-xl-n4 {*/
4784
+ /* margin-left: -1.5rem !important;*/
4785
+ /* }*/
4786
+ /* .m-xl-n5 {*/
4787
+ /* margin: -3rem !important;*/
4788
+ /* }*/
4789
+ /* .mt-xl-n5,*/
4790
+ /* .my-xl-n5 {*/
4791
+ /* margin-top: -3rem !important;*/
4792
+ /* }*/
4793
+ /* .mr-xl-n5,*/
4794
+ /* .mx-xl-n5 {*/
4795
+ /* margin-right: -3rem !important;*/
4796
+ /* }*/
4797
+ /* .mb-xl-n5,*/
4798
+ /* .my-xl-n5 {*/
4799
+ /* margin-bottom: -3rem !important;*/
4800
+ /* }*/
4801
+ /* .ml-xl-n5,*/
4802
+ /* .mx-xl-n5 {*/
4803
+ /* margin-left: -3rem !important;*/
4804
+ /* }*/
4805
+ /* .m-xl-auto {*/
4806
+ /* margin: auto !important;*/
4807
+ /* }*/
4808
+ /* .mt-xl-auto,*/
4809
+ /* .my-xl-auto {*/
4810
+ /* margin-top: auto !important;*/
4811
+ /* }*/
4812
+ /* .mr-xl-auto,*/
4813
+ /* .mx-xl-auto {*/
4814
+ /* margin-right: auto !important;*/
4815
+ /* }*/
4816
+ /* .mb-xl-auto,*/
4817
+ /* .my-xl-auto {*/
4818
+ /* margin-bottom: auto !important;*/
4819
+ /* }*/
4820
+ /* .ml-xl-auto,*/
4821
+ /* .mx-xl-auto {*/
4822
+ /* margin-left: auto !important;*/
4823
+ /* }*/
4824
+ /*}*/
4825
+ /*.text-monospace {*/
4826
+ /* font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;*/
4827
+ /*}*/
4828
+ /*.text-justify {*/
4829
+ /* text-align: justify !important;*/
4830
+ /*}*/
4831
+ /*.text-wrap {*/
4832
+ /* white-space: normal !important;*/
4833
+ /*}*/
4834
+ /*.text-nowrap {*/
4835
+ /* white-space: nowrap !important;*/
4836
+ /*}*/
4837
+ /*@media (min-width: 576px) {*/
4838
+ /* .text-sm-left {*/
4839
+ /* text-align: left !important;*/
4840
+ /* }*/
4841
+ /* .text-sm-right {*/
4842
+ /* text-align: right !important;*/
4843
+ /* }*/
4844
+ /* .text-sm-center {*/
4845
+ /* text-align: center !important;*/
4846
+ /* }*/
4847
+ /*}*/
4848
+ /*@media (min-width: 768px) {*/
4849
+ /* .text-md-left {*/
4850
+ /* text-align: left !important;*/
4851
+ /* }*/
4852
+ /* .text-md-right {*/
4853
+ /* text-align: right !important;*/
4854
+ /* }*/
4855
+ /* .text-md-center {*/
4856
+ /* text-align: center !important;*/
4857
+ /* }*/
4858
+ /*}*/
4859
+ /*@media (min-width: 992px) {*/
4860
+ /* .text-lg-left {*/
4861
+ /* text-align: left !important;*/
4862
+ /* }*/
4863
+ /* .text-lg-right {*/
4864
+ /* text-align: right !important;*/
4865
+ /* }*/
4866
+ /* .text-lg-center {*/
4867
+ /* text-align: center !important;*/
4868
+ /* }*/
4869
+ /*}*/
4870
+ /*@media (min-width: 1200px) {*/
4871
+ /* .text-xl-left {*/
4872
+ /* text-align: left !important;*/
4873
+ /* }*/
4874
+ /* .text-xl-right {*/
4875
+ /* text-align: right !important;*/
4876
+ /* }*/
4877
+ /* .text-xl-center {*/
4878
+ /* text-align: center !important;*/
4879
+ /* }*/
4880
+ /*}*/
4881
+ /*.text-lowercase {*/
4882
+ /* text-transform: lowercase !important;*/
4883
+ /*}*/
4884
+ /*.font-weight-light {*/
4885
+ /* font-weight: 300 !important;*/
4886
+ /*}*/
4887
+ /*.font-weight-lighter {*/
4888
+ /* font-weight: lighter !important;*/
4889
+ /*}*/
4890
+ /*.font-weight-normal {*/
4891
+ /* font-weight: 400 !important;*/
4892
+ /*}*/
4893
+ /*.font-weight-bold {*/
4894
+ /* font-weight: 700 !important;*/
4895
+ /*}*/
4896
+ /*.font-weight-bolder {*/
4897
+ /* font-weight: bolder !important;*/
4898
+ /*}*/
4899
+ /*.font-italic {*/
4900
+ /* font-style: italic !important;*/
4901
+ /*}*/
4902
+ /*.text-light {*/
4903
+ /* color: #f8f9fa !important;*/
4904
+ /*}*/
4905
+ /*a.text-light:hover, a.text-light:focus {*/
4906
+ /* color: #cbd3da !important;*/
4907
+ /*}*/
4908
+ /*.text-dark {*/
4909
+ /* color: #343a40 !important;*/
4910
+ /*}*/
4911
+ /*a.text-dark:hover, a.text-dark:focus {*/
4912
+ /* color: #121416 !important;*/
4913
+ /*}*/
4914
+ /*.text-body {*/
4915
+ /* color: #212529 !important;*/
4916
+ /*}*/
4917
+ /*.text-black-50 {*/
4918
+ /* color: rgba(0, 0, 0, 0.5) !important;*/
4919
+ /*}*/
4920
+ /*.text-white-50 {*/
4921
+ /* color: rgba(255, 255, 255, 0.5) !important;*/
4922
+ /*}*/
4923
+ /*.text-hide {*/
4924
+ /* font: 0/0 a;*/
4925
+ /* color: transparent;*/
4926
+ /* text-shadow: none;*/
4927
+ /* background-color: transparent;*/
4928
+ /* border: 0;*/
4929
+ /*}*/
4930
+ /*.text-decoration-none {*/
4931
+ /* text-decoration: none !important;*/
4932
+ /*}*/
4933
+ /*.text-break {*/
4934
+ /* word-break: break-word !important;*/
4935
+ /* overflow-wrap: break-word !important;*/
4936
+ /*}*/
4937
+ /*.text-reset {*/
4938
+ /* color: inherit !important;*/
4939
+ /*}*/
4940
+ /*.invisible {*/
4941
+ /* visibility: hidden !important;*/
4942
+ /*}*/
4943
+ }
4944
+ .w3eden *,
4945
+ .w3eden *::before,
4946
+ .w3eden *::after {
4947
+ box-sizing: border-box;
4948
  }
4949
+ .w3eden html {
4950
+ font-family: sans-serif;
4951
+ line-height: 1.15;
4952
+ -webkit-text-size-adjust: 100%;
4953
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 
4954
  }
4955
+ .w3eden article, .w3eden aside, .w3eden figcaption, .w3eden figure, .w3eden footer, .w3eden header, .w3eden hgroup, .w3eden main, .w3eden nav, .w3eden section {
4956
+ display: block;
 
 
 
 
 
 
 
 
 
4957
  }
4958
+ .w3eden body {
4959
+ margin: 0;
4960
+ 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";
4961
+ font-size: 1rem;
4962
+ font-weight: 400;
4963
+ line-height: 1.5;
4964
+ color: #212529;
4965
+ text-align: left;
4966
+ background-color: #fff;
4967
+ }
4968
+ .w3eden [tabindex="-1"]:focus {
4969
+ outline: 0 !important;
4970
  }
4971
+ .w3eden hr {
4972
+ box-sizing: content-box;
4973
+ height: 0;
4974
+ overflow: visible;
4975
  }
4976
+ .w3eden h1, .w3eden h2, .w3eden h3, .w3eden h4, .w3eden h5, .w3eden h6 {
4977
+ margin-top: 0;
4978
+ margin-bottom: 0.5rem;
 
4979
  }
4980
+ .w3eden p {
4981
+ margin-top: 0;
4982
+ margin-bottom: 1rem;
4983
+ }
4984
+ .w3eden abbr[title],
4985
+ .w3eden abbr[data-original-title] {
4986
+ text-decoration: underline;
4987
+ -webkit-text-decoration: underline dotted;
4988
+ text-decoration: underline dotted;
4989
+ cursor: help;
4990
+ border-bottom: 0;
4991
+ -webkit-text-decoration-skip-ink: none;
4992
+ text-decoration-skip-ink: none;
4993
+ }
4994
+ .w3eden address {
4995
+ margin-bottom: 1rem;
4996
+ font-style: normal;
4997
+ line-height: inherit;
4998
  }
4999
+ .w3eden ol,
5000
+ .w3eden ul,
5001
+ .w3eden dl {
5002
+ margin-top: 0;
5003
+ margin-bottom: 1rem;
5004
  }
5005
+ .w3eden ol ol,
5006
+ .w3eden ul ul,
5007
+ .w3eden ol ul,
5008
+ .w3eden ul ol {
5009
+ margin-bottom: 0;
5010
  }
5011
+ .w3eden dt {
5012
+ font-weight: 700;
 
 
 
5013
  }
5014
+ .w3eden dd {
5015
+ margin-bottom: 0.5rem;
5016
+ margin-left: 0;
 
 
5017
  }
5018
+ .w3eden blockquote {
5019
+ margin: 0 0 1rem;
5020
  }
5021
+ .w3eden b,
5022
+ .w3eden strong {
5023
+ font-weight: bolder;
5024
  }
5025
+ .w3eden small {
5026
+ font-size: 80%;
5027
  }
5028
+ .w3eden sub,
5029
+ .w3eden sup {
5030
+ position: relative;
5031
+ font-size: 75%;
5032
+ line-height: 0;
5033
+ vertical-align: baseline;
5034
  }
5035
+ .w3eden sub {
5036
+ bottom: -0.25em;
 
 
 
5037
  }
5038
+ .w3eden sup {
5039
+ top: -0.5em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5040
  }
5041
+ .w3eden a {
5042
+ color: var(--color-primary);
5043
+ text-decoration: none;
5044
+ background-color: transparent;
5045
  }
5046
+ .w3eden a:hover {
5047
+ color: var(--color-primary-hover);
5048
+ text-decoration: underline;
5049
  }
5050
+ .w3eden a:not([href]):not([tabindex]) {
5051
+ color: inherit;
5052
+ text-decoration: none;
5053
  }
5054
+ .w3eden a:not([href]):not([tabindex]):hover, .w3eden a:not([href]):not([tabindex]):focus {
5055
+ color: inherit;
5056
+ text-decoration: none;
5057
  }
5058
+ .w3eden a:not([href]):not([tabindex]):focus {
5059
+ outline: 0;
 
 
 
5060
  }
5061
+ .w3eden pre,
5062
+ .w3eden code,
5063
+ .w3eden kbd,
5064
+ .w3eden samp {
5065
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
5066
+ font-size: 1em;
5067
  }
5068
+ .w3eden pre {
5069
+ margin-top: 0;
5070
+ margin-bottom: 1rem;
5071
+ overflow: auto;
5072
  }
5073
+ .w3eden figure {
5074
+ margin: 0 0 1rem;
 
 
5075
  }
5076
+ .w3eden img {
5077
+ vertical-align: middle;
5078
+ border-style: none;
5079
  }
5080
+ .w3eden svg {
5081
+ overflow: hidden;
5082
+ vertical-align: middle;
5083
  }
5084
+ .w3eden table {
5085
+ border-collapse: collapse;
 
 
5086
  }
5087
+ .w3eden caption {
5088
+ padding-top: 0.75rem;
5089
+ padding-bottom: 0.75rem;
5090
+ color: var(--color-secondary);
5091
+ text-align: left;
5092
+ caption-side: bottom;
5093
  }
5094
+ .w3eden th {
5095
+ text-align: inherit;
 
 
 
5096
  }
5097
+ .w3eden label {
5098
+ display: inline-block;
5099
+ margin-bottom: 0.5rem;
5100
  }
5101
+ .w3eden button {
5102
+ border-radius: 0;
 
5103
  }
5104
+ .w3eden button:focus {
5105
+ outline: 1px dotted;
5106
+ outline: 5px auto -webkit-focus-ring-color;
5107
  }
5108
+ .w3eden input,
5109
+ .w3eden button,
5110
+ .w3eden select,
5111
+ .w3eden optgroup,
5112
+ .w3eden textarea {
5113
+ margin: 0;
5114
+ font-family: inherit;
5115
+ font-size: inherit;
5116
+ line-height: inherit;
5117
  }
5118
+ .w3eden button,
5119
+ .w3eden input {
5120
+ overflow: visible;
 
 
5121
  }
5122
+ .w3eden button,
5123
+ .w3eden select {
5124
+ text-transform: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5125
  }
5126
+ .w3eden select {
5127
+ word-wrap: normal;
5128
  }
5129
+ .w3eden button,
5130
+ .w3eden [type=button],
5131
+ .w3eden [type=reset],
5132
+ .w3eden [type=submit] {
5133
+ -webkit-appearance: button;
5134
  }
5135
+ .w3eden button:not(:disabled),
5136
+ .w3eden [type=button]:not(:disabled),
5137
+ .w3eden [type=reset]:not(:disabled),
5138
+ .w3eden [type=submit]:not(:disabled) {
5139
+ cursor: pointer;
5140
  }
5141
+ .w3eden button::-moz-focus-inner,
5142
+ .w3eden [type=button]::-moz-focus-inner,
5143
+ .w3eden [type=reset]::-moz-focus-inner,
5144
+ .w3eden [type=submit]::-moz-focus-inner {
5145
+ padding: 0;
5146
+ border-style: none;
5147
+ }
5148
+ .w3eden input[type=radio],
5149
+ .w3eden input[type=checkbox] {
5150
+ box-sizing: border-box;
5151
+ padding: 0;
5152
+ }
5153
+ .w3eden input[type=date],
5154
+ .w3eden input[type=time],
5155
+ .w3eden input[type=datetime-local],
5156
+ .w3eden input[type=month] {
5157
+ -webkit-appearance: listbox;
5158
  }
5159
+ .w3eden textarea {
5160
+ overflow: auto;
5161
+ resize: vertical;
 
 
5162
  }
5163
+ .w3eden fieldset {
5164
+ min-width: 0;
5165
+ padding: 0;
5166
+ margin: 0;
5167
+ border: 0;
 
5168
  }
5169
+ .w3eden legend {
5170
+ display: block;
5171
+ width: 100%;
5172
+ max-width: 100%;
5173
+ padding: 0;
5174
+ margin-bottom: 0.5rem;
5175
+ font-size: 1.5rem;
5176
+ line-height: inherit;
5177
+ color: inherit;
5178
+ white-space: normal;
5179
+ }
5180
+ .w3eden [type=number]::-webkit-inner-spin-button,
5181
+ .w3eden [type=number]::-webkit-outer-spin-button {
5182
+ height: auto;
5183
+ }
5184
+ .w3eden [type=search] {
5185
+ outline-offset: -2px;
5186
+ -webkit-appearance: none;
5187
+ }
5188
+ .w3eden [type=search]::-webkit-search-decoration {
5189
+ -webkit-appearance: none;
5190
+ }
5191
+ .w3eden ::-webkit-file-upload-button {
5192
+ font: inherit;
5193
+ -webkit-appearance: button;
5194
  }
5195
+ .w3eden output {
5196
+ display: inline-block;
 
 
5197
  }
5198
+ .w3eden summary {
5199
+ display: list-item;
5200
+ cursor: pointer;
5201
  }
5202
+ .w3eden template {
5203
+ display: none;
 
 
 
5204
  }
5205
+ .w3eden [hidden] {
5206
+ display: none !important;
5207
  }
5208
+ .w3eden h1, .w3eden h2, .w3eden h3, .w3eden h4, .w3eden h5, .w3eden h6,
5209
+ .w3eden .h1, .w3eden .h2, .w3eden .h3, .w3eden .h4, .w3eden .h5, .w3eden .h6 {
5210
+ margin-bottom: 0.5rem;
5211
+ font-weight: 500;
5212
+ line-height: 1.2;
 
 
 
 
 
 
5213
  }
5214
+ .w3eden h1, .w3eden .h1 {
5215
+ font-size: 2.5rem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5216
  }
5217
+ .w3eden h2, .w3eden .h2 {
5218
+ font-size: 2rem;
5219
  }
5220
+ .w3eden h3, .w3eden .h3 {
5221
+ font-size: 1.75rem;
 
 
 
 
 
5222
  }
5223
+ .w3eden h4, .w3eden .h4 {
5224
+ font-size: 1.5rem;
 
 
5225
  }
5226
+ .w3eden h5, .w3eden .h5 {
5227
+ font-size: 1.25rem;
 
5228
  }
5229
+ .w3eden h6, .w3eden .h6 {
5230
+ font-size: 1rem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5231
  }
5232
+ .w3eden .lead {
5233
+ font-size: 1.25rem;
5234
+ font-weight: 300;
 
 
5235
  }
5236
+ .w3eden hr {
5237
+ margin-top: 1rem;
5238
+ margin-bottom: 1rem;
5239
+ border: 0;
5240
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
5241
  }
5242
+ .w3eden small,
5243
+ .w3eden .small {
5244
+ font-size: 80%;
5245
+ font-weight: 400;
5246
  }
5247
+ .w3eden mark,
5248
+ .w3eden .mark {
5249
+ padding: 0.2em;
5250
+ background-color: #fcf8e3;
5251
  }
5252
+ .w3eden .list-unstyled {
5253
+ padding-left: 0;
5254
+ list-style: none;
5255
  }
5256
+ .w3eden .list-inline {
5257
+ padding-left: 0;
5258
+ list-style: none;
5259
  }
5260
+ .w3eden .list-inline-item {
5261
+ display: inline-block;
 
5262
  }
5263
+ .w3eden .list-inline-item:not(:last-child) {
5264
+ margin-right: 0.5rem;
5265
  }
5266
+ .w3eden .img-fluid {
5267
+ max-width: 100%;
5268
+ height: auto;
5269
  }
5270
+ .w3eden code {
5271
+ font-size: 87.5%;
5272
+ color: #e83e8c;
5273
+ word-break: break-word;
5274
  }
5275
+ .w3eden a > code {
5276
+ color: inherit;
 
5277
  }
5278
+ .w3eden kbd {
5279
+ padding: 0.2rem 0.4rem;
5280
+ font-size: 87.5%;
5281
+ color: #fff;
5282
+ background-color: #212529;
5283
+ border-radius: 0.2rem;
5284
  }
5285
+ .w3eden kbd kbd {
5286
+ padding: 0;
5287
+ font-size: 100%;
5288
+ font-weight: 700;
5289
  }
5290
+ .w3eden pre {
5291
+ display: block;
5292
+ font-size: 87.5%;
5293
+ color: #212529;
5294
  }
5295
+ .w3eden .container {
5296
+ width: 100%;
5297
+ padding-right: 15px;
5298
+ padding-left: 15px;
5299
+ margin-right: auto;
5300
+ margin-left: auto;
5301
  }
5302
+ @media (min-width: 576px) {
5303
+ .w3eden .container {
5304
+ max-width: 540px;
5305
+ }
 
 
 
 
 
 
 
 
 
5306
  }
5307
+ @media (min-width: 768px) {
5308
+ .w3eden .container {
5309
+ max-width: 720px;
5310
+ }
5311
  }
5312
+ @media (min-width: 992px) {
5313
+ .w3eden .container {
5314
+ max-width: 960px;
5315
+ }
5316
  }
5317
+ @media (min-width: 1200px) {
5318
+ .w3eden .container {
5319
+ max-width: 1140px;
5320
+ }
5321
  }
5322
+ .w3eden .container-fluid {
5323
+ width: 100%;
5324
+ padding-right: 15px;
5325
+ padding-left: 15px;
5326
+ margin-right: auto;
5327
+ margin-left: auto;
5328
  }
5329
+ .w3eden .row {
5330
+ display: -ms-flexbox;
5331
+ display: flex;
5332
+ -ms-flex-wrap: wrap;
5333
+ flex-wrap: wrap;
5334
+ margin-right: -15px;
5335
+ margin-left: -15px;
5336
+ }
5337
+ .w3eden .no-gutters {
5338
+ margin-right: 0;
5339
+ margin-left: 0;
5340
+ }
5341
+ .w3eden .no-gutters > .col,
5342
+ .w3eden .no-gutters > [class*=col-] {
5343
+ padding-right: 0;
5344
+ padding-left: 0;
5345
+ }
5346
+ .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,
5347
+ .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,
5348
+ .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,
5349
+ .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,
5350
+ .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,
5351
+ .w3eden .col-xl-auto {
5352
+ position: relative;
5353
+ width: 100%;
5354
+ padding-right: 15px;
5355
+ padding-left: 15px;
5356
+ }
5357
+ .w3eden .col {
5358
+ -ms-flex-preferred-size: 0;
5359
+ flex-basis: 0;
5360
+ -ms-flex-positive: 1;
5361
+ flex-grow: 1;
5362
+ max-width: 100%;
5363
+ }
5364
+ .w3eden .col-12 {
5365
+ -ms-flex: 0 0 100%;
5366
+ flex: 0 0 100%;
5367
+ max-width: 100%;
5368
+ }
5369
+ @media (min-width: 576px) {
5370
+ .w3eden {
5371
+ /*.col-sm {*/
5372
+ /* -ms-flex-preferred-size: 0;*/
5373
+ /* flex-basis: 0;*/
5374
+ /* -ms-flex-positive: 1;*/
5375
+ /* flex-grow: 1;*/
5376
+ /* max-width: 100%;*/
5377
+ /*}*/
5378
+ /*.col-sm-auto {*/
5379
+ /* -ms-flex: 0 0 auto;*/
5380
+ /* flex: 0 0 auto;*/
5381
+ /* width: auto;*/
5382
+ /* max-width: 100%;*/
5383
+ /*}*/
5384
+ /*.col-sm-1 {*/
5385
+ /* -ms-flex: 0 0 8.333333%;*/
5386
+ /* flex: 0 0 8.333333%;*/
5387
+ /* max-width: 8.333333%;*/
5388
+ /*}*/
5389
+ /*.col-sm-2 {*/
5390
+ /* -ms-flex: 0 0 16.666667%;*/
5391
+ /* flex: 0 0 16.666667%;*/
5392
+ /* max-width: 16.666667%;*/
5393
+ /*}*/
5394
+ /*.col-sm-3 {*/
5395
+ /* -ms-flex: 0 0 25%;*/
5396
+ /* flex: 0 0 25%;*/
5397
+ /* max-width: 25%;*/
5398
+ /*}*/
5399
+ /*.col-sm-4 {*/
5400
+ /* -ms-flex: 0 0 33.333333%;*/
5401
+ /* flex: 0 0 33.333333%;*/
5402
+ /* max-width: 33.333333%;*/
5403
+ /*}*/
5404
+ /*.col-sm-8 {*/
5405
+ /* -ms-flex: 0 0 66.666667%;*/
5406
+ /* flex: 0 0 66.666667%;*/
5407
+ /* max-width: 66.666667%;*/
5408
+ /*}*/
5409
+ /*.col-sm-9 {*/
5410
+ /* -ms-flex: 0 0 75%;*/
5411
+ /* flex: 0 0 75%;*/
5412
+ /* max-width: 75%;*/
5413
+ /*}*/
5414
+ /*.col-sm-10 {*/
5415
+ /* -ms-flex: 0 0 83.333333%;*/
5416
+ /* flex: 0 0 83.333333%;*/
5417
+ /* max-width: 83.333333%;*/
5418
+ /*}*/
5419
+ /*.col-sm-11 {*/
5420
+ /* -ms-flex: 0 0 91.666667%;*/
5421
+ /* flex: 0 0 91.666667%;*/
5422
+ /* max-width: 91.666667%;*/
5423
+ /*}*/
5424
+ /*.order-sm-first {*/
5425
+ /* -ms-flex-order: -1;*/
5426
+ /* order: -1;*/
5427
+ /*}*/
5428
+ /*.order-sm-last {*/
5429
+ /* -ms-flex-order: 13;*/
5430
+ /* order: 13;*/
5431
+ /*}*/
5432
+ /*.order-sm-0 {*/
5433
+ /* -ms-flex-order: 0;*/
5434
+ /* order: 0;*/
5435
+ /*}*/
5436
+ /*.order-sm-1 {*/
5437
+ /* -ms-flex-order: 1;*/
5438
+ /* order: 1;*/
5439
+ /*}*/
5440
+ /*.order-sm-2 {*/
5441
+ /* -ms-flex-order: 2;*/
5442
+ /* order: 2;*/
5443
+ /*}*/
5444
+ /*.order-sm-3 {*/
5445
+ /* -ms-flex-order: 3;*/
5446
+ /* order: 3;*/
5447
+ /*}*/
5448
+ /*.order-sm-4 {*/
5449
+ /* -ms-flex-order: 4;*/
5450
+ /* order: 4;*/
5451
+ /*}*/
5452
+ /*.order-sm-5 {*/
5453
+ /* -ms-flex-order: 5;*/
5454
+ /* order: 5;*/
5455
+ /*}*/
5456
+ /*.order-sm-6 {*/
5457
+ /* -ms-flex-order: 6;*/
5458
+ /* order: 6;*/
5459
+ /*}*/
5460
+ /*.order-sm-7 {*/
5461
+ /* -ms-flex-order: 7;*/
5462
+ /* order: 7;*/
5463
+ /*}*/
5464
+ /*.order-sm-8 {*/
5465
+ /* -ms-flex-order: 8;*/
5466
+ /* order: 8;*/
5467
+ /*}*/
5468
+ /*.order-sm-9 {*/
5469
+ /* -ms-flex-order: 9;*/
5470
+ /* order: 9;*/
5471
+ /*}*/
5472
+ /*.order-sm-10 {*/
5473
+ /* -ms-flex-order: 10;*/
5474
+ /* order: 10;*/
5475
+ /*}*/
5476
+ /*.order-sm-11 {*/
5477
+ /* -ms-flex-order: 11;*/
5478
+ /* order: 11;*/
5479
+ /*}*/
5480
+ /*.order-sm-12 {*/
5481
+ /* -ms-flex-order: 12;*/
5482
+ /* order: 12;*/
5483
+ /*}*/
5484
+ /*.offset-sm-0 {*/
5485
+ /* margin-left: 0;*/
5486
+ /*}*/
5487
+ /*.offset-sm-1 {*/
5488
+ /* margin-left: 8.333333%;*/
5489
+ /*}*/
5490
+ /*.offset-sm-2 {*/
5491
+ /* margin-left: 16.666667%;*/
5492
+ /*}*/
5493
+ /*.offset-sm-3 {*/
5494
+ /* margin-left: 25%;*/
5495
+ /*}*/
5496
+ /*.offset-sm-4 {*/
5497
+ /* margin-left: 33.333333%;*/
5498
+ /*}*/
5499
+ /*.offset-sm-5 {*/
5500
+ /* margin-left: 41.666667%;*/
5501
+ /*}*/
5502
+ /*.offset-sm-6 {*/
5503
+ /* margin-left: 50%;*/
5504
+ /*}*/
5505
+ /*.offset-sm-7 {*/
5506
+ /* margin-left: 58.333333%;*/
5507
+ /*}*/
5508
+ /*.offset-sm-8 {*/
5509
+ /* margin-left: 66.666667%;*/
5510
+ /*}*/
5511
+ /*.offset-sm-9 {*/
5512
+ /* margin-left: 75%;*/
5513
+ /*}*/
5514
+ /*.offset-sm-10 {*/
5515
+ /* margin-left: 83.333333%;*/
5516
+ /*}*/
5517
+ /*.offset-sm-11 {*/
5518
+ /* margin-left: 91.666667%;*/
5519
+ /*}*/
5520
+ }
5521
+ .w3eden .col-sm-5 {
5522
+ -ms-flex: 0 0 41.666667%;
5523
+ flex: 0 0 41.666667%;
5524
+ max-width: 41.666667%;
5525
+ }
5526
+ .w3eden .col-sm-6 {
5527
+ -ms-flex: 0 0 50%;
5528
+ flex: 0 0 50%;
5529
+ max-width: 50%;
5530
+ }
5531
+ .w3eden .col-sm-7 {
5532
+ -ms-flex: 0 0 58.333333%;
5533
+ flex: 0 0 58.333333%;
5534
+ max-width: 58.333333%;
5535
+ }
5536
+ .w3eden .col-sm-12 {
5537
+ -ms-flex: 0 0 100%;
5538
+ flex: 0 0 100%;
5539
+ max-width: 100%;
5540
+ }
5541
  }
5542
+ @media (min-width: 768px) {
5543
+ .w3eden {
5544
+ /*.col-md {*/
5545
+ /* -ms-flex-preferred-size: 0;*/
5546
+ /* flex-basis: 0;*/
5547
+ /* -ms-flex-positive: 1;*/
5548
+ /* flex-grow: 1;*/
5549
+ /* max-width: 100%;*/
5550
+ /*}*/
5551
+ /*.col-md-auto {*/
5552
+ /* -ms-flex: 0 0 auto;*/
5553
+ /* flex: 0 0 auto;*/
5554
+ /* width: auto;*/
5555
+ /* max-width: 100%;*/
5556
+ /*}*/
5557
+ /*.col-md-1 {*/
5558
+ /* -ms-flex: 0 0 8.333333%;*/
5559
+ /* flex: 0 0 8.333333%;*/
5560
+ /* max-width: 8.333333%;*/
5561
+ /*}*/
5562
+ /*.col-md-2 {*/
5563
+ /* -ms-flex: 0 0 16.666667%;*/
5564
+ /* flex: 0 0 16.666667%;*/
5565
+ /* max-width: 16.666667%;*/
5566
+ /*}*/
5567
+ /*.order-md-last {*/
5568
+ /* -ms-flex-order: 13;*/
5569
+ /* order: 13;*/
5570
+ /*}*/
5571
+ /*.order-md-0 {*/
5572
+ /* -ms-flex-order: 0;*/
5573
+ /* order: 0;*/
5574
+ /*}*/
5575
+ /*.order-md-2 {*/
5576
+ /* -ms-flex-order: 2;*/
5577
+ /* order: 2;*/
5578
+ /*}*/
5579
+ /*.order-md-3 {*/
5580
+ /* -ms-flex-order: 3;*/
5581
+ /* order: 3;*/
5582
+ /*}*/
5583
+ /*.order-md-4 {*/
5584
+ /* -ms-flex-order: 4;*/
5585
+ /* order: 4;*/
5586
+ /*}*/
5587
+ /*.order-md-5 {*/
5588
+ /* -ms-flex-order: 5;*/
5589
+ /* order: 5;*/
5590
+ /*}*/
5591
+ /*.order-md-6 {*/
5592
+ /* -ms-flex-order: 6;*/
5593
+ /* order: 6;*/
5594
+ /*}*/
5595
+ /*.order-md-7 {*/
5596
+ /* -ms-flex-order: 7;*/
5597
+ /* order: 7;*/
5598
+ /*}*/
5599
+ /*.order-md-8 {*/
5600
+ /* -ms-flex-order: 8;*/
5601
+ /* order: 8;*/
5602
+ /*}*/
5603
+ /*.order-md-9 {*/
5604
+ /* -ms-flex-order: 9;*/
5605
+ /* order: 9;*/
5606
+ /*}*/
5607
+ /*.order-md-10 {*/
5608
+ /* -ms-flex-order: 10;*/
5609
+ /* order: 10;*/
5610
+ /*}*/
5611
+ /*.order-md-11 {*/
5612
+ /* -ms-flex-order: 11;*/
5613
+ /* order: 11;*/
5614
+ /*}*/
5615
+ /*.offset-md-0 {*/
5616
+ /* margin-left: 0;*/
5617
+ /*}*/
5618
+ /*.offset-md-1 {*/
5619
+ /* margin-left: 8.333333%;*/
5620
+ /*}*/
5621
+ /*.offset-md-3 {*/
5622
+ /* margin-left: 25%;*/
5623
+ /*}*/
5624
+ /*.offset-md-4 {*/
5625
+ /* margin-left: 33.333333%;*/
5626
+ /*}*/
5627
+ /*.offset-md-5 {*/
5628
+ /* margin-left: 41.666667%;*/
5629
+ /*}*/
5630
+ /*.offset-md-6 {*/
5631
+ /* margin-left: 50%;*/
5632
+ /*}*/
5633
+ /*.offset-md-7 {*/
5634
+ /* margin-left: 58.333333%;*/
5635
+ /*}*/
5636
+ /*.offset-md-8 {*/
5637
+ /* margin-left: 66.666667%;*/
5638
+ /*}*/
5639
+ /*.offset-md-9 {*/
5640
+ /* margin-left: 75%;*/
5641
+ /*}*/
5642
+ /*.offset-md-10 {*/
5643
+ /* margin-left: 83.333333%;*/
5644
+ /*}*/
5645
+ /*.offset-md-11 {*/
5646
+ /* margin-left: 91.666667%;*/
5647
+ /*}*/
5648
+ }
5649
+ .w3eden .col-md-3 {
5650
+ -ms-flex: 0 0 25%;
5651
+ flex: 0 0 25%;
5652
+ max-width: 25%;
5653
+ }
5654
+ .w3eden .col-md-4 {
5655
+ -ms-flex: 0 0 33.333333%;
5656
+ flex: 0 0 33.333333%;
5657
+ max-width: 33.333333%;
5658
+ }
5659
+ .w3eden .col-md-5 {
5660
+ -ms-flex: 0 0 41.666667%;
5661
+ flex: 0 0 41.666667%;
5662
+ max-width: 41.666667%;
5663
+ }
5664
+ .w3eden .col-md-6 {
5665
+ -ms-flex: 0 0 50%;
5666
+ flex: 0 0 50%;
5667
+ max-width: 50%;
5668
+ }
5669
+ .w3eden .col-md-7 {
5670
+ -ms-flex: 0 0 58.333333%;
5671
+ flex: 0 0 58.333333%;
5672
+ max-width: 58.333333%;
5673
+ }
5674
+ .w3eden .col-md-8 {
5675
+ -ms-flex: 0 0 66.666667%;
5676
+ flex: 0 0 66.666667%;
5677
+ max-width: 66.666667%;
5678
+ }
5679
+ .w3eden .col-md-9 {
5680
+ -ms-flex: 0 0 75%;
5681
+ flex: 0 0 75%;
5682
+ max-width: 75%;
5683
+ }
5684
+ .w3eden .col-md-10 {
5685
+ -ms-flex: 0 0 83.333333%;
5686
+ flex: 0 0 83.333333%;
5687
+ max-width: 83.333333%;
5688
+ }
5689
+ .w3eden .col-md-11 {
5690
+ -ms-flex: 0 0 91.666667%;
5691
+ flex: 0 0 91.666667%;
5692
+ max-width: 91.666667%;
5693
+ }
5694
+ .w3eden .col-md-12 {
5695
+ -ms-flex: 0 0 100%;
5696
+ flex: 0 0 100%;
5697
+ max-width: 100%;
5698
+ }
5699
+ .w3eden .order-md-first {
5700
+ -ms-flex-order: -1;
5701
+ order: -1;
5702
+ }
5703
+ .w3eden .order-md-1 {
5704
+ -ms-flex-order: 1;
5705
+ order: 1;
5706
+ }
5707
+ .w3eden .order-md-12 {
5708
+ -ms-flex-order: 12;
5709
+ order: 12;
5710
+ }
5711
+ .w3eden .offset-md-2 {
5712
+ margin-left: 16.666667%;
5713
+ }
5714
  }
5715
+ @media (min-width: 992px) {
5716
+ .w3eden {
5717
+ /*.col-lg {*/
5718
+ /* -ms-flex-preferred-size: 0;*/
5719
+ /* flex-basis: 0;*/
5720
+ /* -ms-flex-positive: 1;*/
5721
+ /* flex-grow: 1;*/
5722
+ /* max-width: 100%;*/
5723
+ /*}*/
5724
+ /*.col-lg-auto {*/
5725
+ /* -ms-flex: 0 0 auto;*/
5726
+ /* flex: 0 0 auto;*/
5727
+ /* width: auto;*/
5728
+ /* max-width: 100%;*/
5729
+ /*}*/
5730
+ /*.col-lg-1 {*/
5731
+ /* -ms-flex: 0 0 8.333333%;*/
5732
+ /* flex: 0 0 8.333333%;*/
5733
+ /* max-width: 8.333333%;*/
5734
+ /*}*/
5735
+ /*.order-lg-first {*/
5736
+ /* -ms-flex-order: -1;*/
5737
+ /* order: -1;*/
5738
+ /*}*/
5739
+ /*.order-lg-last {*/
5740
+ /* -ms-flex-order: 13;*/
5741
+ /* order: 13;*/
5742
+ /*}*/
5743
+ /*.order-lg-1 {*/
5744
+ /* -ms-flex-order: 1;*/
5745
+ /* order: 1;*/
5746
+ /*}*/
5747
+ /*.order-lg-2 {*/
5748
+ /* -ms-flex-order: 2;*/
5749
+ /* order: 2;*/
5750
+ /*}*/
5751
+ /*.order-lg-3 {*/
5752
+ /* -ms-flex-order: 3;*/
5753
+ /* order: 3;*/
5754
+ /*}*/
5755
+ /*.order-lg-4 {*/
5756
+ /* -ms-flex-order: 4;*/
5757
+ /* order: 4;*/
5758
+ /*}*/
5759
+ /*.order-lg-5 {*/
5760
+ /* -ms-flex-order: 5;*/
5761
+ /* order: 5;*/
5762
+ /*}*/
5763
+ /*.order-lg-6 {*/
5764
+ /* -ms-flex-order: 6;*/
5765
+ /* order: 6;*/
5766
+ /*}*/
5767
+ /*.order-lg-7 {*/
5768
+ /* -ms-flex-order: 7;*/
5769
+ /* order: 7;*/
5770
+ /*}*/
5771
+ /*.order-lg-8 {*/
5772
+ /* -ms-flex-order: 8;*/
5773
+ /* order: 8;*/
5774
+ /*}*/
5775
+ /*.order-lg-9 {*/
5776
+ /* -ms-flex-order: 9;*/
5777
+ /* order: 9;*/
5778
+ /*}*/
5779
+ /*.order-lg-10 {*/
5780
+ /* -ms-flex-order: 10;*/
5781
+ /* order: 10;*/
5782
+ /*}*/
5783
+ /*.order-lg-11 {*/
5784
+ /* -ms-flex-order: 11;*/
5785
+ /* order: 11;*/
5786
+ /*}*/
5787
+ /*.order-lg-12 {*/
5788
+ /* -ms-flex-order: 12;*/
5789
+ /* order: 12;*/
5790
+ /*}*/
5791
+ /*.offset-lg-0 {*/
5792
+ /* margin-left: 0;*/
5793
+ /*}*/
5794
+ /*.offset-lg-1 {*/
5795
+ /* margin-left: 8.333333%;*/
5796
+ /*}*/
5797
+ /*.offset-lg-2 {*/
5798
+ /* margin-left: 16.666667%;*/
5799
+ /*}*/
5800
+ /*.offset-lg-3 {*/
5801
+ /* margin-left: 25%;*/
5802
+ /*}*/
5803
+ /*.offset-lg-4 {*/
5804
+ /* margin-left: 33.333333%;*/
5805
+ /*}*/
5806
+ /*.offset-lg-5 {*/
5807
+ /* margin-left: 41.666667%;*/
5808
+ /*}*/
5809
+ /*.offset-lg-6 {*/
5810
+ /* margin-left: 50%;*/
5811
+ /*}*/
5812
+ /*.offset-lg-7 {*/
5813
+ /* margin-left: 58.333333%;*/
5814
+ /*}*/
5815
+ /*.offset-lg-8 {*/
5816
+ /* margin-left: 66.666667%;*/
5817
+ /*}*/
5818
+ /*.offset-lg-9 {*/
5819
+ /* margin-left: 75%;*/
5820
+ /*}*/
5821
+ /*.offset-lg-10 {*/
5822
+ /* margin-left: 83.333333%;*/
5823
+ /*}*/
5824
+ /*.offset-lg-11 {*/
5825
+ /* margin-left: 91.666667%;*/
5826
+ /*}*/
5827
+ }
5828
+ .w3eden .col-lg-2 {
5829
+ -ms-flex: 0 0 16.666667%;
5830
+ flex: 0 0 16.666667%;
5831
+ max-width: 16.666667%;
5832
+ }
5833
+ .w3eden .col-lg-3 {
5834
+ -ms-flex: 0 0 25%;
5835
+ flex: 0 0 25%;
5836
+ max-width: 25%;
5837
+ }
5838
+ .w3eden .col-lg-4 {
5839
+ -ms-flex: 0 0 33.333333%;
5840
+ flex: 0 0 33.333333%;
5841
+ max-width: 33.333333%;
5842
+ }
5843
+ .w3eden .col-lg-5 {
5844
+ -ms-flex: 0 0 41.666667%;
5845
+ flex: 0 0 41.666667%;
5846
+ max-width: 41.666667%;
5847
+ }
5848
+ .w3eden .col-lg-6 {
5849
+ -ms-flex: 0 0 50%;
5850
+ flex: 0 0 50%;
5851
+ max-width: 50%;
5852
+ }
5853
+ .w3eden .col-lg-7 {
5854
+ -ms-flex: 0 0 58.333333%;
5855
+ flex: 0 0 58.333333%;
5856
+ max-width: 58.333333%;
5857
+ }
5858
+ .w3eden .col-lg-8 {
5859
+ -ms-flex: 0 0 66.666667%;
5860
+ flex: 0 0 66.666667%;
5861
+ max-width: 66.666667%;
5862
+ }
5863
+ .w3eden .col-lg-9 {
5864
+ -ms-flex: 0 0 75%;
5865
+ flex: 0 0 75%;
5866
+ max-width: 75%;
5867
+ }
5868
+ .w3eden .col-lg-10 {
5869
+ -ms-flex: 0 0 83.333333%;
5870
+ flex: 0 0 83.333333%;
5871
+ max-width: 83.333333%;
5872
+ }
5873
+ .w3eden .col-lg-11 {
5874
+ -ms-flex: 0 0 91.666667%;
5875
+ flex: 0 0 91.666667%;
5876
+ max-width: 91.666667%;
5877
+ }
5878
+ .w3eden .col-lg-12 {
5879
+ -ms-flex: 0 0 100%;
5880
+ flex: 0 0 100%;
5881
+ max-width: 100%;
5882
+ }
5883
+ .w3eden .order-lg-0 {
5884
+ -ms-flex-order: 0;
5885
+ order: 0;
5886
+ }
5887
  }
5888
+ @media (min-width: 1200px) {
5889
+ .w3eden {
5890
+ /*.col-xl {*/
5891
+ /* -ms-flex-preferred-size: 0;*/
5892
+ /* flex-basis: 0;*/
5893
+ /* -ms-flex-positive: 1;*/
5894
+ /* flex-grow: 1;*/
5895
+ /* max-width: 100%;*/
5896
+ /*}*/
5897
+ /*.col-xl-auto {*/
5898
+ /* -ms-flex: 0 0 auto;*/
5899
+ /* flex: 0 0 auto;*/
5900
+ /* width: auto;*/
5901
+ /* max-width: 100%;*/
5902
+ /*}*/
5903
+ /*.col-xl-1 {*/
5904
+ /* -ms-flex: 0 0 8.333333%;*/
5905
+ /* flex: 0 0 8.333333%;*/
5906
+ /* max-width: 8.333333%;*/
5907
+ /*}*/
5908
+ /*.order-xl-first {*/
5909
+ /* -ms-flex-order: -1;*/
5910
+ /* order: -1;*/
5911
+ /*}*/
5912
+ /*.order-xl-last {*/
5913
+ /* -ms-flex-order: 13;*/
5914
+ /* order: 13;*/
5915
+ /*}*/
5916
+ /*.order-xl-0 {*/
5917
+ /* -ms-flex-order: 0;*/
5918
+ /* order: 0;*/
5919
+ /*}*/
5920
+ /*.order-xl-1 {*/
5921
+ /* -ms-flex-order: 1;*/
5922
+ /* order: 1;*/
5923
+ /*}*/
5924
+ /*.order-xl-2 {*/
5925
+ /* -ms-flex-order: 2;*/
5926
+ /* order: 2;*/
5927
+ /*}*/
5928
+ /*.order-xl-3 {*/
5929
+ /* -ms-flex-order: 3;*/
5930
+ /* order: 3;*/
5931
+ /*}*/
5932
+ /*.order-xl-4 {*/
5933
+ /* -ms-flex-order: 4;*/
5934
+ /* order: 4;*/
5935
+ /*}*/
5936
+ /*.order-xl-5 {*/
5937
+ /* -ms-flex-order: 5;*/
5938
+ /* order: 5;*/
5939
+ /*}*/
5940
+ /*.order-xl-6 {*/
5941
+ /* -ms-flex-order: 6;*/
5942
+ /* order: 6;*/
5943
+ /*}*/
5944
+ /*.order-xl-7 {*/
5945
+ /* -ms-flex-order: 7;*/
5946
+ /* order: 7;*/
5947
+ /*}*/
5948
+ /*.order-xl-8 {*/
5949
+ /* -ms-flex-order: 8;*/
5950
+ /* order: 8;*/
5951
+ /*}*/
5952
+ /*.order-xl-9 {*/
5953
+ /* -ms-flex-order: 9;*/
5954
+ /* order: 9;*/
5955
+ /*}*/
5956
+ /*.order-xl-10 {*/
5957
+ /* -ms-flex-order: 10;*/
5958
+ /* order: 10;*/
5959
+ /*}*/
5960
+ /*.order-xl-11 {*/
5961
+ /* -ms-flex-order: 11;*/
5962
+ /* order: 11;*/
5963
+ /*}*/
5964
+ /*.order-xl-12 {*/
5965
+ /* -ms-flex-order: 12;*/
5966
+ /* order: 12;*/
5967
+ /*}*/
5968
+ /*.offset-xl-0 {*/
5969
+ /* margin-left: 0;*/
5970
+ /*}*/
5971
+ /*.offset-xl-1 {*/
5972
+ /* margin-left: 8.333333%;*/
5973
+ /*}*/
5974
+ /*.offset-xl-2 {*/
5975
+ /* margin-left: 16.666667%;*/
5976
+ /*}*/
5977
+ /*.offset-xl-3 {*/
5978
+ /* margin-left: 25%;*/
5979
+ /*}*/
5980
+ /*.offset-xl-4 {*/
5981
+ /* margin-left: 33.333333%;*/
5982
+ /*}*/
5983
+ /*.offset-xl-5 {*/
5984
+ /* margin-left: 41.666667%;*/
5985
+ /*}*/
5986
+ /*.offset-xl-6 {*/
5987
+ /* margin-left: 50%;*/
5988
+ /*}*/
5989
+ /*.offset-xl-7 {*/
5990
+ /* margin-left: 58.333333%;*/
5991
+ /*}*/
5992
+ /*.offset-xl-8 {*/
5993
+ /* margin-left: 66.666667%;*/
5994
+ /*}*/
5995
+ /*.offset-xl-9 {*/
5996
+ /* margin-left: 75%;*/
5997
+ /*}*/
5998
+ /*.offset-xl-10 {*/
5999
+ /* margin-left: 83.333333%;*/
6000
+ /*}*/
6001
+ /*.offset-xl-11 {*/
6002
+ /* margin-left: 91.666667%;*/
6003
+ /*}*/
6004
+ }
6005
+ .w3eden .col-xl-2 {
6006
+ -ms-flex: 0 0 16.666667%;
6007
+ flex: 0 0 16.666667%;
6008
+ max-width: 16.666667%;
6009
+ }
6010
+ .w3eden .col-xl-3 {
6011
+ -ms-flex: 0 0 25%;
6012
+ flex: 0 0 25%;
6013
+ max-width: 25%;
6014
+ }
6015
+ .w3eden .col-xl-4 {
6016
+ -ms-flex: 0 0 33.333333%;
6017
+ flex: 0 0 33.333333%;
6018
+ max-width: 33.333333%;
6019
+ }
6020
+ .w3eden .col-xl-5 {
6021
+ -ms-flex: 0 0 41.666667%;
6022
+ flex: 0 0 41.666667%;
6023
+ max-width: 41.666667%;
6024
+ }
6025
+ .w3eden .col-xl-6 {
6026
+ -ms-flex: 0 0 50%;
6027
+ flex: 0 0 50%;
6028
+ max-width: 50%;
6029
+ }
6030
+ .w3eden .col-xl-7 {
6031
+ -ms-flex: 0 0 58.333333%;
6032
+ flex: 0 0 58.333333%;
6033
+ max-width: 58.333333%;
6034
+ }
6035
+ .w3eden .col-xl-8 {
6036
+ -ms-flex: 0 0 66.666667%;
6037
+ flex: 0 0 66.666667%;
6038
+ max-width: 66.666667%;
6039
+ }
6040
+ .w3eden .col-xl-9 {
6041
+ -ms-flex: 0 0 75%;
6042
+ flex: 0 0 75%;
6043
+ max-width: 75%;
6044
+ }
6045
+ .w3eden .col-xl-10 {
6046
+ -ms-flex: 0 0 83.333333%;
6047
+ flex: 0 0 83.333333%;
6048
+ max-width: 83.333333%;
6049
+ }
6050
+ .w3eden .col-xl-11 {
6051
+ -ms-flex: 0 0 91.666667%;
6052
+ flex: 0 0 91.666667%;
6053
+ max-width: 91.666667%;
6054
+ }
6055
+ .w3eden .col-xl-12 {
6056
+ -ms-flex: 0 0 100%;
6057
+ flex: 0 0 100%;
6058
+ max-width: 100%;
6059
+ }
6060
  }
6061
+ .w3eden .table {
6062
+ width: 100%;
6063
+ margin-bottom: 1rem;
6064
+ border: 0;
6065
+ color: #212529;
6066
+ }
6067
+ .w3eden .table th,
6068
+ .w3eden .table td {
6069
+ padding: 0.75rem;
6070
+ vertical-align: top;
6071
+ border: 0;
6072
+ border-top: 1px solid #dee2e6;
6073
+ }
6074
+ .w3eden .table thead th {
6075
+ vertical-align: bottom;
6076
+ border: 0;
6077
+ border-bottom: 1px solid #dee2e6;
6078
+ }
6079
+ .w3eden .table tbody + tbody {
6080
+ border: 0;
6081
+ border-top: 1px solid #dee2e6;
6082
  }
6083
+ .w3eden .table-bordered {
6084
+ border: 1px solid #dee2e6;
 
6085
  }
6086
+ .w3eden .table-bordered th,
6087
+ .w3eden .table-bordered td {
6088
+ border: 1px solid #dee2e6;
 
6089
  }
6090
+ .w3eden .table-bordered thead th,
6091
+ .w3eden .table-bordered thead td {
6092
+ border-bottom-width: 2px;
6093
  }
6094
+ .w3eden .form-control {
6095
+ display: block;
6096
+ width: 100%;
6097
+ height: calc(1.5em + 0.75rem + 2px);
6098
+ padding: 0.375rem 0.75rem;
6099
+ font-size: 1rem;
6100
+ font-weight: 400;
6101
+ line-height: 1.5;
6102
+ color: #495057;
6103
+ background-color: #fff;
6104
+ background-clip: padding-box;
6105
+ border: 1px solid #ced4da;
6106
+ border-radius: 0.25rem;
6107
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
6108
+ }
6109
+ @media (prefers-reduced-motion: reduce) {
6110
+ .w3eden .form-control {
6111
+ transition: none;
6112
+ }
6113
+ }
6114
+ .w3eden .form-control::-ms-expand {
6115
+ background-color: transparent;
6116
+ border: 0;
6117
  }
6118
+ .w3eden .form-control:focus {
6119
+ color: #495057;
6120
+ background-color: #fff;
6121
+ border-color: #80bdff;
6122
+ outline: 0;
6123
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6124
  }
6125
+ .w3eden .form-control::-webkit-input-placeholder {
6126
+ color: var(--color-secondary);
6127
+ opacity: 1;
 
 
 
 
 
 
 
 
 
 
6128
  }
6129
+ .w3eden .form-control::-moz-placeholder {
6130
+ color: var(--color-secondary);
6131
+ opacity: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6132
  }
6133
+ .w3eden .form-control:-ms-input-placeholder {
6134
+ color: var(--color-secondary);
6135
+ opacity: 1;
 
 
6136
  }
6137
+ .w3eden .form-control::-ms-input-placeholder {
6138
+ color: var(--color-secondary);
6139
+ opacity: 1;
6140
  }
6141
+ .w3eden .form-control::placeholder {
6142
+ color: var(--color-secondary);
6143
+ opacity: 1;
6144
  }
6145
+ .w3eden .form-control:disabled, .w3eden .form-control[readonly] {
6146
+ background-color: #e9ecef;
6147
+ opacity: 1;
6148
  }
6149
+ .w3eden select.form-control:focus::-ms-value {
6150
+ color: #495057;
6151
+ background-color: #fff;
6152
  }
6153
+ .w3eden .form-control-lg {
6154
+ height: calc(1.5em + 1rem + 2px);
6155
+ padding: 0.5rem 1rem;
6156
+ font-size: 1.25rem;
6157
+ line-height: 1.5;
6158
+ border-radius: 0.3rem;
6159
  }
6160
+ .w3eden select.form-control[size], .w3eden select.form-control[multiple] {
6161
+ height: auto;
 
 
 
 
6162
  }
6163
+ .w3eden textarea.form-control {
6164
+ height: auto;
 
 
6165
  }
6166
+ .w3eden .form-group {
6167
+ margin-bottom: 1rem;
6168
+ }
6169
+ .w3eden .form-row {
6170
+ display: -ms-flexbox;
6171
+ display: flex;
6172
+ -ms-flex-wrap: wrap;
6173
+ flex-wrap: wrap;
6174
+ margin-right: -5px;
6175
+ margin-left: -5px;
6176
+ }
6177
+ .w3eden .form-row > .col,
6178
+ .w3eden .form-row > [class*=col-] {
6179
+ padding-right: 5px;
6180
+ padding-left: 5px;
6181
+ }
6182
+ .w3eden .form-inline {
6183
+ display: -ms-flexbox;
6184
+ display: flex;
6185
+ -ms-flex-flow: row wrap;
6186
+ flex-flow: row wrap;
6187
+ -ms-flex-align: center;
6188
+ align-items: center;
6189
  }
6190
+ .w3eden .btn {
6191
+ display: inline-block;
6192
+ font-weight: 400;
6193
+ color: #212529;
6194
+ text-align: center;
6195
+ vertical-align: middle;
6196
+ -webkit-user-select: none;
6197
+ -moz-user-select: none;
6198
+ -ms-user-select: none;
6199
+ user-select: none;
6200
+ background-color: transparent;
6201
+ border: 1px solid transparent;
6202
+ padding: 0.375rem 0.75rem;
6203
+ font-size: 1rem;
6204
+ line-height: 1.5;
6205
+ border-radius: 0.25rem;
6206
+ 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;
6207
+ }
6208
+ @media (prefers-reduced-motion: reduce) {
6209
+ .w3eden .btn {
6210
+ transition: none;
6211
+ }
6212
  }
6213
+ .w3eden .btn:hover {
6214
+ color: #212529;
6215
+ text-decoration: none;
 
6216
  }
6217
+ .w3eden .btn:focus, .w3eden .btn.focus {
6218
+ outline: 0;
6219
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6220
  }
6221
+ .w3eden .btn-primary {
6222
+ color: #fff;
6223
+ background-color: var(--color-primary);
6224
+ border-color: var(--color-primary);
6225
  }
6226
+ .w3eden .btn-primary:hover {
6227
+ color: #fff;
6228
+ background-color: #0069d9;
6229
+ border-color: #0062cc;
6230
  }
6231
+ .w3eden .btn-primary:focus, .w3eden .btn-primary.focus {
6232
+ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
6233
  }
6234
+ .w3eden .btn-primary.disabled, .w3eden .btn-primary:disabled {
6235
+ color: #fff;
6236
+ background-color: var(--color-primary);
6237
+ border-color: var(--color-primary);
6238
  }
6239
+ .w3eden .btn-primary:not(:disabled):not(.disabled):active, .w3eden .btn-primary:not(:disabled):not(.disabled).active,
6240
+ .w3eden .show > .btn-primary.dropdown-toggle {
6241
+ color: #fff;
6242
+ background-color: #0062cc;
6243
+ border-color: #005cbf;
6244
  }
6245
+ .w3eden .btn-primary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-primary:not(:disabled):not(.disabled).active:focus,
6246
+ .w3eden .show > .btn-primary.dropdown-toggle:focus {
6247
+ box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
6248
  }
6249
+ .w3eden .btn-secondary {
6250
+ color: #fff;
6251
+ background-color: var(--color-secondary);
6252
+ border-color: var(--color-secondary);
6253
  }
6254
+ .w3eden .btn-secondary:hover {
6255
+ color: #fff;
6256
+ background-color: #5a6268;
6257
+ border-color: #545b62;
 
 
 
6258
  }
6259
+ .w3eden .btn-secondary:focus, .w3eden .btn-secondary.focus {
6260
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
 
 
 
 
 
6261
  }
6262
+ .w3eden .btn-secondary.disabled, .w3eden .btn-secondary:disabled {
6263
+ color: #fff;
6264
+ background-color: var(--color-secondary);
6265
+ border-color: var(--color-secondary);
 
 
 
6266
  }
6267
+ .w3eden .btn-secondary:not(:disabled):not(.disabled):active, .w3eden .btn-secondary:not(:disabled):not(.disabled).active,
6268
+ .w3eden .show > .btn-secondary.dropdown-toggle {
6269
+ color: #fff;
6270
+ background-color: #545b62;
6271
+ border-color: #4e555b;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6272
  }
6273
+ .w3eden .btn-secondary:not(:disabled):not(.disabled):active:focus, .w3eden .btn-secondary:not(:disabled):not(.disabled).active:focus,
6274
+ .w3eden .show > .btn-secondary.dropdown-toggle:focus {
6275
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
 
 
 
 
6276
  }
6277
+ .w3eden .btn-success {
6278
+ color: #fff;
6279
+ background-color: var(--color-success);
6280
+ border-color: var(--color-success);
 
6281
  }
6282
+ .w3eden .btn-success:hover {
6283
+ color: #fff;
6284
+ background-color: #218838;
6285
+ border-color: #1e7e34;
6286
  }
6287
+ .w3eden .btn-success:focus, .w3eden .btn-success.focus {
6288
+ box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
 
 
6289
  }
6290
+ .w3eden .btn-success.disabled, .w3eden .btn-success:disabled {
6291
+ color: #fff;
6292
+ background-color: var(--color-success);
6293
+ border-color: var(--color-success);
6294
  }
6295
+ .w3eden .btn-success:not(:disabled):not(.disabled):active, .w3eden .btn-success:not(:disabled):not(.disabled).active,
6296
+ .w3eden .show > .btn-success.dropdown-toggle {
6297
+ color: #fff;
6298
+ background-color: #1e7e34;
6299
+ border-color: #1c7430;
6300
  }
6301
+ .w3eden .btn-success:not(:disabled):not(.disabled):active:focus, .w3eden .btn-success:not(:disabled):not(.disabled).active:focus,
6302
+ .w3eden .show > .btn-success.dropdown-toggle:focus {
6303
+ box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
6304
  }
6305
+ .w3eden .btn-info {
6306
+ color: #fff;
6307
+ background-color: var(--color-info);
6308
+ border-color: var(--color-info);
6309
  }
6310
+ .w3eden .btn-info:hover {
6311
+ color: #fff;
6312
+ background-color: #138496;
6313
+ border-color: #117a8b;
6314
  }
6315
+ .w3eden .btn-info:focus, .w3eden .btn-info.focus {
6316
+ box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
 
 
6317
  }
6318
+ .w3eden .btn-info.disabled, .w3eden .btn-info:disabled {
6319
+ color: #fff;
6320
+ background-color: var(--color-info);
6321
+ border-color: var(--color-info);
6322
  }
6323
+ .w3eden .btn-info:not(:disabled):not(.disabled):active, .w3eden .btn-info:not(:disabled):not(.disabled).active,
6324
+ .w3eden .show > .btn-info.dropdown-toggle {
6325
+ color: #fff;
6326
+ background-color: #117a8b;
6327
+ border-color: #10707f;
6328
  }
6329
+ .w3eden .btn-info:not(:disabled):not(.disabled):active:focus, .w3eden .btn-info:not(:disabled):not(.disabled).active:focus,
6330
+ .w3eden .show > .btn-info.dropdown-toggle:focus {
6331
+ box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
 
6332
  }
6333
+ .w3eden .btn-warning {
6334
+ color: #212529;
6335
+ background-color: var(--color-warning);
6336
+ border-color: var(--color-warning);
6337
  }
6338
+ .w3eden .btn-warning:hover {
6339
+ color: #212529;
6340
+ background-color: #e0a800;
6341
+ border-color: #d39e00;
6342
  }
6343
+ .w3eden .btn-warning:focus, .w3eden .btn-warning.focus {
6344
+ box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
 
6345
  }
6346
+ .w3eden .btn-warning.disabled, .w3eden .btn-warning:disabled {
6347
+ color: #212529;
6348
+ background-color: var(--color-warning);
6349
+ border-color: var(--color-warning);
6350
  }
6351
+ .w3eden .btn-warning:not(:disabled):not(.disabled):active, .w3eden .btn-warning:not(:disabled):not(.disabled).active,
6352
+ .w3eden .show > .btn-warning.dropdown-toggle {
6353
+ color: #212529;
6354
+ background-color: #d39e00;
6355
+ border-color: #c69500;
6356
  }
6357
+ .w3eden .btn-warning:not(:disabled):not(.disabled):active:focus, .w3eden .btn-warning:not(:disabled):not(.disabled).active:focus,
6358
+ .w3eden .show > .btn-warning.dropdown-toggle:focus {
6359
+ box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
6360
  }
6361
+ .w3eden .btn-danger {
6362
+ color: #fff;
6363
+ background-color: var(--color-danger);
6364
+ border-color: var(--color-danger);
6365
+ }
6366
+ .w3eden .btn-danger:hover {
6367
+ color: #fff;
6368
+ background-color: #c82333;
6369
+ border-color: #bd2130;
6370
+ }
6371
+ .w3eden .btn-danger:focus, .w3eden .btn-danger.focus {
6372
+ box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
6373
+ }
6374
+ .w3eden .btn-danger.disabled, .w3eden .btn-danger:disabled {
6375
+ color: #fff;
6376
+ background-color: var(--color-danger);
6377
+ border-color: var(--color-danger);
6378
+ }
6379
+ .w3eden .btn-danger:not(:disabled):not(.disabled):active, .w3eden .btn-danger:not(:disabled):not(.disabled).active,
6380
+ .w3eden .show > .btn-danger.dropdown-toggle {
6381
+ color: #fff;
6382
+ background-color: #bd2130;
6383
+ border-color: #b21f2d;
6384
+ }
6385
+ .w3eden .btn-danger:not(:disabled):not(.disabled):active:focus, .w3eden .btn-danger:not(:disabled):not(.disabled).active:focus,
6386
+ .w3eden .show > .btn-danger.dropdown-toggle:focus {
6387
+ box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
6388
+ }
6389
+ .w3eden .btn-light {
6390
+ color: #212529;
6391
+ background-color: #f8f9fa;
6392
+ border-color: #f8f9fa;
6393
+ }
6394
+ .w3eden .btn-light:hover {
6395
+ color: #212529;
6396
+ background-color: #e2e6ea;
6397
+ border-color: #dae0e5;
6398
+ }
6399
+ .w3eden .btn-light:focus, .w3eden .btn-light.focus {
6400
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
6401
+ }
6402
+ .w3eden .btn-light.disabled, .w3eden .btn-light:disabled {
6403
+ color: #212529;
6404
+ background-color: #f8f9fa;
6405
+ border-color: #f8f9fa;
6406
+ }
6407
+ .w3eden .btn-light:not(:disabled):not(.disabled):active, .w3eden .btn-light:not(:disabled):not(.disabled).active,
6408
+ .w3eden .show > .btn-light.dropdown-toggle {
6409
+ color: #212529;
6410
+ background-color: #dae0e5;
6411
+ border-color: #d3d9df;
6412
+ }
6413
+ .w3eden .btn-light:not(:disabled):not(.disabled):active:focus, .w3eden .btn-light:not(:disabled):not(.disabled).active:focus,
6414
+ .w3eden .show > .btn-light.dropdown-toggle:focus {
6415
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
6416
  }
6417
+ .w3eden .btn-link {
6418
+ font-weight: 400;
6419
+ color: var(--color-primary);
6420
+ text-decoration: none;
6421
  }
6422
+ .w3eden .btn-link:hover {
6423
+ color: var(--color-primary-hover);
6424
+ text-decoration: underline;
6425
  }
6426
+ .w3eden .btn-link:focus, .w3eden .btn-link.focus {
6427
+ text-decoration: underline;
6428
+ box-shadow: none;
6429
  }
6430
+ .w3eden .btn-link:disabled, .w3eden .btn-link.disabled {
6431
+ color: var(--color-secondary);
6432
+ pointer-events: none;
 
 
 
 
6433
  }
6434
+ .w3eden .btn-lg, .w3eden .btn-group-lg > .btn {
6435
+ padding: 0.5rem 1rem;
6436
+ font-size: 1.25rem;
6437
+ line-height: 1.5;
6438
+ border-radius: 0.3rem;
6439
  }
6440
+ .w3eden .btn-sm, .w3eden .btn-group-sm > .btn {
6441
+ padding: 0.25rem 0.5rem;
6442
+ font-size: 0.875rem;
6443
+ line-height: 1.5;
6444
+ border-radius: 0.2rem;
6445
  }
6446
+ .w3eden .btn-block {
6447
+ display: block;
6448
+ width: 100%;
6449
  }
6450
+ .w3eden .btn-block + .btn-block {
6451
+ margin-top: 0.5rem;
6452
  }
6453
+ .w3eden input[type=submit].btn-block,
6454
+ .w3eden input[type=reset].btn-block,
6455
+ .w3eden input[type=button].btn-block {
6456
+ width: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6457
  }
6458
+ .w3eden .fade {
6459
+ transition: opacity 0.15s linear;
 
6460
  }
6461
+ @media (prefers-reduced-motion: reduce) {
6462
+ .w3eden .fade {
6463
+ transition: none;
6464
+ }
6465
  }
6466
+ .w3eden .fade:not(.show) {
6467
+ opacity: 0;
6468
  }
6469
+ .w3eden .collapse:not(.show) {
6470
+ display: none;
 
 
6471
  }
6472
+ .w3eden .collapsing {
6473
+ position: relative;
6474
+ height: 0;
6475
+ overflow: hidden;
6476
+ transition: height 0.35s ease;
6477
+ }
6478
+ @media (prefers-reduced-motion: reduce) {
6479
+ .w3eden .collapsing {
6480
+ transition: none;
6481
+ }
6482
+ }
6483
+ .w3eden .dropup,
6484
+ .w3eden .dropright,
6485
+ .w3eden .dropdown,
6486
+ .w3eden .dropleft {
6487
+ position: relative;
6488
  }
6489
+ .w3eden .dropdown-toggle {
6490
+ white-space: nowrap;
 
6491
  }
6492
+ .w3eden .dropdown-toggle::after {
6493
+ display: inline-block;
6494
+ margin-left: 0.255em;
6495
+ vertical-align: 0.255em;
6496
+ content: "";
6497
+ border-top: 0.3em solid;
6498
+ border-right: 0.3em solid transparent;
6499
+ border-bottom: 0;
6500
+ border-left: 0.3em solid transparent;
6501
  }
6502
+ .w3eden .dropdown-toggle:empty::after {
6503
+ margin-left: 0;
6504
  }
6505
+ .w3eden .dropdown-menu {
6506
+ position: absolute;
6507
+ top: 100%;
6508
+ left: 0;
6509
+ z-index: 1000;
6510
+ display: none;
6511
+ float: left;
6512
+ min-width: 10rem;
6513
+ padding: 0.5rem 0;
6514
+ margin: 0.125rem 0 0;
6515
+ font-size: 1rem;
6516
+ color: #212529;
6517
+ text-align: left;
6518
+ list-style: none;
6519
+ background-color: #fff;
6520
+ background-clip: padding-box;
6521
+ border: 1px solid rgba(0, 0, 0, 0.15);
6522
+ border-radius: 0.25rem;
6523
+ }
6524
+ .w3eden .dropdown-menu[x-placement^=top], .w3eden .dropdown-menu[x-placement^=right], .w3eden .dropdown-menu[x-placement^=bottom], .w3eden .dropdown-menu[x-placement^=left] {
6525
+ right: auto;
6526
+ bottom: auto;
6527
+ }
6528
+ .w3eden .dropdown-divider {
6529
+ height: 0;
6530
+ margin: 0.5rem 0;
6531
+ overflow: hidden;
6532
+ border-top: 1px solid #e9ecef;
6533
+ }
6534
+ .w3eden .dropdown-item {
6535
+ display: block;
6536
+ width: 100%;
6537
+ padding: 0.25rem 1.5rem;
6538
+ clear: both;
6539
+ font-weight: 400;
6540
+ color: #212529;
6541
+ text-align: inherit;
6542
+ white-space: nowrap;
6543
+ background-color: transparent;
6544
+ border: 0;
6545
+ }
6546
+ .w3eden .dropdown-item:hover, .w3eden .dropdown-item:focus {
6547
+ color: #16181b;
6548
+ text-decoration: none;
6549
+ background-color: #f8f9fa;
6550
+ }
6551
+ .w3eden .dropdown-item.active, .w3eden .dropdown-item:active {
6552
+ color: #fff;
6553
+ text-decoration: none;
6554
+ background-color: var(--color-primary);
6555
+ }
6556
+ .w3eden .dropdown-item.disabled, .w3eden .dropdown-item:disabled {
6557
+ color: var(--color-secondary);
6558
+ pointer-events: none;
6559
+ background-color: transparent;
6560
+ }
6561
+ .w3eden .dropdown-menu.show {
6562
+ display: block;
6563
  }
6564
+ .w3eden .dropdown-header {
6565
+ display: block;
6566
+ padding: 0.5rem 1.5rem;
6567
+ margin-bottom: 0;
6568
+ font-size: 0.875rem;
6569
+ color: var(--color-secondary);
6570
+ white-space: nowrap;
6571
+ }
6572
+ .w3eden .dropdown-item-text {
6573
+ display: block;
6574
+ padding: 0.25rem 1.5rem;
6575
+ color: #212529;
6576
  }
6577
+ .w3eden .input-group {
6578
+ position: relative;
6579
+ display: -ms-flexbox;
6580
+ display: flex;
6581
+ -ms-flex-wrap: wrap;
6582
+ flex-wrap: wrap;
6583
+ -ms-flex-align: stretch;
6584
+ align-items: stretch;
6585
+ width: 100%;
6586
+ }
6587
+ .w3eden .input-group > .form-control,
6588
+ .w3eden .input-group > .form-control-plaintext,
6589
+ .w3eden .input-group > .custom-select,
6590
+ .w3eden .input-group > .custom-file {
6591
+ position: relative;
6592
+ -ms-flex: 1 1 auto;
6593
+ flex: 1 1 auto;
6594
+ width: 1%;
6595
+ margin-bottom: 0;
6596
+ }
6597
+ .w3eden .input-group > .form-control + .form-control,
6598
+ .w3eden .input-group > .form-control + .custom-select,
6599
+ .w3eden .input-group > .custom-select + .form-control,
6600
+ .w3eden .input-group > .custom-select + .custom-select {
6601
+ margin-left: -1px;
6602
+ }
6603
+ .w3eden .input-group > .form-control:focus,
6604
+ .w3eden .input-group > .custom-select:focus,
6605
+ .w3eden .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
6606
+ z-index: 3;
6607
+ }
6608
+ .w3eden .input-group > .form-control:not(:last-child),
6609
+ .w3eden .input-group > .custom-select:not(:last-child) {
6610
+ border-top-right-radius: 0;
6611
+ border-bottom-right-radius: 0;
6612
+ }
6613
+ .w3eden .input-group > .form-control:not(:first-child),
6614
+ .w3eden .input-group > .custom-select:not(:first-child) {
6615
+ border-top-left-radius: 0;
6616
+ border-bottom-left-radius: 0;
6617
+ }
6618
+ .w3eden .input-group-prepend,
6619
+ .w3eden .input-group-append {
6620
+ display: -ms-flexbox;
6621
+ display: flex;
6622
+ }
6623
+ .w3eden .input-group-prepend .btn,
6624
+ .w3eden .input-group-append .btn {
6625
+ position: relative;
6626
+ z-index: 2;
6627
+ }
6628
+ .w3eden .input-group-prepend .btn:focus,
6629
+ .w3eden .input-group-append .btn:focus {
6630
+ z-index: 3;
6631
+ }
6632
+ .w3eden .input-group-prepend .btn + .btn,
6633
+ .w3eden .input-group-prepend .btn + .input-group-text,
6634
+ .w3eden .input-group-prepend .input-group-text + .input-group-text,
6635
+ .w3eden .input-group-prepend .input-group-text + .btn,
6636
+ .w3eden .input-group-append .btn + .btn,
6637
+ .w3eden .input-group-append .btn + .input-group-text,
6638
+ .w3eden .input-group-append .input-group-text + .input-group-text,
6639
+ .w3eden .input-group-append .input-group-text + .btn {
6640
+ margin-left: -1px;
6641
+ }
6642
+ .w3eden .input-group-prepend {
6643
+ margin-right: -1px;
6644
+ }
6645
+ .w3eden .input-group-append {
6646
+ margin-left: -1px;
6647
+ }
6648
+ .w3eden .input-group-text {
6649
+ display: -ms-flexbox;
6650
+ display: flex;
6651
+ -ms-flex-align: center;
6652
+ align-items: center;
6653
+ padding: 0.375rem 0.75rem;
6654
+ margin-bottom: 0;
6655
+ font-size: 1rem;
6656
+ font-weight: 400;
6657
+ line-height: 1.5;
6658
+ color: #495057;
6659
+ text-align: center;
6660
+ white-space: nowrap;
6661
+ background-color: #e9ecef;
6662
+ border: 1px solid #ced4da;
6663
+ border-radius: 0.25rem;
6664
+ }
6665
+ .w3eden .input-group-text input[type=radio],
6666
+ .w3eden .input-group-text input[type=checkbox] {
6667
+ margin-top: 0;
6668
+ }
6669
+ .w3eden .input-group-lg > .form-control:not(textarea),
6670
+ .w3eden .input-group-lg > .custom-select {
6671
+ height: calc(1.5em + 1rem + 2px);
6672
  }
6673
+ .w3eden .input-group-lg > .form-control,
6674
+ .w3eden .input-group-lg > .custom-select,
6675
+ .w3eden .input-group-lg > .input-group-prepend > .input-group-text,
6676
+ .w3eden .input-group-lg > .input-group-append > .input-group-text,
6677
+ .w3eden .input-group-lg > .input-group-prepend > .btn,
6678
+ .w3eden .input-group-lg > .input-group-append > .btn {
6679
+ padding: 0.5rem 1rem;
6680
+ font-size: 1.25rem;
6681
+ line-height: 1.5;
6682
+ border-radius: 0.3rem;
6683
+ }
6684
+ .w3eden .input-group-sm > .form-control:not(textarea),
6685
+ .w3eden .input-group-sm > .custom-select {
6686
+ height: calc(1.5em + 0.5rem + 2px);
6687
  }
6688
+ .w3eden .input-group-sm > .form-control,
6689
+ .w3eden .input-group-sm > .custom-select,
6690
+ .w3eden .input-group-sm > .input-group-prepend > .input-group-text,
6691
+ .w3eden .input-group-sm > .input-group-append > .input-group-text,
6692
+ .w3eden .input-group-sm > .input-group-prepend > .btn,
6693
+ .w3eden .input-group-sm > .input-group-append > .btn {
6694
+ padding: 0.25rem 0.5rem;
6695
+ font-size: 0.875rem;
6696
+ line-height: 1.5;
6697
+ border-radius: 0.2rem;
6698
+ }
6699
+ .w3eden .input-group-lg > .custom-select,
6700
+ .w3eden .input-group-sm > .custom-select {
6701
+ padding-right: 1.75rem;
6702
+ }
6703
+ .w3eden .input-group > .input-group-prepend > .btn,
6704
+ .w3eden .input-group > .input-group-prepend > .input-group-text,
6705
+ .w3eden .input-group > .input-group-append:not(:last-child) > .btn,
6706
+ .w3eden .input-group > .input-group-append:not(:last-child) > .input-group-text,
6707
+ .w3eden .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
6708
+ .w3eden .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
6709
+ border-top-right-radius: 0;
6710
+ border-bottom-right-radius: 0;
6711
+ }
6712
+ .w3eden .input-group > .input-group-append > .btn,
6713
+ .w3eden .input-group > .input-group-append > .input-group-text,
6714
+ .w3eden .input-group > .input-group-prepend:not(:first-child) > .btn,
6715
+ .w3eden .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
6716
+ .w3eden .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
6717
+ .w3eden .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
6718
+ border-top-left-radius: 0;
6719
+ border-bottom-left-radius: 0;
6720
+ }
6721
+ .w3eden .custom-control {
6722
+ position: relative;
6723
+ display: block;
6724
+ min-height: 1.5rem;
6725
+ padding-left: 1.5rem;
6726
+ }
6727
+ .w3eden .custom-control-input {
6728
+ position: absolute;
6729
+ z-index: -1;
6730
+ opacity: 0;
6731
+ }
6732
+ .w3eden .custom-control-input:checked ~ .custom-control-label::before {
6733
+ color: #fff;
6734
+ border-color: var(--color-primary);
6735
+ background-color: var(--color-primary);
6736
+ }
6737
+ .w3eden .custom-control-input:focus ~ .custom-control-label::before {
6738
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6739
+ }
6740
+ .w3eden .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
6741
+ border-color: #80bdff;
6742
+ }
6743
+ .w3eden .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
6744
+ color: #fff;
6745
+ background-color: #b3d7ff;
6746
+ border-color: #b3d7ff;
6747
+ }
6748
+ .w3eden .custom-control-input:disabled ~ .custom-control-label {
6749
+ color: var(--color-secondary);
6750
+ }
6751
+ .w3eden .custom-control-input:disabled ~ .custom-control-label::before {
6752
+ background-color: #e9ecef;
6753
+ }
6754
+ .w3eden .custom-control-label {
6755
+ position: relative;
6756
+ margin-bottom: 0;
6757
+ vertical-align: top;
6758
+ }
6759
+ .w3eden .custom-control-label::before {
6760
+ position: absolute;
6761
+ top: 0.25rem;
6762
+ left: -1.5rem;
6763
+ display: block;
6764
+ width: 1rem;
6765
+ height: 1rem;
6766
+ pointer-events: none;
6767
+ content: "";
6768
+ background-color: #fff;
6769
+ border: #adb5bd solid 1px;
6770
+ }
6771
+ .w3eden .custom-control-label::after {
6772
+ position: absolute;
6773
+ top: 0.25rem;
6774
+ left: -1.5rem;
6775
+ display: block;
6776
+ width: 1rem;
6777
+ height: 1rem;
6778
+ content: "";
6779
+ background: no-repeat 50%/50% 50%;
6780
+ }
6781
+ .w3eden .custom-radio .custom-control-label::before {
6782
+ border-radius: 50%;
6783
+ }
6784
+ .w3eden .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
6785
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
6786
+ }
6787
+ .w3eden .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
6788
+ background-color: rgba(0, 123, 255, 0.5);
6789
+ }
6790
+ .w3eden .custom-select {
6791
+ display: inline-block;
6792
+ width: 100%;
6793
+ height: calc(1.5em + 0.75rem + 2px);
6794
+ padding: 0.375rem 1.75rem 0.375rem 0.75rem;
6795
+ font-size: 1rem;
6796
+ font-weight: 400;
6797
+ line-height: 1.5;
6798
+ color: #495057;
6799
+ vertical-align: middle;
6800
+ background: url("data:image/svg+xml,%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/8px 10px;
6801
+ background-color: #fff;
6802
+ border: 1px solid #ced4da;
6803
+ border-radius: 0.25rem;
6804
+ -webkit-appearance: none;
6805
+ -moz-appearance: none;
6806
+ appearance: none;
6807
+ }
6808
+ .w3eden .custom-select:focus {
6809
+ border-color: #80bdff;
6810
+ outline: 0;
6811
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6812
+ }
6813
+ .w3eden .custom-select:focus::-ms-value {
6814
+ color: #495057;
6815
+ background-color: #fff;
6816
+ }
6817
+ .w3eden .custom-select[multiple], .w3eden .custom-select[size]:not([size="1"]) {
6818
+ height: auto;
6819
+ padding-right: 0.75rem;
6820
+ background-image: none;
6821
+ }
6822
+ .w3eden .custom-select:disabled {
6823
+ color: var(--color-secondary);
6824
+ background-color: #e9ecef;
6825
+ }
6826
+ .w3eden .custom-select::-ms-expand {
6827
+ display: none;
6828
+ }
6829
+ .w3eden .custom-control-label::before,
6830
+ .w3eden .custom-file-label,
6831
+ .w3eden .custom-select {
6832
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
6833
+ }
6834
+ @media (prefers-reduced-motion: reduce) {
6835
+ .w3eden .custom-control-label::before,
6836
+ .w3eden .custom-select {
6837
+ transition: none;
6838
+ }
6839
  }
6840
+ .w3eden .nav {
6841
+ display: -ms-flexbox;
6842
+ display: flex;
6843
+ -ms-flex-wrap: wrap;
6844
+ flex-wrap: wrap;
6845
+ padding-left: 0;
6846
+ margin-bottom: 0;
6847
+ list-style: none;
6848
+ }
6849
+ .w3eden .nav-link {
6850
+ display: block;
6851
+ padding: 0.5rem 1rem;
6852
+ }
6853
+ .w3eden .nav-link:hover, .w3eden .nav-link:focus {
6854
+ text-decoration: none;
6855
+ }
6856
+ .w3eden .nav-link.disabled {
6857
+ color: var(--color-secondary);
6858
+ pointer-events: none;
6859
+ cursor: default;
6860
  }
6861
+ .w3eden .nav-tabs {
6862
+ border-bottom: 1px solid #dee2e6;
 
 
 
 
6863
  }
6864
+ .w3eden .nav-tabs .nav-item {
6865
+ margin-bottom: -1px;
 
6866
  }
6867
+ .w3eden .nav-tabs .nav-link {
6868
+ border: 1px solid transparent;
6869
+ border-top-left-radius: 0.25rem;
6870
+ border-top-right-radius: 0.25rem;
6871
  }
6872
+ .w3eden .nav-tabs .nav-link:hover, .w3eden .nav-tabs .nav-link:focus {
6873
+ border-color: #e9ecef #e9ecef #dee2e6;
 
 
 
 
 
6874
  }
6875
+ .w3eden .nav-tabs .nav-link.disabled {
6876
+ color: var(--color-secondary);
6877
+ background-color: transparent;
6878
+ border-color: transparent;
6879
  }
6880
+ .w3eden .nav-tabs .nav-link.active,
6881
+ .w3eden .nav-tabs .nav-item.show .nav-link {
6882
+ color: #495057;
6883
+ background-color: #fff;
6884
+ border-color: #dee2e6 #dee2e6 #fff;
6885
  }
6886
+ .w3eden .tab-content > .tab-pane {
6887
+ display: none;
6888
  }
6889
+ .w3eden .tab-content > .active {
6890
+ display: block;
6891
+ }
6892
+ .w3eden .card {
6893
+ position: relative;
6894
+ display: -ms-flexbox;
6895
+ display: flex;
6896
+ -ms-flex-direction: column;
6897
+ flex-direction: column;
6898
+ min-width: 0;
6899
+ word-wrap: break-word;
6900
+ background-color: #fff;
6901
+ background-clip: border-box;
6902
+ border: 1px solid rgba(0, 0, 0, 0.125);
6903
+ border-radius: 0.25rem;
6904
+ }
6905
+ .w3eden .card > .list-group:first-child .list-group-item:first-child {
6906
+ border-top-left-radius: 0.25rem;
6907
+ border-top-right-radius: 0.25rem;
6908
+ }
6909
+ .w3eden .card > .list-group:last-child .list-group-item:last-child {
6910
+ border-bottom-right-radius: 0.25rem;
6911
+ border-bottom-left-radius: 0.25rem;
6912
+ }
6913
+ .w3eden .card-body {
6914
+ -ms-flex: 1 1 auto;
6915
+ flex: 1 1 auto;
6916
+ padding: 1.25rem;
6917
+ }
6918
+ .w3eden .card-title {
6919
+ margin-bottom: 0.75rem;
6920
+ }
6921
+ .w3eden .card-header {
6922
+ padding: 0.75rem 1.25rem;
6923
+ margin-bottom: 0;
6924
+ background-color: rgba(0, 0, 0, 0.03);
6925
+ border-bottom: 1px solid rgba(0, 0, 0, 0.125);
6926
+ }
6927
+ .w3eden .card-header:first-child {
6928
+ border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
6929
+ }
6930
+ .w3eden .card-header + .list-group .list-group-item:first-child {
6931
+ border-top: 0;
6932
+ }
6933
+ .w3eden .card-footer {
6934
+ padding: 0.75rem 1.25rem;
6935
+ background-color: rgba(0, 0, 0, 0.03);
6936
+ border-top: 1px solid rgba(0, 0, 0, 0.125);
6937
+ }
6938
+ .w3eden .card-footer:last-child {
6939
+ border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
6940
+ }
6941
+ .w3eden .card-header-tabs {
6942
+ margin-right: -0.625rem;
6943
+ margin-bottom: -0.75rem;
6944
+ margin-left: -0.625rem;
6945
+ border-bottom: 0;
6946
+ }
6947
+ .w3eden .card-header-pills {
6948
+ margin-right: -0.625rem;
6949
+ margin-left: -0.625rem;
6950
+ }
6951
+ .w3eden .card-img {
6952
+ width: 100%;
6953
+ border-radius: calc(0.25rem - 1px);
6954
+ }
6955
+ .w3eden .card-img-top {
6956
+ width: 100%;
6957
+ border-top-left-radius: calc(0.25rem - 1px);
6958
+ border-top-right-radius: calc(0.25rem - 1px);
6959
+ }
6960
+ .w3eden .accordion > .card {
6961
+ overflow: hidden;
6962
+ }
6963
+ .w3eden .accordion > .card:not(:first-of-type) .card-header:first-child {
6964
+ border-radius: 0;
6965
+ }
6966
+ .w3eden .accordion > .card:not(:first-of-type):not(:last-of-type) {
6967
+ border-bottom: 0;
6968
+ border-radius: 0;
6969
+ }
6970
+ .w3eden .accordion > .card:first-of-type {
6971
+ border-bottom: 0;
6972
+ border-bottom-right-radius: 0;
6973
+ border-bottom-left-radius: 0;
6974
+ }
6975
+ .w3eden .accordion > .card:last-of-type {
6976
+ border-top-left-radius: 0;
6977
+ border-top-right-radius: 0;
6978
+ }
6979
+ .w3eden .accordion > .card .card-header {
6980
+ margin-bottom: -1px;
6981
  }
6982
+ .w3eden .pagination {
6983
+ display: -ms-flexbox;
6984
+ display: flex;
6985
+ padding-left: 0;
6986
+ list-style: none;
6987
+ border-radius: 0.25rem;
6988
+ }
6989
+ .w3eden .page-link {
6990
+ position: relative;
6991
+ display: block;
6992
+ padding: 0.5rem 0.75rem;
6993
+ margin-left: -1px;
6994
+ line-height: 1.25;
6995
+ color: var(--color-primary);
6996
+ background-color: #fff;
6997
+ border: 1px solid #dee2e6;
6998
+ }
6999
+ .w3eden .page-link:hover {
7000
+ z-index: 2;
7001
+ color: var(--color-primary-hover);
7002
+ text-decoration: none;
7003
+ background-color: #e9ecef;
7004
+ border-color: #dee2e6;
7005
+ }
7006
+ .w3eden .page-link:focus {
7007
+ z-index: 2;
7008
+ outline: 0;
7009
+ box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
7010
  }
7011
+ .w3eden .badge {
7012
+ display: inline-block;
7013
+ padding: 0.25em 0.4em;
7014
+ font-size: 75%;
7015
+ font-weight: 700;
7016
+ line-height: 1;
7017
+ text-align: center;
7018
+ white-space: nowrap;
7019
+ vertical-align: baseline;
7020
+ border-radius: 0.25rem;
7021
+ 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;
7022
+ }
7023
+ @media (prefers-reduced-motion: reduce) {
7024
+ .w3eden .badge {
7025
+ transition: none;
7026
+ }
7027
+ }
7028
+ .w3eden a.badge:hover, .w3eden a.badge:focus {
7029
+ text-decoration: none;
7030
  }
7031
+ .w3eden .badge:empty {
7032
+ display: none;
 
 
 
7033
  }
7034
+ .w3eden .btn .badge {
7035
+ position: relative;
7036
+ top: -1px;
7037
  }
7038
+ .w3eden .badge-secondary {
7039
+ color: #fff;
7040
+ background-color: var(--color-secondary);
7041
  }
7042
+ .w3eden a.badge-secondary:hover, .w3eden a.badge-secondary:focus {
7043
+ color: #fff;
7044
+ background-color: #545b62;
 
7045
  }
7046
+ .w3eden a.badge-secondary:focus, .w3eden a.badge-secondary.focus {
7047
+ outline: 0;
7048
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7049
  }
7050
+ .w3eden .badge-success {
7051
+ color: #fff;
7052
+ background-color: var(--color-success);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7053
  }
7054
+ .w3eden a.badge-success:hover, .w3eden a.badge-success:focus {
7055
+ color: #fff;
7056
+ background-color: #1e7e34;
7057
  }
7058
+ .w3eden a.badge-success:focus, .w3eden a.badge-success.focus {
7059
+ outline: 0;
7060
+ box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
7061
  }
7062
+ .w3eden .badge-info {
7063
+ color: #fff;
7064
+ background-color: var(--color-info);
7065
  }
7066
+ .w3eden a.badge-info:hover, .w3eden a.badge-info:focus {
7067
+ color: #fff;
7068
+ background-color: #117a8b;
7069
  }
7070
+ .w3eden a.badge-info:focus, .w3eden a.badge-info.focus {
7071
+ outline: 0;
7072
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
7073
  }
7074
+ .w3eden .badge-warning {
7075
+ color: #212529;
7076
+ background-color: var(--color-warning);
7077
  }
7078
+ .w3eden a.badge-warning:hover, .w3eden a.badge-warning:focus {
7079
+ color: #212529;
7080
+ background-color: #d39e00;
7081
  }
7082
+ .w3eden a.badge-warning:focus, .w3eden a.badge-warning.focus {
7083
+ outline: 0;
7084
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
7085
  }
7086
+ .w3eden .badge-danger {
7087
+ color: #fff;
7088
+ background-color: var(--color-danger);
 
7089
  }
7090
+ .w3eden a.badge-danger:hover, .w3eden a.badge-danger:focus {
7091
+ color: #fff;
7092
+ background-color: #bd2130;
7093
  }
7094
+ .w3eden a.badge-danger:focus, .w3eden a.badge-danger.focus {
7095
+ outline: 0;
7096
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
7097
  }
7098
+ .w3eden .alert {
7099
+ position: relative;
7100
+ padding: 0.75rem 1.25rem;
7101
+ margin-bottom: 1rem;
7102
+ border: 1px solid transparent;
7103
+ border-radius: 0.25rem;
7104
  }
7105
+ .w3eden .alert-link {
7106
+ font-weight: 700;
7107
  }
7108
+ .w3eden .alert-primary {
7109
+ color: #004085;
7110
+ background-color: #cce5ff;
7111
+ border-color: #b8daff;
7112
  }
7113
+ .w3eden .alert-success {
7114
+ color: #155724;
7115
+ background-color: #d4edda;
7116
+ border-color: #c3e6cb;
7117
  }
7118
+ .w3eden .alert-info {
7119
+ color: #0c5460;
7120
+ background-color: #d1ecf1;
7121
+ border-color: #bee5eb;
7122
  }
7123
+ .w3eden .alert-warning {
7124
+ color: #856404;
7125
+ background-color: #fff3cd;
7126
+ border-color: #ffeeba;
7127
  }
7128
+ .w3eden .alert-danger {
7129
+ color: #721c24;
7130
+ background-color: #f8d7da;
7131
+ border-color: #f5c6cb;
7132
  }
7133
+ .w3eden .media {
7134
+ display: -ms-flexbox;
7135
+ display: flex;
7136
+ -ms-flex-align: start;
7137
+ align-items: flex-start;
7138
  }
7139
+ .w3eden .media-body {
7140
+ -ms-flex: 1;
7141
+ flex: 1;
7142
  }
7143
+ .w3eden .list-group {
7144
+ display: -ms-flexbox;
7145
+ display: flex;
7146
+ -ms-flex-direction: column;
7147
+ flex-direction: column;
7148
+ padding-left: 0;
7149
+ margin-bottom: 0;
7150
  }
7151
+ .w3eden .list-group-item {
7152
+ position: relative;
7153
+ display: block;
7154
+ padding: 0.75rem 1.25rem;
7155
+ margin-bottom: -1px;
7156
+ background-color: #fff;
7157
+ border: 1px solid rgba(0, 0, 0, 0.125);
7158
  }
7159
+ .w3eden .list-group-item:first-child {
7160
+ border-top-left-radius: 0.25rem;
7161
+ border-top-right-radius: 0.25rem;
7162
  }
7163
+ .w3eden .list-group-item:last-child {
7164
+ margin-bottom: 0;
7165
+ border-bottom-right-radius: 0.25rem;
7166
+ border-bottom-left-radius: 0.25rem;
7167
  }
7168
+ .w3eden .list-group-item.active {
7169
+ z-index: 2;
7170
+ color: #fff;
7171
+ background-color: var(--color-primary);
7172
+ border-color: var(--color-primary);
7173
  }
7174
+ .w3eden .list-group-flush .list-group-item {
7175
+ border-right: 0;
7176
+ border-left: 0;
7177
+ border-radius: 0;
7178
  }
7179
+ .w3eden .list-group-flush .list-group-item:last-child {
7180
+ margin-bottom: -1px;
7181
  }
7182
+ .w3eden .list-group-flush:first-child .list-group-item:first-child {
7183
+ border-top: 0;
7184
  }
7185
+ .w3eden .list-group-flush:last-child .list-group-item:last-child {
7186
+ margin-bottom: 0;
7187
+ border-bottom: 0;
 
7188
  }
7189
+ .w3eden .modal-open {
7190
+ overflow: hidden;
7191
  }
7192
+ .w3eden .modal-open .modal {
7193
+ overflow-x: hidden;
7194
+ overflow-y: auto;
7195
  }
7196
+ .w3eden .modal {
7197
+ position: fixed;
7198
+ top: 0;
7199
+ left: 0;
7200
+ z-index: 1050;
7201
+ display: none;
7202
+ width: 100%;
7203
+ height: 100%;
7204
+ overflow: hidden;
7205
+ outline: 0;
7206
  }
7207
+ .w3eden .modal-dialog {
7208
+ position: relative;
7209
+ width: auto;
7210
+ margin: 0.5rem;
7211
+ pointer-events: none;
7212
  }
7213
+ .w3eden .modal.fade .modal-dialog {
7214
+ transition: -webkit-transform 0.3s ease-out;
7215
+ transition: transform 0.3s ease-out;
7216
+ transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
7217
+ -webkit-transform: translate(0, -50px);
7218
+ transform: translate(0, -50px);
7219
+ }
7220
+ @media (prefers-reduced-motion: reduce) {
7221
+ .w3eden .modal.fade .modal-dialog {
7222
+ transition: none;
7223
+ }
7224
+ }
7225
+ .w3eden .modal.show .modal-dialog {
7226
+ -webkit-transform: none;
7227
+ transform: none;
7228
+ }
7229
+ .w3eden .modal-dialog-scrollable {
7230
+ display: -ms-flexbox;
7231
+ display: flex;
7232
+ max-height: calc(100% - 1rem);
7233
+ }
7234
+ .w3eden .modal-dialog-scrollable .modal-content {
7235
+ max-height: calc(100vh - 1rem);
7236
+ overflow: hidden;
7237
+ }
7238
+ .w3eden .modal-dialog-scrollable .modal-header,
7239
+ .w3eden .modal-dialog-scrollable .modal-footer {
7240
+ -ms-flex-negative: 0;
7241
+ flex-shrink: 0;
7242
+ }
7243
+ .w3eden .modal-dialog-scrollable .modal-body {
7244
+ overflow-y: auto;
7245
+ }
7246
+ .w3eden .modal-dialog-centered {
7247
+ display: -ms-flexbox;
7248
+ display: flex;
7249
+ -ms-flex-align: center;
7250
+ align-items: center;
7251
+ min-height: calc(100% - 1rem);
7252
+ }
7253
+ .w3eden .modal-dialog-centered::before {
7254
+ display: block;
7255
+ height: calc(100vh - 1rem);
7256
+ content: "";
7257
+ }
7258
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable {
7259
+ -ms-flex-direction: column;
7260
+ flex-direction: column;
7261
+ -ms-flex-pack: center;
7262
+ justify-content: center;
7263
+ height: 100%;
7264
+ }
7265
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable .modal-content {
7266
+ max-height: none;
7267
+ }
7268
+ .w3eden .modal-dialog-centered.modal-dialog-scrollable::before {
7269
+ content: none;
7270
  }
7271
+ .w3eden .modal-content {
7272
+ position: relative;
7273
+ display: -ms-flexbox;
7274
+ display: flex;
7275
+ -ms-flex-direction: column;
7276
+ flex-direction: column;
7277
+ width: 100%;
7278
+ pointer-events: auto;
7279
+ background-color: #fff;
7280
+ background-clip: padding-box;
7281
+ border: 1px solid rgba(0, 0, 0, 0.2);
7282
+ border-radius: 0.3rem;
7283
+ outline: 0;
7284
+ }
7285
+ .w3eden .modal-backdrop {
7286
+ position: fixed;
7287
+ top: 0;
7288
+ left: 0;
7289
+ z-index: 1040;
7290
+ width: 100vw;
7291
+ height: 100vh;
7292
+ background-color: #000;
7293
+ }
7294
+ .w3eden .modal-backdrop.fade {
7295
+ opacity: 0;
7296
+ }
7297
+ .w3eden .modal-backdrop.show {
7298
+ opacity: 0.5;
7299
  }
7300
+ .w3eden .modal-header {
7301
+ display: -ms-flexbox;
7302
+ display: flex;
7303
+ -ms-flex-align: start;
7304
+ align-items: flex-start;
7305
+ -ms-flex-pack: justify;
7306
+ justify-content: space-between;
7307
+ padding: 1rem 1rem;
7308
+ border-bottom: 1px solid #dee2e6;
7309
+ border-top-left-radius: 0.3rem;
7310
+ border-top-right-radius: 0.3rem;
7311
  }
7312
+ .w3eden .modal-header .close {
7313
+ padding: 1rem 1rem;
7314
+ margin: -1rem -1rem -1rem auto;
7315
  }
7316
+ .w3eden .modal-title {
7317
+ margin-bottom: 0;
7318
+ line-height: 1.5;
 
 
 
7319
  }
7320
+ .w3eden .modal-body {
7321
+ position: relative;
7322
+ -ms-flex: 1 1 auto;
7323
+ flex: 1 1 auto;
7324
+ padding: 1rem;
 
 
 
 
 
 
 
7325
  }
7326
+ .w3eden .modal-footer {
7327
+ display: -ms-flexbox;
7328
+ display: flex;
7329
+ -ms-flex-align: center;
7330
+ align-items: center;
7331
+ -ms-flex-pack: end;
7332
+ justify-content: flex-end;
7333
+ padding: 1rem;
7334
+ border-top: 1px solid #dee2e6;
7335
+ border-bottom-right-radius: 0.3rem;
7336
+ border-bottom-left-radius: 0.3rem;
7337
+ }
7338
+ .w3eden .modal-footer > :not(:first-child) {
7339
+ margin-left: 0.25rem;
7340
+ }
7341
+ .w3eden .modal-footer > :not(:last-child) {
7342
+ margin-right: 0.25rem;
7343
+ }
7344
+ @media (min-width: 576px) {
7345
+ .w3eden {
7346
+ /*.modal-dialog-scrollable {*/
7347
+ /* max-height: calc(100% - 3.5rem);*/
7348
+ /*}*/
7349
+ /*.modal-dialog-scrollable .modal-content {*/
7350
+ /* max-height: calc(100vh - 3.5rem);*/
7351
+ /*}*/
7352
+ /*.modal-sm {*/
7353
+ /* max-width: 300px;*/
7354
+ /*}*/
7355
+ }
7356
+ .w3eden .modal-dialog {
7357
+ max-width: 500px;
7358
+ margin: 1.75rem auto;
7359
+ }
7360
+ .w3eden .modal-dialog-centered {
7361
+ min-height: calc(100% - 3.5rem);
7362
+ }
7363
+ .w3eden .modal-dialog-centered::before {
7364
+ height: calc(100vh - 3.5rem);
7365
+ }
7366
  }
7367
+ .w3eden .tooltip {
7368
+ position: absolute;
7369
+ z-index: 1070;
7370
+ display: block;
7371
+ margin: 0;
7372
+ 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";
7373
+ font-style: normal;
7374
+ font-weight: 400;
7375
+ line-height: 1.5;
7376
+ text-align: left;
7377
+ text-align: start;
7378
+ text-decoration: none;
7379
+ text-shadow: none;
7380
+ text-transform: none;
7381
+ letter-spacing: normal;
7382
+ word-break: normal;
7383
+ word-spacing: normal;
7384
+ white-space: normal;
7385
+ line-break: auto;
7386
+ font-size: 0.875rem;
7387
+ word-wrap: break-word;
7388
+ opacity: 0;
7389
+ }
7390
+ .w3eden .tooltip.show {
7391
+ opacity: 0.9;
7392
+ background: rgba(0, 0, 0, 0.8);
7393
+ }
7394
+ .w3eden .tooltip .arrow {
7395
+ position: absolute;
7396
+ display: block;
7397
+ width: 0.8rem;
7398
+ height: 0.4rem;
7399
+ }
7400
+ .w3eden .tooltip .arrow::before {
7401
+ position: absolute;
7402
+ content: "";
7403
+ border-color: transparent;
7404
+ border-style: solid;
7405
+ }
7406
+ .w3eden .bs-tooltip-top, .w3eden .bs-tooltip-auto[x-placement^=top] {
7407
+ padding: 0.4rem 0;
7408
+ }
7409
+ .w3eden .bs-tooltip-top .arrow, .w3eden .bs-tooltip-auto[x-placement^=top] .arrow {
7410
+ bottom: 0;
7411
+ }
7412
+ .w3eden .bs-tooltip-top .arrow::before, .w3eden .bs-tooltip-auto[x-placement^=top] .arrow::before {
7413
+ top: 0;
7414
+ border-width: 0.4rem 0.4rem 0;
7415
+ border-top-color: #000;
7416
+ }
7417
+ .w3eden .bs-tooltip-right, .w3eden .bs-tooltip-auto[x-placement^=right] {
7418
+ padding: 0 0.4rem;
7419
+ }
7420
+ .w3eden .bs-tooltip-right .arrow, .w3eden .bs-tooltip-auto[x-placement^=right] .arrow {
7421
+ left: 0;
7422
+ width: 0.4rem;
7423
+ height: 0.8rem;
7424
+ }
7425
+ .w3eden .bs-tooltip-right .arrow::before, .w3eden .bs-tooltip-auto[x-placement^=right] .arrow::before {
7426
+ right: 0;
7427
+ border-width: 0.4rem 0.4rem 0.4rem 0;
7428
+ border-right-color: #000;
7429
+ }
7430
+ .w3eden .bs-tooltip-bottom, .w3eden .bs-tooltip-auto[x-placement^=bottom] {
7431
+ padding: 0.4rem 0;
7432
+ }
7433
+ .w3eden .bs-tooltip-bottom .arrow, .w3eden .bs-tooltip-auto[x-placement^=bottom] .arrow {
7434
+ top: 0;
7435
+ }
7436
+ .w3eden .bs-tooltip-bottom .arrow::before, .w3eden .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
7437
+ bottom: 0;
7438
+ border-width: 0 0.4rem 0.4rem;
7439
+ border-bottom-color: #000;
7440
+ }
7441
+ .w3eden .bs-tooltip-left, .w3eden .bs-tooltip-auto[x-placement^=left] {
7442
+ padding: 0 0.4rem;
7443
+ }
7444
+ .w3eden .bs-tooltip-left .arrow, .w3eden .bs-tooltip-auto[x-placement^=left] .arrow {
7445
+ right: 0;
7446
+ width: 0.4rem;
7447
+ height: 0.8rem;
7448
+ }
7449
+ .w3eden .bs-tooltip-left .arrow::before, .w3eden .bs-tooltip-auto[x-placement^=left] .arrow::before {
7450
+ left: 0;
7451
+ border-width: 0.4rem 0 0.4rem 0.4rem;
7452
+ border-left-color: #000;
7453
  }
7454
+ .w3eden .tooltip-inner {
7455
+ max-width: 200px;
7456
+ padding: 0.25rem 0.5rem;
7457
+ color: #fff;
7458
+ text-align: center;
7459
+ background-color: #000;
7460
+ border-radius: 0.25rem;
7461
+ }
7462
+ @-webkit-keyframes spinner-border {
7463
+ to {
7464
+ -webkit-transform: rotate(360deg);
7465
+ transform: rotate(360deg);
7466
+ }
7467
+ }
7468
+ @keyframes spinner-border {
7469
+ to {
7470
+ -webkit-transform: rotate(360deg);
7471
+ transform: rotate(360deg);
7472
+ }
7473
+ }
7474
+ .w3eden .spinner-border {
7475
+ display: inline-block;
7476
+ width: 2rem;
7477
+ height: 2rem;
7478
+ vertical-align: text-bottom;
7479
+ border: 0.25em solid currentColor;
7480
+ border-right-color: transparent;
7481
+ border-radius: 50%;
7482
+ -webkit-animation: spinner-border 0.75s linear infinite;
7483
+ animation: spinner-border 0.75s linear infinite;
7484
+ }
7485
+ @-webkit-keyframes spinner-grow {
7486
+ 0% {
7487
+ -webkit-transform: scale(0);
7488
+ transform: scale(0);
7489
+ }
7490
+ 50% {
7491
+ opacity: 1;
7492
+ }
7493
+ }
7494
+ @keyframes spinner-grow {
7495
+ 0% {
7496
+ -webkit-transform: scale(0);
7497
+ transform: scale(0);
7498
+ }
7499
+ 50% {
7500
+ opacity: 1;
7501
+ }
7502
+ }
7503
+ .w3eden .spinner-grow {
7504
+ display: inline-block;
7505
+ width: 2rem;
7506
+ height: 2rem;
7507
+ vertical-align: text-bottom;
7508
+ background-color: currentColor;
7509
+ border-radius: 50%;
7510
+ opacity: 0;
7511
+ -webkit-animation: spinner-grow 0.75s linear infinite;
7512
+ animation: spinner-grow 0.75s linear infinite;
7513
+ }
7514
+ .w3eden .spinner-grow-sm {
7515
+ width: 1rem;
7516
+ height: 1rem;
7517
  }
7518
+ .w3eden .bg-primary {
7519
+ background-color: var(--color-primary) !important;
 
7520
  }
7521
+ .w3eden a.bg-primary:hover, .w3eden a.bg-primary:focus,
7522
+ .w3eden button.bg-primary:hover,
7523
+ .w3eden button.bg-primary:focus {
7524
+ background-color: #0062cc !important;
7525
  }
7526
+ .w3eden .bg-secondary {
7527
+ background-color: var(--color-secondary) !important;
 
7528
  }
7529
+ .w3eden a.bg-secondary:hover, .w3eden a.bg-secondary:focus,
7530
+ .w3eden button.bg-secondary:hover,
7531
+ .w3eden button.bg-secondary:focus {
7532
+ background-color: #545b62 !important;
 
 
 
 
 
7533
  }
7534
+ .w3eden .bg-success {
7535
+ background-color: var(--color-success) !important;
 
 
 
 
 
7536
  }
7537
+ .w3eden .bg-info {
7538
+ background-color: var(--color-info) !important;
 
 
 
 
7539
  }
7540
+ .w3eden .bg-warning {
7541
+ background-color: var(--color-warning) !important;
7542
  }
7543
+ .w3eden .bg-danger {
7544
+ background-color: var(--color-danger) !important;
7545
+ }
7546
+ .w3eden a.bg-danger:hover, .w3eden a.bg-danger:focus,
7547
+ .w3eden button.bg-danger:hover,
7548
+ .w3eden button.bg-danger:focus {
7549
+ background-color: #bd2130 !important;
7550
+ }
7551
+ .w3eden .bg-white {
7552
+ background-color: #fff !important;
7553
+ }
7554
+ .w3eden .clearfix::after {
7555
+ display: block;
7556
+ clear: both;
7557
+ content: "";
7558
+ }
7559
+ .w3eden .d-none {
7560
+ display: none !important;
7561
+ }
7562
+ .w3eden .d-inline {
7563
+ display: inline !important;
7564
+ }
7565
+ .w3eden .d-inline-block {
7566
+ display: inline-block !important;
7567
+ }
7568
+ .w3eden .d-block {
7569
+ display: block !important;
7570
+ }
7571
+ .w3eden .d-flex {
7572
+ display: -ms-flexbox !important;
7573
+ display: flex !important;
7574
+ }
7575
+ .w3eden .d-inline-flex {
7576
+ display: -ms-inline-flexbox !important;
7577
+ display: inline-flex !important;
7578
+ }
7579
+ @media (min-width: 576px) {
7580
+ .w3eden {
7581
+ /*.d-sm-table {*/
7582
+ /* display: table !important;*/
7583
+ /*}*/
7584
+ /*.d-sm-table-row {*/
7585
+ /* display: table-row !important;*/
7586
+ /*}*/
7587
+ /*.d-sm-table-cell {*/
7588
+ /* display: table-cell !important;*/
7589
+ /*}*/
7590
+ }
7591
+ .w3eden .d-sm-none {
7592
+ display: none !important;
7593
+ }
7594
+ .w3eden .d-sm-inline {
7595
+ display: inline !important;
7596
+ }
7597
+ .w3eden .d-sm-inline-block {
7598
+ display: inline-block !important;
7599
+ }
7600
+ .w3eden .d-sm-block {
7601
+ display: block !important;
7602
+ }
7603
+ .w3eden .d-sm-flex {
7604
+ display: -ms-flexbox !important;
7605
+ display: flex !important;
7606
+ }
7607
+ .w3eden .d-sm-inline-flex {
7608
+ display: -ms-inline-flexbox !important;
7609
+ display: inline-flex !important;
7610
+ }
7611
  }
7612
+ @media (min-width: 768px) {
7613
+ .w3eden {
7614
+ /*.d-md-table {*/
7615
+ /* display: table !important;*/
7616
+ /*}*/
7617
+ /*.d-md-table-row {*/
7618
+ /* display: table-row !important;*/
7619
+ /*}*/
7620
+ /*.d-md-table-cell {*/
7621
+ /* display: table-cell !important;*/
7622
+ /*}*/
7623
+ }
7624
+ .w3eden .d-md-none {
7625
+ display: none !important;
7626
+ }
7627
+ .w3eden .d-md-inline {
7628
+ display: inline !important;
7629
+ }
7630
+ .w3eden .d-md-inline-block {
7631
+ display: inline-block !important;
7632
+ }
7633
+ .w3eden .d-md-block {
7634
+ display: block !important;
7635
+ }
7636
+ .w3eden .d-md-flex {
7637
+ display: -ms-flexbox !important;
7638
+ display: flex !important;
7639
+ }
7640
+ .w3eden .d-md-inline-flex {
7641
+ display: -ms-inline-flexbox !important;
7642
+ display: inline-flex !important;
7643
+ }
7644
  }
7645
+ @media (min-width: 992px) {
7646
+ .w3eden {
7647
+ /*.d-lg-table {*/
7648
+ /* display: table !important;*/
7649
+ /*}*/
7650
+ /*.d-lg-table-row {*/
7651
+ /* display: table-row !important;*/
7652
+ /*}*/
7653
+ /*.d-lg-table-cell {*/
7654
+ /* display: table-cell !important;*/
7655
+ /*}*/
7656
+ }
7657
+ .w3eden .d-lg-none {
7658
+ display: none !important;
7659
+ }
7660
+ .w3eden .d-lg-inline {
7661
+ display: inline !important;
7662
+ }
7663
+ .w3eden .d-lg-inline-block {
7664
+ display: inline-block !important;
7665
+ }
7666
+ .w3eden .d-lg-block {
7667
+ display: block !important;
7668
+ }
7669
+ .w3eden .d-lg-flex {
7670
+ display: -ms-flexbox !important;
7671
+ display: flex !important;
7672
+ }
7673
+ .w3eden .d-lg-inline-flex {
7674
+ display: -ms-inline-flexbox !important;
7675
+ display: inline-flex !important;
7676
+ }
7677
  }
7678
+ @media (min-width: 1200px) {
7679
+ .w3eden {
7680
+ /*.d-xl-table {*/
7681
+ /* display: table !important;*/
7682
+ /*}*/
7683
+ /*.d-xl-table-row {*/
7684
+ /* display: table-row !important;*/
7685
+ /*}*/
7686
+ /*.d-xl-table-cell {*/
7687
+ /* display: table-cell !important;*/
7688
+ /*}*/
7689
+ }
7690
+ .w3eden .d-xl-none {
7691
+ display: none !important;
7692
+ }
7693
+ .w3eden .d-xl-inline {
7694
+ display: inline !important;
7695
+ }
7696
+ .w3eden .d-xl-inline-block {
7697
+ display: inline-block !important;
7698
+ }
7699
+ .w3eden .d-xl-block {
7700
+ display: block !important;
7701
+ }
7702
+ .w3eden .d-xl-flex {
7703
+ display: -ms-flexbox !important;
7704
+ display: flex !important;
7705
+ }
7706
+ .w3eden .d-xl-inline-flex {
7707
+ display: -ms-inline-flexbox !important;
7708
+ display: inline-flex !important;
7709
+ }
7710
+ }
7711
+ .w3eden .flex-row {
7712
+ -ms-flex-direction: row !important;
7713
+ flex-direction: row !important;
7714
+ }
7715
+ .w3eden .flex-column {
7716
+ -ms-flex-direction: column !important;
7717
+ flex-direction: column !important;
7718
+ }
7719
+ .w3eden .flex-row-reverse {
7720
+ -ms-flex-direction: row-reverse !important;
7721
+ flex-direction: row-reverse !important;
7722
+ }
7723
+ .w3eden .flex-column-reverse {
7724
+ -ms-flex-direction: column-reverse !important;
7725
+ flex-direction: column-reverse !important;
7726
+ }
7727
+ .w3eden .flex-wrap {
7728
+ -ms-flex-wrap: wrap !important;
7729
+ flex-wrap: wrap !important;
7730
+ }
7731
+ .w3eden .flex-nowrap {
7732
+ -ms-flex-wrap: nowrap !important;
7733
+ flex-wrap: nowrap !important;
7734
+ }
7735
+ .w3eden .flex-wrap-reverse {
7736
+ -ms-flex-wrap: wrap-reverse !important;
7737
+ flex-wrap: wrap-reverse !important;
7738
+ }
7739
+ .w3eden .flex-fill {
7740
+ -ms-flex: 1 1 auto !important;
7741
+ flex: 1 1 auto !important;
7742
+ }
7743
+ .w3eden .flex-grow-0 {
7744
+ -ms-flex-positive: 0 !important;
7745
+ flex-grow: 0 !important;
7746
+ }
7747
+ .w3eden .flex-grow-1 {
7748
+ -ms-flex-positive: 1 !important;
7749
+ flex-grow: 1 !important;
7750
+ }
7751
+ .w3eden .flex-shrink-0 {
7752
+ -ms-flex-negative: 0 !important;
7753
+ flex-shrink: 0 !important;
7754
+ }
7755
+ .w3eden .flex-shrink-1 {
7756
+ -ms-flex-negative: 1 !important;
7757
+ flex-shrink: 1 !important;
7758
+ }
7759
+ .w3eden .justify-content-start {
7760
+ -ms-flex-pack: start !important;
7761
+ justify-content: flex-start !important;
7762
+ }
7763
+ .w3eden .justify-content-end {
7764
+ -ms-flex-pack: end !important;
7765
+ justify-content: flex-end !important;
7766
+ }
7767
+ .w3eden .justify-content-center {
7768
+ -ms-flex-pack: center !important;
7769
+ justify-content: center !important;
7770
+ }
7771
+ .w3eden .justify-content-between {
7772
+ -ms-flex-pack: justify !important;
7773
+ justify-content: space-between !important;
7774
+ }
7775
+ .w3eden .justify-content-around {
7776
+ -ms-flex-pack: distribute !important;
7777
+ justify-content: space-around !important;
7778
+ }
7779
+ .w3eden .align-items-start {
7780
+ -ms-flex-align: start !important;
7781
+ align-items: flex-start !important;
7782
+ }
7783
+ .w3eden .align-items-end {
7784
+ -ms-flex-align: end !important;
7785
+ align-items: flex-end !important;
7786
+ }
7787
+ .w3eden .align-items-center {
7788
+ -ms-flex-align: center !important;
7789
+ align-items: center !important;
7790
+ }
7791
+ .w3eden .align-items-baseline {
7792
+ -ms-flex-align: baseline !important;
7793
+ align-items: baseline !important;
7794
+ }
7795
+ .w3eden .align-items-stretch {
7796
+ -ms-flex-align: stretch !important;
7797
+ align-items: stretch !important;
7798
+ }
7799
+ .w3eden .align-content-start {
7800
+ -ms-flex-line-pack: start !important;
7801
+ align-content: flex-start !important;
7802
+ }
7803
+ .w3eden .align-content-end {
7804
+ -ms-flex-line-pack: end !important;
7805
+ align-content: flex-end !important;
7806
+ }
7807
+ .w3eden .align-content-center {
7808
+ -ms-flex-line-pack: center !important;
7809
+ align-content: center !important;
7810
+ }
7811
+ .w3eden .align-content-between {
7812
+ -ms-flex-line-pack: justify !important;
7813
+ align-content: space-between !important;
7814
+ }
7815
+ .w3eden .align-content-around {
7816
+ -ms-flex-line-pack: distribute !important;
7817
+ align-content: space-around !important;
7818
+ }
7819
+ .w3eden .align-content-stretch {
7820
+ -ms-flex-line-pack: stretch !important;
7821
+ align-content: stretch !important;
7822
+ }
7823
+ .w3eden .align-self-auto {
7824
+ -ms-flex-item-align: auto !important;
7825
+ align-self: auto !important;
7826
+ }
7827
+ .w3eden .align-self-start {
7828
+ -ms-flex-item-align: start !important;
7829
+ align-self: flex-start !important;
7830
+ }
7831
+ .w3eden .align-self-end {
7832
+ -ms-flex-item-align: end !important;
7833
+ align-self: flex-end !important;
7834
+ }
7835
+ .w3eden .align-self-center {
7836
+ -ms-flex-item-align: center !important;
7837
+ align-self: center !important;
7838
+ }
7839
+ .w3eden .align-self-baseline {
7840
+ -ms-flex-item-align: baseline !important;
7841
+ align-self: baseline !important;
7842
+ }
7843
+ .w3eden .align-self-stretch {
7844
+ -ms-flex-item-align: stretch !important;
7845
+ align-self: stretch !important;
7846
+ }
7847
+ @media (min-width: 576px) {
7848
+ .w3eden {
7849
+ /*.flex-sm-row {*/
7850
+ /* -ms-flex-direction: row !important;*/
7851
+ /* flex-direction: row !important;*/
7852
+ /*}*/
7853
+ /*.flex-sm-column {*/
7854
+ /* -ms-flex-direction: column !important;*/
7855
+ /* flex-direction: column !important;*/
7856
+ /*}*/
7857
+ /*.flex-sm-row-reverse {*/
7858
+ /* -ms-flex-direction: row-reverse !important;*/
7859
+ /* flex-direction: row-reverse !important;*/
7860
+ /*}*/
7861
+ /*.flex-sm-column-reverse {*/
7862
+ /* -ms-flex-direction: column-reverse !important;*/
7863
+ /* flex-direction: column-reverse !important;*/
7864
+ /*}*/
7865
+ /*.flex-sm-wrap {*/
7866
+ /* -ms-flex-wrap: wrap !important;*/
7867
+ /* flex-wrap: wrap !important;*/
7868
+ /*}*/
7869
+ /*.flex-sm-nowrap {*/
7870
+ /* -ms-flex-wrap: nowrap !important;*/
7871
+ /* flex-wrap: nowrap !important;*/
7872
+ /*}*/
7873
+ /*.flex-sm-wrap-reverse {*/
7874
+ /* -ms-flex-wrap: wrap-reverse !important;*/
7875
+ /* flex-wrap: wrap-reverse !important;*/
7876
+ /*}*/
7877
+ /*.flex-sm-fill {*/
7878
+ /* -ms-flex: 1 1 auto !important;*/
7879
+ /* flex: 1 1 auto !important;*/
7880
+ /*}*/
7881
+ /*.flex-sm-grow-0 {*/
7882
+ /* -ms-flex-positive: 0 !important;*/
7883
+ /* flex-grow: 0 !important;*/
7884
+ /*}*/
7885
+ /*.flex-sm-grow-1 {*/
7886
+ /* -ms-flex-positive: 1 !important;*/
7887
+ /* flex-grow: 1 !important;*/
7888
+ /*}*/
7889
+ /*.flex-sm-shrink-0 {*/
7890
+ /* -ms-flex-negative: 0 !important;*/
7891
+ /* flex-shrink: 0 !important;*/
7892
+ /*}*/
7893
+ /*.flex-sm-shrink-1 {*/
7894
+ /* -ms-flex-negative: 1 !important;*/
7895
+ /* flex-shrink: 1 !important;*/
7896
+ /*}*/
7897
+ /*.justify-content-sm-start {*/
7898
+ /* -ms-flex-pack: start !important;*/
7899
+ /* justify-content: flex-start !important;*/
7900
+ /*}*/
7901
+ /*.justify-content-sm-end {*/
7902
+ /* -ms-flex-pack: end !important;*/
7903
+ /* justify-content: flex-end !important;*/
7904
+ /*}*/
7905
+ /*.justify-content-sm-center {*/
7906
+ /* -ms-flex-pack: center !important;*/
7907
+ /* justify-content: center !important;*/
7908
+ /*}*/
7909
+ /*.justify-content-sm-around {*/
7910
+ /* -ms-flex-pack: distribute !important;*/
7911
+ /* justify-content: space-around !important;*/
7912
+ /*}*/
7913
+ /*.align-items-sm-start {*/
7914
+ /* -ms-flex-align: start !important;*/
7915
+ /* align-items: flex-start !important;*/
7916
+ /*}*/
7917
+ /*.align-items-sm-end {*/
7918
+ /* -ms-flex-align: end !important;*/
7919
+ /* align-items: flex-end !important;*/
7920
+ /*}*/
7921
+ /*.align-items-sm-center {*/
7922
+ /* -ms-flex-align: center !important;*/
7923
+ /* align-items: center !important;*/
7924
+ /*}*/
7925
+ /*.align-items-sm-baseline {*/
7926
+ /* -ms-flex-align: baseline !important;*/
7927
+ /* align-items: baseline !important;*/
7928
+ /*}*/
7929
+ /*.align-items-sm-stretch {*/
7930
+ /* -ms-flex-align: stretch !important;*/
7931
+ /* align-items: stretch !important;*/
7932
+ /*}*/
7933
+ /*.align-content-sm-start {*/
7934
+ /* -ms-flex-line-pack: start !important;*/
7935
+ /* align-content: flex-start !important;*/
7936
+ /*}*/
7937
+ /*.align-content-sm-end {*/
7938
+ /* -ms-flex-line-pack: end !important;*/
7939
+ /* align-content: flex-end !important;*/
7940
+ /*}*/
7941
+ /*.align-content-sm-center {*/
7942
+ /* -ms-flex-line-pack: center !important;*/
7943
+ /* align-content: center !important;*/
7944
+ /*}*/
7945
+ /*.align-content-sm-between {*/
7946
+ /* -ms-flex-line-pack: justify !important;*/
7947
+ /* align-content: space-between !important;*/
7948
+ /*}*/
7949
+ /*.align-content-sm-around {*/
7950
+ /* -ms-flex-line-pack: distribute !important;*/
7951
+ /* align-content: space-around !important;*/
7952
+ /*}*/
7953
+ /*.align-content-sm-stretch {*/
7954
+ /* -ms-flex-line-pack: stretch !important;*/
7955
+ /* align-content: stretch !important;*/
7956
+ /*}*/
7957
+ /*.align-self-sm-auto {*/
7958
+ /* -ms-flex-item-align: auto !important;*/
7959
+ /* align-self: auto !important;*/
7960
+ /*}*/
7961
+ /*.align-self-sm-start {*/
7962
+ /* -ms-flex-item-align: start !important;*/
7963
+ /* align-self: flex-start !important;*/
7964
+ /*}*/
7965
+ /*.align-self-sm-end {*/
7966
+ /* -ms-flex-item-align: end !important;*/
7967
+ /* align-self: flex-end !important;*/
7968
+ /*}*/
7969
+ /*.align-self-sm-center {*/
7970
+ /* -ms-flex-item-align: center !important;*/
7971
+ /* align-self: center !important;*/
7972
+ /*}*/
7973
+ /*.align-self-sm-baseline {*/
7974
+ /* -ms-flex-item-align: baseline !important;*/
7975
+ /* align-self: baseline !important;*/
7976
+ /*}*/
7977
+ /*.align-self-sm-stretch {*/
7978
+ /* -ms-flex-item-align: stretch !important;*/
7979
+ /* align-self: stretch !important;*/
7980
+ /*}*/
7981
+ }
7982
+ .w3eden .justify-content-sm-between {
7983
+ -ms-flex-pack: justify !important;
7984
+ justify-content: space-between !important;
7985
+ }
7986
  }
7987
+ @media (min-width: 768px) {
7988
+ .w3eden {
7989
+ /*.flex-md-row {*/
7990
+ /* -ms-flex-direction: row !important;*/
7991
+ /* flex-direction: row !important;*/
7992
+ /*}*/
7993
+ /*.flex-md-column {*/
7994
+ /* -ms-flex-direction: column !important;*/
7995
+ /* flex-direction: column !important;*/
7996
+ /*}*/
7997
+ /*.flex-md-row-reverse {*/
7998
+ /* -ms-flex-direction: row-reverse !important;*/
7999
+ /* flex-direction: row-reverse !important;*/
8000
+ /*}*/
8001
+ /*.flex-md-column-reverse {*/
8002
+ /* -ms-flex-direction: column-reverse !important;*/
8003
+ /* flex-direction: column-reverse !important;*/
8004
+ /*}*/
8005
+ /*.flex-md-wrap {*/
8006
+ /* -ms-flex-wrap: wrap !important;*/
8007
+ /* flex-wrap: wrap !important;*/
8008
+ /*}*/
8009
+ /*.flex-md-nowrap {*/
8010
+ /* -ms-flex-wrap: nowrap !important;*/
8011
+ /* flex-wrap: nowrap !important;*/
8012
+ /*}*/
8013
+ /*.flex-md-wrap-reverse {*/
8014
+ /* -ms-flex-wrap: wrap-reverse !important;*/
8015
+ /* flex-wrap: wrap-reverse !important;*/
8016
+ /*}*/
8017
+ /*.flex-md-fill {*/
8018
+ /* -ms-flex: 1 1 auto !important;*/
8019
+ /* flex: 1 1 auto !important;*/
8020
+ /*}*/
8021
+ /*.flex-md-grow-0 {*/
8022
+ /* -ms-flex-positive: 0 !important;*/
8023
+ /* flex-grow: 0 !important;*/
8024
+ /*}*/
8025
+ /*.flex-md-grow-1 {*/
8026
+ /* -ms-flex-positive: 1 !important;*/
8027
+ /* flex-grow: 1 !important;*/
8028
+ /*}*/
8029
+ /*.flex-md-shrink-0 {*/
8030
+ /* -ms-flex-negative: 0 !important;*/
8031
+ /* flex-shrink: 0 !important;*/
8032
+ /*}*/
8033
+ /*.flex-md-shrink-1 {*/
8034
+ /* -ms-flex-negative: 1 !important;*/
8035
+ /* flex-shrink: 1 !important;*/
8036
+ /*}*/
8037
+ /*.justify-content-md-start {*/
8038
+ /* -ms-flex-pack: start !important;*/
8039
+ /* justify-content: flex-start !important;*/
8040
+ /*}*/
8041
+ /*.justify-content-md-end {*/
8042
+ /* -ms-flex-pack: end !important;*/
8043
+ /* justify-content: flex-end !important;*/
8044
+ /*}*/
8045
+ /*.justify-content-md-center {*/
8046
+ /* -ms-flex-pack: center !important;*/
8047
+ /* justify-content: center !important;*/
8048
+ /*}*/
8049
+ /*.justify-content-md-between {*/
8050
+ /* -ms-flex-pack: justify !important;*/
8051
+ /* justify-content: space-between !important;*/
8052
+ /*}*/
8053
+ /*.justify-content-md-around {*/
8054
+ /* -ms-flex-pack: distribute !important;*/
8055
+ /* justify-content: space-around !important;*/
8056
+ /*}*/
8057
+ /*.align-items-md-start {*/
8058
+ /* -ms-flex-align: start !important;*/
8059
+ /* align-items: flex-start !important;*/
8060
+ /*}*/
8061
+ /*.align-items-md-end {*/
8062
+ /* -ms-flex-align: end !important;*/
8063
+ /* align-items: flex-end !important;*/
8064
+ /*}*/
8065
+ /*.align-items-md-center {*/
8066
+ /* -ms-flex-align: center !important;*/
8067
+ /* align-items: center !important;*/
8068
+ /*}*/
8069
+ /*.align-items-md-baseline {*/
8070
+ /* -ms-flex-align: baseline !important;*/
8071
+ /* align-items: baseline !important;*/
8072
+ /*}*/
8073
+ /*.align-items-md-stretch {*/
8074
+ /* -ms-flex-align: stretch !important;*/
8075
+ /* align-items: stretch !important;*/
8076
+ /*}*/
8077
+ /*.align-content-md-start {*/
8078
+ /* -ms-flex-line-pack: start !important;*/
8079
+ /* align-content: flex-start !important;*/
8080
+ /*}*/
8081
+ /*.align-content-md-end {*/
8082
+ /* -ms-flex-line-pack: end !important;*/
8083
+ /* align-content: flex-end !important;*/
8084
+ /*}*/
8085
+ /*.align-content-md-center {*/
8086
+ /* -ms-flex-line-pack: center !important;*/
8087
+ /* align-content: center !important;*/
8088
+ /*}*/
8089
+ /*.align-content-md-between {*/
8090
+ /* -ms-flex-line-pack: justify !important;*/
8091
+ /* align-content: space-between !important;*/
8092
+ /*}*/
8093
+ /*.align-content-md-around {*/
8094
+ /* -ms-flex-line-pack: distribute !important;*/
8095
+ /* align-content: space-around !important;*/
8096
+ /*}*/
8097
+ /*.align-content-md-stretch {*/
8098
+ /* -ms-flex-line-pack: stretch !important;*/
8099
+ /* align-content: stretch !important;*/
8100
+ /*}*/
8101
+ /*.align-self-md-auto {*/
8102
+ /* -ms-flex-item-align: auto !important;*/
8103
+ /* align-self: auto !important;*/
8104
+ /*}*/
8105
+ /*.align-self-md-start {*/
8106
+ /* -ms-flex-item-align: start !important;*/
8107
+ /* align-self: flex-start !important;*/
8108
+ /*}*/
8109
+ /*.align-self-md-end {*/
8110
+ /* -ms-flex-item-align: end !important;*/
8111
+ /* align-self: flex-end !important;*/
8112
+ /*}*/
8113
+ /*.align-self-md-center {*/
8114
+ /* -ms-flex-item-align: center !important;*/
8115
+ /* align-self: center !important;*/
8116
+ /*}*/
8117
+ /*.align-self-md-baseline {*/
8118
+ /* -ms-flex-item-align: baseline !important;*/
8119
+ /* align-self: baseline !important;*/
8120
+ /*}*/
8121
+ /*.align-self-md-stretch {*/
8122
+ /* -ms-flex-item-align: stretch !important;*/
8123
+ /* align-self: stretch !important;*/
8124
+ /*}*/
8125
+ }
8126
  }
8127
+ @media (min-width: 992px) {
8128
+ .w3eden {
8129
+ /*.flex-lg-row {*/
8130
+ /* -ms-flex-direction: row !important;*/
8131
+ /* flex-direction: row !important;*/
8132
+ /*}*/
8133
+ /*.flex-lg-column {*/
8134
+ /* -ms-flex-direction: column !important;*/
8135
+ /* flex-direction: column !important;*/
8136
+ /*}*/
8137
+ /*.flex-lg-row-reverse {*/
8138
+ /* -ms-flex-direction: row-reverse !important;*/
8139
+ /* flex-direction: row-reverse !important;*/
8140
+ /*}*/
8141
+ /*.flex-lg-column-reverse {*/
8142
+ /* -ms-flex-direction: column-reverse !important;*/
8143
+ /* flex-direction: column-reverse !important;*/
8144
+ /*}*/
8145
+ /*.flex-lg-wrap {*/
8146
+ /* -ms-flex-wrap: wrap !important;*/
8147
+ /* flex-wrap: wrap !important;*/
8148
+ /*}*/
8149
+ /*.flex-lg-nowrap {*/
8150
+ /* -ms-flex-wrap: nowrap !important;*/
8151
+ /* flex-wrap: nowrap !important;*/
8152
+ /*}*/
8153
+ /*.flex-lg-wrap-reverse {*/
8154
+ /* -ms-flex-wrap: wrap-reverse !important;*/
8155
+ /* flex-wrap: wrap-reverse !important;*/
8156
+ /*}*/
8157
+ /*.flex-lg-fill {*/
8158
+ /* -ms-flex: 1 1 auto !important;*/
8159
+ /* flex: 1 1 auto !important;*/
8160
+ /*}*/
8161
+ /*.flex-lg-grow-0 {*/
8162
+ /* -ms-flex-positive: 0 !important;*/
8163
+ /* flex-grow: 0 !important;*/
8164
+ /*}*/
8165
+ /*.flex-lg-grow-1 {*/
8166
+ /* -ms-flex-positive: 1 !important;*/
8167
+ /* flex-grow: 1 !important;*/
8168
+ /*}*/
8169
+ /*.flex-lg-shrink-0 {*/
8170
+ /* -ms-flex-negative: 0 !important;*/
8171
+ /* flex-shrink: 0 !important;*/
8172
+ /*}*/
8173
+ /*.flex-lg-shrink-1 {*/
8174
+ /* -ms-flex-negative: 1 !important;*/
8175
+ /* flex-shrink: 1 !important;*/
8176
+ /*}*/
8177
+ /*.justify-content-lg-start {*/
8178
+ /* -ms-flex-pack: start !important;*/
8179
+ /* justify-content: flex-start !important;*/
8180
+ /*}*/
8181
+ /*.justify-content-lg-end {*/
8182
+ /* -ms-flex-pack: end !important;*/
8183
+ /* justify-content: flex-end !important;*/
8184
+ /*}*/
8185
+ /*.justify-content-lg-center {*/
8186
+ /* -ms-flex-pack: center !important;*/
8187
+ /* justify-content: center !important;*/
8188
+ /*}*/
8189
+ /*.justify-content-lg-between {*/
8190
+ /* -ms-flex-pack: justify !important;*/
8191
+ /* justify-content: space-between !important;*/
8192
+ /*}*/
8193
+ /*.justify-content-lg-around {*/
8194
+ /* -ms-flex-pack: distribute !important;*/
8195
+ /* justify-content: space-around !important;*/
8196
+ /*}*/
8197
+ /*.align-items-lg-start {*/
8198
+ /* -ms-flex-align: start !important;*/
8199
+ /* align-items: flex-start !important;*/
8200
+ /*}*/
8201
+ /*.align-items-lg-end {*/
8202
+ /* -ms-flex-align: end !important;*/
8203
+ /* align-items: flex-end !important;*/
8204
+ /*}*/
8205
+ /*.align-items-lg-center {*/
8206
+ /* -ms-flex-align: center !important;*/
8207
+ /* align-items: center !important;*/
8208
+ /*}*/
8209
+ /*.align-items-lg-baseline {*/
8210
+ /* -ms-flex-align: baseline !important;*/
8211
+ /* align-items: baseline !important;*/
8212
+ /*}*/
8213
+ /*.align-items-lg-stretch {*/
8214
+ /* -ms-flex-align: stretch !important;*/
8215
+ /* align-items: stretch !important;*/
8216
+ /*}*/
8217
+ /*.align-content-lg-start {*/
8218
+ /* -ms-flex-line-pack: start !important;*/
8219
+ /* align-content: flex-start !important;*/
8220
+ /*}*/
8221
+ /*.align-content-lg-end {*/
8222
+ /* -ms-flex-line-pack: end !important;*/
8223
+ /* align-content: flex-end !important;*/
8224
+ /*}*/
8225
+ /*.align-content-lg-center {*/
8226
+ /* -ms-flex-line-pack: center !important;*/
8227
+ /* align-content: center !important;*/
8228
+ /*}*/
8229
+ /*.align-content-lg-between {*/
8230
+ /* -ms-flex-line-pack: justify !important;*/
8231
+ /* align-content: space-between !important;*/
8232
+ /*}*/
8233
+ /*.align-content-lg-around {*/
8234
+ /* -ms-flex-line-pack: distribute !important;*/
8235
+ /* align-content: space-around !important;*/
8236
+ /*}*/
8237
+ /*.align-content-lg-stretch {*/
8238
+ /* -ms-flex-line-pack: stretch !important;*/
8239
+ /* align-content: stretch !important;*/
8240
+ /*}*/
8241
+ /*.align-self-lg-auto {*/
8242
+ /* -ms-flex-item-align: auto !important;*/
8243
+ /* align-self: auto !important;*/
8244
+ /*}*/
8245
+ /*.align-self-lg-start {*/
8246
+ /* -ms-flex-item-align: start !important;*/
8247
+ /* align-self: flex-start !important;*/
8248
+ /*}*/
8249
+ /*.align-self-lg-end {*/
8250
+ /* -ms-flex-item-align: end !important;*/
8251
+ /* align-self: flex-end !important;*/
8252
+ /*}*/
8253
+ /*.align-self-lg-center {*/
8254
+ /* -ms-flex-item-align: center !important;*/
8255
+ /* align-self: center !important;*/
8256
+ /*}*/
8257
+ /*.align-self-lg-baseline {*/
8258
+ /* -ms-flex-item-align: baseline !important;*/
8259
+ /* align-self: baseline !important;*/
8260
+ /*}*/
8261
+ /*.align-self-lg-stretch {*/
8262
+ /* -ms-flex-item-align: stretch !important;*/
8263
+ /* align-self: stretch !important;*/
8264
+ /*}*/
8265
+ }
8266
  }
8267
+ @media (min-width: 1200px) {
8268
+ .w3eden {
8269
+ /*.flex-xl-row {*/
8270
+ /* -ms-flex-direction: row !important;*/
8271
+ /* flex-direction: row !important;*/
8272
+ /*}*/
8273
+ /*.flex-xl-column {*/
8274
+ /* -ms-flex-direction: column !important;*/
8275
+ /* flex-direction: column !important;*/
8276
+ /*}*/
8277
+ /*.flex-xl-row-reverse {*/
8278
+ /* -ms-flex-direction: row-reverse !important;*/
8279
+ /* flex-direction: row-reverse !important;*/
8280
+ /*}*/
8281
+ /*.flex-xl-column-reverse {*/
8282
+ /* -ms-flex-direction: column-reverse !important;*/
8283
+ /* flex-direction: column-reverse !important;*/
8284
+ /*}*/
8285
+ /*.flex-xl-wrap {*/
8286
+ /* -ms-flex-wrap: wrap !important;*/
8287
+ /* flex-wrap: wrap !important;*/
8288
+ /*}*/
8289
+ /*.flex-xl-nowrap {*/
8290
+ /* -ms-flex-wrap: nowrap !important;*/
8291
+ /* flex-wrap: nowrap !important;*/
8292
+ /*}*/
8293
+ /*.flex-xl-wrap-reverse {*/
8294
+ /* -ms-flex-wrap: wrap-reverse !important;*/
8295
+ /* flex-wrap: wrap-reverse !important;*/
8296
+ /*}*/
8297
+ /*.flex-xl-fill {*/
8298
+ /* -ms-flex: 1 1 auto !important;*/
8299
+ /* flex: 1 1 auto !important;*/
8300
+ /*}*/
8301
+ /*.flex-xl-grow-0 {*/
8302
+ /* -ms-flex-positive: 0 !important;*/
8303
+ /* flex-grow: 0 !important;*/
8304
+ /*}*/
8305
+ /*.flex-xl-grow-1 {*/
8306
+ /* -ms-flex-positive: 1 !important;*/
8307
+ /* flex-grow: 1 !important;*/
8308
+ /*}*/
8309
+ /*.flex-xl-shrink-0 {*/
8310
+ /* -ms-flex-negative: 0 !important;*/
8311
+ /* flex-shrink: 0 !important;*/
8312
+ /*}*/
8313
+ /*.flex-xl-shrink-1 {*/
8314
+ /* -ms-flex-negative: 1 !important;*/
8315
+ /* flex-shrink: 1 !important;*/
8316
+ /*}*/
8317
+ /*.justify-content-xl-start {*/
8318
+ /* -ms-flex-pack: start !important;*/
8319
+ /* justify-content: flex-start !important;*/
8320
+ /*}*/
8321
+ /*.justify-content-xl-end {*/
8322
+ /* -ms-flex-pack: end !important;*/
8323
+ /* justify-content: flex-end !important;*/
8324
+ /*}*/
8325
+ /*.justify-content-xl-center {*/
8326
+ /* -ms-flex-pack: center !important;*/
8327
+ /* justify-content: center !important;*/
8328
+ /*}*/
8329
+ /*.justify-content-xl-between {*/
8330
+ /* -ms-flex-pack: justify !important;*/
8331
+ /* justify-content: space-between !important;*/
8332
+ /*}*/
8333
+ /*.justify-content-xl-around {*/
8334
+ /* -ms-flex-pack: distribute !important;*/
8335
+ /* justify-content: space-around !important;*/
8336
+ /*}*/
8337
+ /*.align-items-xl-start {*/
8338
+ /* -ms-flex-align: start !important;*/
8339
+ /* align-items: flex-start !important;*/
8340
+ /*}*/
8341
+ /*.align-items-xl-end {*/
8342
+ /* -ms-flex-align: end !important;*/
8343
+ /* align-items: flex-end !important;*/
8344
+ /*}*/
8345
+ /*.align-items-xl-center {*/
8346
+ /* -ms-flex-align: center !important;*/
8347
+ /* align-items: center !important;*/
8348
+ /*}*/
8349
+ /*.align-items-xl-baseline {*/
8350
+ /* -ms-flex-align: baseline !important;*/
8351
+ /* align-items: baseline !important;*/
8352
+ /*}*/
8353
+ /*.align-items-xl-stretch {*/
8354
+ /* -ms-flex-align: stretch !important;*/
8355
+ /* align-items: stretch !important;*/
8356
+ /*}*/
8357
+ /*.align-content-xl-start {*/
8358
+ /* -ms-flex-line-pack: start !important;*/
8359
+ /* align-content: flex-start !important;*/
8360
+ /*}*/
8361
+ /*.align-content-xl-end {*/
8362
+ /* -ms-flex-line-pack: end !important;*/
8363
+ /* align-content: flex-end !important;*/
8364
+ /*}*/
8365
+ /*.align-content-xl-center {*/
8366
+ /* -ms-flex-line-pack: center !important;*/
8367
+ /* align-content: center !important;*/
8368
+ /*}*/
8369
+ /*.align-content-xl-between {*/
8370
+ /* -ms-flex-line-pack: justify !important;*/
8371
+ /* align-content: space-between !important;*/
8372
+ /*}*/
8373
+ /*.align-content-xl-around {*/
8374
+ /* -ms-flex-line-pack: distribute !important;*/
8375
+ /* align-content: space-around !important;*/
8376
+ /*}*/
8377
+ /*.align-content-xl-stretch {*/
8378
+ /* -ms-flex-line-pack: stretch !important;*/
8379
+ /* align-content: stretch !important;*/
8380
+ /*}*/
8381
+ /*.align-self-xl-auto {*/
8382
+ /* -ms-flex-item-align: auto !important;*/
8383
+ /* align-self: auto !important;*/
8384
+ /*}*/
8385
+ /*.align-self-xl-start {*/
8386
+ /* -ms-flex-item-align: start !important;*/
8387
+ /* align-self: flex-start !important;*/
8388
+ /*}*/
8389
+ /*.align-self-xl-end {*/
8390
+ /* -ms-flex-item-align: end !important;*/
8391
+ /* align-self: flex-end !important;*/
8392
+ /*}*/
8393
+ /*.align-self-xl-center {*/
8394
+ /* -ms-flex-item-align: center !important;*/
8395
+ /* align-self: center !important;*/
8396
+ /*}*/
8397
+ /*.align-self-xl-baseline {*/
8398
+ /* -ms-flex-item-align: baseline !important;*/
8399
+ /* align-self: baseline !important;*/
8400
+ /*}*/
8401
+ /*.align-self-xl-stretch {*/
8402
+ /* -ms-flex-item-align: stretch !important;*/
8403
+ /* align-self: stretch !important;*/
8404
+ /*}*/
8405
+ }
8406
+ }
8407
+ .w3eden .float-left {
8408
+ float: left !important;
8409
+ }
8410
+ .w3eden .float-right {
8411
+ float: right !important;
8412
+ }
8413
+ .w3eden .position-relative {
8414
+ position: relative !important;
8415
+ }
8416
+ .w3eden .position-absolute {
8417
+ position: absolute !important;
8418
+ }
8419
+ .w3eden .fixed-top {
8420
+ position: fixed;
8421
+ top: 0;
8422
+ right: 0;
8423
+ left: 0;
8424
+ z-index: 1030;
8425
+ }
8426
+ .w3eden .fixed-bottom {
8427
+ position: fixed;
8428
+ right: 0;
8429
+ bottom: 0;
8430
+ left: 0;
8431
+ z-index: 1030;
8432
+ }
8433
+ .w3eden .w-100 {
8434
+ width: 100% !important;
8435
+ }
8436
+ .w3eden .mw-100 {
8437
+ max-width: 100% !important;
8438
+ }
8439
+ .w3eden .m-0 {
8440
+ margin: 0 !important;
8441
+ }
8442
+ .w3eden .mt-0,
8443
+ .w3eden .my-0 {
8444
+ margin-top: 0 !important;
8445
+ }
8446
+ .w3eden .mr-0,
8447
+ .w3eden .mx-0 {
8448
+ margin-right: 0 !important;
8449
+ }
8450
+ .w3eden .mb-0,
8451
+ .w3eden .my-0 {
8452
+ margin-bottom: 0 !important;
8453
+ }
8454
+ .w3eden .ml-0,
8455
+ .w3eden .mx-0 {
8456
+ margin-left: 0 !important;
8457
+ }
8458
+ .w3eden .m-1 {
8459
+ margin: 0.25rem !important;
8460
+ }
8461
+ .w3eden .mt-1,
8462
+ .w3eden .my-1 {
8463
+ margin-top: 0.25rem !important;
8464
+ }
8465
+ .w3eden .mr-1,
8466
+ .w3eden .mx-1 {
8467
+ margin-right: 0.25rem !important;
8468
+ }
8469
+ .w3eden .mb-1,
8470
+ .w3eden .my-1 {
8471
+ margin-bottom: 0.25rem !important;
8472
+ }
8473
+ .w3eden .ml-1,
8474
+ .w3eden .mx-1 {
8475
+ margin-left: 0.25rem !important;
8476
+ }
8477
+ .w3eden .m-2 {
8478
+ margin: 0.5rem !important;
8479
+ }
8480
+ .w3eden .mt-2,
8481
+ .w3eden .my-2 {
8482
+ margin-top: 0.5rem !important;
8483
+ }
8484
+ .w3eden .mr-2,
8485
+ .w3eden .mx-2 {
8486
+ margin-right: 0.5rem !important;
8487
+ }
8488
+ .w3eden .mb-2,
8489
+ .w3eden .my-2 {
8490
+ margin-bottom: 0.5rem !important;
8491
+ }
8492
+ .w3eden .ml-2,
8493
+ .w3eden .mx-2 {
8494
+ margin-left: 0.5rem !important;
8495
  }
8496
+ .w3eden .m-3 {
8497
+ margin: 1rem !important;
 
8498
  }
8499
+ .w3eden .mt-3,
8500
+ .w3eden .my-3 {
8501
+ margin-top: 1rem !important;
 
8502
  }
8503
+ .w3eden .mr-3,
8504
+ .w3eden .mx-3 {
8505
+ margin-right: 1rem !important;
8506
  }
8507
+ .w3eden .mb-3,
8508
+ .w3eden .my-3 {
8509
+ margin-bottom: 1rem !important;
8510
  }
8511
+ .w3eden .ml-3,
8512
+ .w3eden .mx-3 {
8513
+ margin-left: 1rem !important;
8514
  }
8515
+ .w3eden .m-4 {
8516
+ margin: 1.5rem !important;
 
 
 
8517
  }
8518
+ .w3eden .mt-4,
8519
+ .w3eden .my-4 {
8520
+ margin-top: 1.5rem !important;
8521
  }
8522
+ .w3eden .mr-4,
8523
+ .w3eden .mx-4 {
8524
+ margin-right: 1.5rem !important;
8525
  }
8526
+ .w3eden .mb-4,
8527
+ .w3eden .my-4 {
8528
+ margin-bottom: 1.5rem !important;
8529
  }
8530
+ .w3eden .ml-4,
8531
+ .w3eden .mx-4 {
8532
+ margin-left: 1.5rem !important;
 
 
 
8533
  }
8534
+ .w3eden .m-5 {
8535
+ margin: 3rem !important;
 
 
 
 
 
 
 
 
 
 
8536
  }
8537
+ .w3eden .mt-5,
8538
+ .w3eden .my-5 {
8539
+ margin-top: 3rem !important;
 
8540
  }
8541
+ .w3eden .mr-5,
8542
+ .w3eden .mx-5 {
8543
+ margin-right: 3rem !important;
 
 
 
 
 
 
 
8544
  }
8545
+ .w3eden .mb-5,
8546
+ .w3eden .my-5 {
8547
+ margin-bottom: 3rem !important;
8548
  }
8549
+ .w3eden .ml-5,
8550
+ .w3eden .mx-5 {
8551
+ margin-left: 3rem !important;
8552
  }
8553
+ .w3eden .p-0 {
8554
+ padding: 0 !important;
 
8555
  }
8556
+ .w3eden .pt-0,
8557
+ .w3eden .py-0 {
8558
+ padding-top: 0 !important;
8559
  }
8560
+ .w3eden .pr-0,
8561
+ .w3eden .px-0 {
8562
+ padding-right: 0 !important;
8563
  }
8564
+ .w3eden .pb-0,
8565
+ .w3eden .py-0 {
8566
+ padding-bottom: 0 !important;
 
 
 
 
 
8567
  }
8568
+ .w3eden .pl-0,
8569
+ .w3eden .px-0 {
8570
+ padding-left: 0 !important;
 
 
 
8571
  }
8572
+ .w3eden .p-1 {
8573
+ padding: 0.25rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8574
  }
8575
+ .w3eden .pt-1,
8576
+ .w3eden .py-1 {
8577
+ padding-top: 0.25rem !important;
 
 
 
8578
  }
8579
+ .w3eden .pr-1,
8580
+ .w3eden .px-1 {
8581
+ padding-right: 0.25rem !important;
 
 
 
8582
  }
8583
+ .w3eden .pb-1,
8584
+ .w3eden .py-1 {
8585
+ padding-bottom: 0.25rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8586
  }
8587
+ .w3eden .pl-1,
8588
+ .w3eden .px-1 {
8589
+ padding-left: 0.25rem !important;
8590
  }
8591
+ .w3eden .p-2 {
8592
+ padding: 0.5rem !important;
8593
  }
8594
+ .w3eden .pt-2,
8595
+ .w3eden .py-2 {
8596
+ padding-top: 0.5rem !important;
8597
  }
8598
+ .w3eden .pr-2,
8599
+ .w3eden .px-2 {
8600
+ padding-right: 0.5rem !important;
8601
  }
8602
+ .w3eden .pb-2,
8603
+ .w3eden .py-2 {
8604
+ padding-bottom: 0.5rem !important;
 
 
 
 
8605
  }
8606
+ .w3eden .pl-2,
8607
+ .w3eden .px-2 {
8608
+ padding-left: 0.5rem !important;
8609
  }
8610
+ .w3eden .p-3 {
8611
+ padding: 1rem !important;
 
 
 
 
 
 
8612
  }
8613
+ .w3eden .pt-3,
8614
+ .w3eden .py-3 {
8615
+ padding-top: 1rem !important;
8616
  }
8617
+ .w3eden .pr-3,
8618
+ .w3eden .px-3 {
8619
+ padding-right: 1rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8620
  }
8621
+ .w3eden .pb-3,
8622
+ .w3eden .py-3 {
8623
+ padding-bottom: 1rem !important;
 
8624
  }
8625
+ .w3eden .pl-3,
8626
+ .w3eden .px-3 {
8627
+ padding-left: 1rem !important;
 
 
 
8628
  }
8629
+ .w3eden .p-4 {
8630
+ padding: 1.5rem !important;
 
8631
  }
8632
+ .w3eden .pt-4,
8633
+ .w3eden .py-4 {
8634
+ padding-top: 1.5rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8635
  }
8636
+ .w3eden .pr-4,
8637
+ .w3eden .px-4 {
8638
+ padding-right: 1.5rem !important;
 
8639
  }
8640
+ .w3eden .pb-4,
8641
+ .w3eden .py-4 {
8642
+ padding-bottom: 1.5rem !important;
8643
  }
8644
+ .w3eden .pl-4,
8645
+ .w3eden .px-4 {
8646
+ padding-left: 1.5rem !important;
 
 
8647
  }
8648
+ .w3eden .p-5 {
8649
+ padding: 3rem !important;
8650
  }
8651
+ .w3eden .pt-5,
8652
+ .w3eden .py-5 {
8653
+ padding-top: 3rem !important;
8654
  }
8655
+ .w3eden .pr-5,
8656
+ .w3eden .px-5 {
8657
+ padding-right: 3rem !important;
8658
  }
8659
+ .w3eden .pb-5,
8660
+ .w3eden .py-5 {
8661
+ padding-bottom: 3rem !important;
8662
  }
8663
+ .w3eden .pl-5,
8664
+ .w3eden .px-5 {
8665
+ padding-left: 3rem !important;
8666
  }
8667
+ .w3eden .m-n1 {
8668
+ margin: -0.25rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8669
  }
8670
+ .w3eden .mt-n1,
8671
+ .w3eden .my-n1 {
8672
+ margin-top: -0.25rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8673
  }
8674
+ .w3eden .mr-n1,
8675
+ .w3eden .mx-n1 {
8676
+ margin-right: -0.25rem !important;
8677
  }
8678
+ .w3eden .mb-n1,
8679
+ .w3eden .my-n1 {
8680
+ margin-bottom: -0.25rem !important;
8681
  }
8682
+ .w3eden .ml-n1,
8683
+ .w3eden .mx-n1 {
8684
+ margin-left: -0.25rem !important;
 
 
 
 
 
 
 
8685
  }
8686
+ .w3eden .m-n2 {
8687
+ margin: -0.5rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8688
  }
8689
+ .w3eden .mt-n2,
8690
+ .w3eden .my-n2 {
8691
+ margin-top: -0.5rem !important;
8692
  }
8693
+ .w3eden .mr-n2,
8694
+ .w3eden .mx-n2 {
8695
+ margin-right: -0.5rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8696
  }
8697
+ .w3eden .mb-n2,
8698
+ .w3eden .my-n2 {
8699
+ margin-bottom: -0.5rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8700
  }
8701
+ .w3eden .ml-n2,
8702
+ .w3eden .mx-n2 {
8703
+ margin-left: -0.5rem !important;
8704
  }
8705
+ .w3eden .m-n3 {
8706
+ margin: -1rem !important;
8707
  }
8708
+ .w3eden .mt-n3,
8709
+ .w3eden .my-n3 {
8710
+ margin-top: -1rem !important;
8711
  }
8712
+ .w3eden .mr-n3,
8713
+ .w3eden .mx-n3 {
8714
+ margin-right: -1rem !important;
8715
  }
8716
+ .w3eden .mb-n3,
8717
+ .w3eden .my-n3 {
8718
+ margin-bottom: -1rem !important;
8719
  }
8720
+ .w3eden .ml-n3,
8721
+ .w3eden .mx-n3 {
8722
+ margin-left: -1rem !important;
 
 
 
8723
  }
8724
+ .w3eden .m-n4 {
8725
+ margin: -1.5rem !important;
8726
  }
8727
+ .w3eden .mt-n4,
8728
+ .w3eden .my-n4 {
8729
+ margin-top: -1.5rem !important;
8730
  }
8731
+ .w3eden .mr-n4,
8732
+ .w3eden .mx-n4 {
8733
+ margin-right: -1.5rem !important;
8734
  }
8735
+ .w3eden .mb-n4,
8736
+ .w3eden .my-n4 {
8737
+ margin-bottom: -1.5rem !important;
 
 
8738
  }
8739
+ .w3eden .ml-n4,
8740
+ .w3eden .mx-n4 {
8741
+ margin-left: -1.5rem !important;
 
 
 
 
 
 
 
 
 
 
8742
  }
8743
+ .w3eden .m-n5 {
8744
+ margin: -3rem !important;
 
 
 
 
 
 
 
 
 
 
 
 
8745
  }
8746
+ .w3eden .mt-n5,
8747
+ .w3eden .my-n5 {
8748
+ margin-top: -3rem !important;
 
8749
  }
8750
+ .w3eden .mr-n5,
8751
+ .w3eden .mx-n5 {
8752
+ margin-right: -3rem !important;
 
8753
  }
8754
+ .w3eden .mb-n5,
8755
+ .w3eden .my-n5 {
8756
+ margin-bottom: -3rem !important;
 
8757
  }
8758
+ .w3eden .ml-n5,
8759
+ .w3eden .mx-n5 {
8760
+ margin-left: -3rem !important;
 
 
 
 
 
 
 
 
 
 
 
8761
  }
8762
+ .w3eden .m-auto {
8763
+ margin: auto !important;
 
 
8764
  }
8765
+ .w3eden .mt-auto,
8766
+ .w3eden .my-auto {
8767
+ margin-top: auto !important;
 
8768
  }
8769
+ .w3eden .mr-auto,
8770
+ .w3eden .mx-auto {
8771
+ margin-right: auto !important;
 
8772
  }
8773
+ .w3eden .mb-auto,
8774
+ .w3eden .my-auto {
8775
+ margin-bottom: auto !important;
 
 
 
 
 
 
 
 
 
 
 
8776
  }
8777
+ .w3eden .ml-auto,
8778
+ .w3eden .mx-auto {
8779
+ margin-left: auto !important;
 
8780
  }
8781
+ .w3eden .text-truncate {
8782
+ overflow: hidden;
8783
+ text-overflow: ellipsis;
8784
+ white-space: nowrap;
8785
  }
8786
+ .w3eden .text-left {
8787
+ text-align: left !important;
 
 
8788
  }
8789
+ .w3eden .text-right {
8790
+ text-align: right !important;
 
 
 
 
 
 
 
 
 
 
 
 
8791
  }
8792
+ .w3eden .text-center {
8793
+ text-align: center !important;
 
 
8794
  }
8795
+ .w3eden .text-uppercase {
8796
+ text-transform: uppercase !important;
 
 
8797
  }
8798
+ .w3eden .text-capitalize {
8799
+ text-transform: capitalize !important;
 
 
8800
  }
8801
+ .w3eden .text-white {
8802
+ color: #fff !important;
 
 
8803
  }
8804
+ .w3eden .text-primary {
8805
+ color: var(--color-primary) !important;
 
 
8806
  }
8807
+ .w3eden a.text-primary:hover, .w3eden a.text-primary:focus {
8808
+ color: var(--color-primary-hover) !important;
 
 
8809
  }
8810
+ .w3eden .text-secondary {
8811
+ color: var(--color-secondary) !important;
 
 
8812
  }
8813
+ .w3eden a.text-secondary:hover, .w3eden a.text-secondary:focus {
8814
+ color: var(--color-secondary-hover) !important;
8815
  }
8816
+ .w3eden .text-success {
8817
+ color: var(--color-success) !important;
 
 
 
 
 
 
 
 
 
 
 
 
8818
  }
8819
+ .w3eden a.text-success:hover, .w3eden a.text-success:focus {
8820
+ color: var(--color-success-active) !important;
8821
  }
8822
+ .w3eden .text-info {
8823
+ color: var(--color-info) !important;
 
 
8824
  }
8825
+ .w3eden a.text-info:hover, .w3eden a.text-info:focus {
8826
+ color: var(--color-info-active) !important;
8827
  }
8828
+ .w3eden .text-warning {
8829
+ color: var(--color-warning) !important;
 
 
8830
  }
8831
+ .w3eden a.text-warning:hover, .w3eden a.text-warning:focus {
8832
+ color: var(--color-warning-active) !important;
8833
  }
8834
+ .w3eden .text-danger {
8835
+ color: var(--color-danger) !important;
 
 
8836
  }
8837
+ .w3eden a.text-danger:hover, .w3eden a.text-danger:focus {
8838
+ color: var(--color-danger-active) !important;
 
 
8839
  }
8840
+ .w3eden .text-muted {
8841
+ color: var(--color-secondary) !important;
 
 
 
8842
  }
8843
+ .w3eden .visible {
8844
+ visibility: visible !important;
 
 
8845
  }
8846
+ @media print {
8847
+ .w3eden *,
8848
+ .w3eden *::before,
8849
+ .w3eden *::after {
8850
+ text-shadow: none !important;
8851
  box-shadow: none !important;
8852
+ }
8853
+ .w3eden a:not(.btn) {
8854
+ text-decoration: underline;
8855
+ }
8856
+ .w3eden abbr[title]::after {
8857
+ content: " (" attr(title) ")";
8858
+ }
8859
+ .w3eden pre {
8860
+ white-space: pre-wrap !important;
8861
+ }
8862
+ .w3eden pre,
8863
+ .w3eden blockquote {
8864
+ border: 1px solid #adb5bd;
8865
+ page-break-inside: avoid;
8866
+ }
8867
+ .w3eden thead {
8868
+ display: table-header-group;
8869
+ }
8870
+ .w3eden tr,
8871
+ .w3eden img {
8872
+ page-break-inside: avoid;
8873
+ }
8874
+ .w3eden p,
8875
+ .w3eden h2,
8876
+ .w3eden h3 {
8877
+ orphans: 3;
8878
+ widows: 3;
8879
+ }
8880
+ .w3eden h2,
8881
+ .w3eden h3 {
8882
+ page-break-after: avoid;
8883
+ }
8884
+ .w3eden body {
8885
+ min-width: 992px !important;
8886
+ }
8887
+ .w3eden .container {
8888
+ min-width: 992px !important;
8889
+ }
8890
+ .w3eden .navbar {
8891
+ display: none;
8892
+ }
8893
+ .w3eden .badge {
8894
+ border: 1px solid #000;
8895
+ }
8896
+ .w3eden .table {
8897
+ border-collapse: collapse !important;
8898
+ }
8899
+ .w3eden .table td,
8900
+ .w3eden .table th {
8901
+ background-color: #fff !important;
8902
+ }
8903
+ .w3eden .table-bordered th,
8904
+ .w3eden .table-bordered td {
8905
+ border: 1px solid #dee2e6 !important;
8906
+ }
8907
  }
8908
+
8909
+ /*# sourceMappingURL=bootstrap.css.map */
assets/bootstrap/css/bootstrap.min.css CHANGED
@@ -1,6 +1,7 @@
1
  /*!
2
- * Bootstrap v3.3.4 (http://getbootstrap.com)
3
- * Copyright 2011-2015 Twitter, Inc.
4
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- *//*! normalize.css v3.0.2 | MIT License | git.io/normalize *//*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
6
- .w3eden .text-left,.w3eden caption,.w3eden th{text-align:left}.w3eden .btn-group>.btn-group,.w3eden .btn-toolbar .btn-group,.w3eden .btn-toolbar .input-group,.w3eden .col-xs-1,.w3eden .col-xs-10,.w3eden .col-xs-11,.w3eden .col-xs-12,.w3eden .col-xs-2,.w3eden .col-xs-3,.w3eden .col-xs-4,.w3eden .col-xs-5,.w3eden .col-xs-6,.w3eden .col-xs-7,.w3eden .col-xs-8,.w3eden .col-xs-9,.w3eden .dropdown-menu{float:left}.w3eden html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}.w3eden body{margin:0}.w3eden article,.w3eden aside,.w3eden details,.w3eden figcaption,.w3eden figure,.w3eden footer,.w3eden header,.w3eden hgroup,.w3eden main,.w3eden menu,.w3eden nav,.w3eden section,.w3eden summary{display:block}.w3eden audio,.w3eden canvas,.w3eden progress,.w3eden video{display:inline-block;vertical-align:baseline}.w3eden audio:not([controls]){display:none;height:0}.w3eden [hidden],.w3eden template{display:none}.w3eden a{background-color:transparent}.w3eden a:active,.w3eden a:hover{outline:0}.w3eden b,.w3eden strong{font-weight:700}.w3eden dfn{font-style:italic}.w3eden h1{margin:.67em 0}.w3eden mark{color:#000;background:#ff0}.w3eden sub,.w3eden sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}.w3eden sup{top:-.5em}.w3eden sub{bottom:-.25em}.w3eden img{border:0;vertical-align:middle}.w3eden svg:not(:root){overflow:hidden}.w3eden hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.w3eden pre{overflow:auto}.w3eden code,.w3eden kbd,.w3eden pre,.w3eden samp{font-size:1em}.w3eden button,.w3eden input,.w3eden optgroup,.w3eden select,.w3eden textarea{margin:0;font:inherit;color:inherit}.w3eden button{overflow:visible}.w3eden button,.w3eden select{text-transform:none}.w3eden button,.w3eden html input[type=button],.w3eden input[type=reset],.w3eden input[type=submit]{-webkit-appearance:button;cursor:pointer}.w3eden button[disabled],.w3eden html input[disabled]{cursor:default}.w3eden button::-moz-focus-inner,.w3eden input::-moz-focus-inner{padding:0;border:0}.w3eden input[type=checkbox],.w3eden input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.w3eden input[type=number]::-webkit-inner-spin-button,.w3eden input[type=number]::-webkit-outer-spin-button{height:auto}.w3eden input[type=search]::-webkit-search-cancel-button,.w3eden input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.w3eden textarea{overflow:auto}.w3eden optgroup{font-weight:700}.w3eden table{border-spacing:0;border-collapse:collapse}.w3eden td,.w3eden th{padding:0}@media print{.w3eden *,.w3eden :after,.w3eden :before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}.w3eden a,.w3eden a:visited{text-decoration:underline}.w3eden a[href]:after{content:" (" attr(href) ")"}.w3eden abbr[title]:after{content:" (" attr(title) ")"}.w3eden a[href^="javascript:"]:after,.w3eden a[href^="#"]:after{content:""}.w3eden blockquote,.w3eden pre{border:1px solid #999;page-break-inside:avoid}.w3eden thead{display:table-header-group}.w3eden img,.w3eden tr{page-break-inside:avoid}.w3eden img{max-width:100%!important}.w3eden h2,.w3eden h3,.w3eden p{orphans:3;widows:3}.w3eden h2,.w3eden h3{page-break-after:avoid}.w3eden select{background:#fff!important}.w3eden .navbar{display:none}.w3eden .btn>.caret,.w3eden .dropup>.btn>.caret{border-top-color:#000!important}.w3eden .label{border:1px solid #000}.w3eden .table{border-collapse:collapse!important}.w3eden .table td,.w3eden .table th{background-color:#fff!important}.w3eden .table-bordered td,.w3eden .table-bordered th{border:1px solid #ddd!important}}.w3eden .btn,.w3eden .btn-danger.active,.w3eden .btn-danger:active,.w3eden .btn-info.active,.w3eden .btn-info:active,.w3eden .btn-primary.active,.w3eden .btn-primary:active,.w3eden .btn-secondary.active,.w3eden .btn-secondary:active,.w3eden .btn-warning.active,.w3eden .btn-warning:active,.w3eden .btn.active,.w3eden .btn:active,.w3eden .dropdown-menu>.disabled>a:focus,.w3eden .dropdown-menu>.disabled>a:hover,.w3eden .form-control,.w3eden .navbar-toggle,.w3eden .open>.dropdown-toggle.btn-danger,.w3eden .open>.dropdown-toggle.btn-info,.w3eden .open>.dropdown-toggle.btn-primary,.w3eden .open>.dropdown-toggle.btn-secondary,.w3eden .open>.dropdown-toggle.btn-warning{background-image:none}.w3eden *,.w3eden :after,.w3eden :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.w3eden html{font-size:10px;-webkit-tap-highlight-color:transparent}.w3eden body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}.w3eden button,.w3eden input,.w3eden select,.w3eden textarea{font-family:inherit;font-size:inherit;line-height:inherit}.w3eden a{color:#337ab7;text-decoration:none}.w3eden a:focus,.w3eden a:hover{color:#23527c;text-decoration:underline}.w3eden a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.w3eden figure{margin:0}.w3eden .carousel-inner>.item>a>img,.w3eden .carousel-inner>.item>img,.w3eden .img-responsive,.w3eden .thumbnail a>img,.w3eden .thumbnail>img{display:block;max-width:100%;height:auto}.w3eden .img-rounded{border-radius:6px}.w3eden .img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.w3eden .img-circle{border-radius:50%}.w3eden hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w3eden .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.w3eden .sr-only-focusable:active,.w3eden .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w3eden [role=button]{cursor:pointer}.w3eden .h1,.w3eden .h2,.w3eden .h3,.w3eden .h4,.w3eden .h5,.w3eden .h6,.w3eden h1,.w3eden h2,.w3eden h3,.w3eden h4,.w3eden h5,.w3eden h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.w3eden .h1 .small,.w3eden .h1 small,.w3eden .h2 .small,.w3eden .h2 small,.w3eden .h3 .small,.w3eden .h3 small,.w3eden .h4 .small,.w3eden .h4 small,.w3eden .h5 .small,.w3eden .h5 small,.w3eden .h6 .small,.w3eden .h6 small,.w3eden h1 .small,.w3eden h1 small,.w3eden h2 .small,.w3eden h2 small,.w3eden h3 .small,.w3eden h3 small,.w3eden h4 .small,.w3eden h4 small,.w3eden h5 .small,.w3eden h5 small,.w3eden h6 .small,.w3eden h6 small{font-weight:400;line-height:1;color:#777}.w3eden .h1,.w3eden .h2,.w3eden .h3,.w3eden h1,.w3eden h2,.w3eden h3{margin-top:20px;margin-bottom:10px}.w3eden .h1 .small,.w3eden .h1 small,.w3eden .h2 .small,.w3eden .h2 small,.w3eden .h3 .small,.w3eden .h3 small,.w3eden h1 .small,.w3eden h1 small,.w3eden h2 .small,.w3eden h2 small,.w3eden h3 .small,.w3eden h3 small{font-size:65%}.w3eden .h4,.w3eden .h5,.w3eden .h6,.w3eden h4,.w3eden h5,.w3eden h6{margin-top:10px;margin-bottom:10px}.w3eden .h4 .small,.w3eden .h4 small,.w3eden .h5 .small,.w3eden .h5 small,.w3eden .h6 .small,.w3eden .h6 small,.w3eden h4 .small,.w3eden h4 small,.w3eden h5 .small,.w3eden h5 small,.w3eden h6 .small,.w3eden h6 small{font-size:75%}.w3eden .h1,.w3eden h1{font-size:36px}.w3eden .h2,.w3eden h2{font-size:30px}.w3eden .h3,.w3eden h3{font-size:24px}.w3eden .h4,.w3eden h4{font-size:18px}.w3eden .h5,.w3eden h5{font-size:14px}.w3eden .h6,.w3eden h6{font-size:12px}.w3eden p{margin:0 0 10px}.w3eden .lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}.w3eden dt,.w3eden kbd kbd,.w3eden label{font-weight:700}@media (min-width:768px){.w3eden .lead{font-size:21px}}.w3eden .small,.w3eden small{font-size:85%}.w3eden .mark,.w3eden mark{padding:.2em;background-color:#fcf8e3}.w3eden .list-inline,.w3eden .list-unstyled{padding-left:0;list-style:none}.w3eden .text-right{text-align:right}.w3eden .text-center{text-align:center}.w3eden .text-justify{text-align:justify}.w3eden .text-nowrap{white-space:nowrap}.w3eden .text-lowercase{text-transform:lowercase}.w3eden .text-uppercase{text-transform:uppercase}.w3eden .text-capitalize{text-transform:capitalize}.w3eden .text-muted{color:#777}.w3eden .text-primary{color:#337ab7}.w3eden a.text-primary:hover{color:#286090}.w3eden .text-success{color:#3c763d}.w3eden a.text-success:hover{color:#2b542c}.w3eden .text-info{color:#31708f}.w3eden a.text-info:hover{color:#245269}.w3eden .text-warning{color:#8a6d3b}.w3eden a.text-warning:hover{color:#66512c}.w3eden .text-danger{color:#a94442}.w3eden a.text-danger:hover{color:#843534}.w3eden .bg-primary{color:#fff;background-color:#337ab7}.w3eden a.bg-primary:hover{background-color:#286090}.w3eden .bg-success{background-color:#dff0d8}.w3eden a.bg-success:hover{background-color:#c1e2b3}.w3eden .bg-info{background-color:#d9edf7}.w3eden a.bg-info:hover{background-color:#afd9ee}.w3eden .bg-warning{background-color:#fcf8e3}.w3eden a.bg-warning:hover{background-color:#f7ecb5}.w3eden .bg-danger{background-color:#f2dede}.w3eden a.bg-danger:hover{background-color:#e4b9b9}.w3eden .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.w3eden ol,.w3eden ul{margin-top:0;margin-bottom:10px}.w3eden ol ol,.w3eden ol ul,.w3eden ul ol,.w3eden ul ul{margin-bottom:0}.w3eden .list-inline{margin-left:-5px}.w3eden .list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.w3eden dl{margin-top:0;margin-bottom:20px}.w3eden dd,.w3eden dt{line-height:1.42857143}.w3eden dd{margin-left:0}@media (min-width:768px){.w3eden .dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.w3eden .dl-horizontal dd{margin-left:180px}.w3eden .container{width:750px}}.w3eden abbr[data-original-title],.w3eden abbr[title]{cursor:help;border-bottom:1px dotted #777}.w3eden .initialism{font-size:90%;text-transform:uppercase}.w3eden blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}.w3eden blockquote ol:last-child,.w3eden blockquote p:last-child,.w3eden blockquote ul:last-child{margin-bottom:0}.w3eden blockquote .small,.w3eden blockquote footer,.w3eden blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}.w3eden code,.w3eden kbd{padding:2px 4px;font-size:90%}.w3eden blockquote .small:before,.w3eden blockquote footer:before,.w3eden blockquote small:before{content:'\2014 \00A0'}.w3eden code,.w3eden kbd,.w3eden pre,.w3eden samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}.w3eden code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}.w3eden kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}.w3eden kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}.w3eden pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.w3eden .container,.w3eden .container-fluid{margin-right:auto;margin-left:auto;padding-right:15px;padding-left:15px}.w3eden pre code,.w3eden table{background-color:transparent}.w3eden pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0}.w3eden .pre-scrollable{max-height:340px;overflow-y:scroll}@media (min-width:992px){.w3eden .container{width:970px}}@media (min-width:1200px){.w3eden .container{width:1170px}}.w3eden .row{margin-right:-15px;margin-left:-15px}.w3eden .col-lg-1,.w3eden .col-lg-10,.w3eden .col-lg-11,.w3eden .col-lg-12,.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-md-1,.w3eden .col-md-10,.w3eden .col-md-11,.w3eden .col-md-12,.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-sm-1,.w3eden .col-sm-10,.w3eden .col-sm-11,.w3eden .col-sm-12,.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-xs-1,.w3eden .col-xs-10,.w3eden .col-xs-11,.w3eden .col-xs-12,.w3eden .col-xs-2,.w3eden .col-xs-3,.w3eden .col-xs-4,.w3eden .col-xs-5,.w3eden .col-xs-6,.w3eden .col-xs-7,.w3eden .col-xs-8,.w3eden .col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.w3eden .col-xs-12{width:100%}.w3eden .col-xs-11{width:91.66666667%}.w3eden .col-xs-10{width:83.33333333%}.w3eden .col-xs-9{width:75%}.w3eden .col-xs-8{width:66.66666667%}.w3eden .col-xs-7{width:58.33333333%}.w3eden .col-xs-6{width:50%}.w3eden .col-xs-5{width:41.66666667%}.w3eden .col-xs-4{width:33.33333333%}.w3eden .col-xs-3{width:25%}.w3eden .col-xs-2{width:16.66666667%}.w3eden .col-xs-1{width:8.33333333%}.w3eden .col-xs-pull-12{right:100%}.w3eden .col-xs-pull-11{right:91.66666667%}.w3eden .col-xs-pull-10{right:83.33333333%}.w3eden .col-xs-pull-9{right:75%}.w3eden .col-xs-pull-8{right:66.66666667%}.w3eden .col-xs-pull-7{right:58.33333333%}.w3eden .col-xs-pull-6{right:50%}.w3eden .col-xs-pull-5{right:41.66666667%}.w3eden .col-xs-pull-4{right:33.33333333%}.w3eden .col-xs-pull-3{right:25%}.w3eden .col-xs-pull-2{right:16.66666667%}.w3eden .col-xs-pull-1{right:8.33333333%}.w3eden .col-xs-pull-0{right:auto}.w3eden .col-xs-push-12{left:100%}.w3eden .col-xs-push-11{left:91.66666667%}.w3eden .col-xs-push-10{left:83.33333333%}.w3eden .col-xs-push-9{left:75%}.w3eden .col-xs-push-8{left:66.66666667%}.w3eden .col-xs-push-7{left:58.33333333%}.w3eden .col-xs-push-6{left:50%}.w3eden .col-xs-push-5{left:41.66666667%}.w3eden .col-xs-push-4{left:33.33333333%}.w3eden .col-xs-push-3{left:25%}.w3eden .col-xs-push-2{left:16.66666667%}.w3eden .col-xs-push-1{left:8.33333333%}.w3eden .col-xs-push-0{left:auto}.w3eden .col-xs-offset-12{margin-left:100%}.w3eden .col-xs-offset-11{margin-left:91.66666667%}.w3eden .col-xs-offset-10{margin-left:83.33333333%}.w3eden .col-xs-offset-9{margin-left:75%}.w3eden .col-xs-offset-8{margin-left:66.66666667%}.w3eden .col-xs-offset-7{margin-left:58.33333333%}.w3eden .col-xs-offset-6{margin-left:50%}.w3eden .col-xs-offset-5{margin-left:41.66666667%}.w3eden .col-xs-offset-4{margin-left:33.33333333%}.w3eden .col-xs-offset-3{margin-left:25%}.w3eden .col-xs-offset-2{margin-left:16.66666667%}.w3eden .col-xs-offset-1{margin-left:8.33333333%}.w3eden .col-xs-offset-0{margin-left:0}@media (min-width:768px){.w3eden .col-sm-1,.w3eden .col-sm-10,.w3eden .col-sm-11,.w3eden .col-sm-12,.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{float:left}.w3eden .col-sm-12{width:100%}.w3eden .col-sm-11{width:91.66666667%}.w3eden .col-sm-10{width:83.33333333%}.w3eden .col-sm-9{width:75%}.w3eden .col-sm-8{width:66.66666667%}.w3eden .col-sm-7{width:58.33333333%}.w3eden .col-sm-6{width:50%}.w3eden .col-sm-5{width:41.66666667%}.w3eden .col-sm-4{width:33.33333333%}.w3eden .col-sm-3{width:25%}.w3eden .col-sm-2{width:16.66666667%}.w3eden .col-sm-1{width:8.33333333%}.w3eden .col-sm-offset-12{margin-left:100%}.w3eden .col-sm-offset-11{margin-left:91.66666667%}.w3eden .col-sm-offset-10{margin-left:83.33333333%}.w3eden .col-sm-offset-9{margin-left:75%}.w3eden .col-sm-offset-8{margin-left:66.66666667%}.w3eden .col-sm-offset-7{margin-left:58.33333333%}.w3eden .col-sm-offset-6{margin-left:50%}.w3eden .col-sm-offset-5{margin-left:41.66666667%}.w3eden .col-sm-offset-4{margin-left:33.33333333%}.w3eden .col-sm-offset-3{margin-left:25%}.w3eden .col-sm-offset-2{margin-left:16.66666667%}.w3eden .col-sm-offset-1{margin-left:8.33333333%}.w3eden .col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w3eden .col-md-1,.w3eden .col-md-10,.w3eden .col-md-11,.w3eden .col-md-12,.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{float:left}.w3eden .col-md-12{width:100%}.w3eden .col-md-11{width:91.66666667%}.w3eden .col-md-10{width:83.33333333%}.w3eden .col-md-9{width:75%}.w3eden .col-md-8{width:66.66666667%}.w3eden .col-md-7{width:58.33333333%}.w3eden .col-md-6{width:50%}.w3eden .col-md-5{width:41.66666667%}.w3eden .col-md-4{width:33.33333333%}.w3eden .col-md-3{width:25%}.w3eden .col-md-2{width:16.66666667%}.w3eden .col-md-1{width:8.33333333%}.w3eden .col-md-offset-12{margin-left:100%}.w3eden .col-md-offset-11{margin-left:91.66666667%}.w3eden .col-md-offset-10{margin-left:83.33333333%}.w3eden .col-md-offset-9{margin-left:75%}.w3eden .col-md-offset-8{margin-left:66.66666667%}.w3eden .col-md-offset-7{margin-left:58.33333333%}.w3eden .col-md-offset-6{margin-left:50%}.w3eden .col-md-offset-5{margin-left:41.66666667%}.w3eden .col-md-offset-4{margin-left:33.33333333%}.w3eden .col-md-offset-3{margin-left:25%}.w3eden .col-md-offset-2{margin-left:16.66666667%}.w3eden .col-md-offset-1{margin-left:8.33333333%}.w3eden .col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w3eden .col-lg-1,.w3eden .col-lg-10,.w3eden .col-lg-11,.w3eden .col-lg-12,.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{float:left}.w3eden .col-lg-12{width:100%}.w3eden .col-lg-11{width:91.66666667%}.w3eden .col-lg-10{width:83.33333333%}.w3eden .col-lg-9{width:75%}.w3eden .col-lg-8{width:66.66666667%}.w3eden .col-lg-7{width:58.33333333%}.w3eden .col-lg-6{width:50%}.w3eden .col-lg-5{width:41.66666667%}.w3eden .col-lg-4{width:33.33333333%}.w3eden .col-lg-3{width:25%}.w3eden .col-lg-2{width:16.66666667%}.w3eden .col-lg-1{width:8.33333333%}.w3eden .col-lg-offset-12{margin-left:100%}.w3eden .col-lg-offset-11{margin-left:91.66666667%}.w3eden .col-lg-offset-10{margin-left:83.33333333%}.w3eden .col-lg-offset-9{margin-left:75%}.w3eden .col-lg-offset-8{margin-left:66.66666667%}.w3eden .col-lg-offset-7{margin-left:58.33333333%}.w3eden .col-lg-offset-6{margin-left:50%}.w3eden .col-lg-offset-5{margin-left:41.66666667%}.w3eden .col-lg-offset-4{margin-left:33.33333333%}.w3eden .col-lg-offset-3{margin-left:25%}.w3eden .col-lg-offset-2{margin-left:16.66666667%}.w3eden .col-lg-offset-1{margin-left:8.33333333%}.w3eden .col-lg-offset-0{margin-left:0}}.w3eden caption{padding-top:8px;padding-bottom:8px;color:#777}.w3eden .table{width:100%;max-width:100%;margin-bottom:20px}.w3eden .table>tbody>tr>td,.w3eden .table>tbody>tr>th,.w3eden .table>tfoot>tr>td,.w3eden .table>tfoot>tr>th,.w3eden .table>thead>tr>td,.w3eden .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.w3eden .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.w3eden .table>caption+thead>tr:first-child>td,.w3eden .table>caption+thead>tr:first-child>th,.w3eden .table>colgroup+thead>tr:first-child>td,.w3eden .table>colgroup+thead>tr:first-child>th,.w3eden .table>thead:first-child>tr:first-child>td,.w3eden .table>thead:first-child>tr:first-child>th{border-top:0}.w3eden .table>tbody+tbody{border-top:2px solid #ddd}.w3eden .table .table{background-color:#fff}.w3eden .table-condensed>tbody>tr>td,.w3eden .table-condensed>tbody>tr>th,.w3eden .table-condensed>tfoot>tr>td,.w3eden .table-condensed>tfoot>tr>th,.w3eden .table-condensed>thead>tr>td,.w3eden .table-condensed>thead>tr>th{padding:5px}.w3eden .table-bordered,.w3eden .table-bordered>tbody>tr>td,.w3eden .table-bordered>tbody>tr>th,.w3eden .table-bordered>tfoot>tr>td,.w3eden .table-bordered>tfoot>tr>th,.w3eden .table-bordered>thead>tr>td,.w3eden .table-bordered>thead>tr>th{border:1px solid #ddd}.w3eden .table-bordered>thead>tr>td,.w3eden .table-bordered>thead>tr>th{border-bottom-width:2px}.w3eden .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.w3eden .table-hover>tbody>tr:hover,.w3eden .table>tbody>tr.active>td,.w3eden .table>tbody>tr.active>th,.w3eden .table>tbody>tr>td.active,.w3eden .table>tbody>tr>th.active,.w3eden .table>tfoot>tr.active>td,.w3eden .table>tfoot>tr.active>th,.w3eden .table>tfoot>tr>td.active,.w3eden .table>tfoot>tr>th.active,.w3eden .table>thead>tr.active>td,.w3eden .table>thead>tr.active>th,.w3eden .table>thead>tr>td.active,.w3eden .table>thead>tr>th.active{background-color:#f5f5f5}.w3eden table col[class*=col-]{position:static;display:table-column;float:none}.w3eden table td[class*=col-],.w3eden table th[class*=col-]{position:static;display:table-cell;float:none}.w3eden .table-hover>tbody>tr.active:hover>td,.w3eden .table-hover>tbody>tr.active:hover>th,.w3eden .table-hover>tbody>tr:hover>.active,.w3eden .table-hover>tbody>tr>td.active:hover,.w3eden .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.w3eden .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.w3eden .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.w3eden .table-responsive>.table{margin-bottom:0}.w3eden .table-responsive>.table>tbody>tr>td,.w3eden .table-responsive>.table>tbody>tr>th,.w3eden .table-responsive>.table>tfoot>tr>td,.w3eden .table-responsive>.table>tfoot>tr>th,.w3eden .table-responsive>.table>thead>tr>td,.w3eden .table-responsive>.table>thead>tr>th{white-space:nowrap}.w3eden .table-responsive>.table-bordered{border:0}.w3eden .table-responsive>.table-bordered>tbody>tr>td:first-child,.w3eden .table-responsive>.table-bordered>tbody>tr>th:first-child,.w3eden .table-responsive>.table-bordered>tfoot>tr>td:first-child,.w3eden .table-responsive>.table-bordered>tfoot>tr>th:first-child,.w3eden .table-responsive>.table-bordered>thead>tr>td:first-child,.w3eden .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.w3eden .table-responsive>.table-bordered>tbody>tr>td:last-child,.w3eden .table-responsive>.table-bordered>tbody>tr>th:last-child,.w3eden .table-responsive>.table-bordered>tfoot>tr>td:last-child,.w3eden .table-responsive>.table-bordered>tfoot>tr>th:last-child,.w3eden .table-responsive>.table-bordered>thead>tr>td:last-child,.w3eden .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.w3eden .table-responsive>.table-bordered>tbody>tr:last-child>td,.w3eden .table-responsive>.table-bordered>tbody>tr:last-child>th,.w3eden .table-responsive>.table-bordered>tfoot>tr:last-child>td,.w3eden .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.w3eden fieldset{min-width:0;padding:0;margin:0;border:0}.w3eden legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}.w3eden label{display:inline-block;max-width:100%;margin-bottom:5px}.w3eden input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}.w3eden input[type=checkbox],.w3eden input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.w3eden .form-control,.w3eden output{font-size:14px;line-height:1.42857143;color:#555;display:block}.w3eden input[type=file]{display:block}.w3eden input[type=range]{display:block;width:100%}.w3eden select[multiple],.w3eden select[size]{height:auto}.w3eden input[type=checkbox]:focus,.w3eden input[type=file]:focus,.w3eden input[type=radio]:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.w3eden output{padding-top:7px}.w3eden .form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #d5d5d5;border-radius:3px;box-shadow:none;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.w3eden .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 3px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 3px rgba(102,175,233,.6)}.w3eden .form-control::-moz-placeholder{color:#999;opacity:1}.w3eden .form-control:-ms-input-placeholder{color:#999}.w3eden .form-control::-webkit-input-placeholder{color:#999}.w3eden .has-success .checkbox,.w3eden .has-success .checkbox-inline,.w3eden .has-success .control-label,.w3eden .has-success .form-control-feedback,.w3eden .has-success .help-block,.w3eden .has-success .radio,.w3eden .has-success .radio-inline,.w3eden .has-success.checkbox label,.w3eden .has-success.checkbox-inline label,.w3eden .has-success.radio label,.w3eden .has-success.radio-inline label{color:#3c763d}.w3eden .form-control[disabled],.w3eden .form-control[readonly],.w3eden fieldset[disabled] .form-control{background-color:#eee;opacity:1}.w3eden .form-control[disabled],.w3eden fieldset[disabled] .form-control{cursor:not-allowed}.w3eden textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){.w3eden input[type=date],.w3eden input[type=datetime-local],.w3eden input[type=month],.w3eden input[type=time]{line-height:34px}.w3eden .input-group-sm input[type=date],.w3eden .input-group-sm input[type=datetime-local],.w3eden .input-group-sm input[type=month],.w3eden .input-group-sm input[type=time],.w3eden input[type=date].input-sm,.w3eden input[type=datetime-local].input-sm,.w3eden input[type=month].input-sm,.w3eden input[type=time].input-sm{line-height:30px}.w3eden .input-group-lg input[type=date],.w3eden .input-group-lg input[type=datetime-local],.w3eden .input-group-lg input[type=month],.w3eden .input-group-lg input[type=time],.w3eden input[type=date].input-lg,.w3eden input[type=datetime-local].input-lg,.w3eden input[type=month].input-lg,.w3eden input[type=time].input-lg{line-height:46px}}.w3eden .form-group{margin-bottom:15px}.w3eden .checkbox,.w3eden .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.w3eden .checkbox label,.w3eden .radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.w3eden .checkbox input[type=checkbox],.w3eden .checkbox-inline input[type=checkbox],.w3eden .radio input[type=radio],.w3eden .radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.w3eden .checkbox+.checkbox,.w3eden .radio+.radio{margin-top:-5px}.w3eden .checkbox-inline,.w3eden .radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.w3eden .checkbox-inline+.checkbox-inline,.w3eden .radio-inline+.radio-inline{margin-top:0;margin-left:10px}.w3eden .checkbox-inline.disabled,.w3eden .checkbox.disabled label,.w3eden .radio-inline.disabled,.w3eden .radio.disabled label,.w3eden fieldset[disabled] .checkbox label,.w3eden fieldset[disabled] .checkbox-inline,.w3eden fieldset[disabled] .radio label,.w3eden fieldset[disabled] .radio-inline,.w3eden fieldset[disabled] input[type=checkbox],.w3eden fieldset[disabled] input[type=radio],.w3eden input[type=checkbox].disabled,.w3eden input[type=checkbox][disabled],.w3eden input[type=radio].disabled,.w3eden input[type=radio][disabled]{cursor:not-allowed}.w3eden .form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.w3eden .form-control-static.input-lg,.w3eden .form-control-static.input-sm{padding-right:0;padding-left:0}.w3eden .input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.w3eden select.input-sm{height:30px;line-height:30px}.w3eden select[multiple].input-sm,.w3eden textarea.input-sm{height:auto}.w3eden .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.w3eden select.form-group-sm .form-control{height:30px;line-height:30px}.w3eden select[multiple].form-group-sm .form-control,.w3eden textarea.form-group-sm .form-control{height:auto}.w3eden .form-group-sm .form-control-static{height:30px;min-height:32px;padding:5px 10px;font-size:12px;line-height:1.5}.w3eden .input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.w3eden select.input-lg{height:46px;line-height:46px}.w3eden select[multiple].input-lg,.w3eden textarea.input-lg{height:auto}.w3eden .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.w3eden select.form-group-lg .form-control{height:46px;line-height:46px}.w3eden select[multiple].form-group-lg .form-control,.w3eden textarea.form-group-lg .form-control{height:auto}.w3eden .form-group-lg .form-control-static{height:46px;min-height:38px;padding:10px 16px;font-size:18px;line-height:1.3333333}.w3eden .has-feedback{position:relative}.w3eden .has-feedback .form-control{padding-right:42.5px}.w3eden .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.w3eden .input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.w3eden .input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.w3eden .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.w3eden .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.w3eden .has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.w3eden .has-warning .checkbox,.w3eden .has-warning .checkbox-inline,.w3eden .has-warning .control-label,.w3eden .has-warning .form-control-feedback,.w3eden .has-warning .help-block,.w3eden .has-warning .radio,.w3eden .has-warning .radio-inline,.w3eden .has-warning.checkbox label,.w3eden .has-warning.checkbox-inline label,.w3eden .has-warning.radio label,.w3eden .has-warning.radio-inline label{color:#8a6d3b}.w3eden .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.w3eden .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.w3eden .has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.w3eden .has-error .checkbox,.w3eden .has-error .checkbox-inline,.w3eden .has-error .control-label,.w3eden .has-error .form-control-feedback,.w3eden .has-error .help-block,.w3eden .has-error .radio,.w3eden .has-error .radio-inline,.w3eden .has-error.checkbox label,.w3eden .has-error.checkbox-inline label,.w3eden .has-error.radio label,.w3eden .has-error.radio-inline label{color:#a94442}.w3eden .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.w3eden .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.w3eden .has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.w3eden .has-feedback label~.form-control-feedback{top:25px}.w3eden .has-feedback label.sr-only~.form-control-feedback{top:0}.w3eden .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.w3eden .form-inline .form-control-static,.w3eden .form-inline .form-group{display:inline-block}.w3eden .form-inline .control-label,.w3eden .form-inline .form-group{margin-bottom:0;vertical-align:middle}.w3eden .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.w3eden .form-inline .input-group{display:inline-table;vertical-align:middle}.w3eden .form-inline .input-group .form-control,.w3eden .form-inline .input-group .input-group-addon,.w3eden .form-inline .input-group .input-group-btn{width:auto}.w3eden .form-inline .input-group>.form-control{width:100%}.w3eden .form-inline .checkbox,.w3eden .form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.w3eden .form-inline .checkbox label,.w3eden .form-inline .radio label{padding-left:0}.w3eden .form-inline .checkbox input[type=checkbox],.w3eden .form-inline .radio input[type=radio]{position:relative;margin-left:0}.w3eden .form-inline .has-feedback .form-control-feedback{top:0}.w3eden .form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.w3eden .form-horizontal .checkbox,.w3eden .form-horizontal .checkbox-inline,.w3eden .form-horizontal .radio,.w3eden .form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.w3eden .form-horizontal .checkbox,.w3eden .form-horizontal .radio{min-height:27px}.w3eden .form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.w3eden .form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.w3eden .form-horizontal .form-group-lg .control-label{padding-top:14.33px}.w3eden .form-horizontal .form-group-sm .control-label{padding-top:6px}}.w3eden .btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent}.w3eden .btn.active.focus,.w3eden .btn.active:focus,.w3eden .btn.focus,.w3eden .btn:active.focus,.w3eden .btn:active:focus,.w3eden .btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.w3eden .btn.focus,.w3eden .btn:focus,.w3eden .btn:hover{color:#333;text-decoration:none}.w3eden .btn.active,.w3eden .btn:active{outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.w3eden .btn.disabled,.w3eden .btn[disabled],.w3eden fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.w3eden .btn-secondary{color:#333;background-color:#fff;border-color:#ccc}.w3eden .btn-secondary.active,.w3eden .btn-secondary.focus,.w3eden .btn-secondary:active,.w3eden .btn-secondary:focus,.w3eden .btn-secondary:hover,.w3eden .open>.dropdown-toggle.btn-secondary{color:#333;background-color:#e6e6e6;border-color:#adadad}.w3eden .btn-secondary.disabled,.w3eden .btn-secondary.disabled.active,.w3eden .btn-secondary.disabled.focus,.w3eden .btn-secondary.disabled:active,.w3eden .btn-secondary.disabled:focus,.w3eden .btn-secondary.disabled:hover,.w3eden .btn-secondary[disabled],.w3eden .btn-secondary[disabled].active,.w3eden .btn-secondary[disabled].focus,.w3eden .btn-secondary[disabled]:active,.w3eden .btn-secondary[disabled]:focus,.w3eden .btn-secondary[disabled]:hover,.w3eden fieldset[disabled] .btn-secondary,.w3eden fieldset[disabled] .btn-secondary.active,.w3eden fieldset[disabled] .btn-secondary.focus,.w3eden fieldset[disabled] .btn-secondary:active,.w3eden fieldset[disabled] .btn-secondary:focus,.w3eden fieldset[disabled] .btn-secondary:hover{background-color:#fff;border-color:#ccc}.w3eden .btn-secondary .badge{color:#fff;background-color:#333}.w3eden .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.w3eden .btn-primary.active,.w3eden .btn-primary.focus,.w3eden .btn-primary:active,.w3eden .btn-primary:focus,.w3eden .btn-primary:hover,.w3eden .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.w3eden .btn-primary.disabled,.w3eden .btn-primary.disabled.active,.w3eden .btn-primary.disabled.focus,.w3eden .btn-primary.disabled:active,.w3eden .btn-primary.disabled:focus,.w3eden .btn-primary.disabled:hover,.w3eden .btn-primary[disabled],.w3eden .btn-primary[disabled].active,.w3eden .btn-primary[disabled].focus,.w3eden .btn-primary[disabled]:active,.w3eden .btn-primary[disabled]:focus,.w3eden .btn-primary[disabled]:hover,.w3eden fieldset[disabled] .btn-primary,.w3eden fieldset[disabled] .btn-primary.active,.w3eden fieldset[disabled] .btn-primary.focus,.w3eden fieldset[disabled] .btn-primary:active,.w3eden fieldset[disabled] .btn-primary:focus,.w3eden fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.w3eden .btn-primary .badge{color:#337ab7;background-color:#fff}.w3eden .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.w3eden .btn-success.active,.w3eden .btn-success.focus,.w3eden .btn-success:active,.w3eden .btn-success:focus,.w3eden .btn-success:hover,.w3eden .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.w3eden .btn-success.active,.w3eden .btn-success:active,.w3eden .open>.dropdown-toggle.btn-success{background-image:none}.w3eden .btn-success.disabled,.w3eden .btn-success.disabled.active,.w3eden .btn-success.disabled.focus,.w3eden .btn-success.disabled:active,.w3eden .btn-success.disabled:focus,.w3eden .btn-success.disabled:hover,.w3eden .btn-success[disabled],.w3eden .btn-success[disabled].active,.w3eden .btn-success[disabled].focus,.w3eden .btn-success[disabled]:active,.w3eden .btn-success[disabled]:focus,.w3eden .btn-success[disabled]:hover,.w3eden fieldset[disabled] .btn-success,.w3eden fieldset[disabled] .btn-success.active,.w3eden fieldset[disabled] .btn-success.focus,.w3eden fieldset[disabled] .btn-success:active,.w3eden fieldset[disabled] .btn-success:focus,.w3eden fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.w3eden .btn-success .badge{color:#5cb85c;background-color:#fff}.w3eden .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.w3eden .btn-info.active,.w3eden .btn-info.focus,.w3eden .btn-info:active,.w3eden .btn-info:focus,.w3eden .btn-info:hover,.w3eden .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.w3eden .btn-info.disabled,.w3eden .btn-info.disabled.active,.w3eden .btn-info.disabled.focus,.w3eden .btn-info.disabled:active,.w3eden .btn-info.disabled:focus,.w3eden .btn-info.disabled:hover,.w3eden .btn-info[disabled],.w3eden .btn-info[disabled].active,.w3eden .btn-info[disabled].focus,.w3eden .btn-info[disabled]:active,.w3eden .btn-info[disabled]:focus,.w3eden .btn-info[disabled]:hover,.w3eden fieldset[disabled] .btn-info,.w3eden fieldset[disabled] .btn-info.active,.w3eden fieldset[disabled] .btn-info.focus,.w3eden fieldset[disabled] .btn-info:active,.w3eden fieldset[disabled] .btn-info:focus,.w3eden fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.w3eden .btn-info .badge{color:#5bc0de;background-color:#fff}.w3eden .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.w3eden .btn-warning.active,.w3eden .btn-warning.focus,.w3eden .btn-warning:active,.w3eden .btn-warning:focus,.w3eden .btn-warning:hover,.w3eden .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.w3eden .btn-warning.disabled,.w3eden .btn-warning.disabled.active,.w3eden .btn-warning.disabled.focus,.w3eden .btn-warning.disabled:active,.w3eden .btn-warning.disabled:focus,.w3eden .btn-warning.disabled:hover,.w3eden .btn-warning[disabled],.w3eden .btn-warning[disabled].active,.w3eden .btn-warning[disabled].focus,.w3eden .btn-warning[disabled]:active,.w3eden .btn-warning[disabled]:focus,.w3eden .btn-warning[disabled]:hover,.w3eden fieldset[disabled] .btn-warning,.w3eden fieldset[disabled] .btn-warning.active,.w3eden fieldset[disabled] .btn-warning.focus,.w3eden fieldset[disabled] .btn-warning:active,.w3eden fieldset[disabled] .btn-warning:focus,.w3eden fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.w3eden .btn-warning .badge{color:#f0ad4e;background-color:#fff}.w3eden .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.w3eden .btn-danger.active,.w3eden .btn-danger.focus,.w3eden .btn-danger:active,.w3eden .btn-danger:focus,.w3eden .btn-danger:hover,.w3eden .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.w3eden .btn-danger.disabled,.w3eden .btn-danger.disabled.active,.w3eden .btn-danger.disabled.focus,.w3eden .btn-danger.disabled:active,.w3eden .btn-danger.disabled:focus,.w3eden .btn-danger.disabled:hover,.w3eden .btn-danger[disabled],.w3eden .btn-danger[disabled].active,.w3eden .btn-danger[disabled].focus,.w3eden .btn-danger[disabled]:active,.w3eden .btn-danger[disabled]:focus,.w3eden .btn-danger[disabled]:hover,.w3eden fieldset[disabled] .btn-danger,.w3eden fieldset[disabled] .btn-danger.active,.w3eden fieldset[disabled] .btn-danger.focus,.w3eden fieldset[disabled] .btn-danger:active,.w3eden fieldset[disabled] .btn-danger:focus,.w3eden fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.w3eden .btn-danger .badge{color:#d9534f;background-color:#fff}.w3eden .btn-link{font-weight:400;color:#337ab7;border-radius:0}.w3eden .btn-link,.w3eden .btn-link.active,.w3eden .btn-link:active,.w3eden .btn-link[disabled],.w3eden fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.w3eden .btn-link,.w3eden .btn-link:active,.w3eden .btn-link:focus,.w3eden .btn-link:hover{border-color:transparent}.w3eden .btn-link:focus,.w3eden .btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.w3eden .btn-link[disabled]:focus,.w3eden .btn-link[disabled]:hover,.w3eden fieldset[disabled] .btn-link:focus,.w3eden fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.w3eden .btn-group-lg>.btn,.w3eden .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.w3eden .btn-group-sm>.btn,.w3eden .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.w3eden .btn-group-xs>.btn,.w3eden .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.w3eden .btn-block{display:block;width:100%}.w3eden .btn-block+.btn-block{margin-top:5px}.w3eden input[type=button].btn-block,.w3eden input[type=reset].btn-block,.w3eden input[type=submit].btn-block{width:100%}.w3eden .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.w3eden .fade.in{opacity:1}.w3eden .collapse{display:none}.w3eden .collapse.in{display:block}.w3eden tr.collapse.in{display:table-row}.w3eden tbody.collapse.in{display:table-row-group}.w3eden .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.w3eden .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.w3eden .dropdown,.w3eden .dropup{position:relative}.w3eden .dropdown-toggle:focus{outline:0}.w3eden .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.w3eden .dropdown-menu-right,.w3eden .dropdown-menu.pull-right{right:0;left:auto}.w3eden .dropdown-header,.w3eden .dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap}.w3eden .btn-group-vertical>.btn:not(:first-child):not(:last-child),.w3eden .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.w3eden .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.w3eden .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.w3eden .dropdown-menu>li>a{clear:both;font-weight:400;color:#333}.w3eden .dropdown-menu>li>a:focus,.w3eden .dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.w3eden .dropdown-menu>.active>a,.w3eden .dropdown-menu>.active>a:focus,.w3eden .dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.w3eden .dropdown-menu>.disabled>a,.w3eden .dropdown-menu>.disabled>a:focus,.w3eden .dropdown-menu>.disabled>a:hover{color:#777}.w3eden .dropdown-menu>.disabled>a:focus,.w3eden .dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.w3eden .open>.dropdown-menu{display:block}.w3eden .open>a{outline:0}.w3eden .dropdown-menu-left{right:auto;left:0}.w3eden .dropdown-header{font-size:12px;color:#777}.w3eden .dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.w3eden .nav-justified>.dropdown .dropdown-menu,.w3eden .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.w3eden .btn-group-vertical>.btn.active,.w3eden .btn-group-vertical>.btn:active,.w3eden .btn-group-vertical>.btn:focus,.w3eden .btn-group-vertical>.btn:hover,.w3eden .btn-group>.btn.active,.w3eden .btn-group>.btn:active,.w3eden .btn-group>.btn:focus,.w3eden .btn-group>.btn:hover,.w3eden .input-group-btn>.btn:active,.w3eden .input-group-btn>.btn:focus,.w3eden .input-group-btn>.btn:hover{z-index:2}.w3eden .pull-right>.dropdown-menu{right:0;left:auto}.w3eden .dropup .caret,.w3eden .navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.w3eden .dropup .dropdown-menu,.w3eden .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.w3eden .navbar-right .dropdown-menu{right:0;left:auto}.w3eden .navbar-right .dropdown-menu-left{right:auto;left:0}}.w3eden .btn-group,.w3eden .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.w3eden .btn-group-vertical>.btn,.w3eden .btn-group>.btn{position:relative;float:left}.w3eden .btn-group .btn+.btn,.w3eden .btn-group .btn+.btn-group,.w3eden .btn-group .btn-group+.btn,.w3eden .btn-group .btn-group+.btn-group{margin-left:-1px}.w3eden .btn-toolbar{margin-left:-5px}.w3eden .btn-toolbar>.btn,.w3eden .btn-toolbar>.btn-group,.w3eden .btn-toolbar>.input-group{margin-left:5px}.w3eden .btn .caret,.w3eden .btn-group>.btn:first-child{margin-left:0}.w3eden .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.w3eden .btn-group>.btn:last-child:not(:first-child),.w3eden .btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.w3eden .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.w3eden .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.w3eden .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.w3eden .btn-group .dropdown-toggle:active,.w3eden .btn-group.open .dropdown-toggle{outline:0}.w3eden .btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.w3eden .btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.w3eden .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.w3eden .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.w3eden .btn-lg .caret{border-width:5px 5px 0}.w3eden .dropup .btn-lg .caret{border-width:0 5px 5px}.w3eden .btn-group-vertical>.btn,.w3eden .btn-group-vertical>.btn-group,.w3eden .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.w3eden .btn-group-vertical>.btn-group>.btn{float:none}.w3eden .btn-group-vertical>.btn+.btn,.w3eden .btn-group-vertical>.btn+.btn-group,.w3eden .btn-group-vertical>.btn-group+.btn,.w3eden .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.w3eden .input-group-btn:last-child>.btn,.w3eden .input-group-btn:last-child>.btn-group,.w3eden .input-group-btn>.btn+.btn{margin-left:-1px}.w3eden .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.w3eden .btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.w3eden .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.w3eden .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.w3eden .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.w3eden .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.w3eden .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.w3eden .btn-group-justified>.btn,.w3eden .btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.w3eden .btn-group-justified>.btn-group .btn{width:100%}.w3eden .btn-group-justified>.btn-group .dropdown-menu{left:auto}.w3eden [data-toggle=buttons]>.btn input[type=checkbox],.w3eden [data-toggle=buttons]>.btn input[type=radio],.w3eden [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],.w3eden [data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.w3eden .input-group{position:relative;display:table;border-collapse:separate}.w3eden .input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.w3eden .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.w3eden .input-group-lg>.form-control,.w3eden .input-group-lg>.input-group-addon,.w3eden .input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.w3eden select.input-group-lg>.form-control,.w3eden select.input-group-lg>.input-group-addon,.w3eden select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}.w3eden select[multiple].input-group-lg>.form-control,.w3eden select[multiple].input-group-lg>.input-group-addon,.w3eden select[multiple].input-group-lg>.input-group-btn>.btn,.w3eden textarea.input-group-lg>.form-control,.w3eden textarea.input-group-lg>.input-group-addon,.w3eden textarea.input-group-lg>.input-group-btn>.btn{height:auto}.w3eden .input-group-sm>.form-control,.w3eden .input-group-sm>.input-group-addon,.w3eden .input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.w3eden select.input-group-sm>.form-control,.w3eden select.input-group-sm>.input-group-addon,.w3eden select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}.w3eden select[multiple].input-group-sm>.form-control,.w3eden select[multiple].input-group-sm>.input-group-addon,.w3eden select[multiple].input-group-sm>.input-group-btn>.btn,.w3eden textarea.input-group-sm>.form-control,.w3eden textarea.input-group-sm>.input-group-addon,.w3eden textarea.input-group-sm>.input-group-btn>.btn{height:auto}.w3eden .input-group .form-control,.w3eden .input-group-addon,.w3eden .input-group-btn{display:table-cell}.w3eden .nav>li,.w3eden .nav>li>a{display:block;position:relative}.w3eden .input-group .form-control:not(:first-child):not(:last-child),.w3eden .input-group-addon:not(:first-child):not(:last-child),.w3eden .input-group-btn:not(:first-child):not(:last-child){border-radius:0}.w3eden .input-group-addon,.w3eden .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.w3eden .input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:3px}.w3eden .input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.w3eden .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.w3eden .input-group-addon input[type=checkbox],.w3eden .input-group-addon input[type=radio]{margin-top:0}.w3eden .input-group .form-control:first-child,.w3eden .input-group-addon:first-child,.w3eden .input-group-btn:first-child>.btn,.w3eden .input-group-btn:first-child>.btn-group>.btn,.w3eden .input-group-btn:first-child>.dropdown-toggle,.w3eden .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.w3eden .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.w3eden .input-group-addon:first-child{border-right:0}.w3eden .input-group .form-control:last-child,.w3eden .input-group-addon:last-child,.w3eden .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.w3eden .input-group-btn:first-child>.btn:not(:first-child),.w3eden .input-group-btn:last-child>.btn,.w3eden .input-group-btn:last-child>.btn-group>.btn,.w3eden .input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.w3eden .input-group-addon:last-child{border-left:0}.w3eden .input-group-btn{position:relative;white-space:nowrap}.w3eden .input-group-btn>.btn{position:relative}.w3eden .input-group-btn:first-child>.btn,.w3eden .input-group-btn:first-child>.btn-group{margin-right:-1px}.w3eden .nav{padding-left:0;margin-bottom:0;list-style:none}.w3eden .nav>li>a{padding:10px 15px}.w3eden .nav>li>a:focus,.w3eden .nav>li>a:hover{text-decoration:none;background-color:#eee}.w3eden .nav>li.disabled>a{color:#777}.w3eden .nav>li.disabled>a:focus,.w3eden .nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.w3eden .nav .open>a,.w3eden .nav .open>a:focus,.w3eden .nav .open>a:hover{background-color:#eee;border-color:#337ab7}.w3eden .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.w3eden .nav>li>a>img{max-width:none}.w3eden .nav-tabs{border-bottom:1px solid #ddd}.w3eden .nav-tabs>li{float:left;margin-bottom:-1px}.w3eden .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.w3eden .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.w3eden .nav-tabs>li.active>a,.w3eden .nav-tabs>li.active>a:focus,.w3eden .nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.w3eden .nav-tabs.nav-justified{width:100%;border-bottom:0}.w3eden .nav-tabs.nav-justified>li{float:none}.w3eden .nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center;margin-right:0;border-radius:4px}.w3eden .nav-tabs.nav-justified>.active>a,.w3eden .nav-tabs.nav-justified>.active>a:focus,.w3eden .nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.w3eden .nav-tabs.nav-justified>li{display:table-cell;width:1%}.w3eden .nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.w3eden .nav-tabs.nav-justified>.active>a,.w3eden .nav-tabs.nav-justified>.active>a:focus,.w3eden .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.w3eden .nav-pills>li{float:left}.w3eden .nav-justified>li,.w3eden .nav-stacked>li{float:none}.w3eden .nav-pills>li>a{border-radius:4px}.w3eden .nav-pills>li+li{margin-left:2px}.w3eden .nav-pills>li.active>a,.w3eden .nav-pills>li.active>a:focus,.w3eden .nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.w3eden .nav-stacked>li+li{margin-top:2px;margin-left:0}.w3eden .nav-justified{width:100%}.w3eden .nav-justified>li>a{margin-bottom:5px;text-align:center}.w3eden .nav-tabs-justified{border-bottom:0}.w3eden .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.w3eden .nav-tabs-justified>.active>a,.w3eden .nav-tabs-justified>.active>a:focus,.w3eden .nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.w3eden .nav-justified>li{display:table-cell;width:1%}.w3eden .nav-justified>li>a{margin-bottom:0}.w3eden .nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.w3eden .nav-tabs-justified>.active>a,.w3eden .nav-tabs-justified>.active>a:focus,.w3eden .nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.w3eden .tab-content>.tab-pane{display:none}.w3eden .tab-content>.active{display:block}.w3eden .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.w3eden .navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.w3eden .navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.w3eden .navbar-collapse.in{overflow-y:auto}.w3eden .navbar-fixed-bottom .navbar-collapse,.w3eden .navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.w3eden .navbar-fixed-bottom .navbar-collapse,.w3eden .navbar-fixed-top .navbar-collapse{max-height:200px}}.w3eden .container-fluid>.navbar-collapse,.w3eden .container-fluid>.navbar-header,.w3eden .container>.navbar-collapse,.w3eden .container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.w3eden .navbar{border-radius:4px}.w3eden .navbar-header{float:left}.w3eden .navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.w3eden .navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.w3eden .navbar-collapse.in{overflow-y:visible}.w3eden .navbar-fixed-bottom .navbar-collapse,.w3eden .navbar-fixed-top .navbar-collapse,.w3eden .navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}.w3eden .container-fluid>.navbar-collapse,.w3eden .container-fluid>.navbar-header,.w3eden .container>.navbar-collapse,.w3eden .container>.navbar-header{margin-right:0;margin-left:0}.w3eden .navbar-static-top{border-radius:0}}.w3eden .navbar-static-top{z-index:1000;border-width:0 0 1px}.w3eden .navbar-fixed-bottom,.w3eden .navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.w3eden .navbar-fixed-top{top:0;border-width:0 0 1px}.w3eden .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.w3eden .navbar-brand{float:left;height:50px;padding:15px;font-size:18px;line-height:20px}.w3eden .navbar-brand:focus,.w3eden .navbar-brand:hover{text-decoration:none}.w3eden .navbar-brand>img{display:block}@media (min-width:768px){.w3eden .navbar-fixed-bottom,.w3eden .navbar-fixed-top{border-radius:0}.w3eden .navbar>.container .navbar-brand,.w3eden .navbar>.container-fluid .navbar-brand{margin-left:-15px}}.w3eden .navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.w3eden .navbar-toggle:focus{outline:0}.w3eden .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.w3eden .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.w3eden .navbar-nav{margin:7.5px -15px}.w3eden .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.w3eden .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.w3eden .navbar-nav .open .dropdown-menu .dropdown-header,.w3eden .navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.w3eden .navbar-nav .open .dropdown-menu>li>a{line-height:20px}.w3eden .navbar-nav .open .dropdown-menu>li>a:focus,.w3eden .navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}.w3eden .progress-bar-striped,.w3eden .progress-striped .progress-bar,.w3eden .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}@media (min-width:768px){.w3eden .navbar-toggle{display:none}.w3eden .navbar-nav{float:left;margin:0}.w3eden .navbar-nav>li{float:left}.w3eden .navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.w3eden .navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px}@media (min-width:768px){.w3eden .navbar-form .form-control-static,.w3eden .navbar-form .form-group{display:inline-block}.w3eden .navbar-form .control-label,.w3eden .navbar-form .form-group{margin-bottom:0;vertical-align:middle}.w3eden .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.w3eden .navbar-form .input-group{display:inline-table;vertical-align:middle}.w3eden .navbar-form .input-group .form-control,.w3eden .navbar-form .input-group .input-group-addon,.w3eden .navbar-form .input-group .input-group-btn{width:auto}.w3eden .navbar-form .input-group>.form-control{width:100%}.w3eden .navbar-form .checkbox,.w3eden .navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.w3eden .navbar-form .checkbox label,.w3eden .navbar-form .radio label{padding-left:0}.w3eden .navbar-form .checkbox input[type=checkbox],.w3eden .navbar-form .radio input[type=radio]{position:relative;margin-left:0}.w3eden .navbar-form .has-feedback .form-control-feedback{top:0}.w3eden .navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.w3eden .breadcrumb>li,.w3eden .pagination{display:inline-block}.w3eden .btn .badge,.w3eden .btn .label{top:-1px;position:relative}@media (max-width:767px){.w3eden .navbar-form .form-group{margin-bottom:5px}.w3eden .navbar-form .form-group:last-child{margin-bottom:0}}.w3eden .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.w3eden .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}.w3eden .navbar-btn{margin-top:8px;margin-bottom:8px}.w3eden .navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.w3eden .navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.w3eden .navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.w3eden .navbar-text{float:left;margin-right:15px;margin-left:15px}.w3eden .navbar-left{float:left!important}.w3eden .navbar-right{float:right!important;margin-right:-15px}.w3eden .navbar-right~.navbar-right{margin-right:0}}.w3eden .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.w3eden .navbar-default .navbar-brand{color:#777}.w3eden .navbar-default .navbar-brand:focus,.w3eden .navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.w3eden .navbar-default .navbar-nav>li>a,.w3eden .navbar-default .navbar-text{color:#777}.w3eden .navbar-default .navbar-nav>li>a:focus,.w3eden .navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.w3eden .navbar-default .navbar-nav>.active>a,.w3eden .navbar-default .navbar-nav>.active>a:focus,.w3eden .navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.w3eden .navbar-default .navbar-nav>.disabled>a,.w3eden .navbar-default .navbar-nav>.disabled>a:focus,.w3eden .navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.w3eden .navbar-default .navbar-toggle{border-color:#ddd}.w3eden .navbar-default .navbar-toggle:focus,.w3eden .navbar-default .navbar-toggle:hover{background-color:#ddd}.w3eden .navbar-default .navbar-toggle .icon-bar{background-color:#888}.w3eden .navbar-default .navbar-collapse,.w3eden .navbar-default .navbar-form{border-color:#e7e7e7}.w3eden .navbar-default .navbar-nav>.open>a,.w3eden .navbar-default .navbar-nav>.open>a:focus,.w3eden .navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.w3eden .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.w3eden .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.w3eden .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.w3eden .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.w3eden .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.w3eden .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.w3eden .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.w3eden .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.w3eden .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.w3eden .navbar-default .navbar-link{color:#777}.w3eden .navbar-default .navbar-link:hover{color:#333}.w3eden .navbar-default .btn-link{color:#777}.w3eden .navbar-default .btn-link:focus,.w3eden .navbar-default .btn-link:hover{color:#333}.w3eden .navbar-default .btn-link[disabled]:focus,.w3eden .navbar-default .btn-link[disabled]:hover,.w3eden fieldset[disabled] .navbar-default .btn-link:focus,.w3eden fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.w3eden .navbar-inverse{background-color:#222;border-color:#080808}.w3eden .navbar-inverse .navbar-brand{color:#9d9d9d}.w3eden .navbar-inverse .navbar-brand:focus,.w3eden .navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.w3eden .navbar-inverse .navbar-nav>li>a,.w3eden .navbar-inverse .navbar-text{color:#9d9d9d}.w3eden .navbar-inverse .navbar-nav>li>a:focus,.w3eden .navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.w3eden .navbar-inverse .navbar-nav>.active>a,.w3eden .navbar-inverse .navbar-nav>.active>a:focus,.w3eden .navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.w3eden .navbar-inverse .navbar-nav>.disabled>a,.w3eden .navbar-inverse .navbar-nav>.disabled>a:focus,.w3eden .navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.w3eden .navbar-inverse .navbar-toggle{border-color:#333}.w3eden .navbar-inverse .navbar-toggle:focus,.w3eden .navbar-inverse .navbar-toggle:hover{background-color:#333}.w3eden .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.w3eden .navbar-inverse .navbar-collapse,.w3eden .navbar-inverse .navbar-form{border-color:#101010}.w3eden .navbar-inverse .navbar-nav>.open>a,.w3eden .navbar-inverse .navbar-nav>.open>a:focus,.w3eden .navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.w3eden .navbar-inverse .navbar-link{color:#9d9d9d}.w3eden .navbar-inverse .navbar-link:hover{color:#fff}.w3eden .navbar-inverse .btn-link{color:#9d9d9d}.w3eden .navbar-inverse .btn-link:focus,.w3eden .navbar-inverse .btn-link:hover{color:#fff}.w3eden .navbar-inverse .btn-link[disabled]:focus,.w3eden .navbar-inverse .btn-link[disabled]:hover,.w3eden fieldset[disabled] .navbar-inverse .btn-link:focus,.w3eden fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.w3eden .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.w3eden .breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.w3eden .breadcrumb>.active{color:#777}.w3eden .pagination{padding-left:0;margin:20px 0;border-radius:4px}.w3eden .pager li,.w3eden .pagination>li{display:inline}.w3eden .pagination>li>a,.w3eden .pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.w3eden .badge,.w3eden .label{font-weight:700;line-height:1;white-space:nowrap;vertical-align:baseline;text-align:center}.w3eden .pagination>li:first-child>a,.w3eden .pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.w3eden .pagination>li:last-child>a,.w3eden .pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.w3eden .pagination>li>a:focus,.w3eden .pagination>li>a:hover,.w3eden .pagination>li>span:focus,.w3eden .pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.w3eden .pagination>.active>a,.w3eden .pagination>.active>a:focus,.w3eden .pagination>.active>a:hover,.w3eden .pagination>.active>span,.w3eden .pagination>.active>span:focus,.w3eden .pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.w3eden .pagination>.disabled>a,.w3eden .pagination>.disabled>a:focus,.w3eden .pagination>.disabled>a:hover,.w3eden .pagination>.disabled>span,.w3eden .pagination>.disabled>span:focus,.w3eden .pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.w3eden .pagination-lg>li>a,.w3eden .pagination-lg>li>span{padding:10px 16px;font-size:18px}.w3eden .pagination-lg>li:first-child>a,.w3eden .pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.w3eden .pagination-lg>li:last-child>a,.w3eden .pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.w3eden .pagination-sm>li>a,.w3eden .pagination-sm>li>span{padding:5px 10px;font-size:12px}.w3eden .pagination-sm>li:first-child>a,.w3eden .pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.w3eden .pagination-sm>li:last-child>a,.w3eden .pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.w3eden .pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.w3eden .pager li>a,.w3eden .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.w3eden .pager li>a:focus,.w3eden .pager li>a:hover{text-decoration:none;background-color:#eee}.w3eden .pager .next>a,.w3eden .pager .next>span{float:right}.w3eden .pager .previous>a,.w3eden .pager .previous>span{float:left}.w3eden .pager .disabled>a,.w3eden .pager .disabled>a:focus,.w3eden .pager .disabled>a:hover,.w3eden .pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.w3eden a.badge:focus,.w3eden a.badge:hover,.w3eden a.label:focus,.w3eden a.label:hover{color:#fff;cursor:pointer;text-decoration:none}.w3eden .label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em}.w3eden .label:empty{display:none}.w3eden .label-default{background-color:#777}.w3eden .label-default[href]:focus,.w3eden .label-default[href]:hover{background-color:#5e5e5e}.w3eden .label-primary{background-color:#337ab7}.w3eden .label-primary[href]:focus,.w3eden .label-primary[href]:hover{background-color:#286090}.w3eden .label-success{background-color:#5cb85c}.w3eden .label-success[href]:focus,.w3eden .label-success[href]:hover{background-color:#449d44}.w3eden .label-info{background-color:#5bc0de}.w3eden .label-info[href]:focus,.w3eden .label-info[href]:hover{background-color:#31b0d5}.w3eden .label-warning{background-color:#f0ad4e}.w3eden .label-warning[href]:focus,.w3eden .label-warning[href]:hover{background-color:#ec971f}.w3eden .label-danger{background-color:#d9534f}.w3eden .label-danger[href]:focus,.w3eden .label-danger[href]:hover{background-color:#c9302c}.w3eden .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;background-color:#777;border-radius:10px}.w3eden .badge:empty{display:none}.w3eden .btn-group-xs>.btn .badge,.w3eden .btn-xs .badge{top:0;padding:1px 5px}.w3eden .list-group-item.active>.badge,.w3eden .nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.w3eden .list-group-item>.badge{float:right}.w3eden .list-group-item>.badge+.badge{margin-right:5px}.w3eden .nav-pills>li>a>.badge{margin-left:3px}.w3eden .jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.w3eden .jumbotron .h1,.w3eden .jumbotron h1{color:inherit}.w3eden .jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.w3eden .alert .alert-link,.w3eden .close{font-weight:700}.w3eden .jumbotron>hr{border-top-color:#d5d5d5}.w3eden .container .jumbotron,.w3eden .container-fluid .jumbotron{border-radius:6px}.w3eden .jumbotron .container{max-width:100%}@media screen and (min-width:768px){.w3eden .jumbotron{padding:48px 0}.w3eden .container .jumbotron,.w3eden .container-fluid .jumbotron{padding-right:60px;padding-left:60px}.w3eden .jumbotron .h1,.w3eden .jumbotron h1{font-size:63px}}.w3eden .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.w3eden .thumbnail a>img,.w3eden .thumbnail>img{margin-right:auto;margin-left:auto}.w3eden a.thumbnail.active,.w3eden a.thumbnail:focus,.w3eden a.thumbnail:hover{border-color:#337ab7}.w3eden .thumbnail .caption{padding:9px;color:#333}.w3eden .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.w3eden .alert h4{margin-top:0;color:inherit}.w3eden .alert>p,.w3eden .alert>ul{margin-bottom:0}.w3eden .alert>p+p{margin-top:5px}.w3eden .alert-dismissable,.w3eden .alert-dismissible{padding-right:35px}.w3eden .alert-dismissable .close,.w3eden .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.w3eden .alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.w3eden .alert-success hr{border-top-color:#c9e2b3}.w3eden .alert-success .alert-link{color:#2b542c}.w3eden .alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.w3eden .alert-info hr{border-top-color:#a6e1ec}.w3eden .alert-info .alert-link{color:#245269}.w3eden .alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.w3eden .alert-warning hr{border-top-color:#f7e1b5}.w3eden .alert-warning .alert-link{color:#66512c}.w3eden .alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.w3eden .alert-danger hr{border-top-color:#e4b9c0}.w3eden .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.w3eden .progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.w3eden .progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.w3eden .progress-bar-striped,.w3eden .progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.w3eden .progress-bar.active,.w3eden .progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.w3eden .progress-bar-success{background-color:#5cb85c}.w3eden .progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.w3eden .progress-striped .progress-bar-info,.w3eden .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.w3eden .progress-bar-info{background-color:#5bc0de}.w3eden .progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.w3eden .progress-bar-warning{background-color:#f0ad4e}.w3eden .progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.w3eden .progress-bar-danger{background-color:#d9534f}.w3eden .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.w3eden .media{margin-top:15px}.w3eden .media:first-child{margin-top:0}.w3eden .media,.w3eden .media-body{overflow:hidden;zoom:1}.w3eden .media-body{width:10000px}.w3eden .media-object{display:block}.w3eden .media-right,.w3eden .media>.pull-right{padding-left:10px}.w3eden .media-left,.w3eden .media>.pull-left{padding-right:10px}.w3eden .media-body,.w3eden .media-left,.w3eden .media-right{display:table-cell;vertical-align:top}.w3eden .media-middle{vertical-align:middle}.w3eden .media-bottom{vertical-align:bottom}.w3eden .media-heading{margin-top:0;margin-bottom:5px}.w3eden .media-list{padding-left:0;list-style:none}.w3eden .list-group{padding-left:0;margin-bottom:20px}.w3eden .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.w3eden .list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.w3eden .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.w3eden a.list-group-item{color:#555}.w3eden a.list-group-item .list-group-item-heading{color:#333}.w3eden a.list-group-item:focus,.w3eden a.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.w3eden .list-group-item.disabled,.w3eden .list-group-item.disabled:focus,.w3eden .list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.w3eden .list-group-item.disabled .list-group-item-heading,.w3eden .list-group-item.disabled:focus .list-group-item-heading,.w3eden .list-group-item.disabled:hover .list-group-item-heading{color:inherit}.w3eden .list-group-item.disabled .list-group-item-text,.w3eden .list-group-item.disabled:focus .list-group-item-text,.w3eden .list-group-item.disabled:hover .list-group-item-text{color:#777}.w3eden .list-group-item.active,.w3eden .list-group-item.active:focus,.w3eden .list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.w3eden .list-group-item.active .list-group-item-heading,.w3eden .list-group-item.active .list-group-item-heading>.small,.w3eden .list-group-item.active .list-group-item-heading>small,.w3eden .list-group-item.active:focus .list-group-item-heading,.w3eden .list-group-item.active:focus .list-group-item-heading>.small,.w3eden .list-group-item.active:focus .list-group-item-heading>small,.w3eden .list-group-item.active:hover .list-group-item-heading,.w3eden .list-group-item.active:hover .list-group-item-heading>.small,.w3eden .list-group-item.active:hover .list-group-item-heading>small{color:inherit}.w3eden .list-group-item.active .list-group-item-text,.w3eden .list-group-item.active:focus .list-group-item-text,.w3eden .list-group-item.active:hover .list-group-item-text{color:#c7ddef}.w3eden .list-group-item-success{color:#3c763d;background-color:#dff0d8}.w3eden a.list-group-item-success{color:#3c763d}.w3eden a.list-group-item-success .list-group-item-heading{color:inherit}.w3eden a.list-group-item-success:focus,.w3eden a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}.w3eden a.list-group-item-success.active,.w3eden a.list-group-item-success.active:focus,.w3eden a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.w3eden .list-group-item-info{color:#31708f;background-color:#d9edf7}.w3eden a.list-group-item-info{color:#31708f}.w3eden a.list-group-item-info .list-group-item-heading{color:inherit}.w3eden a.list-group-item-info:focus,.w3eden a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}.w3eden a.list-group-item-info.active,.w3eden a.list-group-item-info.active:focus,.w3eden a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.w3eden .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}.w3eden a.list-group-item-warning{color:#8a6d3b}.w3eden a.list-group-item-warning .list-group-item-heading{color:inherit}.w3eden a.list-group-item-warning:focus,.w3eden a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}.w3eden a.list-group-item-warning.active,.w3eden a.list-group-item-warning.active:focus,.w3eden a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.w3eden .list-group-item-danger{color:#a94442;background-color:#f2dede}.w3eden a.list-group-item-danger{color:#a94442}.w3eden a.list-group-item-danger .list-group-item-heading{color:inherit}.w3eden a.list-group-item-danger:focus,.w3eden a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}.w3eden a.list-group-item-danger.active,.w3eden a.list-group-item-danger.active:focus,.w3eden a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.w3eden .panel-heading>.dropdown .dropdown-toggle,.w3eden .panel-title>.small,.w3eden .panel-title>.small>a,.w3eden .panel-title>a,.w3eden .panel-title>small,.w3eden .panel-title>small>a{color:inherit}.w3eden .list-group-item-heading{margin-top:0;margin-bottom:5px}.w3eden .list-group-item-text{margin-bottom:0;line-height:1.3}.w3eden .panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.w3eden .panel-title,.w3eden .panel>.list-group,.w3eden .panel>.panel-collapse>.list-group,.w3eden .panel>.panel-collapse>.table,.w3eden .panel>.table,.w3eden .panel>.table-responsive>.table{margin-bottom:0}.w3eden .panel-body{padding:15px}.w3eden .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.w3eden .panel-title{margin-top:0;font-size:16px;color:inherit}.w3eden .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.w3eden .panel>.list-group .list-group-item,.w3eden .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.w3eden .panel-group .panel-heading,.w3eden .panel>.table-bordered>tbody>tr:first-child>td,.w3eden .panel>.table-bordered>tbody>tr:first-child>th,.w3eden .panel>.table-bordered>tbody>tr:last-child>td,.w3eden .panel>.table-bordered>tbody>tr:last-child>th,.w3eden .panel>.table-bordered>tfoot>tr:last-child>td,.w3eden .panel>.table-bordered>tfoot>tr:last-child>th,.w3eden .panel>.table-bordered>thead>tr:first-child>td,.w3eden .panel>.table-bordered>thead>tr:first-child>th,.w3eden .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.w3eden .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.w3eden .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.w3eden .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.w3eden .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.w3eden .panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.w3eden .panel>.list-group:first-child .list-group-item:first-child,.w3eden .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.w3eden .panel>.list-group:last-child .list-group-item:last-child,.w3eden .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.w3eden .list-group+.panel-footer,.w3eden .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.w3eden .panel>.panel-collapse>.table caption,.w3eden .panel>.table caption,.w3eden .panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.w3eden .panel>.table-responsive:first-child>.table:first-child,.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.w3eden .panel>.table:first-child,.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child,.w3eden .panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.w3eden .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.w3eden .panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.w3eden .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.w3eden .panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.w3eden .panel>.table-responsive:last-child>.table:last-child,.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.w3eden .panel>.table:last-child,.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child,.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.w3eden .panel>.panel-body+.table,.w3eden .panel>.panel-body+.table-responsive,.w3eden .panel>.table+.panel-body,.w3eden .panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.w3eden .panel>.table>tbody:first-child>tr:first-child td,.w3eden .panel>.table>tbody:first-child>tr:first-child th{border-top:0}.w3eden .panel>.table-bordered,.w3eden .panel>.table-responsive>.table-bordered{border:0}.w3eden .panel>.table-bordered>tbody>tr>td:first-child,.w3eden .panel>.table-bordered>tbody>tr>th:first-child,.w3eden .panel>.table-bordered>tfoot>tr>td:first-child,.w3eden .panel>.table-bordered>tfoot>tr>th:first-child,.w3eden .panel>.table-bordered>thead>tr>td:first-child,.w3eden .panel>.table-bordered>thead>tr>th:first-child,.w3eden .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.w3eden .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.w3eden .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.w3eden .panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.w3eden .panel>.table-bordered>tbody>tr>td:last-child,.w3eden .panel>.table-bordered>tbody>tr>th:last-child,.w3eden .panel>.table-bordered>tfoot>tr>td:last-child,.w3eden .panel>.table-bordered>tfoot>tr>th:last-child,.w3eden .panel>.table-bordered>thead>tr>td:last-child,.w3eden .panel>.table-bordered>thead>tr>th:last-child,.w3eden .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.w3eden .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.w3eden .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.w3eden .panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.w3eden .panel>.table-responsive{margin-bottom:0;border:0}.w3eden .panel-group{margin-bottom:20px}.w3eden .panel-group .panel{margin-bottom:0;border-radius:4px}.w3eden .panel-group .panel+.panel{margin-top:5px}.w3eden .panel-group .panel-heading+.panel-collapse>.list-group,.w3eden .panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.w3eden .panel-group .panel-footer{border-top:0}.w3eden .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.w3eden .panel-default{border-color:#ddd}.w3eden .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.w3eden .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.w3eden .panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.w3eden .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.w3eden .panel-primary{border-color:#337ab7}.w3eden .panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.w3eden .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.w3eden .panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.w3eden .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.w3eden .panel-success{border-color:#d6e9c6}.w3eden .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.w3eden .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.w3eden .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.w3eden .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.w3eden .panel-info{border-color:#bce8f1}.w3eden .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.w3eden .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.w3eden .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.w3eden .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.w3eden .panel-warning{border-color:#faebcc}.w3eden .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.w3eden .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.w3eden .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.w3eden .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.w3eden .panel-danger{border-color:#ebccd1}.w3eden .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.w3eden .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.w3eden .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.w3eden .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.w3eden .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.w3eden .embed-responsive .embed-responsive-item,.w3eden .embed-responsive embed,.w3eden .embed-responsive iframe,.w3eden .embed-responsive object,.w3eden .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.w3eden .embed-responsive-16by9{padding-bottom:56.25%}.w3eden .embed-responsive-4by3{padding-bottom:75%}.w3eden .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.w3eden .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.w3eden .well-lg{padding:24px;border-radius:6px}.w3eden .well-sm{padding:9px;border-radius:3px}.w3eden .close{float:right;font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.w3eden .popover,.w3eden .tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400}.w3eden .carousel-caption,.w3eden .carousel-control{text-shadow:0 1px 2px rgba(0,0,0,.6);text-align:center}.w3eden .close:focus,.w3eden .close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}.w3eden button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.w3eden .modal-open{overflow:hidden}.w3eden .modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.w3eden .modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.w3eden .modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.w3eden .modal-open .modal{overflow-x:hidden;overflow-y:auto}.w3eden .modal-dialog{position:relative;width:auto;margin:10px}.w3eden .modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.w3eden .modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.w3eden .modal-header .close{margin-top:-2px}.w3eden .modal-title{margin:0;line-height:1.42857143}.w3eden .modal-body{position:relative;padding:15px}.w3eden .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.w3eden .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.w3eden .modal-footer .btn-group .btn+.btn{margin-left:-1px}.w3eden .modal-footer .btn-block+.btn-block{margin-left:0}.w3eden .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.w3eden .modal-dialog{width:600px;margin:100px auto}.w3eden .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.w3eden .modal-sm{width:300px}}@media (min-width:992px){.w3eden .modal-lg{width:900px}}.w3eden .tooltip{position:absolute;z-index:1070;display:block;font-size:12px;line-height:1.4;filter:alpha(opacity=0);opacity:0}.w3eden .tooltip.in{filter:alpha(opacity=90);opacity:.9}.w3eden .tooltip.top{padding:5px 0;margin-top:-3px}.w3eden .tooltip.right{padding:0 5px;margin-left:3px}.w3eden .tooltip.bottom{padding:5px 0;margin-top:3px}.w3eden .tooltip.left{padding:0 5px;margin-left:-3px}.w3eden .tooltip-inner{max-width:200px;padding:6px 12px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:2px}.w3eden .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.w3eden .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.w3eden .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.w3eden .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.w3eden .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.w3eden .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.w3eden .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.w3eden .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.w3eden .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.w3eden .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-size:14px;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.w3eden .popover.top{margin-top:-10px}.w3eden .popover.right{margin-left:10px}.w3eden .popover.bottom{margin-top:10px}.w3eden .popover.left{margin-left:-10px}.w3eden .popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.w3eden .popover-content{padding:9px 14px}.w3eden .popover>.arrow,.w3eden .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.w3eden .popover>.arrow{border-width:11px}.w3eden .popover>.arrow:after{content:"";border-width:10px}.w3eden .popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.w3eden .popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.w3eden .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.w3eden .popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.w3eden .popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.w3eden .popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.w3eden .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.w3eden .popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.w3eden .carousel{position:relative}.w3eden .carousel-inner{position:relative;width:100%;overflow:hidden}.w3eden .carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.w3eden .carousel-inner>.item>a>img,.w3eden .carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.w3eden .carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.w3eden .carousel-inner>.item.active.right,.w3eden .carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.w3eden .carousel-inner>.item.active.left,.w3eden .carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.w3eden .carousel-inner>.item.active,.w3eden .carousel-inner>.item.next.left,.w3eden .carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.w3eden .carousel-inner>.active,.w3eden .carousel-inner>.next,.w3eden .carousel-inner>.prev{display:block}.w3eden .carousel-inner>.active{left:0}.w3eden .carousel-inner>.next,.w3eden .carousel-inner>.prev{position:absolute;top:0;width:100%}.w3eden .carousel-inner>.next{left:100%}.w3eden .carousel-inner>.prev{left:-100%}.w3eden .carousel-inner>.next.left,.w3eden .carousel-inner>.prev.right{left:0}.w3eden .carousel-inner>.active.left{left:-100%}.w3eden .carousel-inner>.active.right{left:100%}.w3eden .carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;filter:alpha(opacity=50);opacity:.5}.w3eden .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.w3eden .carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.w3eden .carousel-control:focus,.w3eden .carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.w3eden .carousel-control .glyphicon-chevron-left,.w3eden .carousel-control .glyphicon-chevron-right,.w3eden .carousel-control .icon-next,.w3eden .carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}.w3eden .carousel-control .glyphicon-chevron-left,.w3eden .carousel-control .icon-prev{left:50%;margin-left:-10px}.w3eden .carousel-control .glyphicon-chevron-right,.w3eden .carousel-control .icon-next{right:50%;margin-right:-10px}.w3eden .carousel-control .icon-next,.w3eden .carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.w3eden .carousel-control .icon-prev:before{content:'\2039'}.w3eden .carousel-control .icon-next:before{content:'\203a'}.w3eden .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.w3eden .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.w3eden .carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.w3eden .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff}.w3eden .carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.w3eden .carousel-control .glyphicon-chevron-left,.w3eden .carousel-control .glyphicon-chevron-right,.w3eden .carousel-control .icon-next,.w3eden .carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.w3eden .carousel-control .glyphicon-chevron-left,.w3eden .carousel-control .icon-prev{margin-left:-15px}.w3eden .carousel-control .glyphicon-chevron-right,.w3eden .carousel-control .icon-next{margin-right:-15px}.w3eden .carousel-caption{right:20%;left:20%;padding-bottom:30px}.w3eden .carousel-indicators{bottom:20px}}.w3eden .btn-group-vertical>.btn-group:after,.w3eden .btn-group-vertical>.btn-group:before,.w3eden .btn-toolbar:after,.w3eden .btn-toolbar:before,.w3eden .clearfix:after,.w3eden .clearfix:before,.w3eden .container-fluid:after,.w3eden .container-fluid:before,.w3eden .container:after,.w3eden .container:before,.w3eden .dl-horizontal dd:after,.w3eden .dl-horizontal dd:before,.w3eden .form-horizontal .form-group:after,.w3eden .form-horizontal .form-group:before,.w3eden .modal-footer:after,.w3eden .modal-footer:before,.w3eden .nav:after,.w3eden .nav:before,.w3eden .navbar-collapse:after,.w3eden .navbar-collapse:before,.w3eden .navbar-header:after,.w3eden .navbar-header:before,.w3eden .navbar:after,.w3eden .navbar:before,.w3eden .pager:after,.w3eden .pager:before,.w3eden .panel-body:after,.w3eden .panel-body:before,.w3eden .row:after,.w3eden .row:before{display:table;content:" "}.w3eden .btn-group-vertical>.btn-group:after,.w3eden .btn-toolbar:after,.w3eden .clearfix:after,.w3eden .container-fluid:after,.w3eden .container:after,.w3eden .dl-horizontal dd:after,.w3eden .form-horizontal .form-group:after,.w3eden .modal-footer:after,.w3eden .nav:after,.w3eden .navbar-collapse:after,.w3eden .navbar-header:after,.w3eden .navbar:after,.w3eden .pager:after,.w3eden .panel-body:after,.w3eden .row:after{clear:both}.w3eden .center-block{display:block;margin-right:auto;margin-left:auto}.w3eden .pull-right{float:right!important}.w3eden .pull-left{float:left!important}.w3eden .hide{display:none!important}.w3eden .show{display:block!important}.w3eden .hidden,.w3eden .visible-lg,.w3eden .visible-lg-block,.w3eden .visible-lg-inline,.w3eden .visible-lg-inline-block,.w3eden .visible-md,.w3eden .visible-md-block,.w3eden .visible-md-inline,.w3eden .visible-md-inline-block,.w3eden .visible-sm,.w3eden .visible-sm-block,.w3eden .visible-sm-inline,.w3eden .visible-sm-inline-block,.w3eden .visible-xs,.w3eden .visible-xs-block,.w3eden .visible-xs-inline,.w3eden .visible-xs-inline-block{display:none!important}.w3eden .invisible{visibility:hidden}.w3eden .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w3eden .affix{position:fixed}@-ms-viewport{width:device-width}@media (max-width:767px){.w3eden .visible-xs{display:block!important}.w3eden table.visible-xs{display:table}.w3eden tr.visible-xs{display:table-row!important}.w3eden td.visible-xs,.w3eden th.visible-xs{display:table-cell!important}.w3eden .visible-xs-block{display:block!important}.w3eden .visible-xs-inline{display:inline!important}.w3eden .visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.w3eden .visible-sm{display:block!important}.w3eden table.visible-sm{display:table}.w3eden tr.visible-sm{display:table-row!important}.w3eden td.visible-sm,.w3eden th.visible-sm{display:table-cell!important}.w3eden .visible-sm-block{display:block!important}.w3eden .visible-sm-inline{display:inline!important}.w3eden .visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.w3eden .visible-md{display:block!important}.w3eden table.visible-md{display:table}.w3eden tr.visible-md{display:table-row!important}.w3eden td.visible-md,.w3eden th.visible-md{display:table-cell!important}.w3eden .visible-md-block{display:block!important}.w3eden .visible-md-inline{display:inline!important}.w3eden .visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.w3eden .visible-lg{display:block!important}.w3eden table.visible-lg{display:table}.w3eden tr.visible-lg{display:table-row!important}.w3eden td.visible-lg,.w3eden th.visible-lg{display:table-cell!important}.w3eden .visible-lg-block{display:block!important}.w3eden .visible-lg-inline{display:inline!important}.w3eden .visible-lg-inline-block{display:inline-block!important}.w3eden .hidden-lg{display:none!important}}@media (max-width:767px){.w3eden .hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.w3eden .hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.w3eden .hidden-md{display:none!important}}.w3eden .visible-print{display:none!important}@media print{.w3eden .visible-print{display:block!important}.w3eden table.visible-print{display:table}.w3eden tr.visible-print{display:table-row!important}.w3eden td.visible-print,.w3eden th.visible-print{display:table-cell!important}}.w3eden .visible-print-block{display:none!important}@media print{.w3eden .visible-print-block{display:block!important}}.w3eden .visible-print-inline{display:none!important}@media print{.w3eden .visible-print-inline{display:inline!important}}.w3eden .visible-print-inline-block{display:none!important}@media print{.w3eden .visible-print-inline-block{display:inline-block!important}.w3eden .hidden-print{display:none!important}}.w3eden .btn{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.05)));background-image:-webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.05));background-image:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.05));border-radius:.2em}.w3eden .panel th{background-color:#eee!important;border-bottom-width:1px!important}.w3eden .nav-pills a{border-radius:.2em;box-shadow:none!important;font-size:9pt!important}.w3eden .panel-heading{font-weight:700}.w3eden blockquote.alert{font-size:14px;font-weight:300;font-style:italic;border-radius:2px!important}.w3eden .btn-group .btn:first-child:not(:last-child),.w3eden .input-group .form-control:first-child:not(:last-child){border-radius:.2em 0 0 .2em}.w3eden .btn-group .btn:last-child:not(:first-child){border-radius:0 .2em .2em 0}.w3eden .btn span.left-icon{float:left;background:rgba(0,0,0,.16);border-bottom-left-radius:3px;border-right:1px solid rgba(0,0,0,.12);border-top-left-radius:3px;margin-left:-17px;margin-top:-8.5px;padding:8.5px 12px;position:relative;width:40px}
 
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}}
assets/bootstrap/img/glyphicons-halflings-white.png DELETED
Binary file
assets/bootstrap/img/glyphicons-halflings.png DELETED
Binary file
assets/bootstrap/js/bootstrap.bundle.min.js ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ /*!
2
+ * Bootstrap v4.4.1 (https://getbootstrap.com/)
3
+ * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */
6
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("jquery")):"function"==typeof define&&define.amd?define(["exports","jquery"],t):t((e=e||self).bootstrap={},e.jQuery)}(this,function(e,p){"use strict";function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function s(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}function t(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),n.push.apply(n,i)}return n}function l(o){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?t(Object(r),!0).forEach(function(e){var t,n,i;t=o,i=r[n=e],n in t?Object.defineProperty(t,n,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[n]=i}):Object.getOwnPropertyDescriptors?Object.defineProperties(o,Object.getOwnPropertyDescriptors(r)):t(Object(r)).forEach(function(e){Object.defineProperty(o,e,Object.getOwnPropertyDescriptor(r,e))})}return o}p=p&&p.hasOwnProperty("default")?p.default:p;var n="transitionend";function o(e){var t=this,n=!1;return p(this).one(m.TRANSITION_END,function(){n=!0}),setTimeout(function(){n||m.triggerTransitionEnd(t)},e),this}var m={TRANSITION_END:"bsTransitionEnd",getUID:function(e){for(;e+=~~(1e6*Math.random()),document.getElementById(e););return e},getSelectorFromElement:function(e){var t=e.getAttribute("data-target");if(!t||"#"===t){var n=e.getAttribute("href");t=n&&"#"!==n?n.trim():""}try{return document.querySelector(t)?t:null}catch(e){return null}},getTransitionDurationFromElement:function(e){if(!e)return 0;var t=p(e).css("transition-duration"),n=p(e).css("transition-delay"),i=parseFloat(t),o=parseFloat(n);return i||o?(t=t.split(",")[0],n=n.split(",")[0],1e3*(parseFloat(t)+parseFloat(n))):0},reflow:function(e){return e.offsetHeight},triggerTransitionEnd:function(e){p(e).trigger(n)},supportsTransitionEnd:function(){return Boolean(n)},isElement:function(e){return(e[0]||e).nodeType},typeCheckConfig:function(e,t,n){for(var i in n)if(Object.prototype.hasOwnProperty.call(n,i)){var o=n[i],r=t[i],s=r&&m.isElement(r)?"element":(a=r,{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase());if(!new RegExp(o).test(s))throw new Error(e.toUpperCase()+': Option "'+i+'" provided type "'+s+'" but expected type "'+o+'".')}var a},findShadowRoot:function(e){if(!document.documentElement.attachShadow)return null;if("function"!=typeof e.getRootNode)return e instanceof ShadowRoot?e:e.parentNode?m.findShadowRoot(e.parentNode):null;var t=e.getRootNode();return t instanceof ShadowRoot?t:null},jQueryDetection:function(){if("undefined"==typeof p)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var e=p.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1===e[0]&&9===e[1]&&e[2]<1||4<=e[0])throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};m.jQueryDetection(),p.fn.emulateTransitionEnd=o,p.event.special[m.TRANSITION_END]={bindType:n,delegateType:n,handle:function(e){if(p(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}};var r="alert",a="bs.alert",c="."+a,h=p.fn[r],u={CLOSE:"close"+c,CLOSED:"closed"+c,CLICK_DATA_API:"click"+c+".data-api"},f="alert",d="fade",g="show",_=function(){function i(e){this._element=e}var e=i.prototype;return e.close=function(e){var t=this._element;e&&(t=this._getRootElement(e)),this._triggerCloseEvent(t).isDefaultPrevented()||this._removeElement(t)},e.dispose=function(){p.removeData(this._element,a),this._element=null},e._getRootElement=function(e){var t=m.getSelectorFromElement(e),n=!1;return t&&(n=document.querySelector(t)),n=n||p(e).closest("."+f)[0]},e._triggerCloseEvent=function(e){var t=p.Event(u.CLOSE);return p(e).trigger(t),t},e._removeElement=function(t){var n=this;if(p(t).removeClass(g),p(t).hasClass(d)){var e=m.getTransitionDurationFromElement(t);p(t).one(m.TRANSITION_END,function(e){return n._destroyElement(t,e)}).emulateTransitionEnd(e)}else this._destroyElement(t)},e._destroyElement=function(e){p(e).detach().trigger(u.CLOSED).remove()},i._jQueryInterface=function(n){return this.each(function(){var e=p(this),t=e.data(a);t||(t=new i(this),e.data(a,t)),"close"===n&&t[n](this)})},i._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}}]),i}();p(document).on(u.CLICK_DATA_API,'[data-dismiss="alert"]',_._handleDismiss(new _)),p.fn[r]=_._jQueryInterface,p.fn[r].Constructor=_,p.fn[r].noConflict=function(){return p.fn[r]=h,_._jQueryInterface};var v="button",y="bs.button",E="."+y,b=".data-api",w=p.fn[v],T="active",C="btn",S="focus",D='[data-toggle^="button"]',I='[data-toggle="buttons"]',A='[data-toggle="button"]',O='[data-toggle="buttons"] .btn',N='input:not([type="hidden"])',k=".active",L=".btn",P={CLICK_DATA_API:"click"+E+b,FOCUS_BLUR_DATA_API:"focus"+E+b+" blur"+E+b,LOAD_DATA_API:"load"+E+b},x=function(){function n(e){this._element=e}var e=n.prototype;return e.toggle=function(){var e=!0,t=!0,n=p(this._element).closest(I)[0];if(n){var i=this._element.querySelector(N);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(T))e=!1;else{var o=n.querySelector(k);o&&p(o).removeClass(T)}else"checkbox"===i.type?"LABEL"===this._element.tagName&&i.checked===this._element.classList.contains(T)&&(e=!1):e=!1;e&&(i.checked=!this._element.classList.contains(T),p(i).trigger("change")),i.focus(),t=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(t&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(T)),e&&p(this._element).toggleClass(T))},e.dispose=function(){p.removeData(this._element,y),this._element=null},n._jQueryInterface=function(t){return this.each(function(){var e=p(this).data(y);e||(e=new n(this),p(this).data(y,e)),"toggle"===t&&e[t]()})},s(n,null,[{key:"VERSION",get:function(){return"4.4.1"}}]),n}();p(document).on(P.CLICK_DATA_API,D,function(e){var t=e.target;if(p(t).hasClass(C)||(t=p(t).closest(L)[0]),!t||t.hasAttribute("disabled")||t.classList.contains("disabled"))e.preventDefault();else{var n=t.querySelector(N);if(n&&(n.hasAttribute("disabled")||n.classList.contains("disabled")))return void e.preventDefault();x._jQueryInterface.call(p(t),"toggle")}}).on(P.FOCUS_BLUR_DATA_API,D,function(e){var t=p(e.target).closest(L)[0];p(t).toggleClass(S,/^focus(in)?$/.test(e.type))}),p(window).on(P.LOAD_DATA_API,function(){for(var e=[].slice.call(document.querySelectorAll(O)),t=0,n=e.length;t<n;t++){var i=e[t],o=i.querySelector(N);o.checked||o.hasAttribute("checked")?i.classList.add(T):i.classList.remove(T)}for(var r=0,s=(e=[].slice.call(document.querySelectorAll(A))).length;r<s;r++){var a=e[r];"true"===a.getAttribute("aria-pressed")?a.classList.add(T):a.classList.remove(T)}}),p.fn[v]=x._jQueryInterface,p.fn[v].Constructor=x,p.fn[v].noConflict=function(){return p.fn[v]=w,x._jQueryInterface};var j="carousel",H="bs.carousel",R="."+H,F=".data-api",M=p.fn[j],W={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},U={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},B="next",q="prev",K="left",Q="right",V={SLIDE:"slide"+R,SLID:"slid"+R,KEYDOWN:"keydown"+R,MOUSEENTER:"mouseenter"+R,MOUSELEAVE:"mouseleave"+R,TOUCHSTART:"touchstart"+R,TOUCHMOVE:"touchmove"+R,TOUCHEND:"touchend"+R,POINTERDOWN:"pointerdown"+R,POINTERUP:"pointerup"+R,DRAG_START:"dragstart"+R,LOAD_DATA_API:"load"+R+F,CLICK_DATA_API:"click"+R+F},Y="carousel",z="active",X="slide",G="carousel-item-right",$="carousel-item-left",J="carousel-item-next",Z="carousel-item-prev",ee="pointer-event",te=".active",ne=".active.carousel-item",ie=".carousel-item",oe=".carousel-item img",re=".carousel-item-next, .carousel-item-prev",se=".carousel-indicators",ae="[data-slide], [data-slide-to]",le='[data-ride="carousel"]',ce={TOUCH:"touch",PEN:"pen"},he=function(){function r(e,t){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(t),this._element=e,this._indicatorsElement=this._element.querySelector(se),this._touchSupported="ontouchstart"in document.documentElement||0<navigator.maxTouchPoints,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=r.prototype;return e.next=function(){this._isSliding||this._slide(B)},e.nextWhenVisible=function(){!document.hidden&&p(this._element).is(":visible")&&"hidden"!==p(this._element).css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide(q)},e.pause=function(e){e||(this._isPaused=!0),this._element.querySelector(re)&&(m.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(e){e||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(e){var t=this;this._activeElement=this._element.querySelector(ne);var n=this._getItemIndex(this._activeElement);if(!(e>this._items.length-1||e<0))if(this._isSliding)p(this._element).one(V.SLID,function(){return t.to(e)});else{if(n===e)return this.pause(),void this.cycle();var i=n<e?B:q;this._slide(i,this._items[e])}},e.dispose=function(){p(this._element).off(R),p.removeData(this._element,H),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(e){return e=l({},W,{},e),m.typeCheckConfig(j,e,U),e},e._handleSwipe=function(){var e=Math.abs(this.touchDeltaX);if(!(e<=40)){var t=e/this.touchDeltaX;(this.touchDeltaX=0)<t&&this.prev(),t<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&p(this._element).on(V.KEYDOWN,function(e){return t._keydown(e)}),"hover"===this._config.pause&&p(this._element).on(V.MOUSEENTER,function(e){return t.pause(e)}).on(V.MOUSELEAVE,function(e){return t.cycle(e)}),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var n=function(e){t._pointerEvent&&ce[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},i=function(e){t._pointerEvent&&ce[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout(function(e){return t.cycle(e)},500+t._config.interval))};p(this._element.querySelectorAll(oe)).on(V.DRAG_START,function(e){return e.preventDefault()}),this._pointerEvent?(p(this._element).on(V.POINTERDOWN,function(e){return n(e)}),p(this._element).on(V.POINTERUP,function(e){return i(e)}),this._element.classList.add(ee)):(p(this._element).on(V.TOUCHSTART,function(e){return n(e)}),p(this._element).on(V.TOUCHMOVE,function(e){return function(e){e.originalEvent.touches&&1<e.originalEvent.touches.length?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX}(e)}),p(this._element).on(V.TOUCHEND,function(e){return i(e)}))}},e._keydown=function(e){if(!/input|textarea/i.test(e.target.tagName))switch(e.which){case 37:e.preventDefault(),this.prev();break;case 39:e.preventDefault(),this.next()}},e._getItemIndex=function(e){return this._items=e&&e.parentNode?[].slice.call(e.parentNode.querySelectorAll(ie)):[],this._items.indexOf(e)},e._getItemByDirection=function(e,t){var n=e===B,i=e===q,o=this._getItemIndex(t),r=this._items.length-1;if((i&&0===o||n&&o===r)&&!this._config.wrap)return t;var s=(o+(e===q?-1:1))%this._items.length;return-1==s?this._items[this._items.length-1]:this._items[s]},e._triggerSlideEvent=function(e,t){var n=this._getItemIndex(e),i=this._getItemIndex(this._element.querySelector(ne)),o=p.Event(V.SLIDE,{relatedTarget:e,direction:t,from:i,to:n});return p(this._element).trigger(o),o},e._setActiveIndicatorElement=function(e){if(this._indicatorsElement){var t=[].slice.call(this._indicatorsElement.querySelectorAll(te));p(t).removeClass(z);var n=this._indicatorsElement.children[this._getItemIndex(e)];n&&p(n).addClass(z)}},e._slide=function(e,t){var n,i,o,r=this,s=this._element.querySelector(ne),a=this._getItemIndex(s),l=t||s&&this._getItemByDirection(e,s),c=this._getItemIndex(l),h=Boolean(this._interval);if(o=e===B?(n=$,i=J,K):(n=G,i=Z,Q),l&&p(l).hasClass(z))this._isSliding=!1;else if(!this._triggerSlideEvent(l,o).isDefaultPrevented()&&s&&l){this._isSliding=!0,h&&this.pause(),this._setActiveIndicatorElement(l);var u=p.Event(V.SLID,{relatedTarget:l,direction:o,from:a,to:c});if(p(this._element).hasClass(X)){p(l).addClass(i),m.reflow(l),p(s).addClass(n),p(l).addClass(n);var f=parseInt(l.getAttribute("data-interval"),10);f?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=f):this._config.interval=this._config.defaultInterval||this._config.interval;var d=m.getTransitionDurationFromElement(s);p(s).one(m.TRANSITION_END,function(){p(l).removeClass(n+" "+i).addClass(z),p(s).removeClass(z+" "+i+" "+n),r._isSliding=!1,setTimeout(function(){return p(r._element).trigger(u)},0)}).emulateTransitionEnd(d)}else p(s).removeClass(z),p(l).addClass(z),this._isSliding=!1,p(this._element).trigger(u);h&&this.cycle()}},r._jQueryInterface=function(i){return this.each(function(){var e=p(this).data(H),t=l({},W,{},p(this).data());"object"==typeof i&&(t=l({},t,{},i));var n="string"==typeof i?i:t.slide;if(e||(e=new r(this,t),p(this).data(H,e)),"number"==typeof i)e.to(i);else if("string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}else t.interval&&t.ride&&(e.pause(),e.cycle())})},r._dataApiClickHandler=function(e){var t=m.getSelectorFromElement(this);if(t){var n=p(t)[0];if(n&&p(n).hasClass(Y)){var i=l({},p(n).data(),{},p(this).data()),o=this.getAttribute("data-slide-to");o&&(i.interval=!1),r._jQueryInterface.call(p(n),i),o&&p(n).data(H).to(o),e.preventDefault()}}},s(r,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return W}}]),r}();p(document).on(V.CLICK_DATA_API,ae,he._dataApiClickHandler),p(window).on(V.LOAD_DATA_API,function(){for(var e=[].slice.call(document.querySelectorAll(le)),t=0,n=e.length;t<n;t++){var i=p(e[t]);he._jQueryInterface.call(i,i.data())}}),p.fn[j]=he._jQueryInterface,p.fn[j].Constructor=he,p.fn[j].noConflict=function(){return p.fn[j]=M,he._jQueryInterface};var ue="collapse",fe="bs.collapse",de="."+fe,pe=p.fn[ue],me={toggle:!0,parent:""},ge={toggle:"boolean",parent:"(string|element)"},_e={SHOW:"show"+de,SHOWN:"shown"+de,HIDE:"hide"+de,HIDDEN:"hidden"+de,CLICK_DATA_API:"click"+de+".data-api"},ve="show",ye="collapse",Ee="collapsing",be="collapsed",we="width",Te="height",Ce=".show, .collapsing",Se='[data-toggle="collapse"]',De=function(){function a(t,e){this._isTransitioning=!1,this._element=t,this._config=this._getConfig(e),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+t.id+'"],[data-toggle="collapse"][data-target="#'+t.id+'"]'));for(var n=[].slice.call(document.querySelectorAll(Se)),i=0,o=n.length;i<o;i++){var r=n[i],s=m.getSelectorFromElement(r),a=[].slice.call(document.querySelectorAll(s)).filter(function(e){return e===t});null!==s&&0<a.length&&(this._selector=s,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=a.prototype;return e.toggle=function(){p(this._element).hasClass(ve)?this.hide():this.show()},e.show=function(){var e,t,n=this;if(!this._isTransitioning&&!p(this._element).hasClass(ve)&&(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(Ce)).filter(function(e){return"string"==typeof n._config.parent?e.getAttribute("data-parent")===n._config.parent:e.classList.contains(ye)})).length&&(e=null),!(e&&(t=p(e).not(this._selector).data(fe))&&t._isTransitioning))){var i=p.Event(_e.SHOW);if(p(this._element).trigger(i),!i.isDefaultPrevented()){e&&(a._jQueryInterface.call(p(e).not(this._selector),"hide"),t||p(e).data(fe,null));var o=this._getDimension();p(this._element).removeClass(ye).addClass(Ee),this._element.style[o]=0,this._triggerArray.length&&p(this._triggerArray).removeClass(be).attr("aria-expanded",!0),this.setTransitioning(!0);var r="scroll"+(o[0].toUpperCase()+o.slice(1)),s=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,function(){p(n._element).removeClass(Ee).addClass(ye).addClass(ve),n._element.style[o]="",n.setTransitioning(!1),p(n._element).trigger(_e.SHOWN)}).emulateTransitionEnd(s),this._element.style[o]=this._element[r]+"px"}}},e.hide=function(){var e=this;if(!this._isTransitioning&&p(this._element).hasClass(ve)){var t=p.Event(_e.HIDE);if(p(this._element).trigger(t),!t.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",m.reflow(this._element),p(this._element).addClass(Ee).removeClass(ye).removeClass(ve);var i=this._triggerArray.length;if(0<i)for(var o=0;o<i;o++){var r=this._triggerArray[o],s=m.getSelectorFromElement(r);if(null!==s)p([].slice.call(document.querySelectorAll(s))).hasClass(ve)||p(r).addClass(be).attr("aria-expanded",!1)}this.setTransitioning(!0);this._element.style[n]="";var a=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,function(){e.setTransitioning(!1),p(e._element).removeClass(Ee).addClass(ye).trigger(_e.HIDDEN)}).emulateTransitionEnd(a)}}},e.setTransitioning=function(e){this._isTransitioning=e},e.dispose=function(){p.removeData(this._element,fe),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},e._getConfig=function(e){return(e=l({},me,{},e)).toggle=Boolean(e.toggle),m.typeCheckConfig(ue,e,ge),e},e._getDimension=function(){return p(this._element).hasClass(we)?we:Te},e._getParent=function(){var e,n=this;m.isElement(this._config.parent)?(e=this._config.parent,"undefined"!=typeof this._config.parent.jquery&&(e=this._config.parent[0])):e=document.querySelector(this._config.parent);var t='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',i=[].slice.call(e.querySelectorAll(t));return p(i).each(function(e,t){n._addAriaAndCollapsedClass(a._getTargetFromElement(t),[t])}),e},e._addAriaAndCollapsedClass=function(e,t){var n=p(e).hasClass(ve);t.length&&p(t).toggleClass(be,!n).attr("aria-expanded",n)},a._getTargetFromElement=function(e){var t=m.getSelectorFromElement(e);return t?document.querySelector(t):null},a._jQueryInterface=function(i){return this.each(function(){var e=p(this),t=e.data(fe),n=l({},me,{},e.data(),{},"object"==typeof i&&i?i:{});if(!t&&n.toggle&&/show|hide/.test(i)&&(n.toggle=!1),t||(t=new a(this,n),e.data(fe,t)),"string"==typeof i){if("undefined"==typeof t[i])throw new TypeError('No method named "'+i+'"');t[i]()}})},s(a,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return me}}]),a}();p(document).on(_e.CLICK_DATA_API,Se,function(e){"A"===e.currentTarget.tagName&&e.preventDefault();var n=p(this),t=m.getSelectorFromElement(this),i=[].slice.call(document.querySelectorAll(t));p(i).each(function(){var e=p(this),t=e.data(fe)?"toggle":n.data();De._jQueryInterface.call(e,t)})}),p.fn[ue]=De._jQueryInterface,p.fn[ue].Constructor=De,p.fn[ue].noConflict=function(){return p.fn[ue]=pe,De._jQueryInterface};var Ie="undefined"!=typeof window&&"undefined"!=typeof document&&"undefined"!=typeof navigator,Ae=function(){for(var e=["Edge","Trident","Firefox"],t=0;t<e.length;t+=1)if(Ie&&0<=navigator.userAgent.indexOf(e[t]))return 1;return 0}();var Oe=Ie&&window.Promise?function(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve().then(function(){t=!1,e()}))}}:function(e){var t=!1;return function(){t||(t=!0,setTimeout(function(){t=!1,e()},Ae))}};function Ne(e){return e&&"[object Function]"==={}.toString.call(e)}function ke(e,t){if(1!==e.nodeType)return[];var n=e.ownerDocument.defaultView.getComputedStyle(e,null);return t?n[t]:n}function Le(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}function Pe(e){if(!e)return document.body;switch(e.nodeName){case"HTML":case"BODY":return e.ownerDocument.body;case"#document":return e.body}var t=ke(e),n=t.overflow,i=t.overflowX,o=t.overflowY;return/(auto|scroll|overlay)/.test(n+o+i)?e:Pe(Le(e))}function xe(e){return e&&e.referenceNode?e.referenceNode:e}var je=Ie&&!(!window.MSInputMethodContext||!document.documentMode),He=Ie&&/MSIE 10/.test(navigator.userAgent);function Re(e){return 11===e?je:10===e?He:je||He}function Fe(e){if(!e)return document.documentElement;for(var t=Re(10)?document.body:null,n=e.offsetParent||null;n===t&&e.nextElementSibling;)n=(e=e.nextElementSibling).offsetParent;var i=n&&n.nodeName;return i&&"BODY"!==i&&"HTML"!==i?-1!==["TH","TD","TABLE"].indexOf(n.nodeName)&&"static"===ke(n,"position")?Fe(n):n:e?e.ownerDocument.documentElement:document.documentElement}function Me(e){return null!==e.parentNode?Me(e.parentNode):e}function We(e,t){if(!(e&&e.nodeType&&t&&t.nodeType))return document.documentElement;var n=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,i=n?e:t,o=n?t:e,r=document.createRange();r.setStart(i,0),r.setEnd(o,0);var s=r.commonAncestorContainer;if(e!==s&&t!==s||i.contains(o))return function(e){var t=e.nodeName;return"BODY"!==t&&("HTML"===t||Fe(e.firstElementChild)===e)}(s)?s:Fe(s);var a=Me(e);return a.host?We(a.host,t):We(e,Me(t).host)}function Ue(e,t){var n="top"===(1<arguments.length&&void 0!==t?t:"top")?"scrollTop":"scrollLeft",i=e.nodeName;if("BODY"!==i&&"HTML"!==i)return e[n];var o=e.ownerDocument.documentElement;return(e.ownerDocument.scrollingElement||o)[n]}function Be(e,t){var n="x"===t?"Left":"Top",i="Left"==n?"Right":"Bottom";return parseFloat(e["border"+n+"Width"],10)+parseFloat(e["border"+i+"Width"],10)}function qe(e,t,n,i){return Math.max(t["offset"+e],t["scroll"+e],n["client"+e],n["offset"+e],n["scroll"+e],Re(10)?parseInt(n["offset"+e])+parseInt(i["margin"+("Height"===e?"Top":"Left")])+parseInt(i["margin"+("Height"===e?"Bottom":"Right")]):0)}function Ke(e){var t=e.body,n=e.documentElement,i=Re(10)&&getComputedStyle(n);return{height:qe("Height",t,n,i),width:qe("Width",t,n,i)}}var Qe=function(e,t,n){return t&&Ve(e.prototype,t),n&&Ve(e,n),e};function Ve(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function Ye(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ze=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e};function Xe(e){return ze({},e,{right:e.left+e.width,bottom:e.top+e.height})}function Ge(e){var t={};try{if(Re(10)){t=e.getBoundingClientRect();var n=Ue(e,"top"),i=Ue(e,"left");t.top+=n,t.left+=i,t.bottom+=n,t.right+=i}else t=e.getBoundingClientRect()}catch(e){}var o={left:t.left,top:t.top,width:t.right-t.left,height:t.bottom-t.top},r="HTML"===e.nodeName?Ke(e.ownerDocument):{},s=r.width||e.clientWidth||o.width,a=r.height||e.clientHeight||o.height,l=e.offsetWidth-s,c=e.offsetHeight-a;if(l||c){var h=ke(e);l-=Be(h,"x"),c-=Be(h,"y"),o.width-=l,o.height-=c}return Xe(o)}function $e(e,t,n){var i=2<arguments.length&&void 0!==n&&n,o=Re(10),r="HTML"===t.nodeName,s=Ge(e),a=Ge(t),l=Pe(e),c=ke(t),h=parseFloat(c.borderTopWidth,10),u=parseFloat(c.borderLeftWidth,10);i&&r&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var f=Xe({top:s.top-a.top-h,left:s.left-a.left-u,width:s.width,height:s.height});if(f.marginTop=0,f.marginLeft=0,!o&&r){var d=parseFloat(c.marginTop,10),p=parseFloat(c.marginLeft,10);f.top-=h-d,f.bottom-=h-d,f.left-=u-p,f.right-=u-p,f.marginTop=d,f.marginLeft=p}return(o&&!i?t.contains(l):t===l&&"BODY"!==l.nodeName)&&(f=function(e,t,n){var i=2<arguments.length&&void 0!==n&&n,o=Ue(t,"top"),r=Ue(t,"left"),s=i?-1:1;return e.top+=o*s,e.bottom+=o*s,e.left+=r*s,e.right+=r*s,e}(f,t)),f}function Je(e){if(!e||!e.parentElement||Re())return document.documentElement;for(var t=e.parentElement;t&&"none"===ke(t,"transform");)t=t.parentElement;return t||document.documentElement}function Ze(e,t,n,i,o){var r=4<arguments.length&&void 0!==o&&o,s={top:0,left:0},a=r?Je(e):We(e,xe(t));if("viewport"===i)s=function(e,t){var n=1<arguments.length&&void 0!==t&&t,i=e.ownerDocument.documentElement,o=$e(e,i),r=Math.max(i.clientWidth,window.innerWidth||0),s=Math.max(i.clientHeight,window.innerHeight||0),a=n?0:Ue(i),l=n?0:Ue(i,"left");return Xe({top:a-o.top+o.marginTop,left:l-o.left+o.marginLeft,width:r,height:s})}(a,r);else{var l=void 0;"scrollParent"===i?"BODY"===(l=Pe(Le(t))).nodeName&&(l=e.ownerDocument.documentElement):l="window"===i?e.ownerDocument.documentElement:i;var c=$e(l,a,r);if("HTML"!==l.nodeName||function e(t){var n=t.nodeName;if("BODY"===n||"HTML"===n)return!1;if("fixed"===ke(t,"position"))return!0;var i=Le(t);return!!i&&e(i)}(a))s=c;else{var h=Ke(e.ownerDocument),u=h.height,f=h.width;s.top+=c.top-c.marginTop,s.bottom=u+c.top,s.left+=c.left-c.marginLeft,s.right=f+c.left}}var d="number"==typeof(n=n||0);return s.left+=d?n:n.left||0,s.top+=d?n:n.top||0,s.right-=d?n:n.right||0,s.bottom-=d?n:n.bottom||0,s}function et(e,t,i,n,o,r){var s=5<arguments.length&&void 0!==r?r:0;if(-1===e.indexOf("auto"))return e;var a=Ze(i,n,s,o),l={top:{width:a.width,height:t.top-a.top},right:{width:a.right-t.right,height:a.height},bottom:{width:a.width,height:a.bottom-t.bottom},left:{width:t.left-a.left,height:a.height}},c=Object.keys(l).map(function(e){return ze({key:e},l[e],{area:function(e){return e.width*e.height}(l[e])})}).sort(function(e,t){return t.area-e.area}),h=c.filter(function(e){var t=e.width,n=e.height;return t>=i.clientWidth&&n>=i.clientHeight}),u=0<h.length?h[0].key:c[0].key,f=e.split("-")[1];return u+(f?"-"+f:"")}function tt(e,t,n,i){var o=3<arguments.length&&void 0!==i?i:null;return $e(n,o?Je(t):We(t,xe(n)),o)}function nt(e){var t=e.ownerDocument.defaultView.getComputedStyle(e),n=parseFloat(t.marginTop||0)+parseFloat(t.marginBottom||0),i=parseFloat(t.marginLeft||0)+parseFloat(t.marginRight||0);return{width:e.offsetWidth+i,height:e.offsetHeight+n}}function it(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"};return e.replace(/left|right|bottom|top/g,function(e){return t[e]})}function ot(e,t,n){n=n.split("-")[0];var i=nt(e),o={width:i.width,height:i.height},r=-1!==["right","left"].indexOf(n),s=r?"top":"left",a=r?"left":"top",l=r?"height":"width",c=r?"width":"height";return o[s]=t[s]+t[l]/2-i[l]/2,o[a]=n===a?t[a]-i[c]:t[it(a)],o}function rt(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}function st(e,n,t){return(void 0===t?e:e.slice(0,function(e,t,n){if(Array.prototype.findIndex)return e.findIndex(function(e){return e[t]===n});var i=rt(e,function(e){return e[t]===n});return e.indexOf(i)}(e,"name",t))).forEach(function(e){e.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var t=e.function||e.fn;e.enabled&&Ne(t)&&(n.offsets.popper=Xe(n.offsets.popper),n.offsets.reference=Xe(n.offsets.reference),n=t(n,e))}),n}function at(e,n){return e.some(function(e){var t=e.name;return e.enabled&&t===n})}function lt(e){for(var t=[!1,"ms","Webkit","Moz","O"],n=e.charAt(0).toUpperCase()+e.slice(1),i=0;i<t.length;i++){var o=t[i],r=o?""+o+n:e;if("undefined"!=typeof document.body.style[r])return r}return null}function ct(e){var t=e.ownerDocument;return t?t.defaultView:window}function ht(e,t,n,i){n.updateBound=i,ct(e).addEventListener("resize",n.updateBound,{passive:!0});var o=Pe(e);return function e(t,n,i,o){var r="BODY"===t.nodeName,s=r?t.ownerDocument.defaultView:t;s.addEventListener(n,i,{passive:!0}),r||e(Pe(s.parentNode),n,i,o),o.push(s)}(o,"scroll",n.updateBound,n.scrollParents),n.scrollElement=o,n.eventsEnabled=!0,n}function ut(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=function(e,t){return ct(e).removeEventListener("resize",t.updateBound),t.scrollParents.forEach(function(e){e.removeEventListener("scroll",t.updateBound)}),t.updateBound=null,t.scrollParents=[],t.scrollElement=null,t.eventsEnabled=!1,t}(this.reference,this.state))}function ft(e){return""!==e&&!isNaN(parseFloat(e))&&isFinite(e)}function dt(n,i){Object.keys(i).forEach(function(e){var t="";-1!==["width","height","top","right","bottom","left"].indexOf(e)&&ft(i[e])&&(t="px"),n.style[e]=i[e]+t})}function pt(e,t){function n(e){return e}var i=e.offsets,o=i.popper,r=i.reference,s=Math.round,a=Math.floor,l=s(r.width),c=s(o.width),h=-1!==["left","right"].indexOf(e.placement),u=-1!==e.placement.indexOf("-"),f=t?h||u||l%2==c%2?s:a:n,d=t?s:n;return{left:f(l%2==1&&c%2==1&&!u&&t?o.left-1:o.left),top:d(o.top),bottom:d(o.bottom),right:f(o.right)}}var mt=Ie&&/Firefox/i.test(navigator.userAgent);function gt(e,t,n){var i=rt(e,function(e){return e.name===t}),o=!!i&&e.some(function(e){return e.name===n&&e.enabled&&e.order<i.order});if(!o){var r="`"+t+"`",s="`"+n+"`";console.warn(s+" modifier is required by "+r+" modifier in order to work, be sure to include it before "+r+"!")}return o}var _t=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],vt=_t.slice(3);function yt(e,t){var n=1<arguments.length&&void 0!==t&&t,i=vt.indexOf(e),o=vt.slice(i+1).concat(vt.slice(0,i));return n?o.reverse():o}var Et="flip",bt="clockwise",wt="counterclockwise";function Tt(e,o,r,t){var s=[0,0],a=-1!==["right","left"].indexOf(t),n=e.split(/(\+|\-)/).map(function(e){return e.trim()}),i=n.indexOf(rt(n,function(e){return-1!==e.search(/,|\s/)}));n[i]&&-1===n[i].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var l=/\s*,\s*|\s+/,c=-1!==i?[n.slice(0,i).concat([n[i].split(l)[0]]),[n[i].split(l)[1]].concat(n.slice(i+1))]:[n];return(c=c.map(function(e,t){var n=(1===t?!a:a)?"height":"width",i=!1;return e.reduce(function(e,t){return""===e[e.length-1]&&-1!==["+","-"].indexOf(t)?(e[e.length-1]=t,i=!0,e):i?(e[e.length-1]+=t,i=!1,e):e.concat(t)},[]).map(function(e){return function(e,t,n,i){var o=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),r=+o[1],s=o[2];if(!r)return e;if(0!==s.indexOf("%"))return"vh"!==s&&"vw"!==s?r:("vh"===s?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*r;var a=void 0;switch(s){case"%p":a=n;break;case"%":case"%r":default:a=i}return Xe(a)[t]/100*r}(e,n,o,r)})})).forEach(function(n,i){n.forEach(function(e,t){ft(e)&&(s[i]+=e*("-"===n[t-1]?-1:1))})}),s}var Ct={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(e){var t=e.placement,n=t.split("-")[0],i=t.split("-")[1];if(i){var o=e.offsets,r=o.reference,s=o.popper,a=-1!==["bottom","top"].indexOf(n),l=a?"left":"top",c=a?"width":"height",h={start:Ye({},l,r[l]),end:Ye({},l,r[l]+r[c]-s[c])};e.offsets.popper=ze({},s,h[i])}return e}},offset:{order:200,enabled:!0,fn:function(e,t){var n=t.offset,i=e.placement,o=e.offsets,r=o.popper,s=o.reference,a=i.split("-")[0],l=void 0;return l=ft(+n)?[+n,0]:Tt(n,r,s,a),"left"===a?(r.top+=l[0],r.left-=l[1]):"right"===a?(r.top+=l[0],r.left+=l[1]):"top"===a?(r.left+=l[0],r.top-=l[1]):"bottom"===a&&(r.left+=l[0],r.top+=l[1]),e.popper=r,e},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(e,i){var t=i.boundariesElement||Fe(e.instance.popper);e.instance.reference===t&&(t=Fe(t));var n=lt("transform"),o=e.instance.popper.style,r=o.top,s=o.left,a=o[n];o.top="",o.left="",o[n]="";var l=Ze(e.instance.popper,e.instance.reference,i.padding,t,e.positionFixed);o.top=r,o.left=s,o[n]=a,i.boundaries=l;var c=i.priority,h=e.offsets.popper,u={primary:function(e){var t=h[e];return h[e]<l[e]&&!i.escapeWithReference&&(t=Math.max(h[e],l[e])),Ye({},e,t)},secondary:function(e){var t="right"===e?"left":"top",n=h[t];return h[e]>l[e]&&!i.escapeWithReference&&(n=Math.min(h[t],l[e]-("right"===e?h.width:h.height))),Ye({},t,n)}};return c.forEach(function(e){var t=-1!==["left","top"].indexOf(e)?"primary":"secondary";h=ze({},h,u[t](e))}),e.offsets.popper=h,e},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,n=t.popper,i=t.reference,o=e.placement.split("-")[0],r=Math.floor,s=-1!==["top","bottom"].indexOf(o),a=s?"right":"bottom",l=s?"left":"top",c=s?"width":"height";return n[a]<r(i[l])&&(e.offsets.popper[l]=r(i[l])-n[c]),n[l]>r(i[a])&&(e.offsets.popper[l]=r(i[a])),e}},arrow:{order:500,enabled:!0,fn:function(e,t){var n;if(!gt(e.instance.modifiers,"arrow","keepTogether"))return e;var i=t.element;if("string"==typeof i){if(!(i=e.instance.popper.querySelector(i)))return e}else if(!e.instance.popper.contains(i))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),e;var o=e.placement.split("-")[0],r=e.offsets,s=r.popper,a=r.reference,l=-1!==["left","right"].indexOf(o),c=l?"height":"width",h=l?"Top":"Left",u=h.toLowerCase(),f=l?"left":"top",d=l?"bottom":"right",p=nt(i)[c];a[d]-p<s[u]&&(e.offsets.popper[u]-=s[u]-(a[d]-p)),a[u]+p>s[d]&&(e.offsets.popper[u]+=a[u]+p-s[d]),e.offsets.popper=Xe(e.offsets.popper);var m=a[u]+a[c]/2-p/2,g=ke(e.instance.popper),_=parseFloat(g["margin"+h],10),v=parseFloat(g["border"+h+"Width"],10),y=m-e.offsets.popper[u]-_-v;return y=Math.max(Math.min(s[c]-p,y),0),e.arrowElement=i,e.offsets.arrow=(Ye(n={},u,Math.round(y)),Ye(n,f,""),n),e},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(m,g){if(at(m.instance.modifiers,"inner"))return m;if(m.flipped&&m.placement===m.originalPlacement)return m;var _=Ze(m.instance.popper,m.instance.reference,g.padding,g.boundariesElement,m.positionFixed),v=m.placement.split("-")[0],y=it(v),E=m.placement.split("-")[1]||"",b=[];switch(g.behavior){case Et:b=[v,y];break;case bt:b=yt(v);break;case wt:b=yt(v,!0);break;default:b=g.behavior}return b.forEach(function(e,t){if(v!==e||b.length===t+1)return m;v=m.placement.split("-")[0],y=it(v);var n=m.offsets.popper,i=m.offsets.reference,o=Math.floor,r="left"===v&&o(n.right)>o(i.left)||"right"===v&&o(n.left)<o(i.right)||"top"===v&&o(n.bottom)>o(i.top)||"bottom"===v&&o(n.top)<o(i.bottom),s=o(n.left)<o(_.left),a=o(n.right)>o(_.right),l=o(n.top)<o(_.top),c=o(n.bottom)>o(_.bottom),h="left"===v&&s||"right"===v&&a||"top"===v&&l||"bottom"===v&&c,u=-1!==["top","bottom"].indexOf(v),f=!!g.flipVariations&&(u&&"start"===E&&s||u&&"end"===E&&a||!u&&"start"===E&&l||!u&&"end"===E&&c),d=!!g.flipVariationsByContent&&(u&&"start"===E&&a||u&&"end"===E&&s||!u&&"start"===E&&c||!u&&"end"===E&&l),p=f||d;(r||h||p)&&(m.flipped=!0,(r||h)&&(v=b[t+1]),p&&(E=function(e){return"end"===e?"start":"start"===e?"end":e}(E)),m.placement=v+(E?"-"+E:""),m.offsets.popper=ze({},m.offsets.popper,ot(m.instance.popper,m.offsets.reference,m.placement)),m=st(m.instance.modifiers,m,"flip"))}),m},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,n=t.split("-")[0],i=e.offsets,o=i.popper,r=i.reference,s=-1!==["left","right"].indexOf(n),a=-1===["top","left"].indexOf(n);return o[s?"left":"top"]=r[n]-(a?o[s?"width":"height"]:0),e.placement=it(t),e.offsets.popper=Xe(o),e}},hide:{order:800,enabled:!0,fn:function(e){if(!gt(e.instance.modifiers,"hide","preventOverflow"))return e;var t=e.offsets.reference,n=rt(e.instance.modifiers,function(e){return"preventOverflow"===e.name}).boundaries;if(t.bottom<n.top||t.left>n.right||t.top>n.bottom||t.right<n.left){if(!0===e.hide)return e;e.hide=!0,e.attributes["x-out-of-boundaries"]=""}else{if(!1===e.hide)return e;e.hide=!1,e.attributes["x-out-of-boundaries"]=!1}return e}},computeStyle:{order:850,enabled:!0,fn:function(e,t){var n=t.x,i=t.y,o=e.offsets.popper,r=rt(e.instance.modifiers,function(e){return"applyStyle"===e.name}).gpuAcceleration;void 0!==r&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var s=void 0!==r?r:t.gpuAcceleration,a=Fe(e.instance.popper),l=Ge(a),c={position:o.position},h=pt(e,window.devicePixelRatio<2||!mt),u="bottom"===n?"top":"bottom",f="right"===i?"left":"right",d=lt("transform"),p=void 0,m=void 0;if(m="bottom"==u?"HTML"===a.nodeName?-a.clientHeight+h.bottom:-l.height+h.bottom:h.top,p="right"==f?"HTML"===a.nodeName?-a.clientWidth+h.right:-l.width+h.right:h.left,s&&d)c[d]="translate3d("+p+"px, "+m+"px, 0)",c[u]=0,c[f]=0,c.willChange="transform";else{var g="bottom"==u?-1:1,_="right"==f?-1:1;c[u]=m*g,c[f]=p*_,c.willChange=u+", "+f}var v={"x-placement":e.placement};return e.attributes=ze({},v,e.attributes),e.styles=ze({},c,e.styles),e.arrowStyles=ze({},e.offsets.arrow,e.arrowStyles),e},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(e){return dt(e.instance.popper,e.styles),function(t,n){Object.keys(n).forEach(function(e){!1!==n[e]?t.setAttribute(e,n[e]):t.removeAttribute(e)})}(e.instance.popper,e.attributes),e.arrowElement&&Object.keys(e.arrowStyles).length&&dt(e.arrowElement,e.arrowStyles),e},onLoad:function(e,t,n,i,o){var r=tt(o,t,e,n.positionFixed),s=et(n.placement,r,t,e,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return t.setAttribute("x-placement",s),dt(t,{position:n.positionFixed?"fixed":"absolute"}),n},gpuAcceleration:void 0}}},St=(Qe(Dt,[{key:"update",value:function(){return function(){if(!this.state.isDestroyed){var e={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};e.offsets.reference=tt(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=et(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),e.originalPlacement=e.placement,e.positionFixed=this.options.positionFixed,e.offsets.popper=ot(this.popper,e.offsets.reference,e.placement),e.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",e=st(this.modifiers,e),this.state.isCreated?this.options.onUpdate(e):(this.state.isCreated=!0,this.options.onCreate(e))}}.call(this)}},{key:"destroy",value:function(){return function(){return this.state.isDestroyed=!0,at(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.position="",this.popper.style.top="",this.popper.style.left="",this.popper.style.right="",this.popper.style.bottom="",this.popper.style.willChange="",this.popper.style[lt("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}.call(this)}},{key:"enableEventListeners",value:function(){return function(){this.state.eventsEnabled||(this.state=ht(this.reference,this.options,this.state,this.scheduleUpdate))}.call(this)}},{key:"disableEventListeners",value:function(){return ut.call(this)}}]),Dt);function Dt(e,t){var n=this,i=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,Dt),this.scheduleUpdate=function(){return requestAnimationFrame(n.update)},this.update=Oe(this.update.bind(this)),this.options=ze({},Dt.Defaults,i),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=t&&t.jquery?t[0]:t,this.options.modifiers={},Object.keys(ze({},Dt.Defaults.modifiers,i.modifiers)).forEach(function(e){n.options.modifiers[e]=ze({},Dt.Defaults.modifiers[e]||{},i.modifiers?i.modifiers[e]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(e){return ze({name:e},n.options.modifiers[e])}).sort(function(e,t){return e.order-t.order}),this.modifiers.forEach(function(e){e.enabled&&Ne(e.onLoad)&&e.onLoad(n.reference,n.popper,n.options,e,n.state)}),this.update();var o=this.options.eventsEnabled;o&&this.enableEventListeners(),this.state.eventsEnabled=o}St.Utils=("undefined"!=typeof window?window:global).PopperUtils,St.placements=_t,St.Defaults=Ct;var It="dropdown",At="bs.dropdown",Ot="."+At,Nt=".data-api",kt=p.fn[It],Lt=new RegExp("38|40|27"),Pt={HIDE:"hide"+Ot,HIDDEN:"hidden"+Ot,SHOW:"show"+Ot,SHOWN:"shown"+Ot,CLICK:"click"+Ot,CLICK_DATA_API:"click"+Ot+Nt,KEYDOWN_DATA_API:"keydown"+Ot+Nt,KEYUP_DATA_API:"keyup"+Ot+Nt},xt="disabled",jt="show",Ht="dropup",Rt="dropright",Ft="dropleft",Mt="dropdown-menu-right",Wt="position-static",Ut='[data-toggle="dropdown"]',Bt=".dropdown form",qt=".dropdown-menu",Kt=".navbar-nav",Qt=".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",Vt="top-start",Yt="top-end",zt="bottom-start",Xt="bottom-end",Gt="right-start",$t="left-start",Jt={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic",popperConfig:null},Zt={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string",popperConfig:"(null|object)"},en=function(){function c(e,t){this._element=e,this._popper=null,this._config=this._getConfig(t),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var e=c.prototype;return e.toggle=function(){if(!this._element.disabled&&!p(this._element).hasClass(xt)){var e=p(this._menu).hasClass(jt);c._clearMenus(),e||this.show(!0)}},e.show=function(e){if(void 0===e&&(e=!1),!(this._element.disabled||p(this._element).hasClass(xt)||p(this._menu).hasClass(jt))){var t={relatedTarget:this._element},n=p.Event(Pt.SHOW,t),i=c._getParentFromElement(this._element);if(p(i).trigger(n),!n.isDefaultPrevented()){if(!this._inNavbar&&e){if("undefined"==typeof St)throw new TypeError("Bootstrap's dropdowns require Popper.js (https://popper.js.org/)");var o=this._element;"parent"===this._config.reference?o=i:m.isElement(this._config.reference)&&(o=this._config.reference,"undefined"!=typeof this._config.reference.jquery&&(o=this._config.reference[0])),"scrollParent"!==this._config.boundary&&p(i).addClass(Wt),this._popper=new St(o,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===p(i).closest(Kt).length&&p(document.body).children().on("mouseover",null,p.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),p(this._menu).toggleClass(jt),p(i).toggleClass(jt).trigger(p.Event(Pt.SHOWN,t))}}},e.hide=function(){if(!this._element.disabled&&!p(this._element).hasClass(xt)&&p(this._menu).hasClass(jt)){var e={relatedTarget:this._element},t=p.Event(Pt.HIDE,e),n=c._getParentFromElement(this._element);p(n).trigger(t),t.isDefaultPrevented()||(this._popper&&this._popper.destroy(),p(this._menu).toggleClass(jt),p(n).toggleClass(jt).trigger(p.Event(Pt.HIDDEN,e)))}},e.dispose=function(){p.removeData(this._element,At),p(this._element).off(Ot),this._element=null,(this._menu=null)!==this._popper&&(this._popper.destroy(),this._popper=null)},e.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},e._addEventListeners=function(){var t=this;p(this._element).on(Pt.CLICK,function(e){e.preventDefault(),e.stopPropagation(),t.toggle()})},e._getConfig=function(e){return e=l({},this.constructor.Default,{},p(this._element).data(),{},e),m.typeCheckConfig(It,e,this.constructor.DefaultType),e},e._getMenuElement=function(){if(!this._menu){var e=c._getParentFromElement(this._element);e&&(this._menu=e.querySelector(qt))}return this._menu},e._getPlacement=function(){var e=p(this._element.parentNode),t=zt;return e.hasClass(Ht)?(t=Vt,p(this._menu).hasClass(Mt)&&(t=Yt)):e.hasClass(Rt)?t=Gt:e.hasClass(Ft)?t=$t:p(this._menu).hasClass(Mt)&&(t=Xt),t},e._detectNavbar=function(){return 0<p(this._element).closest(".navbar").length},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=l({},e.offsets,{},t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var e={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(e.modifiers.applyStyle={enabled:!1}),l({},e,{},this._config.popperConfig)},c._jQueryInterface=function(t){return this.each(function(){var e=p(this).data(At);if(e||(e=new c(this,"object"==typeof t?t:null),p(this).data(At,e)),"string"==typeof t){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}})},c._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var t=[].slice.call(document.querySelectorAll(Ut)),n=0,i=t.length;n<i;n++){var o=c._getParentFromElement(t[n]),r=p(t[n]).data(At),s={relatedTarget:t[n]};if(e&&"click"===e.type&&(s.clickEvent=e),r){var a=r._menu;if(p(o).hasClass(jt)&&!(e&&("click"===e.type&&/input|textarea/i.test(e.target.tagName)||"keyup"===e.type&&9===e.which)&&p.contains(o,e.target))){var l=p.Event(Pt.HIDE,s);p(o).trigger(l),l.isDefaultPrevented()||("ontouchstart"in document.documentElement&&p(document.body).children().off("mouseover",null,p.noop),t[n].setAttribute("aria-expanded","false"),r._popper&&r._popper.destroy(),p(a).removeClass(jt),p(o).removeClass(jt).trigger(p.Event(Pt.HIDDEN,s)))}}}},c._getParentFromElement=function(e){var t,n=m.getSelectorFromElement(e);return n&&(t=document.querySelector(n)),t||e.parentNode},c._dataApiKeydownHandler=function(e){if((/input|textarea/i.test(e.target.tagName)?!(32===e.which||27!==e.which&&(40!==e.which&&38!==e.which||p(e.target).closest(qt).length)):Lt.test(e.which))&&(e.preventDefault(),e.stopPropagation(),!this.disabled&&!p(this).hasClass(xt))){var t=c._getParentFromElement(this),n=p(t).hasClass(jt);if(n||27!==e.which)if(n&&(!n||27!==e.which&&32!==e.which)){var i=[].slice.call(t.querySelectorAll(Qt)).filter(function(e){return p(e).is(":visible")});if(0!==i.length){var o=i.indexOf(e.target);38===e.which&&0<o&&o--,40===e.which&&o<i.length-1&&o++,o<0&&(o=0),i[o].focus()}}else{if(27===e.which){var r=t.querySelector(Ut);p(r).trigger("focus")}p(this).trigger("click")}}},s(c,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return Jt}},{key:"DefaultType",get:function(){return Zt}}]),c}();p(document).on(Pt.KEYDOWN_DATA_API,Ut,en._dataApiKeydownHandler).on(Pt.KEYDOWN_DATA_API,qt,en._dataApiKeydownHandler).on(Pt.CLICK_DATA_API+" "+Pt.KEYUP_DATA_API,en._clearMenus).on(Pt.CLICK_DATA_API,Ut,function(e){e.preventDefault(),e.stopPropagation(),en._jQueryInterface.call(p(this),"toggle")}).on(Pt.CLICK_DATA_API,Bt,function(e){e.stopPropagation()}),p.fn[It]=en._jQueryInterface,p.fn[It].Constructor=en,p.fn[It].noConflict=function(){return p.fn[It]=kt,en._jQueryInterface};var tn="modal",nn="bs.modal",on="."+nn,rn=p.fn[tn],sn={backdrop:!0,keyboard:!0,focus:!0,show:!0},an={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean",show:"boolean"},ln={HIDE:"hide"+on,HIDE_PREVENTED:"hidePrevented"+on,HIDDEN:"hidden"+on,SHOW:"show"+on,SHOWN:"shown"+on,FOCUSIN:"focusin"+on,RESIZE:"resize"+on,CLICK_DISMISS:"click.dismiss"+on,KEYDOWN_DISMISS:"keydown.dismiss"+on,MOUSEUP_DISMISS:"mouseup.dismiss"+on,MOUSEDOWN_DISMISS:"mousedown.dismiss"+on,CLICK_DATA_API:"click"+on+".data-api"},cn="modal-dialog-scrollable",hn="modal-scrollbar-measure",un="modal-backdrop",fn="modal-open",dn="fade",pn="show",mn="modal-static",gn=".modal-dialog",_n=".modal-body",vn='[data-toggle="modal"]',yn='[data-dismiss="modal"]',En=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",bn=".sticky-top",wn=function(){function o(e,t){this._config=this._getConfig(t),this._element=e,this._dialog=e.querySelector(gn),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var e=o.prototype;return e.toggle=function(e){return this._isShown?this.hide():this.show(e)},e.show=function(e){var t=this;if(!this._isShown&&!this._isTransitioning){p(this._element).hasClass(dn)&&(this._isTransitioning=!0);var n=p.Event(ln.SHOW,{relatedTarget:e});p(this._element).trigger(n),this._isShown||n.isDefaultPrevented()||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),p(this._element).on(ln.CLICK_DISMISS,yn,function(e){return t.hide(e)}),p(this._dialog).on(ln.MOUSEDOWN_DISMISS,function(){p(t._element).one(ln.MOUSEUP_DISMISS,function(e){p(e.target).is(t._element)&&(t._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return t._showElement(e)}))}},e.hide=function(e){var t=this;if(e&&e.preventDefault(),this._isShown&&!this._isTransitioning){var n=p.Event(ln.HIDE);if(p(this._element).trigger(n),this._isShown&&!n.isDefaultPrevented()){this._isShown=!1;var i=p(this._element).hasClass(dn);if(i&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),p(document).off(ln.FOCUSIN),p(this._element).removeClass(pn),p(this._element).off(ln.CLICK_DISMISS),p(this._dialog).off(ln.MOUSEDOWN_DISMISS),i){var o=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,function(e){return t._hideModal(e)}).emulateTransitionEnd(o)}else this._hideModal()}}},e.dispose=function(){[window,this._element,this._dialog].forEach(function(e){return p(e).off(on)}),p(document).off(ln.FOCUSIN),p.removeData(this._element,nn),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},e.handleUpdate=function(){this._adjustDialog()},e._getConfig=function(e){return e=l({},sn,{},e),m.typeCheckConfig(tn,e,an),e},e._triggerBackdropTransition=function(){var e=this;if("static"===this._config.backdrop){var t=p.Event(ln.HIDE_PREVENTED);if(p(this._element).trigger(t),t.defaultPrevented)return;this._element.classList.add(mn);var n=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,function(){e._element.classList.remove(mn)}).emulateTransitionEnd(n),this._element.focus()}else this.hide()},e._showElement=function(e){var t=this,n=p(this._element).hasClass(dn),i=this._dialog?this._dialog.querySelector(_n):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),p(this._dialog).hasClass(cn)&&i?i.scrollTop=0:this._element.scrollTop=0,n&&m.reflow(this._element),p(this._element).addClass(pn),this._config.focus&&this._enforceFocus();function o(){t._config.focus&&t._element.focus(),t._isTransitioning=!1,p(t._element).trigger(r)}var r=p.Event(ln.SHOWN,{relatedTarget:e});if(n){var s=m.getTransitionDurationFromElement(this._dialog);p(this._dialog).one(m.TRANSITION_END,o).emulateTransitionEnd(s)}else o()},e._enforceFocus=function(){var t=this;p(document).off(ln.FOCUSIN).on(ln.FOCUSIN,function(e){document!==e.target&&t._element!==e.target&&0===p(t._element).has(e.target).length&&t._element.focus()})},e._setEscapeEvent=function(){var t=this;this._isShown&&this._config.keyboard?p(this._element).on(ln.KEYDOWN_DISMISS,function(e){27===e.which&&t._triggerBackdropTransition()}):this._isShown||p(this._element).off(ln.KEYDOWN_DISMISS)},e._setResizeEvent=function(){var t=this;this._isShown?p(window).on(ln.RESIZE,function(e){return t.handleUpdate(e)}):p(window).off(ln.RESIZE)},e._hideModal=function(){var e=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._isTransitioning=!1,this._showBackdrop(function(){p(document.body).removeClass(fn),e._resetAdjustments(),e._resetScrollbar(),p(e._element).trigger(ln.HIDDEN)})},e._removeBackdrop=function(){this._backdrop&&(p(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(e){var t=this,n=p(this._element).hasClass(dn)?dn:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className=un,n&&this._backdrop.classList.add(n),p(this._backdrop).appendTo(document.body),p(this._element).on(ln.CLICK_DISMISS,function(e){t._ignoreBackdropClick?t._ignoreBackdropClick=!1:e.target===e.currentTarget&&t._triggerBackdropTransition()}),n&&m.reflow(this._backdrop),p(this._backdrop).addClass(pn),!e)return;if(!n)return void e();var i=m.getTransitionDurationFromElement(this._backdrop);p(this._backdrop).one(m.TRANSITION_END,e).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){p(this._backdrop).removeClass(pn);var o=function(){t._removeBackdrop(),e&&e()};if(p(this._element).hasClass(dn)){var r=m.getTransitionDurationFromElement(this._backdrop);p(this._backdrop).one(m.TRANSITION_END,o).emulateTransitionEnd(r)}else o()}else e&&e()},e._adjustDialog=function(){var e=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&e&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!e&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var e=document.body.getBoundingClientRect();this._isBodyOverflowing=e.left+e.right<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},e._setScrollbar=function(){var o=this;if(this._isBodyOverflowing){var e=[].slice.call(document.querySelectorAll(En)),t=[].slice.call(document.querySelectorAll(bn));p(e).each(function(e,t){var n=t.style.paddingRight,i=p(t).css("padding-right");p(t).data("padding-right",n).css("padding-right",parseFloat(i)+o._scrollbarWidth+"px")}),p(t).each(function(e,t){var n=t.style.marginRight,i=p(t).css("margin-right");p(t).data("margin-right",n).css("margin-right",parseFloat(i)-o._scrollbarWidth+"px")});var n=document.body.style.paddingRight,i=p(document.body).css("padding-right");p(document.body).data("padding-right",n).css("padding-right",parseFloat(i)+this._scrollbarWidth+"px")}p(document.body).addClass(fn)},e._resetScrollbar=function(){var e=[].slice.call(document.querySelectorAll(En));p(e).each(function(e,t){var n=p(t).data("padding-right");p(t).removeData("padding-right"),t.style.paddingRight=n||""});var t=[].slice.call(document.querySelectorAll(""+bn));p(t).each(function(e,t){var n=p(t).data("margin-right");"undefined"!=typeof n&&p(t).css("margin-right",n).removeData("margin-right")});var n=p(document.body).data("padding-right");p(document.body).removeData("padding-right"),document.body.style.paddingRight=n||""},e._getScrollbarWidth=function(){var e=document.createElement("div");e.className=hn,document.body.appendChild(e);var t=e.getBoundingClientRect().width-e.clientWidth;return document.body.removeChild(e),t},o._jQueryInterface=function(n,i){return this.each(function(){var e=p(this).data(nn),t=l({},sn,{},p(this).data(),{},"object"==typeof n&&n?n:{});if(e||(e=new o(this,t),p(this).data(nn,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n](i)}else t.show&&e.show(i)})},s(o,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return sn}}]),o}();p(document).on(ln.CLICK_DATA_API,vn,function(e){var t,n=this,i=m.getSelectorFromElement(this);i&&(t=document.querySelector(i));var o=p(t).data(nn)?"toggle":l({},p(t).data(),{},p(this).data());"A"!==this.tagName&&"AREA"!==this.tagName||e.preventDefault();var r=p(t).one(ln.SHOW,function(e){e.isDefaultPrevented()||r.one(ln.HIDDEN,function(){p(n).is(":visible")&&n.focus()})});wn._jQueryInterface.call(p(t),o,this)}),p.fn[tn]=wn._jQueryInterface,p.fn[tn].Constructor=wn,p.fn[tn].noConflict=function(){return p.fn[tn]=rn,wn._jQueryInterface};var Tn=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],Cn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Sn=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,Dn=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function In(e,r,t){if(0===e.length)return e;if(t&&"function"==typeof t)return t(e);for(var n=(new window.DOMParser).parseFromString(e,"text/html"),s=Object.keys(r),a=[].slice.call(n.body.querySelectorAll("*")),i=function(e){var t=a[e],n=t.nodeName.toLowerCase();if(-1===s.indexOf(t.nodeName.toLowerCase()))return t.parentNode.removeChild(t),"continue";var i=[].slice.call(t.attributes),o=[].concat(r["*"]||[],r[n]||[]);i.forEach(function(e){!function(e,t){var n=e.nodeName.toLowerCase();if(-1!==t.indexOf(n))return-1===Tn.indexOf(n)||Boolean(e.nodeValue.match(Sn)||e.nodeValue.match(Dn));for(var i=t.filter(function(e){return e instanceof RegExp}),o=0,r=i.length;o<r;o++)if(n.match(i[o]))return!0;return!1}(e,o)&&t.removeAttribute(e.nodeName)})},o=0,l=a.length;o<l;o++)i(o);return n.body.innerHTML}var An="tooltip",On="bs.tooltip",Nn="."+On,kn=p.fn[An],Ln="bs-tooltip",Pn=new RegExp("(^|\\s)"+Ln+"\\S+","g"),xn=["sanitize","whiteList","sanitizeFn"],jn={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},Hn={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"},Rn={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:Cn,popperConfig:null},Fn="show",Mn="out",Wn={HIDE:"hide"+Nn,HIDDEN:"hidden"+Nn,SHOW:"show"+Nn,SHOWN:"shown"+Nn,INSERTED:"inserted"+Nn,CLICK:"click"+Nn,FOCUSIN:"focusin"+Nn,FOCUSOUT:"focusout"+Nn,MOUSEENTER:"mouseenter"+Nn,MOUSELEAVE:"mouseleave"+Nn},Un="fade",Bn="show",qn=".tooltip-inner",Kn=".arrow",Qn="hover",Vn="focus",Yn="click",zn="manual",Xn=function(){function i(e,t){if("undefined"==typeof St)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=e,this.config=this._getConfig(t),this.tip=null,this._setListeners()}var e=i.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(e){if(this._isEnabled)if(e){var t=this.constructor.DATA_KEY,n=p(e.currentTarget).data(t);n||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),p(e.currentTarget).data(t,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(p(this.getTipElement()).hasClass(Bn))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),p.removeData(this.element,this.constructor.DATA_KEY),p(this.element).off(this.constructor.EVENT_KEY),p(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&p(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===p(this.element).css("display"))throw new Error("Please use show on visible elements");var e=p.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){p(this.element).trigger(e);var n=m.findShadowRoot(this.element),i=p.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!i)return;var o=this.getTipElement(),r=m.getUID(this.constructor.NAME);o.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&p(o).addClass(Un);var s="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,a=this._getAttachment(s);this.addAttachmentClass(a);var l=this._getContainer();p(o).data(this.constructor.DATA_KEY,this),p.contains(this.element.ownerDocument.documentElement,this.tip)||p(o).appendTo(l),p(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new St(this.element,o,this._getPopperConfig(a)),p(o).addClass(Bn),"ontouchstart"in document.documentElement&&p(document.body).children().on("mouseover",null,p.noop);var c=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,p(t.element).trigger(t.constructor.Event.SHOWN),e===Mn&&t._leave(null,t)};if(p(this.tip).hasClass(Un)){var h=m.getTransitionDurationFromElement(this.tip);p(this.tip).one(m.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},e.hide=function(e){function t(){n._hoverState!==Fn&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),p(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),e&&e()}var n=this,i=this.getTipElement(),o=p.Event(this.constructor.Event.HIDE);if(p(this.element).trigger(o),!o.isDefaultPrevented()){if(p(i).removeClass(Bn),"ontouchstart"in document.documentElement&&p(document.body).children().off("mouseover",null,p.noop),this._activeTrigger[Yn]=!1,this._activeTrigger[Vn]=!1,this._activeTrigger[Qn]=!1,p(this.tip).hasClass(Un)){var r=m.getTransitionDurationFromElement(i);p(i).one(m.TRANSITION_END,t).emulateTransitionEnd(r)}else t();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(e){p(this.getTipElement()).addClass(Ln+"-"+e)},e.getTipElement=function(){return this.tip=this.tip||p(this.config.template)[0],this.tip},e.setContent=function(){var e=this.getTipElement();this.setElementContent(p(e.querySelectorAll(qn)),this.getTitle()),p(e).removeClass(Un+" "+Bn)},e.setElementContent=function(e,t){"object"!=typeof t||!t.nodeType&&!t.jquery?this.config.html?(this.config.sanitize&&(t=In(t,this.config.whiteList,this.config.sanitizeFn)),e.html(t)):e.text(t):this.config.html?p(t).parent().is(e)||e.empty().append(t):e.text(p(t).text())},e.getTitle=function(){var e=this.element.getAttribute("data-original-title");return e=e||("function"==typeof this.config.title?this.config.title.call(this.element):this.config.title)},e._getPopperConfig=function(e){var t=this;return l({},{placement:e,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:Kn},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(e){e.originalPlacement!==e.placement&&t._handlePopperPlacementChange(e)},onUpdate:function(e){return t._handlePopperPlacementChange(e)}},{},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=l({},e.offsets,{},t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:m.isElement(this.config.container)?p(this.config.container):p(document).find(this.config.container)},e._getAttachment=function(e){return Hn[e.toUpperCase()]},e._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(e){if("click"===e)p(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(e){return i.toggle(e)});else if(e!==zn){var t=e===Qn?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=e===Qn?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;p(i.element).on(t,i.config.selector,function(e){return i._enter(e)}).on(n,i.config.selector,function(e){return i._leave(e)})}}),this._hideModalHandler=function(){i.element&&i.hide()},p(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var e=typeof this.element.getAttribute("data-original-title");!this.element.getAttribute("title")&&"string"==e||(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(e,t){var n=this.constructor.DATA_KEY;(t=t||p(e.currentTarget).data(n))||(t=new this.constructor(e.currentTarget,this._getDelegateConfig()),p(e.currentTarget).data(n,t)),e&&(t._activeTrigger["focusin"===e.type?Vn:Qn]=!0),p(t.getTipElement()).hasClass(Bn)||t._hoverState===Fn?t._hoverState=Fn:(clearTimeout(t._timeout),t._hoverState=Fn,t.config.delay&&t.config.delay.show?t._timeout=setTimeout(function(){t._hoverState===Fn&&t.show()},t.config.delay.show):t.show())},e._leave=function(e,t){var n=this.constructor.DATA_KEY;(t=t||p(e.currentTarget).data(n))||(t=new this.constructor(e.currentTarget,this._getDelegateConfig()),p(e.currentTarget).data(n,t)),e&&(t._activeTrigger["focusout"===e.type?Vn:Qn]=!1),t._isWithActiveTrigger()||(clearTimeout(t._timeout),t._hoverState=Mn,t.config.delay&&t.config.delay.hide?t._timeout=setTimeout(function(){t._hoverState===Mn&&t.hide()},t.config.delay.hide):t.hide())},e._isWithActiveTrigger=function(){for(var e in this._activeTrigger)if(this._activeTrigger[e])return!0;return!1},e._getConfig=function(e){var t=p(this.element).data();return Object.keys(t).forEach(function(e){-1!==xn.indexOf(e)&&delete t[e]}),"number"==typeof(e=l({},this.constructor.Default,{},t,{},"object"==typeof e&&e?e:{})).delay&&(e.delay={show:e.delay,hide:e.delay}),"number"==typeof e.title&&(e.title=e.title.toString()),"number"==typeof e.content&&(e.content=e.content.toString()),m.typeCheckConfig(An,e,this.constructor.DefaultType),e.sanitize&&(e.template=In(e.template,e.whiteList,e.sanitizeFn)),e},e._getDelegateConfig=function(){var e={};if(this.config)for(var t in this.config)this.constructor.Default[t]!==this.config[t]&&(e[t]=this.config[t]);return e},e._cleanTipClass=function(){var e=p(this.getTipElement()),t=e.attr("class").match(Pn);null!==t&&t.length&&e.removeClass(t.join(""))},e._handlePopperPlacementChange=function(e){var t=e.instance;this.tip=t.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(e.placement))},e._fixTransition=function(){var e=this.getTipElement(),t=this.config.animation;null===e.getAttribute("x-placement")&&(p(e).removeClass(Un),this.config.animation=!1,this.hide(),this.show(),this.config.animation=t)},i._jQueryInterface=function(n){return this.each(function(){var e=p(this).data(On),t="object"==typeof n&&n;if((e||!/dispose|hide/.test(n))&&(e||(e=new i(this,t),p(this).data(On,e)),"string"==typeof n)){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return Rn}},{key:"NAME",get:function(){return An}},{key:"DATA_KEY",get:function(){return On}},{key:"Event",get:function(){return Wn}},{key:"EVENT_KEY",get:function(){return Nn}},{key:"DefaultType",get:function(){return jn}}]),i}();p.fn[An]=Xn._jQueryInterface,p.fn[An].Constructor=Xn,p.fn[An].noConflict=function(){return p.fn[An]=kn,Xn._jQueryInterface};var Gn="popover",$n="bs.popover",Jn="."+$n,Zn=p.fn[Gn],ei="bs-popover",ti=new RegExp("(^|\\s)"+ei+"\\S+","g"),ni=l({},Xn.Default,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),ii=l({},Xn.DefaultType,{content:"(string|element|function)"}),oi="fade",ri="show",si=".popover-header",ai=".popover-body",li={HIDE:"hide"+Jn,HIDDEN:"hidden"+Jn,SHOW:"show"+Jn,SHOWN:"shown"+Jn,INSERTED:"inserted"+Jn,CLICK:"click"+Jn,FOCUSIN:"focusin"+Jn,FOCUSOUT:"focusout"+Jn,MOUSEENTER:"mouseenter"+Jn,MOUSELEAVE:"mouseleave"+Jn},ci=function(e){function i(){return e.apply(this,arguments)||this}!function(e,t){e.prototype=Object.create(t.prototype),(e.prototype.constructor=e).__proto__=t}(i,e);var t=i.prototype;return t.isWithContent=function(){return this.getTitle()||this._getContent()},t.addAttachmentClass=function(e){p(this.getTipElement()).addClass(ei+"-"+e)},t.getTipElement=function(){return this.tip=this.tip||p(this.config.template)[0],this.tip},t.setContent=function(){var e=p(this.getTipElement());this.setElementContent(e.find(si),this.getTitle());var t=this._getContent();"function"==typeof t&&(t=t.call(this.element)),this.setElementContent(e.find(ai),t),e.removeClass(oi+" "+ri)},t._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},t._cleanTipClass=function(){var e=p(this.getTipElement()),t=e.attr("class").match(ti);null!==t&&0<t.length&&e.removeClass(t.join(""))},i._jQueryInterface=function(n){return this.each(function(){var e=p(this).data($n),t="object"==typeof n?n:null;if((e||!/dispose|hide/.test(n))&&(e||(e=new i(this,t),p(this).data($n,e)),"string"==typeof n)){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return ni}},{key:"NAME",get:function(){return Gn}},{key:"DATA_KEY",get:function(){return $n}},{key:"Event",get:function(){return li}},{key:"EVENT_KEY",get:function(){return Jn}},{key:"DefaultType",get:function(){return ii}}]),i}(Xn);p.fn[Gn]=ci._jQueryInterface,p.fn[Gn].Constructor=ci,p.fn[Gn].noConflict=function(){return p.fn[Gn]=Zn,ci._jQueryInterface};var hi="scrollspy",ui="bs.scrollspy",fi="."+ui,di=p.fn[hi],pi={offset:10,method:"auto",target:""},mi={offset:"number",method:"string",target:"(string|element)"},gi={ACTIVATE:"activate"+fi,SCROLL:"scroll"+fi,LOAD_DATA_API:"load"+fi+".data-api"},_i="dropdown-item",vi="active",yi='[data-spy="scroll"]',Ei=".nav, .list-group",bi=".nav-link",wi=".nav-item",Ti=".list-group-item",Ci=".dropdown",Si=".dropdown-item",Di=".dropdown-toggle",Ii="offset",Ai="position",Oi=function(){function n(e,t){var n=this;this._element=e,this._scrollElement="BODY"===e.tagName?window:e,this._config=this._getConfig(t),this._selector=this._config.target+" "+bi+","+this._config.target+" "+Ti+","+this._config.target+" "+Si,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,p(this._scrollElement).on(gi.SCROLL,function(e){return n._process(e)}),this.refresh(),this._process()}var e=n.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?Ii:Ai,o="auto"===this._config.method?e:this._config.method,r=o===Ai?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map(function(e){var t,n=m.getSelectorFromElement(e);if(n&&(t=document.querySelector(n)),t){var i=t.getBoundingClientRect();if(i.width||i.height)return[p(t)[o]().top+r,n]}return null}).filter(function(e){return e}).sort(function(e,t){return e[0]-t[0]}).forEach(function(e){t._offsets.push(e[0]),t._targets.push(e[1])})},e.dispose=function(){p.removeData(this._element,ui),p(this._scrollElement).off(fi),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(e){if("string"!=typeof(e=l({},pi,{},"object"==typeof e&&e?e:{})).target){var t=p(e.target).attr("id");t||(t=m.getUID(hi),p(e.target).attr("id",t)),e.target="#"+t}return m.typeCheckConfig(hi,e,mi),e},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var e=this._getScrollTop()+this._config.offset,t=this._getScrollHeight(),n=this._config.offset+t-this._getOffsetHeight();if(this._scrollHeight!==t&&this.refresh(),n<=e){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&e<this._offsets[0]&&0<this._offsets[0])return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&e>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||e<this._offsets[o+1])&&this._activate(this._targets[o])}}},e._activate=function(t){this._activeTarget=t,this._clear();var e=this._selector.split(",").map(function(e){return e+'[data-target="'+t+'"],'+e+'[href="'+t+'"]'}),n=p([].slice.call(document.querySelectorAll(e.join(","))));n.hasClass(_i)?(n.closest(Ci).find(Di).addClass(vi),n.addClass(vi)):(n.addClass(vi),n.parents(Ei).prev(bi+", "+Ti).addClass(vi),n.parents(Ei).prev(wi).children(bi).addClass(vi)),p(this._scrollElement).trigger(gi.ACTIVATE,{relatedTarget:t})},e._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter(function(e){return e.classList.contains(vi)}).forEach(function(e){return e.classList.remove(vi)})},n._jQueryInterface=function(t){return this.each(function(){var e=p(this).data(ui);if(e||(e=new n(this,"object"==typeof t&&t),p(this).data(ui,e)),"string"==typeof t){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}})},s(n,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"Default",get:function(){return pi}}]),n}();p(window).on(gi.LOAD_DATA_API,function(){for(var e=[].slice.call(document.querySelectorAll(yi)),t=e.length;t--;){var n=p(e[t]);Oi._jQueryInterface.call(n,n.data())}}),p.fn[hi]=Oi._jQueryInterface,p.fn[hi].Constructor=Oi,p.fn[hi].noConflict=function(){return p.fn[hi]=di,Oi._jQueryInterface};var Ni="bs.tab",ki="."+Ni,Li=p.fn.tab,Pi={HIDE:"hide"+ki,HIDDEN:"hidden"+ki,SHOW:"show"+ki,SHOWN:"shown"+ki,CLICK_DATA_API:"click"+ki+".data-api"},xi="dropdown-menu",ji="active",Hi="disabled",Ri="fade",Fi="show",Mi=".dropdown",Wi=".nav, .list-group",Ui=".active",Bi="> li > .active",qi='[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',Ki=".dropdown-toggle",Qi="> .dropdown-menu .active",Vi=function(){function i(e){this._element=e}var e=i.prototype;return e.show=function(){var n=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&p(this._element).hasClass(ji)||p(this._element).hasClass(Hi))){var e,i,t=p(this._element).closest(Wi)[0],o=m.getSelectorFromElement(this._element);if(t){var r="UL"===t.nodeName||"OL"===t.nodeName?Bi:Ui;i=(i=p.makeArray(p(t).find(r)))[i.length-1]}var s=p.Event(Pi.HIDE,{relatedTarget:this._element}),a=p.Event(Pi.SHOW,{relatedTarget:i});if(i&&p(i).trigger(s),p(this._element).trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){o&&(e=document.querySelector(o)),this._activate(this._element,t);var l=function(){var e=p.Event(Pi.HIDDEN,{relatedTarget:n._element}),t=p.Event(Pi.SHOWN,{relatedTarget:i});p(i).trigger(e),p(n._element).trigger(t)};e?this._activate(e,e.parentNode,l):l()}}},e.dispose=function(){p.removeData(this._element,Ni),this._element=null},e._activate=function(e,t,n){function i(){return o._transitionComplete(e,r,n)}var o=this,r=(!t||"UL"!==t.nodeName&&"OL"!==t.nodeName?p(t).children(Ui):p(t).find(Bi))[0],s=n&&r&&p(r).hasClass(Ri);if(r&&s){var a=m.getTransitionDurationFromElement(r);p(r).removeClass(Fi).one(m.TRANSITION_END,i).emulateTransitionEnd(a)}else i()},e._transitionComplete=function(e,t,n){if(t){p(t).removeClass(ji);var i=p(t.parentNode).find(Qi)[0];i&&p(i).removeClass(ji),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!1)}if(p(e).addClass(ji),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),m.reflow(e),e.classList.contains(Ri)&&e.classList.add(Fi),e.parentNode&&p(e.parentNode).hasClass(xi)){var o=p(e).closest(Mi)[0];if(o){var r=[].slice.call(o.querySelectorAll(Ki));p(r).addClass(ji)}e.setAttribute("aria-expanded",!0)}n&&n()},i._jQueryInterface=function(n){return this.each(function(){var e=p(this),t=e.data(Ni);if(t||(t=new i(this),e.data(Ni,t)),"string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}}]),i}();p(document).on(Pi.CLICK_DATA_API,qi,function(e){e.preventDefault(),Vi._jQueryInterface.call(p(this),"show")}),p.fn.tab=Vi._jQueryInterface,p.fn.tab.Constructor=Vi,p.fn.tab.noConflict=function(){return p.fn.tab=Li,Vi._jQueryInterface};var Yi="toast",zi="bs.toast",Xi="."+zi,Gi=p.fn[Yi],$i={CLICK_DISMISS:"click.dismiss"+Xi,HIDE:"hide"+Xi,HIDDEN:"hidden"+Xi,SHOW:"show"+Xi,SHOWN:"shown"+Xi},Ji="fade",Zi="hide",eo="show",to="showing",no={animation:"boolean",autohide:"boolean",delay:"number"},io={animation:!0,autohide:!0,delay:500},oo='[data-dismiss="toast"]',ro=function(){function i(e,t){this._element=e,this._config=this._getConfig(t),this._timeout=null,this._setListeners()}var e=i.prototype;return e.show=function(){var e=this,t=p.Event($i.SHOW);if(p(this._element).trigger(t),!t.isDefaultPrevented()){this._config.animation&&this._element.classList.add(Ji);var n=function(){e._element.classList.remove(to),e._element.classList.add(eo),p(e._element).trigger($i.SHOWN),e._config.autohide&&(e._timeout=setTimeout(function(){e.hide()},e._config.delay))};if(this._element.classList.remove(Zi),m.reflow(this._element),this._element.classList.add(to),this._config.animation){var i=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,n).emulateTransitionEnd(i)}else n()}},e.hide=function(){if(this._element.classList.contains(eo)){var e=p.Event($i.HIDE);p(this._element).trigger(e),e.isDefaultPrevented()||this._close()}},e.dispose=function(){clearTimeout(this._timeout),this._timeout=null,this._element.classList.contains(eo)&&this._element.classList.remove(eo),p(this._element).off($i.CLICK_DISMISS),p.removeData(this._element,zi),this._element=null,this._config=null},e._getConfig=function(e){return e=l({},io,{},p(this._element).data(),{},"object"==typeof e&&e?e:{}),m.typeCheckConfig(Yi,e,this.constructor.DefaultType),e},e._setListeners=function(){var e=this;p(this._element).on($i.CLICK_DISMISS,oo,function(){return e.hide()})},e._close=function(){function e(){t._element.classList.add(Zi),p(t._element).trigger($i.HIDDEN)}var t=this;if(this._element.classList.remove(eo),this._config.animation){var n=m.getTransitionDurationFromElement(this._element);p(this._element).one(m.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},i._jQueryInterface=function(n){return this.each(function(){var e=p(this),t=e.data(zi);if(t||(t=new i(this,"object"==typeof n&&n),e.data(zi,t)),"string"==typeof n){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n](this)}})},s(i,null,[{key:"VERSION",get:function(){return"4.4.1"}},{key:"DefaultType",get:function(){return no}},{key:"Default",get:function(){return io}}]),i}();p.fn[Yi]=ro._jQueryInterface,p.fn[Yi].Constructor=ro,p.fn[Yi].noConflict=function(){return p.fn[Yi]=Gi,ro._jQueryInterface},e.Alert=_,e.Button=x,e.Carousel=he,e.Collapse=De,e.Dropdown=en,e.Modal=wn,e.Popover=ci,e.Scrollspy=Oi,e.Tab=Vi,e.Toast=ro,e.Tooltip=Xn,e.Util=m,Object.defineProperty(e,"__esModule",{value:!0})});
7
+ //# sourceMappingURL=bootstrap.bundle.min.js.map
assets/bootstrap3/css/bootstrap.css ADDED
@@ -0,0 +1,5570 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ /*!
3
+ * Bootstrap v3.3.4 (http://getbootstrap.com)
4
+ * Copyright 2011-2015 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */
7
+ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
8
+ /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
9
+
10
+ .w3eden html {
11
+ font-family: sans-serif;
12
+ -webkit-text-size-adjust: 100%;
13
+ -ms-text-size-adjust: 100%;
14
+ }
15
+ .w3eden body {
16
+ margin: 0;
17
+ }
18
+ .w3eden article,
19
+ .w3eden aside,
20
+ .w3eden details,
21
+ .w3eden figcaption,
22
+ .w3eden figure,
23
+ .w3eden footer,
24
+ .w3eden header,
25
+ .w3eden hgroup,
26
+ .w3eden main,
27
+ .w3eden menu,
28
+ .w3eden nav,
29
+ .w3eden section,
30
+ .w3eden summary {
31
+ display: block;
32
+ }
33
+ .w3eden audio,
34
+ .w3eden canvas,
35
+ .w3eden progress,
36
+ .w3eden video {
37
+ display: inline-block;
38
+ vertical-align: baseline;
39
+ }
40
+ .w3eden audio:not([controls]) {
41
+ display: none;
42
+ height: 0;
43
+ }
44
+ .w3eden [hidden],
45
+ .w3eden template {
46
+ display: none;
47
+ }
48
+ .w3eden a {
49
+ background-color: transparent;
50
+ }
51
+ .w3eden a:active,
52
+ .w3eden a:hover {
53
+ outline: 0;
54
+ }
55
+ .w3eden abbr[title] {
56
+ border-bottom: 1px dotted;
57
+ }
58
+ .w3eden b,
59
+ .w3eden strong {
60
+ font-weight: 700;
61
+ }
62
+ .w3eden dfn {
63
+ font-style: italic;
64
+ }
65
+ .w3eden h1 {
66
+ margin: .67em 0;
67
+ font-size: 2em;
68
+ }
69
+ .w3eden mark {
70
+ color: #000;
71
+ background: #ffff00;
72
+ }
73
+ .w3eden small {
74
+ font-size: 80%;
75
+ }
76
+ .w3eden sub,
77
+ .w3eden sup {
78
+ position: relative;
79
+ font-size: 75%;
80
+ line-height: 0;
81
+ vertical-align: baseline;
82
+ }
83
+ .w3eden sup {
84
+ top: -0.5em;
85
+ }
86
+ .w3eden sub {
87
+ bottom: -0.25em;
88
+ }
89
+ .w3eden img {
90
+ border: 0;
91
+ }
92
+ .w3eden svg:not(:root) {
93
+ overflow: hidden;
94
+ }
95
+ .w3eden figure {
96
+ margin: 1em 40px;
97
+ }
98
+ .w3eden hr {
99
+ height: 0;
100
+ -webkit-box-sizing: content-box;
101
+ -moz-box-sizing: content-box;
102
+ box-sizing: content-box;
103
+ }
104
+ .w3eden pre {
105
+ overflow: auto;
106
+ }
107
+ .w3eden code,
108
+ .w3eden kbd,
109
+ .w3eden pre,
110
+ .w3eden samp {
111
+ font-family: monospace,monospace;
112
+ font-size: 1em;
113
+ }
114
+ .w3eden button,
115
+ .w3eden input,
116
+ .w3eden optgroup,
117
+ .w3eden select,
118
+ .w3eden textarea {
119
+ margin: 0;
120
+ font: inherit;
121
+ color: inherit;
122
+ }
123
+ .w3eden button {
124
+ overflow: visible;
125
+ }
126
+ .w3eden button,
127
+ .w3eden select {
128
+ text-transform: none;
129
+ }
130
+ .w3eden button,
131
+ .w3eden html input[type=button],
132
+ .w3eden input[type=reset],
133
+ .w3eden input[type=submit] {
134
+ -webkit-appearance: button;
135
+ cursor: pointer;
136
+ }
137
+ .w3eden button[disabled],
138
+ .w3eden html input[disabled] {
139
+ cursor: default;
140
+ }
141
+ .w3eden button::-moz-focus-inner,
142
+ .w3eden input::-moz-focus-inner {
143
+ padding: 0;
144
+ border: 0;
145
+ }
146
+ .w3eden input {
147
+ line-height: normal;
148
+ }
149
+ .w3eden input[type=checkbox],
150
+ .w3eden input[type=radio] {
151
+ -webkit-box-sizing: border-box;
152
+ -moz-box-sizing: border-box;
153
+ box-sizing: border-box;
154
+ padding: 0;
155
+ }
156
+ .w3eden input[type=number]::-webkit-inner-spin-button,
157
+ .w3eden input[type=number]::-webkit-outer-spin-button {
158
+ height: auto;
159
+ }
160
+ .w3eden input[type=search] {
161
+ -webkit-box-sizing: content-box;
162
+ -moz-box-sizing: content-box;
163
+ box-sizing: content-box;
164
+ -webkit-appearance: textfield;
165
+ }
166
+ .w3eden input[type=search]::-webkit-search-cancel-button,
167
+ .w3eden input[type=search]::-webkit-search-decoration {
168
+ -webkit-appearance: none;
169
+ }
170
+ .w3eden fieldset {
171
+ padding: .35em .625em .75em;
172
+ margin: 0 2px;
173
+ border: 1px solid #c0c0c0;
174
+ }
175
+ .w3eden legend {
176
+ padding: 0;
177
+ border: 0;
178
+ }
179
+ .w3eden textarea {
180
+ overflow: auto;
181
+ }
182
+ .w3eden optgroup {
183
+ font-weight: 700;
184
+ }
185
+ .w3eden table {
186
+ border-spacing: 0;
187
+ border-collapse: collapse;
188
+ }
189
+ .w3eden td,
190
+ .w3eden th {
191
+ padding: 0;
192
+ }
193
+ @media print {
194
+ .w3eden *,
195
+ .w3eden :after,
196
+ .w3eden :before {
197
+ color: #000!important;
198
+ text-shadow: none!important;
199
+ background: 0 0!important;
200
+ -webkit-box-shadow: none!important;
201
+ box-shadow: none !important;
202
+ }
203
+ .w3eden a,
204
+ .w3eden a:visited {
205
+ text-decoration: underline;
206
+ }
207
+ .w3eden a[href]:after {
208
+ content: " (" attr(href) ")";
209
+ }
210
+ .w3eden abbr[title]:after {
211
+ content: " (" attr(title) ")";
212
+ }
213
+ .w3eden a[href^="javascript:"]:after,
214
+ .w3eden a[href^="#"]:after {
215
+ content: "";
216
+ }
217
+ .w3eden blockquote,
218
+ .w3eden pre {
219
+ border: 1px solid #999;
220
+ page-break-inside: avoid;
221
+ }
222
+ .w3eden thead {
223
+ display: table-header-group;
224
+ }
225
+ .w3eden img,
226
+ .w3eden tr {
227
+ page-break-inside: avoid;
228
+ }
229
+ .w3eden img {
230
+ max-width: 100% !important;
231
+ }
232
+ .w3eden h2,
233
+ .w3eden h3,
234
+ .w3eden p {
235
+ orphans: 3;
236
+ widows: 3;
237
+ }
238
+ .w3eden h2,
239
+ .w3eden h3 {
240
+ page-break-after: avoid;
241
+ }
242
+ .w3eden select {
243
+ background: #ffffff !important;
244
+ }
245
+ .w3eden .navbar {
246
+ display: none;
247
+ }
248
+ .w3eden .btn > .caret,
249
+ .w3eden .dropup > .btn > .caret {
250
+ border-top-color: #000000 !important;
251
+ }
252
+ .w3eden .label {
253
+ border: 1px solid #000000;
254
+ }
255
+ .w3eden .table {
256
+ border-collapse: collapse !important;
257
+ }
258
+ .w3eden .table td,
259
+ .w3eden .table th {
260
+ background-color: #ffffff !important;
261
+ }
262
+ .w3eden .table-bordered td,
263
+ .w3eden .table-bordered th {
264
+ border: 1px solid #dddddd !important;
265
+ }
266
+ }
267
+
268
+ .w3eden * {
269
+ -webkit-box-sizing: border-box;
270
+ -moz-box-sizing: border-box;
271
+ box-sizing: border-box;
272
+ }
273
+ .w3eden :after,
274
+ .w3eden :before {
275
+ -webkit-box-sizing: border-box;
276
+ -moz-box-sizing: border-box;
277
+ box-sizing: border-box;
278
+ }
279
+ .w3eden html {
280
+ font-size: 10px;
281
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
282
+ }
283
+ .w3eden body {
284
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
285
+ font-size: 14px;
286
+ line-height: 1.42857143;
287
+ color: #333;
288
+ background-color: #ffffff;
289
+ }
290
+ .w3eden button,
291
+ .w3eden input,
292
+ .w3eden select,
293
+ .w3eden textarea {
294
+ font-family: inherit;
295
+ font-size: inherit;
296
+ line-height: inherit;
297
+ }
298
+ .w3eden a {
299
+ color: #337ab7;
300
+ text-decoration: none;
301
+ }
302
+ .w3eden a:focus,
303
+ .w3eden a:hover {
304
+ color: #23527c;
305
+ text-decoration: underline;
306
+ }
307
+ .w3eden a:focus {
308
+ outline: thin dotted;
309
+ outline: 5px auto -webkit-focus-ring-color;
310
+ outline-offset: -2px;
311
+ }
312
+ .w3eden figure {
313
+ margin: 0;
314
+ }
315
+ .w3eden img {
316
+ vertical-align: middle;
317
+ }
318
+ .w3eden .carousel-inner > .item > a > img,
319
+ .w3eden .carousel-inner > .item > img,
320
+ .w3eden .img-responsive,
321
+ .w3eden .thumbnail a > img,
322
+ .w3eden .thumbnail > img {
323
+ display: block;
324
+ max-width: 100%;
325
+ height: auto;
326
+ }
327
+ .w3eden .img-rounded {
328
+ border-radius: 6px;
329
+ }
330
+ .w3eden .img-thumbnail {
331
+ display: inline-block;
332
+ max-width: 100%;
333
+ height: auto;
334
+ padding: 4px;
335
+ line-height: 1.42857143;
336
+ background-color: #fff;
337
+ border: 1px solid #ddd;
338
+ border-radius: 4px;
339
+ -webkit-transition: all 0.2s ease-in-out;
340
+ -o-transition: all 0.2s ease-in-out;
341
+ transition: all 0.2s ease-in-out;
342
+ }
343
+ .w3eden .img-circle {
344
+ border-radius: 50%;
345
+ }
346
+ .w3eden hr {
347
+ margin-top: 20px;
348
+ margin-bottom: 20px;
349
+ border: 0;
350
+ border-top: 1px solid #eeeeee;
351
+ }
352
+ .w3eden .sr-only {
353
+ position: absolute;
354
+ width: 1px;
355
+ height: 1px;
356
+ padding: 0;
357
+ margin: -1px;
358
+ overflow: hidden;
359
+ clip: rect(0, 0, 0, 0);
360
+ border: 0;
361
+ }
362
+ .w3eden .sr-only-focusable:active,
363
+ .w3eden .sr-only-focusable:focus {
364
+ position: static;
365
+ width: auto;
366
+ height: auto;
367
+ margin: 0;
368
+ overflow: visible;
369
+ clip: auto;
370
+ }
371
+ .w3eden [role=button] {
372
+ cursor: pointer;
373
+ }
374
+ .w3eden .h1,
375
+ .w3eden .h2,
376
+ .w3eden .h3,
377
+ .w3eden .h4,
378
+ .w3eden .h5,
379
+ .w3eden .h6,
380
+ .w3eden h1,
381
+ .w3eden h2,
382
+ .w3eden h3,
383
+ .w3eden h4,
384
+ .w3eden h5,
385
+ .w3eden h6 {
386
+ font-family: inherit;
387
+ font-weight: 500;
388
+ line-height: 1.1;
389
+ color: inherit;
390
+ }
391
+ .w3eden .h1 .small,
392
+ .w3eden .h1 small,
393
+ .w3eden .h2 .small,
394
+ .w3eden .h2 small,
395
+ .w3eden .h3 .small,
396
+ .w3eden .h3 small,
397
+ .w3eden .h4 .small,
398
+ .w3eden .h4 small,
399
+ .w3eden .h5 .small,
400
+ .w3eden .h5 small,
401
+ .w3eden .h6 .small,
402
+ .w3eden .h6 small,
403
+ .w3eden h1 .small,
404
+ .w3eden h1 small,
405
+ .w3eden h2 .small,
406
+ .w3eden h2 small,
407
+ .w3eden h3 .small,
408
+ .w3eden h3 small,
409
+ .w3eden h4 .small,
410
+ .w3eden h4 small,
411
+ .w3eden h5 .small,
412
+ .w3eden h5 small,
413
+ .w3eden h6 .small,
414
+ .w3eden h6 small {
415
+ font-weight: 400;
416
+ line-height: 1;
417
+ color: #777777;
418
+ }
419
+ .w3eden .h1,
420
+ .w3eden .h2,
421
+ .w3eden .h3,
422
+ .w3eden h1,
423
+ .w3eden h2,
424
+ .w3eden h3 {
425
+ margin-top: 20px;
426
+ margin-bottom: 10px;
427
+ }
428
+ .w3eden .h1 .small,
429
+ .w3eden .h1 small,
430
+ .w3eden .h2 .small,
431
+ .w3eden .h2 small,
432
+ .w3eden .h3 .small,
433
+ .w3eden .h3 small,
434
+ .w3eden h1 .small,
435
+ .w3eden h1 small,
436
+ .w3eden h2 .small,
437
+ .w3eden h2 small,
438
+ .w3eden h3 .small,
439
+ .w3eden h3 small {
440
+ font-size: 65%;
441
+ }
442
+ .w3eden .h4,
443
+ .w3eden .h5,
444
+ .w3eden .h6,
445
+ .w3eden h4,
446
+ .w3eden h5,
447
+ .w3eden h6 {
448
+ margin-top: 10px;
449
+ margin-bottom: 10px;
450
+ }
451
+ .w3eden .h4 .small,
452
+ .w3eden .h4 small,
453
+ .w3eden .h5 .small,
454
+ .w3eden .h5 small,
455
+ .w3eden .h6 .small,
456
+ .w3eden .h6 small,
457
+ .w3eden h4 .small,
458
+ .w3eden h4 small,
459
+ .w3eden h5 .small,
460
+ .w3eden h5 small,
461
+ .w3eden h6 .small,
462
+ .w3eden h6 small {
463
+ font-size: 75%;
464
+ }
465
+ .w3eden .h1,
466
+ .w3eden h1 {
467
+ font-size: 36px;
468
+ }
469
+ .w3eden .h2,
470
+ .w3eden h2 {
471
+ font-size: 30px;
472
+ }
473
+ .w3eden .h3,
474
+ .w3eden h3 {
475
+ font-size: 24px;
476
+ }
477
+ .w3eden .h4,
478
+ .w3eden h4 {
479
+ font-size: 18px;
480
+ }
481
+ .w3eden .h5,
482
+ .w3eden h5 {
483
+ font-size: 14px;
484
+ }
485
+ .w3eden .h6,
486
+ .w3eden h6 {
487
+ font-size: 12px;
488
+ }
489
+ .w3eden p {
490
+ margin: 0 0 10px;
491
+ }
492
+ .w3eden .lead {
493
+ margin-bottom: 20px;
494
+ font-size: 16px;
495
+ font-weight: 300;
496
+ line-height: 1.4;
497
+ }
498
+ @media (min-width: 768px) {
499
+ .w3eden .lead {
500
+ font-size: 21px;
501
+ }
502
+ }
503
+ .w3eden .small,
504
+ .w3eden small {
505
+ font-size: 85%;
506
+ }
507
+ .w3eden .mark,
508
+ .w3eden mark {
509
+ padding: .2em;
510
+ background-color: #fcf8e3;
511
+ }
512
+ .w3eden .text-left {
513
+ text-align: left;
514
+ }
515
+ .w3eden .text-right {
516
+ text-align: right;
517
+ }
518
+ .w3eden .text-center {
519
+ text-align: center;
520
+ }
521
+ .w3eden .text-justify {
522
+ text-align: justify;
523
+ }
524
+ .w3eden .text-nowrap {
525
+ white-space: nowrap;
526
+ }
527
+ .w3eden .text-lowercase {
528
+ text-transform: lowercase;
529
+ }
530
+ .w3eden .text-uppercase {
531
+ text-transform: uppercase;
532
+ }
533
+ .w3eden .text-capitalize {
534
+ text-transform: capitalize;
535
+ }
536
+ .w3eden .text-muted {
537
+ color: #777777;
538
+ }
539
+ .w3eden .text-primary {
540
+ color: #337ab7;
541
+ }
542
+ .w3eden a.text-primary:hover {
543
+ color: #286090;
544
+ }
545
+ .w3eden .text-success {
546
+ color: #3c763d;
547
+ }
548
+ .w3eden a.text-success:hover {
549
+ color: #2b542c;
550
+ }
551
+ .w3eden .text-info {
552
+ color: #31708f;
553
+ }
554
+ .w3eden a.text-info:hover {
555
+ color: #245269;
556
+ }
557
+ .w3eden .text-warning {
558
+ color: #8a6d3b;
559
+ }
560
+ .w3eden a.text-warning:hover {
561
+ color: #66512c;
562
+ }
563
+ .w3eden .text-danger {
564
+ color: #a94442;
565
+ }
566
+ .w3eden a.text-danger:hover {
567
+ color: #843534;
568
+ }
569
+ .w3eden .bg-primary {
570
+ color: #fff;
571
+ background-color: #337ab7;
572
+ }
573
+ .w3eden a.bg-primary:hover {
574
+ background-color: #286090;
575
+ }
576
+ .w3eden .bg-success {
577
+ background-color: #dff0d8;
578
+ }
579
+ .w3eden a.bg-success:hover {
580
+ background-color: #c1e2b3;
581
+ }
582
+ .w3eden .bg-info {
583
+ background-color: #d9edf7;
584
+ }
585
+ .w3eden a.bg-info:hover {
586
+ background-color: #afd9ee;
587
+ }
588
+ .w3eden .bg-warning {
589
+ background-color: #fcf8e3;
590
+ }
591
+ .w3eden a.bg-warning:hover {
592
+ background-color: #f7ecb5;
593
+ }
594
+ .w3eden .bg-danger {
595
+ background-color: #f2dede;
596
+ }
597
+ .w3eden a.bg-danger:hover {
598
+ background-color: #e4b9b9;
599
+ }
600
+ .w3eden .page-header {
601
+ padding-bottom: 9px;
602
+ margin: 40px 0 20px;
603
+ border-bottom: 1px solid #eeeeee;
604
+ }
605
+ .w3eden ol,
606
+ .w3eden ul {
607
+ margin-top: 0;
608
+ margin-bottom: 10px;
609
+ }
610
+ .w3eden ol ol,
611
+ .w3eden ol ul,
612
+ .w3eden ul ol,
613
+ .w3eden ul ul {
614
+ margin-bottom: 0;
615
+ }
616
+ .w3eden .list-unstyled {
617
+ padding-left: 0;
618
+ list-style: none;
619
+ }
620
+ .w3eden .list-inline {
621
+ padding-left: 0;
622
+ margin-left: -5px;
623
+ list-style: none;
624
+ }
625
+ .w3eden .list-inline > li {
626
+ display: inline-block;
627
+ padding-right: 5px;
628
+ padding-left: 5px;
629
+ }
630
+ .w3eden dl {
631
+ margin-top: 0;
632
+ margin-bottom: 20px;
633
+ }
634
+ .w3eden dd,
635
+ .w3eden dt {
636
+ line-height: 1.42857143;
637
+ }
638
+ .w3eden dt {
639
+ font-weight: 700;
640
+ }
641
+ .w3eden dd {
642
+ margin-left: 0;
643
+ }
644
+ @media (min-width: 768px) {
645
+ .w3eden .dl-horizontal dt {
646
+ float: left;
647
+ width: 160px;
648
+ overflow: hidden;
649
+ clear: left;
650
+ text-align: right;
651
+ text-overflow: ellipsis;
652
+ white-space: nowrap;
653
+ }
654
+ .w3eden .dl-horizontal dd {
655
+ margin-left: 180px;
656
+ }
657
+ }
658
+ .w3eden abbr[data-original-title],
659
+ .w3eden abbr[title] {
660
+ cursor: help;
661
+ border-bottom: 1px dotted #777777;
662
+ }
663
+ .w3eden .initialism {
664
+ font-size: 90%;
665
+ text-transform: uppercase;
666
+ }
667
+ .w3eden blockquote {
668
+ padding: 10px 20px;
669
+ margin: 0 0 20px;
670
+ font-size: 17.5px;
671
+ border-left: 5px solid #eeeeee;
672
+ }
673
+ .w3eden blockquote ol:last-child,
674
+ .w3eden blockquote p:last-child,
675
+ .w3eden blockquote ul:last-child {
676
+ margin-bottom: 0;
677
+ }
678
+ .w3eden blockquote .small,
679
+ .w3eden blockquote footer,
680
+ .w3eden blockquote small {
681
+ display: block;
682
+ font-size: 80%;
683
+ line-height: 1.42857143;
684
+ color: #777777;
685
+ }
686
+ .w3eden blockquote .small:before,
687
+ .w3eden blockquote footer:before,
688
+ .w3eden blockquote small:before {
689
+ content: '\2014 \00A0';
690
+ }
691
+ .w3eden code,
692
+ .w3eden kbd,
693
+ .w3eden pre,
694
+ .w3eden samp {
695
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
696
+ }
697
+ .w3eden code {
698
+ padding: 2px 4px;
699
+ font-size: 90%;
700
+ color: #c7254e;
701
+ background-color: #f9f2f4;
702
+ border-radius: 4px;
703
+ }
704
+ .w3eden kbd {
705
+ padding: 2px 4px;
706
+ font-size: 90%;
707
+ color: #fff;
708
+ background-color: #333;
709
+ border-radius: 3px;
710
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
711
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
712
+ }
713
+ .w3eden kbd kbd {
714
+ padding: 0;
715
+ font-size: 100%;
716
+ font-weight: 700;
717
+ -webkit-box-shadow: none;
718
+ box-shadow: none;
719
+ }
720
+ .w3eden pre {
721
+ display: block;
722
+ padding: 9.5px;
723
+ margin: 0 0 10px;
724
+ font-size: 13px;
725
+ line-height: 1.42857143;
726
+ color: #333;
727
+ word-break: break-all;
728
+ word-wrap: break-word;
729
+ background-color: #f5f5f5;
730
+ border: 1px solid #ccc;
731
+ border-radius: 4px;
732
+ }
733
+ .w3eden pre code {
734
+ padding: 0;
735
+ font-size: inherit;
736
+ color: inherit;
737
+ white-space: pre-wrap;
738
+ background-color: transparent;
739
+ border-radius: 0;
740
+ }
741
+ .w3eden .pre-scrollable {
742
+ max-height: 340px;
743
+ overflow-y: scroll;
744
+ }
745
+ .w3eden .container {
746
+ padding-right: 15px;
747
+ padding-left: 15px;
748
+ margin-right: auto;
749
+ margin-left: auto;
750
+ }
751
+ @media (min-width: 768px) {
752
+ .w3eden .container {
753
+ width: 750px;
754
+ }
755
+ }
756
+ @media (min-width: 992px) {
757
+ .w3eden .container {
758
+ width: 970px;
759
+ }
760
+ }
761
+ @media (min-width: 1200px) {
762
+ .w3eden .container {
763
+ width: 1170px;
764
+ }
765
+ }
766
+ .w3eden .container-fluid {
767
+ padding-right: 15px;
768
+ padding-left: 15px;
769
+ margin-right: auto;
770
+ margin-left: auto;
771
+ }
772
+ .w3eden .row {
773
+ margin-right: -15px;
774
+ margin-left: -15px;
775
+ }
776
+ .w3eden .col-lg-1,
777
+ .w3eden .col-lg-10,
778
+ .w3eden .col-lg-11,
779
+ .w3eden .col-lg-12,
780
+ .w3eden .col-lg-2,
781
+ .w3eden .col-lg-3,
782
+ .w3eden .col-lg-4,
783
+ .w3eden .col-lg-5,
784
+ .w3eden .col-lg-6,
785
+ .w3eden .col-lg-7,
786
+ .w3eden .col-lg-8,
787
+ .w3eden .col-lg-9,
788
+ .w3eden .col-md-1,
789
+ .w3eden .col-md-10,
790
+ .w3eden .col-md-11,
791
+ .w3eden .col-md-12,
792
+ .w3eden .col-md-2,
793
+ .w3eden .col-md-3,
794
+ .w3eden .col-md-4,
795
+ .w3eden .col-md-5,
796
+ .w3eden .col-md-6,
797
+ .w3eden .col-md-7,
798
+ .w3eden .col-md-8,
799
+ .w3eden .col-md-9,
800
+ .w3eden .col-sm-1,
801
+ .w3eden .col-sm-10,
802
+ .w3eden .col-sm-11,
803
+ .w3eden .col-sm-12,
804
+ .w3eden .col-sm-2,
805
+ .w3eden .col-sm-3,
806
+ .w3eden .col-sm-4,
807
+ .w3eden .col-sm-5,
808
+ .w3eden .col-sm-6,
809
+ .w3eden .col-sm-7,
810
+ .w3eden .col-sm-8,
811
+ .w3eden .col-sm-9,
812
+ .w3eden .col-xs-1,
813
+ .w3eden .col-xs-10,
814
+ .w3eden .col-xs-11,
815
+ .w3eden .col-xs-12,
816
+ .w3eden .col-xs-2,
817
+ .w3eden .col-xs-3,
818
+ .w3eden .col-xs-4,
819
+ .w3eden .col-xs-5,
820
+ .w3eden .col-xs-6,
821
+ .w3eden .col-xs-7,
822
+ .w3eden .col-xs-8,
823
+ .w3eden .col-xs-9 {
824
+ position: relative;
825
+ min-height: 1px;
826
+ padding-right: 15px;
827
+ padding-left: 15px;
828
+ }
829
+ .w3eden .col-xs-1,
830
+ .w3eden .col-xs-10,
831
+ .w3eden .col-xs-11,
832
+ .w3eden .col-xs-12,
833
+ .w3eden .col-xs-2,
834
+ .w3eden .col-xs-3,
835
+ .w3eden .col-xs-4,
836
+ .w3eden .col-xs-5,
837
+ .w3eden .col-xs-6,
838
+ .w3eden .col-xs-7,
839
+ .w3eden .col-xs-8,
840
+ .w3eden .col-xs-9 {
841
+ float: left;
842
+ }
843
+ .w3eden .col-xs-12 {
844
+ width: 100%;
845
+ }
846
+ .w3eden .col-xs-11 {
847
+ width: 91.66666667%;
848
+ }
849
+ .w3eden .col-xs-10 {
850
+ width: 83.33333333%;
851
+ }
852
+ .w3eden .col-xs-9 {
853
+ width: 75%;
854
+ }
855
+ .w3eden .col-xs-8 {
856
+ width: 66.66666667%;
857
+ }
858
+ .w3eden .col-xs-7 {
859
+ width: 58.33333333%;
860
+ }
861
+ .w3eden .col-xs-6 {
862
+ width: 50%;
863
+ }
864
+ .w3eden .col-xs-5 {
865
+ width: 41.66666667%;
866
+ }
867
+ .w3eden .col-xs-4 {
868
+ width: 33.33333333%;
869
+ }
870
+ .w3eden .col-xs-3 {
871
+ width: 25%;
872
+ }
873
+ .w3eden .col-xs-2 {
874
+ width: 16.66666667%;
875
+ }
876
+ .w3eden .col-xs-1 {
877
+ width: 8.33333333%;
878
+ }
879
+ .w3eden .col-xs-pull-12 {
880
+ right: 100%;
881
+ }
882
+ .w3eden .col-xs-pull-11 {
883
+ right: 91.66666667%;
884
+ }
885
+ .w3eden .col-xs-pull-10 {
886
+ right: 83.33333333%;
887
+ }
888
+ .w3eden .col-xs-pull-9 {
889
+ right: 75%;
890
+ }
891
+ .w3eden .col-xs-pull-8 {
892
+ right: 66.66666667%;
893
+ }
894
+ .w3eden .col-xs-pull-7 {
895
+ right: 58.33333333%;
896
+ }
897
+ .w3eden .col-xs-pull-6 {
898
+ right: 50%;
899
+ }
900
+ .w3eden .col-xs-pull-5 {
901
+ right: 41.66666667%;
902
+ }
903
+ .w3eden .col-xs-pull-4 {
904
+ right: 33.33333333%;
905
+ }
906
+ .w3eden .col-xs-pull-3 {
907
+ right: 25%;
908
+ }
909
+ .w3eden .col-xs-pull-2 {
910
+ right: 16.66666667%;
911
+ }
912
+ .w3eden .col-xs-pull-1 {
913
+ right: 8.33333333%;
914
+ }
915
+ .w3eden .col-xs-pull-0 {
916
+ right: auto;
917
+ }
918
+ .w3eden .col-xs-push-12 {
919
+ left: 100%;
920
+ }
921
+ .w3eden .col-xs-push-11 {
922
+ left: 91.66666667%;
923
+ }
924
+ .w3eden .col-xs-push-10 {
925
+ left: 83.33333333%;
926
+ }
927
+ .w3eden .col-xs-push-9 {
928
+ left: 75%;
929
+ }
930
+ .w3eden .col-xs-push-8 {
931
+ left: 66.66666667%;
932
+ }
933
+ .w3eden .col-xs-push-7 {
934
+ left: 58.33333333%;
935
+ }
936
+ .w3eden .col-xs-push-6 {
937
+ left: 50%;
938
+ }
939
+ .w3eden .col-xs-push-5 {
940
+ left: 41.66666667%;
941
+ }
942
+ .w3eden .col-xs-push-4 {
943
+ left: 33.33333333%;
944
+ }
945
+ .w3eden .col-xs-push-3 {
946
+ left: 25%;
947
+ }
948
+ .w3eden .col-xs-push-2 {
949
+ left: 16.66666667%;
950
+ }
951
+ .w3eden .col-xs-push-1 {
952
+ left: 8.33333333%;
953
+ }
954
+ .w3eden .col-xs-push-0 {
955
+ left: auto;
956
+ }
957
+ .w3eden .col-xs-offset-12 {
958
+ margin-left: 100%;
959
+ }
960
+ .w3eden .col-xs-offset-11 {
961
+ margin-left: 91.66666667%;
962
+ }
963
+ .w3eden .col-xs-offset-10 {
964
+ margin-left: 83.33333333%;
965
+ }
966
+ .w3eden .col-xs-offset-9 {
967
+ margin-left: 75%;
968
+ }
969
+ .w3eden .col-xs-offset-8 {
970
+ margin-left: 66.66666667%;
971
+ }
972
+ .w3eden .col-xs-offset-7 {
973
+ margin-left: 58.33333333%;
974
+ }
975
+ .w3eden .col-xs-offset-6 {
976
+ margin-left: 50%;
977
+ }
978
+ .w3eden .col-xs-offset-5 {
979
+ margin-left: 41.66666667%;
980
+ }
981
+ .w3eden .col-xs-offset-4 {
982
+ margin-left: 33.33333333%;
983
+ }
984
+ .w3eden .col-xs-offset-3 {
985
+ margin-left: 25%;
986
+ }
987
+ .w3eden .col-xs-offset-2 {
988
+ margin-left: 16.66666667%;
989
+ }
990
+ .w3eden .col-xs-offset-1 {
991
+ margin-left: 8.33333333%;
992
+ }
993
+ .w3eden .col-xs-offset-0 {
994
+ margin-left: 0;
995
+ }
996
+ @media (min-width: 768px) {
997
+ .w3eden .col-sm-1,
998
+ .w3eden .col-sm-10,
999
+ .w3eden .col-sm-11,
1000
+ .w3eden .col-sm-12,
1001
+ .w3eden .col-sm-2,
1002
+ .w3eden .col-sm-3,
1003
+ .w3eden .col-sm-4,
1004
+ .w3eden .col-sm-5,
1005
+ .w3eden .col-sm-6,
1006
+ .w3eden .col-sm-7,
1007
+ .w3eden .col-sm-8,
1008
+ .w3eden .col-sm-9 {
1009
+ float: left;
1010
+ }
1011
+ .w3eden .col-sm-12 {
1012
+ width: 100%;
1013
+ }
1014
+ .w3eden .col-sm-11 {
1015
+ width: 91.66666667%;
1016
+ }
1017
+ .w3eden .col-sm-10 {
1018
+ width: 83.33333333%;
1019
+ }
1020
+ .w3eden .col-sm-9 {
1021
+ width: 75%;
1022
+ }
1023
+ .w3eden .col-sm-8 {
1024
+ width: 66.66666667%;
1025
+ }
1026
+ .w3eden .col-sm-7 {
1027
+ width: 58.33333333%;
1028
+ }
1029
+ .w3eden .col-sm-6 {
1030
+ width: 50%;
1031
+ }
1032
+ .w3eden .col-sm-5 {
1033
+ width: 41.66666667%;
1034
+ }
1035
+ .w3eden .col-sm-4 {
1036
+ width: 33.33333333%;
1037
+ }
1038
+ .w3eden .col-sm-3 {
1039
+ width: 25%;
1040
+ }
1041
+ .w3eden .col-sm-2 {
1042
+ width: 16.66666667%;
1043
+ }
1044
+ .w3eden .col-sm-1 {
1045
+ width: 8.33333333%;
1046
+ }
1047
+
1048
+ .w3eden .col-sm-offset-12 {
1049
+ margin-left: 100%;
1050
+ }
1051
+ .w3eden .col-sm-offset-11 {
1052
+ margin-left: 91.66666667%;
1053
+ }
1054
+ .w3eden .col-sm-offset-10 {
1055
+ margin-left: 83.33333333%;
1056
+ }
1057
+ .w3eden .col-sm-offset-9 {
1058
+ margin-left: 75%;
1059
+ }
1060
+ .w3eden .col-sm-offset-8 {
1061
+ margin-left: 66.66666667%;
1062
+ }
1063
+ .w3eden .col-sm-offset-7 {
1064
+ margin-left: 58.33333333%;
1065
+ }
1066
+ .w3eden .col-sm-offset-6 {
1067
+ margin-left: 50%;
1068
+ }
1069
+ .w3eden .col-sm-offset-5 {
1070
+ margin-left: 41.66666667%;
1071
+ }
1072
+ .w3eden .col-sm-offset-4 {
1073
+ margin-left: 33.33333333%;
1074
+ }
1075
+ .w3eden .col-sm-offset-3 {
1076
+ margin-left: 25%;
1077
+ }
1078
+ .w3eden .col-sm-offset-2 {
1079
+ margin-left: 16.66666667%;
1080
+ }
1081
+ .w3eden .col-sm-offset-1 {
1082
+ margin-left: 8.33333333%;
1083
+ }
1084
+ .w3eden .col-sm-offset-0 {
1085
+ margin-left: 0;
1086
+ }
1087
+ }
1088
+ @media (min-width: 992px) {
1089
+ .w3eden .col-md-1,
1090
+ .w3eden .col-md-10,
1091
+ .w3eden .col-md-11,
1092
+ .w3eden .col-md-12,
1093
+ .w3eden .col-md-2,
1094
+ .w3eden .col-md-3,
1095
+ .w3eden .col-md-4,
1096
+ .w3eden .col-md-5,
1097
+ .w3eden .col-md-6,
1098
+ .w3eden .col-md-7,
1099
+ .w3eden .col-md-8,
1100
+ .w3eden .col-md-9 {
1101
+ float: left;
1102
+ }
1103
+ .w3eden .col-md-12 {
1104
+ width: 100%;
1105
+ }
1106
+ .w3eden .col-md-11 {
1107
+ width: 91.66666667%;
1108
+ }
1109
+ .w3eden .col-md-10 {
1110
+ width: 83.33333333%;
1111
+ }
1112
+ .w3eden .col-md-9 {
1113
+ width: 75%;
1114
+ }
1115
+ .w3eden .col-md-8 {
1116
+ width: 66.66666667%;
1117
+ }
1118
+ .w3eden .col-md-7 {
1119
+ width: 58.33333333%;
1120
+ }
1121
+ .w3eden .col-md-6 {
1122
+ width: 50%;
1123
+ }
1124
+ .w3eden .col-md-5 {
1125
+ width: 41.66666667%;
1126
+ }
1127
+ .w3eden .col-md-4 {
1128
+ width: 33.33333333%;
1129
+ }
1130
+ .w3eden .col-md-3 {
1131
+ width: 25%;
1132
+ }
1133
+ .w3eden .col-md-2 {
1134
+ width: 16.66666667%;
1135
+ }
1136
+ .w3eden .col-md-1 {
1137
+ width: 8.33333333%;
1138
+ }
1139
+
1140
+ .w3eden .col-md-offset-12 {
1141
+ margin-left: 100%;
1142
+ }
1143
+ .w3eden .col-md-offset-11 {
1144
+ margin-left: 91.66666667%;
1145
+ }
1146
+ .w3eden .col-md-offset-10 {
1147
+ margin-left: 83.33333333%;
1148
+ }
1149
+ .w3eden .col-md-offset-9 {
1150
+ margin-left: 75%;
1151
+ }
1152
+ .w3eden .col-md-offset-8 {
1153
+ margin-left: 66.66666667%;
1154
+ }
1155
+ .w3eden .col-md-offset-7 {
1156
+ margin-left: 58.33333333%;
1157
+ }
1158
+ .w3eden .col-md-offset-6 {
1159
+ margin-left: 50%;
1160
+ }
1161
+ .w3eden .col-md-offset-5 {
1162
+ margin-left: 41.66666667%;
1163
+ }
1164
+ .w3eden .col-md-offset-4 {
1165
+ margin-left: 33.33333333%;
1166
+ }
1167
+ .w3eden .col-md-offset-3 {
1168
+ margin-left: 25%;
1169
+ }
1170
+ .w3eden .col-md-offset-2 {
1171
+ margin-left: 16.66666667%;
1172
+ }
1173
+ .w3eden .col-md-offset-1 {
1174
+ margin-left: 8.33333333%;
1175
+ }
1176
+ .w3eden .col-md-offset-0 {
1177
+ margin-left: 0;
1178
+ }
1179
+ }
1180
+ @media (min-width: 1200px) {
1181
+ .w3eden .col-lg-1,
1182
+ .w3eden .col-lg-10,
1183
+ .w3eden .col-lg-11,
1184
+ .w3eden .col-lg-12,
1185
+ .w3eden .col-lg-2,
1186
+ .w3eden .col-lg-3,
1187
+ .w3eden .col-lg-4,
1188
+ .w3eden .col-lg-5,
1189
+ .w3eden .col-lg-6,
1190
+ .w3eden .col-lg-7,
1191
+ .w3eden .col-lg-8,
1192
+ .w3eden .col-lg-9 {
1193
+ float: left;
1194
+ }
1195
+ .w3eden .col-lg-12 {
1196
+ width: 100%;
1197
+ }
1198
+ .w3eden .col-lg-11 {
1199
+ width: 91.66666667%;
1200
+ }
1201
+ .w3eden .col-lg-10 {
1202
+ width: 83.33333333%;
1203
+ }
1204
+ .w3eden .col-lg-9 {
1205
+ width: 75%;
1206
+ }
1207
+ .w3eden .col-lg-8 {
1208
+ width: 66.66666667%;
1209
+ }
1210
+ .w3eden .col-lg-7 {
1211
+ width: 58.33333333%;
1212
+ }
1213
+ .w3eden .col-lg-6 {
1214
+ width: 50%;
1215
+ }
1216
+ .w3eden .col-lg-5 {
1217
+ width: 41.66666667%;
1218
+ }
1219
+ .w3eden .col-lg-4 {
1220
+ width: 33.33333333%;
1221
+ }
1222
+ .w3eden .col-lg-3 {
1223
+ width: 25%;
1224
+ }
1225
+ .w3eden .col-lg-2 {
1226
+ width: 16.66666667%;
1227
+ }
1228
+ .w3eden .col-lg-1 {
1229
+ width: 8.33333333%;
1230
+ }
1231
+
1232
+ .w3eden .col-lg-offset-12 {
1233
+ margin-left: 100%;
1234
+ }
1235
+ .w3eden .col-lg-offset-11 {
1236
+ margin-left: 91.66666667%;
1237
+ }
1238
+ .w3eden .col-lg-offset-10 {
1239
+ margin-left: 83.33333333%;
1240
+ }
1241
+ .w3eden .col-lg-offset-9 {
1242
+ margin-left: 75%;
1243
+ }
1244
+ .w3eden .col-lg-offset-8 {
1245
+ margin-left: 66.66666667%;
1246
+ }
1247
+ .w3eden .col-lg-offset-7 {
1248
+ margin-left: 58.33333333%;
1249
+ }
1250
+ .w3eden .col-lg-offset-6 {
1251
+ margin-left: 50%;
1252
+ }
1253
+ .w3eden .col-lg-offset-5 {
1254
+ margin-left: 41.66666667%;
1255
+ }
1256
+ .w3eden .col-lg-offset-4 {
1257
+ margin-left: 33.33333333%;
1258
+ }
1259
+ .w3eden .col-lg-offset-3 {
1260
+ margin-left: 25%;
1261
+ }
1262
+ .w3eden .col-lg-offset-2 {
1263
+ margin-left: 16.66666667%;
1264
+ }
1265
+ .w3eden .col-lg-offset-1 {
1266
+ margin-left: 8.33333333%;
1267
+ }
1268
+ .w3eden .col-lg-offset-0 {
1269
+ margin-left: 0;
1270
+ }
1271
+ }
1272
+ .w3eden table {
1273
+ background-color: transparent;
1274
+ }
1275
+ .w3eden caption {
1276
+ padding-top: 8px;
1277
+ padding-bottom: 8px;
1278
+ color: #777;
1279
+ text-align: left;
1280
+ }
1281
+ .w3eden th {
1282
+ text-align: left;
1283
+ }
1284
+ .w3eden .table {
1285
+ width: 100%;
1286
+ max-width: 100%;
1287
+ border: 0;
1288
+ margin-bottom: 20px;
1289
+ }
1290
+ .w3eden .table > tbody > tr > td,
1291
+ .w3eden .table > tbody > tr > th,
1292
+ .w3eden .table > tfoot > tr > td,
1293
+ .w3eden .table > tfoot > tr > th,
1294
+ .w3eden .table > thead > tr > td,
1295
+ .w3eden .table > thead > tr > th {
1296
+ padding: 8px;
1297
+ line-height: 1.42857143;
1298
+ vertical-align: top;
1299
+ border: 0;
1300
+ border-top: 1px solid #dddddd;
1301
+ }
1302
+ .w3eden .table > thead > tr > th {
1303
+ vertical-align: bottom;
1304
+ border-bottom: 2px solid #dddddd;
1305
+ }
1306
+ .w3eden .table > caption + thead > tr:first-child > td,
1307
+ .w3eden .table > caption + thead > tr:first-child > th,
1308
+ .w3eden .table > colgroup + thead > tr:first-child > td,
1309
+ .w3eden .table > colgroup + thead > tr:first-child > th,
1310
+ .w3eden .table > thead:first-child > tr:first-child > td,
1311
+ .w3eden .table > thead:first-child > tr:first-child > th {
1312
+ border-top: 0;
1313
+ }
1314
+ .w3eden .table > tbody + tbody {
1315
+ border-top: 2px solid #dddddd;
1316
+ }
1317
+ .w3eden .table .table {
1318
+ background-color: #ffffff;
1319
+ }
1320
+ .w3eden .table-condensed > tbody > tr > td,
1321
+ .w3eden .table-condensed > tbody > tr > th,
1322
+ .w3eden .table-condensed > tfoot > tr > td,
1323
+ .w3eden .table-condensed > tfoot > tr > th,
1324
+ .w3eden .table-condensed > thead > tr > td,
1325
+ .w3eden .table-condensed > thead > tr > th {
1326
+ padding: 5px;
1327
+ }
1328
+ .w3eden .table-bordered {
1329
+ border: 1px solid #dddddd;
1330
+ }
1331
+ .w3eden .table-bordered > tbody > tr > td,
1332
+ .w3eden .table-bordered > tbody > tr > th,
1333
+ .w3eden .table-bordered > tfoot > tr > td,
1334
+ .w3eden .table-bordered > tfoot > tr > th,
1335
+ .w3eden .table-bordered > thead > tr > td,
1336
+ .w3eden .table-bordered > thead > tr > th {
1337
+ border: 1px solid #dddddd;
1338
+ }
1339
+ .w3eden .table-bordered > thead > tr > td,
1340
+ .w3eden .table-bordered > thead > tr > th {
1341
+ border-bottom-width: 2px;
1342
+ }
1343
+ .w3eden .table-striped > tbody > tr:nth-of-type(odd) {
1344
+ background-color: #f9f9f9;
1345
+ }
1346
+ .w3eden .table-hover > tbody > tr:hover {
1347
+ background-color: #f5f5f5;
1348
+ }
1349
+ .w3eden table col[class*=col-] {
1350
+ position: static;
1351
+ display: table-column;
1352
+ float: none;
1353
+ }
1354
+ .w3eden table td[class*=col-],
1355
+ .w3eden table th[class*=col-] {
1356
+ position: static;
1357
+ display: table-cell;
1358
+ float: none;
1359
+ }
1360
+ .w3eden .table > tbody > tr.active > td,
1361
+ .w3eden .table > tbody > tr.active > th,
1362
+ .w3eden .table > tbody > tr > td.active,
1363
+ .w3eden .table > tbody > tr > th.active,
1364
+ .w3eden .table > tfoot > tr.active > td,
1365
+ .w3eden .table > tfoot > tr.active > th,
1366
+ .w3eden .table > tfoot > tr > td.active,
1367
+ .w3eden .table > tfoot > tr > th.active,
1368
+ .w3eden .table > thead > tr.active > td,
1369
+ .w3eden .table > thead > tr.active > th,
1370
+ .w3eden .table > thead > tr > td.active,
1371
+ .w3eden .table > thead > tr > th.active {
1372
+ background-color: #f5f5f5;
1373
+ }
1374
+ .w3eden .table-hover > tbody > tr.active:hover > td,
1375
+ .w3eden .table-hover > tbody > tr.active:hover > th,
1376
+ .w3eden .table-hover > tbody > tr:hover > .active,
1377
+ .w3eden .table-hover > tbody > tr > td.active:hover,
1378
+ .w3eden .table-hover > tbody > tr > th.active:hover {
1379
+ background-color: #e8e8e8;
1380
+ }
1381
+
1382
+ .w3eden .table-responsive {
1383
+ min-height: .01%;
1384
+ overflow-x: auto;
1385
+ }
1386
+ @media screen and (max-width: 767px) {
1387
+ .w3eden .table-responsive {
1388
+ width: 100%;
1389
+ margin-bottom: 15px;
1390
+ overflow-y: hidden;
1391
+ -ms-overflow-style: -ms-autohiding-scrollbar;
1392
+ border: 1px solid #dddddd;
1393
+ }
1394
+ .w3eden .table-responsive > .table {
1395
+ margin-bottom: 0;
1396
+ }
1397
+ .w3eden .table-responsive > .table > tbody > tr > td,
1398
+ .w3eden .table-responsive > .table > tbody > tr > th,
1399
+ .w3eden .table-responsive > .table > tfoot > tr > td,
1400
+ .w3eden .table-responsive > .table > tfoot > tr > th,
1401
+ .w3eden .table-responsive > .table > thead > tr > td,
1402
+ .w3eden .table-responsive > .table > thead > tr > th {
1403
+ white-space: nowrap;
1404
+ }
1405
+ .w3eden .table-responsive > .table-bordered {
1406
+ border: 0;
1407
+ }
1408
+ .w3eden .table-responsive > .table-bordered > tbody > tr > td:first-child,
1409
+ .w3eden .table-responsive > .table-bordered > tbody > tr > th:first-child,
1410
+ .w3eden .table-responsive > .table-bordered > tfoot > tr > td:first-child,
1411
+ .w3eden .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1412
+ .w3eden .table-responsive > .table-bordered > thead > tr > td:first-child,
1413
+ .w3eden .table-responsive > .table-bordered > thead > tr > th:first-child {
1414
+ border-left: 0;
1415
+ }
1416
+ .w3eden .table-responsive > .table-bordered > tbody > tr > td:last-child,
1417
+ .w3eden .table-responsive > .table-bordered > tbody > tr > th:last-child,
1418
+ .w3eden .table-responsive > .table-bordered > tfoot > tr > td:last-child,
1419
+ .w3eden .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1420
+ .w3eden .table-responsive > .table-bordered > thead > tr > td:last-child,
1421
+ .w3eden .table-responsive > .table-bordered > thead > tr > th:last-child {
1422
+ border-right: 0;
1423
+ }
1424
+ .w3eden .table-responsive > .table-bordered > tbody > tr:last-child > td,
1425
+ .w3eden .table-responsive > .table-bordered > tbody > tr:last-child > th,
1426
+ .w3eden .table-responsive > .table-bordered > tfoot > tr:last-child > td,
1427
+ .w3eden .table-responsive > .table-bordered > tfoot > tr:last-child > th {
1428
+ border-bottom: 0;
1429
+ }
1430
+ }
1431
+ .w3eden fieldset {
1432
+ min-width: 0;
1433
+ padding: 0;
1434
+ margin: 0;
1435
+ border: 0;
1436
+ }
1437
+ .w3eden legend {
1438
+ display: block;
1439
+ width: 100%;
1440
+ padding: 0;
1441
+ margin-bottom: 20px;
1442
+ font-size: 21px;
1443
+ line-height: inherit;
1444
+ color: #333;
1445
+ border: 0;
1446
+ border-bottom: 1px solid #e5e5e5;
1447
+ }
1448
+ .w3eden label {
1449
+ display: inline-block;
1450
+ max-width: 100%;
1451
+ margin-bottom: 5px;
1452
+ font-weight: 700;
1453
+ }
1454
+ .w3eden input[type=search] {
1455
+ -webkit-box-sizing: border-box;
1456
+ -moz-box-sizing: border-box;
1457
+ box-sizing: border-box;
1458
+ }
1459
+ .w3eden input[type=checkbox],
1460
+ .w3eden input[type=radio] {
1461
+ margin: 4px 0 0;
1462
+ margin-top: 1px \9;
1463
+ line-height: normal;
1464
+ }
1465
+ .w3eden input[type=file] {
1466
+ display: block;
1467
+ }
1468
+ .w3eden input[type=range] {
1469
+ display: block;
1470
+ width: 100%;
1471
+ }
1472
+ .w3eden select[multiple],
1473
+ .w3eden select[size] {
1474
+ height: auto;
1475
+ }
1476
+ .w3eden input[type=file]:focus,
1477
+ .w3eden input[type=checkbox]:focus,
1478
+ .w3eden input[type=radio]:focus {
1479
+ outline: thin dotted;
1480
+ outline: 5px auto -webkit-focus-ring-color;
1481
+ outline-offset: -2px;
1482
+ }
1483
+ .w3eden output {
1484
+ display: block;
1485
+ padding-top: 7px;
1486
+ font-size: 14px;
1487
+ line-height: 1.42857143;
1488
+ color: #555555;
1489
+ }
1490
+ .w3eden .form-control {
1491
+ display: block;
1492
+ width: 100%;
1493
+ height: 34px;
1494
+ padding: 6px 12px;
1495
+ font-size: 14px;
1496
+ line-height: 1.42857143;
1497
+ color: #555;
1498
+ background-color: #fff;
1499
+ background-image: none;
1500
+ border: 1px solid #d5d5d5;
1501
+ border-radius: 3px;
1502
+ /*
1503
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.055);
1504
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.055);
1505
+ -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
1506
+ -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1507
+ */
1508
+ box-shadow: none;
1509
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1510
+ }
1511
+ .w3eden .form-control:focus {
1512
+ border-color: rgba(var(--color-primary-rgb), 0.8);
1513
+ outline: 0;
1514
+ box-shadow: none;
1515
+ }
1516
+ .w3eden .form-control::-moz-placeholder {
1517
+ color: #999;
1518
+ opacity: 1;
1519
+ }
1520
+ .w3eden .form-control:-ms-input-placeholder {
1521
+ color: #999999;
1522
+ }
1523
+ .w3eden .form-control::-webkit-input-placeholder {
1524
+ color: #999999;
1525
+ }
1526
+ .w3eden .form-control[disabled],
1527
+ .w3eden .form-control[readonly],
1528
+ .w3eden fieldset[disabled] .form-control {
1529
+ background-color: #eee;
1530
+ opacity: 1;
1531
+ }
1532
+ .w3eden .form-control[disabled],
1533
+ .w3eden fieldset[disabled] .form-control {
1534
+ cursor: not-allowed;
1535
+ }
1536
+ .w3eden textarea.form-control {
1537
+ height: auto;
1538
+ }
1539
+ .w3eden input[type=search] {
1540
+ -webkit-appearance: none;
1541
+ }
1542
+ @media screen and (-webkit-min-device-pixel-ratio: 0) {
1543
+ .w3eden input[type=date],
1544
+ .w3eden input[type=time],
1545
+ .w3eden input[type=datetime-local],
1546
+ .w3eden input[type=month] {
1547
+ line-height: 34px;
1548
+ }
1549
+ .w3eden .input-group-sm input[type=date],
1550
+ .w3eden .input-group-sm input[type=time],
1551
+ .w3eden .input-group-sm input[type=datetime-local],
1552
+ .w3eden .input-group-sm input[type=month],
1553
+ .w3eden input[type=date].input-sm,
1554
+ .w3eden input[type=time].input-sm,
1555
+ .w3eden input[type=datetime-local].input-sm,
1556
+ .w3eden input[type=month].input-sm {
1557
+ line-height: 30px;
1558
+ }
1559
+ .w3eden .input-group-lg input[type=date],
1560
+ .w3eden .input-group-lg input[type=time],
1561
+ .w3eden .input-group-lg input[type=datetime-local],
1562
+ .w3eden .input-group-lg input[type=month],
1563
+ .w3eden input[type=date].input-lg,
1564
+ .w3eden input[type=time].input-lg,
1565
+ .w3eden input[type=datetime-local].input-lg,
1566
+ .w3eden input[type=month].input-lg {
1567
+ line-height: 46px;
1568
+ }
1569
+ }
1570
+ .w3eden .form-group {
1571
+ margin-bottom: 15px;
1572
+ }
1573
+ .w3eden .checkbox,
1574
+ .w3eden .radio {
1575
+ position: relative;
1576
+ display: block;
1577
+ margin-top: 10px;
1578
+ margin-bottom: 10px;
1579
+ }
1580
+ .w3eden .checkbox label,
1581
+ .w3eden .radio label {
1582
+ min-height: 20px;
1583
+ padding-left: 20px;
1584
+ margin-bottom: 0;
1585
+ font-weight: 400;
1586
+ cursor: pointer;
1587
+ }
1588
+ .w3eden .checkbox input[type=checkbox],
1589
+ .w3eden .checkbox-inline input[type=checkbox],
1590
+ .w3eden .radio input[type=radio],
1591
+ .w3eden .radio-inline input[type=radio] {
1592
+ position: absolute;
1593
+ margin-top: 4px \9;
1594
+ margin-left: -20px;
1595
+ }
1596
+ .w3eden .checkbox + .checkbox,
1597
+ .w3eden .radio + .radio {
1598
+ margin-top: -5px;
1599
+ }
1600
+ .w3eden .checkbox-inline,
1601
+ .w3eden .radio-inline {
1602
+ position: relative;
1603
+ display: inline-block;
1604
+ padding-left: 20px;
1605
+ margin-bottom: 0;
1606
+ font-weight: 400;
1607
+ vertical-align: middle;
1608
+ cursor: pointer;
1609
+ }
1610
+ .w3eden .checkbox-inline + .checkbox-inline,
1611
+ .w3eden .radio-inline + .radio-inline {
1612
+ margin-top: 0;
1613
+ margin-left: 10px;
1614
+ }
1615
+ .w3eden fieldset[disabled] input[type=checkbox],
1616
+ .w3eden fieldset[disabled] input[type=radio],
1617
+ .w3eden input[type=checkbox].disabled,
1618
+ .w3eden input[type=checkbox][disabled],
1619
+ .w3eden input[type=radio].disabled,
1620
+ .w3eden input[type=radio][disabled] {
1621
+ cursor: not-allowed;
1622
+ }
1623
+ .w3eden .checkbox-inline.disabled,
1624
+ .w3eden .radio-inline.disabled,
1625
+ .w3eden fieldset[disabled] .checkbox-inline,
1626
+ .w3eden fieldset[disabled] .radio-inline {
1627
+ cursor: not-allowed;
1628
+ }
1629
+ .w3eden .checkbox.disabled label,
1630
+ .w3eden .radio.disabled label,
1631
+ .w3eden fieldset[disabled] .checkbox label,
1632
+ .w3eden fieldset[disabled] .radio label {
1633
+ cursor: not-allowed;
1634
+ }
1635
+ .w3eden .form-control-static {
1636
+ min-height: 34px;
1637
+ padding-top: 7px;
1638
+ padding-bottom: 7px;
1639
+ margin-bottom: 0;
1640
+ }
1641
+ .w3eden .form-control-static.input-lg,
1642
+ .w3eden .form-control-static.input-sm {
1643
+ padding-right: 0;
1644
+ padding-left: 0;
1645
+ }
1646
+ .w3eden .input-sm {
1647
+ height: 30px;
1648
+ padding: 5px 10px;
1649
+ font-size: 12px;
1650
+ line-height: 1.5;
1651
+ border-radius: 3px;
1652
+ }
1653
+ .w3eden select.input-sm {
1654
+ height: 30px;
1655
+ line-height: 30px;
1656
+ }
1657
+ .w3eden select[multiple].input-sm,
1658
+ .w3eden textarea.input-sm {
1659
+ height: auto;
1660
+ }
1661
+ .w3eden .form-group-sm .form-control {
1662
+ height: 30px;
1663
+ padding: 5px 10px;
1664
+ font-size: 12px;
1665
+ line-height: 1.5;
1666
+ border-radius: 3px;
1667
+ }
1668
+ .w3eden select.form-group-sm .form-control {
1669
+ height: 30px;
1670
+ line-height: 30px;
1671
+ }
1672
+ .w3eden select[multiple].form-group-sm .form-control,
1673
+ .w3eden textarea.form-group-sm .form-control {
1674
+ height: auto;
1675
+ }
1676
+ .w3eden .form-group-sm .form-control-static {
1677
+ height: 30px;
1678
+ min-height: 32px;
1679
+ padding: 5px 10px;
1680
+ font-size: 12px;
1681
+ line-height: 1.5;
1682
+ }
1683
+ .w3eden .input-lg {
1684
+ height: 46px;
1685
+ padding: 10px 16px;
1686
+ font-size: 18px;
1687
+ line-height: 1.3333333;
1688
+ border-radius: 6px;
1689
+ }
1690
+ .w3eden select.input-lg {
1691
+ height: 46px;
1692
+ line-height: 46px;
1693
+ }
1694
+ .w3eden select[multiple].input-lg,
1695
+ .w3eden textarea.input-lg {
1696
+ height: auto;
1697
+ }
1698
+ .w3eden .form-group-lg .form-control {
1699
+ height: 46px;
1700
+ padding: 10px 16px;
1701
+ font-size: 18px;
1702
+ line-height: 1.3333333;
1703
+ border-radius: 6px;
1704
+ }
1705
+ .w3eden select.form-group-lg .form-control {
1706
+ height: 46px;
1707
+ line-height: 46px;
1708
+ }
1709
+ .w3eden select[multiple].form-group-lg .form-control,
1710
+ .w3eden textarea.form-group-lg .form-control {
1711
+ height: auto;
1712
+ }
1713
+ .w3eden .form-group-lg .form-control-static {
1714
+ height: 46px;
1715
+ min-height: 38px;
1716
+ padding: 10px 16px;
1717
+ font-size: 18px;
1718
+ line-height: 1.3333333;
1719
+ }
1720
+ .w3eden .has-feedback {
1721
+ position: relative;
1722
+ }
1723
+ .w3eden .has-feedback .form-control {
1724
+ padding-right: 42.5px;
1725
+ }
1726
+ .w3eden .form-control-feedback {
1727
+ position: absolute;
1728
+ top: 0;
1729
+ right: 0;
1730
+ z-index: 2;
1731
+ display: block;
1732
+ width: 34px;
1733
+ height: 34px;
1734
+ line-height: 34px;
1735
+ text-align: center;
1736
+ pointer-events: none;
1737
+ }
1738
+ .w3eden .input-lg + .form-control-feedback {
1739
+ width: 46px;
1740
+ height: 46px;
1741
+ line-height: 46px;
1742
+ }
1743
+ .w3eden .input-sm + .form-control-feedback {
1744
+ width: 30px;
1745
+ height: 30px;
1746
+ line-height: 30px;
1747
+ }
1748
+ .w3eden .has-success .checkbox,
1749
+ .w3eden .has-success .checkbox-inline,
1750
+ .w3eden .has-success .control-label,
1751
+ .w3eden .has-success .help-block,
1752
+ .w3eden .has-success .radio,
1753
+ .w3eden .has-success .radio-inline,
1754
+ .w3eden .has-success.checkbox label,
1755
+ .w3eden .has-success.checkbox-inline label,
1756
+ .w3eden .has-success.radio label,
1757
+ .w3eden .has-success.radio-inline label {
1758
+ color: #3c763d;
1759
+ }
1760
+ .w3eden .has-success .form-control {
1761
+ border-color: #3c763d;
1762
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1763
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1764
+ }
1765
+ .w3eden .has-success .form-control:focus {
1766
+ border-color: #2b542c;
1767
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1768
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1769
+ }
1770
+ .w3eden .has-success .input-group-addon {
1771
+ color: #3c763d;
1772
+ background-color: #dff0d8;
1773
+ border-color: #3c763d;
1774
+ }
1775
+ .w3eden .has-success .form-control-feedback {
1776
+ color: #3c763d;
1777
+ }
1778
+ .w3eden .has-warning .checkbox,
1779
+ .w3eden .has-warning .checkbox-inline,
1780
+ .w3eden .has-warning .control-label,
1781
+ .w3eden .has-warning .help-block,
1782
+ .w3eden .has-warning .radio,
1783
+ .w3eden .has-warning .radio-inline,
1784
+ .w3eden .has-warning.checkbox label,
1785
+ .w3eden .has-warning.checkbox-inline label,
1786
+ .w3eden .has-warning.radio label,
1787
+ .w3eden .has-warning.radio-inline label {
1788
+ color: #8a6d3b;
1789
+ }
1790
+ .w3eden .has-warning .form-control {
1791
+ border-color: #8a6d3b;
1792
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1793
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1794
+ }
1795
+ .w3eden .has-warning .form-control:focus {
1796
+ border-color: #66512c;
1797
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1798
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1799
+ }
1800
+ .w3eden .has-warning .input-group-addon {
1801
+ color: #8a6d3b;
1802
+ background-color: #fcf8e3;
1803
+ border-color: #8a6d3b;
1804
+ }
1805
+ .w3eden .has-warning .form-control-feedback {
1806
+ color: #8a6d3b;
1807
+ }
1808
+ .w3eden .has-error .checkbox,
1809
+ .w3eden .has-error .checkbox-inline,
1810
+ .w3eden .has-error .control-label,
1811
+ .w3eden .has-error .help-block,
1812
+ .w3eden .has-error .radio,
1813
+ .w3eden .has-error .radio-inline,
1814
+ .w3eden .has-error.checkbox label,
1815
+ .w3eden .has-error.checkbox-inline label,
1816
+ .w3eden .has-error.radio label,
1817
+ .w3eden .has-error.radio-inline label {
1818
+ color: #a94442;
1819
+ }
1820
+ .w3eden .has-error .form-control {
1821
+ border-color: #a94442;
1822
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1823
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1824
+ }
1825
+ .w3eden .has-error .form-control:focus {
1826
+ border-color: #843534;
1827
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1828
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1829
+ }
1830
+ .w3eden .has-error .input-group-addon {
1831
+ color: #a94442;
1832
+ background-color: #f2dede;
1833
+ border-color: #a94442;
1834
+ }
1835
+ .w3eden .has-error .form-control-feedback {
1836
+ color: #a94442;
1837
+ }
1838
+ .w3eden .has-feedback label ~ .form-control-feedback {
1839
+ top: 25px;
1840
+ }
1841
+ .w3eden .has-feedback label.sr-only ~ .form-control-feedback {
1842
+ top: 0;
1843
+ }
1844
+ .w3eden .help-block {
1845
+ display: block;
1846
+ margin-top: 5px;
1847
+ margin-bottom: 10px;
1848
+ color: #737373;
1849
+ }
1850
+ @media (min-width: 768px) {
1851
+ .w3eden .form-inline .form-group {
1852
+ display: inline-block;
1853
+ margin-bottom: 0;
1854
+ vertical-align: middle;
1855
+ }
1856
+ .w3eden .form-inline .form-control {
1857
+ display: inline-block;
1858
+ width: auto;
1859
+ vertical-align: middle;
1860
+ }
1861
+ .w3eden .form-inline .form-control-static {
1862
+ display: inline-block;
1863
+ }
1864
+ .w3eden .form-inline .input-group {
1865
+ display: inline-table;
1866
+ vertical-align: middle;
1867
+ }
1868
+ .w3eden .form-inline .input-group .form-control,
1869
+ .w3eden .form-inline .input-group .input-group-addon,
1870
+ .w3eden .form-inline .input-group .input-group-btn {
1871
+ width: auto;
1872
+ }
1873
+ .w3eden .form-inline .input-group > .form-control {
1874
+ width: 100%;
1875
+ }
1876
+ .w3eden .form-inline .control-label {
1877
+ margin-bottom: 0;
1878
+ vertical-align: middle;
1879
+ }
1880
+ .w3eden .form-inline .checkbox,
1881
+ .w3eden .form-inline .radio {
1882
+ display: inline-block;
1883
+ margin-top: 0;
1884
+ margin-bottom: 0;
1885
+ vertical-align: middle;
1886
+ }
1887
+ .w3eden .form-inline .checkbox label,
1888
+ .w3eden .form-inline .radio label {
1889
+ padding-left: 0;
1890
+ }
1891
+ .w3eden .form-inline .checkbox input[type=checkbox],
1892
+ .w3eden .form-inline .radio input[type=radio] {
1893
+ position: relative;
1894
+ margin-left: 0;
1895
+ }
1896
+ .w3eden .form-inline .has-feedback .form-control-feedback {
1897
+ top: 0;
1898
+ }
1899
+ }
1900
+ .w3eden .form-horizontal .checkbox,
1901
+ .w3eden .form-horizontal .checkbox-inline,
1902
+ .w3eden .form-horizontal .radio,
1903
+ .w3eden .form-horizontal .radio-inline {
1904
+ padding-top: 7px;
1905
+ margin-top: 0;
1906
+ margin-bottom: 0;
1907
+ }
1908
+ .w3eden .form-horizontal .checkbox,
1909
+ .w3eden .form-horizontal .radio {
1910
+ min-height: 27px;
1911
+ }
1912
+ .w3eden .form-horizontal .form-group {
1913
+ margin-right: -15px;
1914
+ margin-left: -15px;
1915
+ }
1916
+ @media (min-width: 768px) {
1917
+ .w3eden .form-horizontal .control-label {
1918
+ padding-top: 7px;
1919
+ margin-bottom: 0;
1920
+ text-align: right;
1921
+ }
1922
+ }
1923
+ .w3eden .form-horizontal .has-feedback .form-control-feedback {
1924
+ right: 15px;
1925
+ }
1926
+ @media (min-width: 768px) {
1927
+ .w3eden .form-horizontal .form-group-lg .control-label {
1928
+ padding-top: 14.33px;
1929
+ }
1930
+ }
1931
+ @media (min-width: 768px) {
1932
+ .w3eden .form-horizontal .form-group-sm .control-label {
1933
+ padding-top: 6px;
1934
+ }
1935
+ }
1936
+ .w3eden .btn {
1937
+ display: inline-block;
1938
+ padding: 6px 12px;
1939
+ margin-bottom: 0;
1940
+ font-size: 14px;
1941
+ font-weight: 400;
1942
+ line-height: 1.42857143;
1943
+ text-align: center;
1944
+ white-space: nowrap;
1945
+ vertical-align: middle;
1946
+ -ms-touch-action: manipulation;
1947
+ touch-action: manipulation;
1948
+ cursor: pointer;
1949
+ -webkit-user-select: none;
1950
+ -moz-user-select: none;
1951
+ -ms-user-select: none;
1952
+ user-select: none;
1953
+ background-image: none;
1954
+ border: 1px solid transparent;
1955
+ border-radius: 3px;
1956
+ }
1957
+ .w3eden .btn.active.focus,
1958
+ .w3eden .btn.active:focus,
1959
+ .w3eden .btn.focus,
1960
+ .w3eden .btn:active.focus,
1961
+ .w3eden .btn:active:focus,
1962
+ .w3eden .btn:focus {
1963
+ outline: thin dotted;
1964
+ outline: 5px auto -webkit-focus-ring-color;
1965
+ outline-offset: -2px;
1966
+ }
1967
+ .w3eden .btn.focus,
1968
+ .w3eden .btn:focus,
1969
+ .w3eden .btn:hover {
1970
+ color: #333;
1971
+ text-decoration: none;
1972
+ }
1973
+ .w3eden .btn.active,
1974
+ .w3eden .btn:active {
1975
+ background-image: none;
1976
+ outline: 0;
1977
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1978
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1979
+ }
1980
+ .w3eden .btn.disabled,
1981
+ .w3eden .btn[disabled],
1982
+ .w3eden fieldset[disabled] .btn {
1983
+ pointer-events: none;
1984
+ cursor: not-allowed;
1985
+ filter: alpha(opacity=65);
1986
+ -webkit-box-shadow: none;
1987
+ box-shadow: none;
1988
+ opacity: 0.65;
1989
+ }
1990
+ .w3eden .btn-secondary {
1991
+ color: #333;
1992
+ background-color: #fff;
1993
+ border-color: #cccccc;
1994
+ }
1995
+ .w3eden .btn-secondary.active,
1996
+ .w3eden .btn-secondary.focus,
1997
+ .w3eden .btn-secondary:active,
1998
+ .w3eden .btn-secondary:focus,
1999
+ .w3eden .btn-secondary:hover,
2000
+ .w3eden .open > .dropdown-toggle.btn-secondary {
2001
+ color: #333;
2002
+ background-color: #e6e6e6;
2003
+ border-color: #adadad;
2004
+ }
2005
+ .w3eden .btn-secondary.active,
2006
+ .w3eden .btn-secondary:active,
2007
+ .w3eden .open > .dropdown-toggle.btn-secondary {
2008
+ background-image: none;
2009
+ }
2010
+ .w3eden .btn-secondary.disabled,
2011
+ .w3eden .btn-secondary.disabled.active,
2012
+ .w3eden .btn-secondary.disabled.focus,
2013
+ .w3eden .btn-secondary.disabled:active,
2014
+ .w3eden .btn-secondary.disabled:focus,
2015
+ .w3eden .btn-secondary.disabled:hover,
2016
+ .w3eden .btn-secondary[disabled],
2017
+ .w3eden .btn-secondary[disabled].active,
2018
+ .w3eden .btn-secondary[disabled].focus,
2019
+ .w3eden .btn-secondary[disabled]:active,
2020
+ .w3eden .btn-secondary[disabled]:focus,
2021
+ .w3eden .btn-secondary[disabled]:hover,
2022
+ .w3eden fieldset[disabled] .btn-secondary,
2023
+ .w3eden fieldset[disabled] .btn-secondary.active,
2024
+ .w3eden fieldset[disabled] .btn-secondary.focus,
2025
+ .w3eden fieldset[disabled] .btn-secondary:active,
2026
+ .w3eden fieldset[disabled] .btn-secondary:focus,
2027
+ .w3eden fieldset[disabled] .btn-secondary:hover {
2028
+ background-color: #fff;
2029
+ border-color: #cccccc;
2030
+ }
2031
+ .w3eden .btn-secondary .badge {
2032
+ color: #fff;
2033
+ background-color: #333333;
2034
+ }
2035
+ .w3eden .btn-primary {
2036
+ color: #fff;
2037
+ background-color: #337ab7;
2038
+ border-color: #2e6da4;
2039
+ }
2040
+ .w3eden .btn-primary.active,
2041
+ .w3eden .btn-primary.focus,
2042
+ .w3eden .btn-primary:active,
2043
+ .w3eden .btn-primary:focus,
2044
+ .w3eden .btn-primary:hover,
2045
+ .w3eden .open > .dropdown-toggle.btn-primary {
2046
+ color: #fff;
2047
+ background-color: #286090;
2048
+ border-color: #204d74;
2049
+ }
2050
+ .w3eden .btn-primary.active,
2051
+ .w3eden .btn-primary:active,
2052
+ .w3eden .open > .dropdown-toggle.btn-primary {
2053
+ background-image: none;
2054
+ }
2055
+ .w3eden .btn-primary.disabled,
2056
+ .w3eden .btn-primary.disabled.active,
2057
+ .w3eden .btn-primary.disabled.focus,
2058
+ .w3eden .btn-primary.disabled:active,
2059
+ .w3eden .btn-primary.disabled:focus,
2060
+ .w3eden .btn-primary.disabled:hover,
2061
+ .w3eden .btn-primary[disabled],
2062
+ .w3eden .btn-primary[disabled].active,
2063
+ .w3eden .btn-primary[disabled].focus,
2064
+ .w3eden .btn-primary[disabled]:active,
2065
+ .w3eden .btn-primary[disabled]:focus,
2066
+ .w3eden .btn-primary[disabled]:hover,
2067
+ .w3eden fieldset[disabled] .btn-primary,
2068
+ .w3eden fieldset[disabled] .btn-primary.active,
2069
+ .w3eden fieldset[disabled] .btn-primary.focus,
2070
+ .w3eden fieldset[disabled] .btn-primary:active,
2071
+ .w3eden fieldset[disabled] .btn-primary:focus,
2072
+ .w3eden fieldset[disabled] .btn-primary:hover {
2073
+ background-color: #337ab7;
2074
+ border-color: #2e6da4;
2075
+ }
2076
+ .w3eden .btn-primary .badge {
2077
+ color: #337ab7;
2078
+ background-color: #ffffff;
2079
+ }
2080
+ .w3eden .btn-success {
2081
+ color: #fff;
2082
+ background-color: #5cb85c;
2083
+ border-color: #4cae4c;
2084
+ }
2085
+ .w3eden .btn-success.active,
2086
+ .w3eden .btn-success.focus,
2087
+ .w3eden .btn-success:active,
2088
+ .w3eden .btn-success:focus,
2089
+ .w3eden .btn-success:hover,
2090
+ .w3eden .open > .dropdown-toggle.btn-success {
2091
+ color: #fff;
2092
+ background-color: #449d44;
2093
+ border-color: #398439;
2094
+ }
2095
+ .w3eden .btn-success.active,
2096
+ .w3eden .btn-success:active,
2097
+ .w3eden .open > .dropdown-toggle.btn-success {
2098
+ background-image: none;
2099
+ }
2100
+ .w3eden .btn-success.disabled,
2101
+ .w3eden .btn-success.disabled.active,
2102
+ .w3eden .btn-success.disabled.focus,
2103
+ .w3eden .btn-success.disabled:active,
2104
+ .w3eden .btn-success.disabled:focus,
2105
+ .w3eden .btn-success.disabled:hover,
2106
+ .w3eden .btn-success[disabled],
2107
+ .w3eden .btn-success[disabled].active,
2108
+ .w3eden .btn-success[disabled].focus,
2109
+ .w3eden .btn-success[disabled]:active,
2110
+ .w3eden .btn-success[disabled]:focus,
2111
+ .w3eden .btn-success[disabled]:hover,
2112
+ .w3eden fieldset[disabled] .btn-success,
2113
+ .w3eden fieldset[disabled] .btn-success.active,
2114
+ .w3eden fieldset[disabled] .btn-success.focus,
2115
+ .w3eden fieldset[disabled] .btn-success:active,
2116
+ .w3eden fieldset[disabled] .btn-success:focus,
2117
+ .w3eden fieldset[disabled] .btn-success:hover {
2118
+ background-color: #5cb85c;
2119
+ border-color: #4cae4c;
2120
+ }
2121
+ .w3eden .btn-success .badge {
2122
+ color: #5cb85c;
2123
+ background-color: #ffffff;
2124
+ }
2125
+ .w3eden .btn-info {
2126
+ color: #fff;
2127
+ background-color: #5bc0de;
2128
+ border-color: var(--color-info);
2129
+ }
2130
+ .w3eden .btn-info.active,
2131
+ .w3eden .btn-info.focus,
2132
+ .w3eden .btn-info:active,
2133
+ .w3eden .btn-info:focus,
2134
+ .w3eden .btn-info:hover,
2135
+ .w3eden .open > .dropdown-toggle.btn-info {
2136
+ color: #fff;
2137
+ background-color: #31b0d5;
2138
+ border-color: #269abc;
2139
+ }
2140
+ .w3eden .btn-info.active,
2141
+ .w3eden .btn-info:active,
2142
+ .w3eden .open > .dropdown-toggle.btn-info {
2143
+ background-image: none;
2144
+ }
2145
+ .w3eden .btn-info.disabled,
2146
+ .w3eden .btn-info.disabled.active,
2147
+ .w3eden .btn-info.disabled.focus,
2148
+ .w3eden .btn-info.disabled:active,
2149
+ .w3eden .btn-info.disabled:focus,
2150
+ .w3eden .btn-info.disabled:hover,
2151
+ .w3eden .btn-info[disabled],
2152
+ .w3eden .btn-info[disabled].active,
2153
+ .w3eden .btn-info[disabled].focus,
2154
+ .w3eden .btn-info[disabled]:active,
2155
+ .w3eden .btn-info[disabled]:focus,
2156
+ .w3eden .btn-info[disabled]:hover,
2157
+ .w3eden fieldset[disabled] .btn-info,
2158
+ .w3eden fieldset[disabled] .btn-info.active,
2159
+ .w3eden fieldset[disabled] .btn-info.focus,
2160
+ .w3eden fieldset[disabled] .btn-info:active,
2161
+ .w3eden fieldset[disabled] .btn-info:focus,
2162
+ .w3eden fieldset[disabled] .btn-info:hover {
2163
+ background-color: #5bc0de;
2164
+ border-color: var(--color-info);
2165
+ }
2166
+ .w3eden .btn-info .badge {
2167
+ color: #5bc0de;
2168
+ background-color: #ffffff;
2169
+ }
2170
+ .w3eden .btn-warning {
2171
+ color: #fff;
2172
+ background-color: var(--color-warning-active);
2173
+ border-color: var(--color-warning-active);
2174
+ }
2175
+ .w3eden .btn-warning.active,
2176
+ .w3eden .btn-warning.focus,
2177
+ .w3eden .btn-warning:active,
2178
+ .w3eden .btn-warning:focus,
2179
+ .w3eden .btn-warning:hover,
2180
+ .w3eden .open > .dropdown-toggle.btn-warning {
2181
+ color: #fff;
2182
+ background-color: #ec971f;
2183
+ border-color: #d58512;
2184
+ }
2185
+ .w3eden .btn-warning.active,
2186
+ .w3eden .btn-warning:active,
2187
+ .w3eden .open > .dropdown-toggle.btn-warning {
2188
+ background-image: none;
2189
+ }
2190
+ .w3eden .btn-warning.disabled,
2191
+ .w3eden .btn-warning.disabled.active,
2192
+ .w3eden .btn-warning.disabled.focus,
2193
+ .w3eden .btn-warning.disabled:active,
2194
+ .w3eden .btn-warning.disabled:focus,
2195
+ .w3eden .btn-warning.disabled:hover,
2196
+ .w3eden .btn-warning[disabled],
2197
+ .w3eden .btn-warning[disabled].active,
2198
+ .w3eden .btn-warning[disabled].focus,
2199
+ .w3eden .btn-warning[disabled]:active,
2200
+ .w3eden .btn-warning[disabled]:focus,
2201
+ .w3eden .btn-warning[disabled]:hover,
2202
+ .w3eden fieldset[disabled] .btn-warning,
2203
+ .w3eden fieldset[disabled] .btn-warning.active,
2204
+ .w3eden fieldset[disabled] .btn-warning.focus,
2205
+ .w3eden fieldset[disabled] .btn-warning:active,
2206
+ .w3eden fieldset[disabled] .btn-warning:focus,
2207
+ .w3eden fieldset[disabled] .btn-warning:hover {
2208
+ background-color: var(--color-warning-active);
2209
+ border-color: var(--color-warning-active);
2210
+ }
2211
+ .w3eden .btn-warning .badge {
2212
+ color: var(--color-warning-active);
2213
+ background-color: #ffffff;
2214
+ }
2215
+ .w3eden .btn-danger {
2216
+ color: #fff;
2217
+ background-color: var(--color-danger);
2218
+ border-color: var(--color-danger);
2219
+ }
2220
+ .w3eden .btn-danger.active,
2221
+ .w3eden .btn-danger.focus,
2222
+ .w3eden .btn-danger:active,
2223
+ .w3eden .btn-danger:focus,
2224
+ .w3eden .btn-danger:hover,
2225
+ .w3eden .open > .dropdown-toggle.btn-danger {
2226
+ color: #fff;
2227
+ background-color: var(--color-danger-active);
2228
+ border-color: var(--color-danger-active);
2229
+ }
2230
+ .w3eden .btn-danger.active,
2231
+ .w3eden .btn-danger:active,
2232
+ .w3eden .open > .dropdown-toggle.btn-danger {
2233
+ background-image: none;
2234
+ }
2235
+ .w3eden .btn-danger.disabled,
2236
+ .w3eden .btn-danger.disabled.active,
2237
+ .w3eden .btn-danger.disabled.focus,
2238
+ .w3eden .btn-danger.disabled:active,
2239
+ .w3eden .btn-danger.disabled:focus,
2240
+ .w3eden .btn-danger.disabled:hover,
2241
+ .w3eden .btn-danger[disabled],
2242
+ .w3eden .btn-danger[disabled].active,
2243
+ .w3eden .btn-danger[disabled].focus,
2244
+ .w3eden .btn-danger[disabled]:active,
2245
+ .w3eden .btn-danger[disabled]:focus,
2246
+ .w3eden .btn-danger[disabled]:hover,
2247
+ .w3eden fieldset[disabled] .btn-danger,
2248
+ .w3eden fieldset[disabled] .btn-danger.active,
2249
+ .w3eden fieldset[disabled] .btn-danger.focus,
2250
+ .w3eden fieldset[disabled] .btn-danger:active,
2251
+ .w3eden fieldset[disabled] .btn-danger:focus,
2252
+ .w3eden fieldset[disabled] .btn-danger:hover {
2253
+ background-color: var(--color-danger);
2254
+ border-color: var(--color-danger);
2255
+ }
2256
+ .w3eden .btn-danger .badge {
2257
+ color: var(--color-danger);
2258
+ background-color: #ffffff;
2259
+ }
2260
+ .w3eden .btn-link {
2261
+ font-weight: 400;
2262
+ color: #337ab7;
2263
+ border-radius: 0;
2264
+ }
2265
+ .w3eden .btn-link,
2266
+ .w3eden .btn-link.active,
2267
+ .w3eden .btn-link:active,
2268
+ .w3eden .btn-link[disabled],
2269
+ .w3eden fieldset[disabled] .btn-link {
2270
+ background-color: transparent;
2271
+ -webkit-box-shadow: none;
2272
+ box-shadow: none;
2273
+ }
2274
+ .w3eden .btn-link,
2275
+ .w3eden .btn-link:active,
2276
+ .w3eden .btn-link:focus,
2277
+ .w3eden .btn-link:hover {
2278
+ border-color: transparent;
2279
+ }
2280
+ .w3eden .btn-link:focus,
2281
+ .w3eden .btn-link:hover {
2282
+ color: #23527c;
2283
+ text-decoration: underline;
2284
+ background-color: transparent;
2285
+ }
2286
+ .w3eden .btn-link[disabled]:focus,
2287
+ .w3eden .btn-link[disabled]:hover,
2288
+ .w3eden fieldset[disabled] .btn-link:focus,
2289
+ .w3eden fieldset[disabled] .btn-link:hover {
2290
+ color: #777;
2291
+ text-decoration: none;
2292
+ }
2293
+ .w3eden .btn-group-lg > .btn,
2294
+ .w3eden .btn-lg {
2295
+ padding: 10px 16px;
2296
+ font-size: 18px;
2297
+ line-height: 1.3333333;
2298
+ border-radius: 6px;
2299
+ }
2300
+ .w3eden .btn-group-sm > .btn,
2301
+ .w3eden .btn-sm {
2302
+ padding: 5px 10px;
2303
+ font-size: 12px;
2304
+ line-height: 1.5;
2305
+ border-radius: 3px;
2306
+ }
2307
+ .w3eden .btn-group-xs > .btn,
2308
+ .w3eden .btn-xs {
2309
+ padding: 1px 5px;
2310
+ font-size: 12px;
2311
+ line-height: 1.5;
2312
+ border-radius: 3px;
2313
+ }
2314
+ .w3eden .btn-block {
2315
+ display: block;
2316
+ width: 100%;
2317
+ }
2318
+ .w3eden .btn-block + .btn-block {
2319
+ margin-top: 5px;
2320
+ }
2321
+ .w3eden input[type=button].btn-block,
2322
+ .w3eden input[type=reset].btn-block,
2323
+ .w3eden input[type=submit].btn-block {
2324
+ width: 100%;
2325
+ }
2326
+ .w3eden .fade {
2327
+ opacity: 0;
2328
+ -webkit-transition: opacity .15s linear;
2329
+ -o-transition: opacity .15s linear;
2330
+ transition: opacity 0.15s linear;
2331
+ }
2332
+ .w3eden .fade.in {
2333
+ opacity: 1;
2334
+ }
2335
+ .w3eden .collapse {
2336
+ display: none;
2337
+ }
2338
+ .w3eden .collapse.in {
2339
+ display: block;
2340
+ }
2341
+ .w3eden tr.collapse.in {
2342
+ display: table-row;
2343
+ }
2344
+ .w3eden tbody.collapse.in {
2345
+ display: table-row-group;
2346
+ }
2347
+ .w3eden .collapsing {
2348
+ position: relative;
2349
+ height: 0;
2350
+ overflow: hidden;
2351
+ -webkit-transition-timing-function: ease;
2352
+ -o-transition-timing-function: ease;
2353
+ transition-timing-function: ease;
2354
+ -webkit-transition-duration: .35s;
2355
+ -o-transition-duration: .35s;
2356
+ transition-duration: .35s;
2357
+ -webkit-transition-property: height,visibility;
2358
+ -o-transition-property: height,visibility;
2359
+ transition-property: height, visibility;
2360
+ }
2361
+ .w3eden .caret {
2362
+ display: inline-block;
2363
+ width: 0;
2364
+ height: 0;
2365
+ margin-left: 2px;
2366
+ vertical-align: middle;
2367
+ border-top: 4px dashed;
2368
+ border-right: 4px solid transparent;
2369
+ border-left: 4px solid transparent;
2370
+ }
2371
+ .w3eden .dropdown,
2372
+ .w3eden .dropup {
2373
+ position: relative;
2374
+ }
2375
+ .w3eden .dropdown-toggle:focus {
2376
+ outline: 0;
2377
+ }
2378
+ .w3eden .dropdown-menu {
2379
+ position: absolute;
2380
+ top: 100%;
2381
+ left: 0;
2382
+ z-index: 1000;
2383
+ display: none;
2384
+ float: left;
2385
+ min-width: 160px;
2386
+ padding: 5px 0;
2387
+ margin: 2px 0 0;
2388
+ font-size: 14px;
2389
+ text-align: left;
2390
+ list-style: none;
2391
+ background-color: #fff;
2392
+ -webkit-background-clip: padding-box;
2393
+ background-clip: padding-box;
2394
+ border: 1px solid #ccc;
2395
+ border: 1px solid rgba(0, 0, 0, 0.15);
2396
+ border-radius: 4px;
2397
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2398
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2399
+ }
2400
+ .w3eden .dropdown-menu.pull-right {
2401
+ right: 0;
2402
+ left: auto;
2403
+ }
2404
+ .w3eden .dropdown-menu .divider {
2405
+ height: 1px;
2406
+ margin: 9px 0;
2407
+ overflow: hidden;
2408
+ background-color: #e5e5e5;
2409
+ }
2410
+ .w3eden .dropdown-menu > li > a {
2411
+ display: block;
2412
+ padding: 3px 20px;
2413
+ clear: both;
2414
+ font-weight: 400;
2415
+ line-height: 1.42857143;
2416
+ color: #333;
2417
+ white-space: nowrap;
2418
+ }
2419
+ .w3eden .dropdown-menu > li > a:focus,
2420
+ .w3eden .dropdown-menu > li > a:hover {
2421
+ color: #262626;
2422
+ text-decoration: none;
2423
+ background-color: #f5f5f5;
2424
+ }
2425
+ .w3eden .dropdown-menu > .active > a,
2426
+ .w3eden .dropdown-menu > .active > a:focus,
2427
+ .w3eden .dropdown-menu > .active > a:hover {
2428
+ color: #fff;
2429
+ text-decoration: none;
2430
+ background-color: #337ab7;
2431
+ outline: 0;
2432
+ }
2433
+ .w3eden .dropdown-menu > .disabled > a,
2434
+ .w3eden .dropdown-menu > .disabled > a:focus,
2435
+ .w3eden .dropdown-menu > .disabled > a:hover {
2436
+ color: #777777;
2437
+ }
2438
+ .w3eden .dropdown-menu > .disabled > a:focus,
2439
+ .w3eden .dropdown-menu > .disabled > a:hover {
2440
+ text-decoration: none;
2441
+ cursor: not-allowed;
2442
+ background-color: transparent;
2443
+ background-image: none;
2444
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2445
+ }
2446
+ .w3eden .open > .dropdown-menu {
2447
+ display: block;
2448
+ }
2449
+ .w3eden .open > a {
2450
+ outline: 0;
2451
+ }
2452
+ .w3eden .dropdown-menu-right {
2453
+ right: 0;
2454
+ left: auto;
2455
+ }
2456
+ .w3eden .dropdown-menu-left {
2457
+ right: auto;
2458
+ left: 0;
2459
+ }
2460
+ .w3eden .dropdown-header {
2461
+ display: block;
2462
+ padding: 3px 20px;
2463
+ font-size: 12px;
2464
+ line-height: 1.42857143;
2465
+ color: #777;
2466
+ white-space: nowrap;
2467
+ }
2468
+ .w3eden .dropdown-backdrop {
2469
+ position: fixed;
2470
+ top: 0;
2471
+ right: 0;
2472
+ bottom: 0;
2473
+ left: 0;
2474
+ z-index: 990;
2475
+ }
2476
+ .w3eden .pull-right > .dropdown-menu {
2477
+ right: 0;
2478
+ left: auto;
2479
+ }
2480
+ .w3eden .dropup .caret,
2481
+ .w3eden .navbar-fixed-bottom .dropdown .caret {
2482
+ content: "";
2483
+ border-top: 0;
2484
+ border-bottom: 4px solid;
2485
+ }
2486
+ .w3eden .dropup .dropdown-menu,
2487
+ .w3eden .navbar-fixed-bottom .dropdown .dropdown-menu {
2488
+ top: auto;
2489
+ bottom: 100%;
2490
+ margin-bottom: 2px;
2491
+ }
2492
+ @media (min-width: 768px) {
2493
+ .w3eden .navbar-right .dropdown-menu {
2494
+ right: 0;
2495
+ left: auto;
2496
+ }
2497
+ .w3eden .navbar-right .dropdown-menu-left {
2498
+ right: auto;
2499
+ left: 0;
2500
+ }
2501
+ }
2502
+ .w3eden .btn-group,
2503
+ .w3eden .btn-group-vertical {
2504
+ position: relative;
2505
+ display: inline-block;
2506
+ vertical-align: middle;
2507
+ }
2508
+ .w3eden .btn-group-vertical > .btn,
2509
+ .w3eden .btn-group > .btn {
2510
+ position: relative;
2511
+ float: left;
2512
+ }
2513
+ .w3eden .btn-group-vertical > .btn.active,
2514
+ .w3eden .btn-group-vertical > .btn:active,
2515
+ .w3eden .btn-group-vertical > .btn:focus,
2516
+ .w3eden .btn-group-vertical > .btn:hover,
2517
+ .w3eden .btn-group > .btn.active,
2518
+ .w3eden .btn-group > .btn:active,
2519
+ .w3eden .btn-group > .btn:focus,
2520
+ .w3eden .btn-group > .btn:hover {
2521
+ z-index: 2;
2522
+ }
2523
+ .w3eden .btn-group .btn + .btn,
2524
+ .w3eden .btn-group .btn + .btn-group,
2525
+ .w3eden .btn-group .btn-group + .btn,
2526
+ .w3eden .btn-group .btn-group + .btn-group {
2527
+ margin-left: -1px;
2528
+ }
2529
+ .w3eden .btn-toolbar {
2530
+ margin-left: -5px;
2531
+ }
2532
+ .w3eden .btn-toolbar .btn-group,
2533
+ .w3eden .btn-toolbar .input-group {
2534
+ float: left;
2535
+ }
2536
+ .w3eden .btn-toolbar > .btn,
2537
+ .w3eden .btn-toolbar > .btn-group,
2538
+ .w3eden .btn-toolbar > .input-group {
2539
+ margin-left: 5px;
2540
+ }
2541
+ .w3eden .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
2542
+ border-radius: 0;
2543
+ }
2544
+ .w3eden .btn-group > .btn:first-child {
2545
+ margin-left: 0;
2546
+ }
2547
+ .w3eden .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
2548
+ border-top-right-radius: 0;
2549
+ border-bottom-right-radius: 0;
2550
+ }
2551
+ .w3eden .btn-group > .btn:last-child:not(:first-child),
2552
+ .w3eden .btn-group > .dropdown-toggle:not(:first-child) {
2553
+ border-top-left-radius: 0;
2554
+ border-bottom-left-radius: 0;
2555
+ }
2556
+ .w3eden .btn-group > .btn-group {
2557
+ float: left;
2558
+ }
2559
+ .w3eden .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
2560
+ border-radius: 0;
2561
+ }
2562
+ .w3eden .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
2563
+ .w3eden .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
2564
+ border-top-right-radius: 0;
2565
+ border-bottom-right-radius: 0;
2566
+ }
2567
+ .w3eden .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
2568
+ border-top-left-radius: 0;
2569
+ border-bottom-left-radius: 0;
2570
+ }
2571
+ .w3eden .btn-group .dropdown-toggle:active,
2572
+ .w3eden .btn-group.open .dropdown-toggle {
2573
+ outline: 0;
2574
+ }
2575
+ .w3eden .btn-group > .btn + .dropdown-toggle {
2576
+ padding-right: 8px;
2577
+ padding-left: 8px;
2578
+ }
2579
+ .w3eden .btn-group > .btn-lg + .dropdown-toggle {
2580
+ padding-right: 12px;
2581
+ padding-left: 12px;
2582
+ }
2583
+ .w3eden .btn-group.open .dropdown-toggle {
2584
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2585
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2586
+ }
2587
+ .w3eden .btn-group.open .dropdown-toggle.btn-link {
2588
+ -webkit-box-shadow: none;
2589
+ box-shadow: none;
2590
+ }
2591
+ .w3eden .btn .caret {
2592
+ margin-left: 0;
2593
+ }
2594
+ .w3eden .btn-lg .caret {
2595
+ border-width: 5px 5px 0;
2596
+ border-bottom-width: 0;
2597
+ }
2598
+ .w3eden .dropup .btn-lg .caret {
2599
+ border-width: 0 5px 5px;
2600
+ }
2601
+ .w3eden .btn-group-vertical > .btn,
2602
+ .w3eden .btn-group-vertical > .btn-group,
2603
+ .w3eden .btn-group-vertical > .btn-group > .btn {
2604
+ display: block;
2605
+ float: none;
2606
+ width: 100%;
2607
+ max-width: 100%;
2608
+ }
2609
+ .w3eden .btn-group-vertical > .btn-group > .btn {
2610
+ float: none;
2611
+ }
2612
+ .w3eden .btn-group-vertical > .btn + .btn,
2613
+ .w3eden .btn-group-vertical > .btn + .btn-group,
2614
+ .w3eden .btn-group-vertical > .btn-group + .btn,
2615
+ .w3eden .btn-group-vertical > .btn-group + .btn-group {
2616
+ margin-top: -1px;
2617
+ margin-left: 0;
2618
+ }
2619
+ .w3eden .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
2620
+ border-radius: 0;
2621
+ }
2622
+ .w3eden .btn-group-vertical > .btn:first-child:not(:last-child) {
2623
+ border-top-right-radius: 4px;
2624
+ border-bottom-right-radius: 0;
2625
+ border-bottom-left-radius: 0;
2626
+ }
2627
+ .w3eden .btn-group-vertical > .btn:last-child:not(:first-child) {
2628
+ border-top-left-radius: 0;
2629
+ border-top-right-radius: 0;
2630
+ border-bottom-left-radius: 4px;
2631
+ }
2632
+ .w3eden .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
2633
+ border-radius: 0;
2634
+ }
2635
+ .w3eden .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
2636
+ .w3eden .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
2637
+ border-bottom-right-radius: 0;
2638
+ border-bottom-left-radius: 0;
2639
+ }
2640
+ .w3eden .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
2641
+ border-top-left-radius: 0;
2642
+ border-top-right-radius: 0;
2643
+ }
2644
+ .w3eden .btn-group-justified {
2645
+ display: table;
2646
+ width: 100%;
2647
+ table-layout: fixed;
2648
+ border-collapse: separate;
2649
+ }
2650
+ .w3eden .btn-group-justified > .btn,
2651
+ .w3eden .btn-group-justified > .btn-group {
2652
+ display: table-cell;
2653
+ float: none;
2654
+ width: 1%;
2655
+ }
2656
+ .w3eden .btn-group-justified > .btn-group .btn {
2657
+ width: 100%;
2658
+ }
2659
+ .w3eden .btn-group-justified > .btn-group .dropdown-menu {
2660
+ left: auto;
2661
+ }
2662
+ .w3eden [data-toggle=buttons] > .btn input[type=checkbox],
2663
+ .w3eden [data-toggle=buttons] > .btn input[type=radio],
2664
+ .w3eden [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],
2665
+ .w3eden [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
2666
+ position: absolute;
2667
+ clip: rect(0, 0, 0, 0);
2668
+ pointer-events: none;
2669
+ }
2670
+ .w3eden .input-group {
2671
+ position: relative;
2672
+ display: table;
2673
+ border-collapse: separate;
2674
+ }
2675
+ .w3eden .input-group[class*=col-] {
2676
+ float: none;
2677
+ padding-right: 0;
2678
+ padding-left: 0;
2679
+ }
2680
+ .w3eden .input-group .form-control {
2681
+ position: relative;
2682
+ z-index: 2;
2683
+ float: left;
2684
+ width: 100%;
2685
+ margin-bottom: 0;
2686
+ }
2687
+ .w3eden .input-group-lg > .form-control,
2688
+ .w3eden .input-group-lg > .input-group-addon,
2689
+ .w3eden .input-group-lg > .input-group-btn > .btn {
2690
+ height: 46px;
2691
+ padding: 10px 16px;
2692
+ font-size: 18px;
2693
+ line-height: 1.3333333;
2694
+ border-radius: 6px;
2695
+ }
2696
+ .w3eden select.input-group-lg > .form-control,
2697
+ .w3eden select.input-group-lg > .input-group-addon,
2698
+ .w3eden select.input-group-lg > .input-group-btn > .btn {
2699
+ height: 46px;
2700
+ line-height: 46px;
2701
+ }
2702
+ .w3eden select[multiple].input-group-lg > .form-control,
2703
+ .w3eden select[multiple].input-group-lg > .input-group-addon,
2704
+ .w3eden select[multiple].input-group-lg > .input-group-btn > .btn,
2705
+ .w3eden textarea.input-group-lg > .form-control,
2706
+ .w3eden textarea.input-group-lg > .input-group-addon,
2707
+ .w3eden textarea.input-group-lg > .input-group-btn > .btn {
2708
+ height: auto;
2709
+ }
2710
+ .w3eden .input-group-sm > .form-control,
2711
+ .w3eden .input-group-sm > .input-group-addon,
2712
+ .w3eden .input-group-sm > .input-group-btn > .btn {
2713
+ height: 30px;
2714
+ padding: 5px 10px;
2715
+ font-size: 12px;
2716
+ line-height: 1.5;
2717
+ border-radius: 3px;
2718
+ }
2719
+ .w3eden select.input-group-sm > .form-control,
2720
+ .w3eden select.input-group-sm > .input-group-addon,
2721
+ .w3eden select.input-group-sm > .input-group-btn > .btn {
2722
+ height: 30px;
2723
+ line-height: 30px;
2724
+ }
2725
+ .w3eden select[multiple].input-group-sm > .form-control,
2726
+ .w3eden select[multiple].input-group-sm > .input-group-addon,
2727
+ .w3eden select[multiple].input-group-sm > .input-group-btn > .btn,
2728
+ .w3eden textarea.input-group-sm > .form-control,
2729
+ .w3eden textarea.input-group-sm > .input-group-addon,
2730
+ .w3eden textarea.input-group-sm > .input-group-btn > .btn {
2731
+ height: auto;
2732
+ }
2733
+ .w3eden .input-group .form-control,
2734
+ .w3eden .input-group-addon,
2735
+ .w3eden .input-group-btn {
2736
+ display: table-cell;
2737
+ }
2738
+ .w3eden .input-group .form-control:not(:first-child):not(:last-child),
2739
+ .w3eden .input-group-addon:not(:first-child):not(:last-child),
2740
+ .w3eden .input-group-btn:not(:first-child):not(:last-child) {
2741
+ border-radius: 0;
2742
+ }
2743
+ .w3eden .input-group-addon,
2744
+ .w3eden .input-group-btn {
2745
+ width: 1%;
2746
+ white-space: nowrap;
2747
+ vertical-align: middle;
2748
+ }
2749
+ .w3eden .input-group-addon {
2750
+ padding: 6px 12px;
2751
+ font-size: 14px;
2752
+ font-weight: 400;
2753
+ line-height: 1;
2754
+ color: #555;
2755
+ text-align: center;
2756
+ background-color: #eee;
2757
+ border: 1px solid #ccc;
2758
+ border-radius: 3px;
2759
+ }
2760
+ .w3eden .input-group-addon.input-sm {
2761
+ padding: 5px 10px;
2762
+ font-size: 12px;
2763
+ border-radius: 3px;
2764
+ }
2765
+ .w3eden .input-group-addon.input-lg {
2766
+ padding: 10px 16px;
2767
+ font-size: 18px;
2768
+ border-radius: 6px;
2769
+ }
2770
+ .w3eden .input-group-addon input[type=checkbox],
2771
+ .w3eden .input-group-addon input[type=radio] {
2772
+ margin-top: 0;
2773
+ }
2774
+ .w3eden .input-group .form-control:first-child,
2775
+ .w3eden .input-group-addon:first-child,
2776
+ .w3eden .input-group-btn:first-child > .btn,
2777
+ .w3eden .input-group-btn:first-child > .btn-group > .btn,
2778
+ .w3eden .input-group-btn:first-child > .dropdown-toggle,
2779
+ .w3eden .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
2780
+ .w3eden .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
2781
+ border-top-right-radius: 0;
2782
+ border-bottom-right-radius: 0;
2783
+ }
2784
+ .w3eden .input-group-addon:first-child {
2785
+ border-right: 0;
2786
+ }
2787
+ .w3eden .input-group .form-control:last-child,
2788
+ .w3eden .input-group-addon:last-child,
2789
+ .w3eden .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
2790
+ .w3eden .input-group-btn:first-child > .btn:not(:first-child),
2791
+ .w3eden .input-group-btn:last-child > .btn,
2792
+ .w3eden .input-group-btn:last-child > .btn-group > .btn,
2793
+ .w3eden .input-group-btn:last-child > .dropdown-toggle {
2794
+ border-top-left-radius: 0;
2795
+ border-bottom-left-radius: 0;
2796
+ }
2797
+ .w3eden .input-group-addon:last-child {
2798
+ border-left: 0;
2799
+ }
2800
+ .w3eden .input-group-btn {
2801
+ position: relative;
2802
+ white-space: nowrap;
2803
+ }
2804
+ .w3eden .input-group-btn > .btn {
2805
+ position: relative;
2806
+ }
2807
+ .w3eden .input-group-btn > .btn + .btn {
2808
+ margin-left: -1px;
2809
+ }
2810
+ .w3eden .input-group-btn > .btn:active,
2811
+ .w3eden .input-group-btn > .btn:focus,
2812
+ .w3eden .input-group-btn > .btn:hover {
2813
+ z-index: 2;
2814
+ }
2815
+ .w3eden .input-group-btn:first-child > .btn,
2816
+ .w3eden .input-group-btn:first-child > .btn-group {
2817
+ margin-right: -1px;
2818
+ }
2819
+ .w3eden .input-group-btn:last-child > .btn,
2820
+ .w3eden .input-group-btn:last-child > .btn-group {
2821
+ margin-left: -1px;
2822
+ }
2823
+ .w3eden .nav {
2824
+ padding-left: 0;
2825
+ margin-bottom: 0;
2826
+ list-style: none;
2827
+ }
2828
+ .w3eden .nav > li {
2829
+ position: relative;
2830
+ display: block;
2831
+ }
2832
+ .w3eden .nav > li > a {
2833
+ position: relative;
2834
+ display: block;
2835
+ padding: 10px 15px;
2836
+ }
2837
+ .w3eden .nav > li > a:focus,
2838
+ .w3eden .nav > li > a:hover {
2839
+ text-decoration: none;
2840
+ background-color: #eeeeee;
2841
+ }
2842
+ .w3eden .nav > li.disabled > a {
2843
+ color: #777777;
2844
+ }
2845
+ .w3eden .nav > li.disabled > a:focus,
2846
+ .w3eden .nav > li.disabled > a:hover {
2847
+ color: #777;
2848
+ text-decoration: none;
2849
+ cursor: not-allowed;
2850
+ background-color: transparent;
2851
+ }
2852
+ .w3eden .nav .open > a,
2853
+ .w3eden .nav .open > a:focus,
2854
+ .w3eden .nav .open > a:hover {
2855
+ background-color: #eee;
2856
+ border-color: #337ab7;
2857
+ }
2858
+ .w3eden .nav .nav-divider {
2859
+ height: 1px;
2860
+ margin: 9px 0;
2861
+ overflow: hidden;
2862
+ background-color: #e5e5e5;
2863
+ }
2864
+ .w3eden .nav > li > a > img {
2865
+ max-width: none;
2866
+ }
2867
+ .w3eden .nav-tabs {
2868
+ border-bottom: 1px solid #dddddd;
2869
+ }
2870
+ .w3eden .nav-tabs > li {
2871
+ float: left;
2872
+ margin-bottom: -1px;
2873
+ }
2874
+ .w3eden .nav-tabs > li > a {
2875
+ margin-right: 2px;
2876
+ line-height: 1.42857143;
2877
+ border: 1px solid transparent;
2878
+ border-radius: 4px 4px 0 0;
2879
+ }
2880
+ .w3eden .nav-tabs > li > a:hover {
2881
+ border-color: #eeeeee #eeeeee #dddddd;
2882
+ }
2883
+ .w3eden .nav-tabs > li.active > a,
2884
+ .w3eden .nav-tabs > li.active > a:focus,
2885
+ .w3eden .nav-tabs > li.active > a:hover {
2886
+ color: #555;
2887
+ cursor: default;
2888
+ background-color: #fff;
2889
+ border: 1px solid #ddd;
2890
+ border-bottom-color: transparent;
2891
+ }
2892
+ .w3eden .nav-tabs.nav-justified {
2893
+ width: 100%;
2894
+ border-bottom: 0;
2895
+ }
2896
+ .w3eden .nav-tabs.nav-justified > li {
2897
+ float: none;
2898
+ }
2899
+ .w3eden .nav-tabs.nav-justified > li > a {
2900
+ margin-bottom: 5px;
2901
+ text-align: center;
2902
+ }
2903
+ .w3eden .nav-tabs.nav-justified > .dropdown .dropdown-menu {
2904
+ top: auto;
2905
+ left: auto;
2906
+ }
2907
+ @media (min-width: 768px) {
2908
+ .w3eden .nav-tabs.nav-justified > li {
2909
+ display: table-cell;
2910
+ width: 1%;
2911
+ }
2912
+ .w3eden .nav-tabs.nav-justified > li > a {
2913
+ margin-bottom: 0;
2914
+ }
2915
+ }
2916
+ .w3eden .nav-tabs.nav-justified > li > a {
2917
+ margin-right: 0;
2918
+ border-radius: 4px;
2919
+ }
2920
+ .w3eden .nav-tabs.nav-justified > .active > a,
2921
+ .w3eden .nav-tabs.nav-justified > .active > a:focus,
2922
+ .w3eden .nav-tabs.nav-justified > .active > a:hover {
2923
+ border: 1px solid #dddddd;
2924
+ }
2925
+ @media (min-width: 768px) {
2926
+ .w3eden .nav-tabs.nav-justified > li > a {
2927
+ border-bottom: 1px solid #ddd;
2928
+ border-radius: 4px 4px 0 0;
2929
+ }
2930
+ .w3eden .nav-tabs.nav-justified > .active > a,
2931
+ .w3eden .nav-tabs.nav-justified > .active > a:focus,
2932
+ .w3eden .nav-tabs.nav-justified > .active > a:hover {
2933
+ border-bottom-color: #ffffff;
2934
+ }
2935
+ }
2936
+ .w3eden .nav-pills > li {
2937
+ float: left;
2938
+ }
2939
+ .w3eden .nav-pills > li > a {
2940
+ border-radius: 4px;
2941
+ }
2942
+ .w3eden .nav-pills > li + li {
2943
+ margin-left: 2px;
2944
+ }
2945
+ .w3eden .nav-pills > li.active > a,
2946
+ .w3eden .nav-pills > li.active > a:focus,
2947
+ .w3eden .nav-pills > li.active > a:hover {
2948
+ color: #fff;
2949
+ background-color: #337ab7;
2950
+ }
2951
+ .w3eden .nav-stacked > li {
2952
+ float: none;
2953
+ }
2954
+ .w3eden .nav-stacked > li + li {
2955
+ margin-top: 2px;
2956
+ margin-left: 0;
2957
+ }
2958
+ .w3eden .nav-justified {
2959
+ width: 100%;
2960
+ }
2961
+ .w3eden .nav-justified > li {
2962
+ float: none;
2963
+ }
2964
+ .w3eden .nav-justified > li > a {
2965
+ margin-bottom: 5px;
2966
+ text-align: center;
2967
+ }
2968
+ .w3eden .nav-justified > .dropdown .dropdown-menu {
2969
+ top: auto;
2970
+ left: auto;
2971
+ }
2972
+ @media (min-width: 768px) {
2973
+ .w3eden .nav-justified > li {
2974
+ display: table-cell;
2975
+ width: 1%;
2976
+ }
2977
+ .w3eden .nav-justified > li > a {
2978
+ margin-bottom: 0;
2979
+ }
2980
+ }
2981
+ .w3eden .nav-tabs-justified {
2982
+ border-bottom: 0;
2983
+ }
2984
+ .w3eden .nav-tabs-justified > li > a {
2985
+ margin-right: 0;
2986
+ border-radius: 4px;
2987
+ }
2988
+ .w3eden .nav-tabs-justified > .active > a,
2989
+ .w3eden .nav-tabs-justified > .active > a:focus,
2990
+ .w3eden .nav-tabs-justified > .active > a:hover {
2991
+ border: 1px solid #dddddd;
2992
+ }
2993
+ @media (min-width: 768px) {
2994
+ .w3eden .nav-tabs-justified > li > a {
2995
+ border-bottom: 1px solid #ddd;
2996
+ border-radius: 4px 4px 0 0;
2997
+ }
2998
+ .w3eden .nav-tabs-justified > .active > a,
2999
+ .w3eden .nav-tabs-justified > .active > a:focus,
3000
+ .w3eden .nav-tabs-justified > .active > a:hover {
3001
+ border-bottom-color: #ffffff;
3002
+ }
3003
+ }
3004
+ .w3eden .tab-content > .tab-pane {
3005
+ display: none;
3006
+ }
3007
+ .w3eden .tab-content > .active {
3008
+ display: block;
3009
+ }
3010
+ .w3eden .nav-tabs .dropdown-menu {
3011
+ margin-top: -1px;
3012
+ border-top-left-radius: 0;
3013
+ border-top-right-radius: 0;
3014
+ }
3015
+ .w3eden .navbar {
3016
+ position: relative;
3017
+ min-height: 50px;
3018
+ margin-bottom: 20px;
3019
+ border: 1px solid transparent;
3020
+ }
3021
+ @media (min-width: 768px) {
3022
+ .w3eden .navbar {
3023
+ border-radius: 4px;
3024
+ }
3025
+ }
3026
+ @media (min-width: 768px) {
3027
+ .w3eden .navbar-header {
3028
+ float: left;
3029
+ }
3030
+ }
3031
+ .w3eden .navbar-collapse {
3032
+ padding-right: 15px;
3033
+ padding-left: 15px;
3034
+ overflow-x: visible;
3035
+ -webkit-overflow-scrolling: touch;
3036
+ border-top: 1px solid transparent;
3037
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3038
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3039
+ }
3040
+ .w3eden .navbar-collapse.in {
3041
+ overflow-y: auto;
3042
+ }
3043
+ @media (min-width: 768px) {
3044
+ .w3eden .navbar-collapse {
3045
+ width: auto;
3046
+ border-top: 0;
3047
+ -webkit-box-shadow: none;
3048
+ box-shadow: none;
3049
+ }
3050
+ .w3eden .navbar-collapse.collapse {
3051
+ display: block!important;
3052
+ height: auto!important;
3053
+ padding-bottom: 0;
3054
+ overflow: visible !important;
3055
+ }
3056
+ .w3eden .navbar-collapse.in {
3057
+ overflow-y: visible;
3058
+ }
3059
+ .w3eden .navbar-fixed-bottom .navbar-collapse,
3060
+ .w3eden .navbar-fixed-top .navbar-collapse,
3061
+ .w3eden .navbar-static-top .navbar-collapse {
3062
+ padding-right: 0;
3063
+ padding-left: 0;
3064
+ }
3065
+ }
3066
+ .w3eden .navbar-fixed-bottom .navbar-collapse,
3067
+ .w3eden .navbar-fixed-top .navbar-collapse {
3068
+ max-height: 340px;
3069
+ }
3070
+ @media (max-device-width: 480px) and (orientation: landscape) {
3071
+ .w3eden .navbar-fixed-bottom .navbar-collapse,
3072
+ .w3eden .navbar-fixed-top .navbar-collapse {
3073
+ max-height: 200px;
3074
+ }
3075
+ }
3076
+ .w3eden .container-fluid > .navbar-collapse,
3077
+ .w3eden .container-fluid > .navbar-header,
3078
+ .w3eden .container > .navbar-collapse,
3079
+ .w3eden .container > .navbar-header {
3080
+ margin-right: -15px;
3081
+ margin-left: -15px;
3082
+ }
3083
+ @media (min-width: 768px) {
3084
+ .w3eden .container-fluid > .navbar-collapse,
3085
+ .w3eden .container-fluid > .navbar-header,
3086
+ .w3eden .container > .navbar-collapse,
3087
+ .w3eden .container > .navbar-header {
3088
+ margin-right: 0;
3089
+ margin-left: 0;
3090
+ }
3091
+ }
3092
+ .w3eden .navbar-static-top {
3093
+ z-index: 1000;
3094
+ border-width: 0 0 1px;
3095
+ }
3096
+ @media (min-width: 768px) {
3097
+ .w3eden .navbar-static-top {
3098
+ border-radius: 0;
3099
+ }
3100
+ }
3101
+ .w3eden .navbar-fixed-bottom,
3102
+ .w3eden .navbar-fixed-top {
3103
+ position: fixed;
3104
+ right: 0;
3105
+ left: 0;
3106
+ z-index: 1030;
3107
+ }
3108
+ @media (min-width: 768px) {
3109
+ .w3eden .navbar-fixed-bottom,
3110
+ .w3eden .navbar-fixed-top {
3111
+ border-radius: 0;
3112
+ }
3113
+ }
3114
+ .w3eden .navbar-fixed-top {
3115
+ top: 0;
3116
+ border-width: 0 0 1px;
3117
+ }
3118
+ .w3eden .navbar-fixed-bottom {
3119
+ bottom: 0;
3120
+ margin-bottom: 0;
3121
+ border-width: 1px 0 0;
3122
+ }
3123
+ .w3eden .navbar-brand {
3124
+ float: left;
3125
+ height: 50px;
3126
+ padding: 15px 15px;
3127
+ font-size: 18px;
3128
+ line-height: 20px;
3129
+ }
3130
+ .w3eden .navbar-brand:focus,
3131
+ .w3eden .navbar-brand:hover {
3132
+ text-decoration: none;
3133
+ }
3134
+ .w3eden .navbar-brand > img {
3135
+ display: block;
3136
+ }
3137
+ @media (min-width: 768px) {
3138
+ .w3eden .navbar > .container .navbar-brand,
3139
+ .w3eden .navbar > .container-fluid .navbar-brand {
3140
+ margin-left: -15px;
3141
+ }
3142
+ }
3143
+ .w3eden .navbar-toggle {
3144
+ position: relative;
3145
+ float: right;
3146
+ padding: 9px 10px;
3147
+ margin-top: 8px;
3148
+ margin-right: 15px;
3149
+ margin-bottom: 8px;
3150
+ background-color: transparent;
3151
+ background-image: none;
3152
+ border: 1px solid transparent;
3153
+ border-radius: 4px;
3154
+ }
3155
+ .w3eden .navbar-toggle:focus {
3156
+ outline: 0;
3157
+ }
3158
+ .w3eden .navbar-toggle .icon-bar {
3159
+ display: block;
3160
+ width: 22px;
3161
+ height: 2px;
3162
+ border-radius: 1px;
3163
+ }
3164
+ .w3eden .navbar-toggle .icon-bar + .icon-bar {
3165
+ margin-top: 4px;
3166
+ }
3167
+ @media (min-width: 768px) {
3168
+ .w3eden .navbar-toggle {
3169
+ display: none;
3170
+ }
3171
+ }
3172
+ .w3eden .navbar-nav {
3173
+ margin: 7.5px -15px;
3174
+ }
3175
+ .w3eden .navbar-nav > li > a {
3176
+ padding-top: 10px;
3177
+ padding-bottom: 10px;
3178
+ line-height: 20px;
3179
+ }
3180
+ @media (max-width: 767px) {
3181
+ .w3eden .navbar-nav .open .dropdown-menu {
3182
+ position: static;
3183
+ float: none;
3184
+ width: auto;
3185
+ margin-top: 0;
3186
+ background-color: transparent;
3187
+ border: 0;
3188
+ -webkit-box-shadow: none;
3189
+ box-shadow: none;
3190
+ }
3191
+ .w3eden .navbar-nav .open .dropdown-menu .dropdown-header,
3192
+ .w3eden .navbar-nav .open .dropdown-menu > li > a {
3193
+ padding: 5px 15px 5px 25px;
3194
+ }
3195
+ .w3eden .navbar-nav .open .dropdown-menu > li > a {
3196
+ line-height: 20px;
3197
+ }
3198
+ .w3eden .navbar-nav .open .dropdown-menu > li > a:focus,
3199
+ .w3eden .navbar-nav .open .dropdown-menu > li > a:hover {
3200
+ background-image: none;
3201
+ }
3202
+ }
3203
+ @media (min-width: 768px) {
3204
+ .w3eden .navbar-nav {
3205
+ float: left;
3206
+ margin: 0;
3207
+ }
3208
+ .w3eden .navbar-nav > li {
3209
+ float: left;
3210
+ }
3211
+ .w3eden .navbar-nav > li > a {
3212
+ padding-top: 15px;
3213
+ padding-bottom: 15px;
3214
+ }
3215
+ }
3216
+ .w3eden .navbar-form {
3217
+ padding: 10px 15px;
3218
+ margin-top: 8px;
3219
+ margin-right: -15px;
3220
+ margin-bottom: 8px;
3221
+ margin-left: -15px;
3222
+ border-top: 1px solid transparent;
3223
+ border-bottom: 1px solid transparent;
3224
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3225
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3226
+ }
3227
+ @media (min-width: 768px) {
3228
+ .w3eden .navbar-form .form-group {
3229
+ display: inline-block;
3230
+ margin-bottom: 0;
3231
+ vertical-align: middle;
3232
+ }
3233
+ .w3eden .navbar-form .form-control {
3234
+ display: inline-block;
3235
+ width: auto;
3236
+ vertical-align: middle;
3237
+ }
3238
+ .w3eden .navbar-form .form-control-static {
3239
+ display: inline-block;
3240
+ }
3241
+ .w3eden .navbar-form .input-group {
3242
+ display: inline-table;
3243
+ vertical-align: middle;
3244
+ }
3245
+ .w3eden .navbar-form .input-group .form-control,
3246
+ .w3eden .navbar-form .input-group .input-group-addon,
3247
+ .w3eden .navbar-form .input-group .input-group-btn {
3248
+ width: auto;
3249
+ }
3250
+ .w3eden .navbar-form .input-group > .form-control {
3251
+ width: 100%;
3252
+ }
3253
+ .w3eden .navbar-form .control-label {
3254
+ margin-bottom: 0;
3255
+ vertical-align: middle;
3256
+ }
3257
+ .w3eden .navbar-form .checkbox,
3258
+ .w3eden .navbar-form .radio {
3259
+ display: inline-block;
3260
+ margin-top: 0;
3261
+ margin-bottom: 0;
3262
+ vertical-align: middle;
3263
+ }
3264
+ .w3eden .navbar-form .checkbox label,
3265
+ .w3eden .navbar-form .radio label {
3266
+ padding-left: 0;
3267
+ }
3268
+ .w3eden .navbar-form .checkbox input[type=checkbox],
3269
+ .w3eden .navbar-form .radio input[type=radio] {
3270
+ position: relative;
3271
+ margin-left: 0;
3272
+ }
3273
+ .w3eden .navbar-form .has-feedback .form-control-feedback {
3274
+ top: 0;
3275
+ }
3276
+ }
3277
+ @media (max-width: 767px) {
3278
+ .w3eden .navbar-form .form-group {
3279
+ margin-bottom: 5px;
3280
+ }
3281
+ .w3eden .navbar-form .form-group:last-child {
3282
+ margin-bottom: 0;
3283
+ }
3284
+ }
3285
+ @media (min-width: 768px) {
3286
+ .w3eden .navbar-form {
3287
+ width: auto;
3288
+ padding-top: 0;
3289
+ padding-bottom: 0;
3290
+ margin-right: 0;
3291
+ margin-left: 0;
3292
+ border: 0;
3293
+ -webkit-box-shadow: none;
3294
+ box-shadow: none;
3295
+ }
3296
+ }
3297
+ .w3eden .navbar-nav > li > .dropdown-menu {
3298
+ margin-top: 0;
3299
+ border-top-left-radius: 0;
3300
+ border-top-right-radius: 0;
3301
+ }
3302
+ .w3eden .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3303
+ margin-bottom: 0;
3304
+ border-top-left-radius: 4px;
3305
+ border-top-right-radius: 4px;
3306
+ border-bottom-right-radius: 0;
3307
+ border-bottom-left-radius: 0;
3308
+ }
3309
+ .w3eden .navbar-btn {
3310
+ margin-top: 8px;
3311
+ margin-bottom: 8px;
3312
+ }
3313
+ .w3eden .navbar-btn.btn-sm {
3314
+ margin-top: 10px;
3315
+ margin-bottom: 10px;
3316
+ }
3317
+ .w3eden .navbar-btn.btn-xs {
3318
+ margin-top: 14px;
3319
+ margin-bottom: 14px;
3320
+ }
3321
+ .w3eden .navbar-text {
3322
+ margin-top: 15px;
3323
+ margin-bottom: 15px;
3324
+ }
3325
+ @media (min-width: 768px) {
3326
+ .w3eden .navbar-text {
3327
+ float: left;
3328
+ margin-right: 15px;
3329
+ margin-left: 15px;
3330
+ }
3331
+ }
3332
+ @media (min-width: 768px) {
3333
+ .w3eden .navbar-left {
3334
+ float: left !important;
3335
+ }
3336
+ .w3eden .navbar-right {
3337
+ float: right!important;
3338
+ margin-right: -15px;
3339
+ }
3340
+ .w3eden .navbar-right ~ .navbar-right {
3341
+ margin-right: 0;
3342
+ }
3343
+ }
3344
+ .w3eden .navbar-default {
3345
+ background-color: #f8f8f8;
3346
+ border-color: #e7e7e7;
3347
+ }
3348
+ .w3eden .navbar-default .navbar-brand {
3349
+ color: #777777;
3350
+ }
3351
+ .w3eden .navbar-default .navbar-brand:focus,
3352
+ .w3eden .navbar-default .navbar-brand:hover {
3353
+ color: #5e5e5e;
3354
+ background-color: transparent;
3355
+ }
3356
+ .w3eden .navbar-default .navbar-text {
3357
+ color: #777777;
3358
+ }
3359
+ .w3eden .navbar-default .navbar-nav > li > a {
3360
+ color: #777777;
3361
+ }
3362
+ .w3eden .navbar-default .navbar-nav > li > a:focus,
3363
+ .w3eden .navbar-default .navbar-nav > li > a:hover {
3364
+ color: #333;
3365
+ background-color: transparent;
3366
+ }
3367
+ .w3eden .navbar-default .navbar-nav > .active > a,
3368
+ .w3eden .navbar-default .navbar-nav > .active > a:focus,
3369
+ .w3eden .navbar-default .navbar-nav > .active > a:hover {
3370
+ color: #555;
3371
+ background-color: #e7e7e7;
3372
+ }
3373
+ .w3eden .navbar-default .navbar-nav > .disabled > a,
3374
+ .w3eden .navbar-default .navbar-nav > .disabled > a:focus,
3375
+ .w3eden .navbar-default .navbar-nav > .disabled > a:hover {
3376
+ color: #ccc;
3377
+ background-color: transparent;
3378
+ }
3379
+ .w3eden .navbar-default .navbar-toggle {
3380
+ border-color: #dddddd;
3381
+ }
3382
+ .w3eden .navbar-default .navbar-toggle:focus,
3383
+ .w3eden .navbar-default .navbar-toggle:hover {
3384
+ background-color: #dddddd;
3385
+ }
3386
+ .w3eden .navbar-default .navbar-toggle .icon-bar {
3387
+ background-color: #888888;
3388
+ }
3389
+ .w3eden .navbar-default .navbar-collapse,
3390
+ .w3eden .navbar-default .navbar-form {
3391
+ border-color: #e7e7e7;
3392
+ }
3393
+ .w3eden .navbar-default .navbar-nav > .open > a,
3394
+ .w3eden .navbar-default .navbar-nav > .open > a:focus,
3395
+ .w3eden .navbar-default .navbar-nav > .open > a:hover {
3396
+ color: #555;
3397
+ background-color: #e7e7e7;
3398
+ }
3399
+ @media (max-width: 767px) {
3400
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3401
+ color: #777777;
3402
+ }
3403
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
3404
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
3405
+ color: #333;
3406
+ background-color: transparent;
3407
+ }
3408
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
3409
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
3410
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
3411
+ color: #555;
3412
+ background-color: #e7e7e7;
3413
+ }
3414
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
3415
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,
3416
+ .w3eden .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
3417
+ color: #ccc;
3418
+ background-color: transparent;
3419
+ }
3420
+ }
3421
+ .w3eden .navbar-default .navbar-link {
3422
+ color: #777777;
3423
+ }
3424
+ .w3eden .navbar-default .navbar-link:hover {
3425
+ color: #333333;
3426
+ }
3427
+ .w3eden .navbar-default .btn-link {
3428
+ color: #777777;
3429
+ }
3430
+ .w3eden .navbar-default .btn-link:focus,
3431
+ .w3eden .navbar-default .btn-link:hover {
3432
+ color: #333333;
3433
+ }
3434
+ .w3eden .navbar-default .btn-link[disabled]:focus,
3435
+ .w3eden .navbar-default .btn-link[disabled]:hover,
3436
+ .w3eden fieldset[disabled] .navbar-default .btn-link:focus,
3437
+ .w3eden fieldset[disabled] .navbar-default .btn-link:hover {
3438
+ color: #cccccc;
3439
+ }
3440
+ .w3eden .navbar-inverse {
3441
+ background-color: #222;
3442
+ border-color: #080808;
3443
+ }
3444
+ .w3eden .navbar-inverse .navbar-brand {
3445
+ color: #9d9d9d;
3446
+ }
3447
+ .w3eden .navbar-inverse .navbar-brand:focus,
3448
+ .w3eden .navbar-inverse .navbar-brand:hover {
3449
+ color: #fff;
3450
+ background-color: transparent;
3451
+ }
3452
+ .w3eden .navbar-inverse .navbar-text {
3453
+ color: #9d9d9d;
3454
+ }
3455
+ .w3eden .navbar-inverse .navbar-nav > li > a {
3456
+ color: #9d9d9d;
3457
+ }
3458
+ .w3eden .navbar-inverse .navbar-nav > li > a:focus,
3459
+ .w3eden .navbar-inverse .navbar-nav > li > a:hover {
3460
+ color: #fff;
3461
+ background-color: transparent;
3462
+ }
3463
+ .w3eden .navbar-inverse .navbar-nav > .active > a,
3464
+ .w3eden .navbar-inverse .navbar-nav > .active > a:focus,
3465
+ .w3eden .navbar-inverse .navbar-nav > .active > a:hover {
3466
+ color: #fff;
3467
+ background-color: #080808;
3468
+ }
3469
+ .w3eden .navbar-inverse .navbar-nav > .disabled > a,
3470
+ .w3eden .navbar-inverse .navbar-nav > .disabled > a:focus,
3471
+ .w3eden .navbar-inverse .navbar-nav > .disabled > a:hover {
3472
+ color: #444;
3473
+ background-color: transparent;
3474
+ }
3475
+ .w3eden .navbar-inverse .navbar-toggle {
3476
+ border-color: #333333;
3477
+ }
3478
+ .w3eden .navbar-inverse .navbar-toggle:focus,
3479
+ .w3eden .navbar-inverse .navbar-toggle:hover {
3480
+ background-color: #333333;
3481
+ }
3482
+ .w3eden .navbar-inverse .navbar-toggle .icon-bar {
3483
+ background-color: #ffffff;
3484
+ }
3485
+ .w3eden .navbar-inverse .navbar-collapse,
3486
+ .w3eden .navbar-inverse .navbar-form {
3487
+ border-color: #101010;
3488
+ }
3489
+ .w3eden .navbar-inverse .navbar-nav > .open > a,
3490
+ .w3eden .navbar-inverse .navbar-nav > .open > a:focus,
3491
+ .w3eden .navbar-inverse .navbar-nav > .open > a:hover {
3492
+ color: #fff;
3493
+ background-color: #080808;
3494
+ }
3495
+ @media (max-width: 767px) {
3496
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
3497
+ border-color: #080808;
3498
+ }
3499
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
3500
+ background-color: #080808;
3501
+ }
3502
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
3503
+ color: #9d9d9d;
3504
+ }
3505
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,
3506
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
3507
+ color: #fff;
3508
+ background-color: transparent;
3509
+ }
3510
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
3511
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,
3512
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
3513
+ color: #fff;
3514
+ background-color: #080808;
3515
+ }
3516
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
3517
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,
3518
+ .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
3519
+ color: #444;
3520
+ background-color: transparent;
3521
+ }
3522
+ }
3523
+ .w3eden .navbar-inverse .navbar-link {
3524
+ color: #9d9d9d;
3525
+ }
3526
+ .w3eden .navbar-inverse .navbar-link:hover {
3527
+ color: #ffffff;
3528
+ }
3529
+ .w3eden .navbar-inverse .btn-link {
3530
+ color: #9d9d9d;
3531
+ }
3532
+ .w3eden .navbar-inverse .btn-link:focus,
3533
+ .w3eden .navbar-inverse .btn-link:hover {
3534
+ color: #ffffff;
3535
+ }
3536
+ .w3eden .navbar-inverse .btn-link[disabled]:focus,
3537
+ .w3eden .navbar-inverse .btn-link[disabled]:hover,
3538
+ .w3eden fieldset[disabled] .navbar-inverse .btn-link:focus,
3539
+ .w3eden fieldset[disabled] .navbar-inverse .btn-link:hover {
3540
+ color: #444444;
3541
+ }
3542
+ .w3eden .breadcrumb {
3543
+ padding: 8px 15px;
3544
+ margin-bottom: 20px;
3545
+ list-style: none;
3546
+ background-color: #f5f5f5;
3547
+ border-radius: 4px;
3548
+ }
3549
+ .w3eden .breadcrumb > li {
3550
+ display: inline-block;
3551
+ }
3552
+ .w3eden .breadcrumb > li + li:before {
3553
+ padding: 0 5px;
3554
+ color: #ccc;
3555
+ content: "/\00a0";
3556
+ }
3557
+ .w3eden .breadcrumb > .active {
3558
+ color: #777777;
3559
+ }
3560
+ .w3eden .pagination {
3561
+ display: inline-block;
3562
+ padding-left: 0;
3563
+ margin: 20px 0;
3564
+ border-radius: 4px;
3565
+ }
3566
+ .w3eden .pagination > li {
3567
+ display: inline;
3568
+ }
3569
+ .w3eden .pagination > li > a,
3570
+ .w3eden .pagination > li > span {
3571
+ position: relative;
3572
+ float: left;
3573
+ padding: 6px 12px;
3574
+ margin-left: -1px;
3575
+ line-height: 1.42857143;
3576
+ color: #337ab7;
3577
+ text-decoration: none;
3578
+ background-color: #fff;
3579
+ border: 1px solid #dddddd;
3580
+ }
3581
+ .w3eden .pagination > li:first-child > a,
3582
+ .w3eden .pagination > li:first-child > span {
3583
+ margin-left: 0;
3584
+ border-top-left-radius: 4px;
3585
+ border-bottom-left-radius: 4px;
3586
+ }
3587
+ .w3eden .pagination > li:last-child > a,
3588
+ .w3eden .pagination > li:last-child > span {
3589
+ border-top-right-radius: 4px;
3590
+ border-bottom-right-radius: 4px;
3591
+ }
3592
+ .w3eden .pagination > li > a:focus,
3593
+ .w3eden .pagination > li > a:hover,
3594
+ .w3eden .pagination > li > span:focus,
3595
+ .w3eden .pagination > li > span:hover {
3596
+ color: #23527c;
3597
+ background-color: #eee;
3598
+ border-color: #dddddd;
3599
+ }
3600
+ .w3eden .pagination > .active > a,
3601
+ .w3eden .pagination > .active > a:focus,
3602
+ .w3eden .pagination > .active > a:hover,
3603
+ .w3eden .pagination > .active > span,
3604
+ .w3eden .pagination > .active > span:focus,
3605
+ .w3eden .pagination > .active > span:hover {
3606
+ z-index: 2;
3607
+ color: #fff;
3608
+ cursor: default;
3609
+ background-color: #337ab7;
3610
+ border-color: #337ab7;
3611
+ }
3612
+ .w3eden .pagination > .disabled > a,
3613
+ .w3eden .pagination > .disabled > a:focus,
3614
+ .w3eden .pagination > .disabled > a:hover,
3615
+ .w3eden .pagination > .disabled > span,
3616
+ .w3eden .pagination > .disabled > span:focus,
3617
+ .w3eden .pagination > .disabled > span:hover {
3618
+ color: #777;
3619
+ cursor: not-allowed;
3620
+ background-color: #fff;
3621
+ border-color: #dddddd;
3622
+ }
3623
+ .w3eden .pagination-lg > li > a,
3624
+ .w3eden .pagination-lg > li > span {
3625
+ padding: 10px 16px;
3626
+ font-size: 18px;
3627
+ }
3628
+ .w3eden .pagination-lg > li:first-child > a,
3629
+ .w3eden .pagination-lg > li:first-child > span {
3630
+ border-top-left-radius: 6px;
3631
+ border-bottom-left-radius: 6px;
3632
+ }
3633
+ .w3eden .pagination-lg > li:last-child > a,
3634
+ .w3eden .pagination-lg > li:last-child > span {
3635
+ border-top-right-radius: 6px;
3636
+ border-bottom-right-radius: 6px;
3637
+ }
3638
+ .w3eden .pagination-sm > li > a,
3639
+ .w3eden .pagination-sm > li > span {
3640
+ padding: 5px 10px;
3641
+ font-size: 12px;
3642
+ }
3643
+ .w3eden .pagination-sm > li:first-child > a,
3644
+ .w3eden .pagination-sm > li:first-child > span {
3645
+ border-top-left-radius: 3px;
3646
+ border-bottom-left-radius: 3px;
3647
+ }
3648
+ .w3eden .pagination-sm > li:last-child > a,
3649
+ .w3eden .pagination-sm > li:last-child > span {
3650
+ border-top-right-radius: 3px;
3651
+ border-bottom-right-radius: 3px;
3652
+ }
3653
+ .w3eden .pager {
3654
+ padding-left: 0;
3655
+ margin: 20px 0;
3656
+ text-align: center;
3657
+ list-style: none;
3658
+ }
3659
+ .w3eden .pager li {
3660
+ display: inline;
3661
+ }
3662
+ .w3eden .pager li > a,
3663
+ .w3eden .pager li > span {
3664
+ display: inline-block;
3665
+ padding: 5px 14px;
3666
+ background-color: #fff;
3667
+ border: 1px solid #ddd;
3668
+ border-radius: 15px;
3669
+ }
3670
+ .w3eden .pager li > a:focus,
3671
+ .w3eden .pager li > a:hover {
3672
+ text-decoration: none;
3673
+ background-color: #eeeeee;
3674
+ }
3675
+ .w3eden .pager .next > a,
3676
+ .w3eden .pager .next > span {
3677
+ float: right;
3678
+ }
3679
+ .w3eden .pager .previous > a,
3680
+ .w3eden .pager .previous > span {
3681
+ float: left;
3682
+ }
3683
+ .w3eden .pager .disabled > a,
3684
+ .w3eden .pager .disabled > a:focus,
3685
+ .w3eden .pager .disabled > a:hover,
3686
+ .w3eden .pager .disabled > span {
3687
+ color: #777;
3688
+ cursor: not-allowed;
3689
+ background-color: #ffffff;
3690
+ }
3691
+ .w3eden .label {
3692
+ display: inline;
3693
+ padding: .2em .6em .3em;
3694
+ font-size: 75%;
3695
+ font-weight: 700;
3696
+ line-height: 1;
3697
+ color: #fff;
3698
+ text-align: center;
3699
+ white-space: nowrap;
3700
+ vertical-align: baseline;
3701
+ border-radius: 0.25em;
3702
+ }
3703
+ .w3eden a.label:focus,
3704
+ .w3eden a.label:hover {
3705
+ color: #fff;
3706
+ text-decoration: none;
3707
+ cursor: pointer;
3708
+ }
3709
+ .w3eden .label:empty {
3710
+ display: none;
3711
+ }
3712
+ .w3eden .btn .label {
3713
+ position: relative;
3714
+ top: -1px;
3715
+ }
3716
+ .w3eden .label-default {
3717
+ background-color: #777777;
3718
+ }
3719
+ .w3eden .label-default[href]:focus,
3720
+ .w3eden .label-default[href]:hover {
3721
+ background-color: #5e5e5e;
3722
+ }
3723
+ .w3eden .label-primary {
3724
+ background-color: #337ab7;
3725
+ }
3726
+ .w3eden .label-primary[href]:focus,
3727
+ .w3eden .label-primary[href]:hover {
3728
+ background-color: #286090;
3729
+ }
3730
+ .w3eden .label-success {
3731
+ background-color: #5cb85c;
3732
+ }
3733
+ .w3eden .label-success[href]:focus,
3734
+ .w3eden .label-success[href]:hover {
3735
+ background-color: #449d44;
3736
+ }
3737
+ .w3eden .label-info {
3738
+ background-color: #5bc0de;
3739
+ }
3740
+ .w3eden .label-info[href]:focus,
3741
+ .w3eden .label-info[href]:hover {
3742
+ background-color: #31b0d5;
3743
+ }
3744
+ .w3eden .label-warning {
3745
+ background-color: var(--color-warning-active);
3746
+ }
3747
+ .w3eden .label-warning[href]:focus,
3748
+ .w3eden .label-warning[href]:hover {
3749
+ background-color: #ec971f;
3750
+ }
3751
+ .w3eden .label-danger {
3752
+ background-color: var(--color-danger);
3753
+ }
3754
+ .w3eden .label-danger[href]:focus,
3755
+ .w3eden .label-danger[href]:hover {
3756
+ background-color: var(--color-danger-active);
3757
+ }
3758
+ .w3eden .badge {
3759
+ display: inline-block;
3760
+ min-width: 10px;
3761
+ padding: 3px 7px;
3762
+ font-size: 12px;
3763
+ font-weight: 700;
3764
+ line-height: 1;
3765
+ color: #fff;
3766
+ text-align: center;
3767
+ white-space: nowrap;
3768
+ vertical-align: baseline;
3769
+ background-color: #777;
3770
+ border-radius: 10px;
3771
+ }
3772
+ .w3eden .badge:empty {
3773
+ display: none;
3774
+ }
3775
+ .w3eden .btn .badge {
3776
+ position: relative;
3777
+ top: -1px;
3778
+ }
3779
+ .w3eden .btn-group-xs > .btn .badge,
3780
+ .w3eden .btn-xs .badge {
3781
+ top: 0;
3782
+ padding: 1px 5px;
3783
+ }
3784
+ .w3eden a.badge:focus,
3785
+ .w3eden a.badge:hover {
3786
+ color: #fff;
3787
+ text-decoration: none;
3788
+ cursor: pointer;
3789
+ }
3790
+ .w3eden .list-group-item.active > .badge,
3791
+ .w3eden .nav-pills > .active > a > .badge {
3792
+ color: #337ab7;
3793
+ background-color: #ffffff;
3794
+ }
3795
+ .w3eden .list-group-item > .badge {
3796
+ float: right;
3797
+ }
3798
+ .w3eden .list-group-item > .badge + .badge {
3799
+ margin-right: 5px;
3800
+ }
3801
+ .w3eden .nav-pills > li > a > .badge {
3802
+ margin-left: 3px;
3803
+ }
3804
+ .w3eden .jumbotron {
3805
+ padding: 30px 15px;
3806
+ margin-bottom: 30px;
3807
+ color: inherit;
3808
+ background-color: #eeeeee;
3809
+ }
3810
+ .w3eden .jumbotron .h1,
3811
+ .w3eden .jumbotron h1 {
3812
+ color: inherit;
3813
+ }
3814
+ .w3eden .jumbotron p {
3815
+ margin-bottom: 15px;
3816
+ font-size: 21px;
3817
+ font-weight: 200;
3818
+ }
3819
+ .w3eden .jumbotron > hr {
3820
+ border-top-color: #d5d5d5;
3821
+ }
3822
+ .w3eden .container .jumbotron,
3823
+ .w3eden .container-fluid .jumbotron {
3824
+ border-radius: 6px;
3825
+ }
3826
+ .w3eden .jumbotron .container {
3827
+ max-width: 100%;
3828
+ }
3829
+ @media screen and (min-width: 768px) {
3830
+ .w3eden .jumbotron {
3831
+ padding: 48px 0;
3832
+ }
3833
+ .w3eden .container .jumbotron,
3834
+ .w3eden .container-fluid .jumbotron {
3835
+ padding-right: 60px;
3836
+ padding-left: 60px;
3837
+ }
3838
+ .w3eden .jumbotron .h1,
3839
+ .w3eden .jumbotron h1 {
3840
+ font-size: 63px;
3841
+ }
3842
+ }
3843
+ .w3eden .thumbnail {
3844
+ display: block;
3845
+ padding: 4px;
3846
+ margin-bottom: 20px;
3847
+ line-height: 1.42857143;
3848
+ background-color: #fff;
3849
+ border: 1px solid #ddd;
3850
+ border-radius: 4px;
3851
+ -webkit-transition: border 0.2s ease-in-out;
3852
+ -o-transition: border 0.2s ease-in-out;
3853
+ transition: border 0.2s ease-in-out;
3854
+ }
3855
+ .w3eden .thumbnail a > img,
3856
+ .w3eden .thumbnail > img {
3857
+ margin-right: auto;
3858
+ margin-left: auto;
3859
+ }
3860
+ .w3eden a.thumbnail.active,
3861
+ .w3eden a.thumbnail:focus,
3862
+ .w3eden a.thumbnail:hover {
3863
+ border-color: #337ab7;
3864
+ }
3865
+ .w3eden .thumbnail .caption {
3866
+ padding: 9px;
3867
+ color: #333333;
3868
+ }
3869
+ .w3eden .alert {
3870
+ padding: 15px;
3871
+ margin-bottom: 20px;
3872
+ border: 1px solid transparent;
3873
+ border-radius: 4px;
3874
+ }
3875
+ .w3eden .alert h4 {
3876
+ margin-top: 0;
3877
+ color: inherit;
3878
+ }
3879
+ .w3eden .alert .alert-link {
3880
+ font-weight: 700;
3881
+ }
3882
+ .w3eden .alert > p,
3883
+ .w3eden .alert > ul {
3884
+ margin-bottom: 0;
3885
+ }
3886
+ .w3eden .alert > p + p {
3887
+ margin-top: 5px;
3888
+ }
3889
+ .w3eden .alert-dismissable,
3890
+ .w3eden .alert-dismissible {
3891
+ padding-right: 35px;
3892
+ }
3893
+ .w3eden .alert-dismissable .close,
3894
+ .w3eden .alert-dismissible .close {
3895
+ position: relative;
3896
+ top: -2px;
3897
+ right: -21px;
3898
+ color: inherit;
3899
+ }
3900
+ .w3eden .alert-success {
3901
+ color: #3c763d;
3902
+ background-color: #dff0d8;
3903
+ border-color: var(--color-success);
3904
+ }
3905
+ .w3eden .alert-success hr {
3906
+ border-top-color: #c9e2b3;
3907
+ }
3908
+ .w3eden .alert-success .alert-link {
3909
+ color: #2b542c;
3910
+ }
3911
+ .w3eden .alert-info {
3912
+ color: #31708f;
3913
+ background-color: #d9edf7;
3914
+ border-color: #bce8f1;
3915
+ }
3916
+ .w3eden .alert-info hr {
3917
+ border-top-color: #a6e1ec;
3918
+ }
3919
+ .w3eden .alert-info .alert-link {
3920
+ color: #245269;
3921
+ }
3922
+ .w3eden .alert-warning {
3923
+ color: #8a6d3b;
3924
+ background-color: #fcf8e3;
3925
+ border-color: #faebcc;
3926
+ }
3927
+ .w3eden .alert-warning hr {
3928
+ border-top-color: #f7e1b5;
3929
+ }
3930
+ .w3eden .alert-warning .alert-link {
3931
+ color: #66512c;
3932
+ }
3933
+ .w3eden .alert-danger {
3934
+ color: #a94442;
3935
+ background-color: #f2dede;
3936
+ border-color: #ebccd1;
3937
+ }
3938
+ .w3eden .alert-danger hr {
3939
+ border-top-color: #e4b9c0;
3940
+ }
3941
+ .w3eden .alert-danger .alert-link {
3942
+ color: #843534;
3943
+ }
3944
+ @-webkit-keyframes progress-bar-stripes {
3945
+ from {
3946
+ background-position: 40px 0;
3947
+ }
3948
+ to {
3949
+ background-position: 0 0;
3950
+ }
3951
+ }
3952
+ @-o-keyframes progress-bar-stripes {
3953
+ from {
3954
+ background-position: 40px 0;
3955
+ }
3956
+ to {
3957
+ background-position: 0 0;
3958
+ }
3959
+ }
3960
+ @keyframes progress-bar-stripes {
3961
+ from {
3962
+ background-position: 40px 0;
3963
+ }
3964
+ to {
3965
+ background-position: 0 0;
3966
+ }
3967
+ }
3968
+ .w3eden .progress {
3969
+ height: 20px;
3970
+ margin-bottom: 20px;
3971
+ overflow: hidden;
3972
+ background-color: #f5f5f5;
3973
+ border-radius: 4px;
3974
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3975
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3976
+ }
3977
+ .w3eden .progress-bar {
3978
+ float: left;
3979
+ width: 0;
3980
+ height: 100%;
3981
+ font-size: 12px;
3982
+ line-height: 20px;
3983
+ color: #fff;
3984
+ text-align: center;
3985
+ background-color: #337ab7;
3986
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3987
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3988
+ -webkit-transition: width .6s ease;
3989
+ -o-transition: width .6s ease;
3990
+ transition: width 0.6s ease;
3991
+ }
3992
+ .w3eden .progress-bar-striped,
3993
+ .w3eden .progress-striped .progress-bar {
3994
+ background-image: -webkit-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);
3995
+ background-image: -o-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);
3996
+ 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);
3997
+ -webkit-background-size: 40px 40px;
3998
+ background-size: 40px 40px;
3999
+ }
4000
+ .w3eden .progress-bar.active,
4001
+ .w3eden .progress.active .progress-bar {
4002
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
4003
+ -o-animation: progress-bar-stripes 2s linear infinite;
4004
+ animation: progress-bar-stripes 2s linear infinite;
4005
+ }
4006
+ .w3eden .progress-bar-success {
4007
+ background-color: #5cb85c;
4008
+ }
4009
+ .w3eden .progress-striped .progress-bar-success {
4010
+ background-image: -webkit-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);
4011
+ background-image: -o-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);
4012
+ 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);
4013
+ }
4014
+ .w3eden .progress-bar-info {
4015
+ background-color: #5bc0de;
4016
+ }
4017
+ .w3eden .progress-striped .progress-bar-info {
4018
+ background-image: -webkit-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);
4019
+ background-image: -o-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);
4020
+ 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);
4021
+ }
4022
+ .w3eden .progress-bar-warning {
4023
+ background-color: var(--color-warning-active);
4024
+ }
4025
+ .w3eden .progress-striped .progress-bar-warning {
4026
+ background-image: -webkit-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);
4027
+ background-image: -o-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);
4028
+ 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);
4029
+ }
4030
+ .w3eden .progress-bar-danger {
4031
+ background-color: var(--color-danger);
4032
+ }
4033
+ .w3eden .progress-striped .progress-bar-danger {
4034
+ background-image: -webkit-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);
4035
+ background-image: -o-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);
4036
+ 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);
4037
+ }
4038
+ .w3eden .media {
4039
+ margin-top: 15px;
4040
+ }
4041
+ .w3eden .media:first-child {
4042
+ margin-top: 0;
4043
+ }
4044
+ .w3eden .media,
4045
+ .w3eden .media-body {
4046
+ overflow: hidden;
4047
+ zoom: 1;
4048
+ }
4049
+ .w3eden .media-body {
4050
+ width: 10000px;
4051
+ }
4052
+ .w3eden .media-object {
4053
+ display: block;
4054
+ }
4055
+ .w3eden .media-right,
4056
+ .w3eden .media > .pull-right {
4057
+ padding-left: 10px;
4058
+ }
4059
+ .w3eden .media-left,
4060
+ .w3eden .media > .pull-left {
4061
+ padding-right: 10px;
4062
+ }
4063
+ .w3eden .media-body,
4064
+ .w3eden .media-left,
4065
+ .w3eden .media-right {
4066
+ display: table-cell;
4067
+ vertical-align: top;
4068
+ }
4069
+ .w3eden .media-middle {
4070
+ vertical-align: middle;
4071
+ }
4072
+ .w3eden .media-bottom {
4073
+ vertical-align: bottom;
4074
+ }
4075
+ .w3eden .media-heading {
4076
+ margin-top: 0;
4077
+ margin-bottom: 5px;
4078
+ }
4079
+ .w3eden .media-list {
4080
+ padding-left: 0;
4081
+ list-style: none;
4082
+ }
4083
+ .w3eden .list-group {
4084
+ padding-left: 0;
4085
+ margin-bottom: 20px;
4086
+ }
4087
+ .w3eden .list-group-item {
4088
+ position: relative;
4089
+ display: block;
4090
+ padding: 10px 15px;
4091
+ margin-bottom: -1px;
4092
+ background-color: #fff;
4093
+ border: 1px solid #dddddd;
4094
+ }
4095
+ .w3eden .list-group-item:first-child {
4096
+ border-top-left-radius: 4px;
4097
+ border-top-right-radius: 4px;
4098
+ }
4099
+ .w3eden .list-group-item:last-child {
4100
+ margin-bottom: 0;
4101
+ border-bottom-right-radius: 4px;
4102
+ border-bottom-left-radius: 4px;
4103
+ }
4104
+ .w3eden a.list-group-item {
4105
+ color: #555555;
4106
+ }
4107
+ .w3eden a.list-group-item .list-group-item-heading {
4108
+ color: #333333;
4109
+ }
4110
+ .w3eden a.list-group-item:focus,
4111
+ .w3eden a.list-group-item:hover {
4112
+ color: #555;
4113
+ text-decoration: none;
4114
+ background-color: #f5f5f5;
4115
+ }
4116
+ .w3eden .list-group-item.disabled,
4117
+ .w3eden .list-group-item.disabled:focus,
4118
+ .w3eden .list-group-item.disabled:hover {
4119
+ color: #777;
4120
+ cursor: not-allowed;
4121
+ background-color: #eeeeee;
4122
+ }
4123
+ .w3eden .list-group-item.disabled .list-group-item-heading,
4124
+ .w3eden .list-group-item.disabled:focus .list-group-item-heading,
4125
+ .w3eden .list-group-item.disabled:hover .list-group-item-heading {
4126
+ color: inherit;
4127
+ }
4128
+ .w3eden .list-group-item.disabled .list-group-item-text,
4129
+ .w3eden .list-group-item.disabled:focus .list-group-item-text,
4130
+ .w3eden .list-group-item.disabled:hover .list-group-item-text {
4131
+ color: #777777;
4132
+ }
4133
+ .w3eden .list-group-item.active,
4134
+ .w3eden .list-group-item.active:focus,
4135
+ .w3eden .list-group-item.active:hover {
4136
+ z-index: 2;
4137
+ color: #fff;
4138
+ background-color: #337ab7;
4139
+ border-color: #337ab7;
4140
+ }
4141
+ .w3eden .list-group-item.active .list-group-item-heading,
4142
+ .w3eden .list-group-item.active .list-group-item-heading > .small,
4143
+ .w3eden .list-group-item.active .list-group-item-heading > small,
4144
+ .w3eden .list-group-item.active:focus .list-group-item-heading,
4145
+ .w3eden .list-group-item.active:focus .list-group-item-heading > .small,
4146
+ .w3eden .list-group-item.active:focus .list-group-item-heading > small,
4147
+ .w3eden .list-group-item.active:hover .list-group-item-heading,
4148
+ .w3eden .list-group-item.active:hover .list-group-item-heading > .small,
4149
+ .w3eden .list-group-item.active:hover .list-group-item-heading > small {
4150
+ color: inherit;
4151
+ }
4152
+ .w3eden .list-group-item.active .list-group-item-text,
4153
+ .w3eden .list-group-item.active:focus .list-group-item-text,
4154
+ .w3eden .list-group-item.active:hover .list-group-item-text {
4155
+ color: #c7ddef;
4156
+ }
4157
+ .w3eden .list-group-item-success {
4158
+ color: #3c763d;
4159
+ background-color: #dff0d8;
4160
+ }
4161
+ .w3eden a.list-group-item-success {
4162
+ color: #3c763d;
4163
+ }
4164
+ .w3eden a.list-group-item-success .list-group-item-heading {
4165
+ color: inherit;
4166
+ }
4167
+ .w3eden a.list-group-item-success:focus,
4168
+ .w3eden a.list-group-item-success:hover {
4169
+ color: #3c763d;
4170
+ background-color: #d0e9c6;
4171
+ }
4172
+ .w3eden a.list-group-item-success.active,
4173
+ .w3eden a.list-group-item-success.active:focus,
4174
+ .w3eden a.list-group-item-success.active:hover {
4175
+ color: #fff;
4176
+ background-color: #3c763d;
4177
+ border-color: #3c763d;
4178
+ }
4179
+ .w3eden .list-group-item-info {
4180
+ color: #31708f;
4181
+ background-color: #d9edf7;
4182
+ }
4183
+ .w3eden a.list-group-item-info {
4184
+ color: #31708f;
4185
+ }
4186
+ .w3eden a.list-group-item-info .list-group-item-heading {
4187
+ color: inherit;
4188
+ }
4189
+ .w3eden a.list-group-item-info:focus,
4190
+ .w3eden a.list-group-item-info:hover {
4191
+ color: #31708f;
4192
+ background-color: #c4e3f3;
4193
+ }
4194
+ .w3eden a.list-group-item-info.active,
4195
+ .w3eden a.list-group-item-info.active:focus,
4196
+ .w3eden a.list-group-item-info.active:hover {
4197
+ color: #fff;
4198
+ background-color: #31708f;
4199
+ border-color: #31708f;
4200
+ }
4201
+ .w3eden .list-group-item-warning {
4202
+ color: #8a6d3b;
4203
+ background-color: #fcf8e3;
4204
+ }
4205
+ .w3eden a.list-group-item-warning {
4206
+ color: #8a6d3b;
4207
+ }
4208
+ .w3eden a.list-group-item-warning .list-group-item-heading {
4209
+ color: inherit;
4210
+ }
4211
+ .w3eden a.list-group-item-warning:focus,
4212
+ .w3eden a.list-group-item-warning:hover {
4213
+ color: #8a6d3b;
4214
+ background-color: #faf2cc;
4215
+ }
4216
+ .w3eden a.list-group-item-warning.active,
4217
+ .w3eden a.list-group-item-warning.active:focus,
4218
+ .w3eden a.list-group-item-warning.active:hover {
4219
+ color: #fff;
4220
+ background-color: #8a6d3b;
4221
+ border-color: #8a6d3b;
4222
+ }
4223
+ .w3eden .list-group-item-danger {
4224
+ color: #a94442;
4225
+ background-color: #f2dede;
4226
+ }
4227
+ .w3eden a.list-group-item-danger {
4228
+ color: #a94442;
4229
+ }
4230
+ .w3eden a.list-group-item-danger .list-group-item-heading {
4231
+ color: inherit;
4232
+ }
4233
+ .w3eden a.list-group-item-danger:focus,
4234
+ .w3eden a.list-group-item-danger:hover {
4235
+ color: #a94442;
4236
+ background-color: #ebcccc;
4237
+ }
4238
+ .w3eden a.list-group-item-danger.active,
4239
+ .w3eden a.list-group-item-danger.active:focus,
4240
+ .w3eden a.list-group-item-danger.active:hover {
4241
+ color: #fff;
4242
+ background-color: #a94442;
4243
+ border-color: #a94442;
4244
+ }
4245
+ .w3eden .list-group-item-heading {
4246
+ margin-top: 0;
4247
+ margin-bottom: 5px;
4248
+ }
4249
+ .w3eden .list-group-item-text {
4250
+ margin-bottom: 0;
4251
+ line-height: 1.3;
4252
+ }
4253
+ .w3eden .panel {
4254
+ margin-bottom: 20px;
4255
+ background-color: #fff;
4256
+ border: 1px solid transparent;
4257
+ border-radius: 4px;
4258
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4259
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4260
+ }
4261
+ .w3eden .panel-body {
4262
+ padding: 15px;
4263
+ }
4264
+ .w3eden .panel-heading {
4265
+ padding: 10px 15px;
4266
+ border-bottom: 1px solid transparent;
4267
+ border-top-left-radius: 3px;
4268
+ border-top-right-radius: 3px;
4269
+ }
4270
+ .w3eden .panel-heading > .dropdown .dropdown-toggle {
4271
+ color: inherit;
4272
+ }
4273
+ .w3eden .panel-title {
4274
+ margin-top: 0;
4275
+ margin-bottom: 0;
4276
+ font-size: 16px;
4277
+ color: inherit;
4278
+ }
4279
+ .w3eden .panel-title > .small,
4280
+ .w3eden .panel-title > .small > a,
4281
+ .w3eden .panel-title > a,
4282
+ .w3eden .panel-title > small,
4283
+ .w3eden .panel-title > small > a {
4284
+ color: inherit;
4285
+ }
4286
+ .w3eden .panel-footer {
4287
+ padding: 10px 15px;
4288
+ background-color: #f5f5f5;
4289
+ border-top: 1px solid #ddd;
4290
+ border-bottom-right-radius: 3px;
4291
+ border-bottom-left-radius: 3px;
4292
+ }
4293
+ .w3eden .panel > .list-group,
4294
+ .w3eden .panel > .panel-collapse > .list-group {
4295
+ margin-bottom: 0;
4296
+ }
4297
+ .w3eden .panel > .list-group .list-group-item,
4298
+ .w3eden .panel > .panel-collapse > .list-group .list-group-item {
4299
+ border-width: 1px 0;
4300
+ border-radius: 0;
4301
+ }
4302
+ .w3eden .panel > .list-group:first-child .list-group-item:first-child,
4303
+ .w3eden .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
4304
+ border-top: 0;
4305
+ border-top-left-radius: 3px;
4306
+ border-top-right-radius: 3px;
4307
+ }
4308
+ .w3eden .panel > .list-group:last-child .list-group-item:last-child,
4309
+ .w3eden .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
4310
+ border-bottom: 0;
4311
+ border-bottom-right-radius: 3px;
4312
+ border-bottom-left-radius: 3px;
4313
+ }
4314
+ .w3eden .panel-heading + .list-group .list-group-item:first-child {
4315
+ border-top-width: 0;
4316
+ }
4317
+ .w3eden .list-group + .panel-footer {
4318
+ border-top-width: 0;
4319
+ }
4320
+ .w3eden .panel > .panel-collapse > .table,
4321
+ .w3eden .panel > .table,
4322
+ .w3eden .panel > .table-responsive > .table {
4323
+ margin-bottom: 0;
4324
+ }
4325
+ .w3eden .panel > .panel-collapse > .table caption,
4326
+ .w3eden .panel > .table caption,
4327
+ .w3eden .panel > .table-responsive > .table caption {
4328
+ padding-right: 15px;
4329
+ padding-left: 15px;
4330
+ }
4331
+ .w3eden .panel > .table-responsive:first-child > .table:first-child,
4332
+ .w3eden .panel > .table:first-child {
4333
+ border-top-left-radius: 3px;
4334
+ border-top-right-radius: 3px;
4335
+ }
4336
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,
4337
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
4338
+ .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child,
4339
+ .w3eden .panel > .table:first-child > thead:first-child > tr:first-child {
4340
+ border-top-left-radius: 3px;
4341
+ border-top-right-radius: 3px;
4342
+ }
4343
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4344
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4345
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4346
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4347
+ .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4348
+ .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4349
+ .w3eden .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4350
+ .w3eden .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {
4351
+ border-top-left-radius: 3px;
4352
+ }
4353
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4354
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4355
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4356
+ .w3eden .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4357
+ .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4358
+ .w3eden .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4359
+ .w3eden .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4360
+ .w3eden .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
4361
+ border-top-right-radius: 3px;
4362
+ }
4363
+ .w3eden .panel > .table-responsive:last-child > .table:last-child,
4364
+ .w3eden .panel > .table:last-child {
4365
+ border-bottom-right-radius: 3px;
4366
+ border-bottom-left-radius: 3px;
4367
+ }
4368
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
4369
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,
4370
+ .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child,
4371
+ .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child {
4372
+ border-bottom-right-radius: 3px;
4373
+ border-bottom-left-radius: 3px;
4374
+ }
4375
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4376
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4377
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4378
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4379
+ .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4380
+ .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4381
+ .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4382
+ .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4383
+ border-bottom-left-radius: 3px;
4384
+ }
4385
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4386
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4387
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4388
+ .w3eden .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4389
+ .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4390
+ .w3eden .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4391
+ .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4392
+ .w3eden .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4393
+ border-bottom-right-radius: 3px;
4394
+ }
4395
+ .w3eden .panel > .panel-body + .table,
4396
+ .w3eden .panel > .panel-body + .table-responsive,
4397
+ .w3eden .panel > .table + .panel-body,
4398
+ .w3eden .panel > .table-responsive + .panel-body {
4399
+ border-top: 1px solid #dddddd;
4400
+ }
4401
+ .w3eden .panel > .table > tbody:first-child > tr:first-child td,
4402
+ .w3eden .panel > .table > tbody:first-child > tr:first-child th {
4403
+ border-top: 0;
4404
+ }
4405
+ .w3eden .panel > .table-bordered,
4406
+ .w3eden .panel > .table-responsive > .table-bordered {
4407
+ border: 0;
4408
+ }
4409
+ .w3eden .panel > .table-bordered > tbody > tr > td:first-child,
4410
+ .w3eden .panel > .table-bordered > tbody > tr > th:first-child,
4411
+ .w3eden .panel > .table-bordered > tfoot > tr > td:first-child,
4412
+ .w3eden .panel > .table-bordered > tfoot > tr > th:first-child,
4413
+ .w3eden .panel > .table-bordered > thead > tr > td:first-child,
4414
+ .w3eden .panel > .table-bordered > thead > tr > th:first-child,
4415
+ .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4416
+ .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4417
+ .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,
4418
+ .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4419
+ .w3eden .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4420
+ .w3eden .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
4421
+ border-left: 0;
4422
+ }
4423
+ .w3eden .panel > .table-bordered > tbody > tr > td:last-child,
4424
+ .w3eden .panel > .table-bordered > tbody > tr > th:last-child,
4425
+ .w3eden .panel > .table-bordered > tfoot > tr > td:last-child,
4426
+ .w3eden .panel > .table-bordered > tfoot > tr > th:last-child,
4427
+ .w3eden .panel > .table-bordered > thead > tr > td:last-child,
4428
+ .w3eden .panel > .table-bordered > thead > tr > th:last-child,
4429
+ .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4430
+ .w3eden .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4431
+ .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,
4432
+ .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4433
+ .w3eden .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4434
+ .w3eden .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
4435
+ border-right: 0;
4436
+ }
4437
+ .w3eden .panel > .table-bordered > tbody > tr:first-child > td,
4438
+ .w3eden .panel > .table-bordered > tbody > tr:first-child > th,
4439
+ .w3eden .panel > .table-bordered > thead > tr:first-child > td,
4440
+ .w3eden .panel > .table-bordered > thead > tr:first-child > th,
4441
+ .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4442
+ .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
4443
+ .w3eden .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4444
+ .w3eden .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
4445
+ border-bottom: 0;
4446
+ }
4447
+ .w3eden .panel > .table-bordered > tbody > tr:last-child > td,
4448
+ .w3eden .panel > .table-bordered > tbody > tr:last-child > th,
4449
+ .w3eden .panel > .table-bordered > tfoot > tr:last-child > td,
4450
+ .w3eden .panel > .table-bordered > tfoot > tr:last-child > th,
4451
+ .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4452
+ .w3eden .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4453
+ .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4454
+ .w3eden .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4455
+ border-bottom: 0;
4456
+ }
4457
+ .w3eden .panel > .table-responsive {
4458
+ margin-bottom: 0;
4459
+ border: 0;
4460
+ }
4461
+ .w3eden .panel-group {
4462
+ margin-bottom: 20px;
4463
+ }
4464
+ .w3eden .panel-group .panel {
4465
+ margin-bottom: 0;
4466
+ border-radius: 4px;
4467
+ }
4468
+ .w3eden .panel-group .panel + .panel {
4469
+ margin-top: 5px;
4470
+ }
4471
+ .w3eden .panel-group .panel-heading {
4472
+ border-bottom: 0;
4473
+ }
4474
+ .w3eden .panel-group .panel-heading + .panel-collapse > .list-group,
4475
+ .w3eden .panel-group .panel-heading + .panel-collapse > .panel-body {
4476
+ border-top: 1px solid #dddddd;
4477
+ }
4478
+ .w3eden .panel-group .panel-footer {
4479
+ border-top: 0;
4480
+ }
4481
+ .w3eden .panel-group .panel-footer + .panel-collapse .panel-body {
4482
+ border-bottom: 1px solid #dddddd;
4483
+ }
4484
+ .w3eden .panel-default {
4485
+ border-color: #dddddd;
4486
+ }
4487
+ .w3eden .panel-default > .panel-heading {
4488
+ color: #333;
4489
+ background-color: #f5f5f5;
4490
+ border-color: #dddddd;
4491
+ }
4492
+ .w3eden .panel-default > .panel-heading + .panel-collapse > .panel-body {
4493
+ border-top-color: #dddddd;
4494
+ }
4495
+ .w3eden .panel-default > .panel-heading .badge {
4496
+ color: #f5f5f5;
4497
+ background-color: #333333;
4498
+ }
4499
+ .w3eden .panel-default > .panel-footer + .panel-collapse > .panel-body {
4500
+ border-bottom-color: #dddddd;
4501
+ }
4502
+ .w3eden .panel-primary {
4503
+ border-color: #337ab7;
4504
+ }
4505
+ .w3eden .panel-primary > .panel-heading {
4506
+ color: #fff;
4507
+ background-color: #337ab7;
4508
+ border-color: #337ab7;
4509
+ }
4510
+ .w3eden .panel-primary > .panel-heading + .panel-collapse > .panel-body {
4511
+ border-top-color: #337ab7;
4512
+ }
4513
+ .w3eden .panel-primary > .panel-heading .badge {
4514
+ color: #337ab7;
4515
+ background-color: #ffffff;
4516
+ }
4517
+ .w3eden .panel-primary > .panel-footer + .panel-collapse > .panel-body {
4518
+ border-bottom-color: #337ab7;
4519
+ }
4520
+ .w3eden .panel-success {
4521
+ border-color: var(--color-success);
4522
+ }
4523
+ .w3eden .panel-success > .panel-heading {
4524
+ color: #3c763d;
4525
+ background-color: #dff0d8;
4526
+ border-color: var(--color-success);
4527
+ }
4528
+ .w3eden .panel-success > .panel-heading + .panel-collapse > .panel-body {
4529
+ border-top-color: var(--color-success);
4530
+ }
4531
+ .w3eden .panel-success > .panel-heading .badge {
4532
+ color: #dff0d8;
4533
+ background-color: #3c763d;
4534
+ }
4535
+ .w3eden .panel-success > .panel-footer + .panel-collapse > .panel-body {
4536
+ border-bottom-color: var(--color-success);
4537
+ }
4538
+ .w3eden .panel-info {
4539
+ border-color: #bce8f1;
4540
+ }
4541
+ .w3eden .panel-info > .panel-heading {
4542
+ color: #31708f;
4543
+ background-color: #d9edf7;
4544
+ border-color: #bce8f1;
4545
+ }
4546
+ .w3eden .panel-info > .panel-heading + .panel-collapse > .panel-body {
4547
+ border-top-color: #bce8f1;
4548
+ }
4549
+ .w3eden .panel-info > .panel-heading .badge {
4550
+ color: #d9edf7;
4551
+ background-color: #31708f;
4552
+ }
4553
+ .w3eden .panel-info > .panel-footer + .panel-collapse > .panel-body {
4554
+ border-bottom-color: #bce8f1;
4555
+ }
4556
+ .w3eden .panel-warning {
4557
+ border-color: #faebcc;
4558
+ }
4559
+ .w3eden .panel-warning > .panel-heading {
4560
+ color: #8a6d3b;
4561
+ background-color: #fcf8e3;
4562
+ border-color: #faebcc;
4563
+ }
4564
+ .w3eden .panel-warning > .panel-heading + .panel-collapse > .panel-body {
4565
+ border-top-color: #faebcc;
4566
+ }
4567
+ .w3eden .panel-warning > .panel-heading .badge {
4568
+ color: #fcf8e3;
4569
+ background-color: #8a6d3b;
4570
+ }
4571
+ .w3eden .panel-warning > .panel-footer + .panel-collapse > .panel-body {
4572
+ border-bottom-color: #faebcc;
4573
+ }
4574
+ .w3eden .panel-danger {
4575
+ border-color: #ebccd1;
4576
+ }
4577
+ .w3eden .panel-danger > .panel-heading {
4578
+ color: #a94442;
4579
+ background-color: #f2dede;
4580
+ border-color: #ebccd1;
4581
+ }
4582
+ .w3eden .panel-danger > .panel-heading + .panel-collapse > .panel-body {
4583
+ border-top-color: #ebccd1;
4584
+ }
4585
+ .w3eden .panel-danger > .panel-heading .badge {
4586
+ color: #f2dede;
4587
+ background-color: #a94442;
4588
+ }
4589
+ .w3eden .panel-danger > .panel-footer + .panel-collapse > .panel-body {
4590
+ border-bottom-color: #ebccd1;
4591
+ }
4592
+ .w3eden .embed-responsive {
4593
+ position: relative;
4594
+ display: block;
4595
+ height: 0;
4596
+ padding: 0;
4597
+ overflow: hidden;
4598
+ }
4599
+ .w3eden .embed-responsive .embed-responsive-item,
4600
+ .w3eden .embed-responsive embed,
4601
+ .w3eden .embed-responsive iframe,
4602
+ .w3eden .embed-responsive object,
4603
+ .w3eden .embed-responsive video {
4604
+ position: absolute;
4605
+ top: 0;
4606
+ bottom: 0;
4607
+ left: 0;
4608
+ width: 100%;
4609
+ height: 100%;
4610
+ border: 0;
4611
+ }
4612
+ .w3eden .embed-responsive-16by9 {
4613
+ padding-bottom: 56.25%;
4614
+ }
4615
+ .w3eden .embed-responsive-4by3 {
4616
+ padding-bottom: 75%;
4617
+ }
4618
+ .w3eden .well {
4619
+ min-height: 20px;
4620
+ padding: 19px;
4621
+ margin-bottom: 20px;
4622
+ background-color: #f5f5f5;
4623
+ border: 1px solid #e3e3e3;
4624
+ border-radius: 4px;
4625
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
4626
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
4627
+ }
4628
+ .w3eden .well blockquote {
4629
+ border-color: #ddd;
4630
+ border-color: rgba(0, 0, 0, 0.15);
4631
+ }
4632
+ .w3eden .well-lg {
4633
+ padding: 24px;
4634
+ border-radius: 6px;
4635
+ }
4636
+ .w3eden .well-sm {
4637
+ padding: 9px;
4638
+ border-radius: 3px;
4639
+ }
4640
+ .w3eden .close {
4641
+ float: right;
4642
+ font-size: 21px;
4643
+ font-weight: 700;
4644
+ line-height: 1;
4645
+ color: #000;
4646
+ text-shadow: 0 1px 0 #fff;
4647
+ filter: alpha(opacity=20);
4648
+ opacity: 0.2;
4649
+ }
4650
+ .w3eden .close:focus,
4651
+ .w3eden .close:hover {
4652
+ color: #000;
4653
+ text-decoration: none;
4654
+ cursor: pointer;
4655
+ filter: alpha(opacity=50);
4656
+ opacity: 0.5;
4657
+ }
4658
+ .w3eden button.close {
4659
+ -webkit-appearance: none;
4660
+ padding: 0;
4661
+ cursor: pointer;
4662
+ background: 0 0;
4663
+ border: 0;
4664
+ }
4665
+ .w3eden .modal-open {
4666
+ overflow: hidden;
4667
+ }
4668
+ .w3eden .modal {
4669
+ position: fixed;
4670
+ top: 0;
4671
+ right: 0;
4672
+ bottom: 0;
4673
+ left: 0;
4674
+ z-index: 1050;
4675
+ display: none;
4676
+ overflow: hidden;
4677
+ -webkit-overflow-scrolling: touch;
4678
+ outline: 0;
4679
+ }
4680
+ .w3eden .modal.fade .modal-dialog {
4681
+ -webkit-transition: -webkit-transform 0.3s ease-out;
4682
+ -o-transition: -o-transform 0.3s ease-out;
4683
+ transition: transform 0.3s ease-out;
4684
+ -webkit-transform: translate(0, -25%);
4685
+ -ms-transform: translate(0, -25%);
4686
+ -o-transform: translate(0, -25%);
4687
+ transform: translate(0, -25%);
4688
+ }
4689
+ .w3eden .modal.in .modal-dialog {
4690
+ -webkit-transform: translate(0, 0);
4691
+ -ms-transform: translate(0, 0);
4692
+ -o-transform: translate(0, 0);
4693
+ transform: translate(0, 0);
4694
+ }
4695
+ .w3eden .modal-open .modal {
4696
+ overflow-x: hidden;
4697
+ overflow-y: auto;
4698
+ }
4699
+ .w3eden .modal-dialog {
4700
+ position: relative;
4701
+ width: auto;
4702
+ margin: 10px;
4703
+ }
4704
+ .w3eden .modal-content {
4705
+ position: relative;
4706
+ background-color: #fff;
4707
+ -webkit-background-clip: padding-box;
4708
+ background-clip: padding-box;
4709
+ border: 1px solid #999;
4710
+ border: 1px solid rgba(0, 0, 0, 0.2);
4711
+ border-radius: 6px;
4712
+ outline: 0;
4713
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
4714
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
4715
+ }
4716
+ .modal-backdrop {
4717
+ position: fixed;
4718
+ top: 0;
4719
+ right: 0;
4720
+ bottom: 0;
4721
+ left: 0;
4722
+ z-index: 1040;
4723
+ background-color: #000000;
4724
+ }
4725
+ .modal-backdrop.fade {
4726
+ filter: alpha(opacity=0);
4727
+ opacity: 0;
4728
+ }
4729
+ .modal-backdrop.in {
4730
+ filter: alpha(opacity=50);
4731
+ opacity: 0.5;
4732
+ }
4733
+ .w3eden .modal-header {
4734
+ min-height: 16.43px;
4735
+ padding: 15px;
4736
+ border-bottom: 1px solid #e5e5e5;
4737
+ }
4738
+ .w3eden .modal-header .close {
4739
+ margin-top: -2px;
4740
+ }
4741
+ .w3eden .modal-title {
4742
+ margin: 0;
4743
+ line-height: 1.42857143;
4744
+ }
4745
+ .w3eden .modal-body {
4746
+ position: relative;
4747
+ padding: 15px;
4748
+ }
4749
+ .w3eden .modal-footer {
4750
+ padding: 15px;
4751
+ text-align: right;
4752
+ border-top: 1px solid #e5e5e5;
4753
+
4754
+ }
4755
+ .w3eden .modal-footer .btn + .btn {
4756
+ margin-bottom: 0;
4757
+ margin-left: 5px;
4758
+ }
4759
+ .w3eden .modal-footer .btn-group .btn + .btn {
4760
+ margin-left: -1px;
4761
+ }
4762
+ .w3eden .modal-footer .btn-block + .btn-block {
4763
+ margin-left: 0;
4764
+ }
4765
+ .w3eden .modal-scrollbar-measure {
4766
+ position: absolute;
4767
+ top: -9999px;
4768
+ width: 50px;
4769
+ height: 50px;
4770
+ overflow: scroll;
4771
+ }
4772
+ @media (min-width: 768px) {
4773
+ .w3eden .modal-dialog {
4774
+ width: 600px;
4775
+ margin: 100px auto;
4776
+ }
4777
+ .w3eden .modal-content {
4778
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
4779
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
4780
+ }
4781
+ .w3eden .modal-sm {
4782
+ width: 300px;
4783
+ }
4784
+ }
4785
+ @media (min-width: 992px) {
4786
+ .w3eden .modal-lg {
4787
+ width: 900px;
4788
+ }
4789
+ }
4790
+ .w3eden .tooltip {
4791
+ position: absolute;
4792
+ z-index: 1070;
4793
+ display: block;
4794
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4795
+ font-size: 12px;
4796
+ font-weight: 400;
4797
+ line-height: 1.4;
4798
+ filter: alpha(opacity=0);
4799
+ opacity: 0;
4800
+ }
4801
+ .w3eden .tooltip.in {
4802
+ filter: alpha(opacity=90);
4803
+ opacity: 0.9;
4804
+ }
4805
+ .w3eden .tooltip.top {
4806
+ padding: 5px 0;
4807
+ margin-top: -3px;
4808
+ }
4809
+ .w3eden .tooltip.right {
4810
+ padding: 0 5px;
4811
+ margin-left: 3px;
4812
+ }
4813
+ .w3eden .tooltip.bottom {
4814
+ padding: 5px 0;
4815
+ margin-top: 3px;
4816
+ }
4817
+ .w3eden .tooltip.left {
4818
+ padding: 0 5px;
4819
+ margin-left: -3px;
4820
+ }
4821
+ .w3eden .tooltip-inner {
4822
+ max-width: 200px;
4823
+ padding: 6px 12px;
4824
+ color: #fff;
4825
+ text-align: center;
4826
+ text-decoration: none;
4827
+ background-color: #000;
4828
+ border-radius: 2px;
4829
+ }
4830
+ .w3eden .tooltip-arrow {
4831
+ position: absolute;
4832
+ width: 0;
4833
+ height: 0;
4834
+ border-color: transparent;
4835
+ border-style: solid;
4836
+ }
4837
+ .w3eden .tooltip.top .tooltip-arrow {
4838
+ bottom: 0;
4839
+ left: 50%;
4840
+ margin-left: -5px;
4841
+ border-width: 5px 5px 0;
4842
+ border-top-color: #000000;
4843
+ }
4844
+ .w3eden .tooltip.top-left .tooltip-arrow {
4845
+ right: 5px;
4846
+ bottom: 0;
4847
+ margin-bottom: -5px;
4848
+ border-width: 5px 5px 0;
4849
+ border-top-color: #000000;
4850
+ }
4851
+ .w3eden .tooltip.top-right .tooltip-arrow {
4852
+ bottom: 0;
4853
+ left: 5px;
4854
+ margin-bottom: -5px;
4855
+ border-width: 5px 5px 0;
4856
+ border-top-color: #000000;
4857
+ }
4858
+ .w3eden .tooltip.right .tooltip-arrow {
4859
+ top: 50%;
4860
+ left: 0;
4861
+ margin-top: -5px;
4862
+ border-width: 5px 5px 5px 0;
4863
+ border-right-color: #000000;
4864
+ }
4865
+ .w3eden .tooltip.left .tooltip-arrow {
4866
+ top: 50%;
4867
+ right: 0;
4868
+ margin-top: -5px;
4869
+ border-width: 5px 0 5px 5px;
4870
+ border-left-color: #000000;
4871
+ }
4872
+ .w3eden .tooltip.bottom .tooltip-arrow {
4873
+ top: 0;
4874
+ left: 50%;
4875
+ margin-left: -5px;
4876
+ border-width: 0 5px 5px;
4877
+ border-bottom-color: #000000;
4878
+ }
4879
+ .w3eden .tooltip.bottom-left .tooltip-arrow {
4880
+ top: 0;
4881
+ right: 5px;
4882
+ margin-top: -5px;
4883
+ border-width: 0 5px 5px;
4884
+ border-bottom-color: #000000;
4885
+ }
4886
+ .w3eden .tooltip.bottom-right .tooltip-arrow {
4887
+ top: 0;
4888
+ left: 5px;
4889
+ margin-top: -5px;
4890
+ border-width: 0 5px 5px;
4891
+ border-bottom-color: #000000;
4892
+ }
4893
+ .w3eden .popover {
4894
+ position: absolute;
4895
+ top: 0;
4896
+ left: 0;
4897
+ z-index: 1060;
4898
+ display: none;
4899
+ max-width: 276px;
4900
+ padding: 1px;
4901
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4902
+ font-size: 14px;
4903
+ font-weight: 400;
4904
+ line-height: 1.42857143;
4905
+ text-align: left;
4906
+ white-space: normal;
4907
+ background-color: #fff;
4908
+ -webkit-background-clip: padding-box;
4909
+ background-clip: padding-box;
4910
+ border: 1px solid #ccc;
4911
+ border: 1px solid rgba(0, 0, 0, 0.2);
4912
+ border-radius: 6px;
4913
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4914
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4915
+ }
4916
+ .w3eden .popover.top {
4917
+ margin-top: -10px;
4918
+ }
4919
+ .w3eden .popover.right {
4920
+ margin-left: 10px;
4921
+ }
4922
+ .w3eden .popover.bottom {
4923
+ margin-top: 10px;
4924
+ }
4925
+ .w3eden .popover.left {
4926
+ margin-left: -10px;
4927
+ }
4928
+ .w3eden .popover-title {
4929
+ padding: 8px 14px;
4930
+ margin: 0;
4931
+ font-size: 14px;
4932
+ background-color: #f7f7f7;
4933
+ border-bottom: 1px solid #ebebeb;
4934
+ border-radius: 5px 5px 0 0;
4935
+ }
4936
+ .w3eden .popover-content {
4937
+ padding: 9px 14px;
4938
+ }
4939
+ .w3eden .popover > .arrow,
4940
+ .w3eden .popover > .arrow:after {
4941
+ position: absolute;
4942
+ display: block;
4943
+ width: 0;
4944
+ height: 0;
4945
+ border-color: transparent;
4946
+ border-style: solid;
4947
+ }
4948
+ .w3eden .popover > .arrow {
4949
+ border-width: 11px;
4950
+ }
4951
+ .w3eden .popover > .arrow:after {
4952
+ content: "";
4953
+ border-width: 10px;
4954
+ }
4955
+ .w3eden .popover.top > .arrow {
4956
+ bottom: -11px;
4957
+ left: 50%;
4958
+ margin-left: -11px;
4959
+ border-top-color: #999;
4960
+ border-top-color: rgba(0, 0, 0, 0.25);
4961
+ border-bottom-width: 0;
4962
+ }
4963
+ .w3eden .popover.top > .arrow:after {
4964
+ bottom: 1px;
4965
+ margin-left: -10px;
4966
+ content: " ";
4967
+ border-top-color: #fff;
4968
+ border-bottom-width: 0;
4969
+ }
4970
+ .w3eden .popover.right > .arrow {
4971
+ top: 50%;
4972
+ left: -11px;
4973
+ margin-top: -11px;
4974
+ border-right-color: #999;
4975
+ border-right-color: rgba(0, 0, 0, 0.25);
4976
+ border-left-width: 0;
4977
+ }
4978
+ .w3eden .popover.right > .arrow:after {
4979
+ bottom: -10px;
4980
+ left: 1px;
4981
+ content: " ";
4982
+ border-right-color: #fff;
4983
+ border-left-width: 0;
4984
+ }
4985
+ .w3eden .popover.bottom > .arrow {
4986
+ top: -11px;
4987
+ left: 50%;
4988
+ margin-left: -11px;
4989
+ border-top-width: 0;
4990
+ border-bottom-color: #999;
4991
+ border-bottom-color: rgba(0, 0, 0, 0.25);
4992
+ }
4993
+ .w3eden .popover.bottom > .arrow:after {
4994
+ top: 1px;
4995
+ margin-left: -10px;
4996
+ content: " ";
4997
+ border-top-width: 0;
4998
+ border-bottom-color: #ffffff;
4999
+ }
5000
+ .w3eden .popover.left > .arrow {
5001
+ top: 50%;
5002
+ right: -11px;
5003
+ margin-top: -11px;
5004
+ border-right-width: 0;
5005
+ border-left-color: #999;
5006
+ border-left-color: rgba(0, 0, 0, 0.25);
5007
+ }
5008
+ .w3eden .popover.left > .arrow:after {
5009
+ right: 1px;
5010
+ bottom: -10px;
5011
+ content: " ";
5012
+ border-right-width: 0;
5013
+ border-left-color: #ffffff;
5014
+ }
5015
+ .w3eden .carousel {
5016
+ position: relative;
5017
+ }
5018
+ .w3eden .carousel-inner {
5019
+ position: relative;
5020
+ width: 100%;
5021
+ overflow: hidden;
5022
+ }
5023
+ .w3eden .carousel-inner > .item {
5024
+ position: relative;
5025
+ display: none;
5026
+ -webkit-transition: 0.6s ease-in-out left;
5027
+ -o-transition: 0.6s ease-in-out left;
5028
+ transition: 0.6s ease-in-out left;
5029
+ }
5030
+ .w3eden .carousel-inner > .item > a > img,
5031
+ .w3eden .carousel-inner > .item > img {
5032
+ line-height: 1;
5033
+ }
5034
+ @media all and (transform-3d), (-webkit-transform-3d) {
5035
+ .w3eden .carousel-inner > .item {
5036
+ -webkit-transition: -webkit-transform 0.6s ease-in-out;
5037
+ -o-transition: -o-transform 0.6s ease-in-out;
5038
+ transition: transform 0.6s ease-in-out;
5039
+ -webkit-backface-visibility: hidden;
5040
+ backface-visibility: hidden;
5041
+ -webkit-perspective: 1000;
5042
+ perspective: 1000;
5043
+ }
5044
+ .w3eden .carousel-inner > .item.active.right,
5045
+ .w3eden .carousel-inner > .item.next {
5046
+ left: 0;
5047
+ -webkit-transform: translate3d(100%, 0, 0);
5048
+ transform: translate3d(100%, 0, 0);
5049
+ }
5050
+ .w3eden .carousel-inner > .item.active.left,
5051
+ .w3eden .carousel-inner > .item.prev {
5052
+ left: 0;
5053
+ -webkit-transform: translate3d(-100%, 0, 0);
5054
+ transform: translate3d(-100%, 0, 0);
5055
+ }
5056
+ .w3eden .carousel-inner > .item.active,
5057
+ .w3eden .carousel-inner > .item.next.left,
5058
+ .w3eden .carousel-inner > .item.prev.right {
5059
+ left: 0;
5060
+ -webkit-transform: translate3d(0, 0, 0);
5061
+ transform: translate3d(0, 0, 0);
5062
+ }
5063
+ }
5064
+ .w3eden .carousel-inner > .active,
5065
+ .w3eden .carousel-inner > .next,
5066
+ .w3eden .carousel-inner > .prev {
5067
+ display: block;
5068
+ }
5069
+ .w3eden .carousel-inner > .active {
5070
+ left: 0;
5071
+ }
5072
+ .w3eden .carousel-inner > .next,
5073
+ .w3eden .carousel-inner > .prev {
5074
+ position: absolute;
5075
+ top: 0;
5076
+ width: 100%;
5077
+ }
5078
+ .w3eden .carousel-inner > .next {
5079
+ left: 100%;
5080
+ }
5081
+ .w3eden .carousel-inner > .prev {
5082
+ left: -100%;
5083
+ }
5084
+ .w3eden .carousel-inner > .next.left,
5085
+ .w3eden .carousel-inner > .prev.right {
5086
+ left: 0;
5087
+ }
5088
+ .w3eden .carousel-inner > .active.left {
5089
+ left: -100%;
5090
+ }
5091
+ .w3eden .carousel-inner > .active.right {
5092
+ left: 100%;
5093
+ }
5094
+ .w3eden .carousel-control {
5095
+ position: absolute;
5096
+ top: 0;
5097
+ bottom: 0;
5098
+ left: 0;
5099
+ width: 15%;
5100
+ font-size: 20px;
5101
+ color: #fff;
5102
+ text-align: center;
5103
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5104
+ filter: alpha(opacity=50);
5105
+ opacity: 0.5;
5106
+ }
5107
+ .w3eden .carousel-control.left {
5108
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
5109
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
5110
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
5111
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
5112
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5113
+ background-repeat: repeat-x;
5114
+ }
5115
+ .w3eden .carousel-control.right {
5116
+ right: 0;
5117
+ left: auto;
5118
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
5119
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
5120
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
5121
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
5122
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5123
+ background-repeat: repeat-x;
5124
+ }
5125
+ .w3eden .carousel-control:focus,
5126
+ .w3eden .carousel-control:hover {
5127
+ color: #fff;
5128
+ text-decoration: none;
5129
+ filter: alpha(opacity=90);
5130
+ outline: 0;
5131
+ opacity: 0.9;
5132
+ }
5133
+ .w3eden .carousel-control .glyphicon-chevron-left,
5134
+ .w3eden .carousel-control .glyphicon-chevron-right,
5135
+ .w3eden .carousel-control .icon-next,
5136
+ .w3eden .carousel-control .icon-prev {
5137
+ position: absolute;
5138
+ top: 50%;
5139
+ z-index: 5;
5140
+ display: inline-block;
5141
+ }
5142
+ .w3eden .carousel-control .glyphicon-chevron-left,
5143
+ .w3eden .carousel-control .icon-prev {
5144
+ left: 50%;
5145
+ margin-left: -10px;
5146
+ }
5147
+ .w3eden .carousel-control .glyphicon-chevron-right,
5148
+ .w3eden .carousel-control .icon-next {
5149
+ right: 50%;
5150
+ margin-right: -10px;
5151
+ }
5152
+ .w3eden .carousel-control .icon-next,
5153
+ .w3eden .carousel-control .icon-prev {
5154
+ width: 20px;
5155
+ height: 20px;
5156
+ margin-top: -10px;
5157
+ font-family: serif;
5158
+ line-height: 1;
5159
+ }
5160
+ .w3eden .carousel-control .icon-prev:before {
5161
+ content: '\2039';
5162
+ }
5163
+ .w3eden .carousel-control .icon-next:before {
5164
+ content: '\203a';
5165
+ }
5166
+ .w3eden .carousel-indicators {
5167
+ position: absolute;
5168
+ bottom: 10px;
5169
+ left: 50%;
5170
+ z-index: 15;
5171
+ width: 60%;
5172
+ padding-left: 0;
5173
+ margin-left: -30%;
5174
+ text-align: center;
5175
+ list-style: none;
5176
+ }
5177
+ .w3eden .carousel-indicators li {
5178
+ display: inline-block;
5179
+ width: 10px;
5180
+ height: 10px;
5181
+ margin: 1px;
5182
+ text-indent: -999px;
5183
+ cursor: pointer;
5184
+ background-color: #000 \9;
5185
+ background-color: rgba(0, 0, 0, 0);
5186
+ border: 1px solid #fff;
5187
+ border-radius: 10px;
5188
+ }
5189
+ .w3eden .carousel-indicators .active {
5190
+ width: 12px;
5191
+ height: 12px;
5192
+ margin: 0;
5193
+ background-color: #ffffff;
5194
+ }
5195
+ .w3eden .carousel-caption {
5196
+ position: absolute;
5197
+ right: 15%;
5198
+ bottom: 20px;
5199
+ left: 15%;
5200
+ z-index: 10;
5201
+ padding-top: 20px;
5202
+ padding-bottom: 20px;
5203
+ color: #fff;
5204
+ text-align: center;
5205
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5206
+ }
5207
+ .w3eden .carousel-caption .btn {
5208
+ text-shadow: none;
5209
+ }
5210
+ @media screen and (min-width: 768px) {
5211
+ .w3eden .carousel-control .glyphicon-chevron-left,
5212
+ .w3eden .carousel-control .glyphicon-chevron-right,
5213
+ .w3eden .carousel-control .icon-next,
5214
+ .w3eden .carousel-control .icon-prev {
5215
+ width: 30px;
5216
+ height: 30px;
5217
+ margin-top: -15px;
5218
+ font-size: 30px;
5219
+ }
5220
+ .w3eden .carousel-control .glyphicon-chevron-left,
5221
+ .w3eden .carousel-control .icon-prev {
5222
+ margin-left: -15px;
5223
+ }
5224
+ .w3eden .carousel-control .glyphicon-chevron-right,
5225
+ .w3eden .carousel-control .icon-next {
5226
+ margin-right: -15px;
5227
+ }
5228
+ .w3eden .carousel-caption {
5229
+ right: 20%;
5230
+ left: 20%;
5231
+ padding-bottom: 30px;
5232
+ }
5233
+ .w3eden .carousel-indicators {
5234
+ bottom: 20px;
5235
+ }
5236
+ }
5237
+ .w3eden .btn-group-vertical > .btn-group:after,
5238
+ .w3eden .btn-group-vertical > .btn-group:before,
5239
+ .w3eden .btn-toolbar:after,
5240
+ .w3eden .btn-toolbar:before,
5241
+ .w3eden .clearfix:after,
5242
+ .w3eden .clearfix:before,
5243
+ .w3eden .container-fluid:after,
5244
+ .w3eden .container-fluid:before,
5245
+ .w3eden .container:after,
5246
+ .w3eden .container:before,
5247
+ .w3eden .dl-horizontal dd:after,
5248
+ .w3eden .dl-horizontal dd:before,
5249
+ .w3eden .form-horizontal .form-group:after,
5250
+ .w3eden .form-horizontal .form-group:before,
5251
+ .w3eden .modal-footer:after,
5252
+ .w3eden .modal-footer:before,
5253
+ .w3eden .nav:after,
5254
+ .w3eden .nav:before,
5255
+ .w3eden .navbar-collapse:after,
5256
+ .w3eden .navbar-collapse:before,
5257
+ .w3eden .navbar-header:after,
5258
+ .w3eden .navbar-header:before,
5259
+ .w3eden .navbar:after,
5260
+ .w3eden .navbar:before,
5261
+ .w3eden .pager:after,
5262
+ .w3eden .pager:before,
5263
+ .w3eden .panel-body:after,
5264
+ .w3eden .panel-body:before,
5265
+ .w3eden .row:after,
5266
+ .w3eden .row:before {
5267
+ display: table;
5268
+ content: " ";
5269
+ }
5270
+ .w3eden .btn-group-vertical > .btn-group:after,
5271
+ .w3eden .btn-toolbar:after,
5272
+ .w3eden .clearfix:after,
5273
+ .w3eden .container-fluid:after,
5274
+ .w3eden .container:af